diff --git a/src/apps/bin/coreutils-5.0/config/ChangeLog b/src/apps/bin/coreutils-5.0/config/ChangeLog new file mode 100644 index 0000000000..2645c7b8d2 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/config/ChangeLog @@ -0,0 +1,38 @@ +2003-01-12 Jim Meyering + + Lots of syntactic clean-up, mostly from Karl Berry. + * install-sh: Use consistent indentation, two spaces per level. + (scriptversion): New variable. + Change initializations like `variable=""' to `variable='. + (usage): New variable. + Use `test', not `['. + Use `test -z "$var"', not `[ x"$var" = x ]'. + Use `test -n "$var"', not `[ x"$var" != x ]'. + Alphabetize case entries. + Accept --help and --version options. + Remove unnecessary `else :' clauses. + Add a `Local variables' eval block to help emacs users update + the time-stamp variable added above. + +2002-12-20 Jim Meyering + + * install-sh: Set the execute bit on this file. + Reported by Vin Shelton. + +2002-11-09 Jim Meyering + + Make it work even when names contain spaces or shell metachars. + * install-sh: Write diagnostics to stderr, not stdout. + Normalize spacing in diagnostics: use one space (not two, and not a TAB) + after the leading `install:'. + Add double quotes around `$src' here: $doit $instcmd "$src" "$dsttmp" + + Merge in some changes from the version in automake. + * install-sh: Remove unnecessary quotes around `case' argument. + Use `[ cond1 ] || [ cond2 ]' rather than `[ cond1 -o cond2 ]'. + Use `:' rather than `true'. + +2002-02-17 Jim Meyering + + * config.guess (main): Don't use `head -1'; it's no longer portable. + Use `sed 1q' instead. diff --git a/src/apps/bin/coreutils-5.0/config/config.guess b/src/apps/bin/coreutils-5.0/config/config.guess new file mode 100644 index 0000000000..cc726cd15a --- /dev/null +++ b/src/apps/bin/coreutils-5.0/config/config.guess @@ -0,0 +1,1388 @@ +#! /bin/sh +# Attempt to guess a canonical system name. +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +# 2000, 2001, 2002, 2003 Free Software Foundation, Inc. + +timestamp='2003-02-22' + +# This file 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 2 of the License, 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, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# Originally written by Per Bothner . +# Please send patches to . Submit a context +# diff and a properly formatted ChangeLog entry. +# +# This script attempts to guess a canonical system name similar to +# config.sub. If it succeeds, it prints the system name on stdout, and +# exits with 0. Otherwise, it exits with 1. +# +# The plan is that this can be called by configure scripts if you +# don't specify an explicit build system type. + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] + +Output the configuration name of the system \`$me' is run on. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to ." + +version="\ +GNU config.guess ($timestamp) + +Originally written by Per Bothner. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 +Free Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit 0 ;; + --version | -v ) + echo "$version" ; exit 0 ;; + --help | --h* | -h ) + echo "$usage"; exit 0 ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" >&2 + exit 1 ;; + * ) + break ;; + esac +done + +if test $# != 0; then + echo "$me: too many arguments$help" >&2 + exit 1 +fi + +trap 'exit 1' 1 2 15 + +# CC_FOR_BUILD -- compiler used by this script. Note that the use of a +# compiler to aid in system detection is discouraged as it requires +# temporary files to be created and, as you can see below, it is a +# headache to deal with in a portable fashion. + +# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still +# use `HOST_CC' if defined, but it is deprecated. + +# Portable tmp directory creation inspired by the Autoconf team. + +set_cc_for_build=' +trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; +trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; +: ${TMPDIR=/tmp} ; + { tmp=`(umask 077 && mktemp -d -q "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || + { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || + { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; +dummy=$tmp/dummy ; +tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; +case $CC_FOR_BUILD,$HOST_CC,$CC in + ,,) echo "int x;" > $dummy.c ; + for c in cc gcc c89 c99 ; do + if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then + CC_FOR_BUILD="$c"; break ; + fi ; + done ; + if test x"$CC_FOR_BUILD" = x ; then + CC_FOR_BUILD=no_compiler_found ; + fi + ;; + ,,*) CC_FOR_BUILD=$CC ;; + ,*,*) CC_FOR_BUILD=$HOST_CC ;; +esac ;' + +# This is needed to find uname on a Pyramid OSx when run in the BSD universe. +# (ghazi@noc.rutgers.edu 1994-08-24) +if (test -f /.attbin/uname) >/dev/null 2>&1 ; then + PATH=$PATH:/.attbin ; export PATH +fi + +UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown +UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown +UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown +UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown + +# Note: order is significant - the case branches are not exclusive. + +case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in + *:NetBSD:*:*) + # NetBSD (nbsd) targets should (where applicable) match one or + # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, + # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently + # switched to ELF, *-*-netbsd* would select the old + # object file format. This provides both forward + # compatibility and a consistent mechanism for selecting the + # object file format. + # + # Note: NetBSD doesn't particularly care about the vendor + # portion of the name. We always set it to "unknown". + sysctl="sysctl -n hw.machine_arch" + UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ + /usr/sbin/$sysctl 2>/dev/null || echo unknown)` + case "${UNAME_MACHINE_ARCH}" in + armeb) machine=armeb-unknown ;; + arm*) machine=arm-unknown ;; + sh3el) machine=shl-unknown ;; + sh3eb) machine=sh-unknown ;; + *) machine=${UNAME_MACHINE_ARCH}-unknown ;; + esac + # The Operating System including object format, if it has switched + # to ELF recently, or will in the future. + case "${UNAME_MACHINE_ARCH}" in + arm*|i386|m68k|ns32k|sh3*|sparc|vax) + eval $set_cc_for_build + if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep __ELF__ >/dev/null + then + # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). + # Return netbsd for either. FIX? + os=netbsd + else + os=netbsdelf + fi + ;; + *) + os=netbsd + ;; + esac + # The OS release + # Debian GNU/NetBSD machines have a different userland, and + # thus, need a distinct triplet. However, they do not need + # kernel version information, so it can be replaced with a + # suitable tag, in the style of linux-gnu. + case "${UNAME_VERSION}" in + Debian*) + release='-gnu' + ;; + *) + release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` + ;; + esac + # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: + # contains redundant information, the shorter form: + # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. + echo "${machine}-${os}${release}" + exit 0 ;; + amiga:OpenBSD:*:*) + echo m68k-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + arc:OpenBSD:*:*) + echo mipsel-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + hp300:OpenBSD:*:*) + echo m68k-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + mac68k:OpenBSD:*:*) + echo m68k-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + macppc:OpenBSD:*:*) + echo powerpc-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + mvme68k:OpenBSD:*:*) + echo m68k-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + mvme88k:OpenBSD:*:*) + echo m88k-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + mvmeppc:OpenBSD:*:*) + echo powerpc-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + pmax:OpenBSD:*:*) + echo mipsel-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + sgi:OpenBSD:*:*) + echo mipseb-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + sun3:OpenBSD:*:*) + echo m68k-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + wgrisc:OpenBSD:*:*) + echo mipsel-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + *:OpenBSD:*:*) + echo ${UNAME_MACHINE}-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + alpha:OSF1:*:*) + if test $UNAME_RELEASE = "V4.0"; then + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` + fi + # According to Compaq, /usr/sbin/psrinfo has been available on + # OSF/1 and Tru64 systems produced since 1995. I hope that + # covers most systems running today. This code pipes the CPU + # types through head -n 1, so we only detect the type of CPU 0. + ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` + case "$ALPHA_CPU_TYPE" in + "EV4 (21064)") + UNAME_MACHINE="alpha" ;; + "EV4.5 (21064)") + UNAME_MACHINE="alpha" ;; + "LCA4 (21066/21068)") + UNAME_MACHINE="alpha" ;; + "EV5 (21164)") + UNAME_MACHINE="alphaev5" ;; + "EV5.6 (21164A)") + UNAME_MACHINE="alphaev56" ;; + "EV5.6 (21164PC)") + UNAME_MACHINE="alphapca56" ;; + "EV5.7 (21164PC)") + UNAME_MACHINE="alphapca57" ;; + "EV6 (21264)") + UNAME_MACHINE="alphaev6" ;; + "EV6.7 (21264A)") + UNAME_MACHINE="alphaev67" ;; + "EV6.8CB (21264C)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8AL (21264B)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8CX (21264D)") + UNAME_MACHINE="alphaev68" ;; + "EV6.9A (21264/EV69A)") + UNAME_MACHINE="alphaev69" ;; + "EV7 (21364)") + UNAME_MACHINE="alphaev7" ;; + "EV7.9 (21364A)") + UNAME_MACHINE="alphaev79" ;; + esac + # A Vn.n version is a released version. + # A Tn.n version is a released field test version. + # A Xn.n version is an unreleased experimental baselevel. + # 1.2 uses "1.2" for uname -r. + echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + exit 0 ;; + Alpha\ *:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # Should we change UNAME_MACHINE based on the output of uname instead + # of the specific Alpha model? + echo alpha-pc-interix + exit 0 ;; + 21064:Windows_NT:50:3) + echo alpha-dec-winnt3.5 + exit 0 ;; + Amiga*:UNIX_System_V:4.0:*) + echo m68k-unknown-sysv4 + exit 0;; + *:[Aa]miga[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-amigaos + exit 0 ;; + *:[Mm]orph[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-morphos + exit 0 ;; + *:OS/390:*:*) + echo i370-ibm-openedition + exit 0 ;; + arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) + echo arm-acorn-riscix${UNAME_RELEASE} + exit 0;; + SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) + echo hppa1.1-hitachi-hiuxmpp + exit 0;; + Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) + # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. + if test "`(/bin/universe) 2>/dev/null`" = att ; then + echo pyramid-pyramid-sysv3 + else + echo pyramid-pyramid-bsd + fi + exit 0 ;; + NILE*:*:*:dcosx) + echo pyramid-pyramid-svr4 + exit 0 ;; + DRS?6000:UNIX_SV:4.2*:7*) + case `/usr/bin/uname -p` in + sparc) echo sparc-icl-nx7 && exit 0 ;; + esac ;; + sun4H:SunOS:5.*:*) + echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit 0 ;; + sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) + echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit 0 ;; + i86pc:SunOS:5.*:*) + echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit 0 ;; + sun4*:SunOS:6*:*) + # According to config.sub, this is the proper way to canonicalize + # SunOS6. Hard to guess exactly what SunOS6 will be like, but + # it's likely to be more like Solaris than SunOS4. + echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit 0 ;; + sun4*:SunOS:*:*) + case "`/usr/bin/arch -k`" in + Series*|S4*) + UNAME_RELEASE=`uname -v` + ;; + esac + # Japanese Language versions have a version number like `4.1.3-JL'. + echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` + exit 0 ;; + sun3*:SunOS:*:*) + echo m68k-sun-sunos${UNAME_RELEASE} + exit 0 ;; + sun*:*:4.2BSD:*) + UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` + test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 + case "`/bin/arch`" in + sun3) + echo m68k-sun-sunos${UNAME_RELEASE} + ;; + sun4) + echo sparc-sun-sunos${UNAME_RELEASE} + ;; + esac + exit 0 ;; + aushp:SunOS:*:*) + echo sparc-auspex-sunos${UNAME_RELEASE} + exit 0 ;; + # The situation for MiNT is a little confusing. The machine name + # can be virtually everything (everything which is not + # "atarist" or "atariste" at least should have a processor + # > m68000). The system name ranges from "MiNT" over "FreeMiNT" + # to the lowercase version "mint" (or "freemint"). Finally + # the system name "TOS" denotes a system which is actually not + # MiNT. But MiNT is downward compatible to TOS, so this should + # be no problem. + atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit 0 ;; + atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit 0 ;; + *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit 0 ;; + milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) + echo m68k-milan-mint${UNAME_RELEASE} + exit 0 ;; + hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) + echo m68k-hades-mint${UNAME_RELEASE} + exit 0 ;; + *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) + echo m68k-unknown-mint${UNAME_RELEASE} + exit 0 ;; + powerpc:machten:*:*) + echo powerpc-apple-machten${UNAME_RELEASE} + exit 0 ;; + RISC*:Mach:*:*) + echo mips-dec-mach_bsd4.3 + exit 0 ;; + RISC*:ULTRIX:*:*) + echo mips-dec-ultrix${UNAME_RELEASE} + exit 0 ;; + VAX*:ULTRIX*:*:*) + echo vax-dec-ultrix${UNAME_RELEASE} + exit 0 ;; + 2020:CLIX:*:* | 2430:CLIX:*:*) + echo clipper-intergraph-clix${UNAME_RELEASE} + exit 0 ;; + mips:*:*:UMIPS | mips:*:*:RISCos) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c +#ifdef __cplusplus +#include /* for printf() prototype */ + int main (int argc, char *argv[]) { +#else + int main (argc, argv) int argc; char *argv[]; { +#endif + #if defined (host_mips) && defined (MIPSEB) + #if defined (SYSTYPE_SYSV) + printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_SVR4) + printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) + printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); + #endif + #endif + exit (-1); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c \ + && $dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \ + && exit 0 + echo mips-mips-riscos${UNAME_RELEASE} + exit 0 ;; + Motorola:PowerMAX_OS:*:*) + echo powerpc-motorola-powermax + exit 0 ;; + Motorola:*:4.3:PL8-*) + echo powerpc-harris-powermax + exit 0 ;; + Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) + echo powerpc-harris-powermax + exit 0 ;; + Night_Hawk:Power_UNIX:*:*) + echo powerpc-harris-powerunix + exit 0 ;; + m88k:CX/UX:7*:*) + echo m88k-harris-cxux7 + exit 0 ;; + m88k:*:4*:R4*) + echo m88k-motorola-sysv4 + exit 0 ;; + m88k:*:3*:R3*) + echo m88k-motorola-sysv3 + exit 0 ;; + AViiON:dgux:*:*) + # DG/UX returns AViiON for all architectures + UNAME_PROCESSOR=`/usr/bin/uname -p` + if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] + then + if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ + [ ${TARGET_BINARY_INTERFACE}x = x ] + then + echo m88k-dg-dgux${UNAME_RELEASE} + else + echo m88k-dg-dguxbcs${UNAME_RELEASE} + fi + else + echo i586-dg-dgux${UNAME_RELEASE} + fi + exit 0 ;; + M88*:DolphinOS:*:*) # DolphinOS (SVR3) + echo m88k-dolphin-sysv3 + exit 0 ;; + M88*:*:R3*:*) + # Delta 88k system running SVR3 + echo m88k-motorola-sysv3 + exit 0 ;; + XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) + echo m88k-tektronix-sysv3 + exit 0 ;; + Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) + echo m68k-tektronix-bsd + exit 0 ;; + *:IRIX*:*:*) + echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` + exit 0 ;; + ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. + echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id + exit 0 ;; # Note that: echo "'`uname -s`'" gives 'AIX ' + i*86:AIX:*:*) + echo i386-ibm-aix + exit 0 ;; + ia64:AIX:*:*) + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} + exit 0 ;; + *:AIX:2:3) + if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + + main() + { + if (!__power_pc()) + exit(1); + puts("powerpc-ibm-aix3.2.5"); + exit(0); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && $dummy && exit 0 + echo rs6000-ibm-aix3.2.5 + elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then + echo rs6000-ibm-aix3.2.4 + else + echo rs6000-ibm-aix3.2 + fi + exit 0 ;; + *:AIX:*:[45]) + IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` + if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then + IBM_ARCH=rs6000 + else + IBM_ARCH=powerpc + fi + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${IBM_ARCH}-ibm-aix${IBM_REV} + exit 0 ;; + *:AIX:*:*) + echo rs6000-ibm-aix + exit 0 ;; + ibmrt:4.4BSD:*|romp-ibm:BSD:*) + echo romp-ibm-bsd4.4 + exit 0 ;; + ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and + echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to + exit 0 ;; # report: romp-ibm BSD 4.3 + *:BOSX:*:*) + echo rs6000-bull-bosx + exit 0 ;; + DPX/2?00:B.O.S.:*:*) + echo m68k-bull-sysv3 + exit 0 ;; + 9000/[34]??:4.3bsd:1.*:*) + echo m68k-hp-bsd + exit 0 ;; + hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) + echo m68k-hp-bsd4.4 + exit 0 ;; + 9000/[34678]??:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + case "${UNAME_MACHINE}" in + 9000/31? ) HP_ARCH=m68000 ;; + 9000/[34]?? ) HP_ARCH=m68k ;; + 9000/[678][0-9][0-9]) + if [ -x /usr/bin/getconf ]; then + sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` + sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` + case "${sc_cpu_version}" in + 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 + 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 + 532) # CPU_PA_RISC2_0 + case "${sc_kernel_bits}" in + 32) HP_ARCH="hppa2.0n" ;; + 64) HP_ARCH="hppa2.0w" ;; + '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 + esac ;; + esac + fi + if [ "${HP_ARCH}" = "" ]; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + + #define _HPUX_SOURCE + #include + #include + + int main () + { + #if defined(_SC_KERNEL_BITS) + long bits = sysconf(_SC_KERNEL_BITS); + #endif + long cpu = sysconf (_SC_CPU_VERSION); + + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1"); break; + case CPU_PA_RISC2_0: + #if defined(_SC_KERNEL_BITS) + switch (bits) + { + case 64: puts ("hppa2.0w"); break; + case 32: puts ("hppa2.0n"); break; + default: puts ("hppa2.0"); break; + } break; + #else /* !defined(_SC_KERNEL_BITS) */ + puts ("hppa2.0"); break; + #endif + default: puts ("hppa1.0"); break; + } + exit (0); + } +EOF + (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` + test -z "$HP_ARCH" && HP_ARCH=hppa + fi ;; + esac + if [ ${HP_ARCH} = "hppa2.0w" ] + then + # avoid double evaluation of $set_cc_for_build + test -n "$CC_FOR_BUILD" || eval $set_cc_for_build + if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E -) | grep __LP64__ >/dev/null + then + HP_ARCH="hppa2.0w" + else + HP_ARCH="hppa64" + fi + fi + echo ${HP_ARCH}-hp-hpux${HPUX_REV} + exit 0 ;; + ia64:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + echo ia64-hp-hpux${HPUX_REV} + exit 0 ;; + 3050*:HI-UX:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + int + main () + { + long cpu = sysconf (_SC_CPU_VERSION); + /* The order matters, because CPU_IS_HP_MC68K erroneously returns + true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct + results, however. */ + if (CPU_IS_PA_RISC (cpu)) + { + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; + case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; + default: puts ("hppa-hitachi-hiuxwe2"); break; + } + } + else if (CPU_IS_HP_MC68K (cpu)) + puts ("m68k-hitachi-hiuxwe2"); + else puts ("unknown-hitachi-hiuxwe2"); + exit (0); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && $dummy && exit 0 + echo unknown-hitachi-hiuxwe2 + exit 0 ;; + 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) + echo hppa1.1-hp-bsd + exit 0 ;; + 9000/8??:4.3bsd:*:*) + echo hppa1.0-hp-bsd + exit 0 ;; + *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) + echo hppa1.0-hp-mpeix + exit 0 ;; + hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) + echo hppa1.1-hp-osf + exit 0 ;; + hp8??:OSF1:*:*) + echo hppa1.0-hp-osf + exit 0 ;; + i*86:OSF1:*:*) + if [ -x /usr/sbin/sysversion ] ; then + echo ${UNAME_MACHINE}-unknown-osf1mk + else + echo ${UNAME_MACHINE}-unknown-osf1 + fi + exit 0 ;; + parisc*:Lites*:*:*) + echo hppa1.1-hp-lites + exit 0 ;; + C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) + echo c1-convex-bsd + exit 0 ;; + C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit 0 ;; + C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) + echo c34-convex-bsd + exit 0 ;; + C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) + echo c38-convex-bsd + exit 0 ;; + C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) + echo c4-convex-bsd + exit 0 ;; + CRAY*Y-MP:*:*:*) + echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit 0 ;; + CRAY*[A-Z]90:*:*:*) + echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ + | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ + -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ + -e 's/\.[^.]*$/.X/' + exit 0 ;; + CRAY*TS:*:*:*) + echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit 0 ;; + CRAY*T3E:*:*:*) + echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit 0 ;; + CRAY*SV1:*:*:*) + echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit 0 ;; + *:UNICOS/mp:*:*) + echo nv1-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit 0 ;; + F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) + FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` + echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit 0 ;; + i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) + echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} + exit 0 ;; + sparc*:BSD/OS:*:*) + echo sparc-unknown-bsdi${UNAME_RELEASE} + exit 0 ;; + *:BSD/OS:*:*) + echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} + exit 0 ;; + *:FreeBSD:*:*) + # Determine whether the default compiler uses glibc. + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + #if __GLIBC__ >= 2 + LIBC=gnu + #else + LIBC= + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=` + echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`${LIBC:+-$LIBC} + exit 0 ;; + i*:CYGWIN*:*) + echo ${UNAME_MACHINE}-pc-cygwin + exit 0 ;; + i*:MINGW*:*) + echo ${UNAME_MACHINE}-pc-mingw32 + exit 0 ;; + i*:PW*:*) + echo ${UNAME_MACHINE}-pc-pw32 + exit 0 ;; + x86:Interix*:3*) + echo i586-pc-interix3 + exit 0 ;; + [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) + echo i${UNAME_MACHINE}-pc-mks + exit 0 ;; + i*:Windows_NT*:* | Pentium*:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we + # UNAME_MACHINE based on the output of uname instead of i386? + echo i586-pc-interix + exit 0 ;; + i*:UWIN*:*) + echo ${UNAME_MACHINE}-pc-uwin + exit 0 ;; + p*:CYGWIN*:*) + echo powerpcle-unknown-cygwin + exit 0 ;; + prep*:SunOS:5.*:*) + echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit 0 ;; + *:GNU:*:*) + echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + exit 0 ;; + i*86:Minix:*:*) + echo ${UNAME_MACHINE}-pc-minix + exit 0 ;; + arm*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit 0 ;; + ia64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit 0 ;; + m68*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit 0 ;; + mips:Linux:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #undef CPU + #undef mips + #undef mipsel + #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) + CPU=mipsel + #else + #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) + CPU=mips + #else + CPU= + #endif + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` + test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0 + ;; + mips64:Linux:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #undef CPU + #undef mips64 + #undef mips64el + #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) + CPU=mips64el + #else + #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) + CPU=mips64 + #else + CPU= + #endif + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` + test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0 + ;; + ppc:Linux:*:*) + echo powerpc-unknown-linux-gnu + exit 0 ;; + ppc64:Linux:*:*) + echo powerpc64-unknown-linux-gnu + exit 0 ;; + alpha:Linux:*:*) + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in + EV5) UNAME_MACHINE=alphaev5 ;; + EV56) UNAME_MACHINE=alphaev56 ;; + PCA56) UNAME_MACHINE=alphapca56 ;; + PCA57) UNAME_MACHINE=alphapca56 ;; + EV6) UNAME_MACHINE=alphaev6 ;; + EV67) UNAME_MACHINE=alphaev67 ;; + EV68*) UNAME_MACHINE=alphaev68 ;; + esac + objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null + if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi + echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} + exit 0 ;; + parisc:Linux:*:* | hppa:Linux:*:*) + # Look for CPU level + case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in + PA7*) echo hppa1.1-unknown-linux-gnu ;; + PA8*) echo hppa2.0-unknown-linux-gnu ;; + *) echo hppa-unknown-linux-gnu ;; + esac + exit 0 ;; + parisc64:Linux:*:* | hppa64:Linux:*:*) + echo hppa64-unknown-linux-gnu + exit 0 ;; + s390:Linux:*:* | s390x:Linux:*:*) + echo ${UNAME_MACHINE}-ibm-linux + exit 0 ;; + sh*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit 0 ;; + sparc:Linux:*:* | sparc64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit 0 ;; + x86_64:Linux:*:*) + echo x86_64-unknown-linux-gnu + exit 0 ;; + i*86:Linux:*:*) + # The BFD linker knows what the default object file format is, so + # first see if it will tell us. cd to the root directory to prevent + # problems with other programs or directories called `ld' in the path. + # Set LC_ALL=C to ensure ld outputs messages in English. + ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ + | sed -ne '/supported targets:/!d + s/[ ][ ]*/ /g + s/.*supported targets: *// + s/ .*// + p'` + case "$ld_supported_targets" in + elf32-i386) + TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" + ;; + a.out-i386-linux) + echo "${UNAME_MACHINE}-pc-linux-gnuaout" + exit 0 ;; + coff-i386) + echo "${UNAME_MACHINE}-pc-linux-gnucoff" + exit 0 ;; + "") + # Either a pre-BFD a.out linker (linux-gnuoldld) or + # one that does not give us useful --help. + echo "${UNAME_MACHINE}-pc-linux-gnuoldld" + exit 0 ;; + esac + # Determine whether the default compiler is a.out or elf + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + #ifdef __ELF__ + # ifdef __GLIBC__ + # if __GLIBC__ >= 2 + LIBC=gnu + # else + LIBC=gnulibc1 + # endif + # else + LIBC=gnulibc1 + # endif + #else + #ifdef __INTEL_COMPILER + LIBC=gnu + #else + LIBC=gnuaout + #endif + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=` + test x"${LIBC}" != x && echo "${UNAME_MACHINE}-pc-linux-${LIBC}" && exit 0 + test x"${TENTATIVE}" != x && echo "${TENTATIVE}" && exit 0 + ;; + i*86:DYNIX/ptx:4*:*) + # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. + # earlier versions are messed up and put the nodename in both + # sysname and nodename. + echo i386-sequent-sysv4 + exit 0 ;; + i*86:UNIX_SV:4.2MP:2.*) + # Unixware is an offshoot of SVR4, but it has its own version + # number series starting with 2... + # I am not positive that other SVR4 systems won't match this, + # I just have to hope. -- rms. + # Use sysv4.2uw... so that sysv4* matches it. + echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} + exit 0 ;; + i*86:OS/2:*:*) + # If we were able to find `uname', then EMX Unix compatibility + # is probably installed. + echo ${UNAME_MACHINE}-pc-os2-emx + exit 0 ;; + i*86:XTS-300:*:STOP) + echo ${UNAME_MACHINE}-unknown-stop + exit 0 ;; + i*86:atheos:*:*) + echo ${UNAME_MACHINE}-unknown-atheos + exit 0 ;; + i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) + echo i386-unknown-lynxos${UNAME_RELEASE} + exit 0 ;; + i*86:*DOS:*:*) + echo ${UNAME_MACHINE}-pc-msdosdjgpp + exit 0 ;; + i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) + UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` + if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then + echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} + else + echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} + fi + exit 0 ;; + i*86:*:5:[78]*) + case `/bin/uname -X | grep "^Machine"` in + *486*) UNAME_MACHINE=i486 ;; + *Pentium) UNAME_MACHINE=i586 ;; + *Pent*|*Celeron) UNAME_MACHINE=i686 ;; + esac + echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} + exit 0 ;; + i*86:*:3.2:*) + if test -f /usr/options/cb.name; then + UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then + UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` + (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 + (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ + && UNAME_MACHINE=i586 + (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ + && UNAME_MACHINE=i686 + (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ + && UNAME_MACHINE=i686 + echo ${UNAME_MACHINE}-pc-sco$UNAME_REL + else + echo ${UNAME_MACHINE}-pc-sysv32 + fi + exit 0 ;; + pc:*:*:*) + # Left here for compatibility: + # uname -m prints for DJGPP always 'pc', but it prints nothing about + # the processor, so we play safe by assuming i386. + echo i386-pc-msdosdjgpp + exit 0 ;; + Intel:Mach:3*:*) + echo i386-pc-mach3 + exit 0 ;; + paragon:*:*:*) + echo i860-intel-osf1 + exit 0 ;; + i860:*:4.*:*) # i860-SVR4 + if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then + echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 + else # Add other i860-SVR4 vendors below as they are discovered. + echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 + fi + exit 0 ;; + mini*:CTIX:SYS*5:*) + # "miniframe" + echo m68010-convergent-sysv + exit 0 ;; + mc68k:UNIX:SYSTEM5:3.51m) + echo m68k-convergent-sysv + exit 0 ;; + M680?0:D-NIX:5.3:*) + echo m68k-diab-dnix + exit 0 ;; + M68*:*:R3V[567]*:*) + test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;; + 3[34]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0) + OS_REL='' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && echo i486-ncr-sysv4.3${OS_REL} && exit 0 + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && echo i586-ncr-sysv4.3${OS_REL} && exit 0 ;; + 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && echo i486-ncr-sysv4 && exit 0 ;; + m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) + echo m68k-unknown-lynxos${UNAME_RELEASE} + exit 0 ;; + mc68030:UNIX_System_V:4.*:*) + echo m68k-atari-sysv4 + exit 0 ;; + TSUNAMI:LynxOS:2.*:*) + echo sparc-unknown-lynxos${UNAME_RELEASE} + exit 0 ;; + rs6000:LynxOS:2.*:*) + echo rs6000-unknown-lynxos${UNAME_RELEASE} + exit 0 ;; + PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*) + echo powerpc-unknown-lynxos${UNAME_RELEASE} + exit 0 ;; + SM[BE]S:UNIX_SV:*:*) + echo mips-dde-sysv${UNAME_RELEASE} + exit 0 ;; + RM*:ReliantUNIX-*:*:*) + echo mips-sni-sysv4 + exit 0 ;; + RM*:SINIX-*:*:*) + echo mips-sni-sysv4 + exit 0 ;; + *:SINIX-*:*:*) + if uname -p 2>/dev/null >/dev/null ; then + UNAME_MACHINE=`(uname -p) 2>/dev/null` + echo ${UNAME_MACHINE}-sni-sysv4 + else + echo ns32k-sni-sysv + fi + exit 0 ;; + PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort + # says + echo i586-unisys-sysv4 + exit 0 ;; + *:UNIX_System_V:4*:FTX*) + # From Gerald Hewes . + # How about differentiating between stratus architectures? -djm + echo hppa1.1-stratus-sysv4 + exit 0 ;; + *:*:*:FTX*) + # From seanf@swdc.stratus.com. + echo i860-stratus-sysv4 + exit 0 ;; + *:VOS:*:*) + # From Paul.Green@stratus.com. + echo hppa1.1-stratus-vos + exit 0 ;; + mc68*:A/UX:*:*) + echo m68k-apple-aux${UNAME_RELEASE} + exit 0 ;; + news*:NEWS-OS:6*:*) + echo mips-sony-newsos6 + exit 0 ;; + R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) + if [ -d /usr/nec ]; then + echo mips-nec-sysv${UNAME_RELEASE} + else + echo mips-unknown-sysv${UNAME_RELEASE} + fi + exit 0 ;; + BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. + echo powerpc-be-beos + exit 0 ;; + BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. + echo powerpc-apple-beos + exit 0 ;; + BePC:BeOS:*:*) # BeOS running on Intel PC compatible. + echo i586-pc-beos + exit 0 ;; + SX-4:SUPER-UX:*:*) + echo sx4-nec-superux${UNAME_RELEASE} + exit 0 ;; + SX-5:SUPER-UX:*:*) + echo sx5-nec-superux${UNAME_RELEASE} + exit 0 ;; + SX-6:SUPER-UX:*:*) + echo sx6-nec-superux${UNAME_RELEASE} + exit 0 ;; + Power*:Rhapsody:*:*) + echo powerpc-apple-rhapsody${UNAME_RELEASE} + exit 0 ;; + *:Rhapsody:*:*) + echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} + exit 0 ;; + *:Darwin:*:*) + case `uname -p` in + *86) UNAME_PROCESSOR=i686 ;; + powerpc) UNAME_PROCESSOR=powerpc ;; + esac + echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} + exit 0 ;; + *:procnto*:*:* | *:QNX:[0123456789]*:*) + UNAME_PROCESSOR=`uname -p` + if test "$UNAME_PROCESSOR" = "x86"; then + UNAME_PROCESSOR=i386 + UNAME_MACHINE=pc + fi + echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} + exit 0 ;; + *:QNX:*:4*) + echo i386-pc-qnx + exit 0 ;; + NSR-[DGKLNPTVW]:NONSTOP_KERNEL:*:*) + echo nsr-tandem-nsk${UNAME_RELEASE} + exit 0 ;; + *:NonStop-UX:*:*) + echo mips-compaq-nonstopux + exit 0 ;; + BS2000:POSIX*:*:*) + echo bs2000-siemens-sysv + exit 0 ;; + DS/*:UNIX_System_V:*:*) + echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} + exit 0 ;; + *:Plan9:*:*) + # "uname -m" is not consistent, so use $cputype instead. 386 + # is converted to i386 for consistency with other x86 + # operating systems. + if test "$cputype" = "386"; then + UNAME_MACHINE=i386 + else + UNAME_MACHINE="$cputype" + fi + echo ${UNAME_MACHINE}-unknown-plan9 + exit 0 ;; + *:TOPS-10:*:*) + echo pdp10-unknown-tops10 + exit 0 ;; + *:TENEX:*:*) + echo pdp10-unknown-tenex + exit 0 ;; + KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) + echo pdp10-dec-tops20 + exit 0 ;; + XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) + echo pdp10-xkl-tops20 + exit 0 ;; + *:TOPS-20:*:*) + echo pdp10-unknown-tops20 + exit 0 ;; + *:ITS:*:*) + echo pdp10-unknown-its + exit 0 ;; +esac + +#echo '(No uname command or uname output not recognized.)' 1>&2 +#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 + +eval $set_cc_for_build +cat >$dummy.c < +# include +#endif +main () +{ +#if defined (sony) +#if defined (MIPSEB) + /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, + I don't know.... */ + printf ("mips-sony-bsd\n"); exit (0); +#else +#include + printf ("m68k-sony-newsos%s\n", +#ifdef NEWSOS4 + "4" +#else + "" +#endif + ); exit (0); +#endif +#endif + +#if defined (__arm) && defined (__acorn) && defined (__unix) + printf ("arm-acorn-riscix"); exit (0); +#endif + +#if defined (hp300) && !defined (hpux) + printf ("m68k-hp-bsd\n"); exit (0); +#endif + +#if defined (NeXT) +#if !defined (__ARCHITECTURE__) +#define __ARCHITECTURE__ "m68k" +#endif + int version; + version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; + if (version < 4) + printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); + else + printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); + exit (0); +#endif + +#if defined (MULTIMAX) || defined (n16) +#if defined (UMAXV) + printf ("ns32k-encore-sysv\n"); exit (0); +#else +#if defined (CMU) + printf ("ns32k-encore-mach\n"); exit (0); +#else + printf ("ns32k-encore-bsd\n"); exit (0); +#endif +#endif +#endif + +#if defined (__386BSD__) + printf ("i386-pc-bsd\n"); exit (0); +#endif + +#if defined (sequent) +#if defined (i386) + printf ("i386-sequent-dynix\n"); exit (0); +#endif +#if defined (ns32000) + printf ("ns32k-sequent-dynix\n"); exit (0); +#endif +#endif + +#if defined (_SEQUENT_) + struct utsname un; + + uname(&un); + + if (strncmp(un.version, "V2", 2) == 0) { + printf ("i386-sequent-ptx2\n"); exit (0); + } + if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ + printf ("i386-sequent-ptx1\n"); exit (0); + } + printf ("i386-sequent-ptx\n"); exit (0); + +#endif + +#if defined (vax) +# if !defined (ultrix) +# include +# if defined (BSD) +# if BSD == 43 + printf ("vax-dec-bsd4.3\n"); exit (0); +# else +# if BSD == 199006 + printf ("vax-dec-bsd4.3reno\n"); exit (0); +# else + printf ("vax-dec-bsd\n"); exit (0); +# endif +# endif +# else + printf ("vax-dec-bsd\n"); exit (0); +# endif +# else + printf ("vax-dec-ultrix\n"); exit (0); +# endif +#endif + +#if defined (alliant) && defined (i860) + printf ("i860-alliant-bsd\n"); exit (0); +#endif + + exit (1); +} +EOF + +$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && $dummy && exit 0 + +# Apollos put the system type in the environment. + +test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; } + +# Convex versions that predate uname can use getsysinfo(1) + +if [ -x /usr/convex/getsysinfo ] +then + case `getsysinfo -f cpu_type` in + c1*) + echo c1-convex-bsd + exit 0 ;; + c2*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit 0 ;; + c34*) + echo c34-convex-bsd + exit 0 ;; + c38*) + echo c38-convex-bsd + exit 0 ;; + c4*) + echo c4-convex-bsd + exit 0 ;; + esac +fi + +cat >&2 < in order to provide the needed +information to handle your system. + +config.guess timestamp = $timestamp + +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null` + +hostinfo = `(hostinfo) 2>/dev/null` +/bin/universe = `(/bin/universe) 2>/dev/null` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` +/bin/arch = `(/bin/arch) 2>/dev/null` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` + +UNAME_MACHINE = ${UNAME_MACHINE} +UNAME_RELEASE = ${UNAME_RELEASE} +UNAME_SYSTEM = ${UNAME_SYSTEM} +UNAME_VERSION = ${UNAME_VERSION} +EOF + +exit 1 + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff --git a/src/apps/bin/coreutils-5.0/config/config.rpath b/src/apps/bin/coreutils-5.0/config/config.rpath new file mode 100755 index 0000000000..5ead7586a7 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/config/config.rpath @@ -0,0 +1,513 @@ +#! /bin/sh +# Output a system dependent set of variables, describing how to set the +# run time search path of shared libraries in an executable. +# +# Copyright 1996-2002 Free Software Foundation, Inc. +# Taken from GNU libtool, 2001 +# Originally by Gordon Matzigkeit , 1996 +# +# 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 2 of the License, 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, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. +# +# The first argument passed to this file is the canonical host specification, +# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM +# or +# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM +# The environment variables CC, GCC, LDFLAGS, LD, with_gnu_ld +# should be set by the caller. +# +# The set of defined variables is at the end of this script. + +# All known linkers require a `.a' archive for static linking (except M$VC, +# which needs '.lib'). +libext=a +shlibext= + +host="$1" +host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` +host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` +host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` + +wl= +if test "$GCC" = yes; then + wl='-Wl,' +else + case "$host_os" in + aix3* | aix4* | aix5*) + wl='-Wl,' + ;; + hpux9* | hpux10* | hpux11*) + wl='-Wl,' + ;; + irix5* | irix6*) + wl='-Wl,' + ;; + linux*) + echo '__INTEL_COMPILER' > conftest.$ac_ext + if $CC -E conftest.$ac_ext >/dev/null | grep __INTEL_COMPILER >/dev/null + then + : + else + # Intel icc + wl='-Qoption,ld,' + fi + ;; + osf3* | osf4* | osf5*) + wl='-Wl,' + ;; + solaris*) + wl='-Wl,' + ;; + sunos4*) + wl='-Qoption ld ' + ;; + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + if test "x$host_vendor" = xsni; then + wl='-LD' + else + wl='-Wl,' + fi + ;; + esac +fi + +hardcode_libdir_flag_spec= +hardcode_libdir_separator= +hardcode_direct=no +hardcode_minus_L=no + +case "$host_os" in + cygwin* | mingw* | pw32*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test "$GCC" != yes; then + with_gnu_ld=no + fi + ;; + openbsd*) + with_gnu_ld=no + ;; +esac + +ld_shlibs=yes +if test "$with_gnu_ld" = yes; then + case "$host_os" in + aix3* | aix4* | aix5*) + # On AIX, the GNU linker is very broken + ld_shlibs=no + ;; + amigaos*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + # Samuel A. Falvo II reports + # that the semantics of dynamic libraries on AmigaOS, at least up + # to version 4, is to share data among multiple programs linked + # with the same dynamic library. Since this doesn't match the + # behavior of shared libraries on other platforms, we can use + # them. + ld_shlibs=no + ;; + beos*) + if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then + : + else + ld_shlibs=no + fi + ;; + cygwin* | mingw* | pw32*) + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + hardcode_libdir_flag_spec='-L$libdir' + ;; + solaris* | sysv5*) + if $LD -v 2>&1 | egrep 'BFD 2\.8' > /dev/null; then + ld_shlibs=no + elif $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then + : + else + ld_shlibs=no + fi + ;; + sunos4*) + hardcode_direct=yes + ;; + *) + if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then + : + else + ld_shlibs=no + fi + ;; + esac + if test "$ld_shlibs" = yes; then + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + fi +else + case "$host_os" in + aix3*) + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + hardcode_minus_L=yes + if test "$GCC" = yes; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + hardcode_direct=unsupported + fi + ;; + aix4* | aix5*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + else + aix_use_runtimelinking=no + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[23]|aix4.[23].*|aix5*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + esac + fi + hardcode_direct=yes + hardcode_libdir_separator=':' + if test "$GCC" = yes; then + case $host_os in aix4.[012]|aix4.[012].*) + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && \ + strings "$collect2name" | grep resolve_lib_name >/dev/null + then + # We have reworked collect2 + hardcode_direct=yes + else + # We have old collect2 + hardcode_direct=unsupported + hardcode_minus_L=yes + hardcode_libdir_flag_spec='-L$libdir' + hardcode_libdir_separator= + fi + esac + fi + if test "$aix_use_runtimelinking" = yes; then + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:/usr/lib:/lib' + else + if test "$host_cpu" = ia64; then + hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' + else + hardcode_libdir_flag_spec='${wl}-bnolibpath ${wl}-blibpath:$libdir:/usr/lib:/lib' + fi + fi + ;; + amigaos*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + # see comment about different semantics on the GNU ld section + ld_shlibs=no + ;; + cygwin* | mingw* | pw32*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + hardcode_libdir_flag_spec=' ' + libext=lib + ;; + darwin* | rhapsody*) + hardcode_direct=yes + ;; + freebsd1*) + ld_shlibs=no + ;; + freebsd2.2*) + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + ;; + freebsd2*) + hardcode_direct=yes + hardcode_minus_L=yes + ;; + freebsd*) + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + ;; + hpux9* | hpux10* | hpux11*) + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + hardcode_minus_L=yes # Not in the search PATH, but as the default + # location of the library. + ;; + irix5* | irix6*) + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + ;; + netbsd*) + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + ;; + newsos6) + hardcode_direct=yes + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + ;; + openbsd*) + hardcode_direct=yes + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + else + case "$host_os" in + openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) + hardcode_libdir_flag_spec='-R$libdir' + ;; + *) + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + ;; + esac + fi + ;; + os2*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + ;; + osf3*) + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + ;; + osf4* | osf5*) + if test "$GCC" = yes; then + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + else + # Both cc and cxx compiler support -rpath directly + hardcode_libdir_flag_spec='-rpath $libdir' + fi + hardcode_libdir_separator=: + ;; + sco3.2v5*) + ;; + solaris*) + hardcode_libdir_flag_spec='-R$libdir' + ;; + sunos4*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_direct=yes + hardcode_minus_L=yes + ;; + sysv4) + if test "x$host_vendor" = xsno; then + hardcode_direct=yes # is this really true??? + else + hardcode_direct=no # Motorola manual says yes, but my tests say they lie + fi + ;; + sysv4.3*) + ;; + sysv5*) + hardcode_libdir_flag_spec= + ;; + uts4*) + hardcode_libdir_flag_spec='-L$libdir' + ;; + dgux*) + hardcode_libdir_flag_spec='-L$libdir' + ;; + sysv4*MP*) + if test -d /usr/nec; then + ld_shlibs=yes + fi + ;; + sysv4.2uw2*) + hardcode_direct=yes + hardcode_minus_L=no + ;; + sysv5uw7* | unixware7*) + ;; + *) + ld_shlibs=no + ;; + esac +fi + +# Check dynamic linker characteristics +libname_spec='lib$name' +sys_lib_dlsearch_path_spec="/lib /usr/lib" +sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" +case "$host_os" in + aix3*) + shlibext=so + ;; + aix4* | aix5*) + shlibext=so + ;; + amigaos*) + shlibext=ixlibrary + ;; + beos*) + shlibext=so + ;; + bsdi4*) + shlibext=so + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + ;; + cygwin* | mingw* | pw32*) + case $GCC,$host_os in + yes,cygwin*) + shlibext=dll.a + ;; + yes,mingw*) + shlibext=dll + sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | sed -e "s/^libraries://" -e "s/;/ /g"` + ;; + yes,pw32*) + shlibext=dll + ;; + *) + shlibext=dll + ;; + esac + ;; + darwin* | rhapsody*) + shlibext=dylib + ;; + freebsd1*) + ;; + freebsd*) + shlibext=so + ;; + gnu*) + shlibext=so + ;; + hpux9* | hpux10* | hpux11*) + shlibext=sl + ;; + irix5* | irix6*) + shlibext=so + case "$host_os" in + irix5*) + libsuff= shlibsuff= + ;; + *) + case $LD in + *-32|*"-32 ") libsuff= shlibsuff= ;; + *-n32|*"-n32 ") libsuff=32 shlibsuff=N32 ;; + *-64|*"-64 ") libsuff=64 shlibsuff=64 ;; + *) libsuff= shlibsuff= ;; + esac + ;; + esac + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + ;; + linux-gnuoldld* | linux-gnuaout* | linux-gnucoff*) + ;; + linux-gnu*) + shlibext=so + ;; + netbsd*) + shlibext=so + ;; + newsos6) + shlibext=so + ;; + openbsd*) + shlibext=so + ;; + os2*) + libname_spec='$name' + shlibext=dll + ;; + osf3* | osf4* | osf5*) + shlibext=so + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + ;; + sco3.2v5*) + shlibext=so + ;; + solaris*) + shlibext=so + ;; + sunos4*) + shlibext=so + ;; + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + shlibext=so + case "$host_vendor" in + motorola) + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + uts4*) + shlibext=so + ;; + dgux*) + shlibext=so + ;; + sysv4*MP*) + if test -d /usr/nec; then + shlibext=so + fi + ;; +esac + +sed_quote_subst='s/\(["`$\\]\)/\\\1/g' +escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"` +escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` +escaped_sys_lib_search_path_spec=`echo "X$sys_lib_search_path_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` +escaped_sys_lib_dlsearch_path_spec=`echo "X$sys_lib_dlsearch_path_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` + +sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <. Submit a context +# diff and a properly formatted ChangeLog entry. +# +# Configuration subroutine to validate and canonicalize a configuration type. +# Supply the specified configuration type as an argument. +# If it is invalid, we print an error message on stderr and exit with code 1. +# Otherwise, we print the canonical config type on stdout and succeed. + +# This file is supposed to be the same for all GNU packages +# and recognize all the CPU types, system types and aliases +# that are meaningful with *any* GNU software. +# Each package is responsible for reporting which valid configurations +# it does not support. The user should be able to distinguish +# a failure to support a valid configuration from a meaningless +# configuration. + +# The goal of this file is to map all the various variations of a given +# machine specification into a single specification in the form: +# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM +# or in some cases, the newer four-part form: +# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM +# It is wrong to echo any other type of specification. + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] CPU-MFR-OPSYS + $0 [OPTION] ALIAS + +Canonicalize a configuration name. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to ." + +version="\ +GNU config.sub ($timestamp) + +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 +Free Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit 0 ;; + --version | -v ) + echo "$version" ; exit 0 ;; + --help | --h* | -h ) + echo "$usage"; exit 0 ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" + exit 1 ;; + + *local*) + # First pass through any local machine types. + echo $1 + exit 0;; + + * ) + break ;; + esac +done + +case $# in + 0) echo "$me: missing argument$help" >&2 + exit 1;; + 1) ;; + *) echo "$me: too many arguments$help" >&2 + exit 1;; +esac + +# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). +# Here we must recognize all the valid KERNEL-OS combinations. +maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` +case $maybe_os in + nto-qnx* | linux-gnu* | freebsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*) + os=-$maybe_os + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` + ;; + *) + basic_machine=`echo $1 | sed 's/-[^-]*$//'` + if [ $basic_machine != $1 ] + then os=`echo $1 | sed 's/.*-/-/'` + else os=; fi + ;; +esac + +### Let's recognize common machines as not being operating systems so +### that things like config.sub decstation-3100 work. We also +### recognize some manufacturers as not being operating systems, so we +### can provide default operating systems below. +case $os in + -sun*os*) + # Prevent following clause from handling this invalid input. + ;; + -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ + -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ + -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ + -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ + -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ + -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ + -apple | -axis) + os= + basic_machine=$1 + ;; + -sim | -cisco | -oki | -wec | -winbond) + os= + basic_machine=$1 + ;; + -scout) + ;; + -wrs) + os=-vxworks + basic_machine=$1 + ;; + -chorusos*) + os=-chorusos + basic_machine=$1 + ;; + -chorusrdb) + os=-chorusrdb + basic_machine=$1 + ;; + -hiux*) + os=-hiuxwe2 + ;; + -sco5) + os=-sco3.2v5 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco4) + os=-sco3.2v4 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2.[4-9]*) + os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2v[4-9]*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco*) + os=-sco3.2v2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -udk*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -isc) + os=-isc2.2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -clix*) + basic_machine=clipper-intergraph + ;; + -isc*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -lynx*) + os=-lynxos + ;; + -ptx*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` + ;; + -windowsnt*) + os=`echo $os | sed -e 's/windowsnt/winnt/'` + ;; + -psos*) + os=-psos + ;; + -mint | -mint[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; +esac + +# Decode aliases for certain CPU-COMPANY combinations. +case $basic_machine in + # Recognize the basic CPU types without company name. + # Some are omitted here because they have special meanings below. + 1750a | 580 \ + | a29k \ + | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ + | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ + | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \ + | clipper \ + | d10v | d30v | dlx | dsp16xx \ + | fr30 | frv \ + | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ + | i370 | i860 | i960 | ia64 \ + | ip2k \ + | m32r | m68000 | m68k | m88k | mcore \ + | mips | mipsbe | mipseb | mipsel | mipsle \ + | mips16 \ + | mips64 | mips64el \ + | mips64vr | mips64vrel \ + | mips64orion | mips64orionel \ + | mips64vr4100 | mips64vr4100el \ + | mips64vr4300 | mips64vr4300el \ + | mips64vr5000 | mips64vr5000el \ + | mipsisa32 | mipsisa32el \ + | mipsisa32r2 | mipsisa32r2el \ + | mipsisa64 | mipsisa64el \ + | mipsisa64sb1 | mipsisa64sb1el \ + | mipsisa64sr71k | mipsisa64sr71kel \ + | mipstx39 | mipstx39el \ + | mn10200 | mn10300 \ + | msp430 \ + | ns16k | ns32k \ + | openrisc | or32 \ + | pdp10 | pdp11 | pj | pjl \ + | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ + | pyramid \ + | sh | sh[1234] | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ + | sh64 | sh64le \ + | sparc | sparc64 | sparc86x | sparclet | sparclite | sparcv9 | sparcv9b \ + | strongarm \ + | tahoe | thumb | tic80 | tron \ + | v850 | v850e \ + | we32k \ + | x86 | xscale | xstormy16 | xtensa \ + | z8k) + basic_machine=$basic_machine-unknown + ;; + m6811 | m68hc11 | m6812 | m68hc12) + # Motorola 68HC11/12. + basic_machine=$basic_machine-unknown + os=-none + ;; + m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) + ;; + + # We use `pc' rather than `unknown' + # because (1) that's what they normally are, and + # (2) the word "unknown" tends to confuse beginning users. + i*86 | x86_64) + basic_machine=$basic_machine-pc + ;; + # Object if more than one company name word. + *-*-*) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; + # Recognize the basic CPU types with company name. + 580-* \ + | a29k-* \ + | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ + | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ + | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ + | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ + | avr-* \ + | bs2000-* \ + | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ + | clipper-* | cydra-* \ + | d10v-* | d30v-* | dlx-* \ + | elxsi-* \ + | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \ + | h8300-* | h8500-* \ + | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ + | i*86-* | i860-* | i960-* | ia64-* \ + | ip2k-* \ + | m32r-* \ + | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ + | m88110-* | m88k-* | mcore-* \ + | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ + | mips16-* \ + | mips64-* | mips64el-* \ + | mips64vr-* | mips64vrel-* \ + | mips64orion-* | mips64orionel-* \ + | mips64vr4100-* | mips64vr4100el-* \ + | mips64vr4300-* | mips64vr4300el-* \ + | mips64vr5000-* | mips64vr5000el-* \ + | mipsisa32-* | mipsisa32el-* \ + | mipsisa32r2-* | mipsisa32r2el-* \ + | mipsisa64-* | mipsisa64el-* \ + | mipsisa64sb1-* | mipsisa64sb1el-* \ + | mipsisa64sr71k-* | mipsisa64sr71kel-* \ + | mipstx39-* | mipstx39el-* \ + | msp430-* \ + | none-* | np1-* | nv1-* | ns16k-* | ns32k-* \ + | orion-* \ + | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ + | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ + | pyramid-* \ + | romp-* | rs6000-* \ + | sh-* | sh[1234]-* | sh[23]e-* | sh[34]eb-* | shbe-* \ + | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ + | sparc-* | sparc64-* | sparc86x-* | sparclet-* | sparclite-* \ + | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ + | tahoe-* | thumb-* \ + | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ + | tron-* \ + | v850-* | v850e-* | vax-* \ + | we32k-* \ + | x86-* | x86_64-* | xps100-* | xscale-* | xstormy16-* \ + | xtensa-* \ + | ymp-* \ + | z8k-*) + ;; + # Recognize the various machine names and aliases which stand + # for a CPU type and a company and sometimes even an OS. + 386bsd) + basic_machine=i386-unknown + os=-bsd + ;; + 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) + basic_machine=m68000-att + ;; + 3b*) + basic_machine=we32k-att + ;; + a29khif) + basic_machine=a29k-amd + os=-udi + ;; + adobe68k) + basic_machine=m68010-adobe + os=-scout + ;; + alliant | fx80) + basic_machine=fx80-alliant + ;; + altos | altos3068) + basic_machine=m68k-altos + ;; + am29k) + basic_machine=a29k-none + os=-bsd + ;; + amdahl) + basic_machine=580-amdahl + os=-sysv + ;; + amiga | amiga-*) + basic_machine=m68k-unknown + ;; + amigaos | amigados) + basic_machine=m68k-unknown + os=-amigaos + ;; + amigaunix | amix) + basic_machine=m68k-unknown + os=-sysv4 + ;; + apollo68) + basic_machine=m68k-apollo + os=-sysv + ;; + apollo68bsd) + basic_machine=m68k-apollo + os=-bsd + ;; + aux) + basic_machine=m68k-apple + os=-aux + ;; + balance) + basic_machine=ns32k-sequent + os=-dynix + ;; + c90) + basic_machine=c90-cray + os=-unicos + ;; + convex-c1) + basic_machine=c1-convex + os=-bsd + ;; + convex-c2) + basic_machine=c2-convex + os=-bsd + ;; + convex-c32) + basic_machine=c32-convex + os=-bsd + ;; + convex-c34) + basic_machine=c34-convex + os=-bsd + ;; + convex-c38) + basic_machine=c38-convex + os=-bsd + ;; + cray | j90) + basic_machine=j90-cray + os=-unicos + ;; + crds | unos) + basic_machine=m68k-crds + ;; + cris | cris-* | etrax*) + basic_machine=cris-axis + ;; + da30 | da30-*) + basic_machine=m68k-da30 + ;; + decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) + basic_machine=mips-dec + ;; + decsystem10* | dec10*) + basic_machine=pdp10-dec + os=-tops10 + ;; + decsystem20* | dec20*) + basic_machine=pdp10-dec + os=-tops20 + ;; + delta | 3300 | motorola-3300 | motorola-delta \ + | 3300-motorola | delta-motorola) + basic_machine=m68k-motorola + ;; + delta88) + basic_machine=m88k-motorola + os=-sysv3 + ;; + dpx20 | dpx20-*) + basic_machine=rs6000-bull + os=-bosx + ;; + dpx2* | dpx2*-bull) + basic_machine=m68k-bull + os=-sysv3 + ;; + ebmon29k) + basic_machine=a29k-amd + os=-ebmon + ;; + elxsi) + basic_machine=elxsi-elxsi + os=-bsd + ;; + encore | umax | mmax) + basic_machine=ns32k-encore + ;; + es1800 | OSE68k | ose68k | ose | OSE) + basic_machine=m68k-ericsson + os=-ose + ;; + fx2800) + basic_machine=i860-alliant + ;; + genix) + basic_machine=ns32k-ns + ;; + gmicro) + basic_machine=tron-gmicro + os=-sysv + ;; + go32) + basic_machine=i386-pc + os=-go32 + ;; + h3050r* | hiux*) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + h8300hms) + basic_machine=h8300-hitachi + os=-hms + ;; + h8300xray) + basic_machine=h8300-hitachi + os=-xray + ;; + h8500hms) + basic_machine=h8500-hitachi + os=-hms + ;; + harris) + basic_machine=m88k-harris + os=-sysv3 + ;; + hp300-*) + basic_machine=m68k-hp + ;; + hp300bsd) + basic_machine=m68k-hp + os=-bsd + ;; + hp300hpux) + basic_machine=m68k-hp + os=-hpux + ;; + hp3k9[0-9][0-9] | hp9[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k2[0-9][0-9] | hp9k31[0-9]) + basic_machine=m68000-hp + ;; + hp9k3[2-9][0-9]) + basic_machine=m68k-hp + ;; + hp9k6[0-9][0-9] | hp6[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k7[0-79][0-9] | hp7[0-79][0-9]) + basic_machine=hppa1.1-hp + ;; + hp9k78[0-9] | hp78[0-9]) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][13679] | hp8[0-9][13679]) + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][0-9] | hp8[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hppa-next) + os=-nextstep3 + ;; + hppaosf) + basic_machine=hppa1.1-hp + os=-osf + ;; + hppro) + basic_machine=hppa1.1-hp + os=-proelf + ;; + i370-ibm* | ibm*) + basic_machine=i370-ibm + ;; +# I'm not sure what "Sysv32" means. Should this be sysv3.2? + i*86v32) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv32 + ;; + i*86v4*) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv4 + ;; + i*86v) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv + ;; + i*86sol2) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-solaris2 + ;; + i386mach) + basic_machine=i386-mach + os=-mach + ;; + i386-vsta | vsta) + basic_machine=i386-unknown + os=-vsta + ;; + iris | iris4d) + basic_machine=mips-sgi + case $os in + -irix*) + ;; + *) + os=-irix4 + ;; + esac + ;; + isi68 | isi) + basic_machine=m68k-isi + os=-sysv + ;; + m88k-omron*) + basic_machine=m88k-omron + ;; + magnum | m3230) + basic_machine=mips-mips + os=-sysv + ;; + merlin) + basic_machine=ns32k-utek + os=-sysv + ;; + mingw32) + basic_machine=i386-pc + os=-mingw32 + ;; + miniframe) + basic_machine=m68000-convergent + ;; + *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; + mips3*-*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` + ;; + mips3*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown + ;; + mmix*) + basic_machine=mmix-knuth + os=-mmixware + ;; + monitor) + basic_machine=m68k-rom68k + os=-coff + ;; + morphos) + basic_machine=powerpc-unknown + os=-morphos + ;; + msdos) + basic_machine=i386-pc + os=-msdos + ;; + mvs) + basic_machine=i370-ibm + os=-mvs + ;; + ncr3000) + basic_machine=i486-ncr + os=-sysv4 + ;; + netbsd386) + basic_machine=i386-unknown + os=-netbsd + ;; + netwinder) + basic_machine=armv4l-rebel + os=-linux + ;; + news | news700 | news800 | news900) + basic_machine=m68k-sony + os=-newsos + ;; + news1000) + basic_machine=m68030-sony + os=-newsos + ;; + news-3600 | risc-news) + basic_machine=mips-sony + os=-newsos + ;; + necv70) + basic_machine=v70-nec + os=-sysv + ;; + next | m*-next ) + basic_machine=m68k-next + case $os in + -nextstep* ) + ;; + -ns2*) + os=-nextstep2 + ;; + *) + os=-nextstep3 + ;; + esac + ;; + nh3000) + basic_machine=m68k-harris + os=-cxux + ;; + nh[45]000) + basic_machine=m88k-harris + os=-cxux + ;; + nindy960) + basic_machine=i960-intel + os=-nindy + ;; + mon960) + basic_machine=i960-intel + os=-mon960 + ;; + nonstopux) + basic_machine=mips-compaq + os=-nonstopux + ;; + np1) + basic_machine=np1-gould + ;; + nv1) + basic_machine=nv1-cray + os=-unicosmp + ;; + nsr-tandem) + basic_machine=nsr-tandem + ;; + op50n-* | op60c-*) + basic_machine=hppa1.1-oki + os=-proelf + ;; + or32 | or32-*) + basic_machine=or32-unknown + os=-coff + ;; + OSE68000 | ose68000) + basic_machine=m68000-ericsson + os=-ose + ;; + os68k) + basic_machine=m68k-none + os=-os68k + ;; + pa-hitachi) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + paragon) + basic_machine=i860-intel + os=-osf + ;; + pbd) + basic_machine=sparc-tti + ;; + pbb) + basic_machine=m68k-tti + ;; + pc532 | pc532-*) + basic_machine=ns32k-pc532 + ;; + pentium | p5 | k5 | k6 | nexgen | viac3) + basic_machine=i586-pc + ;; + pentiumpro | p6 | 6x86 | athlon | athlon_*) + basic_machine=i686-pc + ;; + pentiumii | pentium2) + basic_machine=i686-pc + ;; + pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) + basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumpro-* | p6-* | 6x86-* | athlon-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumii-* | pentium2-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pn) + basic_machine=pn-gould + ;; + power) basic_machine=power-ibm + ;; + ppc) basic_machine=powerpc-unknown + ;; + ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppcle | powerpclittle | ppc-le | powerpc-little) + basic_machine=powerpcle-unknown + ;; + ppcle-* | powerpclittle-*) + basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64) basic_machine=powerpc64-unknown + ;; + ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64le | powerpc64little | ppc64-le | powerpc64-little) + basic_machine=powerpc64le-unknown + ;; + ppc64le-* | powerpc64little-*) + basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ps2) + basic_machine=i386-ibm + ;; + pw32) + basic_machine=i586-unknown + os=-pw32 + ;; + rom68k) + basic_machine=m68k-rom68k + os=-coff + ;; + rm[46]00) + basic_machine=mips-siemens + ;; + rtpc | rtpc-*) + basic_machine=romp-ibm + ;; + s390 | s390-*) + basic_machine=s390-ibm + ;; + s390x | s390x-*) + basic_machine=s390x-ibm + ;; + sa29200) + basic_machine=a29k-amd + os=-udi + ;; + sb1) + basic_machine=mipsisa64sb1-unknown + ;; + sb1el) + basic_machine=mipsisa64sb1el-unknown + ;; + sequent) + basic_machine=i386-sequent + ;; + sh) + basic_machine=sh-hitachi + os=-hms + ;; + sparclite-wrs | simso-wrs) + basic_machine=sparclite-wrs + os=-vxworks + ;; + sps7) + basic_machine=m68k-bull + os=-sysv2 + ;; + spur) + basic_machine=spur-unknown + ;; + st2000) + basic_machine=m68k-tandem + ;; + stratus) + basic_machine=i860-stratus + os=-sysv4 + ;; + sun2) + basic_machine=m68000-sun + ;; + sun2os3) + basic_machine=m68000-sun + os=-sunos3 + ;; + sun2os4) + basic_machine=m68000-sun + os=-sunos4 + ;; + sun3os3) + basic_machine=m68k-sun + os=-sunos3 + ;; + sun3os4) + basic_machine=m68k-sun + os=-sunos4 + ;; + sun4os3) + basic_machine=sparc-sun + os=-sunos3 + ;; + sun4os4) + basic_machine=sparc-sun + os=-sunos4 + ;; + sun4sol2) + basic_machine=sparc-sun + os=-solaris2 + ;; + sun3 | sun3-*) + basic_machine=m68k-sun + ;; + sun4) + basic_machine=sparc-sun + ;; + sun386 | sun386i | roadrunner) + basic_machine=i386-sun + ;; + sv1) + basic_machine=sv1-cray + os=-unicos + ;; + symmetry) + basic_machine=i386-sequent + os=-dynix + ;; + t3e) + basic_machine=alphaev5-cray + os=-unicos + ;; + t90) + basic_machine=t90-cray + os=-unicos + ;; + tic4x | c4x*) + basic_machine=tic4x-unknown + os=-coff + ;; + tic54x | c54x*) + basic_machine=tic54x-unknown + os=-coff + ;; + tic55x | c55x*) + basic_machine=tic55x-unknown + os=-coff + ;; + tic6x | c6x*) + basic_machine=tic6x-unknown + os=-coff + ;; + tx39) + basic_machine=mipstx39-unknown + ;; + tx39el) + basic_machine=mipstx39el-unknown + ;; + toad1) + basic_machine=pdp10-xkl + os=-tops20 + ;; + tower | tower-32) + basic_machine=m68k-ncr + ;; + udi29k) + basic_machine=a29k-amd + os=-udi + ;; + ultra3) + basic_machine=a29k-nyu + os=-sym1 + ;; + v810 | necv810) + basic_machine=v810-nec + os=-none + ;; + vaxv) + basic_machine=vax-dec + os=-sysv + ;; + vms) + basic_machine=vax-dec + os=-vms + ;; + vpp*|vx|vx-*) + basic_machine=f301-fujitsu + ;; + vxworks960) + basic_machine=i960-wrs + os=-vxworks + ;; + vxworks68) + basic_machine=m68k-wrs + os=-vxworks + ;; + vxworks29k) + basic_machine=a29k-wrs + os=-vxworks + ;; + w65*) + basic_machine=w65-wdc + os=-none + ;; + w89k-*) + basic_machine=hppa1.1-winbond + os=-proelf + ;; + xps | xps100) + basic_machine=xps100-honeywell + ;; + ymp) + basic_machine=ymp-cray + os=-unicos + ;; + z8k-*-coff) + basic_machine=z8k-unknown + os=-sim + ;; + none) + basic_machine=none-none + os=-none + ;; + +# Here we handle the default manufacturer of certain CPU types. It is in +# some cases the only manufacturer, in others, it is the most popular. + w89k) + basic_machine=hppa1.1-winbond + ;; + op50n) + basic_machine=hppa1.1-oki + ;; + op60c) + basic_machine=hppa1.1-oki + ;; + romp) + basic_machine=romp-ibm + ;; + rs6000) + basic_machine=rs6000-ibm + ;; + vax) + basic_machine=vax-dec + ;; + pdp10) + # there are many clones, so DEC is not a safe bet + basic_machine=pdp10-unknown + ;; + pdp11) + basic_machine=pdp11-dec + ;; + we32k) + basic_machine=we32k-att + ;; + sh3 | sh4 | sh[34]eb | sh[1234]le | sh[23]ele) + basic_machine=sh-unknown + ;; + sh64) + basic_machine=sh64-unknown + ;; + sparc | sparcv9 | sparcv9b) + basic_machine=sparc-sun + ;; + cydra) + basic_machine=cydra-cydrome + ;; + orion) + basic_machine=orion-highlevel + ;; + orion105) + basic_machine=clipper-highlevel + ;; + mac | mpw | mac-mpw) + basic_machine=m68k-apple + ;; + pmac | pmac-mpw) + basic_machine=powerpc-apple + ;; + *-unknown) + # Make sure to match an already-canonicalized machine name. + ;; + *) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; +esac + +# Here we canonicalize certain aliases for manufacturers. +case $basic_machine in + *-digital*) + basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` + ;; + *-commodore*) + basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` + ;; + *) + ;; +esac + +# Decode manufacturer-specific aliases for certain operating systems. + +if [ x"$os" != x"" ] +then +case $os in + # First match some system type aliases + # that might get confused with valid system types. + # -solaris* is a basic system type, with this one exception. + -solaris1 | -solaris1.*) + os=`echo $os | sed -e 's|solaris1|sunos4|'` + ;; + -solaris) + os=-solaris2 + ;; + -svr4*) + os=-sysv4 + ;; + -unixware*) + os=-sysv4.2uw + ;; + -gnu/linux*) + os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` + ;; + # First accept the basic system types. + # The portable systems comes first. + # Each alternative MUST END IN A *, to match a version number. + # -sysv* is not here because it comes later, after sysvr4. + -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ + | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\ + | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ + | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ + | -aos* \ + | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ + | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ + | -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \ + | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ + | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ + | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ + | -chorusos* | -chorusrdb* \ + | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ + | -mingw32* | -linux-gnu* | -uxpv* | -beos* | -mpeix* | -udk* \ + | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ + | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ + | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ + | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ + | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ + | -powermax* | -dnix*) + # Remember, each alternative MUST END IN *, to match a version number. + ;; + -qnx*) + case $basic_machine in + x86-* | i*86-*) + ;; + *) + os=-nto$os + ;; + esac + ;; + -nto-qnx*) + ;; + -nto*) + os=`echo $os | sed -e 's|nto|nto-qnx|'` + ;; + -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ + | -windows* | -osx | -abug | -netware* | -os9* | -beos* \ + | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) + ;; + -mac*) + os=`echo $os | sed -e 's|mac|macos|'` + ;; + -linux*) + os=`echo $os | sed -e 's|linux|linux-gnu|'` + ;; + -sunos5*) + os=`echo $os | sed -e 's|sunos5|solaris2|'` + ;; + -sunos6*) + os=`echo $os | sed -e 's|sunos6|solaris3|'` + ;; + -opened*) + os=-openedition + ;; + -wince*) + os=-wince + ;; + -osfrose*) + os=-osfrose + ;; + -osf*) + os=-osf + ;; + -utek*) + os=-bsd + ;; + -dynix*) + os=-bsd + ;; + -acis*) + os=-aos + ;; + -atheos*) + os=-atheos + ;; + -386bsd) + os=-bsd + ;; + -ctix* | -uts*) + os=-sysv + ;; + -nova*) + os=-rtmk-nova + ;; + -ns2 ) + os=-nextstep2 + ;; + -nsk*) + os=-nsk + ;; + # Preserve the version number of sinix5. + -sinix5.*) + os=`echo $os | sed -e 's|sinix|sysv|'` + ;; + -sinix*) + os=-sysv4 + ;; + -triton*) + os=-sysv3 + ;; + -oss*) + os=-sysv3 + ;; + -svr4) + os=-sysv4 + ;; + -svr3) + os=-sysv3 + ;; + -sysvr4) + os=-sysv4 + ;; + # This must come after -sysvr4. + -sysv*) + ;; + -ose*) + os=-ose + ;; + -es1800*) + os=-ose + ;; + -xenix) + os=-xenix + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + os=-mint + ;; + -aros*) + os=-aros + ;; + -kaos*) + os=-kaos + ;; + -none) + ;; + *) + # Get rid of the `-' at the beginning of $os. + os=`echo $os | sed 's/[^-]*-//'` + echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 + exit 1 + ;; +esac +else + +# Here we handle the default operating systems that come with various machines. +# The value should be what the vendor currently ships out the door with their +# machine or put another way, the most popular os provided with the machine. + +# Note that if you're going to try to match "-MANUFACTURER" here (say, +# "-sun"), then you have to tell the case statement up towards the top +# that MANUFACTURER isn't an operating system. Otherwise, code above +# will signal an error saying that MANUFACTURER isn't an operating +# system, and we'll never get to this point. + +case $basic_machine in + *-acorn) + os=-riscix1.2 + ;; + arm*-rebel) + os=-linux + ;; + arm*-semi) + os=-aout + ;; + # This must come before the *-dec entry. + pdp10-*) + os=-tops20 + ;; + pdp11-*) + os=-none + ;; + *-dec | vax-*) + os=-ultrix4.2 + ;; + m68*-apollo) + os=-domain + ;; + i386-sun) + os=-sunos4.0.2 + ;; + m68000-sun) + os=-sunos3 + # This also exists in the configure program, but was not the + # default. + # os=-sunos4 + ;; + m68*-cisco) + os=-aout + ;; + mips*-cisco) + os=-elf + ;; + mips*-*) + os=-elf + ;; + or32-*) + os=-coff + ;; + *-tti) # must be before sparc entry or we get the wrong os. + os=-sysv3 + ;; + sparc-* | *-sun) + os=-sunos4.1.1 + ;; + *-be) + os=-beos + ;; + *-ibm) + os=-aix + ;; + *-wec) + os=-proelf + ;; + *-winbond) + os=-proelf + ;; + *-oki) + os=-proelf + ;; + *-hp) + os=-hpux + ;; + *-hitachi) + os=-hiux + ;; + i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) + os=-sysv + ;; + *-cbm) + os=-amigaos + ;; + *-dg) + os=-dgux + ;; + *-dolphin) + os=-sysv3 + ;; + m68k-ccur) + os=-rtu + ;; + m88k-omron*) + os=-luna + ;; + *-next ) + os=-nextstep + ;; + *-sequent) + os=-ptx + ;; + *-crds) + os=-unos + ;; + *-ns) + os=-genix + ;; + i370-*) + os=-mvs + ;; + *-next) + os=-nextstep3 + ;; + *-gould) + os=-sysv + ;; + *-highlevel) + os=-bsd + ;; + *-encore) + os=-bsd + ;; + *-sgi) + os=-irix + ;; + *-siemens) + os=-sysv4 + ;; + *-masscomp) + os=-rtu + ;; + f30[01]-fujitsu | f700-fujitsu) + os=-uxpv + ;; + *-rom68k) + os=-coff + ;; + *-*bug) + os=-coff + ;; + *-apple) + os=-macos + ;; + *-atari*) + os=-mint + ;; + *) + os=-none + ;; +esac +fi + +# Here we handle the case where we know the os, and the CPU type, but not the +# manufacturer. We pick the logical manufacturer. +vendor=unknown +case $basic_machine in + *-unknown) + case $os in + -riscix*) + vendor=acorn + ;; + -sunos*) + vendor=sun + ;; + -aix*) + vendor=ibm + ;; + -beos*) + vendor=be + ;; + -hpux*) + vendor=hp + ;; + -mpeix*) + vendor=hp + ;; + -hiux*) + vendor=hitachi + ;; + -unos*) + vendor=crds + ;; + -dgux*) + vendor=dg + ;; + -luna*) + vendor=omron + ;; + -genix*) + vendor=ns + ;; + -mvs* | -opened*) + vendor=ibm + ;; + -ptx*) + vendor=sequent + ;; + -vxsim* | -vxworks* | -windiss*) + vendor=wrs + ;; + -aux*) + vendor=apple + ;; + -hms*) + vendor=hitachi + ;; + -mpw* | -macos*) + vendor=apple + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + vendor=atari + ;; + -vos*) + vendor=stratus + ;; + esac + basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` + ;; +esac + +echo $basic_machine$os +exit 0 + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff --git a/src/apps/bin/coreutils-5.0/config/depcomp b/src/apps/bin/coreutils-5.0/config/depcomp new file mode 100644 index 0000000000..807b991f4a --- /dev/null +++ b/src/apps/bin/coreutils-5.0/config/depcomp @@ -0,0 +1,423 @@ +#! /bin/sh + +# depcomp - compile a program generating dependencies as side-effects +# Copyright 1999, 2000 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 2, 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, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA +# 02111-1307, USA. + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# Originally written by Alexandre Oliva . + +if test -z "$depmode" || test -z "$source" || test -z "$object"; then + echo "depcomp: Variables source, object and depmode must be set" 1>&2 + exit 1 +fi +# `libtool' can also be set to `yes' or `no'. + +if test -z "$depfile"; then + base=`echo "$object" | sed -e 's,^.*/,,' -e 's,\.\([^.]*\)$,.P\1,'` + dir=`echo "$object" | sed 's,/.*$,/,'` + if test "$dir" = "$object"; then + dir= + fi + # FIXME: should be _deps on DOS. + depfile="$dir.deps/$base" +fi + +tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} + +rm -f "$tmpdepfile" + +# Some modes work just like other modes, but use different flags. We +# parameterize here, but still list the modes in the big case below, +# to make depend.m4 easier to write. Note that we *cannot* use a case +# here, because this file can only contain one case statement. +if test "$depmode" = hp; then + # HP compiler uses -M and no extra arg. + gccflag=-M + depmode=gcc +fi + +if test "$depmode" = dashXmstdout; then + # This is just like dashmstdout with a different argument. + dashmflag=-xM + depmode=dashmstdout +fi + +case "$depmode" in +gcc3) +## gcc 3 implements dependency tracking that does exactly what +## we want. Yay! Note: for some reason libtool 1.4 doesn't like +## it if -MD -MP comes after the -MF stuff. Hmm. + "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + mv "$tmpdepfile" "$depfile" + ;; + +gcc) +## There are various ways to get dependency output from gcc. Here's +## why we pick this rather obscure method: +## - Don't want to use -MD because we'd like the dependencies to end +## up in a subdir. Having to rename by hand is ugly. +## (We might end up doing this anyway to support other compilers.) +## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like +## -MM, not -M (despite what the docs say). +## - Using -M directly means running the compiler twice (even worse +## than renaming). + if test -z "$gccflag"; then + gccflag=-MD, + fi + "$@" -Wp,"$gccflag$tmpdepfile" + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + echo "$object : \\" > "$depfile" + alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz +## The second -e expression handles DOS-style file names with drive letters. + sed -e 's/^[^:]*: / /' \ + -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" +## This next piece of magic avoids the `deleted header file' problem. +## The problem is that when a header file which appears in a .P file +## is deleted, the dependency causes make to die (because there is +## typically no way to rebuild the header). We avoid this by adding +## dummy dependencies for each header file. Too bad gcc doesn't do +## this for us directly. + tr ' ' ' +' < "$tmpdepfile" | +## Some versions of gcc put a space before the `:'. On the theory +## that the space means something, we add a space to the output as +## well. +## Some versions of the HPUX 10.20 sed can't process this invocation +## correctly. Breaking it into two sed invocations is a workaround. + sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +hp) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +sgi) + if test "$libtool" = yes; then + "$@" "-Wp,-MDupdate,$tmpdepfile" + else + "$@" -MDupdate "$tmpdepfile" + fi + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + + if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files + echo "$object : \\" > "$depfile" + + # Clip off the initial element (the dependent). Don't try to be + # clever and replace this with sed code, as IRIX sed won't handle + # lines with more than a fixed number of characters (4096 in + # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; + # the IRIX cc adds comments like `#:fec' to the end of the + # dependency line. + tr ' ' ' +' < "$tmpdepfile" \ + | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ + tr ' +' ' ' >> $depfile + echo >> $depfile + + # The second pass generates a dummy entry for each header file. + tr ' ' ' +' < "$tmpdepfile" \ + | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ + >> $depfile + else + # The sourcefile does not contain any dependencies, so just + # store a dummy comment line, to avoid errors with the Makefile + # "include basename.Plo" scheme. + echo "#dummy" > "$depfile" + fi + rm -f "$tmpdepfile" + ;; + +aix) + # The C for AIX Compiler uses -M and outputs the dependencies + # in a .u file. This file always lives in the current directory. + # Also, the AIX compiler puts `$object:' at the start of each line; + # $object doesn't have directory information. + stripped=`echo "$object" | sed -e 's,^.*/,,' -e 's/\(.*\)\..*$/\1/'` + tmpdepfile="$stripped.u" + outname="$stripped.o" + if test "$libtool" = yes; then + "$@" -Wc,-M + else + "$@" -M + fi + + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + + if test -f "$tmpdepfile"; then + # Each line is of the form `foo.o: dependent.h'. + # Do two passes, one to just change these to + # `$object: dependent.h' and one to simply `dependent.h:'. + sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile" + sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile" + else + # The sourcefile does not contain any dependencies, so just + # store a dummy comment line, to avoid errors with the Makefile + # "include basename.Plo" scheme. + echo "#dummy" > "$depfile" + fi + rm -f "$tmpdepfile" + ;; + +tru64) + # The Tru64 compiler uses -MD to generate dependencies as a side + # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. + # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put + # dependencies in `foo.d' instead, so we check for that too. + # Subdirectories are respected. + dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` + test "x$dir" = "x$object" && dir= + base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` + + if test "$libtool" = yes; then + tmpdepfile1="$dir.libs/$base.lo.d" + tmpdepfile2="$dir.libs/$base.d" + "$@" -Wc,-MD + else + tmpdepfile1="$dir$base.o.d" + tmpdepfile2="$dir$base.d" + "$@" -MD + fi + + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile1" "$tmpdepfile2" + exit $stat + fi + + if test -f "$tmpdepfile1"; then + tmpdepfile="$tmpdepfile1" + else + tmpdepfile="$tmpdepfile2" + fi + if test -f "$tmpdepfile"; then + sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" + # That's a space and a tab in the []. + sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" + else + echo "#dummy" > "$depfile" + fi + rm -f "$tmpdepfile" + ;; + +#nosideeffect) + # This comment above is used by automake to tell side-effect + # dependency tracking mechanisms from slower ones. + +dashmstdout) + # Important note: in order to support this mode, a compiler *must* + # always write the proprocessed file to stdout, regardless of -o. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test $1 != '--mode=compile'; do + shift + done + shift + fi + + # Remove `-o $object'. We will use -o /dev/null later, + # however we can't do the remplacement now because + # `-o $object' might simply not be used + IFS=" " + for arg + do + case $arg in + -o) + shift + ;; + $object) + shift + ;; + *) + set fnord "$@" "$arg" + shift # fnord + shift # $arg + ;; + esac + done + + test -z "$dashmflag" && dashmflag=-M + "$@" -o /dev/null $dashmflag | sed 's:^[^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" + rm -f "$depfile" + cat < "$tmpdepfile" > "$depfile" + tr ' ' ' +' < "$tmpdepfile" | \ +## Some versions of the HPUX 10.20 sed can't process this invocation +## correctly. Breaking it into two sed invocations is a workaround. + sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +dashXmstdout) + # This case only exists to satisfy depend.m4. It is never actually + # run, as this mode is specially recognized in the preamble. + exit 1 + ;; + +makedepend) + "$@" || exit $? + # X makedepend + shift + cleared=no + for arg in "$@"; do + case $cleared in + no) + set ""; shift + cleared=yes ;; + esac + case "$arg" in + -D*|-I*) + set fnord "$@" "$arg"; shift ;; + -*) + ;; + *) + set fnord "$@" "$arg"; shift ;; + esac + done + obj_suffix="`echo $object | sed 's/^.*\././'`" + touch "$tmpdepfile" + ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" + rm -f "$depfile" + cat < "$tmpdepfile" > "$depfile" + sed '1,2d' "$tmpdepfile" | tr ' ' ' +' | \ +## Some versions of the HPUX 10.20 sed can't process this invocation +## correctly. Breaking it into two sed invocations is a workaround. + sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" "$tmpdepfile".bak + ;; + +cpp) + # Important note: in order to support this mode, a compiler *must* + # always write the proprocessed file to stdout. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test $1 != '--mode=compile'; do + shift + done + shift + fi + + # Remove `-o $object'. + IFS=" " + for arg + do + case $arg in + -o) + shift + ;; + $object) + shift + ;; + *) + set fnord "$@" "$arg" + shift # fnord + shift # $arg + ;; + esac + done + + "$@" -E | + sed -n '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | + sed '$ s: \\$::' > "$tmpdepfile" + rm -f "$depfile" + echo "$object : \\" > "$depfile" + cat < "$tmpdepfile" >> "$depfile" + sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +msvisualcpp) + # Important note: in order to support this mode, a compiler *must* + # always write the proprocessed file to stdout, regardless of -o, + # because we must use -o when running libtool. + "$@" || exit $? + IFS=" " + for arg + do + case "$arg" in + "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") + set fnord "$@" + shift + shift + ;; + *) + set fnord "$@" "$arg" + shift + shift + ;; + esac + done + "$@" -E | + sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile" + rm -f "$depfile" + echo "$object : \\" > "$depfile" + . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" + echo " " >> "$depfile" + . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +none) + exec "$@" + ;; + +*) + echo "Unknown depmode $depmode" 1>&2 + exit 1 + ;; +esac + +exit 0 diff --git a/src/apps/bin/coreutils-5.0/config/install-sh b/src/apps/bin/coreutils-5.0/config/install-sh new file mode 100755 index 0000000000..57a2fbd186 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/config/install-sh @@ -0,0 +1,269 @@ +#!/bin/sh +# install - install a program, script, or datafile +# This originally came from X11R5 (mit/util/scripts/install.sh). + +scriptversion=2003-01-17.15 + +# Copyright 1991 by the Massachusetts Institute of Technology +# (FSF changes in the public domain.) +# +# Permission to use, copy, modify, distribute, and sell this software and its +# documentation for any purpose is hereby granted without fee, provided that +# the above copyright notice appear in all copies and that both that +# copyright notice and this permission notice appear in supporting +# documentation, and that the name of M.I.T. not be used in advertising or +# publicity pertaining to distribution of the software without specific, +# written prior permission. M.I.T. makes no representations about the +# suitability of this software for any purpose. It is provided "as is" +# without express or implied warranty. +# +# Calling this script install-sh is preferred over install.sh, to prevent +# `make' implicit rules from creating a file called install from it +# when there is no Makefile. +# +# This script is compatible with the BSD install script, but was written +# from scratch. It can only install one file at a time, a restriction +# shared with many OS's install programs. + +# set DOITPROG to echo to test this script + +# Don't use :- since 4.3BSD and earlier shells don't like it. +doit="${DOITPROG-}" + +# put in absolute paths if you don't have them in your path; or use env. vars. + +mvprog="${MVPROG-mv}" +cpprog="${CPPROG-cp}" +chmodprog="${CHMODPROG-chmod}" +chownprog="${CHOWNPROG-chown}" +chgrpprog="${CHGRPPROG-chgrp}" +stripprog="${STRIPPROG-strip}" +rmprog="${RMPROG-rm}" +mkdirprog="${MKDIRPROG-mkdir}" + +transformbasename= +transform_arg= +instcmd="$mvprog" +chmodcmd="$chmodprog 0755" +chowncmd= +chgrpcmd= +stripcmd= +rmcmd="$rmprog -f" +mvcmd="$mvprog" +src= +dst= +dir_arg= + +usage="Usage: $0 [OPTION]... SRCFILE DSTFILE + or: $0 -d DIR1 DIR2... + +In the first form, install SRCFILE to DSTFILE, removing SRCFILE by default. +In the second, create the directory path DIR. + +Options: +-b=TRANSFORMBASENAME +-c copy source (using $cpprog) instead of moving (using $mvprog). +-d create directories instead of installing files. +-g GROUP $chgrp installed files to GROUP. +-m MODE $chmod installed files to MODE. +-o USER $chown installed files to USER. +-s strip installed files (using $stripprog). +-t=TRANSFORM +--help display this help and exit. +--version display version info and exit. + +Environment variables override the default commands: + CHGRPPROG CHMODPROG CHOWNPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG +" + +while test -n "$1"; do + case $1 in + -b=*) transformbasename=`echo $1 | sed 's/-b=//'` + shift + continue;; + + -c) instcmd=$cpprog + shift + continue;; + + -d) dir_arg=true + shift + continue;; + + -g) chgrpcmd="$chgrpprog $2" + shift + shift + continue;; + + --help) echo "$usage"; exit 0;; + + -m) chmodcmd="$chmodprog $2" + shift + shift + continue;; + + -o) chowncmd="$chownprog $2" + shift + shift + continue;; + + -s) stripcmd=$stripprog + shift + continue;; + + -t=*) transformarg=`echo $1 | sed 's/-t=//'` + shift + continue;; + + --version) echo "$0 $scriptversion"; exit 0;; + + *) if test -z "$src"; then + src=$1 + else + # this colon is to work around a 386BSD /bin/sh bug + : + dst=$1 + fi + shift + continue;; + esac +done + +if test -z "$src"; then + echo "$0: no input file specified." >&2 + exit 1 +fi + +if test -n "$dir_arg"; then + dst=$src + src= + + if test -d "$dst"; then + instcmd=: + chmodcmd= + else + instcmd=$mkdirprog + fi +else + # Waiting for this to be detected by the "$instcmd $src $dsttmp" command + # might cause directories to be created, which would be especially bad + # if $src (and thus $dsttmp) contains '*'. + if test ! -f "$src" && test ! -d "$src"; then + echo "$0: $src does not exist." >&2 + exit 1 + fi + + if test -z "$dst"; then + echo "$0: no destination specified." >&2 + exit 1 + fi + + # If destination is a directory, append the input filename; won't work + # if double slashes aren't ignored. + if test -d "$dst"; then + dst=$dst/`basename "$src"` + fi +fi + +## this sed command emulates the dirname command +dstdir=`echo "$dst" | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'` + +# Make sure that the destination directory exists. +# (this part is taken from Noah Friedman's mkinstalldirs script.) + +# Skip lots of stat calls in the usual case. +if test ! -d "$dstdir"; then + defaultIFS=' + ' + IFS="${IFS-$defaultIFS}" + + oIFS=$IFS + # Some sh's can't handle IFS=/ for some reason. + IFS='%' + set - `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'` + IFS=$oIFS + + pathcomp= + + while test $# -ne 0 ; do + pathcomp=$pathcomp$1 + shift + test -d "$pathcomp" || $mkdirprog "$pathcomp" + pathcomp=$pathcomp/ + done +fi + +if test -n "$dir_arg"; then + $doit $instcmd "$dst" \ + && { test -z "$chowncmd" || $doit $chowncmd "$dst"; } \ + && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } \ + && { test -z "$stripcmd" || $doit $stripcmd "$dst"; } \ + && { test -z "$chmodcmd" || $doit $chmodcmd "$dst"; } + +else + # If we're going to rename the final executable, determine the name now. + if test -z "$transformarg"; then + dstfile=`basename "$dst"` + else + dstfile=`basename "$dst" $transformbasename \ + | sed $transformarg`$transformbasename + fi + + # don't allow the sed command to completely eliminate the filename. + test -z "$dstfile" && dstfile=`basename "$dst"` + + # Make a couple of temp file names in the proper directory. + dsttmp=$dstdir/#inst.$$# + rmtmp=$dstdir/#rm.$$# + + # Trap to clean up those temp files at exit. + trap 'status=$?; rm -f "$dsttmp" "$rmtmp" && exit $status' 0 + trap '(exit $?); exit' 1 2 13 15 + + # Move or copy the file name to the temp name + $doit $instcmd "$src" "$dsttmp" && + + # and set any options; do chmod last to preserve setuid bits. + # + # If any of these fail, we abort the whole thing. If we want to + # ignore errors from any of these, just make sure not to ignore + # errors from the above "$doit $instcmd $src $dsttmp" command. + # + { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } \ + && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } \ + && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } \ + && { test -z "$chmodcmd" || $doit $chmodcmd "$dsttmp"; } && + + # 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. + { + if test -f "$dstdir/$dstfile"; then + $doit $rmcmd -f "$dstdir/$dstfile" 2>/dev/null \ + || $doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null \ + || { + echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2 + (exit 1); exit + } + else + : + fi + } && + + # Now rename the file to the real destination. + $doit $mvcmd "$dsttmp" "$dstdir/$dstfile" +fi && + +# The final little trick to "correctly" pass the exit status to the exit trap. +{ + (exit 0); exit +} + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-end: "$" +# End: diff --git a/src/apps/bin/coreutils-5.0/config/mdate-sh b/src/apps/bin/coreutils-5.0/config/mdate-sh new file mode 100644 index 0000000000..b610b47a65 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/config/mdate-sh @@ -0,0 +1,133 @@ +#!/bin/sh +# Get modification time of a file or directory and pretty-print it. +# Copyright (C) 1995, 1996, 1997, 2003 Free Software Foundation, Inc. +# written by Ulrich Drepper , June 1995 +# +# 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 2, 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, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# Prevent date giving response in another language. +LANG=C +export LANG +LC_ALL=C +export LC_ALL +LC_TIME=C +export LC_TIME + +save_arg1="$1" + +# Find out how to get the extended ls output of a file or directory. +if ls -L /dev/null 1>/dev/null 2>&1; then + ls_command='ls -L -l -d' +else + ls_command='ls -l -d' +fi + +# A `ls -l' line looks as follows on OS/2. +# drwxrwx--- 0 Aug 11 2001 foo +# This differs from Unix, which adds ownership information. +# drwxrwx--- 2 root root 4096 Aug 11 2001 foo +# +# To find the date, we split the line on spaces and iterate on words +# until we find a month. This cannot work with files whose owner is a +# user named `Jan', or `Feb', etc. However, it's unlikely that `/' +# will be owned by a user whose name is a month. So we first look at +# the extended ls output of the root directory to decide how many +# words should be skipped to get the date. + +# On HPUX /bin/sh, "set" interprets "-rw-r--r--" as options, so the "x" below. +set - x`$ls_command /` + +# Find which argument is the month. +month= +command= +until test $month +do + shift + # Add another shift to the command. + command="$command shift;" + case $1 in + Jan) month=January; nummonth=1;; + Feb) month=February; nummonth=2;; + Mar) month=March; nummonth=3;; + Apr) month=April; nummonth=4;; + May) month=May; nummonth=5;; + Jun) month=June; nummonth=6;; + Jul) month=July; nummonth=7;; + Aug) month=August; nummonth=8;; + Sep) month=September; nummonth=9;; + Oct) month=October; nummonth=10;; + Nov) month=November; nummonth=11;; + Dec) month=December; nummonth=12;; + esac +done + +# Get the extended ls output of the file or directory. +set - x`eval "$ls_command \"\$save_arg1\""` + +# Remove all preceding arguments +eval $command + +# Get the month. Next argument is day, followed by the year or time. +case $1 in + Jan) month=January; nummonth=1;; + Feb) month=February; nummonth=2;; + Mar) month=March; nummonth=3;; + Apr) month=April; nummonth=4;; + May) month=May; nummonth=5;; + Jun) month=June; nummonth=6;; + Jul) month=July; nummonth=7;; + Aug) month=August; nummonth=8;; + Sep) month=September; nummonth=9;; + Oct) month=October; nummonth=10;; + Nov) month=November; nummonth=11;; + Dec) month=December; nummonth=12;; +esac + +day=$2 + +# Here we have to deal with the problem that the ls output gives either +# the time of day or the year. +case $3 in + *:*) set `date`; eval year=\$$# + case $2 in + Jan) nummonthtod=1;; + Feb) nummonthtod=2;; + Mar) nummonthtod=3;; + Apr) nummonthtod=4;; + May) nummonthtod=5;; + Jun) nummonthtod=6;; + Jul) nummonthtod=7;; + Aug) nummonthtod=8;; + Sep) nummonthtod=9;; + Oct) nummonthtod=10;; + Nov) nummonthtod=11;; + Dec) nummonthtod=12;; + esac + # For the first six month of the year the time notation can also + # be used for files modified in the last year. + if (expr $nummonth \> $nummonthtod) > /dev/null; + then + year=`expr $year - 1` + fi;; + *) year=$3;; +esac + +# The result. +echo $day $month $year diff --git a/src/apps/bin/coreutils-5.0/config/missing b/src/apps/bin/coreutils-5.0/config/missing new file mode 100644 index 0000000000..6a37006e8f --- /dev/null +++ b/src/apps/bin/coreutils-5.0/config/missing @@ -0,0 +1,336 @@ +#! /bin/sh +# Common stub for a few missing GNU programs while installing. +# Copyright (C) 1996, 1997, 1999, 2000, 2002 Free Software Foundation, Inc. +# Originally by Fran,cois Pinard , 1996. + +# 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 2, 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, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA +# 02111-1307, USA. + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +if test $# -eq 0; then + echo 1>&2 "Try \`$0 --help' for more information" + exit 1 +fi + +run=: + +# In the cases where this matters, `missing' is being run in the +# srcdir already. +if test -f configure.ac; then + configure_ac=configure.ac +else + configure_ac=configure.in +fi + +case "$1" in +--run) + # Try to run requested program, and just exit if it succeeds. + run= + shift + "$@" && exit 0 + ;; +esac + +# If it does not exist, or fails to run (possibly an outdated version), +# try to emulate it. +case "$1" in + + -h|--h|--he|--hel|--help) + echo "\ +$0 [OPTION]... PROGRAM [ARGUMENT]... + +Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an +error status if there is no known handling for PROGRAM. + +Options: + -h, --help display this help and exit + -v, --version output version information and exit + --run try to run the given command, and emulate it if it fails + +Supported PROGRAM values: + aclocal touch file \`aclocal.m4' + autoconf touch file \`configure' + autoheader touch file \`config.h.in' + automake touch all \`Makefile.in' files + bison create \`y.tab.[ch]', if possible, from existing .[ch] + flex create \`lex.yy.c', if possible, from existing .c + help2man touch the output file + lex create \`lex.yy.c', if possible, from existing .c + makeinfo touch the output file + tar try tar, gnutar, gtar, then tar without non-portable flags + yacc create \`y.tab.[ch]', if possible, from existing .[ch]" + ;; + + -v|--v|--ve|--ver|--vers|--versi|--versio|--version) + echo "missing 0.4 - GNU automake" + ;; + + -*) + echo 1>&2 "$0: Unknown \`$1' option" + echo 1>&2 "Try \`$0 --help' for more information" + exit 1 + ;; + + aclocal*) + if test -z "$run" && ($1 --version) > /dev/null 2>&1; then + # We have it, but it failed. + exit 1 + fi + + echo 1>&2 "\ +WARNING: \`$1' is missing on your system. You should only need it if + you modified \`acinclude.m4' or \`${configure_ac}'. You might want + to install the \`Automake' and \`Perl' packages. Grab them from + any GNU archive site." + touch aclocal.m4 + ;; + + autoconf) + if test -z "$run" && ($1 --version) > /dev/null 2>&1; then + # We have it, but it failed. + exit 1 + fi + + echo 1>&2 "\ +WARNING: \`$1' is missing on your system. You should only need it if + you modified \`${configure_ac}'. You might want to install the + \`Autoconf' and \`GNU m4' packages. Grab them from any GNU + archive site." + touch configure + ;; + + autoheader) + if test -z "$run" && ($1 --version) > /dev/null 2>&1; then + # We have it, but it failed. + exit 1 + fi + + echo 1>&2 "\ +WARNING: \`$1' is missing on your system. You should only need it if + you modified \`acconfig.h' or \`${configure_ac}'. You might want + to install the \`Autoconf' and \`GNU m4' packages. Grab them + from any GNU archive site." + files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` + test -z "$files" && files="config.h" + touch_files= + for f in $files; do + case "$f" in + *:*) touch_files="$touch_files "`echo "$f" | + sed -e 's/^[^:]*://' -e 's/:.*//'`;; + *) touch_files="$touch_files $f.in";; + esac + done + touch $touch_files + ;; + + automake*) + if test -z "$run" && ($1 --version) > /dev/null 2>&1; then + # We have it, but it failed. + exit 1 + fi + + echo 1>&2 "\ +WARNING: \`$1' is missing on your system. You should only need it if + you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. + You might want to install the \`Automake' and \`Perl' packages. + Grab them from any GNU archive site." + find . -type f -name Makefile.am -print | + sed 's/\.am$/.in/' | + while read f; do touch "$f"; done + ;; + + autom4te) + if test -z "$run" && ($1 --version) > /dev/null 2>&1; then + # We have it, but it failed. + exit 1 + fi + + echo 1>&2 "\ +WARNING: \`$1' is needed, and you do not seem to have it handy on your + system. You might have modified some files without having the + proper tools for further handling them. + You can get \`$1Help2man' as part of \`Autoconf' from any GNU + archive site." + + file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'` + test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'` + if test -f "$file"; then + touch $file + else + test -z "$file" || exec >$file + echo "#! /bin/sh" + echo "# Created by GNU Automake missing as a replacement of" + echo "# $ $@" + echo "exit 0" + chmod +x $file + exit 1 + fi + ;; + + bison|yacc) + echo 1>&2 "\ +WARNING: \`$1' is missing on your system. You should only need it if + you modified a \`.y' file. You may need the \`Bison' package + in order for those modifications to take effect. You can get + \`Bison' from any GNU archive site." + rm -f y.tab.c y.tab.h + if [ $# -ne 1 ]; then + eval LASTARG="\${$#}" + case "$LASTARG" in + *.y) + SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` + if [ -f "$SRCFILE" ]; then + cp "$SRCFILE" y.tab.c + fi + SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` + if [ -f "$SRCFILE" ]; then + cp "$SRCFILE" y.tab.h + fi + ;; + esac + fi + if [ ! -f y.tab.h ]; then + echo >y.tab.h + fi + if [ ! -f y.tab.c ]; then + echo 'main() { return 0; }' >y.tab.c + fi + ;; + + lex|flex) + echo 1>&2 "\ +WARNING: \`$1' is missing on your system. You should only need it if + you modified a \`.l' file. You may need the \`Flex' package + in order for those modifications to take effect. You can get + \`Flex' from any GNU archive site." + rm -f lex.yy.c + if [ $# -ne 1 ]; then + eval LASTARG="\${$#}" + case "$LASTARG" in + *.l) + SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` + if [ -f "$SRCFILE" ]; then + cp "$SRCFILE" lex.yy.c + fi + ;; + esac + fi + if [ ! -f lex.yy.c ]; then + echo 'main() { return 0; }' >lex.yy.c + fi + ;; + + help2man) + if test -z "$run" && ($1 --version) > /dev/null 2>&1; then + # We have it, but it failed. + exit 1 + fi + + echo 1>&2 "\ +WARNING: \`$1' is missing on your system. You should only need it if + you modified a dependency of a manual page. You may need the + \`Help2man' package in order for those modifications to take + effect. You can get \`Help2man' from any GNU archive site." + + file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` + if test -z "$file"; then + file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'` + fi + if [ -f "$file" ]; then + touch $file + else + test -z "$file" || exec >$file + echo ".ab help2man is required to generate this page" + exit 1 + fi + ;; + + makeinfo) + if test -z "$run" && (makeinfo --version) > /dev/null 2>&1; then + # We have makeinfo, but it failed. + exit 1 + fi + + echo 1>&2 "\ +WARNING: \`$1' is missing on your system. You should only need it if + you modified a \`.texi' or \`.texinfo' file, or any other file + indirectly affecting the aspect of the manual. The spurious + call might also be the consequence of using a buggy \`make' (AIX, + DU, IRIX). You might want to install the \`Texinfo' package or + the \`GNU make' package. Grab either from any GNU archive site." + file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` + if test -z "$file"; then + file=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` + file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file` + fi + touch $file + ;; + + tar) + shift + if test -n "$run"; then + echo 1>&2 "ERROR: \`tar' requires --run" + exit 1 + fi + + # We have already tried tar in the generic part. + # Look for gnutar/gtar before invocation to avoid ugly error + # messages. + if (gnutar --version > /dev/null 2>&1); then + gnutar "$@" && exit 0 + fi + if (gtar --version > /dev/null 2>&1); then + gtar "$@" && exit 0 + fi + firstarg="$1" + if shift; then + case "$firstarg" in + *o*) + firstarg=`echo "$firstarg" | sed s/o//` + tar "$firstarg" "$@" && exit 0 + ;; + esac + case "$firstarg" in + *h*) + firstarg=`echo "$firstarg" | sed s/h//` + tar "$firstarg" "$@" && exit 0 + ;; + esac + fi + + echo 1>&2 "\ +WARNING: I can't seem to be able to run \`tar' with the given arguments. + You may want to install GNU tar or Free paxutils, or check the + command line arguments." + exit 1 + ;; + + *) + echo 1>&2 "\ +WARNING: \`$1' is needed, and you do not seem to have it handy on your + system. You might have modified some files without having the + proper tools for further handling them. Check the \`README' file, + it often tells you about the needed prerequirements for installing + this package. You may also peek at any GNU archive site, in case + some other package would contain this missing \`$1' program." + exit 1 + ;; +esac + +exit 0 diff --git a/src/apps/bin/coreutils-5.0/config/mkinstalldirs b/src/apps/bin/coreutils-5.0/config/mkinstalldirs new file mode 100644 index 0000000000..d2d5f21b61 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/config/mkinstalldirs @@ -0,0 +1,111 @@ +#! /bin/sh +# mkinstalldirs --- make directory hierarchy +# Author: Noah Friedman +# Created: 1993-05-16 +# Public domain + +errstatus=0 +dirmode="" + +usage="\ +Usage: mkinstalldirs [-h] [--help] [-m mode] dir ..." + +# process command line arguments +while test $# -gt 0 ; do + case $1 in + -h | --help | --h*) # -h for help + echo "$usage" 1>&2 + exit 0 + ;; + -m) # -m PERM arg + shift + test $# -eq 0 && { echo "$usage" 1>&2; exit 1; } + dirmode=$1 + shift + ;; + --) # stop option processing + shift + break + ;; + -*) # unknown option + echo "$usage" 1>&2 + exit 1 + ;; + *) # first non-opt arg + break + ;; + esac +done + +for file +do + if test -d "$file"; then + shift + else + break + fi +done + +case $# in + 0) exit 0 ;; +esac + +case $dirmode in + '') + if mkdir -p -- . 2>/dev/null; then + echo "mkdir -p -- $*" + exec mkdir -p -- "$@" + fi + ;; + *) + if mkdir -m "$dirmode" -p -- . 2>/dev/null; then + echo "mkdir -m $dirmode -p -- $*" + exec mkdir -m "$dirmode" -p -- "$@" + fi + ;; +esac + +for file +do + set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'` + shift + + pathcomp= + for d + do + pathcomp="$pathcomp$d" + case $pathcomp in + -*) pathcomp=./$pathcomp ;; + esac + + if test ! -d "$pathcomp"; then + echo "mkdir $pathcomp" + + mkdir "$pathcomp" || lasterr=$? + + if test ! -d "$pathcomp"; then + errstatus=$lasterr + else + if test ! -z "$dirmode"; then + echo "chmod $dirmode $pathcomp" + lasterr="" + chmod "$dirmode" "$pathcomp" || lasterr=$? + + if test ! -z "$lasterr"; then + errstatus=$lasterr + fi + fi + fi + fi + + pathcomp="$pathcomp/" + done +done + +exit $errstatus + +# Local Variables: +# mode: shell-script +# sh-indentation: 2 +# End: +# mkinstalldirs ends here diff --git a/src/apps/bin/coreutils-5.0/config/texinfo.tex b/src/apps/bin/coreutils-5.0/config/texinfo.tex new file mode 100644 index 0000000000..807ce6da56 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/config/texinfo.tex @@ -0,0 +1,6714 @@ +% texinfo.tex -- TeX macros to handle Texinfo files. +% +% Load plain if necessary, i.e., if running under initex. +\expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi +% +\def\texinfoversion{2003-03-22.08} +% +% Copyright (C) 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995, +% 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. +% +% This texinfo.tex file 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 2, or (at +% your option) any later version. +% +% This texinfo.tex file 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 texinfo.tex file; see the file COPYING. If not, write +% to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, +% Boston, MA 02111-1307, USA. +% +% In other words, you are welcome to use, share and improve this program. +% You are forbidden to forbid anyone else to use, share and improve +% what you give them. Help stamp out software-hoarding! +% +% Please try the latest version of texinfo.tex before submitting bug +% reports; you can get the latest version from: +% ftp://ftp.gnu.org/gnu/texinfo/texinfo.tex +% (and all GNU mirrors, see http://www.gnu.org/order/ftp.html) +% ftp://tug.org/tex/texinfo.tex +% (and all CTAN mirrors, see http://www.ctan.org), +% and /home/gd/gnu/doc/texinfo.tex on the GNU machines. +% +% The GNU Texinfo home page is http://www.gnu.org/software/texinfo. +% +% The texinfo.tex in any given Texinfo distribution could well be out +% of date, so if that's what you're using, please check. +% +% Send bug reports to bug-texinfo@gnu.org. Please include including a +% complete document in each bug report with which we can reproduce the +% problem. Patches are, of course, greatly appreciated. +% +% To process a Texinfo manual with TeX, it's most reliable to use the +% texi2dvi shell script that comes with the distribution. For a simple +% manual foo.texi, however, you can get away with this: +% tex foo.texi +% texindex foo.?? +% tex foo.texi +% tex foo.texi +% dvips foo.dvi -o # or whatever; this makes foo.ps. +% The extra TeX runs get the cross-reference information correct. +% Sometimes one run after texindex suffices, and sometimes you need more +% than two; texi2dvi does it as many times as necessary. +% +% It is possible to adapt texinfo.tex for other languages, to some +% extent. You can get the existing language-specific files from the +% full Texinfo distribution. + +\message{Loading texinfo [version \texinfoversion]:} + +% If in a .fmt file, print the version number +% and turn on active characters that we couldn't do earlier because +% they might have appeared in the input file name. +\everyjob{\message{[Texinfo version \texinfoversion]}% + \catcode`+=\active \catcode`\_=\active} + +\message{Basics,} +\chardef\other=12 + +% We never want plain's \outer definition of \+ in Texinfo. +% For @tex, we can use \tabalign. +\let\+ = \relax + +% Save some plain tex macros whose names we will redefine. +\let\ptexb=\b +\let\ptexbullet=\bullet +\let\ptexc=\c +\let\ptexcomma=\, +\let\ptexdot=\. +\let\ptexdots=\dots +\let\ptexend=\end +\let\ptexequiv=\equiv +\let\ptexexclam=\! +\let\ptexgtr=> +\let\ptexhat=^ +\let\ptexi=\i +\let\ptexlbrace=\{ +\let\ptexless=< +\let\ptexplus=+ +\let\ptexrbrace=\} +\let\ptexslash=\/ +\let\ptexstar=\* +\let\ptext=\t + +% If this character appears in an error message or help string, it +% starts a new line in the output. +\newlinechar = `^^J + +% Set up fixed words for English if not already set. +\ifx\putwordAppendix\undefined \gdef\putwordAppendix{Appendix}\fi +\ifx\putwordChapter\undefined \gdef\putwordChapter{Chapter}\fi +\ifx\putwordfile\undefined \gdef\putwordfile{file}\fi +\ifx\putwordin\undefined \gdef\putwordin{in}\fi +\ifx\putwordIndexIsEmpty\undefined \gdef\putwordIndexIsEmpty{(Index is empty)}\fi +\ifx\putwordIndexNonexistent\undefined \gdef\putwordIndexNonexistent{(Index is nonexistent)}\fi +\ifx\putwordInfo\undefined \gdef\putwordInfo{Info}\fi +\ifx\putwordInstanceVariableof\undefined \gdef\putwordInstanceVariableof{Instance Variable of}\fi +\ifx\putwordMethodon\undefined \gdef\putwordMethodon{Method on}\fi +\ifx\putwordNoTitle\undefined \gdef\putwordNoTitle{No Title}\fi +\ifx\putwordof\undefined \gdef\putwordof{of}\fi +\ifx\putwordon\undefined \gdef\putwordon{on}\fi +\ifx\putwordpage\undefined \gdef\putwordpage{page}\fi +\ifx\putwordsection\undefined \gdef\putwordsection{section}\fi +\ifx\putwordSection\undefined \gdef\putwordSection{Section}\fi +\ifx\putwordsee\undefined \gdef\putwordsee{see}\fi +\ifx\putwordSee\undefined \gdef\putwordSee{See}\fi +\ifx\putwordShortTOC\undefined \gdef\putwordShortTOC{Short Contents}\fi +\ifx\putwordTOC\undefined \gdef\putwordTOC{Table of Contents}\fi +% +\ifx\putwordMJan\undefined \gdef\putwordMJan{January}\fi +\ifx\putwordMFeb\undefined \gdef\putwordMFeb{February}\fi +\ifx\putwordMMar\undefined \gdef\putwordMMar{March}\fi +\ifx\putwordMApr\undefined \gdef\putwordMApr{April}\fi +\ifx\putwordMMay\undefined \gdef\putwordMMay{May}\fi +\ifx\putwordMJun\undefined \gdef\putwordMJun{June}\fi +\ifx\putwordMJul\undefined \gdef\putwordMJul{July}\fi +\ifx\putwordMAug\undefined \gdef\putwordMAug{August}\fi +\ifx\putwordMSep\undefined \gdef\putwordMSep{September}\fi +\ifx\putwordMOct\undefined \gdef\putwordMOct{October}\fi +\ifx\putwordMNov\undefined \gdef\putwordMNov{November}\fi +\ifx\putwordMDec\undefined \gdef\putwordMDec{December}\fi +% +\ifx\putwordDefmac\undefined \gdef\putwordDefmac{Macro}\fi +\ifx\putwordDefspec\undefined \gdef\putwordDefspec{Special Form}\fi +\ifx\putwordDefvar\undefined \gdef\putwordDefvar{Variable}\fi +\ifx\putwordDefopt\undefined \gdef\putwordDefopt{User Option}\fi +\ifx\putwordDeftypevar\undefined\gdef\putwordDeftypevar{Variable}\fi +\ifx\putwordDeffunc\undefined \gdef\putwordDeffunc{Function}\fi +\ifx\putwordDeftypefun\undefined\gdef\putwordDeftypefun{Function}\fi + +% In some macros, we cannot use the `\? notation---the left quote is +% in some cases the escape char. +\chardef\colonChar = `\: +\chardef\commaChar = `\, +\chardef\dotChar = `\. +\chardef\equalChar = `\= +\chardef\exclamChar= `\! +\chardef\questChar = `\? +\chardef\semiChar = `\; +\chardef\spaceChar = `\ % +\chardef\underChar = `\_ + +% Ignore a token. +% +\def\gobble#1{} + +% True if #1 is the empty string, i.e., called like `\ifempty{}'. +% +\def\ifempty#1{\ifemptyx #1\emptymarkA\emptymarkB}% +\def\ifemptyx#1#2\emptymarkB{\ifx #1\emptymarkA}% + +% Hyphenation fixes. +\hyphenation{ap-pen-dix} +\hyphenation{eshell} +\hyphenation{mini-buf-fer mini-buf-fers} +\hyphenation{time-stamp} +\hyphenation{white-space} + +% Margin to add to right of even pages, to left of odd pages. +\newdimen\bindingoffset +\newdimen\normaloffset +\newdimen\pagewidth \newdimen\pageheight + +% Sometimes it is convenient to have everything in the transcript file +% and nothing on the terminal. We don't just call \tracingall here, +% since that produces some useless output on the terminal. We also make +% some effort to order the tracing commands to reduce output in the log +% file; cf. trace.sty in LaTeX. +% +\def\gloggingall{\begingroup \globaldefs = 1 \loggingall \endgroup}% +\def\loggingall{% + \tracingstats2 + \tracingpages1 + \tracinglostchars2 % 2 gives us more in etex + \tracingparagraphs1 + \tracingoutput1 + \tracingmacros2 + \tracingrestores1 + \showboxbreadth\maxdimen \showboxdepth\maxdimen + \ifx\eTeXversion\undefined\else % etex gives us more logging + \tracingscantokens1 + \tracingifs1 + \tracinggroups1 + \tracingnesting2 + \tracingassigns1 + \fi + \tracingcommands3 % 3 gives us more in etex + \errorcontextlines\maxdimen +}% + +% add check for \lastpenalty to plain's definitions. If the last thing +% we did was a \nobreak, we don't want to insert more space. +% +\def\smallbreak{\ifnum\lastpenalty<10000\par\ifdim\lastskip<\smallskipamount + \removelastskip\penalty-50\smallskip\fi\fi} +\def\medbreak{\ifnum\lastpenalty<10000\par\ifdim\lastskip<\medskipamount + \removelastskip\penalty-100\medskip\fi\fi} +\def\bigbreak{\ifnum\lastpenalty<10000\par\ifdim\lastskip<\bigskipamount + \removelastskip\penalty-200\bigskip\fi\fi} + +% For @cropmarks command. +% Do @cropmarks to get crop marks. +% +\newif\ifcropmarks +\let\cropmarks = \cropmarkstrue +% +% Dimensions to add cropmarks at corners. +% Added by P. A. MacKay, 12 Nov. 1986 +% +\newdimen\outerhsize \newdimen\outervsize % set by the paper size routines +\newdimen\cornerlong \cornerlong=1pc +\newdimen\cornerthick \cornerthick=.3pt +\newdimen\topandbottommargin \topandbottommargin=.75in + +% Main output routine. +\chardef\PAGE = 255 +\output = {\onepageout{\pagecontents\PAGE}} + +\newbox\headlinebox +\newbox\footlinebox + +% \onepageout takes a vbox as an argument. Note that \pagecontents +% does insertions, but you have to call it yourself. +\def\onepageout#1{% + \ifcropmarks \hoffset=0pt \else \hoffset=\normaloffset \fi + % + \ifodd\pageno \advance\hoffset by \bindingoffset + \else \advance\hoffset by -\bindingoffset\fi + % + % Do this outside of the \shipout so @code etc. will be expanded in + % the headline as they should be, not taken literally (outputting ''code). + \setbox\headlinebox = \vbox{\let\hsize=\pagewidth \makeheadline}% + \setbox\footlinebox = \vbox{\let\hsize=\pagewidth \makefootline}% + % + {% + % Have to do this stuff outside the \shipout because we want it to + % take effect in \write's, yet the group defined by the \vbox ends + % before the \shipout runs. + % + \escapechar = `\\ % use backslash in output files. + \indexdummies % don't expand commands in the output. + \normalturnoffactive % \ in index entries must not stay \, e.g., if + % the page break happens to be in the middle of an example. + \shipout\vbox{% + % Do this early so pdf references go to the beginning of the page. + \ifpdfmakepagedest \pdfmkdest{\the\pageno} \fi + % + \ifcropmarks \vbox to \outervsize\bgroup + \hsize = \outerhsize + \vskip-\topandbottommargin + \vtop to0pt{% + \line{\ewtop\hfil\ewtop}% + \nointerlineskip + \line{% + \vbox{\moveleft\cornerthick\nstop}% + \hfill + \vbox{\moveright\cornerthick\nstop}% + }% + \vss}% + \vskip\topandbottommargin + \line\bgroup + \hfil % center the page within the outer (page) hsize. + \ifodd\pageno\hskip\bindingoffset\fi + \vbox\bgroup + \fi + % + \unvbox\headlinebox + \pagebody{#1}% + \ifdim\ht\footlinebox > 0pt + % Only leave this space if the footline is nonempty. + % (We lessened \vsize for it in \oddfootingxxx.) + % The \baselineskip=24pt in plain's \makefootline has no effect. + \vskip 2\baselineskip + \unvbox\footlinebox + \fi + % + \ifcropmarks + \egroup % end of \vbox\bgroup + \hfil\egroup % end of (centering) \line\bgroup + \vskip\topandbottommargin plus1fill minus1fill + \boxmaxdepth = \cornerthick + \vbox to0pt{\vss + \line{% + \vbox{\moveleft\cornerthick\nsbot}% + \hfill + \vbox{\moveright\cornerthick\nsbot}% + }% + \nointerlineskip + \line{\ewbot\hfil\ewbot}% + }% + \egroup % \vbox from first cropmarks clause + \fi + }% end of \shipout\vbox + }% end of group with \normalturnoffactive + \advancepageno + \ifnum\outputpenalty>-20000 \else\dosupereject\fi +} + +\newinsert\margin \dimen\margin=\maxdimen + +\def\pagebody#1{\vbox to\pageheight{\boxmaxdepth=\maxdepth #1}} +{\catcode`\@ =11 +\gdef\pagecontents#1{\ifvoid\topins\else\unvbox\topins\fi +% marginal hacks, juha@viisa.uucp (Juha Takala) +\ifvoid\margin\else % marginal info is present + \rlap{\kern\hsize\vbox to\z@{\kern1pt\box\margin \vss}}\fi +\dimen@=\dp#1 \unvbox#1 +\ifvoid\footins\else\vskip\skip\footins\footnoterule \unvbox\footins\fi +\ifr@ggedbottom \kern-\dimen@ \vfil \fi} +} + +% Here are the rules for the cropmarks. Note that they are +% offset so that the space between them is truly \outerhsize or \outervsize +% (P. A. MacKay, 12 November, 1986) +% +\def\ewtop{\vrule height\cornerthick depth0pt width\cornerlong} +\def\nstop{\vbox + {\hrule height\cornerthick depth\cornerlong width\cornerthick}} +\def\ewbot{\vrule height0pt depth\cornerthick width\cornerlong} +\def\nsbot{\vbox + {\hrule height\cornerlong depth\cornerthick width\cornerthick}} + +% Parse an argument, then pass it to #1. The argument is the rest of +% the input line (except we remove a trailing comment). #1 should be a +% macro which expects an ordinary undelimited TeX argument. +% +\def\parsearg#1{% + \let\next = #1% + \begingroup + \obeylines + \futurelet\temp\parseargx +} + +% If the next token is an obeyed space (from an @example environment or +% the like), remove it and recurse. Otherwise, we're done. +\def\parseargx{% + % \obeyedspace is defined far below, after the definition of \sepspaces. + \ifx\obeyedspace\temp + \expandafter\parseargdiscardspace + \else + \expandafter\parseargline + \fi +} + +% Remove a single space (as the delimiter token to the macro call). +{\obeyspaces % + \gdef\parseargdiscardspace {\futurelet\temp\parseargx}} + +{\obeylines % + \gdef\parseargline#1^^M{% + \endgroup % End of the group started in \parsearg. + % + % First remove any @c comment, then any @comment. + % Result of each macro is put in \toks0. + \argremovec #1\c\relax % + \expandafter\argremovecomment \the\toks0 \comment\relax % + % + % Call the caller's macro, saved as \next in \parsearg. + \expandafter\next\expandafter{\the\toks0}% + }% +} + +% Since all \c{,omment} does is throw away the argument, we can let TeX +% do that for us. The \relax here is matched by the \relax in the call +% in \parseargline; it could be more or less anything, its purpose is +% just to delimit the argument to the \c. +\def\argremovec#1\c#2\relax{\toks0 = {#1}} +\def\argremovecomment#1\comment#2\relax{\toks0 = {#1}} + +% \argremovec{,omment} might leave us with trailing spaces, though; e.g., +% @end itemize @c foo +% will have two active spaces as part of the argument with the +% `itemize'. Here we remove all active spaces from #1, and assign the +% result to \toks0. +% +% This loses if there are any *other* active characters besides spaces +% in the argument -- _ ^ +, for example -- since they get expanded. +% Fortunately, Texinfo does not define any such commands. (If it ever +% does, the catcode of the characters in questionwill have to be changed +% here.) But this means we cannot call \removeactivespaces as part of +% \argremovec{,omment}, since @c uses \parsearg, and thus the argument +% that \parsearg gets might well have any character at all in it. +% +\def\removeactivespaces#1{% + \begingroup + \ignoreactivespaces + \edef\temp{#1}% + \global\toks0 = \expandafter{\temp}% + \endgroup +} + +% Change the active space to expand to nothing. +% +\begingroup + \obeyspaces + \gdef\ignoreactivespaces{\obeyspaces\let =\empty} +\endgroup + + +\def\flushcr{\ifx\par\lisppar \def\next##1{}\else \let\next=\relax \fi \next} + +%% These are used to keep @begin/@end levels from running away +%% Call \inENV within environments (after a \begingroup) +\newif\ifENV \ENVfalse \def\inENV{\ifENV\relax\else\ENVtrue\fi} +\def\ENVcheck{% +\ifENV\errmessage{Still within an environment; press RETURN to continue} +\endgroup\fi} % This is not perfect, but it should reduce lossage + +% @begin foo is the same as @foo, for now. +\newhelp\EMsimple{Press RETURN to continue.} + +\outer\def\begin{\parsearg\beginxxx} + +\def\beginxxx #1{% +\expandafter\ifx\csname #1\endcsname\relax +{\errhelp=\EMsimple \errmessage{Undefined command @begin #1}}\else +\csname #1\endcsname\fi} + +% @end foo executes the definition of \Efoo. +% +\def\end{\parsearg\endxxx} +\def\endxxx #1{% + \removeactivespaces{#1}% + \edef\endthing{\the\toks0}% + % + \expandafter\ifx\csname E\endthing\endcsname\relax + \expandafter\ifx\csname \endthing\endcsname\relax + % There's no \foo, i.e., no ``environment'' foo. + \errhelp = \EMsimple + \errmessage{Undefined command `@end \endthing'}% + \else + \unmatchedenderror\endthing + \fi + \else + % Everything's ok; the right environment has been started. + \csname E\endthing\endcsname + \fi +} + +% There is an environment #1, but it hasn't been started. Give an error. +% +\def\unmatchedenderror#1{% + \errhelp = \EMsimple + \errmessage{This `@end #1' doesn't have a matching `@#1'}% +} + +% Define the control sequence \E#1 to give an unmatched @end error. +% +\def\defineunmatchedend#1{% + \expandafter\def\csname E#1\endcsname{\unmatchedenderror{#1}}% +} + + +%% Simple single-character @ commands + +% @@ prints an @ +% Kludge this until the fonts are right (grr). +\def\@{{\tt\char64}} + +% This is turned off because it was never documented +% and you can use @w{...} around a quote to suppress ligatures. +%% Define @` and @' to be the same as ` and ' +%% but suppressing ligatures. +%\def\`{{`}} +%\def\'{{'}} + +% Used to generate quoted braces. +\def\mylbrace {{\tt\char123}} +\def\myrbrace {{\tt\char125}} +\let\{=\mylbrace +\let\}=\myrbrace +\begingroup + % Definitions to produce \{ and \} commands for indices, + % and @{ and @} for the aux file. + \catcode`\{ = \other \catcode`\} = \other + \catcode`\[ = 1 \catcode`\] = 2 + \catcode`\! = 0 \catcode`\\ = \other + !gdef!lbracecmd[\{]% + !gdef!rbracecmd[\}]% + !gdef!lbraceatcmd[@{]% + !gdef!rbraceatcmd[@}]% +!endgroup + +% Accents: @, @dotaccent @ringaccent @ubaraccent @udotaccent +% Others are defined by plain TeX: @` @' @" @^ @~ @= @u @v @H. +\let\, = \c +\let\dotaccent = \. +\def\ringaccent#1{{\accent23 #1}} +\let\tieaccent = \t +\let\ubaraccent = \b +\let\udotaccent = \d + +% Other special characters: @questiondown @exclamdown +% Plain TeX defines: @AA @AE @O @OE @L (plus lowercase versions) @ss. +\def\questiondown{?`} +\def\exclamdown{!`} + +% Dotless i and dotless j, used for accents. +\def\imacro{i} +\def\jmacro{j} +\def\dotless#1{% + \def\temp{#1}% + \ifx\temp\imacro \ptexi + \else\ifx\temp\jmacro \j + \else \errmessage{@dotless can be used only with i or j}% + \fi\fi +} + +% Be sure we're in horizontal mode when doing a tie, since we make space +% equivalent to this in @example-like environments. Otherwise, a space +% at the beginning of a line will start with \penalty -- and +% since \penalty is valid in vertical mode, we'd end up putting the +% penalty on the vertical list instead of in the new paragraph. +{\catcode`@ = 11 + % Avoid using \@M directly, because that causes trouble + % if the definition is written into an index file. + \global\let\tiepenalty = \@M + \gdef\tie{\leavevmode\penalty\tiepenalty\ } +} + +% @: forces normal size whitespace following. +\def\:{\spacefactor=1000 } + +% @* forces a line break. +\def\*{\hfil\break\hbox{}\ignorespaces} + +% @/ allows a line break. +\let\/=\allowbreak + +% @. is an end-of-sentence period. +\def\.{.\spacefactor=3000 } + +% @! is an end-of-sentence bang. +\def\!{!\spacefactor=3000 } + +% @? is an end-of-sentence query. +\def\?{?\spacefactor=3000 } + +% @w prevents a word break. Without the \leavevmode, @w at the +% beginning of a paragraph, when TeX is still in vertical mode, would +% produce a whole line of output instead of starting the paragraph. +\def\w#1{\leavevmode\hbox{#1}} + +% @group ... @end group forces ... to be all on one page, by enclosing +% it in a TeX vbox. We use \vtop instead of \vbox to construct the box +% to keep its height that of a normal line. According to the rules for +% \topskip (p.114 of the TeXbook), the glue inserted is +% max (\topskip - \ht (first item), 0). If that height is large, +% therefore, no glue is inserted, and the space between the headline and +% the text is small, which looks bad. +% +% Another complication is that the group might be very large. This can +% cause the glue on the previous page to be unduly stretched, because it +% does not have much material. In this case, it's better to add an +% explicit \vfill so that the extra space is at the bottom. The +% threshold for doing this is if the group is more than \vfilllimit +% percent of a page (\vfilllimit can be changed inside of @tex). +% +\newbox\groupbox +\def\vfilllimit{0.7} +% +\def\group{\begingroup + \ifnum\catcode13=\active \else + \errhelp = \groupinvalidhelp + \errmessage{@group invalid in context where filling is enabled}% + \fi + % + % The \vtop we start below produces a box with normal height and large + % depth; thus, TeX puts \baselineskip glue before it, and (when the + % next line of text is done) \lineskip glue after it. (See p.82 of + % the TeXbook.) Thus, space below is not quite equal to space + % above. But it's pretty close. + \def\Egroup{% + \egroup % End the \vtop. + % \dimen0 is the vertical size of the group's box. + \dimen0 = \ht\groupbox \advance\dimen0 by \dp\groupbox + % \dimen2 is how much space is left on the page (more or less). + \dimen2 = \pageheight \advance\dimen2 by -\pagetotal + % if the group doesn't fit on the current page, and it's a big big + % group, force a page break. + \ifdim \dimen0 > \dimen2 + \ifdim \pagetotal < \vfilllimit\pageheight + \page + \fi + \fi + \copy\groupbox + \endgroup % End the \group. + }% + % + \setbox\groupbox = \vtop\bgroup + % We have to put a strut on the last line in case the @group is in + % the midst of an example, rather than completely enclosing it. + % Otherwise, the interline space between the last line of the group + % and the first line afterwards is too small. But we can't put the + % strut in \Egroup, since there it would be on a line by itself. + % Hence this just inserts a strut at the beginning of each line. + \everypar = {\strut}% + % + % Since we have a strut on every line, we don't need any of TeX's + % normal interline spacing. + \offinterlineskip + % + % OK, but now we have to do something about blank + % lines in the input in @example-like environments, which normally + % just turn into \lisppar, which will insert no space now that we've + % turned off the interline space. Simplest is to make them be an + % empty paragraph. + \ifx\par\lisppar + \edef\par{\leavevmode \par}% + % + % Reset ^^M's definition to new definition of \par. + \obeylines + \fi + % + % Do @comment since we are called inside an environment such as + % @example, where each end-of-line in the input causes an + % end-of-line in the output. We don't want the end-of-line after + % the `@group' to put extra space in the output. Since @group + % should appear on a line by itself (according to the Texinfo + % manual), we don't worry about eating any user text. + \comment +} +% +% TeX puts in an \escapechar (i.e., `@') at the beginning of the help +% message, so this ends up printing `@group can only ...'. +% +\newhelp\groupinvalidhelp{% +group can only be used in environments such as @example,^^J% +where each line of input produces a line of output.} + +% @need space-in-mils +% forces a page break if there is not space-in-mils remaining. + +\newdimen\mil \mil=0.001in + +\def\need{\parsearg\needx} + +% Old definition--didn't work. +%\def\needx #1{\par % +%% This method tries to make TeX break the page naturally +%% if the depth of the box does not fit. +%{\baselineskip=0pt% +%\vtop to #1\mil{\vfil}\kern -#1\mil\nobreak +%\prevdepth=-1000pt +%}} + +\def\needx#1{% + % Ensure vertical mode, so we don't make a big box in the middle of a + % paragraph. + \par + % + % If the @need value is less than one line space, it's useless. + \dimen0 = #1\mil + \dimen2 = \ht\strutbox + \advance\dimen2 by \dp\strutbox + \ifdim\dimen0 > \dimen2 + % + % Do a \strut just to make the height of this box be normal, so the + % normal leading is inserted relative to the preceding line. + % And a page break here is fine. + \vtop to #1\mil{\strut\vfil}% + % + % TeX does not even consider page breaks if a penalty added to the + % main vertical list is 10000 or more. But in order to see if the + % empty box we just added fits on the page, we must make it consider + % page breaks. On the other hand, we don't want to actually break the + % page after the empty box. So we use a penalty of 9999. + % + % There is an extremely small chance that TeX will actually break the + % page at this \penalty, if there are no other feasible breakpoints in + % sight. (If the user is using lots of big @group commands, which + % almost-but-not-quite fill up a page, TeX will have a hard time doing + % good page breaking, for example.) However, I could not construct an + % example where a page broke at this \penalty; if it happens in a real + % document, then we can reconsider our strategy. + \penalty9999 + % + % Back up by the size of the box, whether we did a page break or not. + \kern -#1\mil + % + % Do not allow a page break right after this kern. + \nobreak + \fi +} + +% @br forces paragraph break + +\let\br = \par + +% @dots{} output an ellipsis using the current font. +% We do .5em per period so that it has the same spacing in a typewriter +% font as three actual period characters. +% +\def\dots{% + \leavevmode + \hbox to 1.5em{% + \hskip 0pt plus 0.25fil minus 0.25fil + .\hss.\hss.% + \hskip 0pt plus 0.5fil minus 0.5fil + }% +} + +% @enddots{} is an end-of-sentence ellipsis. +% +\def\enddots{% + \leavevmode + \hbox to 2em{% + \hskip 0pt plus 0.25fil minus 0.25fil + .\hss.\hss.\hss.% + \hskip 0pt plus 0.5fil minus 0.5fil + }% + \spacefactor=3000 +} + +% @page forces the start of a new page. +% +\def\page{\par\vfill\supereject} + +% @exdent text.... +% outputs text on separate line in roman font, starting at standard page margin + +% This records the amount of indent in the innermost environment. +% That's how much \exdent should take out. +\newskip\exdentamount + +% This defn is used inside fill environments such as @defun. +\def\exdent{\parsearg\exdentyyy} +\def\exdentyyy #1{{\hfil\break\hbox{\kern -\exdentamount{\rm#1}}\hfil\break}} + +% This defn is used inside nofill environments such as @example. +\def\nofillexdent{\parsearg\nofillexdentyyy} +\def\nofillexdentyyy #1{{\advance \leftskip by -\exdentamount +\leftline{\hskip\leftskip{\rm#1}}}} + +% @inmargin{WHICH}{TEXT} puts TEXT in the WHICH margin next to the current +% paragraph. For more general purposes, use the \margin insertion +% class. WHICH is `l' or `r'. +% +\newskip\inmarginspacing \inmarginspacing=1cm +\def\strutdepth{\dp\strutbox} +% +\def\doinmargin#1#2{\strut\vadjust{% + \nobreak + \kern-\strutdepth + \vtop to \strutdepth{% + \baselineskip=\strutdepth + \vss + % if you have multiple lines of stuff to put here, you'll need to + % make the vbox yourself of the appropriate size. + \ifx#1l% + \llap{\ignorespaces #2\hskip\inmarginspacing}% + \else + \rlap{\hskip\hsize \hskip\inmarginspacing \ignorespaces #2}% + \fi + \null + }% +}} +\def\inleftmargin{\doinmargin l} +\def\inrightmargin{\doinmargin r} +% +% @inmargin{TEXT [, RIGHT-TEXT]} +% (if RIGHT-TEXT is given, use TEXT for left page, RIGHT-TEXT for right; +% else use TEXT for both). +% +\def\inmargin#1{\parseinmargin #1,,\finish} +\def\parseinmargin#1,#2,#3\finish{% not perfect, but better than nothing. + \setbox0 = \hbox{\ignorespaces #2}% + \ifdim\wd0 > 0pt + \def\lefttext{#1}% have both texts + \def\righttext{#2}% + \else + \def\lefttext{#1}% have only one text + \def\righttext{#1}% + \fi + % + \ifodd\pageno + \def\temp{\inrightmargin\righttext}% odd page -> outside is right margin + \else + \def\temp{\inleftmargin\lefttext}% + \fi + \temp +} + +% @include file insert text of that file as input. +% Allow normal characters that we make active in the argument (a file name). +\def\include{\begingroup + \catcode`\\=\other + \catcode`~=\other + \catcode`^=\other + \catcode`_=\other + \catcode`|=\other + \catcode`<=\other + \catcode`>=\other + \catcode`+=\other + \parsearg\includezzz} +% Restore active chars for included file. +\def\includezzz#1{\endgroup\begingroup + % Read the included file in a group so nested @include's work. + \def\thisfile{#1}% + \let\value=\expandablevalue + \input\thisfile +\endgroup} + +\def\thisfile{} + +% @center line +% outputs that line, centered. +% +\def\center{\parsearg\docenter} +\def\docenter#1{{% + \ifhmode \hfil\break \fi + \advance\hsize by -\leftskip + \advance\hsize by -\rightskip + \line{\hfil \ignorespaces#1\unskip \hfil}% + \ifhmode \break \fi +}} + +% @sp n outputs n lines of vertical space + +\def\sp{\parsearg\spxxx} +\def\spxxx #1{\vskip #1\baselineskip} + +% @comment ...line which is ignored... +% @c is the same as @comment +% @ignore ... @end ignore is another way to write a comment + +\def\comment{\begingroup \catcode`\^^M=\other% +\catcode`\@=\other \catcode`\{=\other \catcode`\}=\other% +\commentxxx} +{\catcode`\^^M=\other \gdef\commentxxx#1^^M{\endgroup}} + +\let\c=\comment + +% @paragraphindent NCHARS +% We'll use ems for NCHARS, close enough. +% We cannot implement @paragraphindent asis, though. +% +\def\asisword{asis} % no translation, these are keywords +\def\noneword{none} +% +\def\paragraphindent{\parsearg\doparagraphindent} +\def\doparagraphindent#1{% + \def\temp{#1}% + \ifx\temp\asisword + \else + \ifx\temp\noneword + \defaultparindent = 0pt + \else + \defaultparindent = #1em + \fi + \fi + \parindent = \defaultparindent +} + +% @exampleindent NCHARS +% We'll use ems for NCHARS like @paragraphindent. +% It seems @exampleindent asis isn't necessary, but +% I preserve it to make it similar to @paragraphindent. +\def\exampleindent{\parsearg\doexampleindent} +\def\doexampleindent#1{% + \def\temp{#1}% + \ifx\temp\asisword + \else + \ifx\temp\noneword + \lispnarrowing = 0pt + \else + \lispnarrowing = #1em + \fi + \fi +} + +% @asis just yields its argument. Used with @table, for example. +% +\def\asis#1{#1} + +% @math outputs its argument in math mode. +% We don't use $'s directly in the definition of \math because we need +% to set catcodes according to plain TeX first, to allow for subscripts, +% superscripts, special math chars, etc. +% +\let\implicitmath = $%$ font-lock fix +% +% One complication: _ usually means subscripts, but it could also mean +% an actual _ character, as in @math{@var{some_variable} + 1}. So make +% _ within @math be active (mathcode "8000), and distinguish by seeing +% if the current family is \slfam, which is what @var uses. +% +{\catcode\underChar = \active +\gdef\mathunderscore{% + \catcode\underChar=\active + \def_{\ifnum\fam=\slfam \_\else\sb\fi}% +}} +% +% Another complication: we want \\ (and @\) to output a \ character. +% FYI, plain.tex uses \\ as a temporary control sequence (why?), but +% this is not advertised and we don't care. Texinfo does not +% otherwise define @\. +% +% The \mathchar is class=0=ordinary, family=7=ttfam, position=5C=\. +\def\mathbackslash{\ifnum\fam=\ttfam \mathchar"075C \else\backslash \fi} +% +\def\math{% + \tex + \mathcode`\_="8000 \mathunderscore + \let\\ = \mathbackslash + \mathactive + \implicitmath\finishmath} +\def\finishmath#1{#1\implicitmath\Etex} + +% Some active characters (such as <) are spaced differently in math. +% We have to reset their definitions in case the @math was an +% argument to a command which set the catcodes (such as @item or @section). +% +{ + \catcode`^ = \active + \catcode`< = \active + \catcode`> = \active + \catcode`+ = \active + \gdef\mathactive{% + \let^ = \ptexhat + \let< = \ptexless + \let> = \ptexgtr + \let+ = \ptexplus + } +} + +% @bullet and @minus need the same treatment as @math, just above. +\def\bullet{\implicitmath\ptexbullet\implicitmath} +\def\minus{\implicitmath-\implicitmath} + +% @refill is a no-op. +\let\refill=\relax + +% If working on a large document in chapters, it is convenient to +% be able to disable indexing, cross-referencing, and contents, for test runs. +% This is done with @novalidate (before @setfilename). +% +\newif\iflinks \linkstrue % by default we want the aux files. +\let\novalidate = \linksfalse + +% @setfilename is done at the beginning of every texinfo file. +% So open here the files we need to have open while reading the input. +% This makes it possible to make a .fmt file for texinfo. +\def\setfilename{% + \iflinks + \readauxfile + \fi % \openindices needs to do some work in any case. + \openindices + \fixbackslash % Turn off hack to swallow `\input texinfo'. + \global\let\setfilename=\comment % Ignore extra @setfilename cmds. + % + % If texinfo.cnf is present on the system, read it. + % Useful for site-wide @afourpaper, etc. + % Just to be on the safe side, close the input stream before the \input. + \openin 1 texinfo.cnf + \ifeof1 \let\temp=\relax \else \def\temp{\input texinfo.cnf }\fi + \closein1 + \temp + % + \comment % Ignore the actual filename. +} + +% Called from \setfilename. +% +\def\openindices{% + \newindex{cp}% + \newcodeindex{fn}% + \newcodeindex{vr}% + \newcodeindex{tp}% + \newcodeindex{ky}% + \newcodeindex{pg}% +} + +% @bye. +\outer\def\bye{\pagealignmacro\tracingstats=1\ptexend} + + +\message{pdf,} +% adobe `portable' document format +\newcount\tempnum +\newcount\lnkcount +\newtoks\filename +\newcount\filenamelength +\newcount\pgn +\newtoks\toksA +\newtoks\toksB +\newtoks\toksC +\newtoks\toksD +\newbox\boxA +\newcount\countA +\newif\ifpdf +\newif\ifpdfmakepagedest + +\ifx\pdfoutput\undefined + \pdffalse + \let\pdfmkdest = \gobble + \let\pdfurl = \gobble + \let\endlink = \relax + \let\linkcolor = \relax + \let\pdfmakeoutlines = \relax +\else + \pdftrue + \pdfoutput = 1 + \input pdfcolor + \def\dopdfimage#1#2#3{% + \def\imagewidth{#2}% + \def\imageheight{#3}% + % without \immediate, pdftex seg faults when the same image is + % included twice. (Version 3.14159-pre-1.0-unofficial-20010704.) + \ifnum\pdftexversion < 14 + \immediate\pdfimage + \else + \immediate\pdfximage + \fi + \ifx\empty\imagewidth\else width \imagewidth \fi + \ifx\empty\imageheight\else height \imageheight \fi + \ifnum\pdftexversion<13 + #1.pdf% + \else + {#1.pdf}% + \fi + \ifnum\pdftexversion < 14 \else + \pdfrefximage \pdflastximage + \fi} + \def\pdfmkdest#1{{\normalturnoffactive \pdfdest name{#1} xyz}} + \def\pdfmkpgn#1{#1} + \let\linkcolor = \Blue % was Cyan, but that seems light? + \def\endlink{\Black\pdfendlink} + % Adding outlines to PDF; macros for calculating structure of outlines + % come from Petr Olsak + \def\expnumber#1{\expandafter\ifx\csname#1\endcsname\relax 0% + \else \csname#1\endcsname \fi} + \def\advancenumber#1{\tempnum=\expnumber{#1}\relax + \advance\tempnum by1 + \expandafter\xdef\csname#1\endcsname{\the\tempnum}} + \def\pdfmakeoutlines{{% + \openin 1 \jobname.toc + \ifeof 1\else\begingroup + \closein 1 + % Thanh's hack / proper braces in bookmarks + \edef\mylbrace{\iftrue \string{\else}\fi}\let\{=\mylbrace + \edef\myrbrace{\iffalse{\else\string}\fi}\let\}=\myrbrace + % + \def\chapentry ##1##2##3{} + \def\secentry ##1##2##3##4{\advancenumber{chap##2}} + \def\subsecentry ##1##2##3##4##5{\advancenumber{sec##2.##3}} + \def\subsubsecentry ##1##2##3##4##5##6{\advancenumber{subsec##2.##3.##4}} + \let\appendixentry = \chapentry + \let\unnumbchapentry = \chapentry + \let\unnumbsecentry = \secentry + \let\unnumbsubsecentry = \subsecentry + \let\unnumbsubsubsecentry = \subsubsecentry + \input \jobname.toc + \def\chapentry ##1##2##3{% + \pdfoutline goto name{\pdfmkpgn{##3}}count-\expnumber{chap##2}{##1}} + \def\secentry ##1##2##3##4{% + \pdfoutline goto name{\pdfmkpgn{##4}}count-\expnumber{sec##2.##3}{##1}} + \def\subsecentry ##1##2##3##4##5{% + \pdfoutline goto name{\pdfmkpgn{##5}}count-\expnumber{subsec##2.##3.##4}{##1}} + \def\subsubsecentry ##1##2##3##4##5##6{% + \pdfoutline goto name{\pdfmkpgn{##6}}{##1}} + \let\appendixentry = \chapentry + \let\unnumbchapentry = \chapentry + \let\unnumbsecentry = \secentry + \let\unnumbsubsecentry = \subsecentry + \let\unnumbsubsubsecentry = \subsubsecentry + % + % Make special characters normal for writing to the pdf file. + % + \indexnofonts + \let\tt=\relax + \turnoffactive + \input \jobname.toc + \endgroup\fi + }} + \def\makelinks #1,{% + \def\params{#1}\def\E{END}% + \ifx\params\E + \let\nextmakelinks=\relax + \else + \let\nextmakelinks=\makelinks + \ifnum\lnkcount>0,\fi + \picknum{#1}% + \startlink attr{/Border [0 0 0]} + goto name{\pdfmkpgn{\the\pgn}}% + \linkcolor #1% + \advance\lnkcount by 1% + \endlink + \fi + \nextmakelinks + } + \def\picknum#1{\expandafter\pn#1} + \def\pn#1{% + \def\p{#1}% + \ifx\p\lbrace + \let\nextpn=\ppn + \else + \let\nextpn=\ppnn + \def\first{#1} + \fi + \nextpn + } + \def\ppn#1{\pgn=#1\gobble} + \def\ppnn{\pgn=\first} + \def\pdfmklnk#1{\lnkcount=0\makelinks #1,END,} + \def\addtokens#1#2{\edef\addtoks{\noexpand#1={\the#1#2}}\addtoks} + \def\skipspaces#1{\def\PP{#1}\def\D{|}% + \ifx\PP\D\let\nextsp\relax + \else\let\nextsp\skipspaces + \ifx\p\space\else\addtokens{\filename}{\PP}% + \advance\filenamelength by 1 + \fi + \fi + \nextsp} + \def\getfilename#1{\filenamelength=0\expandafter\skipspaces#1|\relax} + \ifnum\pdftexversion < 14 + \let \startlink \pdfannotlink + \else + \let \startlink \pdfstartlink + \fi + \def\pdfurl#1{% + \begingroup + \normalturnoffactive\def\@{@}% + \let\value=\expandablevalue + \leavevmode\Red + \startlink attr{/Border [0 0 0]}% + user{/Subtype /Link /A << /S /URI /URI (#1) >>}% + % #1 + \endgroup} + \def\pdfgettoks#1.{\setbox\boxA=\hbox{\toksA={#1.}\toksB={}\maketoks}} + \def\addtokens#1#2{\edef\addtoks{\noexpand#1={\the#1#2}}\addtoks} + \def\adn#1{\addtokens{\toksC}{#1}\global\countA=1\let\next=\maketoks} + \def\poptoks#1#2|ENDTOKS|{\let\first=#1\toksD={#1}\toksA={#2}} + \def\maketoks{% + \expandafter\poptoks\the\toksA|ENDTOKS| + \ifx\first0\adn0 + \else\ifx\first1\adn1 \else\ifx\first2\adn2 \else\ifx\first3\adn3 + \else\ifx\first4\adn4 \else\ifx\first5\adn5 \else\ifx\first6\adn6 + \else\ifx\first7\adn7 \else\ifx\first8\adn8 \else\ifx\first9\adn9 + \else + \ifnum0=\countA\else\makelink\fi + \ifx\first.\let\next=\done\else + \let\next=\maketoks + \addtokens{\toksB}{\the\toksD} + \ifx\first,\addtokens{\toksB}{\space}\fi + \fi + \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi + \next} + \def\makelink{\addtokens{\toksB}% + {\noexpand\pdflink{\the\toksC}}\toksC={}\global\countA=0} + \def\pdflink#1{% + \startlink attr{/Border [0 0 0]} goto name{\pdfmkpgn{#1}} + \linkcolor #1\endlink} + \def\done{\edef\st{\global\noexpand\toksA={\the\toksB}}\st} +\fi % \ifx\pdfoutput + + +\message{fonts,} +% Font-change commands. + +% Texinfo sort of supports the sans serif font style, which plain TeX does not. +% So we set up a \sf analogous to plain's \rm, etc. +\newfam\sffam +\def\sf{\fam=\sffam \tensf} +\let\li = \sf % Sometimes we call it \li, not \sf. + +% We don't need math for this one. +\def\ttsl{\tenttsl} + +% Default leading. +\newdimen\textleading \textleading = 13.2pt + +% Set the baselineskip to #1, and the lineskip and strut size +% correspondingly. There is no deep meaning behind these magic numbers +% used as factors; they just match (closely enough) what Knuth defined. +% +\def\lineskipfactor{.08333} +\def\strutheightpercent{.70833} +\def\strutdepthpercent {.29167} +% +\def\setleading#1{% + \normalbaselineskip = #1\relax + \normallineskip = \lineskipfactor\normalbaselineskip + \normalbaselines + \setbox\strutbox =\hbox{% + \vrule width0pt height\strutheightpercent\baselineskip + depth \strutdepthpercent \baselineskip + }% +} + +% Set the font macro #1 to the font named #2, adding on the +% specified font prefix (normally `cm'). +% #3 is the font's design size, #4 is a scale factor +\def\setfont#1#2#3#4{\font#1=\fontprefix#2#3 scaled #4} + +% Use cm as the default font prefix. +% To specify the font prefix, you must define \fontprefix +% before you read in texinfo.tex. +\ifx\fontprefix\undefined +\def\fontprefix{cm} +\fi +% Support font families that don't use the same naming scheme as CM. +\def\rmshape{r} +\def\rmbshape{bx} %where the normal face is bold +\def\bfshape{b} +\def\bxshape{bx} +\def\ttshape{tt} +\def\ttbshape{tt} +\def\ttslshape{sltt} +\def\itshape{ti} +\def\itbshape{bxti} +\def\slshape{sl} +\def\slbshape{bxsl} +\def\sfshape{ss} +\def\sfbshape{ss} +\def\scshape{csc} +\def\scbshape{csc} + +\newcount\mainmagstep +\ifx\bigger\relax + % not really supported. + \mainmagstep=\magstep1 + \setfont\textrm\rmshape{12}{1000} + \setfont\texttt\ttshape{12}{1000} +\else + \mainmagstep=\magstephalf + \setfont\textrm\rmshape{10}{\mainmagstep} + \setfont\texttt\ttshape{10}{\mainmagstep} +\fi +% Instead of cmb10, you may want to use cmbx10. +% cmbx10 is a prettier font on its own, but cmb10 +% looks better when embedded in a line with cmr10 +% (in Bob's opinion). +\setfont\textbf\bfshape{10}{\mainmagstep} +\setfont\textit\itshape{10}{\mainmagstep} +\setfont\textsl\slshape{10}{\mainmagstep} +\setfont\textsf\sfshape{10}{\mainmagstep} +\setfont\textsc\scshape{10}{\mainmagstep} +\setfont\textttsl\ttslshape{10}{\mainmagstep} +\font\texti=cmmi10 scaled \mainmagstep +\font\textsy=cmsy10 scaled \mainmagstep + +% A few fonts for @defun, etc. +\setfont\defbf\bxshape{10}{\magstep1} %was 1314 +\setfont\deftt\ttshape{10}{\magstep1} +\def\df{\let\tentt=\deftt \let\tenbf = \defbf \bf} + +% Fonts for indices, footnotes, small examples (9pt). +\setfont\smallrm\rmshape{9}{1000} +\setfont\smalltt\ttshape{9}{1000} +\setfont\smallbf\bfshape{10}{900} +\setfont\smallit\itshape{9}{1000} +\setfont\smallsl\slshape{9}{1000} +\setfont\smallsf\sfshape{9}{1000} +\setfont\smallsc\scshape{10}{900} +\setfont\smallttsl\ttslshape{10}{900} +\font\smalli=cmmi9 +\font\smallsy=cmsy9 + +% Fonts for small examples (8pt). +\setfont\smallerrm\rmshape{8}{1000} +\setfont\smallertt\ttshape{8}{1000} +\setfont\smallerbf\bfshape{10}{800} +\setfont\smallerit\itshape{8}{1000} +\setfont\smallersl\slshape{8}{1000} +\setfont\smallersf\sfshape{8}{1000} +\setfont\smallersc\scshape{10}{800} +\setfont\smallerttsl\ttslshape{10}{800} +\font\smalleri=cmmi8 +\font\smallersy=cmsy8 + +% Fonts for title page: +\setfont\titlerm\rmbshape{12}{\magstep3} +\setfont\titleit\itbshape{10}{\magstep4} +\setfont\titlesl\slbshape{10}{\magstep4} +\setfont\titlett\ttbshape{12}{\magstep3} +\setfont\titlettsl\ttslshape{10}{\magstep4} +\setfont\titlesf\sfbshape{17}{\magstep1} +\let\titlebf=\titlerm +\setfont\titlesc\scbshape{10}{\magstep4} +\font\titlei=cmmi12 scaled \magstep3 +\font\titlesy=cmsy10 scaled \magstep4 +\def\authorrm{\secrm} +\def\authortt{\sectt} + +% Chapter (and unnumbered) fonts (17.28pt). +\setfont\chaprm\rmbshape{12}{\magstep2} +\setfont\chapit\itbshape{10}{\magstep3} +\setfont\chapsl\slbshape{10}{\magstep3} +\setfont\chaptt\ttbshape{12}{\magstep2} +\setfont\chapttsl\ttslshape{10}{\magstep3} +\setfont\chapsf\sfbshape{17}{1000} +\let\chapbf=\chaprm +\setfont\chapsc\scbshape{10}{\magstep3} +\font\chapi=cmmi12 scaled \magstep2 +\font\chapsy=cmsy10 scaled \magstep3 + +% Section fonts (14.4pt). +\setfont\secrm\rmbshape{12}{\magstep1} +\setfont\secit\itbshape{10}{\magstep2} +\setfont\secsl\slbshape{10}{\magstep2} +\setfont\sectt\ttbshape{12}{\magstep1} +\setfont\secttsl\ttslshape{10}{\magstep2} +\setfont\secsf\sfbshape{12}{\magstep1} +\let\secbf\secrm +\setfont\secsc\scbshape{10}{\magstep2} +\font\seci=cmmi12 scaled \magstep1 +\font\secsy=cmsy10 scaled \magstep2 + +% Subsection fonts (13.15pt). +\setfont\ssecrm\rmbshape{12}{\magstephalf} +\setfont\ssecit\itbshape{10}{1315} +\setfont\ssecsl\slbshape{10}{1315} +\setfont\ssectt\ttbshape{12}{\magstephalf} +\setfont\ssecttsl\ttslshape{10}{1315} +\setfont\ssecsf\sfbshape{12}{\magstephalf} +\let\ssecbf\ssecrm +\setfont\ssecsc\scbshape{10}{\magstep1} +\font\sseci=cmmi12 scaled \magstephalf +\font\ssecsy=cmsy10 scaled 1315 +% The smallcaps and symbol fonts should actually be scaled \magstep1.5, +% but that is not a standard magnification. + +% In order for the font changes to affect most math symbols and letters, +% we have to define the \textfont of the standard families. Since +% texinfo doesn't allow for producing subscripts and superscripts except +% in the main text, we don't bother to reset \scriptfont and +% \scriptscriptfont (which would also require loading a lot more fonts). +% +\def\resetmathfonts{% + \textfont0=\tenrm \textfont1=\teni \textfont2=\tensy + \textfont\itfam=\tenit \textfont\slfam=\tensl \textfont\bffam=\tenbf + \textfont\ttfam=\tentt \textfont\sffam=\tensf +} + +% The font-changing commands redefine the meanings of \tenSTYLE, instead +% of just \STYLE. We do this so that font changes will continue to work +% in math mode, where it is the current \fam that is relevant in most +% cases, not the current font. Plain TeX does \def\bf{\fam=\bffam +% \tenbf}, for example. By redefining \tenbf, we obviate the need to +% redefine \bf itself. +\def\textfonts{% + \let\tenrm=\textrm \let\tenit=\textit \let\tensl=\textsl + \let\tenbf=\textbf \let\tentt=\texttt \let\smallcaps=\textsc + \let\tensf=\textsf \let\teni=\texti \let\tensy=\textsy \let\tenttsl=\textttsl + \resetmathfonts \setleading{\textleading}} +\def\titlefonts{% + \let\tenrm=\titlerm \let\tenit=\titleit \let\tensl=\titlesl + \let\tenbf=\titlebf \let\tentt=\titlett \let\smallcaps=\titlesc + \let\tensf=\titlesf \let\teni=\titlei \let\tensy=\titlesy + \let\tenttsl=\titlettsl + \resetmathfonts \setleading{25pt}} +\def\titlefont#1{{\titlefonts\rm #1}} +\def\chapfonts{% + \let\tenrm=\chaprm \let\tenit=\chapit \let\tensl=\chapsl + \let\tenbf=\chapbf \let\tentt=\chaptt \let\smallcaps=\chapsc + \let\tensf=\chapsf \let\teni=\chapi \let\tensy=\chapsy \let\tenttsl=\chapttsl + \resetmathfonts \setleading{19pt}} +\def\secfonts{% + \let\tenrm=\secrm \let\tenit=\secit \let\tensl=\secsl + \let\tenbf=\secbf \let\tentt=\sectt \let\smallcaps=\secsc + \let\tensf=\secsf \let\teni=\seci \let\tensy=\secsy \let\tenttsl=\secttsl + \resetmathfonts \setleading{16pt}} +\def\subsecfonts{% + \let\tenrm=\ssecrm \let\tenit=\ssecit \let\tensl=\ssecsl + \let\tenbf=\ssecbf \let\tentt=\ssectt \let\smallcaps=\ssecsc + \let\tensf=\ssecsf \let\teni=\sseci \let\tensy=\ssecsy \let\tenttsl=\ssecttsl + \resetmathfonts \setleading{15pt}} +\let\subsubsecfonts = \subsecfonts % Maybe make sssec fonts scaled magstephalf? +\def\smallfonts{% + \let\tenrm=\smallrm \let\tenit=\smallit \let\tensl=\smallsl + \let\tenbf=\smallbf \let\tentt=\smalltt \let\smallcaps=\smallsc + \let\tensf=\smallsf \let\teni=\smalli \let\tensy=\smallsy + \let\tenttsl=\smallttsl + \resetmathfonts \setleading{10.5pt}} +\def\smallerfonts{% + \let\tenrm=\smallerrm \let\tenit=\smallerit \let\tensl=\smallersl + \let\tenbf=\smallerbf \let\tentt=\smallertt \let\smallcaps=\smallersc + \let\tensf=\smallersf \let\teni=\smalleri \let\tensy=\smallersy + \let\tenttsl=\smallerttsl + \resetmathfonts \setleading{9.5pt}} + +% Set the fonts to use with the @small... environments. +\let\smallexamplefonts = \smallfonts + +% About \smallexamplefonts. If we use \smallfonts (9pt), @smallexample +% can fit this many characters: +% 8.5x11=86 smallbook=72 a4=90 a5=69 +% If we use \smallerfonts (8pt), then we can fit this many characters: +% 8.5x11=90+ smallbook=80 a4=90+ a5=77 +% For me, subjectively, the few extra characters that fit aren't worth +% the additional smallness of 8pt. So I'm making the default 9pt. +% +% By the way, for comparison, here's what fits with @example (10pt): +% 8.5x11=71 smallbook=60 a4=75 a5=58 +% +% I wish we used A4 paper on this side of the Atlantic. +% +% --karl, 24jan03. + + +% Set up the default fonts, so we can use them for creating boxes. +% +\textfonts + +% Define these so they can be easily changed for other fonts. +\def\angleleft{$\langle$} +\def\angleright{$\rangle$} + +% Count depth in font-changes, for error checks +\newcount\fontdepth \fontdepth=0 + +% Fonts for short table of contents. +\setfont\shortcontrm\rmshape{12}{1000} +\setfont\shortcontbf\bxshape{12}{1000} +\setfont\shortcontsl\slshape{12}{1000} +\setfont\shortconttt\ttshape{12}{1000} + +%% Add scribe-like font environments, plus @l for inline lisp (usually sans +%% serif) and @ii for TeX italic + +% \smartitalic{ARG} outputs arg in italics, followed by an italic correction +% unless the following character is such as not to need one. +\def\smartitalicx{\ifx\next,\else\ifx\next-\else\ifx\next.\else\/\fi\fi\fi} +\def\smartslanted#1{{\ifusingtt\ttsl\sl #1}\futurelet\next\smartitalicx} +\def\smartitalic#1{{\ifusingtt\ttsl\it #1}\futurelet\next\smartitalicx} + +\let\i=\smartitalic +\let\var=\smartslanted +\let\dfn=\smartslanted +\let\emph=\smartitalic +\let\cite=\smartslanted + +\def\b#1{{\bf #1}} +\let\strong=\b + +% We can't just use \exhyphenpenalty, because that only has effect at +% the end of a paragraph. Restore normal hyphenation at the end of the +% group within which \nohyphenation is presumably called. +% +\def\nohyphenation{\hyphenchar\font = -1 \aftergroup\restorehyphenation} +\def\restorehyphenation{\hyphenchar\font = `- } + +% Set sfcode to normal for the chars that usually have another value. +% Can't use plain's \frenchspacing because it uses the `\x notation, and +% sometimes \x has an active definition that messes things up. +% +\catcode`@=11 + \def\frenchspacing{% + \sfcode\dotChar =\@m \sfcode\questChar=\@m \sfcode\exclamChar=\@m + \sfcode\colonChar=\@m \sfcode\semiChar =\@m \sfcode\commaChar =\@m + } +\catcode`@=\other + +\def\t#1{% + {\tt \rawbackslash \frenchspacing #1}% + \null +} +\let\ttfont=\t +\def\samp#1{`\tclose{#1}'\null} +\setfont\keyrm\rmshape{8}{1000} +\font\keysy=cmsy9 +\def\key#1{{\keyrm\textfont2=\keysy \leavevmode\hbox{% + \raise0.4pt\hbox{\angleleft}\kern-.08em\vtop{% + \vbox{\hrule\kern-0.4pt + \hbox{\raise0.4pt\hbox{\vphantom{\angleleft}}#1}}% + \kern-0.4pt\hrule}% + \kern-.06em\raise0.4pt\hbox{\angleright}}}} +% The old definition, with no lozenge: +%\def\key #1{{\ttsl \nohyphenation \uppercase{#1}}\null} +\def\ctrl #1{{\tt \rawbackslash \hat}#1} + +% @file, @option are the same as @samp. +\let\file=\samp +\let\option=\samp + +% @code is a modification of @t, +% which makes spaces the same size as normal in the surrounding text. +\def\tclose#1{% + {% + % Change normal interword space to be same as for the current font. + \spaceskip = \fontdimen2\font + % + % Switch to typewriter. + \tt + % + % But `\ ' produces the large typewriter interword space. + \def\ {{\spaceskip = 0pt{} }}% + % + % Turn off hyphenation. + \nohyphenation + % + \rawbackslash + \frenchspacing + #1% + }% + \null +} + +% We *must* turn on hyphenation at `-' and `_' in \code. +% Otherwise, it is too hard to avoid overfull hboxes +% in the Emacs manual, the Library manual, etc. + +% Unfortunately, TeX uses one parameter (\hyphenchar) to control +% both hyphenation at - and hyphenation within words. +% We must therefore turn them both off (\tclose does that) +% and arrange explicitly to hyphenate at a dash. +% -- rms. +{ + \catcode`\-=\active + \catcode`\_=\active + % + \global\def\code{\begingroup + \catcode`\-=\active \let-\codedash + \catcode`\_=\active \let_\codeunder + \codex + } + % + % If we end up with any active - characters when handling the index, + % just treat them as a normal -. + \global\def\indexbreaks{\catcode`\-=\active \let-\realdash} +} + +\def\realdash{-} +\def\codedash{-\discretionary{}{}{}} +\def\codeunder{% + % this is all so @math{@code{var_name}+1} can work. In math mode, _ + % is "active" (mathcode"8000) and \normalunderscore (or \char95, etc.) + % will therefore expand the active definition of _, which is us + % (inside @code that is), therefore an endless loop. + \ifusingtt{\ifmmode + \mathchar"075F % class 0=ordinary, family 7=ttfam, pos 0x5F=_. + \else\normalunderscore \fi + \discretionary{}{}{}}% + {\_}% +} +\def\codex #1{\tclose{#1}\endgroup} + +% @kbd is like @code, except that if the argument is just one @key command, +% then @kbd has no effect. + +% @kbdinputstyle -- arg is `distinct' (@kbd uses slanted tty font always), +% `example' (@kbd uses ttsl only inside of @example and friends), +% or `code' (@kbd uses normal tty font always). +\def\kbdinputstyle{\parsearg\kbdinputstylexxx} +\def\kbdinputstylexxx#1{% + \def\arg{#1}% + \ifx\arg\worddistinct + \gdef\kbdexamplefont{\ttsl}\gdef\kbdfont{\ttsl}% + \else\ifx\arg\wordexample + \gdef\kbdexamplefont{\ttsl}\gdef\kbdfont{\tt}% + \else\ifx\arg\wordcode + \gdef\kbdexamplefont{\tt}\gdef\kbdfont{\tt}% + \else + \errhelp = \EMsimple + \errmessage{Unknown @kbdinputstyle `\arg'}% + \fi\fi\fi +} +\def\worddistinct{distinct} +\def\wordexample{example} +\def\wordcode{code} + +% Default is `distinct.' +\kbdinputstyle distinct + +\def\xkey{\key} +\def\kbdfoo#1#2#3\par{\def\one{#1}\def\three{#3}\def\threex{??}% +\ifx\one\xkey\ifx\threex\three \key{#2}% +\else{\tclose{\kbdfont\look}}\fi +\else{\tclose{\kbdfont\look}}\fi} + +% For @url, @env, @command quotes seem unnecessary, so use \code. +\let\url=\code +\let\env=\code +\let\command=\code + +% @uref (abbreviation for `urlref') takes an optional (comma-separated) +% second argument specifying the text to display and an optional third +% arg as text to display instead of (rather than in addition to) the url +% itself. First (mandatory) arg is the url. Perhaps eventually put in +% a hypertex \special here. +% +\def\uref#1{\douref #1,,,\finish} +\def\douref#1,#2,#3,#4\finish{\begingroup + \unsepspaces + \pdfurl{#1}% + \setbox0 = \hbox{\ignorespaces #3}% + \ifdim\wd0 > 0pt + \unhbox0 % third arg given, show only that + \else + \setbox0 = \hbox{\ignorespaces #2}% + \ifdim\wd0 > 0pt + \ifpdf + \unhbox0 % PDF: 2nd arg given, show only it + \else + \unhbox0\ (\code{#1})% DVI: 2nd arg given, show both it and url + \fi + \else + \code{#1}% only url given, so show it + \fi + \fi + \endlink +\endgroup} + +% rms does not like angle brackets --karl, 17may97. +% So now @email is just like @uref, unless we are pdf. +% +%\def\email#1{\angleleft{\tt #1}\angleright} +\ifpdf + \def\email#1{\doemail#1,,\finish} + \def\doemail#1,#2,#3\finish{\begingroup + \unsepspaces + \pdfurl{mailto:#1}% + \setbox0 = \hbox{\ignorespaces #2}% + \ifdim\wd0>0pt\unhbox0\else\code{#1}\fi + \endlink + \endgroup} +\else + \let\email=\uref +\fi + +% Check if we are currently using a typewriter font. Since all the +% Computer Modern typewriter fonts have zero interword stretch (and +% shrink), and it is reasonable to expect all typewriter fonts to have +% this property, we can check that font parameter. +% +\def\ifmonospace{\ifdim\fontdimen3\font=0pt } + +% Typeset a dimension, e.g., `in' or `pt'. The only reason for the +% argument is to make the input look right: @dmn{pt} instead of @dmn{}pt. +% +\def\dmn#1{\thinspace #1} + +\def\kbd#1{\def\look{#1}\expandafter\kbdfoo\look??\par} + +% @l was never documented to mean ``switch to the Lisp font'', +% and it is not used as such in any manual I can find. We need it for +% Polish suppressed-l. --karl, 22sep96. +%\def\l#1{{\li #1}\null} + +% Explicit font changes: @r, @sc, undocumented @ii. +\def\r#1{{\rm #1}} % roman font +\def\sc#1{{\smallcaps#1}} % smallcaps font +\def\ii#1{{\it #1}} % italic font + +% @acronym downcases the argument and prints in smallcaps. +\def\acronym#1{{\smallcaps \lowercase{#1}}} + +% @pounds{} is a sterling sign. +\def\pounds{{\it\$}} + +% @registeredsymbol - R in a circle. For now, only works in text size; +% we'd have to redo the font mechanism to change the \scriptstyle and +% \scriptscriptstyle font sizes to make it look right in headings. +% Adapted from the plain.tex definition of \copyright. +% +\def\registeredsymbol{% + $^{{\ooalign{\hfil\raise.07ex\hbox{$\scriptstyle\rm R$}\hfil\crcr\Orb}}% + }$% +} + + +\message{page headings,} + +\newskip\titlepagetopglue \titlepagetopglue = 1.5in +\newskip\titlepagebottomglue \titlepagebottomglue = 2pc + +% First the title page. Must do @settitle before @titlepage. +\newif\ifseenauthor +\newif\iffinishedtitlepage + +% Do an implicit @contents or @shortcontents after @end titlepage if the +% user says @setcontentsaftertitlepage or @setshortcontentsaftertitlepage. +% +\newif\ifsetcontentsaftertitlepage + \let\setcontentsaftertitlepage = \setcontentsaftertitlepagetrue +\newif\ifsetshortcontentsaftertitlepage + \let\setshortcontentsaftertitlepage = \setshortcontentsaftertitlepagetrue + +\def\shorttitlepage{\parsearg\shorttitlepagezzz} +\def\shorttitlepagezzz #1{\begingroup\hbox{}\vskip 1.5in \chaprm \centerline{#1}% + \endgroup\page\hbox{}\page} + +\def\titlepage{\begingroup \parindent=0pt \textfonts + \let\subtitlerm=\tenrm + \def\subtitlefont{\subtitlerm \normalbaselineskip = 13pt \normalbaselines}% + % + \def\authorfont{\authorrm \normalbaselineskip = 16pt \normalbaselines + \let\tt=\authortt}% + % + % Leave some space at the very top of the page. + \vglue\titlepagetopglue + % + % Now you can print the title using @title. + \def\title{\parsearg\titlezzz}% + \def\titlezzz##1{\leftline{\titlefonts\rm ##1} + % print a rule at the page bottom also. + \finishedtitlepagefalse + \vskip4pt \hrule height 4pt width \hsize \vskip4pt}% + % No rule at page bottom unless we print one at the top with @title. + \finishedtitlepagetrue + % + % Now you can put text using @subtitle. + \def\subtitle{\parsearg\subtitlezzz}% + \def\subtitlezzz##1{{\subtitlefont \rightline{##1}}}% + % + % @author should come last, but may come many times. + \def\author{\parsearg\authorzzz}% + \def\authorzzz##1{\ifseenauthor\else\vskip 0pt plus 1filll\seenauthortrue\fi + {\authorfont \leftline{##1}}}% + % + % Most title ``pages'' are actually two pages long, with space + % at the top of the second. We don't want the ragged left on the second. + \let\oldpage = \page + \def\page{% + \iffinishedtitlepage\else + \finishtitlepage + \fi + \oldpage + \let\page = \oldpage + \hbox{}}% +% \def\page{\oldpage \hbox{}} +} + +\def\Etitlepage{% + \iffinishedtitlepage\else + \finishtitlepage + \fi + % It is important to do the page break before ending the group, + % because the headline and footline are only empty inside the group. + % If we use the new definition of \page, we always get a blank page + % after the title page, which we certainly don't want. + \oldpage + \endgroup + % + % Need this before the \...aftertitlepage checks so that if they are + % in effect the toc pages will come out with page numbers. + \HEADINGSon + % + % If they want short, they certainly want long too. + \ifsetshortcontentsaftertitlepage + \shortcontents + \contents + \global\let\shortcontents = \relax + \global\let\contents = \relax + \fi + % + \ifsetcontentsaftertitlepage + \contents + \global\let\contents = \relax + \global\let\shortcontents = \relax + \fi +} + +\def\finishtitlepage{% + \vskip4pt \hrule height 2pt width \hsize + \vskip\titlepagebottomglue + \finishedtitlepagetrue +} + +%%% Set up page headings and footings. + +\let\thispage=\folio + +\newtoks\evenheadline % headline on even pages +\newtoks\oddheadline % headline on odd pages +\newtoks\evenfootline % footline on even pages +\newtoks\oddfootline % footline on odd pages + +% Now make Tex use those variables +\headline={{\textfonts\rm \ifodd\pageno \the\oddheadline + \else \the\evenheadline \fi}} +\footline={{\textfonts\rm \ifodd\pageno \the\oddfootline + \else \the\evenfootline \fi}\HEADINGShook} +\let\HEADINGShook=\relax + +% Commands to set those variables. +% For example, this is what @headings on does +% @evenheading @thistitle|@thispage|@thischapter +% @oddheading @thischapter|@thispage|@thistitle +% @evenfooting @thisfile|| +% @oddfooting ||@thisfile + +\def\evenheading{\parsearg\evenheadingxxx} +\def\oddheading{\parsearg\oddheadingxxx} +\def\everyheading{\parsearg\everyheadingxxx} + +\def\evenfooting{\parsearg\evenfootingxxx} +\def\oddfooting{\parsearg\oddfootingxxx} +\def\everyfooting{\parsearg\everyfootingxxx} + +{\catcode`\@=0 % + +\gdef\evenheadingxxx #1{\evenheadingyyy #1@|@|@|@|\finish} +\gdef\evenheadingyyy #1@|#2@|#3@|#4\finish{% +\global\evenheadline={\rlap{\centerline{#2}}\line{#1\hfil#3}}} + +\gdef\oddheadingxxx #1{\oddheadingyyy #1@|@|@|@|\finish} +\gdef\oddheadingyyy #1@|#2@|#3@|#4\finish{% +\global\oddheadline={\rlap{\centerline{#2}}\line{#1\hfil#3}}} + +\gdef\everyheadingxxx#1{\oddheadingxxx{#1}\evenheadingxxx{#1}}% + +\gdef\evenfootingxxx #1{\evenfootingyyy #1@|@|@|@|\finish} +\gdef\evenfootingyyy #1@|#2@|#3@|#4\finish{% +\global\evenfootline={\rlap{\centerline{#2}}\line{#1\hfil#3}}} + +\gdef\oddfootingxxx #1{\oddfootingyyy #1@|@|@|@|\finish} +\gdef\oddfootingyyy #1@|#2@|#3@|#4\finish{% + \global\oddfootline = {\rlap{\centerline{#2}}\line{#1\hfil#3}}% + % + % Leave some space for the footline. Hopefully ok to assume + % @evenfooting will not be used by itself. + \global\advance\pageheight by -\baselineskip + \global\advance\vsize by -\baselineskip +} + +\gdef\everyfootingxxx#1{\oddfootingxxx{#1}\evenfootingxxx{#1}} +% +}% unbind the catcode of @. + +% @headings double turns headings on for double-sided printing. +% @headings single turns headings on for single-sided printing. +% @headings off turns them off. +% @headings on same as @headings double, retained for compatibility. +% @headings after turns on double-sided headings after this page. +% @headings doubleafter turns on double-sided headings after this page. +% @headings singleafter turns on single-sided headings after this page. +% By default, they are off at the start of a document, +% and turned `on' after @end titlepage. + +\def\headings #1 {\csname HEADINGS#1\endcsname} + +\def\HEADINGSoff{ +\global\evenheadline={\hfil} \global\evenfootline={\hfil} +\global\oddheadline={\hfil} \global\oddfootline={\hfil}} +\HEADINGSoff +% When we turn headings on, set the page number to 1. +% For double-sided printing, put current file name in lower left corner, +% chapter name on inside top of right hand pages, document +% title on inside top of left hand pages, and page numbers on outside top +% edge of all pages. +\def\HEADINGSdouble{ +\global\pageno=1 +\global\evenfootline={\hfil} +\global\oddfootline={\hfil} +\global\evenheadline={\line{\folio\hfil\thistitle}} +\global\oddheadline={\line{\thischapter\hfil\folio}} +\global\let\contentsalignmacro = \chapoddpage +} +\let\contentsalignmacro = \chappager + +% For single-sided printing, chapter title goes across top left of page, +% page number on top right. +\def\HEADINGSsingle{ +\global\pageno=1 +\global\evenfootline={\hfil} +\global\oddfootline={\hfil} +\global\evenheadline={\line{\thischapter\hfil\folio}} +\global\oddheadline={\line{\thischapter\hfil\folio}} +\global\let\contentsalignmacro = \chappager +} +\def\HEADINGSon{\HEADINGSdouble} + +\def\HEADINGSafter{\let\HEADINGShook=\HEADINGSdoublex} +\let\HEADINGSdoubleafter=\HEADINGSafter +\def\HEADINGSdoublex{% +\global\evenfootline={\hfil} +\global\oddfootline={\hfil} +\global\evenheadline={\line{\folio\hfil\thistitle}} +\global\oddheadline={\line{\thischapter\hfil\folio}} +\global\let\contentsalignmacro = \chapoddpage +} + +\def\HEADINGSsingleafter{\let\HEADINGShook=\HEADINGSsinglex} +\def\HEADINGSsinglex{% +\global\evenfootline={\hfil} +\global\oddfootline={\hfil} +\global\evenheadline={\line{\thischapter\hfil\folio}} +\global\oddheadline={\line{\thischapter\hfil\folio}} +\global\let\contentsalignmacro = \chappager +} + +% Subroutines used in generating headings +% This produces Day Month Year style of output. +% Only define if not already defined, in case a txi-??.tex file has set +% up a different format (e.g., txi-cs.tex does this). +\ifx\today\undefined +\def\today{% + \number\day\space + \ifcase\month + \or\putwordMJan\or\putwordMFeb\or\putwordMMar\or\putwordMApr + \or\putwordMMay\or\putwordMJun\or\putwordMJul\or\putwordMAug + \or\putwordMSep\or\putwordMOct\or\putwordMNov\or\putwordMDec + \fi + \space\number\year} +\fi + +% @settitle line... specifies the title of the document, for headings. +% It generates no output of its own. +\def\thistitle{\putwordNoTitle} +\def\settitle{\parsearg\settitlezzz} +\def\settitlezzz #1{\gdef\thistitle{#1}} + + +\message{tables,} +% Tables -- @table, @ftable, @vtable, @item(x), @kitem(x), @xitem(x). + +% default indentation of table text +\newdimen\tableindent \tableindent=.8in +% default indentation of @itemize and @enumerate text +\newdimen\itemindent \itemindent=.3in +% margin between end of table item and start of table text. +\newdimen\itemmargin \itemmargin=.1in + +% used internally for \itemindent minus \itemmargin +\newdimen\itemmax + +% Note @table, @vtable, and @vtable define @item, @itemx, etc., with +% these defs. +% They also define \itemindex +% to index the item name in whatever manner is desired (perhaps none). + +\newif\ifitemxneedsnegativevskip + +\def\itemxpar{\par\ifitemxneedsnegativevskip\nobreak\vskip-\parskip\nobreak\fi} + +\def\internalBitem{\smallbreak \parsearg\itemzzz} +\def\internalBitemx{\itemxpar \parsearg\itemzzz} + +\def\internalBxitem "#1"{\def\xitemsubtopix{#1} \smallbreak \parsearg\xitemzzz} +\def\internalBxitemx "#1"{\def\xitemsubtopix{#1} \itemxpar \parsearg\xitemzzz} + +\def\internalBkitem{\smallbreak \parsearg\kitemzzz} +\def\internalBkitemx{\itemxpar \parsearg\kitemzzz} + +\def\kitemzzz #1{\dosubind {kw}{\code{#1}}{for {\bf \lastfunction}}% + \itemzzz {#1}} + +\def\xitemzzz #1{\dosubind {kw}{\code{#1}}{for {\bf \xitemsubtopic}}% + \itemzzz {#1}} + +\def\itemzzz #1{\begingroup % + \advance\hsize by -\rightskip + \advance\hsize by -\tableindent + \setbox0=\hbox{\itemfont{#1}}% + \itemindex{#1}% + \nobreak % This prevents a break before @itemx. + % + % If the item text does not fit in the space we have, put it on a line + % by itself, and do not allow a page break either before or after that + % line. We do not start a paragraph here because then if the next + % command is, e.g., @kindex, the whatsit would get put into the + % horizontal list on a line by itself, resulting in extra blank space. + \ifdim \wd0>\itemmax + % + % Make this a paragraph so we get the \parskip glue and wrapping, + % but leave it ragged-right. + \begingroup + \advance\leftskip by-\tableindent + \advance\hsize by\tableindent + \advance\rightskip by0pt plus1fil + \leavevmode\unhbox0\par + \endgroup + % + % We're going to be starting a paragraph, but we don't want the + % \parskip glue -- logically it's part of the @item we just started. + \nobreak \vskip-\parskip + % + % Stop a page break at the \parskip glue coming up. (Unfortunately + % we can't prevent a possible page break at the following + % \baselineskip glue.) However, if what follows is an environment + % such as @example, there will be no \parskip glue; then + % the negative vskip we just would cause the example and the item to + % crash together. So we use this bizarre value of 10001 as a signal + % to \aboveenvbreak to insert \parskip glue after all. + % (Possibly there are other commands that could be followed by + % @example which need the same treatment, but not section titles; or + % maybe section titles are the only special case and they should be + % penalty 10001...) + \penalty 10001 + \endgroup + \itemxneedsnegativevskipfalse + \else + % The item text fits into the space. Start a paragraph, so that the + % following text (if any) will end up on the same line. + \noindent + % Do this with kerns and \unhbox so that if there is a footnote in + % the item text, it can migrate to the main vertical list and + % eventually be printed. + \nobreak\kern-\tableindent + \dimen0 = \itemmax \advance\dimen0 by \itemmargin \advance\dimen0 by -\wd0 + \unhbox0 + \nobreak\kern\dimen0 + \endgroup + \itemxneedsnegativevskiptrue + \fi +} + +\def\item{\errmessage{@item while not in a table}} +\def\itemx{\errmessage{@itemx while not in a table}} +\def\kitem{\errmessage{@kitem while not in a table}} +\def\kitemx{\errmessage{@kitemx while not in a table}} +\def\xitem{\errmessage{@xitem while not in a table}} +\def\xitemx{\errmessage{@xitemx while not in a table}} + +% Contains a kludge to get @end[description] to work. +\def\description{\tablez{\dontindex}{1}{}{}{}{}} + +% @table, @ftable, @vtable. +\def\table{\begingroup\inENV\obeylines\obeyspaces\tablex} +{\obeylines\obeyspaces% +\gdef\tablex #1^^M{% +\tabley\dontindex#1 \endtabley}} + +\def\ftable{\begingroup\inENV\obeylines\obeyspaces\ftablex} +{\obeylines\obeyspaces% +\gdef\ftablex #1^^M{% +\tabley\fnitemindex#1 \endtabley +\def\Eftable{\endgraf\afterenvbreak\endgroup}% +\let\Etable=\relax}} + +\def\vtable{\begingroup\inENV\obeylines\obeyspaces\vtablex} +{\obeylines\obeyspaces% +\gdef\vtablex #1^^M{% +\tabley\vritemindex#1 \endtabley +\def\Evtable{\endgraf\afterenvbreak\endgroup}% +\let\Etable=\relax}} + +\def\dontindex #1{} +\def\fnitemindex #1{\doind {fn}{\code{#1}}}% +\def\vritemindex #1{\doind {vr}{\code{#1}}}% + +{\obeyspaces % +\gdef\tabley#1#2 #3 #4 #5 #6 #7\endtabley{\endgroup% +\tablez{#1}{#2}{#3}{#4}{#5}{#6}}} + +\def\tablez #1#2#3#4#5#6{% +\aboveenvbreak % +\begingroup % +\def\Edescription{\Etable}% Necessary kludge. +\let\itemindex=#1% +\ifnum 0#3>0 \advance \leftskip by #3\mil \fi % +\ifnum 0#4>0 \tableindent=#4\mil \fi % +\ifnum 0#5>0 \advance \rightskip by #5\mil \fi % +\def\itemfont{#2}% +\itemmax=\tableindent % +\advance \itemmax by -\itemmargin % +\advance \leftskip by \tableindent % +\exdentamount=\tableindent +\parindent = 0pt +\parskip = \smallskipamount +\ifdim \parskip=0pt \parskip=2pt \fi% +\def\Etable{\endgraf\afterenvbreak\endgroup}% +\let\item = \internalBitem % +\let\itemx = \internalBitemx % +\let\kitem = \internalBkitem % +\let\kitemx = \internalBkitemx % +\let\xitem = \internalBxitem % +\let\xitemx = \internalBxitemx % +} + +% This is the counter used by @enumerate, which is really @itemize + +\newcount \itemno + +\def\itemize{\parsearg\itemizezzz} + +\def\itemizezzz #1{% + \begingroup % ended by the @end itemize + \itemizey {#1}{\Eitemize} +} + +\def\itemizey #1#2{% +\aboveenvbreak % +\itemmax=\itemindent % +\advance \itemmax by -\itemmargin % +\advance \leftskip by \itemindent % +\exdentamount=\itemindent +\parindent = 0pt % +\parskip = \smallskipamount % +\ifdim \parskip=0pt \parskip=2pt \fi% +\def#2{\endgraf\afterenvbreak\endgroup}% +\def\itemcontents{#1}% +\let\item=\itemizeitem} + +% \splitoff TOKENS\endmark defines \first to be the first token in +% TOKENS, and \rest to be the remainder. +% +\def\splitoff#1#2\endmark{\def\first{#1}\def\rest{#2}}% + +% Allow an optional argument of an uppercase letter, lowercase letter, +% or number, to specify the first label in the enumerated list. No +% argument is the same as `1'. +% +\def\enumerate{\parsearg\enumeratezzz} +\def\enumeratezzz #1{\enumeratey #1 \endenumeratey} +\def\enumeratey #1 #2\endenumeratey{% + \begingroup % ended by the @end enumerate + % + % If we were given no argument, pretend we were given `1'. + \def\thearg{#1}% + \ifx\thearg\empty \def\thearg{1}\fi + % + % Detect if the argument is a single token. If so, it might be a + % letter. Otherwise, the only valid thing it can be is a number. + % (We will always have one token, because of the test we just made. + % This is a good thing, since \splitoff doesn't work given nothing at + % all -- the first parameter is undelimited.) + \expandafter\splitoff\thearg\endmark + \ifx\rest\empty + % Only one token in the argument. It could still be anything. + % A ``lowercase letter'' is one whose \lccode is nonzero. + % An ``uppercase letter'' is one whose \lccode is both nonzero, and + % not equal to itself. + % Otherwise, we assume it's a number. + % + % We need the \relax at the end of the \ifnum lines to stop TeX from + % continuing to look for a . + % + \ifnum\lccode\expandafter`\thearg=0\relax + \numericenumerate % a number (we hope) + \else + % It's a letter. + \ifnum\lccode\expandafter`\thearg=\expandafter`\thearg\relax + \lowercaseenumerate % lowercase letter + \else + \uppercaseenumerate % uppercase letter + \fi + \fi + \else + % Multiple tokens in the argument. We hope it's a number. + \numericenumerate + \fi +} + +% An @enumerate whose labels are integers. The starting integer is +% given in \thearg. +% +\def\numericenumerate{% + \itemno = \thearg + \startenumeration{\the\itemno}% +} + +% The starting (lowercase) letter is in \thearg. +\def\lowercaseenumerate{% + \itemno = \expandafter`\thearg + \startenumeration{% + % Be sure we're not beyond the end of the alphabet. + \ifnum\itemno=0 + \errmessage{No more lowercase letters in @enumerate; get a bigger + alphabet}% + \fi + \char\lccode\itemno + }% +} + +% The starting (uppercase) letter is in \thearg. +\def\uppercaseenumerate{% + \itemno = \expandafter`\thearg + \startenumeration{% + % Be sure we're not beyond the end of the alphabet. + \ifnum\itemno=0 + \errmessage{No more uppercase letters in @enumerate; get a bigger + alphabet} + \fi + \char\uccode\itemno + }% +} + +% Call itemizey, adding a period to the first argument and supplying the +% common last two arguments. Also subtract one from the initial value in +% \itemno, since @item increments \itemno. +% +\def\startenumeration#1{% + \advance\itemno by -1 + \itemizey{#1.}\Eenumerate\flushcr +} + +% @alphaenumerate and @capsenumerate are abbreviations for giving an arg +% to @enumerate. +% +\def\alphaenumerate{\enumerate{a}} +\def\capsenumerate{\enumerate{A}} +\def\Ealphaenumerate{\Eenumerate} +\def\Ecapsenumerate{\Eenumerate} + +% Definition of @item while inside @itemize. + +\def\itemizeitem{% +\advance\itemno by 1 +{\let\par=\endgraf \smallbreak}% +\ifhmode \errmessage{In hmode at itemizeitem}\fi +{\parskip=0in \hskip 0pt +\hbox to 0pt{\hss \itemcontents\hskip \itemmargin}% +\vadjust{\penalty 1200}}% +\flushcr} + +% @multitable macros +% Amy Hendrickson, 8/18/94, 3/6/96 +% +% @multitable ... @end multitable will make as many columns as desired. +% Contents of each column will wrap at width given in preamble. Width +% can be specified either with sample text given in a template line, +% or in percent of \hsize, the current width of text on page. + +% Table can continue over pages but will only break between lines. + +% To make preamble: +% +% Either define widths of columns in terms of percent of \hsize: +% @multitable @columnfractions .25 .3 .45 +% @item ... +% +% Numbers following @columnfractions are the percent of the total +% current hsize to be used for each column. You may use as many +% columns as desired. + + +% Or use a template: +% @multitable {Column 1 template} {Column 2 template} {Column 3 template} +% @item ... +% using the widest term desired in each column. +% +% For those who want to use more than one line's worth of words in +% the preamble, break the line within one argument and it +% will parse correctly, i.e., +% +% @multitable {Column 1 template} {Column 2 template} {Column 3 +% template} +% Not: +% @multitable {Column 1 template} {Column 2 template} +% {Column 3 template} + +% Each new table line starts with @item, each subsequent new column +% starts with @tab. Empty columns may be produced by supplying @tab's +% with nothing between them for as many times as empty columns are needed, +% ie, @tab@tab@tab will produce two empty columns. + +% @item, @tab, @multitable or @end multitable do not need to be on their +% own lines, but it will not hurt if they are. + +% Sample multitable: + +% @multitable {Column 1 template} {Column 2 template} {Column 3 template} +% @item first col stuff @tab second col stuff @tab third col +% @item +% first col stuff +% @tab +% second col stuff +% @tab +% third col +% @item first col stuff @tab second col stuff +% @tab Many paragraphs of text may be used in any column. +% +% They will wrap at the width determined by the template. +% @item@tab@tab This will be in third column. +% @end multitable + +% Default dimensions may be reset by user. +% @multitableparskip is vertical space between paragraphs in table. +% @multitableparindent is paragraph indent in table. +% @multitablecolmargin is horizontal space to be left between columns. +% @multitablelinespace is space to leave between table items, baseline +% to baseline. +% 0pt means it depends on current normal line spacing. +% +\newskip\multitableparskip +\newskip\multitableparindent +\newdimen\multitablecolspace +\newskip\multitablelinespace +\multitableparskip=0pt +\multitableparindent=6pt +\multitablecolspace=12pt +\multitablelinespace=0pt + +% Macros used to set up halign preamble: +% +\let\endsetuptable\relax +\def\xendsetuptable{\endsetuptable} +\let\columnfractions\relax +\def\xcolumnfractions{\columnfractions} +\newif\ifsetpercent + +% #1 is the part of the @columnfraction before the decimal point, which +% is presumably either 0 or the empty string (but we don't check, we +% just throw it away). #2 is the decimal part, which we use as the +% percent of \hsize for this column. +\def\pickupwholefraction#1.#2 {% + \global\advance\colcount by 1 + \expandafter\xdef\csname col\the\colcount\endcsname{.#2\hsize}% + \setuptable +} + +\newcount\colcount +\def\setuptable#1{% + \def\firstarg{#1}% + \ifx\firstarg\xendsetuptable + \let\go = \relax + \else + \ifx\firstarg\xcolumnfractions + \global\setpercenttrue + \else + \ifsetpercent + \let\go\pickupwholefraction + \else + \global\advance\colcount by 1 + \setbox0=\hbox{#1\unskip\space}% Add a normal word space as a + % separator; typically that is always in the input, anyway. + \expandafter\xdef\csname col\the\colcount\endcsname{\the\wd0}% + \fi + \fi + \ifx\go\pickupwholefraction + % Put the argument back for the \pickupwholefraction call, so + % we'll always have a period there to be parsed. + \def\go{\pickupwholefraction#1}% + \else + \let\go = \setuptable + \fi% + \fi + \go +} + +% @multitable ... @end multitable definitions: +% +\def\multitable{\parsearg\dotable} +\def\dotable#1{\bgroup + \vskip\parskip + \let\item=\crcrwithfootnotes + % A \tab used to include \hskip1sp. But then the space in a template + % line is not enough. That is bad. So let's go back to just & until + % we encounter the problem it was intended to solve again. --karl, + % nathan@acm.org, 20apr99. + \let\tab=&% + \let\startfootins=\startsavedfootnote + \tolerance=9500 + \hbadness=9500 + \setmultitablespacing + \parskip=\multitableparskip + \parindent=\multitableparindent + \overfullrule=0pt + \global\colcount=0 + \def\Emultitable{% + \global\setpercentfalse + \crcrwithfootnotes\crcr + \egroup\egroup + }% + % + % To parse everything between @multitable and @item: + \setuptable#1 \endsetuptable + % + % \everycr will reset column counter, \colcount, at the end of + % each line. Every column entry will cause \colcount to advance by one. + % The table preamble + % looks at the current \colcount to find the correct column width. + \everycr{\noalign{% + % + % \filbreak%% keeps underfull box messages off when table breaks over pages. + % Maybe so, but it also creates really weird page breaks when the table + % breaks over pages. Wouldn't \vfil be better? Wait until the problem + % manifests itself, so it can be fixed for real --karl. + \global\colcount=0\relax}}% + % + % This preamble sets up a generic column definition, which will + % be used as many times as user calls for columns. + % \vtop will set a single line and will also let text wrap and + % continue for many paragraphs if desired. + \halign\bgroup&\global\advance\colcount by 1\relax + \multistrut\vtop{\hsize=\expandafter\csname col\the\colcount\endcsname + % + % In order to keep entries from bumping into each other + % we will add a \leftskip of \multitablecolspace to all columns after + % the first one. + % + % If a template has been used, we will add \multitablecolspace + % to the width of each template entry. + % + % If the user has set preamble in terms of percent of \hsize we will + % use that dimension as the width of the column, and the \leftskip + % will keep entries from bumping into each other. Table will start at + % left margin and final column will justify at right margin. + % + % Make sure we don't inherit \rightskip from the outer environment. + \rightskip=0pt + \ifnum\colcount=1 + % The first column will be indented with the surrounding text. + \advance\hsize by\leftskip + \else + \ifsetpercent \else + % If user has not set preamble in terms of percent of \hsize + % we will advance \hsize by \multitablecolspace. + \advance\hsize by \multitablecolspace + \fi + % In either case we will make \leftskip=\multitablecolspace: + \leftskip=\multitablecolspace + \fi + % Ignoring space at the beginning and end avoids an occasional spurious + % blank line, when TeX decides to break the line at the space before the + % box from the multistrut, so the strut ends up on a line by itself. + % For example: + % @multitable @columnfractions .11 .89 + % @item @code{#} + % @tab Legal holiday which is valid in major parts of the whole country. + % Is automatically provided with highlighting sequences respectively marking + % characters. + \noindent\ignorespaces##\unskip\multistrut}\cr +} + +\def\setmultitablespacing{% test to see if user has set \multitablelinespace. +% If so, do nothing. If not, give it an appropriate dimension based on +% current baselineskip. +\ifdim\multitablelinespace=0pt +\setbox0=\vbox{X}\global\multitablelinespace=\the\baselineskip +\global\advance\multitablelinespace by-\ht0 +%% strut to put in table in case some entry doesn't have descenders, +%% to keep lines equally spaced +\let\multistrut = \strut +\else +%% FIXME: what is \box0 supposed to be? +\gdef\multistrut{\vrule height\multitablelinespace depth\dp0 +width0pt\relax} \fi +%% Test to see if parskip is larger than space between lines of +%% table. If not, do nothing. +%% If so, set to same dimension as multitablelinespace. +\ifdim\multitableparskip>\multitablelinespace +\global\multitableparskip=\multitablelinespace +\global\advance\multitableparskip-7pt %% to keep parskip somewhat smaller + %% than skip between lines in the table. +\fi% +\ifdim\multitableparskip=0pt +\global\multitableparskip=\multitablelinespace +\global\advance\multitableparskip-7pt %% to keep parskip somewhat smaller + %% than skip between lines in the table. +\fi} + +% In case a @footnote appears inside an alignment, save the footnote +% text to a box and make the \insert when a row of the table is +% finished. Otherwise, the insertion is lost, it never migrates to the +% main vertical list. --kasal, 22jan03. +% +\newbox\savedfootnotes +% +% \dotable \let's \startfootins to this, so that \dofootnote will call +% it instead of starting the insertion right away. +\def\startsavedfootnote{% + \global\setbox\savedfootnotes = \vbox\bgroup + \unvbox\savedfootnotes +} +\def\crcrwithfootnotes{% + \crcr + \ifvoid\savedfootnotes \else + \noalign{\insert\footins{\box\savedfootnotes}}% + \fi +} + +\message{conditionals,} +% Prevent errors for section commands. +% Used in @ignore and in failing conditionals. +\def\ignoresections{% + \let\chapter=\relax + \let\unnumbered=\relax + \let\top=\relax + \let\unnumberedsec=\relax + \let\unnumberedsection=\relax + \let\unnumberedsubsec=\relax + \let\unnumberedsubsection=\relax + \let\unnumberedsubsubsec=\relax + \let\unnumberedsubsubsection=\relax + \let\section=\relax + \let\subsec=\relax + \let\subsubsec=\relax + \let\subsection=\relax + \let\subsubsection=\relax + \let\appendix=\relax + \let\appendixsec=\relax + \let\appendixsection=\relax + \let\appendixsubsec=\relax + \let\appendixsubsection=\relax + \let\appendixsubsubsec=\relax + \let\appendixsubsubsection=\relax + \let\contents=\relax + \let\smallbook=\relax + \let\titlepage=\relax +} + +% Used in nested conditionals, where we have to parse the Texinfo source +% and so want to turn off most commands, in case they are used +% incorrectly. +% +% We use \empty instead of \relax for the @def... commands, so that \end +% doesn't throw an error. For instance: +% @ignore +% @deffn ... +% @end deffn +% @end ignore +% +% The @end deffn is going to get expanded, because we're trying to allow +% nested conditionals. But we don't want to expand the actual @deffn, +% since it might be syntactically correct and intended to be ignored. +% Since \end checks for \relax, using \empty does not cause an error. +% +\def\ignoremorecommands{% + \let\defcodeindex = \relax + \let\defcv = \empty + \let\defcvx = \empty + \let\Edefcv = \empty + \let\deffn = \empty + \let\deffnx = \empty + \let\Edeffn = \empty + \let\defindex = \relax + \let\defivar = \empty + \let\defivarx = \empty + \let\Edefivar = \empty + \let\defmac = \empty + \let\defmacx = \empty + \let\Edefmac = \empty + \let\defmethod = \empty + \let\defmethodx = \empty + \let\Edefmethod = \empty + \let\defop = \empty + \let\defopx = \empty + \let\Edefop = \empty + \let\defopt = \empty + \let\defoptx = \empty + \let\Edefopt = \empty + \let\defspec = \empty + \let\defspecx = \empty + \let\Edefspec = \empty + \let\deftp = \empty + \let\deftpx = \empty + \let\Edeftp = \empty + \let\deftypefn = \empty + \let\deftypefnx = \empty + \let\Edeftypefn = \empty + \let\deftypefun = \empty + \let\deftypefunx = \empty + \let\Edeftypefun = \empty + \let\deftypeivar = \empty + \let\deftypeivarx = \empty + \let\Edeftypeivar = \empty + \let\deftypemethod = \empty + \let\deftypemethodx = \empty + \let\Edeftypemethod = \empty + \let\deftypeop = \empty + \let\deftypeopx = \empty + \let\Edeftypeop = \empty + \let\deftypevar = \empty + \let\deftypevarx = \empty + \let\Edeftypevar = \empty + \let\deftypevr = \empty + \let\deftypevrx = \empty + \let\Edeftypevr = \empty + \let\defun = \empty + \let\defunx = \empty + \let\Edefun = \empty + \let\defvar = \empty + \let\defvarx = \empty + \let\Edefvar = \empty + \let\defvr = \empty + \let\defvrx = \empty + \let\Edefvr = \empty + \let\clear = \relax + \let\down = \relax + \let\evenfooting = \relax + \let\evenheading = \relax + \let\everyfooting = \relax + \let\everyheading = \relax + \let\headings = \relax + \let\include = \relax + \let\item = \relax + \let\lowersections = \relax + \let\oddfooting = \relax + \let\oddheading = \relax + \let\printindex = \relax + \let\pxref = \relax + \let\raisesections = \relax + \let\ref = \relax + \let\set = \relax + \let\setchapternewpage = \relax + \let\setchapterstyle = \relax + \let\settitle = \relax + \let\up = \relax + \let\verbatiminclude = \relax + \let\xref = \relax +} + +% Ignore @ignore, @ifhtml, @ifinfo, and the like. +% +\def\direntry{\doignore{direntry}} +\def\documentdescriptionword{documentdescription} +\def\documentdescription{\doignore{documentdescription}} +\def\html{\doignore{html}} +\def\ifhtml{\doignore{ifhtml}} +\def\ifinfo{\doignore{ifinfo}} +\def\ifnottex{\doignore{ifnottex}} +\def\ifplaintext{\doignore{ifplaintext}} +\def\ifxml{\doignore{ifxml}} +\def\ignore{\doignore{ignore}} +\def\menu{\doignore{menu}} +\def\xml{\doignore{xml}} + +% @dircategory CATEGORY -- specify a category of the dir file +% which this file should belong to. Ignore this in TeX. +\let\dircategory = \comment + +% Ignore text until a line `@end #1'. +% +\def\doignore#1{\begingroup + % Don't complain about control sequences we have declared \outer. + \ignoresections + % + % Define a command to swallow text until we reach `@end #1'. + % This @ is a catcode 12 token (that is the normal catcode of @ in + % this texinfo.tex file). We change the catcode of @ below to match. + \long\def\doignoretext##1@end #1{\enddoignore}% + % + % Make sure that spaces turn into tokens that match what \doignoretext wants. + \catcode\spaceChar = 10 + % + % Ignore braces, too, so mismatched braces don't cause trouble. + \catcode`\{ = 9 + \catcode`\} = 9 + % + % We must not have @c interpreted as a control sequence. + \catcode`\@ = 12 + % + \def\ignoreword{#1}% + \ifx\ignoreword\documentdescriptionword + % The c kludge breaks documentdescription, since + % `documentdescription' contains a `c'. Means not everything will + % be ignored inside @documentdescription, but oh well... + \else + % Make the letter c a comment character so that the rest of the line + % will be ignored. This way, the document can have (for example) + % @c @end ifinfo + % and the @end ifinfo will be properly ignored. + % (We've just changed @ to catcode 12.) + \catcode`\c = 14 + \fi + % + % And now expand the command defined above. + \doignoretext +} + +% What we do to finish off ignored text. +% +\def\enddoignore{\endgroup\ignorespaces}% + +\newif\ifwarnedobs\warnedobsfalse +\def\obstexwarn{% + \ifwarnedobs\relax\else + % We need to warn folks that they may have trouble with TeX 3.0. + % This uses \immediate\write16 rather than \message to get newlines. + \immediate\write16{} + \immediate\write16{WARNING: for users of Unix TeX 3.0!} + \immediate\write16{This manual trips a bug in TeX version 3.0 (tex hangs).} + \immediate\write16{If you are running another version of TeX, relax.} + \immediate\write16{If you are running Unix TeX 3.0, kill this TeX process.} + \immediate\write16{ Then upgrade your TeX installation if you can.} + \immediate\write16{ (See ftp://ftp.gnu.org/non-gnu/TeX.README.)} + \immediate\write16{If you are stuck with version 3.0, run the} + \immediate\write16{ script ``tex3patch'' from the Texinfo distribution} + \immediate\write16{ to use a workaround.} + \immediate\write16{} + \global\warnedobstrue + \fi +} + +% **In TeX 3.0, setting text in \nullfont hangs tex. For a +% workaround (which requires the file ``dummy.tfm'' to be installed), +% uncomment the following line: +%%%%%\font\nullfont=dummy\let\obstexwarn=\relax + +% Ignore text, except that we keep track of conditional commands for +% purposes of nesting, up to an `@end #1' command. +% +\def\nestedignore#1{% + \obstexwarn + % We must actually expand the ignored text to look for the @end + % command, so that nested ignore constructs work. Thus, we put the + % text into a \vbox and then do nothing with the result. To minimize + % the chance of memory overflow, we follow the approach outlined on + % page 401 of the TeXbook. + % + \setbox0 = \vbox\bgroup + % Don't complain about control sequences we have declared \outer. + \ignoresections + % + % Define `@end #1' to end the box, which will in turn undefine the + % @end command again. + \expandafter\def\csname E#1\endcsname{\egroup\ignorespaces}% + % + % We are going to be parsing Texinfo commands. Most cause no + % trouble when they are used incorrectly, but some commands do + % complicated argument parsing or otherwise get confused, so we + % undefine them. + % + % We can't do anything about stray @-signs, unfortunately; + % they'll produce `undefined control sequence' errors. + \ignoremorecommands + % + % Set the current font to be \nullfont, a TeX primitive, and define + % all the font commands to also use \nullfont. We don't use + % dummy.tfm, as suggested in the TeXbook, because some sites + % might not have that installed. Therefore, math mode will still + % produce output, but that should be an extremely small amount of + % stuff compared to the main input. + % + \nullfont + \let\tenrm=\nullfont \let\tenit=\nullfont \let\tensl=\nullfont + \let\tenbf=\nullfont \let\tentt=\nullfont \let\smallcaps=\nullfont + \let\tensf=\nullfont + % Similarly for index fonts. + \let\smallrm=\nullfont \let\smallit=\nullfont \let\smallsl=\nullfont + \let\smallbf=\nullfont \let\smalltt=\nullfont \let\smallsc=\nullfont + \let\smallsf=\nullfont + % Similarly for smallexample fonts. + \let\smallerrm=\nullfont \let\smallerit=\nullfont \let\smallersl=\nullfont + \let\smallerbf=\nullfont \let\smallertt=\nullfont \let\smallersc=\nullfont + \let\smallersf=\nullfont + % + % Don't complain when characters are missing from the fonts. + \tracinglostchars = 0 + % + % Don't bother to do space factor calculations. + \frenchspacing + % + % Don't report underfull hboxes. + \hbadness = 10000 + % + % Do minimal line-breaking. + \pretolerance = 10000 + % + % Do not execute instructions in @tex. + \def\tex{\doignore{tex}}% + % Do not execute macro definitions. + % `c' is a comment character, so the word `macro' will get cut off. + \def\macro{\doignore{ma}}% +} + +% @set VAR sets the variable VAR to an empty value. +% @set VAR REST-OF-LINE sets VAR to the value REST-OF-LINE. +% +% Since we want to separate VAR from REST-OF-LINE (which might be +% empty), we can't just use \parsearg; we have to insert a space of our +% own to delimit the rest of the line, and then take it out again if we +% didn't need it. Make sure the catcode of space is correct to avoid +% losing inside @example, for instance. +% +\def\set{\begingroup\catcode` =10 + \catcode`\-=12 \catcode`\_=12 % Allow - and _ in VAR. + \parsearg\setxxx} +\def\setxxx#1{\setyyy#1 \endsetyyy} +\def\setyyy#1 #2\endsetyyy{% + \def\temp{#2}% + \ifx\temp\empty \global\expandafter\let\csname SET#1\endcsname = \empty + \else \setzzz{#1}#2\endsetzzz % Remove the trailing space \setxxx inserted. + \fi + \endgroup +} +% Can't use \xdef to pre-expand #2 and save some time, since \temp or +% \next or other control sequences that we've defined might get us into +% an infinite loop. Consider `@set foo @cite{bar}'. +\def\setzzz#1#2 \endsetzzz{\expandafter\gdef\csname SET#1\endcsname{#2}} + +% @clear VAR clears (i.e., unsets) the variable VAR. +% +\def\clear{\parsearg\clearxxx} +\def\clearxxx#1{\global\expandafter\let\csname SET#1\endcsname=\relax} + +% @value{foo} gets the text saved in variable foo. +{ + \catcode`\_ = \active + % + % We might end up with active _ or - characters in the argument if + % we're called from @code, as @code{@value{foo-bar_}}. So \let any + % such active characters to their normal equivalents. + \gdef\value{\begingroup + \catcode`\-=\other \catcode`\_=\other + \indexbreaks \let_\normalunderscore + \valuexxx} +} +\def\valuexxx#1{\expandablevalue{#1}\endgroup} + +% We have this subroutine so that we can handle at least some @value's +% properly in indexes (we \let\value to this in \indexdummies). Ones +% whose names contain - or _ still won't work, but we can't do anything +% about that. The command has to be fully expandable (if the variable +% is set), since the result winds up in the index file. This means that +% if the variable's value contains other Texinfo commands, it's almost +% certain it will fail (although perhaps we could fix that with +% sufficient work to do a one-level expansion on the result, instead of +% complete). +% +\def\expandablevalue#1{% + \expandafter\ifx\csname SET#1\endcsname\relax + {[No value for ``#1'']}% + \message{Variable `#1', used in @value, is not set.}% + \else + \csname SET#1\endcsname + \fi +} + +% @ifset VAR ... @end ifset reads the `...' iff VAR has been defined +% with @set. +% +\def\ifset{\parsearg\doifset} +\def\doifset#1{% + \expandafter\ifx\csname SET#1\endcsname\relax + \let\next=\ifsetfail + \else + \let\next=\ifsetsucceed + \fi + \next +} +\def\ifsetsucceed{\conditionalsucceed{ifset}} +\def\ifsetfail{\nestedignore{ifset}} +\defineunmatchedend{ifset} + +% @ifclear VAR ... @end ifclear reads the `...' iff VAR has never been +% defined with @set, or has been undefined with @clear. +% +\def\ifclear{\parsearg\doifclear} +\def\doifclear#1{% + \expandafter\ifx\csname SET#1\endcsname\relax + \let\next=\ifclearsucceed + \else + \let\next=\ifclearfail + \fi + \next +} +\def\ifclearsucceed{\conditionalsucceed{ifclear}} +\def\ifclearfail{\nestedignore{ifclear}} +\defineunmatchedend{ifclear} + +% @iftex, @ifnothtml, @ifnotinfo, @ifnotplaintext always succeed; we +% read the text following, through the first @end iftex (etc.). Make +% `@end iftex' (etc.) valid only after an @iftex. +% +\def\iftex{\conditionalsucceed{iftex}} +\def\ifnothtml{\conditionalsucceed{ifnothtml}} +\def\ifnotinfo{\conditionalsucceed{ifnotinfo}} +\def\ifnotplaintext{\conditionalsucceed{ifnotplaintext}} +\defineunmatchedend{iftex} +\defineunmatchedend{ifnothtml} +\defineunmatchedend{ifnotinfo} +\defineunmatchedend{ifnotplaintext} + +% True conditional. Since \set globally defines its variables, we can +% just start and end a group (to keep the @end definition undefined at +% the outer level). +% +\def\conditionalsucceed#1{\begingroup + \expandafter\def\csname E#1\endcsname{\endgroup}% +} + +% @defininfoenclose. +\let\definfoenclose=\comment + + +\message{indexing,} +% Index generation facilities + +% Define \newwrite to be identical to plain tex's \newwrite +% except not \outer, so it can be used within \newindex. +{\catcode`\@=11 +\gdef\newwrite{\alloc@7\write\chardef\sixt@@n}} + +% \newindex {foo} defines an index named foo. +% It automatically defines \fooindex such that +% \fooindex ...rest of line... puts an entry in the index foo. +% It also defines \fooindfile to be the number of the output channel for +% the file that accumulates this index. The file's extension is foo. +% The name of an index should be no more than 2 characters long +% for the sake of vms. +% +\def\newindex#1{% + \iflinks + \expandafter\newwrite \csname#1indfile\endcsname + \openout \csname#1indfile\endcsname \jobname.#1 % Open the file + \fi + \expandafter\xdef\csname#1index\endcsname{% % Define @#1index + \noexpand\doindex{#1}} +} + +% @defindex foo == \newindex{foo} +% +\def\defindex{\parsearg\newindex} + +% Define @defcodeindex, like @defindex except put all entries in @code. +% +\def\defcodeindex{\parsearg\newcodeindex} +% +\def\newcodeindex#1{% + \iflinks + \expandafter\newwrite \csname#1indfile\endcsname + \openout \csname#1indfile\endcsname \jobname.#1 + \fi + \expandafter\xdef\csname#1index\endcsname{% + \noexpand\docodeindex{#1}}% +} + + +% @synindex foo bar makes index foo feed into index bar. +% Do this instead of @defindex foo if you don't want it as a separate index. +% +% @syncodeindex foo bar similar, but put all entries made for index foo +% inside @code. +% +\def\synindex#1 #2 {\dosynindex\doindex{#1}{#2}} +\def\syncodeindex#1 #2 {\dosynindex\docodeindex{#1}{#2}} + +% #1 is \doindex or \docodeindex, #2 the index getting redefined (foo), +% #3 the target index (bar). +\def\dosynindex#1#2#3{% + % Only do \closeout if we haven't already done it, else we'll end up + % closing the target index. + \expandafter \ifx\csname donesynindex#2\endcsname \undefined + % The \closeout helps reduce unnecessary open files; the limit on the + % Acorn RISC OS is a mere 16 files. + \expandafter\closeout\csname#2indfile\endcsname + \expandafter\let\csname\donesynindex#2\endcsname = 1 + \fi + % redefine \fooindfile: + \expandafter\let\expandafter\temp\expandafter=\csname#3indfile\endcsname + \expandafter\let\csname#2indfile\endcsname=\temp + % redefine \fooindex: + \expandafter\xdef\csname#2index\endcsname{\noexpand#1{#3}}% +} + +% Define \doindex, the driver for all \fooindex macros. +% Argument #1 is generated by the calling \fooindex macro, +% and it is "foo", the name of the index. + +% \doindex just uses \parsearg; it calls \doind for the actual work. +% This is because \doind is more useful to call from other macros. + +% There is also \dosubind {index}{topic}{subtopic} +% which makes an entry in a two-level index such as the operation index. + +\def\doindex#1{\edef\indexname{#1}\parsearg\singleindexer} +\def\singleindexer #1{\doind{\indexname}{#1}} + +% like the previous two, but they put @code around the argument. +\def\docodeindex#1{\edef\indexname{#1}\parsearg\singlecodeindexer} +\def\singlecodeindexer #1{\doind{\indexname}{\code{#1}}} + +% Take care of Texinfo commands that can appear in an index entry. +% Since there are some commands we want to expand, and others we don't, +% we have to laboriously prevent expansion for those that we don't. +% +\def\indexdummies{% + \def\@{@}% change to @@ when we switch to @ as escape char in index files. + \def\ {\realbackslash\space }% + % Need these in case \tex is in effect and \{ is a \delimiter again. + % But can't use \lbracecmd and \rbracecmd because texindex assumes + % braces and backslashes are used only as delimiters. + \let\{ = \mylbrace + \let\} = \myrbrace + % + % \definedummyword defines \#1 as \realbackslash #1\space, thus + % effectively preventing its expansion. This is used only for control + % words, not control letters, because the \space would be incorrect + % for control characters, but is needed to separate the control word + % from whatever follows. + % + % For control letters, we have \definedummyletter, which omits the + % space. + % + % These can be used both for control words that take an argument and + % those that do not. If it is followed by {arg} in the input, then + % that will dutifully get written to the index (or wherever). + % + \def\definedummyword##1{% + \expandafter\def\csname ##1\endcsname{\realbackslash ##1\space}% + }% + \def\definedummyletter##1{% + \expandafter\def\csname ##1\endcsname{\realbackslash ##1}% + }% + % + % Do the redefinitions. + \commondummies +} + +% For the aux file, @ is the escape character. So we want to redefine +% everything using @ instead of \realbackslash. When everything uses +% @, this will be simpler. +% +\def\atdummies{% + \def\@{@@}% + \def\ {@ }% + \let\{ = \lbraceatcmd + \let\} = \rbraceatcmd + % + % (See comments in \indexdummies.) + \def\definedummyword##1{% + \expandafter\def\csname ##1\endcsname{@##1\space}% + }% + \def\definedummyletter##1{% + \expandafter\def\csname ##1\endcsname{@##1}% + }% + % + % Do the redefinitions. + \commondummies +} + +% Called from \indexdummies and \atdummies. \definedummyword and +% \definedummyletter must be defined first. +% +\def\commondummies{% + % + \normalturnoffactive + % + % Control letters and accents. + \definedummyletter{_}% + \definedummyletter{,}% + \definedummyletter{"}% + \definedummyletter{`}% + \definedummyletter{'}% + \definedummyletter{^}% + \definedummyletter{~}% + \definedummyletter{=}% + \definedummyword{u}% + \definedummyword{v}% + \definedummyword{H}% + \definedummyword{dotaccent}% + \definedummyword{ringaccent}% + \definedummyword{tieaccent}% + \definedummyword{ubaraccent}% + \definedummyword{udotaccent}% + \definedummyword{dotless}% + % + % Other non-English letters. + \definedummyword{AA}% + \definedummyword{AE}% + \definedummyword{L}% + \definedummyword{OE}% + \definedummyword{O}% + \definedummyword{aa}% + \definedummyword{ae}% + \definedummyword{l}% + \definedummyword{oe}% + \definedummyword{o}% + \definedummyword{ss}% + % + % Although these internal commands shouldn't show up, sometimes they do. + \definedummyword{bf}% + \definedummyword{gtr}% + \definedummyword{hat}% + \definedummyword{less}% + \definedummyword{sf}% + \definedummyword{sl}% + \definedummyword{tclose}% + \definedummyword{tt}% + % + % Texinfo font commands. + \definedummyword{b}% + \definedummyword{i}% + \definedummyword{r}% + \definedummyword{sc}% + \definedummyword{t}% + % + \definedummyword{TeX}% + \definedummyword{acronym}% + \definedummyword{cite}% + \definedummyword{code}% + \definedummyword{command}% + \definedummyword{dfn}% + \definedummyword{dots}% + \definedummyword{emph}% + \definedummyword{env}% + \definedummyword{file}% + \definedummyword{kbd}% + \definedummyword{key}% + \definedummyword{math}% + \definedummyword{option}% + \definedummyword{samp}% + \definedummyword{strong}% + \definedummyword{uref}% + \definedummyword{url}% + \definedummyword{var}% + \definedummyword{w}% + % + % Assorted special characters. + \definedummyword{bullet}% + \definedummyword{copyright}% + \definedummyword{dots}% + \definedummyword{enddots}% + \definedummyword{equiv}% + \definedummyword{error}% + \definedummyword{expansion}% + \definedummyword{minus}% + \definedummyword{pounds}% + \definedummyword{point}% + \definedummyword{print}% + \definedummyword{result}% + % + % Handle some cases of @value -- where the variable name does not + % contain - or _, and the value does not contain any + % (non-fully-expandable) commands. + \let\value = \expandablevalue + % + % Normal spaces, not active ones. + \unsepspaces + % + % No macro expansion. + \turnoffmacros +} + +% If an index command is used in an @example environment, any spaces +% therein should become regular spaces in the raw index file, not the +% expansion of \tie (\leavevmode \penalty \@M \ ). +{\obeyspaces + \gdef\unsepspaces{\obeyspaces\let =\space}} + + +% \indexnofonts is used when outputting the strings to sort the index +% by, and when constructing control sequence names. It eliminates all +% control sequences and just writes whatever the best ASCII sort string +% would be for a given command (usually its argument). +% +\def\indexdummytex{TeX} +\def\indexdummydots{...} +% +\def\indexnofonts{% + \def\ { }% + \def\@{@}% + % how to handle braces? + \def\_{\normalunderscore}% + % + \let\,=\asis + \let\"=\asis + \let\`=\asis + \let\'=\asis + \let\^=\asis + \let\~=\asis + \let\==\asis + \let\u=\asis + \let\v=\asis + \let\H=\asis + \let\dotaccent=\asis + \let\ringaccent=\asis + \let\tieaccent=\asis + \let\ubaraccent=\asis + \let\udotaccent=\asis + \let\dotless=\asis + % + % Other non-English letters. + \def\AA{AA}% + \def\AE{AE}% + \def\L{L}% + \def\OE{OE}% + \def\O{O}% + \def\aa{aa}% + \def\ae{ae}% + \def\l{l}% + \def\oe{oe}% + \def\o{o}% + \def\ss{ss}% + \def\exclamdown{!}% + \def\questiondown{?}% + % + % Don't no-op \tt, since it isn't a user-level command + % and is used in the definitions of the active chars like <, >, |, etc. + % Likewise with the other plain tex font commands. + %\let\tt=\asis + % + % Texinfo font commands. + \let\b=\asis + \let\i=\asis + \let\r=\asis + \let\sc=\asis + \let\t=\asis + % + \let\TeX=\indexdummytex + \let\acronym=\asis + \let\cite=\asis + \let\code=\asis + \let\command=\asis + \let\dfn=\asis + \let\dots=\indexdummydots + \let\emph=\asis + \let\env=\asis + \let\file=\asis + \let\kbd=\asis + \let\key=\asis + \let\math=\asis + \let\option=\asis + \let\samp=\asis + \let\strong=\asis + \let\uref=\asis + \let\url=\asis + \let\var=\asis + \let\w=\asis +} + +\let\indexbackslash=0 %overridden during \printindex. +\let\SETmarginindex=\relax % put index entries in margin (undocumented)? + +% For \ifx comparisons. +\def\emptymacro{\empty} + +% Most index entries go through here, but \dosubind is the general case. +% +\def\doind#1#2{\dosubind{#1}{#2}\empty} + +% Workhorse for all \fooindexes. +% #1 is name of index, #2 is stuff to put there, #3 is subentry -- +% \empty if called from \doind, as we usually are. The main exception +% is with defuns, which call us directly. +% +\def\dosubind#1#2#3{% + % Put the index entry in the margin if desired. + \ifx\SETmarginindex\relax\else + \insert\margin{\hbox{\vrule height8pt depth3pt width0pt #2}}% + \fi + {% + \count255=\lastpenalty + {% + \indexdummies % Must do this here, since \bf, etc expand at this stage + \escapechar=`\\ + {% + \let\folio = 0% We will expand all macros now EXCEPT \folio. + \def\rawbackslashxx{\indexbackslash}% \indexbackslash isn't defined now + % so it will be output as is; and it will print as backslash. + % + % The main index entry text. + \toks0 = {#2}% + % + % If third arg is present, precede it with space in sort key. + \def\thirdarg{#3}% + \ifx\thirdarg\emptymacro \else + % If the third (subentry) arg is present, add it to the index + % line to write. + \toks0 = \expandafter{\the\toks0 \space #3}% + \fi + % + % Process the index entry with all font commands turned off, to + % get the string to sort by. + {\indexnofonts + \edef\temp{\the\toks0}% need full expansion + \xdef\indexsorttmp{\temp}% + }% + % + % Set up the complete index entry, with both the sort key and + % the original text, including any font commands. We write + % three arguments to \entry to the .?? file (four in the + % subentry case), texindex reduces to two when writing the .??s + % sorted result. + \edef\temp{% + \write\csname#1indfile\endcsname{% + \realbackslash entry{\indexsorttmp}{\folio}{\the\toks0}}% + }% + % + % If a skip is the last thing on the list now, preserve it + % by backing up by \lastskip, doing the \write, then inserting + % the skip again. Otherwise, the whatsit generated by the + % \write will make \lastskip zero. The result is that sequences + % like this: + % @end defun + % @tindex whatever + % @defun ... + % will have extra space inserted, because the \medbreak in the + % start of the @defun won't see the skip inserted by the @end of + % the previous defun. + % + % But don't do any of this if we're not in vertical mode. We + % don't want to do a \vskip and prematurely end a paragraph. + % + % Avoid page breaks due to these extra skips, too. + % + \iflinks + \ifvmode + \skip0 = \lastskip + \ifdim\lastskip = 0pt \else \nobreak\vskip-\skip0 \fi + \fi + % + \temp % do the write + % + \ifvmode \ifdim\skip0 = 0pt \else \nobreak\vskip\skip0 \fi \fi + \fi + }% + }% + \penalty\count255 + }% +} + +% The index entry written in the file actually looks like +% \entry {sortstring}{page}{topic} +% or +% \entry {sortstring}{page}{topic}{subtopic} +% The texindex program reads in these files and writes files +% containing these kinds of lines: +% \initial {c} +% before the first topic whose initial is c +% \entry {topic}{pagelist} +% for a topic that is used without subtopics +% \primary {topic} +% for the beginning of a topic that is used with subtopics +% \secondary {subtopic}{pagelist} +% for each subtopic. + +% Define the user-accessible indexing commands +% @findex, @vindex, @kindex, @cindex. + +\def\findex {\fnindex} +\def\kindex {\kyindex} +\def\cindex {\cpindex} +\def\vindex {\vrindex} +\def\tindex {\tpindex} +\def\pindex {\pgindex} + +\def\cindexsub {\begingroup\obeylines\cindexsub} +{\obeylines % +\gdef\cindexsub "#1" #2^^M{\endgroup % +\dosubind{cp}{#2}{#1}}} + +% Define the macros used in formatting output of the sorted index material. + +% @printindex causes a particular index (the ??s file) to get printed. +% It does not print any chapter heading (usually an @unnumbered). +% +\def\printindex{\parsearg\doprintindex} +\def\doprintindex#1{\begingroup + \dobreak \chapheadingskip{10000}% + % + \smallfonts \rm + \tolerance = 9500 + \indexbreaks + % + % See if the index file exists and is nonempty. + % Change catcode of @ here so that if the index file contains + % \initial {@} + % as its first line, TeX doesn't complain about mismatched braces + % (because it thinks @} is a control sequence). + \catcode`\@ = 11 + \openin 1 \jobname.#1s + \ifeof 1 + % \enddoublecolumns gets confused if there is no text in the index, + % and it loses the chapter title and the aux file entries for the + % index. The easiest way to prevent this problem is to make sure + % there is some text. + \putwordIndexNonexistent + \else + % + % If the index file exists but is empty, then \openin leaves \ifeof + % false. We have to make TeX try to read something from the file, so + % it can discover if there is anything in it. + \read 1 to \temp + \ifeof 1 + \putwordIndexIsEmpty + \else + % Index files are almost Texinfo source, but we use \ as the escape + % character. It would be better to use @, but that's too big a change + % to make right now. + \def\indexbackslash{\rawbackslashxx}% + \catcode`\\ = 0 + \escapechar = `\\ + \begindoublecolumns + \input \jobname.#1s + \enddoublecolumns + \fi + \fi + \closein 1 +\endgroup} + +% These macros are used by the sorted index file itself. +% Change them to control the appearance of the index. + +\def\initial#1{{% + % Some minor font changes for the special characters. + \let\tentt=\sectt \let\tt=\sectt \let\sf=\sectt + % + % Remove any glue we may have, we'll be inserting our own. + \removelastskip + % + % We like breaks before the index initials, so insert a bonus. + \penalty -300 + % + % Typeset the initial. Making this add up to a whole number of + % baselineskips increases the chance of the dots lining up from column + % to column. It still won't often be perfect, because of the stretch + % we need before each entry, but it's better. + % + % No shrink because it confuses \balancecolumns. + \vskip 1.67\baselineskip plus .5\baselineskip + \leftline{\secbf #1}% + \vskip .33\baselineskip plus .1\baselineskip + % + % Do our best not to break after the initial. + \nobreak +}} + +% This typesets a paragraph consisting of #1, dot leaders, and then #2 +% flush to the right margin. It is used for index and table of contents +% entries. The paragraph is indented by \leftskip. +% +\def\entry#1#2{\begingroup + % + % Start a new paragraph if necessary, so our assignments below can't + % affect previous text. + \par + % + % Do not fill out the last line with white space. + \parfillskip = 0in + % + % No extra space above this paragraph. + \parskip = 0in + % + % Do not prefer a separate line ending with a hyphen to fewer lines. + \finalhyphendemerits = 0 + % + % \hangindent is only relevant when the entry text and page number + % don't both fit on one line. In that case, bob suggests starting the + % dots pretty far over on the line. Unfortunately, a large + % indentation looks wrong when the entry text itself is broken across + % lines. So we use a small indentation and put up with long leaders. + % + % \hangafter is reset to 1 (which is the value we want) at the start + % of each paragraph, so we need not do anything with that. + \hangindent = 2em + % + % When the entry text needs to be broken, just fill out the first line + % with blank space. + \rightskip = 0pt plus1fil + % + % A bit of stretch before each entry for the benefit of balancing columns. + \vskip 0pt plus1pt + % + % Start a ``paragraph'' for the index entry so the line breaking + % parameters we've set above will have an effect. + \noindent + % + % Insert the text of the index entry. TeX will do line-breaking on it. + #1% + % The following is kludged to not output a line of dots in the index if + % there are no page numbers. The next person who breaks this will be + % cursed by a Unix daemon. + \def\tempa{{\rm }}% + \def\tempb{#2}% + \edef\tempc{\tempa}% + \edef\tempd{\tempb}% + \ifx\tempc\tempd\ \else% + % + % If we must, put the page number on a line of its own, and fill out + % this line with blank space. (The \hfil is overwhelmed with the + % fill leaders glue in \indexdotfill if the page number does fit.) + \hfil\penalty50 + \null\nobreak\indexdotfill % Have leaders before the page number. + % + % The `\ ' here is removed by the implicit \unskip that TeX does as + % part of (the primitive) \par. Without it, a spurious underfull + % \hbox ensues. + \ifpdf + \pdfgettoks#2.\ \the\toksA % The page number ends the paragraph. + \else + \ #2% The page number ends the paragraph. + \fi + \fi% + \par +\endgroup} + +% Like \dotfill except takes at least 1 em. +\def\indexdotfill{\cleaders + \hbox{$\mathsurround=0pt \mkern1.5mu ${\it .}$ \mkern1.5mu$}\hskip 1em plus 1fill} + +\def\primary #1{\line{#1\hfil}} + +\newskip\secondaryindent \secondaryindent=0.5cm +\def\secondary#1#2{{% + \parfillskip=0in + \parskip=0in + \hangindent=1in + \hangafter=1 + \noindent\hskip\secondaryindent\hbox{#1}\indexdotfill + \ifpdf + \pdfgettoks#2.\ \the\toksA % The page number ends the paragraph. + \else + #2 + \fi + \par +}} + +% Define two-column mode, which we use to typeset indexes. +% Adapted from the TeXbook, page 416, which is to say, +% the manmac.tex format used to print the TeXbook itself. +\catcode`\@=11 + +\newbox\partialpage +\newdimen\doublecolumnhsize + +\def\begindoublecolumns{\begingroup % ended by \enddoublecolumns + % Grab any single-column material above us. + \output = {% + % + % Here is a possibility not foreseen in manmac: if we accumulate a + % whole lot of material, we might end up calling this \output + % routine twice in a row (see the doublecol-lose test, which is + % essentially a couple of indexes with @setchapternewpage off). In + % that case we just ship out what is in \partialpage with the normal + % output routine. Generally, \partialpage will be empty when this + % runs and this will be a no-op. See the indexspread.tex test case. + \ifvoid\partialpage \else + \onepageout{\pagecontents\partialpage}% + \fi + % + \global\setbox\partialpage = \vbox{% + % Unvbox the main output page. + \unvbox\PAGE + \kern-\topskip \kern\baselineskip + }% + }% + \eject % run that output routine to set \partialpage + % + % Use the double-column output routine for subsequent pages. + \output = {\doublecolumnout}% + % + % Change the page size parameters. We could do this once outside this + % routine, in each of @smallbook, @afourpaper, and the default 8.5x11 + % format, but then we repeat the same computation. Repeating a couple + % of assignments once per index is clearly meaningless for the + % execution time, so we may as well do it in one place. + % + % First we halve the line length, less a little for the gutter between + % the columns. We compute the gutter based on the line length, so it + % changes automatically with the paper format. The magic constant + % below is chosen so that the gutter has the same value (well, +-<1pt) + % as it did when we hard-coded it. + % + % We put the result in a separate register, \doublecolumhsize, so we + % can restore it in \pagesofar, after \hsize itself has (potentially) + % been clobbered. + % + \doublecolumnhsize = \hsize + \advance\doublecolumnhsize by -.04154\hsize + \divide\doublecolumnhsize by 2 + \hsize = \doublecolumnhsize + % + % Double the \vsize as well. (We don't need a separate register here, + % since nobody clobbers \vsize.) + \vsize = 2\vsize +} + +% The double-column output routine for all double-column pages except +% the last. +% +\def\doublecolumnout{% + \splittopskip=\topskip \splitmaxdepth=\maxdepth + % Get the available space for the double columns -- the normal + % (undoubled) page height minus any material left over from the + % previous page. + \dimen@ = \vsize + \divide\dimen@ by 2 + \advance\dimen@ by -\ht\partialpage + % + % box0 will be the left-hand column, box2 the right. + \setbox0=\vsplit255 to\dimen@ \setbox2=\vsplit255 to\dimen@ + \onepageout\pagesofar + \unvbox255 + \penalty\outputpenalty +} +% +% Re-output the contents of the output page -- any previous material, +% followed by the two boxes we just split, in box0 and box2. +\def\pagesofar{% + \unvbox\partialpage + % + \hsize = \doublecolumnhsize + \wd0=\hsize \wd2=\hsize + \hbox to\pagewidth{\box0\hfil\box2}% +} +% +% All done with double columns. +\def\enddoublecolumns{% + \output = {% + % Split the last of the double-column material. Leave it on the + % current page, no automatic page break. + \balancecolumns + % + % If we end up splitting too much material for the current page, + % though, there will be another page break right after this \output + % invocation ends. Having called \balancecolumns once, we do not + % want to call it again. Therefore, reset \output to its normal + % definition right away. (We hope \balancecolumns will never be + % called on to balance too much material, but if it is, this makes + % the output somewhat more palatable.) + \global\output = {\onepageout{\pagecontents\PAGE}}% + }% + \eject + \endgroup % started in \begindoublecolumns + % + % \pagegoal was set to the doubled \vsize above, since we restarted + % the current page. We're now back to normal single-column + % typesetting, so reset \pagegoal to the normal \vsize (after the + % \endgroup where \vsize got restored). + \pagegoal = \vsize +} +% +% Called at the end of the double column material. +\def\balancecolumns{% + \setbox0 = \vbox{\unvbox255}% like \box255 but more efficient, see p.120. + \dimen@ = \ht0 + \advance\dimen@ by \topskip + \advance\dimen@ by-\baselineskip + \divide\dimen@ by 2 % target to split to + %debug\message{final 2-column material height=\the\ht0, target=\the\dimen@.}% + \splittopskip = \topskip + % Loop until we get a decent breakpoint. + {% + \vbadness = 10000 + \loop + \global\setbox3 = \copy0 + \global\setbox1 = \vsplit3 to \dimen@ + \ifdim\ht3>\dimen@ + \global\advance\dimen@ by 1pt + \repeat + }% + %debug\message{split to \the\dimen@, column heights: \the\ht1, \the\ht3.}% + \setbox0=\vbox to\dimen@{\unvbox1}% + \setbox2=\vbox to\dimen@{\unvbox3}% + % + \pagesofar +} +\catcode`\@ = \other + + +\message{sectioning,} +% Chapters, sections, etc. + +\newcount\chapno +\newcount\secno \secno=0 +\newcount\subsecno \subsecno=0 +\newcount\subsubsecno \subsubsecno=0 + +% This counter is funny since it counts through charcodes of letters A, B, ... +\newcount\appendixno \appendixno = `\@ +% \def\appendixletter{\char\the\appendixno} +% We do the following for the sake of pdftex, which needs the actual +% letter in the expansion, not just typeset. +\def\appendixletter{% + \ifnum\appendixno=`A A% + \else\ifnum\appendixno=`B B% + \else\ifnum\appendixno=`C C% + \else\ifnum\appendixno=`D D% + \else\ifnum\appendixno=`E E% + \else\ifnum\appendixno=`F F% + \else\ifnum\appendixno=`G G% + \else\ifnum\appendixno=`H H% + \else\ifnum\appendixno=`I I% + \else\ifnum\appendixno=`J J% + \else\ifnum\appendixno=`K K% + \else\ifnum\appendixno=`L L% + \else\ifnum\appendixno=`M M% + \else\ifnum\appendixno=`N N% + \else\ifnum\appendixno=`O O% + \else\ifnum\appendixno=`P P% + \else\ifnum\appendixno=`Q Q% + \else\ifnum\appendixno=`R R% + \else\ifnum\appendixno=`S S% + \else\ifnum\appendixno=`T T% + \else\ifnum\appendixno=`U U% + \else\ifnum\appendixno=`V V% + \else\ifnum\appendixno=`W W% + \else\ifnum\appendixno=`X X% + \else\ifnum\appendixno=`Y Y% + \else\ifnum\appendixno=`Z Z% + % The \the is necessary, despite appearances, because \appendixletter is + % expanded while writing the .toc file. \char\appendixno is not + % expandable, thus it is written literally, thus all appendixes come out + % with the same letter (or @) in the toc without it. + \else\char\the\appendixno + \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi + \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} + +% Each @chapter defines this as the name of the chapter. +% page headings and footings can use it. @section does likewise. +\def\thischapter{} +\def\thissection{} + +\newcount\absseclevel % used to calculate proper heading level +\newcount\secbase\secbase=0 % @raise/lowersections modify this count + +% @raisesections: treat @section as chapter, @subsection as section, etc. +\def\raisesections{\global\advance\secbase by -1} +\let\up=\raisesections % original BFox name + +% @lowersections: treat @chapter as section, @section as subsection, etc. +\def\lowersections{\global\advance\secbase by 1} +\let\down=\lowersections % original BFox name + +% Choose a numbered-heading macro +% #1 is heading level if unmodified by @raisesections or @lowersections +% #2 is text for heading +\def\numhead#1#2{\absseclevel=\secbase\advance\absseclevel by #1 +\ifcase\absseclevel + \chapterzzz{#2} +\or + \seczzz{#2} +\or + \numberedsubseczzz{#2} +\or + \numberedsubsubseczzz{#2} +\else + \ifnum \absseclevel<0 + \chapterzzz{#2} + \else + \numberedsubsubseczzz{#2} + \fi +\fi +} + +% like \numhead, but chooses appendix heading levels +\def\apphead#1#2{\absseclevel=\secbase\advance\absseclevel by #1 +\ifcase\absseclevel + \appendixzzz{#2} +\or + \appendixsectionzzz{#2} +\or + \appendixsubseczzz{#2} +\or + \appendixsubsubseczzz{#2} +\else + \ifnum \absseclevel<0 + \appendixzzz{#2} + \else + \appendixsubsubseczzz{#2} + \fi +\fi +} + +% like \numhead, but chooses numberless heading levels +\def\unnmhead#1#2{\absseclevel=\secbase\advance\absseclevel by #1 +\ifcase\absseclevel + \unnumberedzzz{#2} +\or + \unnumberedseczzz{#2} +\or + \unnumberedsubseczzz{#2} +\or + \unnumberedsubsubseczzz{#2} +\else + \ifnum \absseclevel<0 + \unnumberedzzz{#2} + \else + \unnumberedsubsubseczzz{#2} + \fi +\fi +} + +% @chapter, @appendix, @unnumbered. +\def\thischaptername{No Chapter Title} +\outer\def\chapter{\parsearg\chapteryyy} +\def\chapteryyy #1{\numhead0{#1}} % normally numhead0 calls chapterzzz +\def\chapterzzz #1{% + \secno=0 \subsecno=0 \subsubsecno=0 + \global\advance \chapno by 1 \message{\putwordChapter\space \the\chapno}% + \chapmacro {#1}{\the\chapno}% + \gdef\thissection{#1}% + \gdef\thischaptername{#1}% + % We don't substitute the actual chapter name into \thischapter + % because we don't want its macros evaluated now. + \xdef\thischapter{\putwordChapter{} \the\chapno: \noexpand\thischaptername}% + \writetocentry{chap}{#1}{{\the\chapno}} + \donoderef + \global\let\section = \numberedsec + \global\let\subsection = \numberedsubsec + \global\let\subsubsection = \numberedsubsubsec +} + +% we use \chapno to avoid indenting back +\def\appendixbox#1{% + \setbox0 = \hbox{\putwordAppendix{} \the\chapno}% + \hbox to \wd0{#1\hss}} + +\outer\def\appendix{\parsearg\appendixyyy} +\def\appendixyyy #1{\apphead0{#1}} % normally apphead0 calls appendixzzz +\def\appendixzzz #1{% + \secno=0 \subsecno=0 \subsubsecno=0 + \global\advance \appendixno by 1 + \message{\putwordAppendix\space \appendixletter}% + \chapmacro {#1}{\appendixbox{\putwordAppendix{} \appendixletter}}% + \gdef\thissection{#1}% + \gdef\thischaptername{#1}% + \xdef\thischapter{\putwordAppendix{} \appendixletter: \noexpand\thischaptername}% + \writetocentry{appendix}{#1}{{\appendixletter}} + \appendixnoderef + \global\let\section = \appendixsec + \global\let\subsection = \appendixsubsec + \global\let\subsubsection = \appendixsubsubsec +} + +% @centerchap is like @unnumbered, but the heading is centered. +\outer\def\centerchap{\parsearg\centerchapyyy} +\def\centerchapyyy #1{{\let\unnumbchapmacro=\centerchapmacro \unnumberedyyy{#1}}} + +% @top is like @unnumbered. +\outer\def\top{\parsearg\unnumberedyyy} + +\outer\def\unnumbered{\parsearg\unnumberedyyy} +\def\unnumberedyyy #1{\unnmhead0{#1}} % normally unnmhead0 calls unnumberedzzz +\def\unnumberedzzz #1{% + \secno=0 \subsecno=0 \subsubsecno=0 + % + % This used to be simply \message{#1}, but TeX fully expands the + % argument to \message. Therefore, if #1 contained @-commands, TeX + % expanded them. For example, in `@unnumbered The @cite{Book}', TeX + % expanded @cite (which turns out to cause errors because \cite is meant + % to be executed, not expanded). + % + % Anyway, we don't want the fully-expanded definition of @cite to appear + % as a result of the \message, we just want `@cite' itself. We use + % \the to achieve this: TeX expands \the only once, + % simply yielding the contents of . (We also do this for + % the toc entries.) + \toks0 = {#1}\message{(\the\toks0)}% + % + \unnumbchapmacro {#1}% + \gdef\thischapter{#1}\gdef\thissection{#1}% + \writetocentry{unnumbchap}{#1}{{\the\chapno}} + \unnumbnoderef + \global\let\section = \unnumberedsec + \global\let\subsection = \unnumberedsubsec + \global\let\subsubsection = \unnumberedsubsubsec +} + +% Sections. +\outer\def\numberedsec{\parsearg\secyyy} +\def\secyyy #1{\numhead1{#1}} % normally calls seczzz +\def\seczzz #1{% + \subsecno=0 \subsubsecno=0 \global\advance \secno by 1 % + \gdef\thissection{#1}\secheading {#1}{\the\chapno}{\the\secno}% + \writetocentry{sec}{#1}{{\the\chapno}{\the\secno}} + \donoderef + \nobreak +} + +\outer\def\appendixsection{\parsearg\appendixsecyyy} +\outer\def\appendixsec{\parsearg\appendixsecyyy} +\def\appendixsecyyy #1{\apphead1{#1}} % normally calls appendixsectionzzz +\def\appendixsectionzzz #1{% + \subsecno=0 \subsubsecno=0 \global\advance \secno by 1 % + \gdef\thissection{#1}\secheading {#1}{\appendixletter}{\the\secno}% + \writetocentry{sec}{#1}{{\appendixletter}{\the\secno}} + \appendixnoderef + \nobreak +} + +\outer\def\unnumberedsec{\parsearg\unnumberedsecyyy} +\def\unnumberedsecyyy #1{\unnmhead1{#1}} % normally calls unnumberedseczzz +\def\unnumberedseczzz #1{% + \plainsecheading {#1}\gdef\thissection{#1}% + \writetocentry{unnumbsec}{#1}{{\the\chapno}{\the\secno}} + \unnumbnoderef + \nobreak +} + +% Subsections. +\outer\def\numberedsubsec{\parsearg\numberedsubsecyyy} +\def\numberedsubsecyyy #1{\numhead2{#1}} % normally calls numberedsubseczzz +\def\numberedsubseczzz #1{% + \gdef\thissection{#1}\subsubsecno=0 \global\advance \subsecno by 1 % + \subsecheading {#1}{\the\chapno}{\the\secno}{\the\subsecno}% + \writetocentry{subsec}{#1}{{\the\chapno}{\the\secno}{\the\subsecno}} + \donoderef + \nobreak +} + +\outer\def\appendixsubsec{\parsearg\appendixsubsecyyy} +\def\appendixsubsecyyy #1{\apphead2{#1}} % normally calls appendixsubseczzz +\def\appendixsubseczzz #1{% + \gdef\thissection{#1}\subsubsecno=0 \global\advance \subsecno by 1 % + \subsecheading {#1}{\appendixletter}{\the\secno}{\the\subsecno}% + \writetocentry{subsec}{#1}{{\appendixletter}{\the\secno}{\the\subsecno}} + \appendixnoderef + \nobreak +} + +\outer\def\unnumberedsubsec{\parsearg\unnumberedsubsecyyy} +\def\unnumberedsubsecyyy #1{\unnmhead2{#1}} %normally calls unnumberedsubseczzz +\def\unnumberedsubseczzz #1{% + \plainsubsecheading {#1}\gdef\thissection{#1}% + \writetocentry{unnumbsubsec}{#1}{{\the\chapno}{\the\secno}{\the\subsecno}} + \unnumbnoderef + \nobreak +} + +% Subsubsections. +\outer\def\numberedsubsubsec{\parsearg\numberedsubsubsecyyy} +\def\numberedsubsubsecyyy #1{\numhead3{#1}} % normally numberedsubsubseczzz +\def\numberedsubsubseczzz #1{% + \gdef\thissection{#1}\global\advance \subsubsecno by 1 % + \subsubsecheading {#1} + {\the\chapno}{\the\secno}{\the\subsecno}{\the\subsubsecno}% + \writetocentry{subsubsec}{#1}{{\the\chapno}{\the\secno}{\the\subsecno}{\the\subsubsecno}} + \donoderef + \nobreak +} + +\outer\def\appendixsubsubsec{\parsearg\appendixsubsubsecyyy} +\def\appendixsubsubsecyyy #1{\apphead3{#1}} % normally appendixsubsubseczzz +\def\appendixsubsubseczzz #1{% + \gdef\thissection{#1}\global\advance \subsubsecno by 1 % + \subsubsecheading {#1} + {\appendixletter}{\the\secno}{\the\subsecno}{\the\subsubsecno}% + \writetocentry{subsubsec}{#1}{{\appendixletter}{\the\secno}{\the\subsecno}{\the\subsubsecno}} + \appendixnoderef + \nobreak +} + +\outer\def\unnumberedsubsubsec{\parsearg\unnumberedsubsubsecyyy} +\def\unnumberedsubsubsecyyy #1{\unnmhead3{#1}} %normally unnumberedsubsubseczzz +\def\unnumberedsubsubseczzz #1{% + \plainsubsubsecheading {#1}\gdef\thissection{#1}% + \writetocentry{unnumbsubsubsec}{#1}{{\the\chapno}{\the\secno}{\the\subsecno}{\the\subsubsecno}} + \unnumbnoderef + \nobreak +} + +% These are variants which are not "outer", so they can appear in @ifinfo. +% Actually, they should now be obsolete; ordinary section commands should work. +\def\infotop{\parsearg\unnumberedzzz} +\def\infounnumbered{\parsearg\unnumberedzzz} +\def\infounnumberedsec{\parsearg\unnumberedseczzz} +\def\infounnumberedsubsec{\parsearg\unnumberedsubseczzz} +\def\infounnumberedsubsubsec{\parsearg\unnumberedsubsubseczzz} + +\def\infoappendix{\parsearg\appendixzzz} +\def\infoappendixsec{\parsearg\appendixseczzz} +\def\infoappendixsubsec{\parsearg\appendixsubseczzz} +\def\infoappendixsubsubsec{\parsearg\appendixsubsubseczzz} + +\def\infochapter{\parsearg\chapterzzz} +\def\infosection{\parsearg\sectionzzz} +\def\infosubsection{\parsearg\subsectionzzz} +\def\infosubsubsection{\parsearg\subsubsectionzzz} + +% These macros control what the section commands do, according +% to what kind of chapter we are in (ordinary, appendix, or unnumbered). +% Define them by default for a numbered chapter. +\global\let\section = \numberedsec +\global\let\subsection = \numberedsubsec +\global\let\subsubsection = \numberedsubsubsec + +% Define @majorheading, @heading and @subheading + +% NOTE on use of \vbox for chapter headings, section headings, and such: +% 1) We use \vbox rather than the earlier \line to permit +% overlong headings to fold. +% 2) \hyphenpenalty is set to 10000 because hyphenation in a +% heading is obnoxious; this forbids it. +% 3) Likewise, headings look best if no \parindent is used, and +% if justification is not attempted. Hence \raggedright. + + +\def\majorheading{\parsearg\majorheadingzzz} +\def\majorheadingzzz #1{% + {\advance\chapheadingskip by 10pt \chapbreak }% + {\chapfonts \vbox{\hyphenpenalty=10000\tolerance=5000 + \parindent=0pt\raggedright + \rm #1\hfill}}\bigskip \par\penalty 200} + +\def\chapheading{\parsearg\chapheadingzzz} +\def\chapheadingzzz #1{\chapbreak % + {\chapfonts \vbox{\hyphenpenalty=10000\tolerance=5000 + \parindent=0pt\raggedright + \rm #1\hfill}}\bigskip \par\penalty 200} + +% @heading, @subheading, @subsubheading. +\def\heading{\parsearg\plainsecheading} +\def\subheading{\parsearg\plainsubsecheading} +\def\subsubheading{\parsearg\plainsubsubsecheading} + +% These macros generate a chapter, section, etc. heading only +% (including whitespace, linebreaking, etc. around it), +% given all the information in convenient, parsed form. + +%%% Args are the skip and penalty (usually negative) +\def\dobreak#1#2{\par\ifdim\lastskip<#1\removelastskip\penalty#2\vskip#1\fi} + +\def\setchapterstyle #1 {\csname CHAPF#1\endcsname} + +%%% Define plain chapter starts, and page on/off switching for it +% Parameter controlling skip before chapter headings (if needed) + +\newskip\chapheadingskip + +\def\chapbreak{\dobreak \chapheadingskip {-4000}} +\def\chappager{\par\vfill\supereject} +\def\chapoddpage{\chappager \ifodd\pageno \else \hbox to 0pt{} \chappager\fi} + +\def\setchapternewpage #1 {\csname CHAPPAG#1\endcsname} + +\def\CHAPPAGoff{% +\global\let\contentsalignmacro = \chappager +\global\let\pchapsepmacro=\chapbreak +\global\let\pagealignmacro=\chappager} + +\def\CHAPPAGon{% +\global\let\contentsalignmacro = \chappager +\global\let\pchapsepmacro=\chappager +\global\let\pagealignmacro=\chappager +\global\def\HEADINGSon{\HEADINGSsingle}} + +\def\CHAPPAGodd{ +\global\let\contentsalignmacro = \chapoddpage +\global\let\pchapsepmacro=\chapoddpage +\global\let\pagealignmacro=\chapoddpage +\global\def\HEADINGSon{\HEADINGSdouble}} + +\CHAPPAGon + +\def\CHAPFplain{ +\global\let\chapmacro=\chfplain +\global\let\unnumbchapmacro=\unnchfplain +\global\let\centerchapmacro=\centerchfplain} + +% Plain chapter opening. +% #1 is the text, #2 the chapter number or empty if unnumbered. +\def\chfplain#1#2{% + \pchapsepmacro + {% + \chapfonts \rm + \def\chapnum{#2}% + \setbox0 = \hbox{#2\ifx\chapnum\empty\else\enspace\fi}% + \vbox{\hyphenpenalty=10000 \tolerance=5000 \parindent=0pt \raggedright + \hangindent = \wd0 \centerparametersmaybe + \unhbox0 #1\par}% + }% + \nobreak\bigskip % no page break after a chapter title + \nobreak +} + +% Plain opening for unnumbered. +\def\unnchfplain#1{\chfplain{#1}{}} + +% @centerchap -- centered and unnumbered. +\let\centerparametersmaybe = \relax +\def\centerchfplain#1{{% + \def\centerparametersmaybe{% + \advance\rightskip by 3\rightskip + \leftskip = \rightskip + \parfillskip = 0pt + }% + \chfplain{#1}{}% +}} + +\CHAPFplain % The default + +\def\unnchfopen #1{% +\chapoddpage {\chapfonts \vbox{\hyphenpenalty=10000\tolerance=5000 + \parindent=0pt\raggedright + \rm #1\hfill}}\bigskip \par\nobreak +} + +\def\chfopen #1#2{\chapoddpage {\chapfonts +\vbox to 3in{\vfil \hbox to\hsize{\hfil #2} \hbox to\hsize{\hfil #1} \vfil}}% +\par\penalty 5000 % +} + +\def\centerchfopen #1{% +\chapoddpage {\chapfonts \vbox{\hyphenpenalty=10000\tolerance=5000 + \parindent=0pt + \hfill {\rm #1}\hfill}}\bigskip \par\nobreak +} + +\def\CHAPFopen{ +\global\let\chapmacro=\chfopen +\global\let\unnumbchapmacro=\unnchfopen +\global\let\centerchapmacro=\centerchfopen} + + +% Section titles. +\newskip\secheadingskip +\def\secheadingbreak{\dobreak \secheadingskip {-1000}} +\def\secheading#1#2#3{\sectionheading{sec}{#2.#3}{#1}} +\def\plainsecheading#1{\sectionheading{sec}{}{#1}} + +% Subsection titles. +\newskip \subsecheadingskip +\def\subsecheadingbreak{\dobreak \subsecheadingskip {-500}} +\def\subsecheading#1#2#3#4{\sectionheading{subsec}{#2.#3.#4}{#1}} +\def\plainsubsecheading#1{\sectionheading{subsec}{}{#1}} + +% Subsubsection titles. +\let\subsubsecheadingskip = \subsecheadingskip +\let\subsubsecheadingbreak = \subsecheadingbreak +\def\subsubsecheading#1#2#3#4#5{\sectionheading{subsubsec}{#2.#3.#4.#5}{#1}} +\def\plainsubsubsecheading#1{\sectionheading{subsubsec}{}{#1}} + + +% Print any size section title. +% +% #1 is the section type (sec/subsec/subsubsec), #2 is the section +% number (maybe empty), #3 the text. +\def\sectionheading#1#2#3{% + {% + \expandafter\advance\csname #1headingskip\endcsname by \parskip + \csname #1headingbreak\endcsname + }% + {% + % Switch to the right set of fonts. + \csname #1fonts\endcsname \rm + % + % Only insert the separating space if we have a section number. + \def\secnum{#2}% + \setbox0 = \hbox{#2\ifx\secnum\empty\else\enspace\fi}% + % + \vbox{\hyphenpenalty=10000 \tolerance=5000 \parindent=0pt \raggedright + \hangindent = \wd0 % zero if no section number + \unhbox0 #3}% + }% + % Add extra space after the heading -- either a line space or a + % paragraph space, whichever is more. (Some people like to set + % \parskip to large values for some reason.) Don't allow stretch, though. + \nobreak + \ifdim\parskip>\normalbaselineskip + \kern\parskip + \else + \kern\normalbaselineskip + \fi + \nobreak +} + + +\message{toc,} +% Table of contents. +\newwrite\tocfile + +% Write an entry to the toc file, opening it if necessary. +% Called from @chapter, etc. We supply {\folio} at the end of the +% argument, which will end up as the last argument to the \...entry macro. +% +% Usage: \writetocentry{chap}{The Name of The Game}{{\the\chapno}} +% We open the .toc file for writing here instead of at @setfilename (or +% any other fixed time) so that @contents can be anywhere in the document. +% +\newif\iftocfileopened +\def\writetocentry#1#2#3{% + \iftocfileopened\else + \immediate\openout\tocfile = \jobname.toc + \global\tocfileopenedtrue + \fi + % + \iflinks + \toks0 = {#2}% + \edef\temp{\write\tocfile{\realbackslash #1entry{\the\toks0}#3{\folio}}}% + \temp + \fi + % + % Tell \shipout to create a page destination if we're doing pdf, which + % will be the target of the links in the table of contents. We can't + % just do it on every page because the title pages are numbered 1 and + % 2 (the page numbers aren't printed), and so are the first two pages + % of the document. Thus, we'd have two destinations named `1', and + % two named `2'. + \ifpdf \pdfmakepagedesttrue \fi +} + +\newskip\contentsrightmargin \contentsrightmargin=1in +\newcount\savepageno +\newcount\lastnegativepageno \lastnegativepageno = -1 + +% Finish up the main text and prepare to read what we've written +% to \tocfile. +% +\def\startcontents#1{% + % If @setchapternewpage on, and @headings double, the contents should + % start on an odd page, unlike chapters. Thus, we maintain + % \contentsalignmacro in parallel with \pagealignmacro. + % From: Torbjorn Granlund + \contentsalignmacro + \immediate\closeout\tocfile + % + % Don't need to put `Contents' or `Short Contents' in the headline. + % It is abundantly clear what they are. + \unnumbchapmacro{#1}\def\thischapter{}% + \savepageno = \pageno + \begingroup % Set up to handle contents files properly. + \catcode`\\=0 \catcode`\{=1 \catcode`\}=2 \catcode`\@=11 + % We can't do this, because then an actual ^ in a section + % title fails, e.g., @chapter ^ -- exponentiation. --karl, 9jul97. + %\catcode`\^=7 % to see ^^e4 as \"a etc. juha@piuha.ydi.vtt.fi + \raggedbottom % Worry more about breakpoints than the bottom. + \advance\hsize by -\contentsrightmargin % Don't use the full line length. + % + % Roman numerals for page numbers. + \ifnum \pageno>0 \global\pageno = \lastnegativepageno \fi +} + + +% Normal (long) toc. +\def\contents{% + \startcontents{\putwordTOC}% + \openin 1 \jobname.toc + \ifeof 1 \else + \closein 1 + \input \jobname.toc + \fi + \vfill \eject + \contentsalignmacro % in case @setchapternewpage odd is in effect + \pdfmakeoutlines + \endgroup + \lastnegativepageno = \pageno + \global\pageno = \savepageno +} + +% And just the chapters. +\def\summarycontents{% + \startcontents{\putwordShortTOC}% + % + \let\chapentry = \shortchapentry + \let\appendixentry = \shortappendixentry + \let\unnumbchapentry = \shortunnumberedentry + % We want a true roman here for the page numbers. + \secfonts + \let\rm=\shortcontrm \let\bf=\shortcontbf + \let\sl=\shortcontsl \let\tt=\shortconttt + \rm + \hyphenpenalty = 10000 + \advance\baselineskip by 1pt % Open it up a little. + \def\secentry ##1##2##3##4{} + \def\subsecentry ##1##2##3##4##5{} + \def\subsubsecentry ##1##2##3##4##5##6{} + \let\unnumbsecentry = \secentry + \let\unnumbsubsecentry = \subsecentry + \let\unnumbsubsubsecentry = \subsubsecentry + \openin 1 \jobname.toc + \ifeof 1 \else + \closein 1 + \input \jobname.toc + \fi + \vfill \eject + \contentsalignmacro % in case @setchapternewpage odd is in effect + \endgroup + \lastnegativepageno = \pageno + \global\pageno = \savepageno +} +\let\shortcontents = \summarycontents + +\ifpdf + \pdfcatalog{/PageMode /UseOutlines}% +\fi + +% These macros generate individual entries in the table of contents. +% The first argument is the chapter or section name. +% The last argument is the page number. +% The arguments in between are the chapter number, section number, ... + +% Chapters, in the main contents. +\def\chapentry#1#2#3{\dochapentry{#2\labelspace#1}{#3}} +% +% Chapters, in the short toc. +% See comments in \dochapentry re vbox and related settings. +\def\shortchapentry#1#2#3{% + \tocentry{\shortchaplabel{#2}\labelspace #1}{\doshortpageno\bgroup#3\egroup}% +} + +% Appendices, in the main contents. +\def\appendixentry#1#2#3{% + \dochapentry{\appendixbox{\putwordAppendix{} #2}\labelspace#1}{#3}} +% +% Appendices, in the short toc. +\let\shortappendixentry = \shortchapentry + +% Typeset the label for a chapter or appendix for the short contents. +% The arg is, e.g., `Appendix A' for an appendix, or `3' for a chapter. +% We could simplify the code here by writing out an \appendixentry +% command in the toc file for appendices, instead of using \chapentry +% for both, but it doesn't seem worth it. +% +\newdimen\shortappendixwidth +% +\def\shortchaplabel#1{% + % This space should be enough, since a single number is .5em, and the + % widest letter (M) is 1em, at least in the Computer Modern fonts. + % But use \hss just in case. + % (This space doesn't include the extra space that gets added after + % the label; that gets put in by \shortchapentry above.) + \dimen0 = 1em + \hbox to \dimen0{#1\hss}% +} + +% Unnumbered chapters. +\def\unnumbchapentry#1#2#3{\dochapentry{#1}{#3}} +\def\shortunnumberedentry#1#2#3{\tocentry{#1}{\doshortpageno\bgroup#3\egroup}} + +% Sections. +\def\secentry#1#2#3#4{\dosecentry{#2.#3\labelspace#1}{#4}} +\def\unnumbsecentry#1#2#3#4{\dosecentry{#1}{#4}} + +% Subsections. +\def\subsecentry#1#2#3#4#5{\dosubsecentry{#2.#3.#4\labelspace#1}{#5}} +\def\unnumbsubsecentry#1#2#3#4#5{\dosubsecentry{#1}{#5}} + +% And subsubsections. +\def\subsubsecentry#1#2#3#4#5#6{% + \dosubsubsecentry{#2.#3.#4.#5\labelspace#1}{#6}} +\def\unnumbsubsubsecentry#1#2#3#4#5#6{\dosubsubsecentry{#1}{#6}} + +% This parameter controls the indentation of the various levels. +\newdimen\tocindent \tocindent = 3pc + +% Now for the actual typesetting. In all these, #1 is the text and #2 is the +% page number. +% +% If the toc has to be broken over pages, we want it to be at chapters +% if at all possible; hence the \penalty. +\def\dochapentry#1#2{% + \penalty-300 \vskip1\baselineskip plus.33\baselineskip minus.25\baselineskip + \begingroup + \chapentryfonts + \tocentry{#1}{\dopageno\bgroup#2\egroup}% + \endgroup + \nobreak\vskip .25\baselineskip plus.1\baselineskip +} + +\def\dosecentry#1#2{\begingroup + \secentryfonts \leftskip=\tocindent + \tocentry{#1}{\dopageno\bgroup#2\egroup}% +\endgroup} + +\def\dosubsecentry#1#2{\begingroup + \subsecentryfonts \leftskip=2\tocindent + \tocentry{#1}{\dopageno\bgroup#2\egroup}% +\endgroup} + +\def\dosubsubsecentry#1#2{\begingroup + \subsubsecentryfonts \leftskip=3\tocindent + \tocentry{#1}{\dopageno\bgroup#2\egroup}% +\endgroup} + +% Final typesetting of a toc entry; we use the same \entry macro as for +% the index entries, but we want to suppress hyphenation here. (We +% can't do that in the \entry macro, since index entries might consist +% of hyphenated-identifiers-that-do-not-fit-on-a-line-and-nothing-else.) +\def\tocentry#1#2{\begingroup + \vskip 0pt plus1pt % allow a little stretch for the sake of nice page breaks + % Do not use \turnoffactive in these arguments. Since the toc is + % typeset in cmr, characters such as _ would come out wrong; we + % have to do the usual translation tricks. + \entry{#1}{#2}% +\endgroup} + +% Space between chapter (or whatever) number and the title. +\def\labelspace{\hskip1em \relax} + +\def\dopageno#1{{\rm #1}} +\def\doshortpageno#1{{\rm #1}} + +\def\chapentryfonts{\secfonts \rm} +\def\secentryfonts{\textfonts} +\let\subsecentryfonts = \textfonts +\let\subsubsecentryfonts = \textfonts + + +\message{environments,} +% @foo ... @end foo. + +% @point{}, @result{}, @expansion{}, @print{}, @equiv{}. +% +% Since these characters are used in examples, it should be an even number of +% \tt widths. Each \tt character is 1en, so two makes it 1em. +% +\def\point{$\star$} +\def\result{\leavevmode\raise.15ex\hbox to 1em{\hfil$\Rightarrow$\hfil}} +\def\expansion{\leavevmode\raise.1ex\hbox to 1em{\hfil$\mapsto$\hfil}} +\def\print{\leavevmode\lower.1ex\hbox to 1em{\hfil$\dashv$\hfil}} +\def\equiv{\leavevmode\lower.1ex\hbox to 1em{\hfil$\ptexequiv$\hfil}} + +% The @error{} command. +% Adapted from the TeXbook's \boxit. +% +\newbox\errorbox +% +{\tentt \global\dimen0 = 3em}% Width of the box. +\dimen2 = .55pt % Thickness of rules +% The text. (`r' is open on the right, `e' somewhat less so on the left.) +\setbox0 = \hbox{\kern-.75pt \tensf error\kern-1.5pt} +% +\global\setbox\errorbox=\hbox to \dimen0{\hfil + \hsize = \dimen0 \advance\hsize by -5.8pt % Space to left+right. + \advance\hsize by -2\dimen2 % Rules. + \vbox{ + \hrule height\dimen2 + \hbox{\vrule width\dimen2 \kern3pt % Space to left of text. + \vtop{\kern2.4pt \box0 \kern2.4pt}% Space above/below. + \kern3pt\vrule width\dimen2}% Space to right. + \hrule height\dimen2} + \hfil} +% +\def\error{\leavevmode\lower.7ex\copy\errorbox} + +% @tex ... @end tex escapes into raw Tex temporarily. +% One exception: @ is still an escape character, so that @end tex works. +% But \@ or @@ will get a plain tex @ character. + +\def\tex{\begingroup + \catcode `\\=0 \catcode `\{=1 \catcode `\}=2 + \catcode `\$=3 \catcode `\&=4 \catcode `\#=6 + \catcode `\^=7 \catcode `\_=8 \catcode `\~=\active \let~=\tie + \catcode `\%=14 + \catcode `\+=\other + \catcode `\"=\other + \catcode `\==\other + \catcode `\|=\other + \catcode `\<=\other + \catcode `\>=\other + \escapechar=`\\ + % + \let\b=\ptexb + \let\bullet=\ptexbullet + \let\c=\ptexc + \let\,=\ptexcomma + \let\.=\ptexdot + \let\dots=\ptexdots + \let\equiv=\ptexequiv + \let\!=\ptexexclam + \let\i=\ptexi + \let\{=\ptexlbrace + \let\+=\tabalign + \let\}=\ptexrbrace + \let\/=\ptexslash + \let\*=\ptexstar + \let\t=\ptext + % + \def\endldots{\mathinner{\ldots\ldots\ldots\ldots}}% + \def\enddots{\relax\ifmmode\endldots\else$\mathsurround=0pt \endldots\,$\fi}% + \def\@{@}% +\let\Etex=\endgroup} + +% Define @lisp ... @end lisp. +% @lisp does a \begingroup so it can rebind things, +% including the definition of @end lisp (which normally is erroneous). + +% Amount to narrow the margins by for @lisp. +\newskip\lispnarrowing \lispnarrowing=0.4in + +% This is the definition that ^^M gets inside @lisp, @example, and other +% such environments. \null is better than a space, since it doesn't +% have any width. +\def\lisppar{\null\endgraf} + +% Make each space character in the input produce a normal interword +% space in the output. Don't allow a line break at this space, as this +% is used only in environments like @example, where each line of input +% should produce a line of output anyway. +% +{\obeyspaces % +\gdef\sepspaces{\obeyspaces\let =\tie}} + +% Define \obeyedspace to be our active space, whatever it is. This is +% for use in \parsearg. +{\sepspaces% +\global\let\obeyedspace= } + +% This space is always present above and below environments. +\newskip\envskipamount \envskipamount = 0pt + +% Make spacing and below environment symmetrical. We use \parskip here +% to help in doing that, since in @example-like environments \parskip +% is reset to zero; thus the \afterenvbreak inserts no space -- but the +% start of the next paragraph will insert \parskip. +% +\def\aboveenvbreak{{% + % =10000 instead of <10000 because of a special case in \itemzzz, q.v. + \ifnum \lastpenalty=10000 \else + \advance\envskipamount by \parskip + \endgraf + \ifdim\lastskip<\envskipamount + \removelastskip + % it's not a good place to break if the last penalty was \nobreak + % or better ... + \ifnum\lastpenalty>10000 \else \penalty-50 \fi + \vskip\envskipamount + \fi + \fi +}} + +\let\afterenvbreak = \aboveenvbreak + +% \nonarrowing is a flag. If "set", @lisp etc don't narrow margins. +\let\nonarrowing=\relax + +% @cartouche ... @end cartouche: draw rectangle w/rounded corners around +% environment contents. +\font\circle=lcircle10 +\newdimen\circthick +\newdimen\cartouter\newdimen\cartinner +\newskip\normbskip\newskip\normpskip\newskip\normlskip +\circthick=\fontdimen8\circle +% +\def\ctl{{\circle\char'013\hskip -6pt}}% 6pt from pl file: 1/2charwidth +\def\ctr{{\hskip 6pt\circle\char'010}} +\def\cbl{{\circle\char'012\hskip -6pt}} +\def\cbr{{\hskip 6pt\circle\char'011}} +\def\carttop{\hbox to \cartouter{\hskip\lskip + \ctl\leaders\hrule height\circthick\hfil\ctr + \hskip\rskip}} +\def\cartbot{\hbox to \cartouter{\hskip\lskip + \cbl\leaders\hrule height\circthick\hfil\cbr + \hskip\rskip}} +% +\newskip\lskip\newskip\rskip + +\def\cartouche{% +\par % can't be in the midst of a paragraph. +\begingroup + \lskip=\leftskip \rskip=\rightskip + \leftskip=0pt\rightskip=0pt %we want these *outside*. + \cartinner=\hsize \advance\cartinner by-\lskip + \advance\cartinner by-\rskip + \cartouter=\hsize + \advance\cartouter by 18.4pt % allow for 3pt kerns on either +% side, and for 6pt waste from +% each corner char, and rule thickness + \normbskip=\baselineskip \normpskip=\parskip \normlskip=\lineskip + % Flag to tell @lisp, etc., not to narrow margin. + \let\nonarrowing=\comment + \vbox\bgroup + \baselineskip=0pt\parskip=0pt\lineskip=0pt + \carttop + \hbox\bgroup + \hskip\lskip + \vrule\kern3pt + \vbox\bgroup + \hsize=\cartinner + \kern3pt + \begingroup + \baselineskip=\normbskip + \lineskip=\normlskip + \parskip=\normpskip + \vskip -\parskip +\def\Ecartouche{% + \endgroup + \kern3pt + \egroup + \kern3pt\vrule + \hskip\rskip + \egroup + \cartbot + \egroup +\endgroup +}} + + +% This macro is called at the beginning of all the @example variants, +% inside a group. +\def\nonfillstart{% + \aboveenvbreak + \inENV % This group ends at the end of the body + \hfuzz = 12pt % Don't be fussy + \sepspaces % Make spaces be word-separators rather than space tokens. + \let\par = \lisppar % don't ignore blank lines + \obeylines % each line of input is a line of output + \parskip = 0pt + \parindent = 0pt + \emergencystretch = 0pt % don't try to avoid overfull boxes + % @cartouche defines \nonarrowing to inhibit narrowing + % at next level down. + \ifx\nonarrowing\relax + \advance \leftskip by \lispnarrowing + \exdentamount=\lispnarrowing + \let\exdent=\nofillexdent + \let\nonarrowing=\relax + \fi +} + +% Define the \E... control sequence only if we are inside the particular +% environment, so the error checking in \end will work. +% +% To end an @example-like environment, we first end the paragraph (via +% \afterenvbreak's vertical glue), and then the group. That way we keep +% the zero \parskip that the environments set -- \parskip glue will be +% inserted at the beginning of the next paragraph in the document, after +% the environment. +% +\def\nonfillfinish{\afterenvbreak\endgroup} + +% @lisp: indented, narrowed, typewriter font. +\def\lisp{\begingroup + \nonfillstart + \let\Elisp = \nonfillfinish + \tt + \let\kbdfont = \kbdexamplefont % Allow @kbd to do something special. + \gobble % eat return +} + +% @example: Same as @lisp. +\def\example{\begingroup \def\Eexample{\nonfillfinish\endgroup}\lisp} + +% @smallexample and @smalllisp: use smaller fonts. +% Originally contributed by Pavel@xerox. +\def\smalllisp{\begingroup + \def\Esmalllisp{\nonfillfinish\endgroup}% + \def\Esmallexample{\nonfillfinish\endgroup}% + \smallexamplefonts + \lisp +} +\let\smallexample = \smalllisp + + +% @display: same as @lisp except keep current font. +% +\def\display{\begingroup + \nonfillstart + \let\Edisplay = \nonfillfinish + \gobble +} +% +% @smalldisplay: @display plus smaller fonts. +% +\def\smalldisplay{\begingroup + \def\Esmalldisplay{\nonfillfinish\endgroup}% + \smallexamplefonts \rm + \display +} + +% @format: same as @display except don't narrow margins. +% +\def\format{\begingroup + \let\nonarrowing = t + \nonfillstart + \let\Eformat = \nonfillfinish + \gobble +} +% +% @smallformat: @format plus smaller fonts. +% +\def\smallformat{\begingroup + \def\Esmallformat{\nonfillfinish\endgroup}% + \smallexamplefonts \rm + \format +} + +% @flushleft (same as @format). +% +\def\flushleft{\begingroup \def\Eflushleft{\nonfillfinish\endgroup}\format} + +% @flushright. +% +\def\flushright{\begingroup + \let\nonarrowing = t + \nonfillstart + \let\Eflushright = \nonfillfinish + \advance\leftskip by 0pt plus 1fill + \gobble +} + + +% @quotation does normal linebreaking (hence we can't use \nonfillstart) +% and narrows the margins. +% +\def\quotation{% + \begingroup\inENV %This group ends at the end of the @quotation body + {\parskip=0pt \aboveenvbreak}% because \aboveenvbreak inserts \parskip + \parindent=0pt + % We have retained a nonzero parskip for the environment, since we're + % doing normal filling. So to avoid extra space below the environment... + \def\Equotation{\parskip = 0pt \nonfillfinish}% + % + % @cartouche defines \nonarrowing to inhibit narrowing at next level down. + \ifx\nonarrowing\relax + \advance\leftskip by \lispnarrowing + \advance\rightskip by \lispnarrowing + \exdentamount = \lispnarrowing + \let\nonarrowing = \relax + \fi +} + + +% LaTeX-like @verbatim...@end verbatim and @verb{...} +% If we want to allow any as delimiter, +% we need the curly braces so that makeinfo sees the @verb command, eg: +% `@verbx...x' would look like the '@verbx' command. --janneke@gnu.org +% +% [Knuth]: Donald Ervin Knuth, 1996. The TeXbook. +% +% [Knuth] p.344; only we need to do the other characters Texinfo sets +% active too. Otherwise, they get lost as the first character on a +% verbatim line. +\def\dospecials{% + \do\ \do\\\do\{\do\}\do\$\do\&% + \do\#\do\^\do\^^K\do\_\do\^^A\do\%\do\~% + \do\<\do\>\do\|\do\@\do+\do\"% +} +% +% [Knuth] p. 380 +\def\uncatcodespecials{% + \def\do##1{\catcode`##1=12}\dospecials} +% +% [Knuth] pp. 380,381,391 +% Disable Spanish ligatures ?` and !` of \tt font +\begingroup + \catcode`\`=\active\gdef`{\relax\lq} +\endgroup +% +% Setup for the @verb command. +% +% Eight spaces for a tab +\begingroup + \catcode`\^^I=\active + \gdef\tabeightspaces{\catcode`\^^I=\active\def^^I{\ \ \ \ \ \ \ \ }} +\endgroup +% +\def\setupverb{% + \tt % easiest (and conventionally used) font for verbatim + \def\par{\leavevmode\endgraf}% + \catcode`\`=\active + \tabeightspaces + % Respect line breaks, + % print special symbols as themselves, and + % make each space count + % must do in this order: + \obeylines \uncatcodespecials \sepspaces +} + +% Setup for the @verbatim environment +% +% Real tab expansion +\newdimen\tabw \setbox0=\hbox{\tt\space} \tabw=8\wd0 % tab amount +% +\def\starttabbox{\setbox0=\hbox\bgroup} +\begingroup + \catcode`\^^I=\active + \gdef\tabexpand{% + \catcode`\^^I=\active + \def^^I{\leavevmode\egroup + \dimen0=\wd0 % the width so far, or since the previous tab + \divide\dimen0 by\tabw + \multiply\dimen0 by\tabw % compute previous multiple of \tabw + \advance\dimen0 by\tabw % advance to next multiple of \tabw + \wd0=\dimen0 \box0 \starttabbox + }% + } +\endgroup +\def\setupverbatim{% + % Easiest (and conventionally used) font for verbatim + \tt + \def\par{\leavevmode\egroup\box0\endgraf}% + \catcode`\`=\active + \tabexpand + % Respect line breaks, + % print special symbols as themselves, and + % make each space count + % must do in this order: + \obeylines \uncatcodespecials \sepspaces + \everypar{\starttabbox}% +} + +% Do the @verb magic: verbatim text is quoted by unique +% delimiter characters. Before first delimiter expect a +% right brace, after last delimiter expect closing brace: +% +% \def\doverb'{'#1'}'{#1} +% +% [Knuth] p. 382; only eat outer {} +\begingroup + \catcode`[=1\catcode`]=2\catcode`\{=12\catcode`\}=12 + \gdef\doverb{#1[\def\next##1#1}[##1\endgroup]\next] +\endgroup +% +\def\verb{\begingroup\setupverb\doverb} +% +% +% Do the @verbatim magic: define the macro \doverbatim so that +% the (first) argument ends when '@end verbatim' is reached, ie: +% +% \def\doverbatim#1@end verbatim{#1} +% +% For Texinfo it's a lot easier than for LaTeX, +% because texinfo's \verbatim doesn't stop at '\end{verbatim}': +% we need not redefine '\', '{' and '}'. +% +% Inspired by LaTeX's verbatim command set [latex.ltx] +%% Include LaTeX hack for completeness -- never know +%% \begingroup +%% \catcode`|=0 \catcode`[=1 +%% \catcode`]=2\catcode`\{=12\catcode`\}=12\catcode`\ =\active +%% \catcode`\\=12|gdef|doverbatim#1@end verbatim[ +%% #1|endgroup|def|Everbatim[]|end[verbatim]] +%% |endgroup +% +\begingroup + \catcode`\ =\active + \obeylines % + % ignore everything up to the first ^^M, that's the newline at the end + % of the @verbatim input line itself. Otherwise we get an extra blank + % line in the output. + \gdef\doverbatim#1^^M#2@end verbatim{#2\end{verbatim}}% +\endgroup +% +\def\verbatim{% + \def\Everbatim{\nonfillfinish\endgroup}% + \begingroup + \nonfillstart + \advance\leftskip by -\defbodyindent + \begingroup\setupverbatim\doverbatim +} + +% @verbatiminclude FILE - insert text of file in verbatim environment. +% +% Allow normal characters that we make active in the argument (a file name). +\def\verbatiminclude{% + \begingroup + \catcode`\\=\other + \catcode`~=\other + \catcode`^=\other + \catcode`_=\other + \catcode`|=\other + \catcode`<=\other + \catcode`>=\other + \catcode`+=\other + \parsearg\doverbatiminclude +} +\def\setupverbatiminclude{% + \begingroup + \nonfillstart + \advance\leftskip by -\defbodyindent + \begingroup\setupverbatim +} +% +\def\doverbatiminclude#1{% + % Restore active chars for included file. + \endgroup + \begingroup + \let\value=\expandablevalue + \def\thisfile{#1}% + \expandafter\expandafter\setupverbatiminclude\input\thisfile + \endgroup + \nonfillfinish + \endgroup +} + +% @copying ... @end copying. +% Save the text away for @insertcopying later. Many commands won't be +% allowed in this context, but that's ok. +% +% We save the uninterpreted tokens, rather than creating a box. +% Saving the text in a box would be much easier, but then all the +% typesetting commands (@smallbook, font changes, etc.) have to be done +% beforehand -- and a) we want @copying to be done first in the source +% file; b) letting users define the frontmatter in as flexible order as +% possible is very desirable. +% +\def\copying{\begingroup + % Define a command to swallow text until we reach `@end copying'. + % \ is the escape char in this texinfo.tex file, so it is the + % delimiter for the command; @ will be the escape char when we read + % it, but that doesn't matter. + \long\def\docopying##1\end copying{\gdef\copyingtext{##1}\enddocopying}% + % + % We must preserve ^^M's in the input file; see \insertcopying below. + \catcode`\^^M = \active + \docopying +} + +% What we do to finish off the copying text. +% +\def\enddocopying{\endgroup\ignorespaces} + +% @insertcopying. Here we must play games with ^^M's. On the one hand, +% we need them to delimit commands such as `@end quotation', so they +% must be active. On the other hand, we certainly don't want every +% end-of-line to be a \par, as would happen with the normal active +% definition of ^^M. On the third hand, two ^^M's in a row should still +% generate a \par. +% +% Our approach is to make ^^M insert a space and a penalty1 normally; +% then it can also check if \lastpenalty=1. If it does, then manually +% do \par. +% +% This messes up the normal definitions of @c[omment], so we redefine +% it. Similarly for @ignore. (These commands are used in the gcc +% manual for man page generation.) +% +% Seems pretty fragile, most line-oriented commands will presumably +% fail, but for the limited use of getting the copying text (which +% should be quite simple) inserted, we can hope it's ok. +% +{\catcode`\^^M=\active % +\gdef\insertcopying{\begingroup % + \parindent = 0pt % looks wrong on title page + \def^^M{% + \ifnum \lastpenalty=1 % + \par % + \else % + \space \penalty 1 % + \fi % + }% + % + % Fix @c[omment] for catcode 13 ^^M's. + \def\c##1^^M{\ignorespaces}% + \let\comment = \c % + % + % Don't bother jumping through all the hoops that \doignore does, it + % would be very hard since the catcodes are already set. + \long\def\ignore##1\end ignore{\ignorespaces}% + % + \copyingtext % +\endgroup}% +} + +\message{defuns,} +% @defun etc. + +% Allow user to change definition object font (\df) internally +\def\setdeffont#1 {\csname DEF#1\endcsname} + +\newskip\defbodyindent \defbodyindent=.4in +\newskip\defargsindent \defargsindent=50pt +\newskip\deflastargmargin \deflastargmargin=18pt + +\newcount\parencount + +% We want ()&[] to print specially on the defun line. +% +\def\activeparens{% + \catcode`\(=\active \catcode`\)=\active + \catcode`\&=\active + \catcode`\[=\active \catcode`\]=\active +} + +% Make control sequences which act like normal parenthesis chars. +\let\lparen = ( \let\rparen = ) + +{\activeparens % Now, smart parens don't turn on until &foo (see \amprm) + +% Be sure that we always have a definition for `(', etc. For example, +% if the fn name has parens in it, \boldbrax will not be in effect yet, +% so TeX would otherwise complain about undefined control sequence. +\global\let(=\lparen \global\let)=\rparen +\global\let[=\lbrack \global\let]=\rbrack + +\gdef\functionparens{\boldbrax\let&=\amprm\parencount=0 } +\gdef\boldbrax{\let(=\opnr\let)=\clnr\let[=\lbrb\let]=\rbrb} +% This is used to turn on special parens +% but make & act ordinary (given that it's active). +\gdef\boldbraxnoamp{\let(=\opnr\let)=\clnr\let[=\lbrb\let]=\rbrb\let&=\ampnr} + +% Definitions of (, ) and & used in args for functions. +% This is the definition of ( outside of all parentheses. +\gdef\oprm#1 {{\rm\char`\(}#1 \bf \let(=\opnested + \global\advance\parencount by 1 +} +% +% This is the definition of ( when already inside a level of parens. +\gdef\opnested{\char`\(\global\advance\parencount by 1 } +% +\gdef\clrm{% Print a paren in roman if it is taking us back to depth of 0. + % also in that case restore the outer-level definition of (. + \ifnum \parencount=1 {\rm \char `\)}\sl \let(=\oprm \else \char `\) \fi + \global\advance \parencount by -1 } +% If we encounter &foo, then turn on ()-hacking afterwards +\gdef\amprm#1 {{\rm\}\let(=\oprm \let)=\clrm\ } +% +\gdef\normalparens{\boldbrax\let&=\ampnr} +} % End of definition inside \activeparens +%% These parens (in \boldbrax) actually are a little bolder than the +%% contained text. This is especially needed for [ and ] +\def\opnr{{\sf\char`\(}\global\advance\parencount by 1 } +\def\clnr{{\sf\char`\)}\global\advance\parencount by -1 } +\let\ampnr = \& +\def\lbrb{{\bf\char`\[}} +\def\rbrb{{\bf\char`\]}} + +% Active &'s sneak into the index arguments, so make sure it's defined. +{ + \catcode`& = \active + \global\let& = \ampnr +} + +% \defname, which formats the name of the @def (not the args). +% #1 is the function name. +% #2 is the type of definition, such as "Function". +% +\def\defname#1#2{% + % How we'll output the type name. Putting it in brackets helps + % distinguish it from the body text that may end up on the next line + % just below it. + \ifempty{#2}% + \def\defnametype{}% + \else + \def\defnametype{[\rm #2]}% + \fi + % + % Get the values of \leftskip and \rightskip as they were outside the @def... + \dimen2=\leftskip + \advance\dimen2 by -\defbodyindent + % + % Figure out values for the paragraph shape. + \setbox0=\hbox{\hskip \deflastargmargin{\defnametype}}% + \dimen0=\hsize \advance \dimen0 by -\wd0 % compute size for first line + \dimen1=\hsize \advance \dimen1 by -\defargsindent % size for continuations + \parshape 2 0in \dimen0 \defargsindent \dimen1 + % + % Output arg 2 ("Function" or some such) but stuck inside a box of + % width 0 so it does not interfere with linebreaking. + \noindent + % + {% Adjust \hsize to exclude the ambient margins, + % so that \rightline will obey them. + \advance \hsize by -\dimen2 + \dimen3 = 0pt % was -1.25pc + \rlap{\rightline{\defnametype\kern\dimen3}}% + }% + % + % Allow all lines to be underfull without complaint: + \tolerance=10000 \hbadness=10000 + \advance\leftskip by -\defbodyindent + \exdentamount=\defbodyindent + {\df #1}\enskip % output function name + % \defunargs will be called next to output the arguments, if any. +} + +% Common pieces to start any @def... +% #1 is the \E... control sequence to end the definition (which we define). +% #2 is the \...x control sequence (which our caller defines). +% #3 is the control sequence to process the header, such as \defunheader. +% +\def\parsebodycommon#1#2#3{% + \begingroup\inENV + % If there are two @def commands in a row, we'll have a \nobreak, + % which is there to keep the function description together with its + % header. But if there's nothing but headers, we want to allow a + % break after all. Check for penalty 10002 (inserted by + % \defargscommonending) instead of 10000, since the sectioning + % commands insert a \penalty10000, and we don't want to allow a break + % between a section heading and a defun. + \ifnum\lastpenalty=10002 \penalty0 \fi + \medbreak + % + % Define the \E... end token that this defining construct specifies + % so that it will exit this group. + \def#1{\endgraf\endgroup\medbreak}% + % + \parindent=0in + \advance\leftskip by \defbodyindent + \exdentamount=\defbodyindent +} + +% Common part of the \...x definitions. +% +\def\defxbodycommon{% + % As with \parsebodycommon above, allow line break if we have multiple + % x headers in a row. It's not a great place, though. + \ifnum\lastpenalty=10000 \penalty1000 \fi + % + \begingroup\obeylines +} + +% Process body of @defun, @deffn, @defmac, etc. +% +\def\defparsebody#1#2#3{% + \parsebodycommon{#1}{#2}{#3}% + \def#2{\defxbodycommon \activeparens \spacesplit#3}% + \catcode\equalChar=\active + \begingroup\obeylines\activeparens + \spacesplit#3% +} + +% #1, #2, #3 are the common arguments (see \parsebodycommon above). +% #4, delimited by the space, is the class name. +% +\def\defmethparsebody#1#2#3#4 {% + \parsebodycommon{#1}{#2}{#3}% + \def#2##1 {\defxbodycommon \activeparens \spacesplit{#3{##1}}}% + \begingroup\obeylines\activeparens + % The \empty here prevents misinterpretation of a construct such as + % @deffn {whatever} {Enharmonic comma} + % See comments at \deftpparsebody, although in our case we don't have + % to remove the \empty afterwards, since it is empty. + \spacesplit{#3{#4}}\empty +} + +% Used for @deftypemethod and @deftypeivar. +% #1, #2, #3 are the common arguments (see \defparsebody). +% #4, delimited by a space, is the class name. +% #5 is the method's return type. +% +\def\deftypemethparsebody#1#2#3#4 #5 {% + \parsebodycommon{#1}{#2}{#3}% + \def#2##1 ##2 {\defxbodycommon \activeparens \spacesplit{#3{##1}{##2}}}% + \begingroup\obeylines\activeparens + \spacesplit{#3{#4}{#5}}% +} + +% Used for @deftypeop. The change from \deftypemethparsebody is an +% extra argument at the beginning which is the `category', instead of it +% being the hardwired string `Method' or `Instance Variable'. We have +% to account for this both in the \...x definition and in parsing the +% input at hand. Thus also need a control sequence (passed as #5) for +% the \E... definition to assign the category name to. +% +\def\deftypeopparsebody#1#2#3#4#5 #6 {% + \parsebodycommon{#1}{#2}{#3}% + \def#2##1 ##2 ##3 {\def#4{##1}% + \defxbodycommon \activeparens \spacesplit{#3{##2}{##3}}}% + \begingroup\obeylines\activeparens + \spacesplit{#3{#5}{#6}}% +} + +% For @defop. +\def\defopparsebody #1#2#3#4#5 {% + \parsebodycommon{#1}{#2}{#3}% + \def#2##1 ##2 {\def#4{##1}% + \defxbodycommon \activeparens \spacesplit{#3{##2}}}% + \begingroup\obeylines\activeparens + \spacesplit{#3{#5}}% +} + +% These parsing functions are similar to the preceding ones +% except that they do not make parens into active characters. +% These are used for "variables" since they have no arguments. +% +\def\defvarparsebody #1#2#3{% + \parsebodycommon{#1}{#2}{#3}% + \def#2{\defxbodycommon \spacesplit#3}% + \catcode\equalChar=\active + \begingroup\obeylines + \spacesplit#3% +} + +% @defopvar. +\def\defopvarparsebody #1#2#3#4#5 {% + \parsebodycommon{#1}{#2}{#3}% + \def#2##1 ##2 {\def#4{##1}% + \defxbodycommon \spacesplit{#3{##2}}}% + \begingroup\obeylines + \spacesplit{#3{#5}}% +} + +\def\defvrparsebody#1#2#3#4 {% + \parsebodycommon{#1}{#2}{#3}% + \def#2##1 {\defxbodycommon \spacesplit{#3{##1}}}% + \begingroup\obeylines + \spacesplit{#3{#4}}% +} + +% This loses on `@deftp {Data Type} {struct termios}' -- it thinks the +% type is just `struct', because we lose the braces in `{struct +% termios}' when \spacesplit reads its undelimited argument. Sigh. +% \let\deftpparsebody=\defvrparsebody +% +% So, to get around this, we put \empty in with the type name. That +% way, TeX won't find exactly `{...}' as an undelimited argument, and +% won't strip off the braces. +% +\def\deftpparsebody #1#2#3#4 {% + \parsebodycommon{#1}{#2}{#3}% + \def#2##1 {\defxbodycommon \spacesplit{#3{##1}}}% + \begingroup\obeylines + \spacesplit{\parsetpheaderline{#3{#4}}}\empty +} + +% Fine, but then we have to eventually remove the \empty *and* the +% braces (if any). That's what this does. +% +\def\removeemptybraces\empty#1\relax{#1} + +% After \spacesplit has done its work, this is called -- #1 is the final +% thing to call, #2 the type name (which starts with \empty), and #3 +% (which might be empty) the arguments. +% +\def\parsetpheaderline#1#2#3{% + #1{\removeemptybraces#2\relax}{#3}% +}% + +% Split up #2 (the rest of the input line) at the first space token. +% call #1 with two arguments: +% the first is all of #2 before the space token, +% the second is all of #2 after that space token. +% If #2 contains no space token, all of it is passed as the first arg +% and the second is passed as empty. +% +{\obeylines % + \gdef\spacesplit#1#2^^M{\endgroup\spacesplitx{#1}#2 \relax\spacesplitx}% + \long\gdef\spacesplitx#1#2 #3#4\spacesplitx{% + \ifx\relax #3% + #1{#2}{}% + \else % + #1{#2}{#3#4}% + \fi}% +} + +% Define @defun. + +% This is called to end the arguments processing for all the @def... commands. +% +\def\defargscommonending{% + \interlinepenalty = 10000 + \advance\rightskip by 0pt plus 1fil + \endgraf + \nobreak\vskip -\parskip + \penalty 10002 % signal to \parsebodycommon. +} + +% This expands the args and terminates the paragraph they comprise. +% +\def\defunargs#1{\functionparens \sl +% Expand, preventing hyphenation at `-' chars. +% Note that groups don't affect changes in \hyphenchar. +% Set the font temporarily and use \font in case \setfont made \tensl a macro. +{\tensl\hyphenchar\font=0}% +#1% +{\tensl\hyphenchar\font=45}% +\ifnum\parencount=0 \else \errmessage{Unbalanced parentheses in @def}\fi% + \defargscommonending +} + +\def\deftypefunargs #1{% +% Expand, preventing hyphenation at `-' chars. +% Note that groups don't affect changes in \hyphenchar. +% Use \boldbraxnoamp, not \functionparens, so that & is not special. +\boldbraxnoamp +\tclose{#1}% avoid \code because of side effects on active chars + \defargscommonending +} + +% Do complete processing of one @defun or @defunx line already parsed. + +% @deffn Command forward-char nchars + +\def\deffn{\defmethparsebody\Edeffn\deffnx\deffnheader} + +\def\deffnheader #1#2#3{\doind {fn}{\code{#2}}% +\begingroup\defname {#2}{#1}\defunargs{#3}\endgroup % +\catcode\equalChar=\other % Turn off change made in \defparsebody +} + +% @defun == @deffn Function + +\def\defun{\defparsebody\Edefun\defunx\defunheader} + +\def\defunheader #1#2{\doind {fn}{\code{#1}}% Make entry in function index +\begingroup\defname {#1}{\putwordDeffunc}% +\defunargs {#2}\endgroup % +\catcode\equalChar=\other % Turn off change made in \defparsebody +} + +% @deftypefun int foobar (int @var{foo}, float @var{bar}) + +\def\deftypefun{\defparsebody\Edeftypefun\deftypefunx\deftypefunheader} + +% #1 is the data type. #2 is the name and args. +\def\deftypefunheader #1#2{\deftypefunheaderx{#1}#2 \relax} +% #1 is the data type, #2 the name, #3 the args. +\def\deftypefunheaderx #1#2 #3\relax{% +\doind {fn}{\code{#2}}% Make entry in function index +\begingroup\defname {\defheaderxcond#1\relax$.$#2}{\putwordDeftypefun}% +\deftypefunargs {#3}\endgroup % +\catcode\equalChar=\other % Turn off change made in \defparsebody +} + +% @deftypefn {Library Function} int foobar (int @var{foo}, float @var{bar}) + +\def\deftypefn{\defmethparsebody\Edeftypefn\deftypefnx\deftypefnheader} + +% \defheaderxcond#1\relax$.$ +% puts #1 in @code, followed by a space, but does nothing if #1 is null. +\def\defheaderxcond#1#2$.${\ifx#1\relax\else\code{#1#2} \fi} + +% #1 is the classification. #2 is the data type. #3 is the name and args. +\def\deftypefnheader #1#2#3{\deftypefnheaderx{#1}{#2}#3 \relax} +% #1 is the classification, #2 the data type, #3 the name, #4 the args. +\def\deftypefnheaderx #1#2#3 #4\relax{% +\doind {fn}{\code{#3}}% Make entry in function index +\begingroup +\normalparens % notably, turn off `&' magic, which prevents +% at least some C++ text from working +\defname {\defheaderxcond#2\relax$.$#3}{#1}% +\deftypefunargs {#4}\endgroup % +\catcode\equalChar=\other % Turn off change made in \defparsebody +} + +% @defmac == @deffn Macro + +\def\defmac{\defparsebody\Edefmac\defmacx\defmacheader} + +\def\defmacheader #1#2{\doind {fn}{\code{#1}}% Make entry in function index +\begingroup\defname {#1}{\putwordDefmac}% +\defunargs {#2}\endgroup % +\catcode\equalChar=\other % Turn off change made in \defparsebody +} + +% @defspec == @deffn Special Form + +\def\defspec{\defparsebody\Edefspec\defspecx\defspecheader} + +\def\defspecheader #1#2{\doind {fn}{\code{#1}}% Make entry in function index +\begingroup\defname {#1}{\putwordDefspec}% +\defunargs {#2}\endgroup % +\catcode\equalChar=\other % Turn off change made in \defparsebody +} + +% @defop CATEGORY CLASS OPERATION ARG... +% +\def\defop #1 {\def\defoptype{#1}% +\defopparsebody\Edefop\defopx\defopheader\defoptype} +% +\def\defopheader#1#2#3{% + \dosubind{fn}{\code{#2}}{\putwordon\ \code{#1}}% function index entry + \begingroup + \defname{#2}{\defoptype\ \putwordon\ #1}% + \defunargs{#3}% + \endgroup +} + +% @deftypeop CATEGORY CLASS TYPE OPERATION ARG... +% +\def\deftypeop #1 {\def\deftypeopcategory{#1}% + \deftypeopparsebody\Edeftypeop\deftypeopx\deftypeopheader + \deftypeopcategory} +% +% #1 is the class name, #2 the data type, #3 the operation name, #4 the args. +\def\deftypeopheader#1#2#3#4{% + \dosubind{fn}{\code{#3}}{\putwordon\ \code{#1}}% entry in function index + \begingroup + \defname{\defheaderxcond#2\relax$.$#3} + {\deftypeopcategory\ \putwordon\ \code{#1}}% + \deftypefunargs{#4}% + \endgroup +} + +% @deftypemethod CLASS TYPE METHOD ARG... +% +\def\deftypemethod{% + \deftypemethparsebody\Edeftypemethod\deftypemethodx\deftypemethodheader} +% +% #1 is the class name, #2 the data type, #3 the method name, #4 the args. +\def\deftypemethodheader#1#2#3#4{% + \dosubind{fn}{\code{#3}}{\putwordon\ \code{#1}}% entry in function index + \begingroup + \defname{\defheaderxcond#2\relax$.$#3}{\putwordMethodon\ \code{#1}}% + \deftypefunargs{#4}% + \endgroup +} + +% @deftypeivar CLASS TYPE VARNAME +% +\def\deftypeivar{% + \deftypemethparsebody\Edeftypeivar\deftypeivarx\deftypeivarheader} +% +% #1 is the class name, #2 the data type, #3 the variable name. +\def\deftypeivarheader#1#2#3{% + \dosubind{vr}{\code{#3}}{\putwordof\ \code{#1}}% entry in variable index + \begingroup + \defname{\defheaderxcond#2\relax$.$#3} + {\putwordInstanceVariableof\ \code{#1}}% + \defvarargs{#3}% + \endgroup +} + +% @defmethod == @defop Method +% +\def\defmethod{\defmethparsebody\Edefmethod\defmethodx\defmethodheader} +% +% #1 is the class name, #2 the method name, #3 the args. +\def\defmethodheader#1#2#3{% + \dosubind{fn}{\code{#2}}{\putwordon\ \code{#1}}% entry in function index + \begingroup + \defname{#2}{\putwordMethodon\ \code{#1}}% + \defunargs{#3}% + \endgroup +} + +% @defcv {Class Option} foo-class foo-flag + +\def\defcv #1 {\def\defcvtype{#1}% +\defopvarparsebody\Edefcv\defcvx\defcvarheader\defcvtype} + +\def\defcvarheader #1#2#3{% + \dosubind{vr}{\code{#2}}{\putwordof\ \code{#1}}% variable index entry + \begingroup + \defname{#2}{\defcvtype\ \putwordof\ #1}% + \defvarargs{#3}% + \endgroup +} + +% @defivar CLASS VARNAME == @defcv {Instance Variable} CLASS VARNAME +% +\def\defivar{\defvrparsebody\Edefivar\defivarx\defivarheader} +% +\def\defivarheader#1#2#3{% + \dosubind{vr}{\code{#2}}{\putwordof\ \code{#1}}% entry in var index + \begingroup + \defname{#2}{\putwordInstanceVariableof\ #1}% + \defvarargs{#3}% + \endgroup +} + +% @defvar +% First, define the processing that is wanted for arguments of @defvar. +% This is actually simple: just print them in roman. +% This must expand the args and terminate the paragraph they make up +\def\defvarargs #1{\normalparens #1% + \defargscommonending +} + +% @defvr Counter foo-count + +\def\defvr{\defvrparsebody\Edefvr\defvrx\defvrheader} + +\def\defvrheader #1#2#3{\doind {vr}{\code{#2}}% +\begingroup\defname {#2}{#1}\defvarargs{#3}\endgroup} + +% @defvar == @defvr Variable + +\def\defvar{\defvarparsebody\Edefvar\defvarx\defvarheader} + +\def\defvarheader #1#2{\doind {vr}{\code{#1}}% Make entry in var index +\begingroup\defname {#1}{\putwordDefvar}% +\defvarargs {#2}\endgroup % +} + +% @defopt == @defvr {User Option} + +\def\defopt{\defvarparsebody\Edefopt\defoptx\defoptheader} + +\def\defoptheader #1#2{\doind {vr}{\code{#1}}% Make entry in var index +\begingroup\defname {#1}{\putwordDefopt}% +\defvarargs {#2}\endgroup % +} + +% @deftypevar int foobar + +\def\deftypevar{\defvarparsebody\Edeftypevar\deftypevarx\deftypevarheader} + +% #1 is the data type. #2 is the name, perhaps followed by text that +% is actually part of the data type, which should not be put into the index. +\def\deftypevarheader #1#2{% +\dovarind#2 \relax% Make entry in variables index +\begingroup\defname {\defheaderxcond#1\relax$.$#2}{\putwordDeftypevar}% + \defargscommonending +\endgroup} +\def\dovarind#1 #2\relax{\doind{vr}{\code{#1}}} + +% @deftypevr {Global Flag} int enable + +\def\deftypevr{\defvrparsebody\Edeftypevr\deftypevrx\deftypevrheader} + +\def\deftypevrheader #1#2#3{\dovarind#3 \relax% +\begingroup\defname {\defheaderxcond#2\relax$.$#3}{#1} + \defargscommonending +\endgroup} + +% Now define @deftp +% Args are printed in bold, a slight difference from @defvar. + +\def\deftpargs #1{\bf \defvarargs{#1}} + +% @deftp Class window height width ... + +\def\deftp{\deftpparsebody\Edeftp\deftpx\deftpheader} + +\def\deftpheader #1#2#3{\doind {tp}{\code{#2}}% +\begingroup\defname {#2}{#1}\deftpargs{#3}\endgroup} + +% These definitions are used if you use @defunx (etc.) +% anywhere other than immediately after a @defun or @defunx. +% +\def\defcvx#1 {\errmessage{@defcvx in invalid context}} +\def\deffnx#1 {\errmessage{@deffnx in invalid context}} +\def\defivarx#1 {\errmessage{@defivarx in invalid context}} +\def\defmacx#1 {\errmessage{@defmacx in invalid context}} +\def\defmethodx#1 {\errmessage{@defmethodx in invalid context}} +\def\defoptx #1 {\errmessage{@defoptx in invalid context}} +\def\defopx#1 {\errmessage{@defopx in invalid context}} +\def\defspecx#1 {\errmessage{@defspecx in invalid context}} +\def\deftpx#1 {\errmessage{@deftpx in invalid context}} +\def\deftypefnx#1 {\errmessage{@deftypefnx in invalid context}} +\def\deftypefunx#1 {\errmessage{@deftypefunx in invalid context}} +\def\deftypeivarx#1 {\errmessage{@deftypeivarx in invalid context}} +\def\deftypemethodx#1 {\errmessage{@deftypemethodx in invalid context}} +\def\deftypeopx#1 {\errmessage{@deftypeopx in invalid context}} +\def\deftypevarx#1 {\errmessage{@deftypevarx in invalid context}} +\def\deftypevrx#1 {\errmessage{@deftypevrx in invalid context}} +\def\defunx#1 {\errmessage{@defunx in invalid context}} +\def\defvarx#1 {\errmessage{@defvarx in invalid context}} +\def\defvrx#1 {\errmessage{@defvrx in invalid context}} + + +\message{macros,} +% @macro. + +% To do this right we need a feature of e-TeX, \scantokens, +% which we arrange to emulate with a temporary file in ordinary TeX. +\ifx\eTeXversion\undefined + \newwrite\macscribble + \def\scanmacro#1{% + \begingroup \newlinechar`\^^M + % Undo catcode changes of \startcontents and \doprintindex + \catcode`\@=0 \catcode`\\=\other \escapechar=`\@ + % Append \endinput to make sure that TeX does not see the ending newline. + \toks0={#1\endinput}% + \immediate\openout\macscribble=\jobname.tmp + \immediate\write\macscribble{\the\toks0}% + \immediate\closeout\macscribble + \let\xeatspaces\eatspaces + \input \jobname.tmp + \endgroup +} +\else +\def\scanmacro#1{% +\begingroup \newlinechar`\^^M +% Undo catcode changes of \startcontents and \doprintindex +\catcode`\@=0 \catcode`\\=\other \escapechar=`\@ +\let\xeatspaces\eatspaces\scantokens{#1\endinput}\endgroup} +\fi + +\newcount\paramno % Count of parameters +\newtoks\macname % Macro name +\newif\ifrecursive % Is it recursive? +\def\macrolist{} % List of all defined macros in the form + % \do\macro1\do\macro2... + +% Utility routines. +% Thisdoes \let #1 = #2, except with \csnames. +\def\cslet#1#2{% +\expandafter\expandafter +\expandafter\let +\expandafter\expandafter +\csname#1\endcsname +\csname#2\endcsname} + +% Trim leading and trailing spaces off a string. +% Concepts from aro-bend problem 15 (see CTAN). +{\catcode`\@=11 +\gdef\eatspaces #1{\expandafter\trim@\expandafter{#1 }} +\gdef\trim@ #1{\trim@@ @#1 @ #1 @ @@} +\gdef\trim@@ #1@ #2@ #3@@{\trim@@@\empty #2 @} +\def\unbrace#1{#1} +\unbrace{\gdef\trim@@@ #1 } #2@{#1} +} + +% Trim a single trailing ^^M off a string. +{\catcode`\^^M=\other \catcode`\Q=3% +\gdef\eatcr #1{\eatcra #1Q^^MQ}% +\gdef\eatcra#1^^MQ{\eatcrb#1Q}% +\gdef\eatcrb#1Q#2Q{#1}% +} + +% Macro bodies are absorbed as an argument in a context where +% all characters are catcode 10, 11 or 12, except \ which is active +% (as in normal texinfo). It is necessary to change the definition of \. + +% It's necessary to have hard CRs when the macro is executed. This is +% done by making ^^M (\endlinechar) catcode 12 when reading the macro +% body, and then making it the \newlinechar in \scanmacro. + +\def\macrobodyctxt{% + \catcode`\~=\other + \catcode`\^=\other + \catcode`\_=\other + \catcode`\|=\other + \catcode`\<=\other + \catcode`\>=\other + \catcode`\+=\other + \catcode`\{=\other + \catcode`\}=\other + \catcode`\@=\other + \catcode`\^^M=\other + \usembodybackslash} + +\def\macroargctxt{% + \catcode`\~=\other + \catcode`\^=\other + \catcode`\_=\other + \catcode`\|=\other + \catcode`\<=\other + \catcode`\>=\other + \catcode`\+=\other + \catcode`\@=\other + \catcode`\\=\other} + +% \mbodybackslash is the definition of \ in @macro bodies. +% It maps \foo\ => \csname macarg.foo\endcsname => #N +% where N is the macro parameter number. +% We define \csname macarg.\endcsname to be \realbackslash, so +% \\ in macro replacement text gets you a backslash. + +{\catcode`@=0 @catcode`@\=@active + @gdef@usembodybackslash{@let\=@mbodybackslash} + @gdef@mbodybackslash#1\{@csname macarg.#1@endcsname} +} +\expandafter\def\csname macarg.\endcsname{\realbackslash} + +\def\macro{\recursivefalse\parsearg\macroxxx} +\def\rmacro{\recursivetrue\parsearg\macroxxx} + +\def\macroxxx#1{% + \getargs{#1}% now \macname is the macname and \argl the arglist + \ifx\argl\empty % no arguments + \paramno=0% + \else + \expandafter\parsemargdef \argl;% + \fi + \if1\csname ismacro.\the\macname\endcsname + \message{Warning: redefining \the\macname}% + \else + \expandafter\ifx\csname \the\macname\endcsname \relax + \else \errmessage{Macro name \the\macname\space already defined}\fi + \global\cslet{macsave.\the\macname}{\the\macname}% + \global\expandafter\let\csname ismacro.\the\macname\endcsname=1% + % Add the macroname to \macrolist + \toks0 = \expandafter{\macrolist\do}% + \xdef\macrolist{\the\toks0 + \expandafter\noexpand\csname\the\macname\endcsname}% + \fi + \begingroup \macrobodyctxt + \ifrecursive \expandafter\parsermacbody + \else \expandafter\parsemacbody + \fi} + +\def\unmacro{\parsearg\dounmacro} +\def\dounmacro#1{% + \if1\csname ismacro.#1\endcsname + \global\cslet{#1}{macsave.#1}% + \global\expandafter\let \csname ismacro.#1\endcsname=0% + % Remove the macro name from \macrolist: + \begingroup + \expandafter\let\csname#1\endcsname \relax + \let\do\unmacrodo + \xdef\macrolist{\macrolist}% + \endgroup + \else + \errmessage{Macro #1 not defined}% + \fi +} + +% Called by \do from \dounmacro on each macro. The idea is to omit any +% macro definitions that have been changed to \relax. +% +\def\unmacrodo#1{% + \ifx#1\relax + % remove this + \else + \noexpand\do \noexpand #1% + \fi +} + +% This makes use of the obscure feature that if the last token of a +% is #, then the preceding argument is delimited by +% an opening brace, and that opening brace is not consumed. +\def\getargs#1{\getargsxxx#1{}} +\def\getargsxxx#1#{\getmacname #1 \relax\getmacargs} +\def\getmacname #1 #2\relax{\macname={#1}} +\def\getmacargs#1{\def\argl{#1}} + +% Parse the optional {params} list. Set up \paramno and \paramlist +% so \defmacro knows what to do. Define \macarg.blah for each blah +% in the params list, to be ##N where N is the position in that list. +% That gets used by \mbodybackslash (above). + +% We need to get `macro parameter char #' into several definitions. +% The technique used is stolen from LaTeX: let \hash be something +% unexpandable, insert that wherever you need a #, and then redefine +% it to # just before using the token list produced. +% +% The same technique is used to protect \eatspaces till just before +% the macro is used. + +\def\parsemargdef#1;{\paramno=0\def\paramlist{}% + \let\hash\relax\let\xeatspaces\relax\parsemargdefxxx#1,;,} +\def\parsemargdefxxx#1,{% + \if#1;\let\next=\relax + \else \let\next=\parsemargdefxxx + \advance\paramno by 1% + \expandafter\edef\csname macarg.\eatspaces{#1}\endcsname + {\xeatspaces{\hash\the\paramno}}% + \edef\paramlist{\paramlist\hash\the\paramno,}% + \fi\next} + +% These two commands read recursive and nonrecursive macro bodies. +% (They're different since rec and nonrec macros end differently.) + +\long\def\parsemacbody#1@end macro% +{\xdef\temp{\eatcr{#1}}\endgroup\defmacro}% +\long\def\parsermacbody#1@end rmacro% +{\xdef\temp{\eatcr{#1}}\endgroup\defmacro}% + +% This defines the macro itself. There are six cases: recursive and +% nonrecursive macros of zero, one, and many arguments. +% Much magic with \expandafter here. +% \xdef is used so that macro definitions will survive the file +% they're defined in; @include reads the file inside a group. +\def\defmacro{% + \let\hash=##% convert placeholders to macro parameter chars + \ifrecursive + \ifcase\paramno + % 0 + \expandafter\xdef\csname\the\macname\endcsname{% + \noexpand\scanmacro{\temp}}% + \or % 1 + \expandafter\xdef\csname\the\macname\endcsname{% + \bgroup\noexpand\macroargctxt + \noexpand\braceorline + \expandafter\noexpand\csname\the\macname xxx\endcsname}% + \expandafter\xdef\csname\the\macname xxx\endcsname##1{% + \egroup\noexpand\scanmacro{\temp}}% + \else % many + \expandafter\xdef\csname\the\macname\endcsname{% + \bgroup\noexpand\macroargctxt + \noexpand\csname\the\macname xx\endcsname}% + \expandafter\xdef\csname\the\macname xx\endcsname##1{% + \expandafter\noexpand\csname\the\macname xxx\endcsname ##1,}% + \expandafter\expandafter + \expandafter\xdef + \expandafter\expandafter + \csname\the\macname xxx\endcsname + \paramlist{\egroup\noexpand\scanmacro{\temp}}% + \fi + \else + \ifcase\paramno + % 0 + \expandafter\xdef\csname\the\macname\endcsname{% + \noexpand\norecurse{\the\macname}% + \noexpand\scanmacro{\temp}\egroup}% + \or % 1 + \expandafter\xdef\csname\the\macname\endcsname{% + \bgroup\noexpand\macroargctxt + \noexpand\braceorline + \expandafter\noexpand\csname\the\macname xxx\endcsname}% + \expandafter\xdef\csname\the\macname xxx\endcsname##1{% + \egroup + \noexpand\norecurse{\the\macname}% + \noexpand\scanmacro{\temp}\egroup}% + \else % many + \expandafter\xdef\csname\the\macname\endcsname{% + \bgroup\noexpand\macroargctxt + \expandafter\noexpand\csname\the\macname xx\endcsname}% + \expandafter\xdef\csname\the\macname xx\endcsname##1{% + \expandafter\noexpand\csname\the\macname xxx\endcsname ##1,}% + \expandafter\expandafter + \expandafter\xdef + \expandafter\expandafter + \csname\the\macname xxx\endcsname + \paramlist{% + \egroup + \noexpand\norecurse{\the\macname}% + \noexpand\scanmacro{\temp}\egroup}% + \fi + \fi} + +\def\norecurse#1{\bgroup\cslet{#1}{macsave.#1}} + +% \braceorline decides whether the next nonwhitespace character is a +% {. If so it reads up to the closing }, if not, it reads the whole +% line. Whatever was read is then fed to the next control sequence +% as an argument (by \parsebrace or \parsearg) +\def\braceorline#1{\let\next=#1\futurelet\nchar\braceorlinexxx} +\def\braceorlinexxx{% + \ifx\nchar\bgroup\else + \expandafter\parsearg + \fi \next} + +% We mant to disable all macros during \shipout so that they are not +% expanded by \write. +\def\turnoffmacros{\begingroup \def\do##1{\let\noexpand##1=\relax}% + \edef\next{\macrolist}\expandafter\endgroup\next} + + +% @alias. +% We need some trickery to remove the optional spaces around the equal +% sign. Just make them active and then expand them all to nothing. +\def\alias{\begingroup\obeyspaces\parsearg\aliasxxx} +\def\aliasxxx #1{\aliasyyy#1\relax} +\def\aliasyyy #1=#2\relax{\ignoreactivespaces +\edef\next{\global\let\expandafter\noexpand\csname#1\endcsname=% + \expandafter\noexpand\csname#2\endcsname}% +\expandafter\endgroup\next} + + +\message{cross references,} +% @xref etc. + +\newwrite\auxfile + +\newif\ifhavexrefs % True if xref values are known. +\newif\ifwarnedxrefs % True if we warned once that they aren't known. + +% @inforef is relatively simple. +\def\inforef #1{\inforefzzz #1,,,,**} +\def\inforefzzz #1,#2,#3,#4**{\putwordSee{} \putwordInfo{} \putwordfile{} \file{\ignorespaces #3{}}, + node \samp{\ignorespaces#1{}}} + +% @node's job is to define \lastnode. +\def\node{\ENVcheck\parsearg\nodezzz} +\def\nodezzz#1{\nodexxx #1,\finishnodeparse} +\def\nodexxx#1,#2\finishnodeparse{\gdef\lastnode{#1}} +\let\nwnode=\node +\let\lastnode=\relax + +% The sectioning commands (@chapter, etc.) call these. +\def\donoderef{% + \ifx\lastnode\relax\else + \expandafter\expandafter\expandafter\setref{\lastnode}% + {Ysectionnumberandtype}% + \global\let\lastnode=\relax + \fi +} +\def\unnumbnoderef{% + \ifx\lastnode\relax\else + \expandafter\expandafter\expandafter\setref{\lastnode}{Ynothing}% + \global\let\lastnode=\relax + \fi +} +\def\appendixnoderef{% + \ifx\lastnode\relax\else + \expandafter\expandafter\expandafter\setref{\lastnode}% + {Yappendixletterandtype}% + \global\let\lastnode=\relax + \fi +} + + +% @anchor{NAME} -- define xref target at arbitrary point. +% +\newcount\savesfregister +\gdef\savesf{\relax \ifhmode \savesfregister=\spacefactor \fi} +\gdef\restoresf{\relax \ifhmode \spacefactor=\savesfregister \fi} +\gdef\anchor#1{\savesf \setref{#1}{Ynothing}\restoresf \ignorespaces} + +% \setref{NAME}{SNT} defines a cross-reference point NAME (a node or an +% anchor), namely NAME-title (the corresponding @chapter/etc. name), +% NAME-pg (the page number), and NAME-snt (section number and type). +% Called from \foonoderef. +% +% We have to set \indexdummies so commands such as @code in a section +% title aren't expanded. It would be nicer not to expand the titles in +% the first place, but there's so many layers that that is hard to do. +% +% Likewise, use \turnoffactive so that punctuation chars such as underscore +% and backslash work in node names. +% +\def\setref#1#2{{% + \atdummies + \pdfmkdest{#1}% + % + \turnoffactive + \dosetq{#1-title}{Ytitle}% + \dosetq{#1-pg}{Ypagenumber}% + \dosetq{#1-snt}{#2}% +}} + +% @xref, @pxref, and @ref generate cross-references. For \xrefX, #1 is +% the node name, #2 the name of the Info cross-reference, #3 the printed +% node name, #4 the name of the Info file, #5 the name of the printed +% manual. All but the node name can be omitted. +% +\def\pxref#1{\putwordsee{} \xrefX[#1,,,,,,,]} +\def\xref#1{\putwordSee{} \xrefX[#1,,,,,,,]} +\def\ref#1{\xrefX[#1,,,,,,,]} +\def\xrefX[#1,#2,#3,#4,#5,#6]{\begingroup + \unsepspaces + \def\printedmanual{\ignorespaces #5}% + \def\printednodename{\ignorespaces #3}% + \setbox1=\hbox{\printedmanual}% + \setbox0=\hbox{\printednodename}% + \ifdim \wd0 = 0pt + % No printed node name was explicitly given. + \expandafter\ifx\csname SETxref-automatic-section-title\endcsname\relax + % Use the node name inside the square brackets. + \def\printednodename{\ignorespaces #1}% + \else + % Use the actual chapter/section title appear inside + % the square brackets. Use the real section title if we have it. + \ifdim \wd1 > 0pt + % It is in another manual, so we don't have it. + \def\printednodename{\ignorespaces #1}% + \else + \ifhavexrefs + % We know the real title if we have the xref values. + \def\printednodename{\refx{#1-title}{}}% + \else + % Otherwise just copy the Info node name. + \def\printednodename{\ignorespaces #1}% + \fi% + \fi + \fi + \fi + % + % If we use \unhbox0 and \unhbox1 to print the node names, TeX does not + % insert empty discretionaries after hyphens, which means that it will + % not find a line break at a hyphen in a node names. Since some manuals + % are best written with fairly long node names, containing hyphens, this + % is a loss. Therefore, we give the text of the node name again, so it + % is as if TeX is seeing it for the first time. + \ifpdf + \leavevmode + \getfilename{#4}% + {\turnoffactive \otherbackslash + \ifnum\filenamelength>0 + \startlink attr{/Border [0 0 0]}% + goto file{\the\filename.pdf} name{#1}% + \else + \startlink attr{/Border [0 0 0]}% + goto name{#1}% + \fi + }% + \linkcolor + \fi + % + \ifdim \wd1 > 0pt + \putwordsection{} ``\printednodename'' \putwordin{} \cite{\printedmanual}% + \else + % _ (for example) has to be the character _ for the purposes of the + % control sequence corresponding to the node, but it has to expand + % into the usual \leavevmode...\vrule stuff for purposes of + % printing. So we \turnoffactive for the \refx-snt, back on for the + % printing, back off for the \refx-pg. + {\turnoffactive \otherbackslash + % Only output a following space if the -snt ref is nonempty; for + % @unnumbered and @anchor, it won't be. + \setbox2 = \hbox{\ignorespaces \refx{#1-snt}{}}% + \ifdim \wd2 > 0pt \refx{#1-snt}\space\fi + }% + % output the `[mynode]' via a macro. + \xrefprintnodename\printednodename + % + % But we always want a comma and a space: + ,\space + % + % output the `page 3'. + \turnoffactive \otherbackslash \putwordpage\tie\refx{#1-pg}{}% + \fi + \endlink +\endgroup} + +% This macro is called from \xrefX for the `[nodename]' part of xref +% output. It's a separate macro only so it can be changed more easily, +% since not square brackets don't work in some documents. Particularly +% one that Bob is working on :). +% +\def\xrefprintnodename#1{[#1]} + +% \dosetq is called from \setref to do the actual \write (\iflinks). +% +\def\dosetq#1#2{% + {\let\folio=0% + \edef\next{\write\auxfile{\internalsetq{#1}{#2}}}% + \iflinks \next \fi + }% +} + +% \internalsetq{foo}{page} expands into +% CHARACTERS @xrdef{foo}{...expansion of \page...} +\def\internalsetq#1#2{@xrdef{#1}{\csname #2\endcsname}} + +% Things to be expanded by \internalsetq. +% +\def\Ypagenumber{\folio} +\def\Ytitle{\thissection} +\def\Ynothing{} +\def\Ysectionnumberandtype{% + \ifnum\secno=0 + \putwordChapter@tie \the\chapno + \else \ifnum\subsecno=0 + \putwordSection@tie \the\chapno.\the\secno + \else \ifnum\subsubsecno=0 + \putwordSection@tie \the\chapno.\the\secno.\the\subsecno + \else + \putwordSection@tie \the\chapno.\the\secno.\the\subsecno.\the\subsubsecno + \fi\fi\fi +} + +\def\Yappendixletterandtype{% + \ifnum\secno=0 + \putwordAppendix@tie @char\the\appendixno{}% + \else \ifnum\subsecno=0 + \putwordSection@tie @char\the\appendixno.\the\secno + \else \ifnum\subsubsecno=0 + \putwordSection@tie @char\the\appendixno.\the\secno.\the\subsecno + \else + \putwordSection@tie + @char\the\appendixno.\the\secno.\the\subsecno.\the\subsubsecno + \fi\fi\fi +} + +% Use TeX 3.0's \inputlineno to get the line number, for better error +% messages, but if we're using an old version of TeX, don't do anything. +% +\ifx\inputlineno\thisisundefined + \let\linenumber = \empty % Pre-3.0. +\else + \def\linenumber{\the\inputlineno:\space} +\fi + +% Define \refx{NAME}{SUFFIX} to reference a cross-reference string named NAME. +% If its value is nonempty, SUFFIX is output afterward. +% +\def\refx#1#2{% + {% + \indexnofonts + \otherbackslash + \expandafter\global\expandafter\let\expandafter\thisrefX + \csname X#1\endcsname + }% + \ifx\thisrefX\relax + % If not defined, say something at least. + \angleleft un\-de\-fined\angleright + \iflinks + \ifhavexrefs + \message{\linenumber Undefined cross reference `#1'.}% + \else + \ifwarnedxrefs\else + \global\warnedxrefstrue + \message{Cross reference values unknown; you must run TeX again.}% + \fi + \fi + \fi + \else + % It's defined, so just use it. + \thisrefX + \fi + #2% Output the suffix in any case. +} + +% This is the macro invoked by entries in the aux file. +% +\def\xrdef#1{\expandafter\gdef\csname X#1\endcsname} + +% Read the last existing aux file, if any. No error if none exists. +\def\readauxfile{\begingroup + \catcode`\^^@=\other + \catcode`\^^A=\other + \catcode`\^^B=\other + \catcode`\^^C=\other + \catcode`\^^D=\other + \catcode`\^^E=\other + \catcode`\^^F=\other + \catcode`\^^G=\other + \catcode`\^^H=\other + \catcode`\^^K=\other + \catcode`\^^L=\other + \catcode`\^^N=\other + \catcode`\^^P=\other + \catcode`\^^Q=\other + \catcode`\^^R=\other + \catcode`\^^S=\other + \catcode`\^^T=\other + \catcode`\^^U=\other + \catcode`\^^V=\other + \catcode`\^^W=\other + \catcode`\^^X=\other + \catcode`\^^Z=\other + \catcode`\^^[=\other + \catcode`\^^\=\other + \catcode`\^^]=\other + \catcode`\^^^=\other + \catcode`\^^_=\other + % It was suggested to set the catcode of ^ to 7, which would allow ^^e4 etc. + % in xref tags, i.e., node names. But since ^^e4 notation isn't + % supported in the main text, it doesn't seem desirable. Furthermore, + % that is not enough: for node names that actually contain a ^ + % character, we would end up writing a line like this: 'xrdef {'hat + % b-title}{'hat b} and \xrdef does a \csname...\endcsname on the first + % argument, and \hat is not an expandable control sequence. It could + % all be worked out, but why? Either we support ^^ or we don't. + % + % The other change necessary for this was to define \auxhat: + % \def\auxhat{\def^{'hat }}% extra space so ok if followed by letter + % and then to call \auxhat in \setq. + % + \catcode`\^=\other + % + % Special characters. Should be turned off anyway, but... + \catcode`\~=\other + \catcode`\[=\other + \catcode`\]=\other + \catcode`\"=\other + \catcode`\_=\other + \catcode`\|=\other + \catcode`\<=\other + \catcode`\>=\other + \catcode`\$=\other + \catcode`\#=\other + \catcode`\&=\other + \catcode`\%=\other + \catcode`+=\other % avoid \+ for paranoia even though we've turned it off + % + % Make the characters 128-255 be printing characters + {% + \count 1=128 + \def\loop{% + \catcode\count 1=\other + \advance\count 1 by 1 + \ifnum \count 1<256 \loop \fi + }% + }% + % + % Turn off \ as an escape so we do not lose on + % entries which were dumped with control sequences in their names. + % For example, @xrdef{$\leq $-fun}{page ...} made by @defun ^^ + % Reference to such entries still does not work the way one would wish, + % but at least they do not bomb out when the aux file is read in. + \catcode`\\=\other + % + % @ is our escape character in .aux files. + \catcode`\{=1 + \catcode`\}=2 + \catcode`\@=0 + % + \openin 1 \jobname.aux + \ifeof 1 \else + \closein 1 + \input \jobname.aux + \global\havexrefstrue + \global\warnedobstrue + \fi + % Open the new aux file. TeX will close it automatically at exit. + \openout\auxfile=\jobname.aux +\endgroup} + + +% Footnotes. + +\newcount \footnoteno + +% The trailing space in the following definition for supereject is +% vital for proper filling; pages come out unaligned when you do a +% pagealignmacro call if that space before the closing brace is +% removed. (Generally, numeric constants should always be followed by a +% space to prevent strange expansion errors.) +\def\supereject{\par\penalty -20000\footnoteno =0 } + +% @footnotestyle is meaningful for info output only. +\let\footnotestyle=\comment + +\let\ptexfootnote=\footnote + +{\catcode `\@=11 +% +% Auto-number footnotes. Otherwise like plain. +\gdef\footnote{% + \global\advance\footnoteno by \@ne + \edef\thisfootno{$^{\the\footnoteno}$}% + % + % In case the footnote comes at the end of a sentence, preserve the + % extra spacing after we do the footnote number. + \let\@sf\empty + \ifhmode\edef\@sf{\spacefactor\the\spacefactor}\/\fi + % + % Remove inadvertent blank space before typesetting the footnote number. + \unskip + \thisfootno\@sf + \dofootnote +}% + +% Don't bother with the trickery in plain.tex to not require the +% footnote text as a parameter. Our footnotes don't need to be so general. +% +% Oh yes, they do; otherwise, @ifset and anything else that uses +% \parseargline fail inside footnotes because the tokens are fixed when +% the footnote is read. --karl, 16nov96. +% +% The start of the footnote looks usually like this: +\gdef\startfootins{\insert\footins\bgroup} +% +% ... but this macro is redefined inside @multitable. +% +\gdef\dofootnote{% + \startfootins + % We want to typeset this text as a normal paragraph, even if the + % footnote reference occurs in (for example) a display environment. + % So reset some parameters. + \hsize=\pagewidth + \interlinepenalty\interfootnotelinepenalty + \splittopskip\ht\strutbox % top baseline for broken footnotes + \splitmaxdepth\dp\strutbox + \floatingpenalty\@MM + \leftskip\z@skip + \rightskip\z@skip + \spaceskip\z@skip + \xspaceskip\z@skip + \parindent\defaultparindent + % + \smallfonts \rm + % + % Because we use hanging indentation in footnotes, a @noindent appears + % to exdent this text, so make it be a no-op. makeinfo does not use + % hanging indentation so @noindent can still be needed within footnote + % text after an @example or the like (not that this is good style). + \let\noindent = \relax + % + % Hang the footnote text off the number. Use \everypar in case the + % footnote extends for more than one paragraph. + \everypar = {\hang}% + \textindent{\thisfootno}% + % + % Don't crash into the line above the footnote text. Since this + % expands into a box, it must come within the paragraph, lest it + % provide a place where TeX can split the footnote. + \footstrut + \futurelet\next\fo@t +} +}%end \catcode `\@=11 + +% @| inserts a changebar to the left of the current line. It should +% surround any changed text. This approach does *not* work if the +% change spans more than two lines of output. To handle that, we would +% have adopt a much more difficult approach (putting marks into the main +% vertical list for the beginning and end of each change). +% +\def\|{% + % \vadjust can only be used in horizontal mode. + \leavevmode + % + % Append this vertical mode material after the current line in the output. + \vadjust{% + % We want to insert a rule with the height and depth of the current + % leading; that is exactly what \strutbox is supposed to record. + \vskip-\baselineskip + % + % \vadjust-items are inserted at the left edge of the type. So + % the \llap here moves out into the left-hand margin. + \llap{% + % + % For a thicker or thinner bar, change the `1pt'. + \vrule height\baselineskip width1pt + % + % This is the space between the bar and the text. + \hskip 12pt + }% + }% +} + +% For a final copy, take out the rectangles +% that mark overfull boxes (in case you have decided +% that the text looks ok even though it passes the margin). +% +\def\finalout{\overfullrule=0pt} + +% @image. We use the macros from epsf.tex to support this. +% If epsf.tex is not installed and @image is used, we complain. +% +% Check for and read epsf.tex up front. If we read it only at @image +% time, we might be inside a group, and then its definitions would get +% undone and the next image would fail. +\openin 1 = epsf.tex +\ifeof 1 \else + \closein 1 + % Do not bother showing banner with epsf.tex v2.7k (available in + % doc/epsf.tex and on ctan). + \def\epsfannounce{\toks0 = }% + \input epsf.tex +\fi +% +% We will only complain once about lack of epsf.tex. +\newif\ifwarnednoepsf +\newhelp\noepsfhelp{epsf.tex must be installed for images to + work. It is also included in the Texinfo distribution, or you can get + it from ftp://tug.org/tex/epsf.tex.} +% +\def\image#1{% + \ifx\epsfbox\undefined + \ifwarnednoepsf \else + \errhelp = \noepsfhelp + \errmessage{epsf.tex not found, images will be ignored}% + \global\warnednoepsftrue + \fi + \else + \imagexxx #1,,,,,\finish + \fi +} +% +% Arguments to @image: +% #1 is (mandatory) image filename; we tack on .eps extension. +% #2 is (optional) width, #3 is (optional) height. +% #4 is (ignored optional) html alt text. +% #5 is (ignored optional) extension. +% #6 is just the usual extra ignored arg for parsing this stuff. +\newif\ifimagevmode +\def\imagexxx#1,#2,#3,#4,#5,#6\finish{\begingroup + \catcode`\^^M = 5 % in case we're inside an example + \normalturnoffactive % allow _ et al. in names + % If the image is by itself, center it. + \ifvmode + \imagevmodetrue + \nobreak\bigskip + % Usually we'll have text after the image which will insert + % \parskip glue, so insert it here too to equalize the space + % above and below. + \nobreak\vskip\parskip + \nobreak + \line\bgroup\hss + \fi + % + % Output the image. + \ifpdf + \dopdfimage{#1}{#2}{#3}% + \else + % \epsfbox itself resets \epsf?size at each figure. + \setbox0 = \hbox{\ignorespaces #2}\ifdim\wd0 > 0pt \epsfxsize=#2\relax \fi + \setbox0 = \hbox{\ignorespaces #3}\ifdim\wd0 > 0pt \epsfysize=#3\relax \fi + \epsfbox{#1.eps}% + \fi + % + \ifimagevmode \hss \egroup \bigbreak \fi % space after the image +\endgroup} + + +\message{localization,} +% and i18n. + +% @documentlanguage is usually given very early, just after +% @setfilename. If done too late, it may not override everything +% properly. Single argument is the language abbreviation. +% It would be nice if we could set up a hyphenation file here. +% +\def\documentlanguage{\parsearg\dodocumentlanguage} +\def\dodocumentlanguage#1{% + \tex % read txi-??.tex file in plain TeX. + % Read the file if it exists. + \openin 1 txi-#1.tex + \ifeof1 + \errhelp = \nolanghelp + \errmessage{Cannot read language file txi-#1.tex}% + \let\temp = \relax + \else + \def\temp{\input txi-#1.tex }% + \fi + \temp + \endgroup +} +\newhelp\nolanghelp{The given language definition file cannot be found or +is empty. Maybe you need to install it? In the current directory +should work if nowhere else does.} + + +% @documentencoding should change something in TeX eventually, most +% likely, but for now just recognize it. +\let\documentencoding = \comment + + +% Page size parameters. +% +\newdimen\defaultparindent \defaultparindent = 15pt + +\chapheadingskip = 15pt plus 4pt minus 2pt +\secheadingskip = 12pt plus 3pt minus 2pt +\subsecheadingskip = 9pt plus 2pt minus 2pt + +% Prevent underfull vbox error messages. +\vbadness = 10000 + +% Don't be so finicky about underfull hboxes, either. +\hbadness = 2000 + +% Following George Bush, just get rid of widows and orphans. +\widowpenalty=10000 +\clubpenalty=10000 + +% Use TeX 3.0's \emergencystretch to help line breaking, but if we're +% using an old version of TeX, don't do anything. We want the amount of +% stretch added to depend on the line length, hence the dependence on +% \hsize. We call this whenever the paper size is set. +% +\def\setemergencystretch{% + \ifx\emergencystretch\thisisundefined + % Allow us to assign to \emergencystretch anyway. + \def\emergencystretch{\dimen0}% + \else + \emergencystretch = .15\hsize + \fi +} + +% Parameters in order: 1) textheight; 2) textwidth; 3) voffset; +% 4) hoffset; 5) binding offset; 6) topskip; 7) physical page height; 8) +% physical page width. +% +% We also call \setleading{\textleading}, so the caller should define +% \textleading. The caller should also set \parskip. +% +\def\internalpagesizes#1#2#3#4#5#6#7#8{% + \voffset = #3\relax + \topskip = #6\relax + \splittopskip = \topskip + % + \vsize = #1\relax + \advance\vsize by \topskip + \outervsize = \vsize + \advance\outervsize by 2\topandbottommargin + \pageheight = \vsize + % + \hsize = #2\relax + \outerhsize = \hsize + \advance\outerhsize by 0.5in + \pagewidth = \hsize + % + \normaloffset = #4\relax + \bindingoffset = #5\relax + % + \ifpdf + \pdfpageheight #7\relax + \pdfpagewidth #8\relax + \fi + % + \setleading{\textleading} + % + \parindent = \defaultparindent + \setemergencystretch +} + +% @letterpaper (the default). +\def\letterpaper{{\globaldefs = 1 + \parskip = 3pt plus 2pt minus 1pt + \textleading = 13.2pt + % + % If page is nothing but text, make it come out even. + \internalpagesizes{46\baselineskip}{6in}% + {\voffset}{.25in}% + {\bindingoffset}{36pt}% + {11in}{8.5in}% +}} + +% Use @smallbook to reset parameters for 7x9.5 (or so) format. +\def\smallbook{{\globaldefs = 1 + \parskip = 2pt plus 1pt + \textleading = 12pt + % + \internalpagesizes{7.5in}{5in}% + {\voffset}{.25in}% + {\bindingoffset}{16pt}% + {9.25in}{7in}% + % + \lispnarrowing = 0.3in + \tolerance = 700 + \hfuzz = 1pt + \contentsrightmargin = 0pt + \defbodyindent = .5cm +}} + +% Use @afourpaper to print on European A4 paper. +\def\afourpaper{{\globaldefs = 1 + \parskip = 3pt plus 2pt minus 1pt + \textleading = 13.2pt + % + % Double-side printing via postscript on Laserjet 4050 + % prints double-sided nicely when \bindingoffset=10mm and \hoffset=-6mm. + % To change the settings for a different printer or situation, adjust + % \normaloffset until the front-side and back-side texts align. Then + % do the same for \bindingoffset. You can set these for testing in + % your texinfo source file like this: + % @tex + % \global\normaloffset = -6mm + % \global\bindingoffset = 10mm + % @end tex + \internalpagesizes{51\baselineskip}{160mm} + {\voffset}{\hoffset}% + {\bindingoffset}{44pt}% + {297mm}{210mm}% + % + \tolerance = 700 + \hfuzz = 1pt + \contentsrightmargin = 0pt + \defbodyindent = 5mm +}} + +% Use @afivepaper to print on European A5 paper. +% From romildo@urano.iceb.ufop.br, 2 July 2000. +% He also recommends making @example and @lisp be small. +\def\afivepaper{{\globaldefs = 1 + \parskip = 2pt plus 1pt minus 0.1pt + \textleading = 12.5pt + % + \internalpagesizes{160mm}{120mm}% + {\voffset}{\hoffset}% + {\bindingoffset}{8pt}% + {210mm}{148mm}% + % + \lispnarrowing = 0.2in + \tolerance = 800 + \hfuzz = 1.2pt + \contentsrightmargin = 0pt + \defbodyindent = 2mm + \tableindent = 12mm +}} + +% A specific text layout, 24x15cm overall, intended for A4 paper. +\def\afourlatex{{\globaldefs = 1 + \afourpaper + \internalpagesizes{237mm}{150mm}% + {\voffset}{4.6mm}% + {\bindingoffset}{7mm}% + {297mm}{210mm}% + % + % Must explicitly reset to 0 because we call \afourpaper. + \globaldefs = 0 +}} + +% Use @afourwide to print on A4 paper in landscape format. +\def\afourwide{{\globaldefs = 1 + \afourpaper + \internalpagesizes{241mm}{165mm}% + {\voffset}{-2.95mm}% + {\bindingoffset}{7mm}% + {297mm}{210mm}% + \globaldefs = 0 +}} + +% @pagesizes TEXTHEIGHT[,TEXTWIDTH] +% Perhaps we should allow setting the margins, \topskip, \parskip, +% and/or leading, also. Or perhaps we should compute them somehow. +% +\def\pagesizes{\parsearg\pagesizesxxx} +\def\pagesizesxxx#1{\pagesizesyyy #1,,\finish} +\def\pagesizesyyy#1,#2,#3\finish{{% + \setbox0 = \hbox{\ignorespaces #2}\ifdim\wd0 > 0pt \hsize=#2\relax \fi + \globaldefs = 1 + % + \parskip = 3pt plus 2pt minus 1pt + \setleading{\textleading}% + % + \dimen0 = #1 + \advance\dimen0 by \voffset + % + \dimen2 = \hsize + \advance\dimen2 by \normaloffset + % + \internalpagesizes{#1}{\hsize}% + {\voffset}{\normaloffset}% + {\bindingoffset}{44pt}% + {\dimen0}{\dimen2}% +}} + +% Set default to letter. +% +\letterpaper + + +\message{and turning on texinfo input format.} + +% Define macros to output various characters with catcode for normal text. +\catcode`\"=\other +\catcode`\~=\other +\catcode`\^=\other +\catcode`\_=\other +\catcode`\|=\other +\catcode`\<=\other +\catcode`\>=\other +\catcode`\+=\other +\catcode`\$=\other +\def\normaldoublequote{"} +\def\normaltilde{~} +\def\normalcaret{^} +\def\normalunderscore{_} +\def\normalverticalbar{|} +\def\normalless{<} +\def\normalgreater{>} +\def\normalplus{+} +\def\normaldollar{$}%$ font-lock fix + +% This macro is used to make a character print one way in ttfont +% where it can probably just be output, and another way in other fonts, +% where something hairier probably needs to be done. +% +% #1 is what to print if we are indeed using \tt; #2 is what to print +% otherwise. Since all the Computer Modern typewriter fonts have zero +% interword stretch (and shrink), and it is reasonable to expect all +% typewriter fonts to have this, we can check that font parameter. +% +\def\ifusingtt#1#2{\ifdim \fontdimen3\font=0pt #1\else #2\fi} + +% Same as above, but check for italic font. Actually this also catches +% non-italic slanted fonts since it is impossible to distinguish them from +% italic fonts. But since this is only used by $ and it uses \sl anyway +% this is not a problem. +\def\ifusingit#1#2{\ifdim \fontdimen1\font>0pt #1\else #2\fi} + +% Turn off all special characters except @ +% (and those which the user can use as if they were ordinary). +% Most of these we simply print from the \tt font, but for some, we can +% use math or other variants that look better in normal text. + +\catcode`\"=\active +\def\activedoublequote{{\tt\char34}} +\let"=\activedoublequote +\catcode`\~=\active +\def~{{\tt\char126}} +\chardef\hat=`\^ +\catcode`\^=\active +\def^{{\tt \hat}} + +\catcode`\_=\active +\def_{\ifusingtt\normalunderscore\_} +% Subroutine for the previous macro. +\def\_{\leavevmode \kern.07em \vbox{\hrule width.3em height.1ex}\kern .07em } + +\catcode`\|=\active +\def|{{\tt\char124}} +\chardef \less=`\< +\catcode`\<=\active +\def<{{\tt \less}} +\chardef \gtr=`\> +\catcode`\>=\active +\def>{{\tt \gtr}} +\catcode`\+=\active +\def+{{\tt \char 43}} +\catcode`\$=\active +\def${\ifusingit{{\sl\$}}\normaldollar}%$ font-lock fix + +% Set up an active definition for =, but don't enable it most of the time. +{\catcode`\==\active +\global\def={{\tt \char 61}}} + +\catcode`+=\active +\catcode`\_=\active + +% If a .fmt file is being used, characters that might appear in a file +% name cannot be active until we have parsed the command line. +% So turn them off again, and have \everyjob (or @setfilename) turn them on. +% \otherifyactive is called near the end of this file. +\def\otherifyactive{\catcode`+=\other \catcode`\_=\other} + +\catcode`\@=0 + +% \rawbackslashxx outputs one backslash character in current font, +% as in \char`\\. +\global\chardef\rawbackslashxx=`\\ + +% \rawbackslash defines an active \ to do \rawbackslashxx. +% \otherbackslash defines an active \ to be a literal `\' character with +% catcode other. +{\catcode`\\=\active + @gdef@rawbackslash{@let\=@rawbackslashxx} + @gdef@otherbackslash{@let\=@realbackslash} +} + +% \realbackslash is an actual character `\' with catcode other. +{\catcode`\\=\other @gdef@realbackslash{\}} + +% \normalbackslash outputs one backslash in fixed width font. +\def\normalbackslash{{\tt\rawbackslashxx}} + +\catcode`\\=\active + +% Used sometimes to turn off (effectively) the active characters +% even after parsing them. +@def@turnoffactive{% + @let"=@normaldoublequote + @let\=@realbackslash + @let~=@normaltilde + @let^=@normalcaret + @let_=@normalunderscore + @let|=@normalverticalbar + @let<=@normalless + @let>=@normalgreater + @let+=@normalplus + @let$=@normaldollar %$ font-lock fix +} + +% Same as @turnoffactive except outputs \ as {\tt\char`\\} instead of +% the literal character `\'. (Thus, \ is not expandable when this is in +% effect.) +% +@def@normalturnoffactive{@turnoffactive @let\=@normalbackslash} + +% Make _ and + \other characters, temporarily. +% This is canceled by @fixbackslash. +@otherifyactive + +% If a .fmt file is being used, we don't want the `\input texinfo' to show up. +% That is what \eatinput is for; after that, the `\' should revert to printing +% a backslash. +% +@gdef@eatinput input texinfo{@fixbackslash} +@global@let\ = @eatinput + +% On the other hand, perhaps the file did not have a `\input texinfo'. Then +% the first `\{ in the file would cause an error. This macro tries to fix +% that, assuming it is called before the first `\' could plausibly occur. +% Also back turn on active characters that might appear in the input +% file name, in case not using a pre-dumped format. +% +@gdef@fixbackslash{% + @ifx\@eatinput @let\ = @normalbackslash @fi + @catcode`+=@active + @catcode`@_=@active +} + +% Say @foo, not \foo, in error messages. +@escapechar = `@@ + +% These look ok in all fonts, so just make them not special. +@catcode`@& = @other +@catcode`@# = @other +@catcode`@% = @other + +@c Set initial fonts. +@textfonts +@rm + + +@c Local variables: +@c eval: (add-hook 'write-file-hooks 'time-stamp) +@c page-delimiter: "^\\\\message" +@c time-stamp-start: "def\\\\texinfoversion{" +@c time-stamp-format: "%:y-%02m-%02d.%02H" +@c time-stamp-end: "}" +@c End: diff --git a/src/apps/bin/coreutils-5.0/doc/ChangeLog b/src/apps/bin/coreutils-5.0/doc/ChangeLog new file mode 100644 index 0000000000..dfe14bdb0b --- /dev/null +++ b/src/apps/bin/coreutils-5.0/doc/ChangeLog @@ -0,0 +1,435 @@ +2003-04-02 Jim Meyering + + * coreutils.texi (false invocation): Note that false exits + unsuccessfully even with --help and --version. + + * Makefile.am (check-texinfo): Don't fail if perl is missing. + Reported by Nelson Beebe. + +2003-03-27 Jim Meyering + + * coreutils.texi (printf invocation): Fix formatting bugs. + From Paul Eggert. + (sort invocation): Describe sort's --stable (-s) option. + +2003-03-13 Jim Meyering + + * coreutils.texi (shred invocation): Mention that --exact + is now the default for non-regular files. + +2003-03-02 Jim Meyering + + * coreutils.texi (Exit status): New section. + Suggestion from Michael Stone. + +2003-02-21 Jim Meyering + + * coreutils.texi (du invocation): Document --apparent-size. + Adjust documentation of --bytes (-b). + (stat invocation): Describe %B. + +2003-02-07 Richard Dawe + + * coreutils.texi: Use @command instead of @code for program names. + + * perm.texi (Mode Structure): Mention filesystem-specific + permissions and that mounting a filesystem as read-only may + override actual file permissions. Use @command instead + of @code for program names. + +2003-02-06 Jim Meyering + + * coreutils.texi: Adjust alignment and mention `file, text, shell' + on the `* Coreutils:...' dirently line. From Karl Berry. + +2003-02-05 Jim Meyering + + * Makefile.am (check-texinfo): Allow bare `POSIX' to be used on + direntry lines. + + * coreutils.texi: Use new form of @direntry. + Put unlink in its proper place. Adjust wording in some + dir entry descriptions, mainly so they fit in 80 columns. + Don't use mark-up like @acronym{POSIX} in direntries. + Mostly from Karl Berry. + +2003-01-25 Jim Meyering + + * coreutils.texi (cut invocation): Describe new functionality of + --output-delimiter=STR. + +2003-01-24 Jim Meyering + + * coreutils.texi (The cut command): Give an example of using cut -c + with an output delimiter. From Jan Nieuwenhuizen. + + * coreutils.texi (The cut command): Extend the new example a little. + (Formatting file timestamps): Fix typo: s/%M:S/%M:%S/. + + * coreutils.texi: Change each use of `Core-utils' to `Coreutils'. + From Karl Berry. + +2003-01-19 Jim Meyering + + * coreutils.texi (Which files are listed): Document new option: + --dereference-command-line-symlink-to-dir. + +2003-01-15 Paul Eggert + + Change ls -H back to the way it was yesterday, since this is + compatible with FreeBSD and the POSIX spec is confusing + and somewhat contradictory. + + * doc/coreutils.texi (Which files are listed, General output + formatting): Undo last change. + +2003-01-15 Jim Meyering + + * coreutils.texi (General output formatting): Reflect option name change: + s/--dereference-command-line/--dereference-command-line-symlink-to-dir/. + Say that this option changes how ls treats only symlinks to directories + specified on the command line. + +2002-08-27 Dmitry V. Levin + + * coreutils.texi: Document readlink. + +2002-12-14 Jim Meyering + + * coreutils.texi (mknod invocation): Specify how major and minor mode + numbers are interpreted. Report forwarded by Kristin E Thomas. + +2002-11-13 Jim Meyering + + * coreutils.texi (Examples of expr): Remove bogus `^'s. + Reported by Thomas Goerlich. + +2002-11-09 Jim Meyering + + * coreutils.texi (What information is listed) [--dired]: + Correct parts of --dired description. Reported by Andre Spiegel. + Include a lot more description, with examples. + +2002-11-06 Jim Meyering + + * coreutils.texi (printf invocation): Fix typo in index: + change \0x prefix to \x. + Change \xhhh to \xhh. + +2002-10-07 Paul Eggert + + Add support for locale-specific size indications (e.g., + thousands-separators) and for explicit size suffixes on output. + + * coreutils.texi (Block size): Say that: + This affects display format as well as block size. + Fractional block counts are rounded up. + ls file size blocksize defaults to 1. + A block size spec preceded by ' generates thousands separators. + A suffix without a preceding integer generates suffixes. + (tail invocation): 32k -> 32 KiB. + (What information is listed): ls -h is now equivalent to + ls --block-size=human, and ls -H is now equivalent to + ls --block-size=si. Displayed file size is now always affected by + --block-size. + +2002-09-13 Jim Meyering + + * coreutils.texi (tail invocation): In --sleep-interval=NUMBER, + NUMBER may now be a floating point number. + (stat invocation): Remove references to now-removed %S and %C. + (Time directives) [%S]: Explain why the range is [0..60]. + +2002-08-30 Jim Meyering + + * coreutils.texi [START-INFO-DIR-ENTRY]: Don't use sc{} on LHS. + Fix typo: s/permission/permissions/. From Michail Litvak. + +2002-08-02 Paul Eggert + + * coreutils.texi (uniq invocation): uniq now obeys LC_COLLATE. + +2002-07-29 Paul Eggert + + * coreutils.texi (nohup invocation): Change behavior to conform to + POSIX 1003.1-2001: + - Do not adjust scheduling priority. + - Redirects stderr to stdout, if stderr is not a terminal. + - Exit status is now 126 if command was found but not invoked, + 127 if nohup failed or if command was not found. + +2002-07-24 Jim Meyering + + * coreutils.texi (Time directives): Document %P, %R, %e, %F, + %g, %G, and %V + +2002-07-22 Martin Michlmayr + + * coreutils.texi (Formatting the file names): Document + that -N/--literal are equivalent to --quoting-style=literal. + Reported by Oskar Liljeblad as Debian bug#103612. + +2002-07-10 Jim Meyering + + * coreutils.texi (du invocation): s/PAT/PATTERN/. + From Martin Michlmayr. + +2002-07-08 Jim Meyering + + * coreutils.texi (cp invocation): Remove unnecessary "$@" in example; + Texinfo would render the @" as an umlaut over the following character. + From Paul Eggert. + * Makefile.am (check-texinfo): Check for the above. + +2002-07-06 Jim Meyering + + * coreutils.texi (stat invocation): Remove description of --secure. + +2002-07-03 Jim Meyering + + * coreutils.texi (stat invocation): Rename --link/-l + to --dereference/-L. Rewrite description of --dereference. + +2002-06-26 Paul Eggert + + * coreutils.texi (Putting the tools together): Don't mention egrep, + since it's not part of POSIX 1003.1-2001. + +2002-06-21 Jim Meyering + + * coreutils.texi (stat invocation): New section. From Michael Meskes. + +2002-05-19 Paul Eggert + + * coreutils.texi (ls invocation): Document new option: --author. + +2002-06-03 Jim Meyering + + * coreutils.texi (rm invocation): Add the warning (also in the --help + output) that the contents of a removed file are often recoverable. + +2002-05-27 Jim Meyering + + * Makefile.am (check-texinfo): Adapt to reflect that now we use + @acronym{POSIX}. + +2002-05-26 Jim Meyering + + * coreutils.texi: Use @acronym in place of most uses of @sc. + * getdate.texi (Date input formats): Likewise. + +2002-04-28 Jim Meyering + + * coreutils.texi: Change `@code{PROG}' to `@command{PROG}'. + +2002-04-28 Paul Eggert + + * coreutils.texi (kill invocation): Document the above. + Document POSIX signals better. + +2002-04-15 Jim Meyering + + * coreutils.texi: Document kill. + Written by Marcus Brinkmann. + +2002-04-13 Jim Meyering + + * coreutils.texi: Document link and unlink. + +2002-04-08 Jim Meyering + + * coreutils.texi: Use new directives, @copying and @insertcopying, + thus now requiring texinfo-4.2 to create the .info file. + +2002-02-26 Paul Eggert + + * coreutils.texi (File characteristic tests): Document the + behavior of test -nt and -ot when one of the files does not exist, + using the same behavior that is documented in ksh93. + +2002-03-05 Paul Eggert + + * coreutils.texi (cut invocation): Say that selected input is + written in the same order that it is read, and is written + exactly once. + +2002-03-03 Paul Eggert + + Make cp -r equivalent to cp -R. Add a new cp option --copy-contents + for people who want to emulate the traditional (and rarely desirable) + cp -r behavior. + + * coreutils.texi (cp invocation): Document this. + Fix some related minor bugs: --no-dereference is no longer + equivalent to -d, and --archive (-a) can override the other + symlink options. Warn that cp -R is not portable on symbolic + links unless you also specify -P. + +2002-03-02 Jim Meyering + + * coreutils.texi (cp invocation): Document that cp -r + preserves symlinks. Emphasize non-portability of cp -r. + +2002-02-27 Paul Eggert + + * coreutils.texi (Time directives): Add %N for nanoseconds. + This documents the recent change to 'ls'. + +2002-02-28 Jim Meyering + + * coreutils.texi (pr invocation): Reword to avoid using `:' + in an @opindex entry -- info doesn't permit it. + +2002-02-27 Paul Eggert + + * coreutils.texi (Formatting file timestamps): Document new + time-formatting method: --time-style=+FORMAT. + +2002-02-18 Paul Eggert + + * coreutils.texi (seq invocation): In the example, use "tail + -n 3", not "tail -3", to conform to POSIX 1003.1-2001. + +2002-02-17 Jim Meyering + + * coreutils.texi (tsort background): New section. + From Ian Lance Taylor. + (tsort invocation): Add a more realistic example. + +2002-02-15 Paul Eggert + + * coreutils.texi: Document _POSIX2_VERSION. + (Standards Conformance): New section. + +2002-01-24 Jim Meyering + + * coreutils.texi (START-INFO-DIR-ENTRY): Remove a few entries + and clean up a few others based on suggestions from Bob Proulx. + +2002-02-14 Paul Eggert + + Add support for POSIX 1003.1-2001, which requires removal for + support of obsolete "+" option syntax in sort, tail, and uniq. + * coreutils.texi: Document this. (Also, document a similar + change to "touch", for fileutils). + +2002-01-12 Jim Meyering + + * coreutils.texi (shred invocation): List some journaled filesystems. + +2001-11-10 Jim Meyering + + * coreutils.texi (Date directives): Document %u. + +2001-11-07 Paul Eggert + + * coreutils.texi (paste invocation): Give examples. + Thanks to Dan Jacobson for suggesting the examples. + +2001-11-05 Jim Meyering + + * coreutils.texi (sort invocation): Recommend setting LC_ALL=C, + not LC_COLLATE=C. Explain how the latter can cause problems. + Based on a message from Paul Eggert. + (ls invocation): Recommend setting LC_ALL=C, not LC_COLLATE=C. + +2001-10-21 Jim Meyering + + * coreutils.texi (cp invocation): Describe --reply=... + +2001-10-17 Jim Meyering + + * coreutils.texi (cp invocation): `cp --no-dereference' is + no longer equivalent to `cp -d'. + `cp -d' is equivalent to `--no-dereference --preserve=links'. + cp's -P option means --no-dereference, not --parents. + Describe new optional argument to --preserve. + Describe new option: --no-preserve=ATTRIBUTE_LIST. + +2001-09-23 Jim Meyering + + * Makefile.am (check-texinfo): Redirect stderr of `grep -w' to + /dev/null, so people with old versions of grep don't see the failure. + +2001-09-16 Jim Meyering + + * coreutils.texi (mv invocation): Describe new option: + --reply={yes,no,query}. Fix a few typos. + +2001-09-15 Paul Eggert + + * coreutils.texi (uniq invocation): The input need not + be sorted. Try to clarify -d versus -D versus -u. + +2001-09-12 Jim Meyering + + * coreutils.texi (tail invocation): Document new option: -F. + From Herbert Xu. + +2001-09-04 Paul Eggert + + * coreutils.texi (join invocation): Describe the GNU + extension to join, which does not require sorted input when + the input contains no unpairable lines. + +2001-09-03 Paul Eggert + + * coreutils.texi: + New 'uname' options -i or --hardware-platform, + and -o or --operating-system. + 'uname -a' now outputs -i and -o information at the end. + New uname option --kernel-version is an alias for -v. + Uname option --release has been renamed to --kernel-release, + and --sysname has been renamed to --kernel-name; + the old options will work for a while, but are no longer documented. + +2001-08-24 Herbert Xu + + * coreutils.texi (cut invocation): Document how cut treats lines + with no separators. + +2001-06-19 Paul Eggert + + * coreutils.texi: expr now uses LC_COLLATE for string comparison, + as per POSIX. + +2001-08-25 Jim Meyering + + * coreutils.texi: Use @option, rather than @samp everywhere. + +2001-06-21 Paul Eggert + + * coreutils.texi: 'expr' now requires '+' rather than 'quote' + to quote tokens. + +2001-07-14 Jim Meyering + + * coreutils.texi (cp invocation): Reflect 2001-07-08 change to + cp (via copy.c). + +2001-06-16 Jim Meyering + + * Makefile.am (info_TEXINFOS): Reflect renaming: s/omni-/core/. + * coreutils.texi: Likewise. + + * coreutils.texi: New, renamed from omni-utils.texi. + * omni-utils.texi: Removed, renamed to coreutils.texi. + + * omni-utils.texi (ls invocation): Mention the effect of locale. + Reported by Keith Thompson. + +2001-05-24 Jim Meyering + + * texinfo.tex: Update from master source. + + * omni-utils.texi (ls invocation): Document more clearly what ls + does when given no arguments. + +2001-05-21 Jim Meyering + + * textutils.texi: Remove file. + + * Makefile.am ($(DVIS), $(INFO_DEPS)): Depend on $(EXTRA_DIST). + (DISABLED_constants.texi): New rule -- disabled for now. + + This directory is now shared by fileutils, textutils, and sh-utils. diff --git a/src/apps/bin/coreutils-5.0/doc/Makefile b/src/apps/bin/coreutils-5.0/doc/Makefile new file mode 100644 index 0000000000..9e618fe5a0 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/doc/Makefile @@ -0,0 +1,457 @@ +# Makefile.in generated by automake 1.7.3 from Makefile.am. +# doc/Makefile. Generated from Makefile.in by configure. + +# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +# Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +srcdir = . +top_srcdir = .. + +pkgdatadir = $(datadir)/coreutils +pkglibdir = $(libdir)/coreutils +pkgincludedir = $(includedir)/coreutils +top_builddir = .. + +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +INSTALL = /bin/install -c +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +host_triplet = i586-pc-beos +ACLOCAL = ${SHELL} /boot/home/Development/current/src/apps/bin/coreutils-5.0/config/missing --run aclocal-1.7 +ALLOCA = +AMDEP_FALSE = # +AMDEP_TRUE = +AMTAR = ${SHELL} /boot/home/Development/current/src/apps/bin/coreutils-5.0/config/missing --run tar +AUTOCONF = ${SHELL} /boot/home/Development/current/src/apps/bin/coreutils-5.0/config/missing --run autoconf +AUTOHEADER = ${SHELL} /boot/home/Development/current/src/apps/bin/coreutils-5.0/config/missing --run autoheader +AUTOMAKE = ${SHELL} /boot/home/Development/current/src/apps/bin/coreutils-5.0/config/missing --run automake-1.7 +AWK = gawk +CC = gcc +CCDEPMODE = depmode=gcc +CFLAGS = -g -O2 +CPP = gcc -E +CPPFLAGS = +CYGPATH_W = echo +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DF_PROG = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = grep -E +EXEEXT = +FESETROUND_LIBM = +GETLOADAVG_LIBS = +GLIBC21 = no +GMSGFMT = : +GNU_PACKAGE = GNU coreutils +HELP2MAN = ${SHELL} /boot/home/Development/current/src/apps/bin/coreutils-5.0/config/missing --run help2man +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s +INTLLIBS = +KMEM_GROUP = +LDFLAGS = +LIBICONV = +LIBINTL = +LIBOBJS = fileblocks$U.o mkdir$U.o fnmatch$U.o strnlen$U.o ftw$U.o tsearch$U.o lchown$U.o chown$U.o mktime$U.o nanosleep$U.o group-member$U.o putenv$U.o error$U.o __fpending$U.o rename$U.o getcwd$U.o canonicalize$U.o regex$U.o getloadavg$U.o getusershell$U.o sig2str$U.o euidaccess$U.o rpmatch$U.o strndup$U.o strverscmp$U.o getpass$U.o memrchr$U.o fchdir-stub$U.o +LIBS = +LIB_CLOCK_GETTIME = +LIB_CRYPT = +LIB_NANOSLEEP = +LN_S = ln -s +LTLIBICONV = +LTLIBINTL = +LTLIBOBJS = fileblocks$U.lo mkdir$U.lo fnmatch$U.lo strnlen$U.lo ftw$U.lo tsearch$U.lo lchown$U.lo chown$U.lo mktime$U.lo nanosleep$U.lo group-member$U.lo putenv$U.lo error$U.lo __fpending$U.lo rename$U.lo getcwd$U.lo canonicalize$U.lo regex$U.lo getloadavg$U.lo getusershell$U.lo sig2str$U.lo euidaccess$U.lo rpmatch$U.lo strndup$U.lo strverscmp$U.lo getpass$U.lo memrchr$U.lo fchdir-stub$U.lo + +# The following is necessary if the package name is 8 characters or longer. +# If the info documentation would be split into 10 or more separate files, +# then this is necessary even if the package name is 7 characters long. +# +# Tell makeinfo to put everything in a single info file: .info. +# Otherwise, it would also generate files with names like .info-[123], +# and those names all map to one 14-byte name (.info-) on some crufty +# old systems. +MAKEINFO = makeinfo --no-split +MAN = uname.1 stty.1 +MKINSTALLDIRS = config/mkinstalldirs +MSGFMT = : +MSGMERGE = : +NEED_SETGID = false +OBJEXT = o +OPTIONAL_BIN_PROGS = uname$(EXEEXT) stty$(EXEEXT) +OPTIONAL_BIN_ZCRIPTS = +PACKAGE = coreutils +PACKAGE_BUGREPORT = bug-coreutils@gnu.org +PACKAGE_NAME = GNU coreutils +PACKAGE_STRING = GNU coreutils 5.0 +PACKAGE_TARNAME = coreutils +PACKAGE_VERSION = 5.0 +PATH_SEPARATOR = : +PERL = perl +POSUB = +POW_LIB = +RANLIB = ranlib +SEQ_LIBM = +SET_MAKE = +SHELL = /bin/sh +SQRT_LIBM = +STRIP = +U = +USE_NLS = no +VERSION = 5.0 +XGETTEXT = : +YACC = bison -y +ac_ct_CC = gcc +ac_ct_RANLIB = ranlib +ac_ct_STRIP = +am__fastdepCC_FALSE = +am__fastdepCC_TRUE = # +am__include = include +am__leading_dot = . +am__quote = +bindir = ${exec_prefix}/bin +build = i586-pc-beos +build_alias = +build_cpu = i586 +build_os = beos +build_vendor = pc +datadir = ${prefix}/share +exec_prefix = ${prefix} +host = i586-pc-beos +host_alias = +host_cpu = i586 +host_os = beos +host_vendor = pc +includedir = ${prefix}/include +infodir = ${prefix}/info +install_sh = /boot/home/Development/current/src/apps/bin/coreutils-5.0/config/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localstatedir = ${prefix}/var +mandir = ${prefix}/man +oldincludedir = /usr/include +prefix = /usr/local +program_transform_name = s,x,x, +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +sysconfdir = ${prefix}/etc +target_alias = +info_TEXINFOS = coreutils.texi + +EXTRA_DIST = perm.texi getdate.texi constants.texi doclicense.texi +subdir = doc +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +DIST_SOURCES = +TEXINFO_TEX = $(top_srcdir)/config/texinfo.tex +am__TEXINFO_TEX_DIR = $(top_srcdir)/config +INFO_DEPS = coreutils.info +DVIS = coreutils.dvi +PDFS = coreutils.pdf +PSS = coreutils.ps +TEXINFOS = coreutils.texi +DIST_COMMON = ChangeLog Makefile.am Makefile.in stamp-vti version.texi +all: all-am + +.SUFFIXES: +.SUFFIXES: .dvi .info .pdf .ps .texi +$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnits doc/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) + +.texi.info: + @rm -f $@ $@-[0-9] $@-[0-9][0-9] $(@:.info=).i[0-9] $(@:.info=).i[0-9][0-9] + $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) \ + -o $@ `test -f '$<' || echo '$(srcdir)/'`$< + +.texi.dvi: + TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \ + MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir)' \ + $(TEXI2DVI) `test -f '$<' || echo '$(srcdir)/'`$< + +.texi.pdf: + TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \ + MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir)' \ + $(TEXI2PDF) `test -f '$<' || echo '$(srcdir)/'`$< +coreutils.info: coreutils.texi version.texi +coreutils.dvi: coreutils.texi version.texi +coreutils.pdf: coreutils.texi version.texi +version.texi: stamp-vti +stamp-vti: coreutils.texi $(top_srcdir)/configure + @(dir=.; test -f ./coreutils.texi || dir=$(srcdir); \ + set `$(SHELL) $(top_srcdir)/config/mdate-sh $$dir/coreutils.texi`; \ + echo "@set UPDATED $$1 $$2 $$3"; \ + echo "@set UPDATED-MONTH $$2 $$3"; \ + echo "@set EDITION $(VERSION)"; \ + echo "@set VERSION $(VERSION)") > vti.tmp + @cmp -s vti.tmp version.texi \ + || (echo "Updating version.texi"; \ + cp vti.tmp version.texi) + -@rm -f vti.tmp + @cp version.texi $@ + +mostlyclean-vti: + -rm -f vti.tmp + +maintainer-clean-vti: + -rm -f stamp-vti version.texi +TEXI2DVI = texi2dvi + +TEXI2PDF = $(TEXI2DVI) --pdf --batch +DVIPS = dvips +.dvi.ps: + $(DVIPS) -o $@ $< + +uninstall-info-am: + $(PRE_UNINSTALL) + @if (install-info --version && \ + install-info --version | grep -i -v debian) >/dev/null 2>&1; then \ + list='$(INFO_DEPS)'; \ + for file in $$list; do \ + relfile=`echo "$$file" | sed 's|^.*/||'`; \ + echo " install-info --info-dir=$(DESTDIR)$(infodir) --remove $(DESTDIR)$(infodir)/$$relfile"; \ + install-info --info-dir=$(DESTDIR)$(infodir) --remove $(DESTDIR)$(infodir)/$$relfile; \ + done; \ + else :; fi + @$(NORMAL_UNINSTALL) + @list='$(INFO_DEPS)'; \ + for file in $$list; do \ + relfile=`echo "$$file" | sed 's|^.*/||'`; \ + relfile_i=`echo "$$relfile" | sed 's|\.info$$||;s|$$|.i|'`; \ + (if cd $(DESTDIR)$(infodir); then \ + echo " rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9])"; \ + rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]; \ + else :; fi); \ + done + +dist-info: $(INFO_DEPS) + list='$(INFO_DEPS)'; \ + for base in $$list; do \ + if test -f $$base; then d=.; else d=$(srcdir); fi; \ + for file in $$d/$$base*; do \ + relfile=`expr "$$file" : "$$d/\(.*\)"`; \ + test -f $(distdir)/$$relfile || \ + cp -p $$file $(distdir)/$$relfile; \ + done; \ + done + +mostlyclean-aminfo: + -rm -f coreutils.aux coreutils.cp coreutils.cps coreutils.fl coreutils.fn \ + coreutils.ky coreutils.log coreutils.op coreutils.pg \ + coreutils.tmp coreutils.toc coreutils.tp coreutils.tps \ + coreutils.vr coreutils.dvi coreutils.pdf coreutils.ps + +maintainer-clean-aminfo: + @list='$(INFO_DEPS)'; for i in $$list; do \ + i_i=`echo "$$i" | sed 's|\.info$$||;s|$$|.i|'`; \ + echo " rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]"; \ + rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + +top_distdir = .. +distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkinstalldirs) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ + if test -d $$d/$$file; then \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$(top_distdir)" distdir="$(distdir)" \ + dist-info +check-am: all-am +check: check-am +all-am: Makefile $(INFO_DEPS) + +installdirs: + $(mkinstalldirs) $(DESTDIR)$(infodir) + +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -rm -f Makefile $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: $(DVIS) + +info: info-am + +info-am: $(INFO_DEPS) + +install-data-am: install-info-am + +install-exec-am: + +install-info: install-info-am + +install-info-am: $(INFO_DEPS) + @$(NORMAL_INSTALL) + $(mkinstalldirs) $(DESTDIR)$(infodir) + @list='$(INFO_DEPS)'; \ + for file in $$list; do \ + if test -f $$file; then d=.; else d=$(srcdir); fi; \ + file_i=`echo "$$file" | sed 's|\.info$$||;s|$$|.i|'`; \ + for ifile in $$d/$$file $$d/$$file-[0-9] $$d/$$file-[0-9][0-9] \ + $$d/$$file_i[0-9] $$d/$$file_i[0-9][0-9] ; do \ + if test -f $$ifile; then \ + relfile=`echo "$$ifile" | sed 's|^.*/||'`; \ + echo " $(INSTALL_DATA) $$ifile $(DESTDIR)$(infodir)/$$relfile"; \ + $(INSTALL_DATA) $$ifile $(DESTDIR)$(infodir)/$$relfile; \ + else : ; fi; \ + done; \ + done + @$(POST_INSTALL) + @if (install-info --version && \ + install-info --version | grep -i -v debian) >/dev/null 2>&1; then \ + list='$(INFO_DEPS)'; \ + for file in $$list; do \ + relfile=`echo "$$file" | sed 's|^.*/||'`; \ + echo " install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/$$relfile";\ + install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/$$relfile || :;\ + done; \ + else : ; fi +install-man: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + +maintainer-clean-am: distclean-am maintainer-clean-aminfo \ + maintainer-clean-generic maintainer-clean-vti + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-aminfo mostlyclean-generic mostlyclean-vti + +pdf: pdf-am + +pdf-am: $(PDFS) + +ps: ps-am + +ps-am: $(PSS) + +uninstall-am: uninstall-info-am + +.PHONY: all all-am check check-am clean clean-generic dist-info \ + distclean distclean-generic distdir dvi dvi-am info info-am \ + install install-am install-data install-data-am install-exec \ + install-exec-am install-info install-info-am install-man \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-aminfo \ + maintainer-clean-generic maintainer-clean-vti mostlyclean \ + mostlyclean-aminfo mostlyclean-generic mostlyclean-vti pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-info-am + + +# Remove `DISABLED_' when fileutils, textutils, and sh-utils have +# all been merged into one package. +DISABLED_constants.texi: $(top_srcdir)/src/tail.c + LC_ALL=C \ + sed -n -e 's/^#define \(DEFAULT_MAX[_A-Z]*\) \(.*\)/@set \1 \2/p' \ + $(top_srcdir)/src/tail.c > t-$@ + mv t-$@ $@ + +# Uncomment this when fileutils, textutils, and sh-utils have +# all been merged into one package. +# MAINTAINERCLEANFILES = constants.texi + +$(DVIS): $(EXTRA_DIST) +$(INFO_DEPS): $(EXTRA_DIST) + +# List words/regexps here that should not appear in the texinfo documentation. +check-texinfo: + fail=0; \ + grep timezone $(srcdir)/*.texi && fail=1; \ + grep '\$$@"' $(srcdir)/*.texi && fail=1; \ + $(PERL) -e 1 2> /dev/null && { $(PERL) -ne \ + '/\bPOSIX\b/ && !/\@acronym{POSIX}/ && !/^\* / || /{posix}/ and print,exit 1' \ + $(srcdir)/*.texi 2> /dev/null || fail=1; }; \ + exit $$fail + +check: check-texinfo +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/src/apps/bin/coreutils-5.0/doc/Makefile.am b/src/apps/bin/coreutils-5.0/doc/Makefile.am new file mode 100644 index 0000000000..aacf1b419a --- /dev/null +++ b/src/apps/bin/coreutils-5.0/doc/Makefile.am @@ -0,0 +1,41 @@ +## Process this file with automake to produce Makefile.in -*-Makefile-*- +info_TEXINFOS = coreutils.texi + +EXTRA_DIST = perm.texi getdate.texi constants.texi doclicense.texi + +# The following is necessary if the package name is 8 characters or longer. +# If the info documentation would be split into 10 or more separate files, +# then this is necessary even if the package name is 7 characters long. +# +# Tell makeinfo to put everything in a single info file: .info. +# Otherwise, it would also generate files with names like .info-[123], +# and those names all map to one 14-byte name (.info-) on some crufty +# old systems. +MAKEINFO = makeinfo --no-split + +# Remove `DISABLED_' when fileutils, textutils, and sh-utils have +# all been merged into one package. +DISABLED_constants.texi: $(top_srcdir)/src/tail.c + LC_ALL=C \ + sed -n -e 's/^#define \(DEFAULT_MAX[_A-Z]*\) \(.*\)/@set \1 \2/p' \ + $(top_srcdir)/src/tail.c > t-$@ + mv t-$@ $@ + +# Uncomment this when fileutils, textutils, and sh-utils have +# all been merged into one package. +# MAINTAINERCLEANFILES = constants.texi + +$(DVIS): $(EXTRA_DIST) +$(INFO_DEPS): $(EXTRA_DIST) + +# List words/regexps here that should not appear in the texinfo documentation. +check-texinfo: + fail=0; \ + grep timezone $(srcdir)/*.texi && fail=1; \ + grep '\$$@"' $(srcdir)/*.texi && fail=1; \ + $(PERL) -e 1 2> /dev/null && { $(PERL) -ne \ + '/\bPOSIX\b/ && !/\@acronym{POSIX}/ && !/^\* / || /{posix}/ and print,exit 1' \ + $(srcdir)/*.texi 2> /dev/null || fail=1; }; \ + exit $$fail + +check: check-texinfo diff --git a/src/apps/bin/coreutils-5.0/doc/Makefile.in b/src/apps/bin/coreutils-5.0/doc/Makefile.in new file mode 100644 index 0000000000..39a62402c2 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/doc/Makefile.in @@ -0,0 +1,457 @@ +# Makefile.in generated by automake 1.7.3 from Makefile.am. +# @configure_input@ + +# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +# Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +top_builddir = .. + +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +INSTALL = @INSTALL@ +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +host_triplet = @host@ +ACLOCAL = @ACLOCAL@ +ALLOCA = @ALLOCA@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DF_PROG = @DF_PROG@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FESETROUND_LIBM = @FESETROUND_LIBM@ +GETLOADAVG_LIBS = @GETLOADAVG_LIBS@ +GLIBC21 = @GLIBC21@ +GMSGFMT = @GMSGFMT@ +GNU_PACKAGE = @GNU_PACKAGE@ +HELP2MAN = @HELP2MAN@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INTLLIBS = @INTLLIBS@ +KMEM_GROUP = @KMEM_GROUP@ +LDFLAGS = @LDFLAGS@ +LIBICONV = @LIBICONV@ +LIBINTL = @LIBINTL@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIB_CLOCK_GETTIME = @LIB_CLOCK_GETTIME@ +LIB_CRYPT = @LIB_CRYPT@ +LIB_NANOSLEEP = @LIB_NANOSLEEP@ +LN_S = @LN_S@ +LTLIBICONV = @LTLIBICONV@ +LTLIBINTL = @LTLIBINTL@ +LTLIBOBJS = @LTLIBOBJS@ + +# The following is necessary if the package name is 8 characters or longer. +# If the info documentation would be split into 10 or more separate files, +# then this is necessary even if the package name is 7 characters long. +# +# Tell makeinfo to put everything in a single info file: .info. +# Otherwise, it would also generate files with names like .info-[123], +# and those names all map to one 14-byte name (.info-) on some crufty +# old systems. +MAKEINFO = makeinfo --no-split +MAN = @MAN@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGMERGE = @MSGMERGE@ +NEED_SETGID = @NEED_SETGID@ +OBJEXT = @OBJEXT@ +OPTIONAL_BIN_PROGS = @OPTIONAL_BIN_PROGS@ +OPTIONAL_BIN_ZCRIPTS = @OPTIONAL_BIN_ZCRIPTS@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PERL = @PERL@ +POSUB = @POSUB@ +POW_LIB = @POW_LIB@ +RANLIB = @RANLIB@ +SEQ_LIBM = @SEQ_LIBM@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +SQRT_LIBM = @SQRT_LIBM@ +STRIP = @STRIP@ +U = @U@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +YACC = @YACC@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_RANLIB = @ac_ct_RANLIB@ +ac_ct_STRIP = @ac_ct_STRIP@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +datadir = @datadir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +oldincludedir = @oldincludedir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +info_TEXINFOS = coreutils.texi + +EXTRA_DIST = perm.texi getdate.texi constants.texi doclicense.texi +subdir = doc +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +DIST_SOURCES = +TEXINFO_TEX = $(top_srcdir)/config/texinfo.tex +am__TEXINFO_TEX_DIR = $(top_srcdir)/config +INFO_DEPS = coreutils.info +DVIS = coreutils.dvi +PDFS = coreutils.pdf +PSS = coreutils.ps +TEXINFOS = coreutils.texi +DIST_COMMON = ChangeLog Makefile.am Makefile.in stamp-vti version.texi +all: all-am + +.SUFFIXES: +.SUFFIXES: .dvi .info .pdf .ps .texi +$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnits doc/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) + +.texi.info: + @rm -f $@ $@-[0-9] $@-[0-9][0-9] $(@:.info=).i[0-9] $(@:.info=).i[0-9][0-9] + $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) \ + -o $@ `test -f '$<' || echo '$(srcdir)/'`$< + +.texi.dvi: + TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \ + MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir)' \ + $(TEXI2DVI) `test -f '$<' || echo '$(srcdir)/'`$< + +.texi.pdf: + TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \ + MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir)' \ + $(TEXI2PDF) `test -f '$<' || echo '$(srcdir)/'`$< +coreutils.info: coreutils.texi version.texi +coreutils.dvi: coreutils.texi version.texi +coreutils.pdf: coreutils.texi version.texi +version.texi: stamp-vti +stamp-vti: coreutils.texi $(top_srcdir)/configure + @(dir=.; test -f ./coreutils.texi || dir=$(srcdir); \ + set `$(SHELL) $(top_srcdir)/config/mdate-sh $$dir/coreutils.texi`; \ + echo "@set UPDATED $$1 $$2 $$3"; \ + echo "@set UPDATED-MONTH $$2 $$3"; \ + echo "@set EDITION $(VERSION)"; \ + echo "@set VERSION $(VERSION)") > vti.tmp + @cmp -s vti.tmp version.texi \ + || (echo "Updating version.texi"; \ + cp vti.tmp version.texi) + -@rm -f vti.tmp + @cp version.texi $@ + +mostlyclean-vti: + -rm -f vti.tmp + +maintainer-clean-vti: + -rm -f stamp-vti version.texi +TEXI2DVI = texi2dvi + +TEXI2PDF = $(TEXI2DVI) --pdf --batch +DVIPS = dvips +.dvi.ps: + $(DVIPS) -o $@ $< + +uninstall-info-am: + $(PRE_UNINSTALL) + @if (install-info --version && \ + install-info --version | grep -i -v debian) >/dev/null 2>&1; then \ + list='$(INFO_DEPS)'; \ + for file in $$list; do \ + relfile=`echo "$$file" | sed 's|^.*/||'`; \ + echo " install-info --info-dir=$(DESTDIR)$(infodir) --remove $(DESTDIR)$(infodir)/$$relfile"; \ + install-info --info-dir=$(DESTDIR)$(infodir) --remove $(DESTDIR)$(infodir)/$$relfile; \ + done; \ + else :; fi + @$(NORMAL_UNINSTALL) + @list='$(INFO_DEPS)'; \ + for file in $$list; do \ + relfile=`echo "$$file" | sed 's|^.*/||'`; \ + relfile_i=`echo "$$relfile" | sed 's|\.info$$||;s|$$|.i|'`; \ + (if cd $(DESTDIR)$(infodir); then \ + echo " rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9])"; \ + rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]; \ + else :; fi); \ + done + +dist-info: $(INFO_DEPS) + list='$(INFO_DEPS)'; \ + for base in $$list; do \ + if test -f $$base; then d=.; else d=$(srcdir); fi; \ + for file in $$d/$$base*; do \ + relfile=`expr "$$file" : "$$d/\(.*\)"`; \ + test -f $(distdir)/$$relfile || \ + cp -p $$file $(distdir)/$$relfile; \ + done; \ + done + +mostlyclean-aminfo: + -rm -f coreutils.aux coreutils.cp coreutils.cps coreutils.fl coreutils.fn \ + coreutils.ky coreutils.log coreutils.op coreutils.pg \ + coreutils.tmp coreutils.toc coreutils.tp coreutils.tps \ + coreutils.vr coreutils.dvi coreutils.pdf coreutils.ps + +maintainer-clean-aminfo: + @list='$(INFO_DEPS)'; for i in $$list; do \ + i_i=`echo "$$i" | sed 's|\.info$$||;s|$$|.i|'`; \ + echo " rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]"; \ + rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + +top_distdir = .. +distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkinstalldirs) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ + if test -d $$d/$$file; then \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$(top_distdir)" distdir="$(distdir)" \ + dist-info +check-am: all-am +check: check-am +all-am: Makefile $(INFO_DEPS) + +installdirs: + $(mkinstalldirs) $(DESTDIR)$(infodir) + +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -rm -f Makefile $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: $(DVIS) + +info: info-am + +info-am: $(INFO_DEPS) + +install-data-am: install-info-am + +install-exec-am: + +install-info: install-info-am + +install-info-am: $(INFO_DEPS) + @$(NORMAL_INSTALL) + $(mkinstalldirs) $(DESTDIR)$(infodir) + @list='$(INFO_DEPS)'; \ + for file in $$list; do \ + if test -f $$file; then d=.; else d=$(srcdir); fi; \ + file_i=`echo "$$file" | sed 's|\.info$$||;s|$$|.i|'`; \ + for ifile in $$d/$$file $$d/$$file-[0-9] $$d/$$file-[0-9][0-9] \ + $$d/$$file_i[0-9] $$d/$$file_i[0-9][0-9] ; do \ + if test -f $$ifile; then \ + relfile=`echo "$$ifile" | sed 's|^.*/||'`; \ + echo " $(INSTALL_DATA) $$ifile $(DESTDIR)$(infodir)/$$relfile"; \ + $(INSTALL_DATA) $$ifile $(DESTDIR)$(infodir)/$$relfile; \ + else : ; fi; \ + done; \ + done + @$(POST_INSTALL) + @if (install-info --version && \ + install-info --version | grep -i -v debian) >/dev/null 2>&1; then \ + list='$(INFO_DEPS)'; \ + for file in $$list; do \ + relfile=`echo "$$file" | sed 's|^.*/||'`; \ + echo " install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/$$relfile";\ + install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/$$relfile || :;\ + done; \ + else : ; fi +install-man: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + +maintainer-clean-am: distclean-am maintainer-clean-aminfo \ + maintainer-clean-generic maintainer-clean-vti + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-aminfo mostlyclean-generic mostlyclean-vti + +pdf: pdf-am + +pdf-am: $(PDFS) + +ps: ps-am + +ps-am: $(PSS) + +uninstall-am: uninstall-info-am + +.PHONY: all all-am check check-am clean clean-generic dist-info \ + distclean distclean-generic distdir dvi dvi-am info info-am \ + install install-am install-data install-data-am install-exec \ + install-exec-am install-info install-info-am install-man \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-aminfo \ + maintainer-clean-generic maintainer-clean-vti mostlyclean \ + mostlyclean-aminfo mostlyclean-generic mostlyclean-vti pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-info-am + + +# Remove `DISABLED_' when fileutils, textutils, and sh-utils have +# all been merged into one package. +DISABLED_constants.texi: $(top_srcdir)/src/tail.c + LC_ALL=C \ + sed -n -e 's/^#define \(DEFAULT_MAX[_A-Z]*\) \(.*\)/@set \1 \2/p' \ + $(top_srcdir)/src/tail.c > t-$@ + mv t-$@ $@ + +# Uncomment this when fileutils, textutils, and sh-utils have +# all been merged into one package. +# MAINTAINERCLEANFILES = constants.texi + +$(DVIS): $(EXTRA_DIST) +$(INFO_DEPS): $(EXTRA_DIST) + +# List words/regexps here that should not appear in the texinfo documentation. +check-texinfo: + fail=0; \ + grep timezone $(srcdir)/*.texi && fail=1; \ + grep '\$$@"' $(srcdir)/*.texi && fail=1; \ + $(PERL) -e 1 2> /dev/null && { $(PERL) -ne \ + '/\bPOSIX\b/ && !/\@acronym{POSIX}/ && !/^\* / || /{posix}/ and print,exit 1' \ + $(srcdir)/*.texi 2> /dev/null || fail=1; }; \ + exit $$fail + +check: check-texinfo +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/src/apps/bin/coreutils-5.0/doc/constants.texi b/src/apps/bin/coreutils-5.0/doc/constants.texi new file mode 100644 index 0000000000..b5cef48cd2 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/doc/constants.texi @@ -0,0 +1,2 @@ +@set DEFAULT_MAX_N_UNCHANGED_STATS_BETWEEN_OPENS 5 +@set DEFAULT_MAX_N_CONSECUTIVE_SIZE_CHANGES 200 diff --git a/src/apps/bin/coreutils-5.0/doc/coreutils.info b/src/apps/bin/coreutils-5.0/doc/coreutils.info new file mode 100644 index 0000000000..b62c6fcba2 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/doc/coreutils.info @@ -0,0 +1,13251 @@ +This is coreutils.info, produced by makeinfo version 4.5 from +coreutils.texi. + +INFO-DIR-SECTION Basics +START-INFO-DIR-ENTRY +* Coreutils: (coreutils). Core GNU (file, text, shell) utilities. +* Common options: (coreutils)Common options. Common options. +* File permissions: (coreutils)File permissions. Access modes. +* Date input formats: (coreutils)Date input formats. +END-INFO-DIR-ENTRY + +INFO-DIR-SECTION Individual utilities +START-INFO-DIR-ENTRY +* basename: (coreutils)basename invocation. Strip directory and suffix. +* cat: (coreutils)cat invocation. Concatenate and write files. +* chgrp: (coreutils)chgrp invocation. Change file groups. +* chmod: (coreutils)chmod invocation. Change file permissions. +* chown: (coreutils)chown invocation. Change file owners/groups. +* chroot: (coreutils)chroot invocation. Specify the root directory. +* cksum: (coreutils)cksum invocation. Print POSIX CRC checksum. +* comm: (coreutils)comm invocation. Compare sorted files by line. +* cp: (coreutils)cp invocation. Copy files. +* csplit: (coreutils)csplit invocation. Split by context. +* cut: (coreutils)cut invocation. Print selected parts of lines. +* date: (coreutils)date invocation. Print/set system date and time. +* dd: (coreutils)dd invocation. Copy and convert a file. +* df: (coreutils)df invocation. Report filesystem disk usage. +* dir: (coreutils)dir invocation. List directories briefly. +* dircolors: (coreutils)dircolors invocation. Color setup for ls. +* dirname: (coreutils)dirname invocation. Strip non-directory suffix. +* du: (coreutils)du invocation. Report on disk usage. +* echo: (coreutils)echo invocation. Print a line of text. +* env: (coreutils)env invocation. Modify the environment. +* expand: (coreutils)expand invocation. Convert tabs to spaces. +* expr: (coreutils)expr invocation. Evaluate expressions. +* factor: (coreutils)factor invocation. Print prime factors +* false: (coreutils)false invocation. Do nothing, unsuccessfully. +* fmt: (coreutils)fmt invocation. Reformat paragraph text. +* fold: (coreutils)fold invocation. Wrap long input lines. +* groups: (coreutils)groups invocation. Print group names a user is in. +* head: (coreutils)head invocation. Output the first part of files. +* hostid: (coreutils)hostid invocation. Print numeric host identifier. +* hostname: (coreutils)hostname invocation. Print or set system name. +* id: (coreutils)id invocation. Print real/effective uid/gid. +* install: (coreutils)install invocation. Copy and change attributes. +* join: (coreutils)join invocation. Join lines on a common field. +* kill: (coreutils)kill invocation. Send a signal to processes. +* link: (coreutils)link invocation. Make hard links between files. +* ln: (coreutils)ln invocation. Make links between files. +* logname: (coreutils)logname invocation. Print current login name. +* ls: (coreutils)ls invocation. List directory contents. +* md5sum: (coreutils)md5sum invocation. Print or check message-digests. +* mkdir: (coreutils)mkdir invocation. Create directories. +* mkfifo: (coreutils)mkfifo invocation. Create FIFOs (named pipes). +* mknod: (coreutils)mknod invocation. Create special files. +* mv: (coreutils)mv invocation. Rename files. +* nice: (coreutils)nice invocation. Modify scheduling priority. +* nl: (coreutils)nl invocation. Number lines and write files. +* nohup: (coreutils)nohup invocation. Immunize to hangups. +* od: (coreutils)od invocation. Dump files in octal, etc. +* paste: (coreutils)paste invocation. Merge lines of files. +* pathchk: (coreutils)pathchk invocation. Check file name portability. +* pr: (coreutils)pr invocation. Paginate or columnate files. +* printenv: (coreutils)printenv invocation. Print environment variables. +* printf: (coreutils)printf invocation. Format and print data. +* ptx: (coreutils)ptx invocation. Produce permuted indexes. +* pwd: (coreutils)pwd invocation. Print working directory. +* readlink: (coreutils)readlink invocation. Print referent of a symlink. +* rm: (coreutils)rm invocation. Remove files. +* rmdir: (coreutils)rmdir invocation. Remove empty directories. +* seq: (coreutils)seq invocation. Print numeric sequences +* shred: (coreutils)shred invocation. Remove files more securely. +* sleep: (coreutils)sleep invocation. Delay for a specified time. +* sort: (coreutils)sort invocation. Sort text files. +* split: (coreutils)split invocation. Split into fixed-size pieces. +* stat: (coreutils)stat invocation. Report file(system) status. +* stty: (coreutils)stty invocation. Print/change terminal settings. +* su: (coreutils)su invocation. Modify user and group id. +* sum: (coreutils)sum invocation. Print traditional checksum. +* sync: (coreutils)sync invocation. Synchronize memory and disk. +* tac: (coreutils)tac invocation. Reverse files. +* tail: (coreutils)tail invocation. Output the last part of files. +* tee: (coreutils)tee invocation. Redirect to multiple files. +* test: (coreutils)test invocation. File/string tests. +* touch: (coreutils)touch invocation. Change file timestamps. +* tr: (coreutils)tr invocation. Translate characters. +* true: (coreutils)true invocation. Do nothing, successfully. +* tsort: (coreutils)tsort invocation. Topological sort. +* tty: (coreutils)tty invocation. Print terminal name. +* uname: (coreutils)uname invocation. Print system information. +* unexpand: (coreutils)unexpand invocation. Convert spaces to tabs. +* uniq: (coreutils)uniq invocation. Uniquify files. +* unlink: (coreutils)unlink invocation. Removal via unlink(2). +* users: (coreutils)users invocation. Print current user names. +* vdir: (coreutils)vdir invocation. List directories verbosely. +* wc: (coreutils)wc invocation. Byte, word, and line counts. +* who: (coreutils)who invocation. Print who is logged in. +* whoami: (coreutils)whoami invocation. Print effective user id. +* yes: (coreutils)yes invocation. Print a string indefinitely. +END-INFO-DIR-ENTRY + +This manual documents version 5.0 of the GNU core utilities, including +the standard programs for text and file manipulation. + + Copyright (C) 1994, 1995, 1996, 2000, 2001, 2002, 2003 Free Software +Foundation, Inc. + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, + Version 1.1 or any later version published by the Free Software + Foundation; with no Invariant Sections, with no Front-Cover Texts, + and with no Back-Cover Texts. A copy of the license is included + in the section entitled "GNU Free Documentation License". + + +File: coreutils.info, Node: Top, Next: Introduction, Up: (dir) + +GNU Coreutils +************* + +This manual documents version 5.0 of the GNU core utilities, including +the standard programs for text and file manipulation. + + Copyright (C) 1994, 1995, 1996, 2000, 2001, 2002, 2003 Free Software +Foundation, Inc. + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, + Version 1.1 or any later version published by the Free Software + Foundation; with no Invariant Sections, with no Front-Cover Texts, + and with no Back-Cover Texts. A copy of the license is included + in the section entitled "GNU Free Documentation License". + +* Menu: + +* Introduction:: Caveats, overview, and authors. +* Common options:: Common options. +* Output of entire files:: cat tac nl od +* Formatting file contents:: fmt pr fold +* Output of parts of files:: head tail split csplit +* Summarizing files:: wc sum cksum md5sum +* Operating on sorted files:: sort uniq comm ptx tsort +* Operating on fields within a line:: cut paste join +* Operating on characters:: tr expand unexpand +* Directory listing:: ls dir vdir d v dircolors +* Basic operations:: cp dd install mv rm shred +* Special file types:: ln mkdir rmdir mkfifo mknod +* Changing file attributes:: chgrp chmod chown touch +* Disk usage:: df du stat sync +* Printing text:: echo printf yes +* Conditions:: false true test expr +* Redirection:: tee +* File name manipulation:: dirname basename pathchk +* Working context:: pwd stty printenv tty +* User information:: id logname whoami groups users who +* System context:: date uname hostname +* Modified command invocation:: chroot env nice nohup su +* Process control:: kill +* Delaying:: sleep +* Numeric operations:: factor seq +* File permissions:: Access modes. +* Date input formats:: Specifying date strings. +* Opening the software toolbox:: The software tools philosophy. +* GNU Free Documentation License:: The license for this documentation. +* Index:: General index. + + --- The Detailed Node Listing --- + +Common Options + +* Exit status:: Indicating program success or failure. +* Backup options:: Backup options +* Block size:: Block size +* Target directory:: Target directory +* Trailing slashes:: Trailing slashes +* Standards conformance:: Standards conformance + +Output of entire files + +* cat invocation:: Concatenate and write files. +* tac invocation:: Concatenate and write files in reverse. +* nl invocation:: Number lines and write files. +* od invocation:: Write files in octal or other formats. + +Formatting file contents + +* fmt invocation:: Reformat paragraph text. +* pr invocation:: Paginate or columnate files for printing. +* fold invocation:: Wrap input lines to fit in specified width. + +Output of parts of files + +* head invocation:: Output the first part of files. +* tail invocation:: Output the last part of files. +* split invocation:: Split a file into fixed-size pieces. +* csplit invocation:: Split a file into context-determined pieces. + +Summarizing files + +* wc invocation:: Print byte, word, and line counts. +* sum invocation:: Print checksum and block counts. +* cksum invocation:: Print CRC checksum and byte counts. +* md5sum invocation:: Print or check message-digests. + +Operating on sorted files + +* sort invocation:: Sort text files. +* uniq invocation:: Uniquify files. +* comm invocation:: Compare two sorted files line by line. +* ptx invocation:: Produce a permuted index of file contents. +* tsort invocation:: Topological sort. + +`ptx': Produce permuted indexes + +* General options in ptx:: Options which affect general program behavior. +* Charset selection in ptx:: Underlying character set considerations. +* Input processing in ptx:: Input fields, contexts, and keyword selection. +* Output formatting in ptx:: Types of output format, and sizing the fields. +* Compatibility in ptx:: The GNU extensions to `ptx' + +Operating on fields within a line + +* cut invocation:: Print selected parts of lines. +* paste invocation:: Merge lines of files. +* join invocation:: Join lines on a common field. + +Operating on characters + +* tr invocation:: Translate, squeeze, and/or delete characters. +* expand invocation:: Convert tabs to spaces. +* unexpand invocation:: Convert spaces to tabs. + +`tr': Translate, squeeze, and/or delete characters + +* Character sets:: Specifying sets of characters. +* Translating:: Changing one characters to another. +* Squeezing:: Squeezing repeats and deleting. +* Warnings in tr:: Warning messages. + +Directory listing + +* ls invocation:: List directory contents +* dir invocation:: Briefly list directory contents +* vdir invocation:: Verbosely list directory contents +* dircolors invocation:: Color setup for `ls' + +`ls': List directory contents + +* Which files are listed:: Which files are listed +* What information is listed:: What information is listed +* Sorting the output:: Sorting the output +* More details about version sort:: More details about version sort +* General output formatting:: General output formatting +* Formatting the file names:: Formatting the file names + +Basic operations + +* cp invocation:: Copy files and directories +* dd invocation:: Convert and copy a file +* install invocation:: Copy files and set attributes +* mv invocation:: Move (rename) files +* rm invocation:: Remove files or directories +* shred invocation:: Remove files more securely + +Special file types + +* link invocation:: Make a hard link via the link syscall +* ln invocation:: Make links between files +* mkdir invocation:: Make directories +* mkfifo invocation:: Make FIFOs (named pipes) +* mknod invocation:: Make block or character special files +* readlink invocation:: Print the referent of a symbolic link +* rmdir invocation:: Remove empty directories +* unlink invocation:: Remove files via unlink syscall + +Changing file attributes + +* chown invocation:: Change file owner and group +* chgrp invocation:: Change group ownership +* chmod invocation:: Change access permissions +* touch invocation:: Change file timestamps + +Disk usage + +* df invocation:: Report filesystem disk space usage +* du invocation:: Estimate file space usage +* stat invocation:: Report file or filesystem status +* sync invocation:: Synchronize data on disk with memory + +Printing text + +* echo invocation:: Print a line of text +* printf invocation:: Format and print data +* yes invocation:: Print a string until interrupted + +Conditions + +* false invocation:: Do nothing, unsuccessfully +* true invocation:: Do nothing, successfully +* test invocation:: Check file types and compare values +* expr invocation:: Evaluate expressions + +`test': Check file types and compare values + +* File type tests:: File type tests +* Access permission tests:: Access permission tests +* File characteristic tests:: File characteristic tests +* String tests:: String tests +* Numeric tests:: Numeric tests + +`expr': Evaluate expression + +* String expressions:: + : match substr index length +* Numeric expressions:: + - * / % +* Relations for expr:: | & < <= = == != >= > +* Examples of expr:: Examples of using `expr' + +Redirection + +* tee invocation:: Redirect output to multiple files + +File name manipulation + +* basename invocation:: Strip directory and suffix from a file name +* dirname invocation:: Strip non-directory suffix from a file name +* pathchk invocation:: Check file name portability + +Working context + +* pwd invocation:: Print working directory +* stty invocation:: Print or change terminal characteristics +* printenv invocation:: Print all or some environment variables +* tty invocation:: Print file name of terminal on standard input + +`stty': Print or change terminal characteristics + +* Control:: Control settings +* Input:: Input settings +* Output:: Output settings +* Local:: Local settings +* Combination:: Combination settings +* Characters:: Special characters +* Special:: Special settings + +User information + +* id invocation:: Print real and effective uid and gid +* logname invocation:: Print current login name +* whoami invocation:: Print effective user id +* groups invocation:: Print group names a user is in +* users invocation:: Print login names of users currently logged in +* who invocation:: Print who is currently logged in + +System context + +* date invocation:: Print or set system date and time +* uname invocation:: Print system information +* hostname invocation:: Print or set system name +* hostid invocation:: Print numeric host identifier. + +`date': Print or set system date and time + +* Time directives:: Time directives +* Date directives:: Date directives +* Literal directives:: Literal directives +* Padding:: Padding +* Setting the time:: Setting the time +* Options for date:: Options for `date' +* Examples of date:: Examples of `date' + +Modified command invocation + +* chroot invocation:: Run a command with a different root directory +* env invocation:: Run a command in a modified environment +* nice invocation:: Run a command with modified scheduling priority +* nohup invocation:: Run a command immune to hangups +* su invocation:: Run a command with substitute user and group id + +Process control + +* kill invocation:: Sending a signal to processes. + +Delaying + +* sleep invocation:: Delay for a specified time + +Numeric operations + +* factor invocation:: Print prime factors +* seq invocation:: Print numeric sequences + +File permissions + +* Mode Structure:: Structure of File Permissions +* Symbolic Modes:: Mnemonic permissions representation +* Numeric Modes:: Permissions as octal numbers + +Date input formats + +* General date syntax: General date syntax +* Calendar date items: Calendar date items +* Time of day items: Time of day items +* Time zone items: Time zone items +* Day of week items: Day of week items +* Relative items in date strings: Relative items in date strings +* Pure numbers in date strings: Pure numbers in date strings +* Authors of getdate: Authors of getdate + +Opening the software toolbox + +* Toolbox introduction:: Toolbox introduction +* I/O redirection:: I/O redirection +* The who command:: The `who' command +* The cut command:: The `cut' command +* The sort command:: The `sort' command +* The uniq command:: The `uniq' command +* Putting the tools together:: Putting the tools together + +GNU Free Documentation License + +* How to use this License for your documents:: + + +File: coreutils.info, Node: Introduction, Next: Common options, Prev: Top, Up: Top + +Introduction +************ + + This manual is a work in progress: many sections make no attempt to +explain basic concepts in a way suitable for novices. Thus, if you are +interested, please get involved in improving this manual. The entire +GNU community will benefit. + + The GNU utilities documented here are mostly compatible with the +POSIX standard. Please report bugs to . +Remember to include the version number, machine architecture, input +files, and any other information needed to reproduce the bug: your +input, what you expected, what you got, and why it is wrong. Diffs are +welcome, but please include a description of the problem as well, since +this is sometimes difficult to infer. *Note Bugs: (gcc)Bugs. + + This manual was originally derived from the Unix man pages in the +distributions, which were written by David MacKenzie and updated by Jim +Meyering. What you are reading now is the authoritative documentation +for these utilities; the man pages are no longer being maintained. The +original `fmt' man page was written by Ross Paterson. Franc,ois Pinard +did the initial conversion to Texinfo format. Karl Berry did the +indexing, some reorganization, and editing of the results. Brian +Youmans of the Free Software Foundation office staff combined the +manuals for textutils, fileutils, and sh-utils to produce the present +omnibus manual. Richard Stallman contributed his usual invaluable +insights to the overall process. + + +File: coreutils.info, Node: Common options, Next: Output of entire files, Prev: Introduction, Up: Top + +Common options +************** + + Certain options are available in all of these programs. Rather than +writing identical descriptions for each of the programs, they are +described here. (In fact, every GNU program accepts (or should accept) +these options.) + + Normally options and operands can appear in any order, and programs +act as if all the options appear before any operands. For example, +`sort -r passwd -t :' acts like `sort -r -t : passwd', since `:' is an +option-argument of `-t'. However, if the `POSIXLY_CORRECT' environment +variable is set, options must appear before operands, unless otherwise +specified for a particular command. + + Some of these programs recognize the `--help' and `--version' +options only when one of them is the sole command line argument. + +`--help' + Print a usage message listing all available options, then exit + successfully. + +`--version' + Print the version number, then exit successfully. + +`--' + Delimit the option list. Later arguments, if any, are treated as + operands even if they begin with `-'. For example, `sort -- -r' + reads from the file named `-r'. + + + A single `-' is not really an option, though it looks like one. It +stands for standard input, or for standard output if that is clear from +the context, and it can be used either as an operand or as an +option-argument. For example, `sort -o - -' outputs to standard output +and reads from standard input, and is equivalent to plain `sort'. +Unless otherwise specified, `-' can appear in any context that requires +a file name. + +* Menu: + +* Exit status:: Indicating program success or failure. +* Backup options:: -b -S -V, in some programs. +* Block size:: BLOCK_SIZE and --block-size, in some programs. +* Target directory:: --target-directory, in some programs. +* Trailing slashes:: --strip-trailing-slashes, in some programs. +* Standards conformance:: Conformance to the POSIX standard. + + +File: coreutils.info, Node: Exit status, Next: Backup options, Up: Common options + +Exit status +=========== + + Nearly every command invocation yields an integral "exit status" +that can be used to change how other commands work. For the vast +majority of commands, an exit status of zero indicates success, and a +value of `1' indicates failure. However, some of the programs +documented here do produce other exit status values and a few associate +different meanings with the values `0' and `1'. Here are some of the +exceptions: `expr', `false', `nohup', `printenv', `sort', `test', +`true', `tty', `uniq'. + + +File: coreutils.info, Node: Backup options, Next: Block size, Prev: Exit status, Up: Common options + +Backup options +============== + + Some GNU programs (at least `cp', `install', `ln', and `mv') +optionally make backups of files before writing new versions. These +options control the details of these backups. The options are also +briefly mentioned in the descriptions of the particular programs. + +`-b' +`--backup[=METHOD]' + Make a backup of each file that would otherwise be overwritten or + removed. Without this option, the original versions are destroyed. + Use METHOD to determine the type of backups to make. When this + option is used but METHOD is not specified, then the value of the + `VERSION_CONTROL' environment variable is used. And if + `VERSION_CONTROL' is not set, the default backup type is + `existing'. + + Note that the short form of this option, `-b' does not accept any + argument. Using `-b' is equivalent to using `--backup=existing'. + + This option corresponds to the Emacs variable `version-control'; + the values for METHOD are the same as those used in Emacs. This + option also accepts more descriptive names. The valid METHODs are + (unique abbreviations are accepted): + + `none' + `off' + Never make backups. + + `numbered' + `t' + Always make numbered backups. + + `existing' + `nil' + Make numbered backups of files that already have them, simple + backups of the others. + + `simple' + `never' + Always make simple backups. Please note `never' is not to be + confused with `none'. + + +`-S SUFFIX' +`--suffix=SUFFIX' + Append SUFFIX to each backup file made with `-b'. If this option + is not specified, the value of the `SIMPLE_BACKUP_SUFFIX' + environment variable is used. And if `SIMPLE_BACKUP_SUFFIX' is not + set, the default is `~', just as in Emacs. + +`--version-control=METHOD' + This option is obsolete and will be removed in a future release. + It has been replaced with `--backup'. + + + +File: coreutils.info, Node: Block size, Next: Target directory, Prev: Backup options, Up: Common options + +Block size +========== + + Some GNU programs (at least `df', `du', and `ls') display sizes in +"blocks". You can adjust the block size and method of display to make +sizes easier to read. The block size used for display is independent +of any filesystem block size. Fractional block counts are rounded up +to the nearest integer. + + The default block size is chosen by examining the following +environment variables in turn; the first one that is set determines the +block size. + +`DF_BLOCK_SIZE' + This specifies the default block size for the `df' command. + Similarly, `DU_BLOCK_SIZE' specifies the default for `du' and + `LS_BLOCK_SIZE' for `ls'. + +`BLOCK_SIZE' + This specifies the default block size for all three commands, if + the above command-specific environment variables are not set. + +`POSIXLY_CORRECT' + If neither the `COMMAND_BLOCK_SIZE' nor the `BLOCK_SIZE' variables + are set, but this variable is set, the block size defaults to 512. + + + If none of the above environment variables are set, the block size +currently defaults to 1024 bytes in most contexts, but this number may +change in the future. For `ls' file sizes, the block size defaults to +1 byte. + + A block size specification can be a positive integer specifying the +number of bytes per block, or it can be `human-readable' or `si' to +select a human-readable format. Integers may be followed by suffixes +that are upward compatible with the SI prefixes +(http://www.bipm.fr/enus/3_SI/si-prefixes.html) for decimal multiples +and with the IEC 60027-2 prefixes for binary multiples +(http://physics.nist.gov/cuu/Units/binary.html). + + With human-readable formats, output sizes are followed by a size +letter such as `M' for megabytes. `BLOCK_SIZE=human-readable' uses +powers of 1024; `M' stands for 1,048,576 bytes. `BLOCK_SIZE=si' is +similar, but uses powers of 1000 and appends `B'; `MB' stands for +1,000,000 bytes. + + A block size specification preceded by `'' causes output sizes to be +displayed with thousands separators. The `LC_NUMERIC' locale specifies +the thousands separator and grouping. For example, in an American +English locale, `--block-size="'1kB"' would cause a size of 1234000 +bytes to be displayed as `1,234'. In the default C locale, there is no +thousands separator so a leading `'' has no effect. + + An integer block size can be followed by a suffix to specify a +multiple of that size. A bare size letter, or one followed by `iB', +specifies a multiple using powers of 1024. A size letter followed by +`B' specifies powers of 1000 instead. For example, `1M' and `1MiB' are +equivalent to `1048576', whereas `1MB' is equivalent to `1000000'. + + A plain suffix without a preceding integer acts as if `1' were +prepended, except that it causes a size indication to be appended to +the output. For example, `--block-size="kB"' displays 3000 as `3kB'. + + The following suffixes are defined. Large sizes like `1Y' may be +rejected by your computer due to limitations of its arithmetic. + +`kB' + kilobyte: 10^3 = 1000. + +`k' +`K' +`KiB' + kibibyte: 2^10 = 1024. `K' is special: the SI prefix is `k' and + the IEC 60027-2 prefix is `Ki', but tradition and POSIX use `k' to + mean `KiB'. + +`MB' + megabyte: 10^6 = 1,000,000. + +`M' +`MiB' + mebibyte: 2^20 = 1,048,576. + +`GB' + gigabyte: 10^9 = 1,000,000,000. + +`G' +`GiB' + gibibyte: 2^30 = 1,073,741,824. + +`TB' + terabyte: 10^12 = 1,000,000,000,000. + +`T' +`TiB' + tebibyte: 2^40 = 1,099,511,627,776. + +`PB' + petabyte: 10^15 = 1,000,000,000,000,000. + +`P' +`PiB' + pebibyte: 2^50 = 1,125,899,906,842,624. + +`EB' + exabyte: 10^18 = 1,000,000,000,000,000,000. + +`E' +`EiB' + exbibyte: 2^60 = 1,152,921,504,606,846,976. + +`ZB' + zettabyte: 10^21 = 1,000,000,000,000,000,000,000 + +`Z' +`ZiB' + 2^70 = 1,180,591,620,717,411,303,424. (`Zi' is a GNU extension to + IEC 60027-2.) + +`YB' + yottabyte: 10^24 = 1,000,000,000,000,000,000,000,000. + +`Y' +`YiB' + 2^80 = 1,208,925,819,614,629,174,706,176. (`Yi' is a GNU + extension to IEC 60027-2.) + + Block size defaults can be overridden by an explicit +`--block-size=SIZE' option. The `-k' option is equivalent to +`--block-size=1K', which is the default unless the `POSIXLY_CORRECT' +environment variable is set. The `-h' or `--human-readable' option is +equivalent to `--block-size=human-readable'. The `--si' option is +equivalent to `--block-size=si'. + + +File: coreutils.info, Node: Target directory, Next: Trailing slashes, Prev: Block size, Up: Common options + +Target directory +================ + + Some GNU programs (at least `cp', `install', `ln', and `mv') allow +you to specify the target directory via this option: + +`--target-directory=DIRECTORY' + Specify the destination DIRECTORY. + + The interface for most programs is that after processing options + and a finite (possibly zero) number of fixed-position arguments, + the remaining argument list is either expected to be empty, or is + a list of items (usually files) that will all be handled + identically. The `xargs' program is designed to work well with + this convention. + + The commands in the `mv'-family are unusual in that they take a + variable number of arguments with a special case at the _end_ + (namely, the target directory). This makes it nontrivial to + perform some operations, e.g., "move all files from here to + ../d/", because `mv * ../d/' might exhaust the argument space, and + `ls | xargs ...' doesn't have a clean way to specify an extra + final argument for each invocation of the subject command. (It + can be done by going through a shell command, but that requires + more human labor and brain power than it should.) + + The `--target-directory' option allows the `cp', `install', `ln', + and `mv' programs to be used conveniently with `xargs'. For + example, you can move the files from the current directory to a + sibling directory, `d' like this: (However, this doesn't move + files whose names begin with `.'.) + + ls |xargs mv --target-directory=../d + + If you use the GNU `find' program, you can move _all_ files with + this command: + find . -mindepth 1 -maxdepth 1 \ + | xargs mv --target-directory=../d + + But that will fail if there are no files in the current directory + or if any file has a name containing a newline character. The + following example removes those limitations and requires both GNU + `find' and GNU `xargs': + find . -mindepth 1 -maxdepth 1 -print0 \ + | xargs --null --no-run-if-empty \ + mv --target-directory=../d + + + +File: coreutils.info, Node: Trailing slashes, Next: Standards conformance, Prev: Target directory, Up: Common options + +Trailing slashes +================ + + Some GNU programs (at least `cp' and `mv') allow you to remove any +trailing slashes from each SOURCE argument before operating on it. The +`--strip-trailing-slashes' option enables this behavior. + + This is useful when a SOURCE argument may have a trailing slash and +specify a symbolic link to a directory. This scenario is in fact rather +common because some shells can automatically append a trailing slash +when performing file name completion on such symbolic links. Without +this option, `mv', for example, (via the system's rename function) must +interpret a trailing slash as a request to dereference the symbolic link +and so must rename the indirectly referenced _directory_ and not the +symbolic link. Although it may seem surprising that such behavior be +the default, it is required by POSIX and is consistent with other parts +of that standard. + + +File: coreutils.info, Node: Standards conformance, Prev: Trailing slashes, Up: Common options + +Standards conformance +===================== + + In a few cases, the GNU utilities' default behavior is incompatible +with the POSIX standard. To suppress these incompatibilities, define +the `POSIXLY_CORRECT' environment variable. Unless you are checking +for POSIX conformance, you probably do not need to define +`POSIXLY_CORRECT'. + + Newer versions of POSIX are occasionally incompatible with older +versions. For example, older versions of POSIX required the command +`sort +1' to sort based on the second and succeeding fields in each +input line, but starting with POSIX 1003.1-2001 the same command is +required to sort the file named `+1', and you must instead use the +command `sort -k 2' to get the field-based sort. + + The GNU utilities normally conform to the version of POSIX that is +standard for your system. To cause them to conform to a different +version of POSIX, define the `_POSIX2_VERSION' environment variable to +a value of the form YYYYMM specifying the year and month the standard +was adopted. Two values are currently supported for `_POSIX2_VERSION': +`199209' stands for POSIX 1003.2-1992, and `200112' stands for POSIX +1003.1-2001. For example, if you are running older software that +assumes an older version of POSIX and uses `sort +1', you can work +around the compatibility problems by setting `_POSIX2_VERSION=199209' +in your environment. + + +File: coreutils.info, Node: Output of entire files, Next: Formatting file contents, Prev: Common options, Up: Top + +Output of entire files +********************** + + These commands read and write entire files, possibly transforming +them in some way. + +* Menu: + +* cat invocation:: Concatenate and write files. +* tac invocation:: Concatenate and write files in reverse. +* nl invocation:: Number lines and write files. +* od invocation:: Write files in octal or other formats. + + +File: coreutils.info, Node: cat invocation, Next: tac invocation, Up: Output of entire files + +`cat': Concatenate and write files +================================== + + `cat' copies each FILE (`-' means standard input), or standard input +if none are given, to standard output. Synopsis: + + cat [OPTION] [FILE]... + + The program accepts the following options. Also see *Note Common +options::. + +`-A' +`--show-all' + Equivalent to `-vET'. + +`-B' +`--binary' + On MS-DOS and MS-Windows only, read and write the files in binary + mode. By default, `cat' on MS-DOS/MS-Windows uses binary mode + only when standard output is redirected to a file or a pipe; this + option overrides that. Binary file I/O is used so that the files + retain their format (Unix text as opposed to DOS text and binary), + because `cat' is frequently used as a file-copying program. Some + options (see below) cause `cat' to read and write files in text + mode because in those cases the original file contents aren't + important (e.g., when lines are numbered by `cat', or when line + endings should be marked). This is so these options work as + DOS/Windows users would expect; for example, DOS-style text files + have their lines end with the CR-LF pair of characters, which + won't be processed as an empty line by `-b' unless the file is + read in text mode. + +`-b' +`--number-nonblank' + Number all nonblank output lines, starting with 1. On MS-DOS and + MS-Windows, this option causes `cat' to read and write files in + text mode. + +`-e' + Equivalent to `-vE'. + +`-E' +`--show-ends' + Display a `$' after the end of each line. On MS-DOS and + MS-Windows, this option causes `cat' to read and write files in + text mode. + +`-n' +`--number' + Number all output lines, starting with 1. On MS-DOS and + MS-Windows, this option causes `cat' to read and write files in + text mode. + +`-s' +`--squeeze-blank' + Replace multiple adjacent blank lines with a single blank line. On + MS-DOS and MS-Windows, this option causes `cat' to read and write + files in text mode. + +`-t' + Equivalent to `-vT'. + +`-T' +`--show-tabs' + Display TAB characters as `^I'. + +`-u' + Ignored; for Unix compatibility. + +`-v' +`--show-nonprinting' + Display control characters except for LFD and TAB using `^' + notation and precede characters that have the high bit set with + `M-'. On MS-DOS and MS-Windows, this option causes `cat' to read + files and standard input in DOS binary mode, so the CR characters + at the end of each line are also visible. + + + +File: coreutils.info, Node: tac invocation, Next: nl invocation, Prev: cat invocation, Up: Output of entire files + +`tac': Concatenate and write files in reverse +============================================= + + `tac' copies each FILE (`-' means standard input), or standard input +if none are given, to standard output, reversing the records (lines by +default) in each separately. Synopsis: + + tac [OPTION]... [FILE]... + + "Records" are separated by instances of a string (newline by +default). By default, this separator string is attached to the end of +the record that it follows in the file. + + The program accepts the following options. Also see *Note Common +options::. + +`-b' +`--before' + The separator is attached to the beginning of the record that it + precedes in the file. + +`-r' +`--regex' + Treat the separator string as a regular expression. Users of `tac' + on MS-DOS/MS-Windows should note that, since `tac' reads files in + binary mode, each line of a text file might end with a CR/LF pair + instead of the Unix-style LF. + +`-s SEPARATOR' +`--separator=SEPARATOR' + Use SEPARATOR as the record separator, instead of newline. + + + +File: coreutils.info, Node: nl invocation, Next: od invocation, Prev: tac invocation, Up: Output of entire files + +`nl': Number lines and write files +================================== + + `nl' writes each FILE (`-' means standard input), or standard input +if none are given, to standard output, with line numbers added to some +or all of the lines. Synopsis: + + nl [OPTION]... [FILE]... + + `nl' decomposes its input into (logical) pages; by default, the line +number is reset to 1 at the top of each logical page. `nl' treats all +of the input files as a single document; it does not reset line numbers +or logical pages between files. + + A logical page consists of three sections: header, body, and footer. +Any of the sections can be empty. Each can be numbered in a different +style from the others. + + The beginnings of the sections of logical pages are indicated in the +input file by a line containing exactly one of these delimiter strings: + +`\:\:\:' + start of header; + +`\:\:' + start of body; + +`\:' + start of footer. + + The two characters from which these strings are made can be changed +from `\' and `:' via options (see below), but the pattern and length of +each string cannot be changed. + + A section delimiter is replaced by an empty line on output. Any text +that comes before the first section delimiter string in the input file +is considered to be part of a body section, so `nl' treats a file that +contains no section delimiters as a single body section. + + The program accepts the following options. Also see *Note Common +options::. + +`-b STYLE' +`--body-numbering=STYLE' + Select the numbering style for lines in the body section of each + logical page. When a line is not numbered, the current line number + is not incremented, but the line number separator character is + still prepended to the line. The styles are: + + `a' + number all lines, + + `t' + number only nonempty lines (default for body), + + `n' + do not number lines (default for header and footer), + + `pREGEXP' + number only lines that contain a match for REGEXP. + +`-d CD' +`--section-delimiter=CD' + Set the section delimiter characters to CD; default is `\:'. If + only C is given, the second remains `:'. (Remember to protect `\' + or other metacharacters from shell expansion with quotes or extra + backslashes.) + +`-f STYLE' +`--footer-numbering=STYLE' + Analogous to `--body-numbering'. + +`-h STYLE' +`--header-numbering=STYLE' + Analogous to `--body-numbering'. + +`-i NUMBER' +`--page-increment=NUMBER' + Increment line numbers by NUMBER (default 1). + +`-l NUMBER' +`--join-blank-lines=NUMBER' + Consider NUMBER (default 1) consecutive empty lines to be one + logical line for numbering, and only number the last one. Where + fewer than NUMBER consecutive empty lines occur, do not number + them. An empty line is one that contains no characters, not even + spaces or tabs. + +`-n FORMAT' +`--number-format=FORMAT' + Select the line numbering format (default is `rn'): + + `ln' + left justified, no leading zeros; + + `rn' + right justified, no leading zeros; + + `rz' + right justified, leading zeros. + +`-p' +`--no-renumber' + Do not reset the line number at the start of a logical page. + +`-s STRING' +`--number-separator=STRING' + Separate the line number from the text line in the output with + STRING (default is the TAB character). + +`-v NUMBER' +`--starting-line-number=NUMBER' + Set the initial line number on each logical page to NUMBER + (default 1). + +`-w NUMBER' +`--number-width=NUMBER' + Use NUMBER characters for line numbers (default 6). + + + +File: coreutils.info, Node: od invocation, Prev: nl invocation, Up: Output of entire files + +`od': Write files in octal or other formats +=========================================== + + `od' writes an unambiguous representation of each FILE (`-' means +standard input), or standard input if none are given. Synopses: + + od [OPTION]... [FILE]... + od --traditional [FILE] [[+]OFFSET [[+]LABEL]] + + Each line of output consists of the offset in the input, followed by +groups of data from the file. By default, `od' prints the offset in +octal, and each group of file data is two bytes of input printed as a +single octal number. + + The program accepts the following options. Also see *Note Common +options::. + +`-A RADIX' +`--address-radix=RADIX' + Select the base in which file offsets are printed. RADIX can be + one of the following: + + `d' + decimal; + + `o' + octal; + + `x' + hexadecimal; + + `n' + none (do not print offsets). + + The default is octal. + +`-j BYTES' +`--skip-bytes=BYTES' + Skip BYTES input bytes before formatting and writing. If BYTES + begins with `0x' or `0X', it is interpreted in hexadecimal; + otherwise, if it begins with `0', in octal; otherwise, in decimal. + Appending `b' multiplies BYTES by 512, `k' by 1024, and `m' by + 1048576. + +`-N BYTES' +`--read-bytes=BYTES' + Output at most BYTES bytes of the input. Prefixes and suffixes on + `bytes' are interpreted as for the `-j' option. + +`-s N' +`--strings[=N]' + Instead of the normal output, output only "string constants": at + least N consecutive ASCII graphic characters, followed by a null + (zero) byte. + + If N is omitted with `--strings', the default is 3. On older + systems, GNU `od' instead supports an obsolete option `-s[N]', + where N also defaults to 3. POSIX 1003.1-2001 (*note Standards + conformance::) does not allow `-s' without an argument; use + `--strings' instead. + +`-t TYPE' +`--format=TYPE' + Select the format in which to output the file data. TYPE is a + string of one or more of the below type indicator characters. If + you include more than one type indicator character in a single TYPE + string, or use this option more than once, `od' writes one copy of + each output line using each of the data types that you specified, + in the order that you specified. + + Adding a trailing "z" to any type specification appends a display + of the ASCII character representation of the printable characters + to the output line generated by the type specification. + + `a' + named character + + `c' + ASCII character or backslash escape, + + `d' + signed decimal + + `f' + floating point + + `o' + octal + + `u' + unsigned decimal + + `x' + hexadecimal + + The type `a' outputs things like `sp' for space, `nl' for newline, + and `nul' for a null (zero) byte. Type `c' outputs ` ', `\n', and + `\0', respectively. + + Except for types `a' and `c', you can specify the number of bytes + to use in interpreting each number in the given data type by + following the type indicator character with a decimal integer. + Alternately, you can specify the size of one of the C compiler's + built-in data types by following the type indicator character with + one of the following characters. For integers (`d', `o', `u', + `x'): + + `C' + char + + `S' + short + + `I' + int + + `L' + long + + For floating point (`f'): + + F + float + + D + double + + L + long double + +`-v' +`--output-duplicates' + Output consecutive lines that are identical. By default, when two + or more consecutive output lines would be identical, `od' outputs + only the first line, and puts just an asterisk on the following + line to indicate the elision. + +`-w N' +`--width[=N]' + Dump `n' input bytes per output line. This must be a multiple of + the least common multiple of the sizes associated with the + specified output types. + + If this option is not given at all, the default is 16. If N is + omitted with `--width', the default is 32. On older systems, GNU + `od' instead supports an obsolete option `-w[N]', where N also + defaults to 32. POSIX 1003.1-2001 (*note Standards conformance::) + does not allow `-w' without an argument; use `--width' instead. + + + The next several options are shorthands for format specifications. +GNU `od' accepts any combination of shorthands and format specification +options. These options accumulate. + +`-a' + Output as named characters. Equivalent to `-ta'. + +`-b' + Output as octal bytes. Equivalent to `-toC'. + +`-c' + Output as ASCII characters or backslash escapes. Equivalent to + `-tc'. + +`-d' + Output as unsigned decimal shorts. Equivalent to `-tu2'. + +`-f' + Output as floats. Equivalent to `-tfF'. + +`-h' + Output as hexadecimal shorts. Equivalent to `-tx2'. + +`-i' + Output as decimal shorts. Equivalent to `-td2'. + +`-l' + Output as decimal longs. Equivalent to `-td4'. + +`-o' + Output as octal shorts. Equivalent to `-to2'. + +`-x' + Output as hexadecimal shorts. Equivalent to `-tx2'. + +`--traditional' + Recognize the non-option arguments that traditional `od' accepted. + The following syntax: + + od --traditional [FILE] [[+]OFFSET[.][b] [[+]LABEL[.][b]]] + + can be used to specify at most one file and optional arguments + specifying an offset and a pseudo-start address, LABEL. By + default, OFFSET is interpreted as an octal number specifying how + many input bytes to skip before formatting and writing. The + optional trailing decimal point forces the interpretation of + OFFSET as a decimal number. If no decimal is specified and the + offset begins with `0x' or `0X' it is interpreted as a hexadecimal + number. If there is a trailing `b', the number of bytes skipped + will be OFFSET multiplied by 512. The LABEL argument is + interpreted just like OFFSET, but it specifies an initial + pseudo-address. The pseudo-addresses are displayed in parentheses + following any normal address. + + + +File: coreutils.info, Node: Formatting file contents, Next: Output of parts of files, Prev: Output of entire files, Up: Top + +Formatting file contents +************************ + + These commands reformat the contents of files. + +* Menu: + +* fmt invocation:: Reformat paragraph text. +* pr invocation:: Paginate or columnate files for printing. +* fold invocation:: Wrap input lines to fit in specified width. + + +File: coreutils.info, Node: fmt invocation, Next: pr invocation, Up: Formatting file contents + +`fmt': Reformat paragraph text +============================== + + `fmt' fills and joins lines to produce output lines of (at most) a +given number of characters (75 by default). Synopsis: + + fmt [OPTION]... [FILE]... + + `fmt' reads from the specified FILE arguments (or standard input if +none are given), and writes to standard output. + + By default, blank lines, spaces between words, and indentation are +preserved in the output; successive input lines with different +indentation are not joined; tabs are expanded on input and introduced on +output. + + `fmt' prefers breaking lines at the end of a sentence, and tries to +avoid line breaks after the first word of a sentence or before the last +word of a sentence. A "sentence break" is defined as either the end of +a paragraph or a word ending in any of `.?!', followed by two spaces or +end of line, ignoring any intervening parentheses or quotes. Like TeX, +`fmt' reads entire "paragraphs" before choosing line breaks; the +algorithm is a variant of that in "Breaking Paragraphs Into Lines" +(Donald E. Knuth and Michael F. Plass, `Software--Practice and +Experience', 11 (1981), 1119-1184). + + The program accepts the following options. Also see *Note Common +options::. + +`-c' +`--crown-margin' + "Crown margin" mode: preserve the indentation of the first two + lines within a paragraph, and align the left margin of each + subsequent line with that of the second line. + +`-t' +`--tagged-paragraph' + "Tagged paragraph" mode: like crown margin mode, except that if + indentation of the first line of a paragraph is the same as the + indentation of the second, the first line is treated as a one-line + paragraph. + +`-s' +`--split-only' + Split lines only. Do not join short lines to form longer ones. + This prevents sample lines of code, and other such "formatted" + text from being unduly combined. + +`-u' +`--uniform-spacing' + Uniform spacing. Reduce spacing between words to one space, and + spacing between sentences to two spaces. + +`-WIDTH' +`-w WIDTH' +`--width=WIDTH' + Fill output lines up to WIDTH characters (default 75). `fmt' + initially tries to make lines about 7% shorter than this, to give + it room to balance line lengths. + +`-p PREFIX' +`--prefix=PREFIX' + Only lines beginning with PREFIX (possibly preceded by whitespace) + are subject to formatting. The prefix and any preceding whitespace + are stripped for the formatting and then re-attached to each + formatted output line. One use is to format certain kinds of + program comments, while leaving the code unchanged. + + + +File: coreutils.info, Node: pr invocation, Next: fold invocation, Prev: fmt invocation, Up: Formatting file contents + +`pr': Paginate or columnate files for printing +============================================== + + `pr' writes each FILE (`-' means standard input), or standard input +if none are given, to standard output, paginating and optionally +outputting in multicolumn format; optionally merges all FILEs, printing +all in parallel, one per column. Synopsis: + + pr [OPTION]... [FILE]... + + By default, a 5-line header is printed at each page: two blank lines; +a line with the date, the filename, and the page count; and two more +blank lines. A footer of five blank lines is also printed. With the +`-F' option, a 3-line header is printed: the leading two blank lines are +omitted; no footer is used. The default PAGE_LENGTH in both cases is 66 +lines. The default number of text lines changes from 56 (without `-F') +to 63 (with `-F'). The text line of the header takes the form `DATE +STRING PAGE', with spaces inserted around STRING so that the line takes +up the full PAGE_WIDTH. Here, DATE is the date (see the `-D' or +`--date-format' option for details), STRING is the centered header +string, and PAGE identifies the page number. The `LC_MESSAGES' locale +category affects the spelling of PAGE; in the default C locale, it is +`Page NUMBER' where NUMBER is the decimal page number. + + Form feeds in the input cause page breaks in the output. Multiple +form feeds produce empty pages. + + Columns are of equal width, separated by an optional string (default +is `space'). For multicolumn output, lines will always be truncated to +PAGE_WIDTH (default 72), unless you use the `-J' option. For single +column output no line truncation occurs by default. Use `-W' option to +truncate lines in that case. + + The following changes were made in version 1.22i and apply to later +versions of `pr': - Brian + * Some small LETTER OPTIONS (`-s', `-w') have been redefined for + better POSIX compliance. The output of some further cases has + been adapted to other Unix systems. These changes are not + compatible with earlier versions of the program. + + * Some NEW CAPITAL LETTER options (`-J', `-S', `-W') have been + introduced to turn off unexpected interferences of small letter + options. The `-N' option and the second argument LAST_PAGE of + `+FIRST_PAGE' offer more flexibility. The detailed handling of + form feeds set in the input files requires the `-T' option. + + * Capital letter options override small letter ones. + + * Some of the option-arguments (compare `-s', `-e', `-i', `-n') + cannot be specified as separate arguments from the preceding + option letter (already stated in the POSIX specification). + + The program accepts the following options. Also see *Note Common +options::. + +`+FIRST_PAGE[:LAST_PAGE]' +`--pages=FIRST_PAGE[:LAST_PAGE]' + Begin printing with page FIRST_PAGE and stop with LAST_PAGE. + Missing `:LAST_PAGE' implies end of file. While estimating the + number of skipped pages each form feed in the input file results + in a new page. Page counting with and without `+FIRST_PAGE' is + identical. By default, counting starts with the first page of + input file (not first page printed). Line numbering may be + altered by `-N' option. + +`-COLUMN' +`--columns=COLUMN' + With each single FILE, produce COLUMN columns of output (default + is 1) and print columns down, unless `-a' is used. The column + width is automatically decreased as COLUMN increases; unless you + use the `-W/-w' option to increase PAGE_WIDTH as well. This + option might well cause some lines to be truncated. The number of + lines in the columns on each page are balanced. The options `-e' + and `-i' are on for multiple text-column output. Together with + `-J' option column alignment and line truncation is turned off. + Lines of full length are joined in a free field format and `-S' + option may set field separators. `-COLUMN' may not be used with + `-m' option. + +`-a' +`--across' + With each single FILE, print columns across rather than down. The + `-COLUMN' option must be given with COLUMN greater than one. If a + line is too long to fit in a column, it is truncated. + +`-c' +`--show-control-chars' + Print control characters using hat notation (e.g., `^G'); print + other nonprinting characters in octal backslash notation. By + default, nonprinting characters are not changed. + +`-d' +`--double-space' + Double space the output. + +`-D FORMAT' +`--date-format=FORMAT' + Format header dates using FORMAT, using the same conventions as + for the the command `date +FORMAT'; *Note date invocation::. + Except for directives, which start with `%', characters in FORMAT + are printed unchanged. You can use this option to specify an + arbitrary string in place of the header date, e.g., + `--date-format="Monday morning"'. + + If the `POSIXLY_CORRECT' environment variable is not set, the date + format defaults to `%Y-%m-%d %H:%M' (for example, `2001-12-04 + 23:59'); otherwise, the format depends on the `LC_TIME' locale + category, with the default being `%b %e %H:%M %Y' (for example, + `Dec 4 23:59 2001'. + +`-e[IN-TABCHAR[IN-TABWIDTH]]' +`--expand-tabs[=IN-TABCHAR[IN-TABWIDTH]]' + Expand TABs to spaces on input. Optional argument IN-TABCHAR is + the input tab character (default is the TAB character). Second + optional argument IN-TABWIDTH is the input tab character's width + (default is 8). + +`-f' +`-F' +`--form-feed' + Use a form feed instead of newlines to separate output pages. The + default page length of 66 lines is not altered. But the number of + lines of text per page changes from default 56 to 63 lines. + +`-h HEADER' +`--header=HEADER' + Replace the filename in the header with the centered string HEADER. + When using the shell, HEADER should be quoted and should be + separated from `-h' by a space. + +`-i[OUT-TABCHAR[OUT-TABWIDTH]]' +`--output-tabs[=OUT-TABCHAR[OUT-TABWIDTH]]' + Replace spaces with TABs on output. Optional argument OUT-TABCHAR + is the output tab character (default is the TAB character). + Second optional argument OUT-TABWIDTH is the output tab + character's width (default is 8). + +`-J' +`--join-lines' + Merge lines of full length. Used together with the column options + `-COLUMN', `-a -COLUMN' or `-m'. Turns off `-W/-w' line + truncation; no column alignment used; may be used with + `--sep-string[=STRING]'. `-J' has been introduced (together with + `-W' and `--sep-string') to disentangle the old (POSIX-compliant) + options `-w' and `-s' along with the three column options. + +`-l PAGE_LENGTH' +`--length=PAGE_LENGTH' + Set the page length to PAGE_LENGTH (default 66) lines, including + the lines of the header [and the footer]. If PAGE_LENGTH is less + than or equal to 10 (or <= 3 with `-F'), the header and footer are + omitted, and all form feeds set in input files are eliminated, as + if the `-T' option had been given. + +`-m' +`--merge' + Merge and print all FILEs in parallel, one in each column. If a + line is too long to fit in a column, it is truncated, unless the + `-J' option is used. `--sep-string[=STRING]' may be used. Empty + pages in some FILEs (form feeds set) produce empty columns, still + marked by STRING. The result is a continuous line numbering and + column marking throughout the whole merged file. Completely empty + merged pages show no separators or line numbers. The default + header becomes `DATE PAGE' with spaces inserted in the middle; this + may be used with the `-h' or `--header' option to fill up the + middle blank part. + +`-n[NUMBER-SEPARATOR[DIGITS]]' +`--number-lines[=NUMBER-SEPARATOR[DIGITS]]' + Provide DIGITS digit line numbering (default for DIGITS is 5). + With multicolumn output the number occupies the first DIGITS + column positions of each text column or only each line of `-m' + output. With single column output the number precedes each line + just as `-m' does. Default counting of the line numbers starts + with the first line of the input file (not the first line printed, + compare the `--page' option and `-N' option). Optional argument + NUMBER-SEPARATOR is the character appended to the line number to + separate it from the text followed. The default separator is the + TAB character. In a strict sense a TAB is always printed with + single column output only. The TAB-width varies with the + TAB-position, e.g. with the left MARGIN specified by `-o' option. + With multicolumn output priority is given to `equal width of + output columns' (a POSIX specification). The TAB-width is fixed + to the value of the first column and does not change with + different values of left MARGIN. That means a fixed number of + spaces is always printed in the place of the NUMBER-SEPARATOR TAB. + The tabification depends upon the output position. + +`-N LINE_NUMBER' +`--first-line-number=LINE_NUMBER' + Start line counting with the number LINE_NUMBER at first line of + first page printed (in most cases not the first line of the input + file). + +`-o MARGIN' +`--indent=MARGIN' + Indent each line with a margin MARGIN spaces wide (default is + zero). The total page width is the size of the margin plus the + PAGE_WIDTH set with the `-W/-w' option. A limited overflow may + occur with numbered single column output (compare `-n' option). + +`-r' +`--no-file-warnings' + Do not print a warning message when an argument FILE cannot be + opened. (The exit status will still be nonzero, however.) + +`-s[CHAR]' +`--separator[=CHAR]' + Separate columns by a single character CHAR. The default for CHAR + is the TAB character without `-w' and `no character' with `-w'. + Without `-s' the default separator `space' is set. `-s[char]' + turns off line truncation of all three column options + (`-COLUMN'|`-a -COLUMN'|`-m') unless `-w' is set. This is a + POSIX-compliant formulation. + +`-S STRING' +`--sep-string[=STRING]' + Use STRING to separate output columns. The `-S' option doesn't + affect the `-W/-w' option, unlike the `-s' option which does. It + does not affect line truncation or column alignment. Without + `-S', and with `-J', `pr' uses the default output separator, TAB. + Without `-S' or `-J', `pr' uses a `space' (same as `-S" "'). With + `-SSTRING', STRING must be nonempty; `--sep-string' with no STRING + is equivalent to `--sep-string=""'. + + On older systems, `pr' instead supports an obsolete option + `-S[STRING]', where STRING is optional. POSIX 1003.1-2001 (*note + Standards conformance::) does not allow this older usage. To + specify an empty STRING portably, use `--sep-string'. + +`-t' +`--omit-header' + Do not print the usual header [and footer] on each page, and do + not fill out the bottom of pages (with blank lines or a form + feed). No page structure is produced, but form feeds set in the + input files are retained. The predefined pagination is not + changed. `-t' or `-T' may be useful together with other options; + e.g.: `-t -e4', expand TAB characters in the input file to 4 + spaces but don't make any other changes. Use of `-t' overrides + `-h'. + +`-T' +`--omit-pagination' + Do not print header [and footer]. In addition eliminate all form + feeds set in the input files. + +`-v' +`--show-nonprinting' + Print nonprinting characters in octal backslash notation. + +`-w PAGE_WIDTH' +`--width=PAGE_WIDTH' + Set page width to PAGE_WIDTH characters for multiple text-column + output only (default for PAGE_WIDTH is 72). `-s[CHAR]' turns off + the default page width and any line truncation and column + alignment. Lines of full length are merged, regardless of the + column options set. No PAGE_WIDTH setting is possible with single + column output. A POSIX-compliant formulation. + +`-W PAGE_WIDTH' +`--page_width=PAGE_WIDTH' + Set the page width to PAGE_WIDTH characters. That's valid with and + without a column option. Text lines are truncated, unless `-J' is + used. Together with one of the three column options (`-COLUMN', + `-a -COLUMN' or `-m') column alignment is always used. The + separator options `-S' or `-s' don't affect the `-W' option. + Default is 72 characters. Without `-W PAGE_WIDTH' and without any + of the column options NO line truncation is used (defined to keep + downward compatibility and to meet most frequent tasks). That's + equivalent to `-W 72 -J'. The header line is never truncated. + + + +File: coreutils.info, Node: fold invocation, Prev: pr invocation, Up: Formatting file contents + +`fold': Wrap input lines to fit in specified width +================================================== + + `fold' writes each FILE (`-' means standard input), or standard +input if none are given, to standard output, breaking long lines. +Synopsis: + + fold [OPTION]... [FILE]... + + By default, `fold' breaks lines wider than 80 columns. The output +is split into as many lines as necessary. + + `fold' counts screen columns by default; thus, a tab may count more +than one column, backspace decreases the column count, and carriage +return sets the column to zero. + + The program accepts the following options. Also see *Note Common +options::. + +`-b' +`--bytes' + Count bytes rather than columns, so that tabs, backspaces, and + carriage returns are each counted as taking up one column, just + like other characters. + +`-s' +`--spaces' + Break at word boundaries: the line is broken after the last blank + before the maximum line length. If the line contains no such + blanks, the line is broken at the maximum line length as usual. + +`-w WIDTH' +`--width=WIDTH' + Use a maximum line length of WIDTH columns instead of 80. + + On older systems, `fold' supports an obsolete option `-WIDTH'. + POSIX 1003.1-2001 (*note Standards conformance::) does not allow + this; use `-w WIDTH' instead. + + + +File: coreutils.info, Node: Output of parts of files, Next: Summarizing files, Prev: Formatting file contents, Up: Top + +Output of parts of files +************************ + + These commands output pieces of the input. + +* Menu: + +* head invocation:: Output the first part of files. +* tail invocation:: Output the last part of files. +* split invocation:: Split a file into fixed-size pieces. +* csplit invocation:: Split a file into context-determined pieces. + + +File: coreutils.info, Node: head invocation, Next: tail invocation, Up: Output of parts of files + +`head': Output the first part of files +====================================== + + `head' prints the first part (10 lines by default) of each FILE; it +reads from standard input if no files are given or when given a FILE of +`-'. Synopsis: + + head [OPTION]... [FILE]... + + If more than one FILE is specified, `head' prints a one-line header +consisting of + ==> FILE NAME <== + +before the output for each FILE. + + The program accepts the following options. Also see *Note Common +options::. + +`-c BYTES' +`--bytes=BYTES' + Print the first BYTES bytes, instead of initial lines. Appending + `b' multiplies BYTES by 512, `k' by 1024, and `m' by 1048576. + +`-n N' +`--lines=N' + Output the first N lines. + +`-q' +`--quiet' +`--silent' + Never print file name headers. + +`-v' +`--verbose' + Always print file name headers. + + + On older systems, `head' supports an obsolete option +`-COUNTOPTIONS', which is recognized only if it is specified first. +COUNT is a decimal number optionally followed by a size letter (`b', +`k', `m') as in `-c', or `l' to mean count by lines, or other option +letters (`cqv'). POSIX 1003.1-2001 (*note Standards conformance::) +does not allow this; use `-c COUNT' or `-n COUNT' instead. + + +File: coreutils.info, Node: tail invocation, Next: split invocation, Prev: head invocation, Up: Output of parts of files + +`tail': Output the last part of files +===================================== + + `tail' prints the last part (10 lines by default) of each FILE; it +reads from standard input if no files are given or when given a FILE of +`-'. Synopsis: + + tail [OPTION]... [FILE]... + + If more than one FILE is specified, `tail' prints a one-line header +consisting of + ==> FILE NAME <== + +before the output for each FILE. + + GNU `tail' can output any amount of data (some other versions of +`tail' cannot). It also has no `-r' option (print in reverse), since +reversing a file is really a different job from printing the end of a +file; BSD `tail' (which is the one with `-r') can only reverse files +that are at most as large as its buffer, which is typically 32 KiB. A +more reliable and versatile way to reverse files is the GNU `tac' +command. + + If any option-argument is a number N starting with a `+', `tail' +begins printing with the Nth item from the start of each file, instead +of from the end. + + The program accepts the following options. Also see *Note Common +options::. + +`-c BYTES' +`--bytes=BYTES' + Output the last BYTES bytes, instead of final lines. Appending + `b' multiplies BYTES by 512, `k' by 1024, and `m' by 1048576. + +`-f' +`--follow[=HOW]' + Loop forever trying to read more characters at the end of the file, + presumably because the file is growing. This option is ignored + when reading from a pipe. If more than one file is given, `tail' + prints a header whenever it gets output from a different file, to + indicate which file that output is from. + + There are two ways to specify how you'd like to track files with + this option, but that difference is noticeable only when a + followed file is removed or renamed. If you'd like to continue to + track the end of a growing file even after it has been unlinked, + use `--follow=descriptor'. This is the default behavior, but it + is not useful if you're tracking a log file that may be rotated + (removed or renamed, then reopened). In that case, use + `--follow=name' to track the named file by reopening it + periodically to see if it has been removed and recreated by some + other program. + + No matter which method you use, if the tracked file is determined + to have shrunk, `tail' prints a message saying the file has been + truncated and resumes tracking the end of the file from the + newly-determined endpoint. + + When a file is removed, `tail''s behavior depends on whether it is + following the name or the descriptor. When following by name, + tail can detect that a file has been removed and gives a message + to that effect, and if `--retry' has been specified it will + continue checking periodically to see if the file reappears. When + following a descriptor, tail does not detect that the file has + been unlinked or renamed and issues no message; even though the + file may no longer be accessible via its original name, it may + still be growing. + + The option values `descriptor' and `name' may be specified only + with the long form of the option, not with `-f'. + +`-F' + This option is the same as `--follow=name --retry'. That is, tail + will attempt to reopen a file when it is removed. Should this + fail, tail will keep trying until it becomes accessible again. + +`--retry' + This option is meaningful only when following by name. Without + this option, when tail encounters a file that doesn't exist or is + otherwise inaccessible, it reports that fact and never checks it + again. + +`--sleep-interval=NUMBER' + Change the number of seconds to wait between iterations (the + default is 1.0). During one iteration, every specified file is + checked to see if it has Historical implementations of `tail' have + required that NUMBER be an integer. However, GNU `tail' accepts + an arbitrary floating point number. + +`--pid=PID' + When following by name or by descriptor, you may specify the + process ID, PID, of the sole writer of all FILE arguments. Then, + shortly after that process terminates, tail will also terminate. + This will work properly only if the writer and the tailing process + are running on the same machine. For example, to save the output + of a build in a file and to watch the file grow, if you invoke + `make' and `tail' like this then the tail process will stop when + your build completes. Without this option, you would have had to + kill the `tail -f' process yourself. + $ make >& makerr & tail --pid=$! -f makerr + If you specify a PID that is not in use or that does not correspond + to the process that is writing to the tailed files, then `tail' + may terminate long before any FILEs stop growing or it may not + terminate until long after the real writer has terminated. Note + that `--pid' cannot be supported on some systems; `tail' will + print a warning if this is the case. + +`--max-unchanged-stats=N' + When tailing a file by name, if there have been N (default + n=5) consecutive iterations for which the size has remained the + same, then `open'/`fstat' the file to determine if that file name + is still associated with the same device/inode-number pair as + before. When following a log file that is rotated, this is + approximately the number of seconds between when tail prints the + last pre-rotation lines and when it prints the lines that have + accumulated in the new log file. This option is meaningful only + when following by name. + +`-n N' +`--lines=N' + Output the last N lines. + +`-q' +`--quiet' +`--silent' + Never print file name headers. + +`-v' +`--verbose' + Always print file name headers. + + + On older systems, `tail' supports an obsolete option +`-COUNTOPTIONS', which is recognized only if it is specified first. +COUNT is a decimal number optionally followed by a size letter (`b', +`k', `m') as in `-c', or `l' to mean count by lines, or other option +letters (`cfqv'). Some older `tail' implementations also support an +obsolete option `+COUNT' with the same meaning as `-+COUNT'. POSIX +1003.1-2001 (*note Standards conformance::) does not allow these +options; use `-c COUNT' or `-n COUNT' instead. + + +File: coreutils.info, Node: split invocation, Next: csplit invocation, Prev: tail invocation, Up: Output of parts of files + +`split': Split a file into fixed-size pieces +============================================ + + `split' creates output files containing consecutive sections of +INPUT (standard input if none is given or INPUT is `-'). Synopsis: + + split [OPTION] [INPUT [PREFIX]] + + By default, `split' puts 1000 lines of INPUT (or whatever is left +over for the last section), into each output file. + + The output files' names consist of PREFIX (`x' by default) followed +by a group of letters (`aa', `ab', ... by default), such that +concatenating the output files in sorted order by file name produces +the original input file. If the output file names are exhausted, +`split' reports an error without deleting the output files that it did +create. + + The program accepts the following options. Also see *Note Common +options::. + +`-a LENGTH' +`--suffix-length=LENGTH' + Use suffixes of length LENGTH. The default LENGTH is 2. + +`-l LINES' +`--lines=LINES' + Put LINES lines of INPUT into each output file. + + On older systems, `split' supports an obsolete option `-LINES'. + POSIX 1003.1-2001 (*note Standards conformance::) does not allow + this; use `-l LINES' instead. + +`-b BYTES' +`--bytes=BYTES' + Put the first BYTES bytes of INPUT into each output file. + Appending `b' multiplies BYTES by 512, `k' by 1024, and `m' by + 1048576. + +`-C BYTES' +`--line-bytes=BYTES' + Put into each output file as many complete lines of INPUT as + possible without exceeding BYTES bytes. For lines longer than + BYTES bytes, put BYTES bytes into each output file until less than + BYTES bytes of the line are left, then continue normally. BYTES + has the same format as for the `--bytes' option. + +`--verbose' + Write a diagnostic to standard error just before each output file + is opened. + + + +File: coreutils.info, Node: csplit invocation, Prev: split invocation, Up: Output of parts of files + +`csplit': Split a file into context-determined pieces +===================================================== + + `csplit' creates zero or more output files containing sections of +INPUT (standard input if INPUT is `-'). Synopsis: + + csplit [OPTION]... INPUT PATTERN... + + The contents of the output files are determined by the PATTERN +arguments, as detailed below. An error occurs if a PATTERN argument +refers to a nonexistent line of the input file (e.g., if no remaining +line matches a given regular expression). After every PATTERN has been +matched, any remaining input is copied into one last output file. + + By default, `csplit' prints the number of bytes written to each +output file after it has been created. + + The types of pattern arguments are: + +`N' + Create an output file containing the input up to but not including + line N (a positive integer). If followed by a repeat count, also + create an output file containing the next LINE lines of the input + file once for each repeat. + +`/REGEXP/[OFFSET]' + Create an output file containing the current line up to (but not + including) the next line of the input file that contains a match + for REGEXP. The optional OFFSET is a `+' or `-' followed by a + positive integer. If it is given, the input up to the matching + line plus or minus OFFSET is put into the output file, and the + line after that begins the next section of input. + +`%REGEXP%[OFFSET]' + Like the previous type, except that it does not create an output + file, so that section of the input file is effectively ignored. + +`{REPEAT-COUNT}' + Repeat the previous pattern REPEAT-COUNT additional times. + REPEAT-COUNT can either be a positive integer or an asterisk, + meaning repeat as many times as necessary until the input is + exhausted. + + + The output files' names consist of a prefix (`xx' by default) +followed by a suffix. By default, the suffix is an ascending sequence +of two-digit decimal numbers from `00' to `99'. In any case, +concatenating the output files in sorted order by filename produces the +original input file. + + By default, if `csplit' encounters an error or receives a hangup, +interrupt, quit, or terminate signal, it removes any output files that +it has created so far before it exits. + + The program accepts the following options. Also see *Note Common +options::. + +`-f PREFIX' +`--prefix=PREFIX' + Use PREFIX as the output file name prefix. + +`-b SUFFIX' +`--suffix=SUFFIX' + Use SUFFIX as the output file name suffix. When this option is + specified, the suffix string must include exactly one + `printf(3)'-style conversion specification, possibly including + format specification flags, a field width, a precision + specifications, or all of these kinds of modifiers. The format + letter must convert a binary integer argument to readable form; + thus, only `d', `i', `u', `o', `x', and `X' conversions are + allowed. The entire SUFFIX is given (with the current output file + number) to `sprintf(3)' to form the file name suffixes for each of + the individual output files in turn. If this option is used, the + `--digits' option is ignored. + +`-n DIGITS' +`--digits=DIGITS' + Use output file names containing numbers that are DIGITS digits + long instead of the default 2. + +`-k' +`--keep-files' + Do not remove output files when errors are encountered. + +`-z' +`--elide-empty-files' + Suppress the generation of zero-length output files. (In cases + where the section delimiters of the input file are supposed to + mark the first lines of each of the sections, the first output + file will generally be a zero-length file unless you use this + option.) The output file sequence numbers always run + consecutively starting from 0, even when this option is specified. + +`-s' +`-q' +`--silent' +`--quiet' + Do not print counts of output file sizes. + + + +File: coreutils.info, Node: Summarizing files, Next: Operating on sorted files, Prev: Output of parts of files, Up: Top + +Summarizing files +***************** + + These commands generate just a few numbers representing entire +contents of files. + +* Menu: + +* wc invocation:: Print byte, word, and line counts. +* sum invocation:: Print checksum and block counts. +* cksum invocation:: Print CRC checksum and byte counts. +* md5sum invocation:: Print or check message-digests. + + +File: coreutils.info, Node: wc invocation, Next: sum invocation, Up: Summarizing files + +`wc': Print byte, word, and line counts +======================================= + + `wc' counts the number of bytes, characters, whitespace-separated +words, and newlines in each given FILE, or standard input if none are +given or for a FILE of `-'. Synopsis: + + wc [OPTION]... [FILE]... + + `wc' prints one line of counts for each file, and if the file was +given as an argument, it prints the file name following the counts. If +more than one FILE is given, `wc' prints a final line containing the +cumulative counts, with the file name `total'. The counts are printed +in this order: newlines, words, characters, bytes. By default, each +count is output right-justified in a 7-byte field with one space +between fields so that the numbers and file names line up nicely in +columns. However, POSIX requires that there be exactly one space +separating columns. You can make `wc' use the POSIX-mandated output +format by setting the `POSIXLY_CORRECT' environment variable. + + By default, `wc' prints three counts: the newline, words, and byte +counts. Options can specify that only certain counts be printed. +Options do not undo others previously given, so + + wc --bytes --words + +prints both the byte counts and the word counts. + + With the `--max-line-length' option, `wc' prints the length of the +longest line per file, and if there is more than one file it prints the +maximum (not the sum) of those lengths. + + The program accepts the following options. Also see *Note Common +options::. + +`-c' +`--bytes' + Print only the byte counts. + +`-m' +`--chars' + Print only the character counts. + +`-w' +`--words' + Print only the word counts. + +`-l' +`--lines' + Print only the newline counts. + +`-L' +`--max-line-length' + Print only the maximum line lengths. + + + +File: coreutils.info, Node: sum invocation, Next: cksum invocation, Prev: wc invocation, Up: Summarizing files + +`sum': Print checksum and block counts +====================================== + + `sum' computes a 16-bit checksum for each given FILE, or standard +input if none are given or for a FILE of `-'. Synopsis: + + sum [OPTION]... [FILE]... + + `sum' prints the checksum for each FILE followed by the number of +blocks in the file (rounded up). If more than one FILE is given, file +names are also printed (by default). (With the `--sysv' option, +corresponding file names are printed when there is at least one file +argument.) + + By default, GNU `sum' computes checksums using an algorithm +compatible with BSD `sum' and prints file sizes in units of 1024-byte +blocks. + + The program accepts the following options. Also see *Note Common +options::. + +`-r' + Use the default (BSD compatible) algorithm. This option is + included for compatibility with the System V `sum'. Unless `-s' + was also given, it has no effect. + +`-s' +`--sysv' + Compute checksums using an algorithm compatible with System V + `sum''s default, and print file sizes in units of 512-byte blocks. + + + `sum' is provided for compatibility; the `cksum' program (see next +section) is preferable in new applications. + + +File: coreutils.info, Node: cksum invocation, Next: md5sum invocation, Prev: sum invocation, Up: Summarizing files + +`cksum': Print CRC checksum and byte counts +=========================================== + + `cksum' computes a cyclic redundancy check (CRC) checksum for each +given FILE, or standard input if none are given or for a FILE of `-'. +Synopsis: + + cksum [OPTION]... [FILE]... + + `cksum' prints the CRC checksum for each file along with the number +of bytes in the file, and the filename unless no arguments were given. + + `cksum' is typically used to ensure that files transferred by +unreliable means (e.g., netnews) have not been corrupted, by comparing +the `cksum' output for the received files with the `cksum' output for +the original files (typically given in the distribution). + + The CRC algorithm is specified by the POSIX standard. It is not +compatible with the BSD or System V `sum' algorithms (see the previous +section); it is more robust. + + The only options are `--help' and `--version'. *Note Common +options::. + + +File: coreutils.info, Node: md5sum invocation, Prev: cksum invocation, Up: Summarizing files + +`md5sum': Print or check message-digests +======================================== + + `md5sum' computes a 128-bit checksum (or "fingerprint" or +"message-digest") for each specified FILE. If a FILE is specified as +`-' or if no files are given `md5sum' computes the checksum for the +standard input. `md5sum' can also determine whether a file and +checksum are consistent. Synopses: + + md5sum [OPTION]... [FILE]... + md5sum [OPTION]... --check [FILE] + + For each FILE, `md5sum' outputs the MD5 checksum, a flag indicating +a binary or text input file, and the filename. If FILE is omitted or +specified as `-', standard input is read. + + The program accepts the following options. Also see *Note Common +options::. + +`-b' +`--binary' + Treat all input files as binary. This option has no effect on Unix + systems, since they don't distinguish between binary and text + files. This option is useful on systems that have different + internal and external character representations. On MS-DOS and + MS-Windows, this is the default. + +`-c' +`--check' + Read filenames and checksum information from the single FILE (or + from stdin if no FILE was specified) and report whether each named + file and the corresponding checksum data are consistent. The + input to this mode of `md5sum' is usually the output of a prior, + checksum-generating run of `md5sum'. Each valid line of input + consists of an MD5 checksum, a binary/text flag, and then a + filename. Binary files are marked with `*', text with ` '. For + each such line, `md5sum' reads the named file and computes its MD5 + checksum. Then, if the computed message digest does not match the + one on the line with the filename, the file is noted as having + failed the test. Otherwise, the file passes the test. By + default, for each valid line, one line is written to standard + output indicating whether the named file passed the test. After + all checks have been performed, if there were any failures, a + warning is issued to standard error. Use the `--status' option to + inhibit that output. If any listed file cannot be opened or read, + if any valid line has an MD5 checksum inconsistent with the + associated file, or if no valid line is found, `md5sum' exits with + nonzero status. Otherwise, it exits successfully. + +`--status' + This option is useful only when verifying checksums. When + verifying checksums, don't generate the default one-line-per-file + diagnostic and don't output the warning summarizing any failures. + Failures to open or read a file still evoke individual diagnostics + to standard error. If all listed files are readable and are + consistent with the associated MD5 checksums, exit successfully. + Otherwise exit with a status code indicating there was a failure. + +`-t' +`--text' + Treat all input files as text files. This is the reverse of + `--binary'. + +`-w' +`--warn' + When verifying checksums, warn about improperly formatted MD5 + checksum lines. This option is useful only if all but a few lines + in the checked input are valid. + + + +File: coreutils.info, Node: Operating on sorted files, Next: Operating on fields within a line, Prev: Summarizing files, Up: Top + +Operating on sorted files +************************* + + These commands work with (or produce) sorted files. + +* Menu: + +* sort invocation:: Sort text files. +* uniq invocation:: Uniquify files. +* comm invocation:: Compare two sorted files line by line. +* ptx invocation:: Produce a permuted index of file contents. +* tsort invocation:: Topological sort. +* tsort background:: Where tsort came from. + + +File: coreutils.info, Node: sort invocation, Next: uniq invocation, Up: Operating on sorted files + +`sort': Sort text files +======================= + + `sort' sorts, merges, or compares all the lines from the given +files, or standard input if none are given or for a FILE of `-'. By +default, `sort' writes the results to standard output. Synopsis: + + sort [OPTION]... [FILE]... + + `sort' has three modes of operation: sort (the default), merge, and +check for sortedness. The following options change the operation mode: + +`-c' +`--check' + Check whether the given files are already sorted: if they are not + all sorted, print an error message and exit with a status of 1. + Otherwise, exit successfully. + +`-m' +`--merge' + Merge the given files by sorting them as a group. Each input file + must always be individually sorted. It always works to sort + instead of merge; merging is provided because it is faster, in the + case where it works. + + + A pair of lines is compared as follows: if any key fields have been +specified, `sort' compares each pair of fields, in the order specified +on the command line, according to the associated ordering options, +until a difference is found or no fields are left. Unless otherwise +specified, all comparisons use the character collating sequence +specified by the `LC_COLLATE' locale. (1) + + If any of the global options `bdfgiMnr' are given but no key fields +are specified, `sort' compares the entire lines according to the global +options. + + Finally, as a last resort when all keys compare equal (or if no +ordering options were specified at all), `sort' compares the entire +lines. The last resort comparison honors the `--reverse' (`-r') global +option. The `--stable' (`-s') option disables this last-resort +comparison so that lines in which all fields compare equal are left in +their original relative order. If no fields or global options are +specified, `--stable' (`-s') has no effect. + + GNU `sort' (as specified for all GNU utilities) has no limit on +input line length or restrictions on bytes allowed within lines. In +addition, if the final byte of an input file is not a newline, GNU +`sort' silently supplies one. A line's trailing newline is not part of +the line for comparison purposes. + + Upon any error, `sort' exits with a status of `2'. + + If the environment variable `TMPDIR' is set, `sort' uses its value +as the directory for temporary files instead of `/tmp'. The +`--temporary-directory' (`-T') option in turn overrides the environment +variable. + + The following options affect the ordering of output lines. They may +be specified globally or as part of a specific key field. If no key +fields are specified, global options apply to comparison of entire +lines; otherwise the global options are inherited by key fields that do +not specify any special options of their own. In pre-POSIX versions of +`sort', global options affect only later key fields, so portable shell +scripts should specify global options first. + +`-b' +`--ignore-leading-blanks' + Ignore leading blanks when finding sort keys in each line. The + `LC_CTYPE' locale determines character types. + +`-d' +`--dictionary-order' + Sort in "phone directory" order: ignore all characters except + letters, digits and blanks when sorting. The `LC_CTYPE' locale + determines character types. + +`-f' +`--ignore-case' + Fold lowercase characters into the equivalent uppercase characters + when comparing so that, for example, `b' and `B' sort as equal. + The `LC_CTYPE' locale determines character types. + +`-g' +`--general-numeric-sort' + Sort numerically, using the standard C function `strtod' to convert + a prefix of each line to a double-precision floating point number. + This allows floating point numbers to be specified in scientific + notation, like `1.0e-34' and `10e100'. The `LC_NUMERIC' locale + determines the decimal-point character. Do not report overflow, + underflow, or conversion errors. Use the following collating + sequence: + + * Lines that do not start with numbers (all considered to be + equal). + + * NaNs ("Not a Number" values, in IEEE floating point + arithmetic) in a consistent but machine-dependent order. + + * Minus infinity. + + * Finite numbers in ascending numeric order (with -0 and +0 + equal). + + * Plus infinity. + + Use this option only if there is no alternative; it is much slower + than `--numeric-sort' (`-n') and it can lose information when + converting to floating point. + +`-i' +`--ignore-nonprinting' + Ignore nonprinting characters. The `LC_CTYPE' locale determines + character types. + +`-M' +`--month-sort' + An initial string, consisting of any amount of whitespace, followed + by a month name abbreviation, is folded to UPPER case and compared + in the order `JAN' < `FEB' < ... < `DEC'. Invalid names compare + low to valid names. The `LC_TIME' locale category determines the + month spellings. + +`-n' +`--numeric-sort' + Sort numerically: the number begins each line; specifically, it + consists of optional whitespace, an optional `-' sign, and zero or + more digits possibly separated by thousands separators, optionally + followed by a decimal-point character and zero or more digits. + The `LC_NUMERIC' locale specifies the decimal-point character and + thousands separator. + + Numeric sort uses what might be considered an unconventional + method to compare strings representing floating point numbers. + Rather than first converting each string to the C `double' type + and then comparing those values, `sort' aligns the decimal-point + characters in the two strings and compares the strings a character + at a time. One benefit of using this approach is its speed. In + practice this is much more efficient than performing the two + corresponding string-to-double (or even string-to-integer) + conversions and then comparing doubles. In addition, there is no + corresponding loss of precision. Converting each string to + `double' before comparison would limit precision to about 16 + digits on most systems. + + Neither a leading `+' nor exponential notation is recognized. To + compare such strings numerically, use the `--general-numeric-sort' + (`-g') option. + +`-r' +`--reverse' + Reverse the result of comparison, so that lines with greater key + values appear earlier in the output instead of later. + + + Other options are: + +`-o OUTPUT-FILE' +`--output=OUTPUT-FILE' + Write output to OUTPUT-FILE instead of standard output. If + necessary, `sort' reads input before opening OUTPUT-FILE, so you + can safely sort a file in place by using commands like `sort -o F + F' and `cat F | sort -o F'. + + On newer systems, `-o' cannot appear after an input file if + `POSIXLY_CORRECT' is set, e.g., `sort F -o F'. Portable scripts + should specify `-o OUTPUT-FILE' before any input files. + +`-s' +`--stable' + Make `sort' stable by disabling the last-resort comparison that is + performed in some cases. By default, when lines compare equal + based on command line options that affect ordering, those lines + are ordered using a "last-resort comparison" that takes the entire + line as the key and acts as if no ordering options were specified. + But if `--reverse' (`-r') was specified along with other ordering + options, then the last-resort comparison does use `--reverse'. In + any case, when no ordering option is specified or when only + `--reverse' is specified, the last-resort comparison is not + performed + +`-S SIZE' +`--buffer-size=SIZE' + Use a main-memory sort buffer of the given SIZE. By default, SIZE + is in units of 1024 bytes. Appending `%' causes SIZE to be + interpreted as a percentage of physical memory. Appending `K' + multiplies SIZE by 1024 (the default), `M' by 1,048,576, `G' by + 1,073,741,824, and so on for `T', `P', `E', `Z', and `Y'. + Appending `b' causes SIZE to be interpreted as a byte count, with + no multiplication. + + This option can improve the performance of `sort' by causing it to + start with a larger or smaller sort buffer than the default. + However, this option affects only the initial buffer size. The + buffer grows beyond SIZE if `sort' encounters input lines larger + than SIZE. + +`-t SEPARATOR' +`--field-separator=SEPARATOR' + Use character SEPARATOR as the field separator when finding the + sort keys in each line. By default, fields are separated by the + empty string between a non-whitespace character and a whitespace + character. That is, given the input line ` foo bar', `sort' + breaks it into fields ` foo' and ` bar'. The field separator is + not considered to be part of either the field preceding or the + field following. But note that sort fields that extend to the end + of the line, as `-k 2', or sort fields consisting of a range, as + `-k 2,3', retain the field separators present between the + endpoints of the range. + +`-T TEMPDIR' +`--temporary-directory=TEMPDIR' + Use directory TEMPDIR to store temporary files, overriding the + `TMPDIR' environment variable. If this option is given more than + once, temporary files are stored in all the directories given. If + you have a large sort or merge that is I/O-bound, you can often + improve performance by using this option to specify directories on + different disks and controllers. + +`-u' +`--unique' + Normally, output only the first of a sequence of lines that compare + equal. For the `--check' (`-c') option, check that no pair of + consecutive lines compares equal. + +`-k POS1[,POS2]' +`--key=POS1[,POS2]' + Specify a sort field that consists of the part of the line between + POS1 and POS2 (or the end of the line, if POS2 is omitted), + _inclusive_. Fields and character positions are numbered starting + with 1. So to sort on the second field, you'd use `--key=2,2' + (`-k 2,2'). See below for more examples. + +`-z' +`--zero-terminated' + Treat the input as a set of lines, each terminated by a zero byte + (ASCII NUL (Null) character) instead of an ASCII LF (Line Feed). + This option can be useful in conjunction with `perl -0' or `find + -print0' and `xargs -0' which do the same in order to reliably + handle arbitrary pathnames (even those which contain Line Feed + characters.) + + + Historical (BSD and System V) implementations of `sort' have +differed in their interpretation of some options, particularly `-b', +`-f', and `-n'. GNU sort follows the POSIX behavior, which is usually +(but not always!) like the System V behavior. According to POSIX, `-n' +no longer implies `-b'. For consistency, `-M' has been changed in the +same way. This may affect the meaning of character positions in field +specifications in obscure cases. The only fix is to add an explicit +`-b'. + + A position in a sort field specified with the `-k' option has the +form `F.C', where F is the number of the field to use and C is the +number of the first character from the beginning of the field. In a +start position, an omitted `.C' stands for the field's first character. +In an end position, an omitted or zero `.C' stands for the field's +last character. If the `-b' option was specified, the `.C' part of a +field specification is counted from the first nonblank character of the +field. + + A sort key position may also have any of the option letters `Mbdfinr' +appended to it, in which case the global ordering options are not used +for that particular field. The `-b' option may be independently +attached to either or both of the start and end positions of a field +specification, and if it is inherited from the global options it will +be attached to both. Keys may span multiple fields. + + On older systems, `sort' supports an obsolete origin-zero syntax +`+POS1 [-POS2]' for specifying sort keys. POSIX 1003.1-2001 (*note +Standards conformance::) does not allow this; use `-k' instead. + + Here are some examples to illustrate various combinations of options. + + * Sort in descending (reverse) numeric order. + + sort -nr + + * Sort alphabetically, omitting the first and second fields. This + uses a single key composed of the characters beginning at the + start of field three and extending to the end of each line. + + sort -k 3 + + * Sort numerically on the second field and resolve ties by sorting + alphabetically on the third and fourth characters of field five. + Use `:' as the field delimiter. + + sort -t : -k 2,2n -k 5.3,5.4 + + Note that if you had written `-k 2' instead of `-k 2,2' `sort' + would have used all characters beginning in the second field and + extending to the end of the line as the primary _numeric_ key. + For the large majority of applications, treating keys spanning + more than one field as numeric will not do what you expect. + + Also note that the `n' modifier was applied to the field-end + specifier for the first key. It would have been equivalent to + specify `-k 2n,2' or `-k 2n,2n'. All modifiers except `b' apply + to the associated _field_, regardless of whether the modifier + character is attached to the field-start and/or the field-end part + of the key specifier. + + * Sort the password file on the fifth field and ignore any leading + white space. Sort lines with equal values in field five on the + numeric user ID in field three. + + sort -t : -k 5b,5 -k 3,3n /etc/passwd + + An alternative is to use the global numeric modifier `-n'. + + sort -t : -n -k 5b,5 -k 3,3 /etc/passwd + + * Generate a tags file in case-insensitive sorted order. + + find src -type f -print0 | sort -t / -z -f | xargs -0 etags --append + + The use of `-print0', `-z', and `-0' in this case means that + pathnames that contain Line Feed characters will not get broken up + by the sort operation. + + Finally, to ignore both leading and trailing white space, you + could have applied the `b' modifier to the field-end specifier for + the first key, + + sort -t : -n -k 5b,5b -k 3,3 /etc/passwd + + or by using the global `-b' modifier instead of `-n' and an + explicit `n' with the second key specifier. + + sort -t : -b -k 5,5 -k 3,3n /etc/passwd + + + ---------- Footnotes ---------- + + (1) If you use a non-POSIX locale (e.g., by setting `LC_ALL' to +`en_US'), then `sort' may produce output that is sorted differently +than you're accustomed to. In that case, set the `LC_ALL' environment +variable to `C'. Note that setting only `LC_COLLATE' has two problems. +First, it is ineffective if `LC_ALL' is also set. Second, it has +undefined behavior if `LC_CTYPE' (or `LANG', if `LC_CTYPE' is unset) is +set to an incompatible value. For example, you get undefined behavior +if `LC_CTYPE' is `ja_JP.PCK' but `LC_COLLATE' is `en_US.UTF-8'. + + +File: coreutils.info, Node: uniq invocation, Next: comm invocation, Prev: sort invocation, Up: Operating on sorted files + +`uniq': Uniquify files +====================== + + `uniq' writes the unique lines in the given `input', or standard +input if nothing is given or for an INPUT name of `-'. Synopsis: + + uniq [OPTION]... [INPUT [OUTPUT]] + + By default, `uniq' prints the unique lines in a sorted file, i.e., +discards all but one of identical successive lines. Optionally, it can +instead show only lines that appear exactly once, or lines that appear +more than once. + + The input need not be sorted, but duplicate input lines are detected +only if they are adjacent. If you want to discard non-adjacent +duplicate lines, perhaps you want to use `sort -u'. + + Comparisons use the character collating sequence specified by the +`LC_COLLATE' locale category. + + If no OUTPUT file is specified, `uniq' writes to standard output. + + The program accepts the following options. Also see *Note Common +options::. + +`-f N' +`--skip-fields=N' + Skip N fields on each line before checking for uniqueness. Fields + are sequences of non-space non-tab characters that are separated + from each other by at least one space or tab. + + On older systems, `uniq' supports an obsolete option `-N'. POSIX + 1003.1-2001 (*note Standards conformance::) does not allow this; + use `-f N' instead. + +`-s N' +`--skip-chars=N' + Skip N characters before checking for uniqueness. If you use both + the field and character skipping options, fields are skipped over + first. + + On older systems, `uniq' supports an obsolete option `+N'. POSIX + 1003.1-2001 (*note Standards conformance::) does not allow this; + use `-s N' instead. + +`-c' +`--count' + Print the number of times each line occurred along with the line. + +`-i' +`--ignore-case' + Ignore differences in case when comparing lines. + +`-d' +`--repeated' + Print one copy of each duplicate line. + +`-D' +`--all-repeated[=DELIMIT-METHOD]' + Print all copies of each duplicate line. This option is useful + mainly in conjunction with other options e.g., to ignore case or + to compare only selected fields. The optional DELIMIT-METHOD + tells how to delimit groups of duplicate lines, and must be one of + the following: + + `none' + Do not delimit groups of duplicate lines. This is equivalent + to `--all-repeated' (`-D'). + + `prepend' + Output a newline before each group of duplicate lines. + + `separate' + Separate groups of duplicate lines with a single newline. + This is the same as using `prepend', except that there is no + newline before the first group, and hence may be better + suited for output direct to users. + + Note that when groups are delimited and the input stream contains + two or more consecutive blank lines, then the output is ambiguous. + To avoid that, filter the input through `tr -s '\n'' to replace + each sequence of consecutive newlines with a single newline. + + This is a GNU extension. + +`-u' +`--unique' + Print non-duplicate lines. + +`-w N' +`--check-chars=N' + Compare N characters on each line (after skipping any specified + fields and characters). By default the entire rest of the lines + are compared. + + + +File: coreutils.info, Node: comm invocation, Next: ptx invocation, Prev: uniq invocation, Up: Operating on sorted files + +`comm': Compare two sorted files line by line +============================================= + + `comm' writes to standard output lines that are common, and lines +that are unique, to two input files; a file name of `-' means standard +input. Synopsis: + + comm [OPTION]... FILE1 FILE2 + + Before `comm' can be used, the input files must be sorted using the +collating sequence specified by the `LC_COLLATE' locale. If an input +file ends in a non-newline character, a newline is silently appended. +The `sort' command with no options always outputs a file that is +suitable input to `comm'. + + With no options, `comm' produces three column output. Column one +contains lines unique to FILE1, column two contains lines unique to +FILE2, and column three contains lines common to both files. Columns +are separated by a single TAB character. + + The options `-1', `-2', and `-3' suppress printing of the +corresponding columns. Also see *Note Common options::. + + Unlike some other comparison utilities, `comm' has an exit status +that does not depend on the result of the comparison. Upon normal +completion `comm' produces an exit code of zero. If there is an error +it exits with nonzero status. + + +File: coreutils.info, Node: tsort invocation, Next: tsort background, Prev: ptx invocation, Up: Operating on sorted files + +`tsort': Topological sort +========================= + + `tsort' performs a topological sort on the given FILE, or standard +input if no input file is given or for a FILE of `-'. For more details +and some history, see *Note tsort background::. Synopsis: + + tsort [OPTION] [FILE] + + `tsort' reads its input as pairs of strings, separated by blanks, +indicating a partial ordering. The output is a total ordering that +corresponds to the given partial ordering. + + For example + + tsort < out + $ dd bs=1 skip=252 count=6 < out 2>/dev/null; echo + deeper + + Note that although the listing above includes a trailing slash for + the `deeper' entry, the offsets select the name without the + trailing slash. However, if you invoke `ls' with `--dired' along + with an option like `--escape' (aka `-b') and operate on a file + whose name contains special characters, notice that the backslash + _is_ included: + + $ touch 'a b' + $ ls -blog --dired 'a b' + -rw-r--r-- 1 0 Nov 9 18:41 a\ b + //DIRED// 40 44 + //DIRED-OPTIONS// --quoting-style=escape + + If you use a quoting style that adds quote marks (e.g., + `--quoting-style=c'), then the offsets include the quote marks. + So beware that the user may select the quoting style via the + environment variable `QUOTING_STYLE'. Hence, applications using + `--dired' should either specify an explicit + `--quoting-style=literal' option (aka `-N' or `--literal') on the + command line, or else be prepared to parse the escaped names. + +`--full-time' + Produce long format directory listings, and list times in full. + It is equivalent to using `--format=long' with + `--time-style=full-iso' (*note Formatting file timestamps::). + +`-g' + Produce long format directory listings, but don't display owner + information. + +`-G' +`--no-group' + Inhibit display of group information in a long format directory + listing. (This is the default in some non-GNU versions of `ls', + so we provide this option for compatibility.) + +`-h' +`--human-readable' + Append a size letter to each size, such as `M' for mebibytes. + Powers of 1024 are used, not 1000; `M' stands for 1,048,576 bytes. + This option is equivalent to `--block-size=human' (*note Block + size::). Use the `--si' option if you prefer powers of 1000. + +`-i' +`--inode' + Print the inode number (also called the file serial number and + index number) of each file to the left of the file name. (This + number uniquely identifies each file within a particular + filesystem.) + +`-l' +`--format=long' +`--format=verbose' + In addition to the name of each file, print the file type, + permissions, number of hard links, owner name, group name, size, + and timestamp (*note Formatting file timestamps::), normally the + modification time. + + Normally the size is printed as a byte count without punctuation, + but this can be overridden (*note Block size::). For example, `-h' + prints an abbreviated, human-readable count, and + `--block-size="'1"' prints a byte count with the thousands + separator of the current locale. + + For each directory that is listed, preface the files with a line + `total BLOCKS', where BLOCKS is the total disk allocation for all + files in that directory. The block size currently defaults to 1024 + bytes, but this can be overridden (*note Block size::). The + BLOCKS computed counts each hard link separately; this is arguably + a deficiency. + + The permissions listed are similar to symbolic mode specifications + (*note Symbolic Modes::). But `ls' combines multiple bits into the + third character of each set of permissions as follows: + `s' + If the setuid or setgid bit and the corresponding executable + bit are both set. + + `S' + If the setuid or setgid bit is set but the corresponding + executable bit is not set. + + `t' + If the sticky bit and the other-executable bit are both set. + + `T' + If the sticky bit is set but the other-executable bit is not + set. + + `x' + If the executable bit is set and none of the above apply. + + `-' + Otherwise. + + Following the permission bits is a single character that specifies + whether an alternate access method applies to the file. When that + character is a space, there is no alternate access method. When it + is a printing character (e.g., `+'), then there is such a method. + +`-n' +`--numeric-uid-gid' + Produce long format directory listings, but display numeric UIDs + and GIDs instead of the owner and group names. + +`-o' + Produce long format directory listings, but don't display group + information. It is equivalent to using `--format=long' with + `--no-group' . + +`-s' +`--size' + Print the disk allocation of each file to the left of the file + name. This is the amount of disk space used by the file, which is + usually a bit more than the file's size, but it can be less if the + file has holes. + + Normally the disk allocation is printed in units of 1024 bytes, + but this can be overridden (*note Block size::). + + For files that are NFS-mounted from an HP-UX system to a BSD + system, this option reports sizes that are half the correct + values. On HP-UX systems, it reports sizes that are twice the + correct values for files that are NFS-mounted from BSD systems. + This is due to a flaw in HP-UX; it also affects the HP-UX `ls' + program. + +`--si' + Append an SI-style abbreviation to each size, such as `MB' for + megabytes. Powers of 1000 are used, not 1024; `MB' stands for + 1,000,000 bytes. This option is equivalent to `--block-size=si'. + Use the `-h' or `--human-readable' option if you prefer powers of + 1024. + + + +File: coreutils.info, Node: Sorting the output, Next: More details about version sort, Prev: What information is listed, Up: ls invocation + +Sorting the output +------------------ + + These options change the order in which `ls' sorts the information +it outputs. By default, sorting is done by character code (e.g., ASCII +order). + +`-c' +`--time=ctime' +`--time=status' +`--time=use' + If the long listing format (e.g., `-l', `-o') is being used, print + the status change time (the `ctime' in the inode) instead of the + modification time. When explicitly sorting by time (`--sort=time' + or `-t') or when not using a long listing format, sort according + to the status change time. + +`-f' + Primarily, like `-U'--do not sort; list the files in whatever + order they are stored in the directory. But also enable `-a' (list + all files) and disable `-l', `--color', and `-s' (if they were + specified before the `-f'). + +`-r' +`--reverse' + Reverse whatever the sorting method is--e.g., list files in reverse + alphabetical order, youngest first, smallest first, or whatever. + +`-S' +`--sort=size' + Sort by file size, largest first. + +`-t' +`--sort=time' + Sort by modification time (the `mtime' in the inode), newest first. + +`-u' +`--time=atime' +`--time=access' + If the long listing format (e.g., `--format=long') is being used, + print the last access time (the `atime' in the inode). When + explicitly sorting by time (`--sort=time' or `-t') or when not + using a long listing format, sort according to the access time. + +`-U' +`--sort=none' + Do not sort; list the files in whatever order they are stored in + the directory. (Do not do any of the other unrelated things that + `-f' does.) This is especially useful when listing very large + directories, since not doing any sorting can be noticeably faster. + +`-v' +`--sort=version' + Sort by version name and number, lowest first. It behaves like a + default sort, except that each sequence of decimal digits is + treated numerically as an index/version number. (*Note More + details about version sort::.) + +`-X' +`--sort=extension' + Sort directory contents alphabetically by file extension + (characters after the last `.'); files with no extension are + sorted first. + + + +File: coreutils.info, Node: More details about version sort, Next: General output formatting, Prev: Sorting the output, Up: ls invocation + +More details about version sort +------------------------------- + + The version sort takes into account the fact that file names +frequently include indices or version numbers. Standard sorting +functions usually do not produce the ordering that people expect +because comparisons are made on a character-by-character basis. The +version sort addresses this problem, and is especially useful when +browsing directories that contain many files with indices/version +numbers in their names: + + > ls -1 > ls -1v + foo.zml-1.gz foo.zml-1.gz + foo.zml-100.gz foo.zml-2.gz + foo.zml-12.gz foo.zml-6.gz + foo.zml-13.gz foo.zml-12.gz + foo.zml-2.gz foo.zml-13.gz + foo.zml-25.gz foo.zml-25.gz + foo.zml-6.gz foo.zml-100.gz + + Note also that numeric parts with leading zeroes are considered as +fractional one: + + > ls -1 > ls -1v + abc-1.007.tgz abc-1.007.tgz + abc-1.012b.tgz abc-1.01a.tgz + abc-1.01a.tgz abc-1.012b.tgz + + +File: coreutils.info, Node: General output formatting, Next: Formatting file timestamps, Prev: More details about version sort, Up: ls invocation + +General output formatting +------------------------- + + These options affect the appearance of the overall output. + +`-1' +`--format=single-column' + List one file per line. This is the default for `ls' when standard + output is not a terminal. + +`-C' +`--format=vertical' + List files in columns, sorted vertically. This is the default for + `ls' if standard output is a terminal. It is always the default + for the `dir' and `d' programs. GNU `ls' uses variable width + columns to display as many files as possible in the fewest lines. + +`--color [=WHEN]' + Specify whether to use color for distinguishing file types. WHEN + may be omitted, or one of: + * none - Do not use color at all. This is the default. + + * auto - Only use color if standard output is a terminal. + + * always - Always use color. + Specifying `--color' and no WHEN is equivalent to `--color=always'. + Piping a colorized listing through a pager like `more' or `less' + usually produces unreadable results. However, using `more -f' + does seem to work. + +`-F' +`--classify' +`--indicator-style=classify' + Append a character to each file name indicating the file type. + Also, for regular files that are executable, append `*'. The file + type indicators are `/' for directories, `@' for symbolic links, + `|' for FIFOs, `=' for sockets, and nothing for regular files. Do + not follow symbolic links listed on the command line unless the + `--dereference-command-line' (`-H'), `--dereference' (`-L'), or + `--dereference-command-line-symlink-to-dir' options are specified. + +`--indicator-style=WORD' + Append a character indicator with style WORD to entry names, as + follows: + `none' + Do not append any character indicator; this is the default. + + `file-type' + Append `/' for directories, `@' for symbolic links, `|' for + FIFOs, `=' for sockets, and nothing for regular files. This + is the same as the `-p' or `--file-type' option. + + `classify' + Append `*' for executable regular files, otherwise behave as + for `file-type'. This is the same as the `-F' or + `--classify' option. + +`-k' + Print file sizes in 1024-byte blocks, overriding the default block + size (*note Block size::). This option is equivalent to + `--block-size=1K'. + +`-m' +`--format=commas' + List files horizontally, with as many as will fit on each line, + separated by `, ' (a comma and a space). + +`-p' +`--file-type' +`--indicator-style=file-type' + Append a character to each file name indicating the file type. + This is like `-F', except that executables are not marked. + +`-x FORMAT' +`--format=across' +`--format=horizontal' + List the files in columns, sorted horizontally. + +`-T COLS' +`--tabsize=COLS' + Assume that each tabstop is COLS columns wide. The default is 8. + `ls' uses tabs where possible in the output, for efficiency. If + COLS is zero, do not use tabs at all. + +`-w' +`--width=COLS' + Assume the screen is COLS columns wide. The default is taken from + the terminal settings if possible; otherwise the environment + variable `COLUMNS' is used if it is set; otherwise the default is + 80. + + + +File: coreutils.info, Node: Formatting file timestamps, Next: Formatting the file names, Prev: General output formatting, Up: ls invocation + +Formatting file timestamps +-------------------------- + + By default, file timestamps are listed in abbreviated form. Most +locales use a timestamp like `2002-03-30 23:45'. However, the default +POSIX locale uses a date like `Mar 30 2002' for non-recent timestamps, +and a date-without-year and time like `Mar 30 23:45' for recent +timestamps. + + A timestamp is considered to be "recent" if it is less than six +months old, and is not dated in the future. If a timestamp dated today +is not listed in recent form, the timestamp is in the future, which +means you probably have clock skew problems which may break programs +like `make' that rely on file timestamps. + + The following option changes how file timestamps are printed. + +`--time-style=STYLE' + List timestamps in style STYLE. The STYLE should be one of the + following: + + `+FORMAT' + List timestamps using FORMAT, where FORMAT is interpreted + like the format argument of `date' (*note date invocation::). + For example, `--time-style="+%Y-%m-%d %H:%M:%S"' causes `ls' + to list timestamps like `2002-03-30 23:45:56'. As with + `date', FORMAT's interpretation is affected by the `LC_TIME' + locale category. + + If FORMAT contains two format strings separated by a newline, + the former is used for non-recent files and the latter for + recent files; if you want output columns to line up, you may + need to insert spaces in one of the two formats. + + `full-iso' + List timestamps in full using ISO 8601 date, time, and time + zone format with nanosecond precision, e.g., `2002-03-30 + 23:45:56.477817180 -0700'. This style is equivalent to + `+%Y-%m-%d %H:%M:%S.%N %z'. + + This is useful because the time output includes all the + information that is available from the operating system. For + example, this can help explain `make''s behavior, since GNU + `make' uses the full timestamp to determine whether a file is + out of date. + + `long-iso' + List ISO 8601 date and time in minutes, e.g., `2002-03-30 + 23:45'. These timestamps are shorter than `full-iso' + timestamps, and are usually good enough for everyday work. + This style is equivalent to `%Y-%m-%d %H:%M'. + + `iso' + List ISO 8601 dates for non-recent timestamps (e.g., + `2002-03-30 '), and ISO 8601 month, day, hour, and minute for + recent timestamps (e.g., `03-30 23:45'). These timestamps + are uglier than `long-iso' timestamps, but they carry nearly + the same information in a smaller space and their brevity + helps `ls' output fit within traditional 80-column output + lines. The following two `ls' invocations are equivalent: + + newline=' + ' + ls -l --time-style="+%Y-%m-%d $newline%m-%d %H:%M" + ls -l --time-style="iso" + + `locale' + List timestamps in a locale-dependent form. For example, a + Finnish locale might list non-recent timestamps like `maalis + 30 2002' and recent timestamps like `maalis 30 23:45'. + Locale-dependent timestamps typically consume more space than + `iso' timestamps and are harder for programs to parse because + locale conventions vary so widely, but they are easier for + many people to read. + + The `LC_TIME' locale category specifies the timestamp format. + The default POSIX locale uses timestamps like `Mar 30 2002' + and `Mar 30 23:45'; in this locale, the following two `ls' + invocations are equivalent: + + newline=' + ' + ls -l --time-style="+%b %e %Y$newline%b %e %H:%M" + ls -l --time-style="locale" + + Other locales behave differently. For example, in a German + locale, `--time-style="locale"' might be equivalent to + `--time-style="+%e. %b %Y $newline%e. %b %H:%M"' and might + generate timestamps like `30. Ma"r 2002 ' and `30. Ma"r + 23:45'. + + `posix-STYLE' + List POSIX-locale timestamps if the `LC_TIME' locale category + is POSIX, STYLE timestamps otherwise. For example, the + default style, which is `posix-long-iso', lists timestamps + like `Mar 30 2002' and `Mar 30 23:45' when in the POSIX + locale, and like `2002-03-30 23:45' otherwise. + + You can specify the default value of the `--time-style' option with +the environment variable `TIME_STYLE'; if `TIME_STYLE' is not set the +default style is `posix-long-iso'. GNU Emacs 21 and later can parse +ISO dates, but older Emacs versions do not, so if you are using an +older version of Emacs and specify a non-POSIX locale, you may need to +set `TIME_STYLE="locale"'. + + +File: coreutils.info, Node: Formatting the file names, Prev: Formatting file timestamps, Up: ls invocation + +Formatting the file names +------------------------- + + These options change how file names themselves are printed. + +`-b' +`--escape' +`--quoting-style=escape' + Quote nongraphic characters in file names using alphabetic and + octal backslash sequences like those used in C. + +`-N' +`--literal' +`--quoting-style=literal' + Do not quote file names. + +`-q' +`--hide-control-chars' + Print question marks instead of nongraphic characters in file + names. This is the default if the output is a terminal and the + program is `ls'. + +`-Q' +`--quote-name' +`--quoting-style=c' + Enclose file names in double quotes and quote nongraphic + characters as in C. + +`--quoting-style=WORD' + Use style WORD to quote output names. The WORD should be one of + the following: + `literal' + Output names as-is; this is the same as the `-N' or + `--literal' option. + + `shell' + Quote names for the shell if they contain shell + metacharacters or would cause ambiguous output. + + `shell-always' + Quote names for the shell, even if they would normally not + require quoting. + + `c' + Quote names as for a C language string; this is the same as + the `-Q' or `--quote-name' option. + + `escape' + Quote as with `c' except omit the surrounding double-quote + characters; this is the same as the `-b' or `--escape' option. + + `clocale' + Quote as with `c' except use quotation marks appropriate for + the locale. + + `locale' + Like `clocale', but quote `like this' instead of "like this" + in the default C locale. This looks nicer on many displays. + + You can specify the default value of the `--quoting-style' option + with the environment variable `QUOTING_STYLE'. If that environment + variable is not set, the default value is `literal', but this + default may change to `shell' in a future version of this package. + +`--show-control-chars' + Print nongraphic characters as-is in file names. This is the + default unless the output is a terminal and the program is `ls'. + + + +File: coreutils.info, Node: dir invocation, Next: vdir invocation, Prev: ls invocation, Up: Directory listing + +`dir': Briefly list directory contents +====================================== + + `dir' (also installed as `d') is equivalent to `ls -C -b'; that is, +by default files are listed in columns, sorted vertically, and special +characters are represented by backslash escape sequences. + + *Note `ls': ls invocation. + + +File: coreutils.info, Node: vdir invocation, Next: dircolors invocation, Prev: dir invocation, Up: Directory listing + +`vdir': Verbosely list directory contents +========================================= + + `vdir' (also installed as `v') is equivalent to `ls -l -b'; that is, +by default files are listed in long format and special characters are +represented by backslash escape sequences. + + +File: coreutils.info, Node: dircolors invocation, Prev: vdir invocation, Up: Directory listing + +`dircolors': Color setup for `ls' +================================= + + `dircolors' outputs a sequence of shell commands to set up the +terminal for color output from `ls' (and `dir', etc.). Typical usage: + + eval `dircolors [OPTION]... [FILE]` + + If FILE is specified, `dircolors' reads it to determine which colors +to use for which file types and extensions. Otherwise, a precompiled +database is used. For details on the format of these files, run +`dircolors --print-database'. + + The output is a shell command to set the `LS_COLORS' environment +variable. You can specify the shell syntax to use on the command line, +or `dircolors' will guess it from the value of the `SHELL' environment +variable. + + The program accepts the following options. Also see *Note Common +options::. + +`-b' +`--sh' +`--bourne-shell' + Output Bourne shell commands. This is the default if the `SHELL' + environment variable is set and does not end with `csh' or `tcsh'. + +`-c' +`--csh' +`--c-shell' + Output C shell commands. This is the default if `SHELL' ends with + `csh' or `tcsh'. + +`-p' +`--print-database' + Print the (compiled-in) default color configuration database. This + output is itself a valid configuration file, and is fairly + descriptive of the possibilities. + + + +File: coreutils.info, Node: Basic operations, Next: Special file types, Prev: Directory listing, Up: Top + +Basic operations +**************** + + This chapter describes the commands for basic file manipulation: +copying, moving (renaming), and deleting (removing). + +* Menu: + +* cp invocation:: Copy files. +* dd invocation:: Convert and copy a file. +* install invocation:: Copy files and set attributes. +* mv invocation:: Move (rename) files. +* rm invocation:: Remove files or directories. +* shred invocation:: Remove files more securely. + + +File: coreutils.info, Node: cp invocation, Next: dd invocation, Up: Basic operations + +`cp': Copy files and directories +================================ + + `cp' copies files (or, optionally, directories). The copy is +completely independent of the original. You can either copy one file to +another, or copy arbitrarily many files to a destination directory. +Synopsis: + + cp [OPTION]... SOURCE DEST + cp [OPTION]... SOURCE... DIRECTORY + + If the last argument names an existing directory, `cp' copies each +SOURCE file into that directory (retaining the same name). Otherwise, +if only two files are given, it copies the first onto the second. It +is an error if the last argument is not a directory and more than two +non-option arguments are given. + + Generally, files are written just as they are read. For exceptions, +see the `--sparse' option below. + + By default, `cp' does not copy directories. However, the `-R', +`-a', and `-r' options cause `cp' to copy recursively by descending +into source directories and copying files to corresponding destination +directories. + + By default, `cp' follows symbolic links only when not copying +recursively. This default can be overridden with the `--archive' +(`-a'), `-d', `--dereference' (`-L'), `--no-dereference' (`-P'), and +`-H' options. If more than one of these options is specified, the last +one silently overrides the others. + + By default, `cp' copies the contents of special files only when not +copying recursively. This default can be overridden with the +`--copy-contents' option. + + `cp' generally refuses to copy a file onto itself, with the +following exception: if `--force --backup' is specified with SOURCE and +DEST identical, and referring to a regular file, `cp' will make a +backup file, either regular or numbered, as specified in the usual ways +(*note Backup options::). This is useful when you simply want to make +a backup of an existing file before changing it. + + The program accepts the following options. Also see *Note Common +options::. + +`-a' +`--archive' + Preserve as much as possible of the structure and attributes of the + original files in the copy (but do not attempt to preserve internal + directory structure; i.e., `ls -U' may list the entries in a copied + directory in a different order). Equivalent to `-dpPR'. + +`-b' +`--backup[=METHOD]' + *Note Backup options::. Make a backup of each file that would + otherwise be overwritten or removed. As a special case, `cp' + makes a backup of SOURCE when the force and backup options are + given and SOURCE and DEST are the same name for an existing, + regular file. One useful application of this combination of + options is this tiny Bourne shell script: + + #!/bin/sh + # Usage: backup FILE... + # Create a GNU-style backup of each listed FILE. + for i; do + cp --backup --force "$i" "$i" + done + +`--copy-contents' + If copying recursively, copy the contents of any special files + (e.g., FIFOs and device files) as if they were regular files. + This means trying to read the data in each source file and writing + it to the destination. It is usually a mistake to use this + option, as it normally has undesirable effects on special files + like FIFOs and the ones typically found in the `/dev' directory. + In most cases, `cp -R --copy-contents' will hang indefinitely + trying to read from FIFOs and special files like `/dev/console', + and it will fill up your destination disk if you use it to copy + `/dev/zero'. This option has no effect unless copying + recursively, and it does not affect the copying of symbolic links. + +`-d' + Copy symbolic links as symbolic links rather than copying the + files that they point to, and preserve hard links between source + files in the copies. Equivalent to `--no-dereference + --preserve=links'. + +`-f' +`--force' + When copying without this option and an existing destination file + cannot be opened for writing, the copy fails. However, with + `--force'), when a destination file cannot be opened, `cp' then + unlinks it and tries to open it again. Contrast this behavior + with that enabled by `--link' and `--symbolic-link', whereby the + destination file is never opened but rather is unlinked + unconditionally. Also see the description of + `--remove-destination'. + +`-H' + If a command line argument specifies a symbolic link, then copy the + file it points to rather than the symbolic link itself. However, + copy (preserving its nature) any symbolic link that is encountered + via recursive traversal. + +`-i' +`--interactive' + Prompt whether to overwrite existing regular destination files. + +`-l' +`--link' + Make hard links instead of copies of non-directories. + +`-L' +`--dereference' + Always follow symbolic links. + +`-P' +`--no-dereference' + Copy symbolic links as symbolic links rather than copying the + files that they point to. + +`-p' +`--preserve[=ATTRIBUTE_LIST]' + Preserve the specified attributes of the original files. If + specified, the ATTRIBUTE_LIST must be a comma-separated list of + one or more of the following strings: + + `mode' + Preserve the permission attributes. + + `ownership' + Preserve the owner and group. On most modern systems, only + the super-user may change the owner of a file, and regular + users may preserve the group ownership of a file only if they + happen to be a member of the desired group. + + `timestamps' + Preserve the times of last access and last modification. + + `links' + Preserve in the destination files any links between + corresponding source files. + + `all' + Preserve all file attributes. Equivalent to specifying all + of the above. + + Using `--preserve' with no ATTRIBUTE_LIST is equivalent to + `--preserve=mode,ownership,timestamps'. + + In the absence of this option, each destination file is created + with the permissions of the corresponding source file, minus the + bits set in the umask and minus the set-user-id and set-group-id + bits. *Note File permissions::. + +`--no-preserve=ATTRIBUTE_LIST' + Do not preserve the specified attributes. The ATTRIBUTE_LIST has + the same form as for `--preserve'. + +`--parents' + Form the name of each destination file by appending to the target + directory a slash and the specified name of the source file. The + last argument given to `cp' must be the name of an existing + directory. For example, the command: + + cp --parents a/b/c existing_dir + + copies the file `a/b/c' to `existing_dir/a/b/c', creating any + missing intermediate directories. + +`--reply[=HOW]' + Using `--reply=yes' makes `cp' act as if `yes' were given as a + response to every prompt about a destination file. That + effectively cancels any preceding `--interactive' or `-i' option. + Specify `--reply=no' to make `cp' act as if `no' were given as a + response to every prompt about a destination file. Specify + `--reply=query' to make `cp' prompt the user about each existing + destination file. + +`-R' +`-r' +`--recursive' + Copy directories recursively. Symbolic links are not followed by + default; see the `--archive' (`-a'), `-d', `--dereference' (`-L'), + `--no-dereference' (`-P'), and `-H' options. Special files are + copied by creating a destination file of the same type as the + source; see the `--copy-contents' option. It is not portable to + use `-r' to copy symbolic links or special files. On some non-GNU + systems, `-r' implies the equivalent of `-L' and `--copy-contents' + for historical reasons. Also, it is not portable to use `-R' to + copy symbolic links unless you also specify `-P', as POSIX allows + implementations that dereference symbolic links by default. + +`--remove-destination' + Remove each existing destination file before attempting to open it + (contrast with `-f' above). + +`--sparse=WHEN' + A "sparse file" contains "holes"--a sequence of zero bytes that + does not occupy any physical disk blocks; the `read' system call + reads these as zeroes. This can both save considerable disk space + and increase speed, since many binary files contain lots of + consecutive zero bytes. By default, `cp' detects holes in input + source files via a crude heuristic and makes the corresponding + output file sparse as well. + + The WHEN value can be one of the following: + `auto' + The default behavior: the output file is sparse if the input + file is sparse. + + `always' + Always make the output file sparse. This is useful when the + input file resides on a filesystem that does not support + sparse files (the most notable example is `efs' filesystems + in SGI IRIX 5.3 and earlier), but the output file is on + another type of filesystem. + + `never' + Never make the output file sparse. This is useful in + creating a file for use with the `mkswap' command, since such + a file must not have any holes. + +`--strip-trailing-slashes' + Remove any trailing slashes from each SOURCE argument. *Note + Trailing slashes::. + +`-s' +`--symbolic-link' + Make symbolic links instead of copies of non-directories. All + source file names must be absolute (starting with `/') unless the + destination files are in the current directory. This option merely + results in an error message on systems that do not support + symbolic links. + +`-S SUFFIX' +`--suffix=SUFFIX' + Append SUFFIX to each backup file made with `-b'. *Note Backup + options::. + +`--target-directory=DIRECTORY' + Specify the destination DIRECTORY. *Note Target directory::. + +`-v' +`--verbose' + Print the name of each file before copying it. + +`-V METHOD' +`--version-control=METHOD' + Change the type of backups made with `-b'. The METHOD argument + can be `none' (or `off'), `numbered' (or `t'), `existing' (or + `nil'), or `never' (or `simple'). *Note Backup options::. + +`-x' +`--one-file-system' + Skip subdirectories that are on different filesystems from the one + that the copy started on. However, mount point directories _are_ + copied. + + + +File: coreutils.info, Node: dd invocation, Next: install invocation, Prev: cp invocation, Up: Basic operations + +`dd': Convert and copy a file +============================= + + `dd' copies a file (from standard input to standard output, by +default) with a changeable I/O block size, while optionally performing +conversions on it. Synopsis: + + dd [OPTION]... + + The program accepts the following options. Also see *Note Common +options::. + + The numeric-valued options below (BYTES and BLOCKS) can be followed +by a multiplier: `b'=512, `c'=1, `w'=2, `xM'=M, or any of the standard +block size suffixes like `k'=1024 (*note Block size::). + + Use different `dd' invocations to use different block sizes for +skipping and I/O. For example, the following shell commands copy data +in 512 KiB blocks between a disk and a tape, but do not save or restore +a 4 KiB label at the start of the disk: + + disk=/dev/rdsk/c0t1d0s2 + tape=/dev/rmt/0 + + # Copy all but the label from disk to tape. + (dd bs=4k skip=1 count=0 && dd bs=512k) <$disk >$tape + + # Copy from tape back to disk, but leave the disk label alone. + (dd bs=4k seek=1 count=0 && dd bs=512k) <$tape >$disk + +`if=FILE' + Read from FILE instead of standard input. + +`of=FILE' + Write to FILE instead of standard output. Unless `conv=notrunc' + is given, `dd' truncates FILE to zero bytes (or the size specified + with `seek='). + +`ibs=BYTES' + Read BYTES bytes at a time. + +`obs=BYTES' + Write BYTES bytes at a time. + +`bs=BYTES' + Both read and write BYTES bytes at a time. This overrides `ibs' + and `obs'. + +`cbs=BYTES' + Convert BYTES bytes at a time. + +`skip=BLOCKS' + Skip BLOCKS `ibs'-byte blocks in the input file before copying. + +`seek=BLOCKS' + Skip BLOCKS `obs'-byte blocks in the output file before copying. + +`count=BLOCKS' + Copy BLOCKS `ibs'-byte blocks from the input file, instead of + everything until the end of the file. + +`conv=CONVERSION[,CONVERSION]...' + Convert the file as specified by the CONVERSION argument(s). (No + spaces around any comma(s).) + + Conversions: + + `ascii' + Convert EBCDIC to ASCII. + + `ebcdic' + Convert ASCII to EBCDIC. + + `ibm' + Convert ASCII to alternate EBCDIC. + + `block' + For each line in the input, output `cbs' bytes, replacing the + input newline with a space and padding with spaces as + necessary. + + `unblock' + Replace trailing spaces in each `cbs'-sized input block with a + newline. + + `lcase' + Change uppercase letters to lowercase. + + `ucase' + Change lowercase letters to uppercase. + + `swab' + Swap every pair of input bytes. GNU `dd', unlike others, + works when an odd number of bytes are read--the last byte is + simply copied (since there is nothing to swap it with). + + `noerror' + Continue after read errors. + + `notrunc' + Do not truncate the output file. + + `sync' + Pad every input block to size of `ibs' with trailing zero + bytes. When used with `block' or `unblock', pad with spaces + instead of zero bytes. + + + +File: coreutils.info, Node: install invocation, Next: mv invocation, Prev: dd invocation, Up: Basic operations + +`install': Copy files and set attributes +======================================== + + `install' copies files while setting their permission modes and, if +possible, their owner and group. Synopses: + + install [OPTION]... SOURCE DEST + install [OPTION]... SOURCE... DIRECTORY + install -d [OPTION]... DIRECTORY... + + In the first of these, the SOURCE file is copied to the DEST target +file. In the second, each of the SOURCE files are copied to the +destination DIRECTORY. In the last, each DIRECTORY (and any missing +parent directories) is created. + + `install' is similar to `cp', but allows you to control the +attributes of destination files. It is typically used in Makefiles to +copy programs into their destination directories. It refuses to copy +files onto themselves. + + The program accepts the following options. Also see *Note Common +options::. + +`-b' +`--backup[=METHOD]' + *Note Backup options::. Make a backup of each file that would + otherwise be overwritten or removed. + +`-c' + Ignored; for compatibility with old Unix versions of `install'. + +`-d' +`--directory' + Create each given directory and any missing parent directories, + setting the owner, group and mode as given on the command line or + to the defaults. It also gives any parent directories it creates + those attributes. (This is different from the SunOS 4.x + `install', which gives directories that it creates the default + attributes.) + +`-g GROUP' +`--group=GROUP' + Set the group ownership of installed files or directories to + GROUP. The default is the process' current group. GROUP may be + either a group name or a numeric group id. + +`-m MODE' +`--mode=MODE' + Set the permissions for the installed file or directory to MODE, + which can be either an octal number, or a symbolic mode as in + `chmod', with 0 as the point of departure (*note File + permissions::). The default mode is `u=rwx,go=rx'--read, write, + and execute for the owner, and read and execute for group and + other. + +`-o OWNER' +`--owner=OWNER' + If `install' has appropriate privileges (is run as root), set the + ownership of installed files or directories to OWNER. The default + is `root'. OWNER may be either a user name or a numeric user ID. + +`-p' +`--preserve-timestamps' + Set the time of last access and the time of last modification of + each installed file to match those of each corresponding original + file. When a file is installed without this option, its last + access and last modification times are both set to the time of + installation. This option is useful if you want to use the last + modification times of installed files to keep track of when they + were last built as opposed to when they were last installed. + +`-s' +`--strip' + Strip the symbol tables from installed binary executables. + +`-S SUFFIX' +`--suffix=SUFFIX' + Append SUFFIX to each backup file made with `-b'. *Note Backup + options::. + +`--target-directory=DIRECTORY' + Specify the destination DIRECTORY. *Note Target directory::. + +`-v' +`--verbose' + Print the name of each file before copying it. + +`-V METHOD' +`--version-control=METHOD' + Change the type of backups made with `-b'. The METHOD argument + can be `none' (or `off'), `numbered' (or `t'), `existing' (or + `nil'), or `never' (or `simple'). *Note Backup options::. + + + +File: coreutils.info, Node: mv invocation, Next: rm invocation, Prev: install invocation, Up: Basic operations + +`mv': Move (rename) files +========================= + + `mv' moves or renames files (or directories). Synopsis: + + mv [OPTION]... SOURCE DEST + mv [OPTION]... SOURCE... DIRECTORY + + If the last argument names an existing directory, `mv' moves each +other given file into a file with the same name in that directory. +Otherwise, if only two files are given, it renames the first as the +second. It is an error if the last argument is not a directory and +more than two files are given. + + `mv' can move any type of file from one filesystem to another. +Prior to version `4.0' of the fileutils, `mv' could move only regular +files between filesystems. For example, now `mv' can move an entire +directory hierarchy including special device files from one partition +to another. It first uses some of the same code that's used by `cp -a' +to copy the requested directories and files, then (assuming the copy +succeeded) it removes the originals. If the copy fails, then the part +that was copied to the destination partition is removed. If you were +to copy three directories from one partition to another and the copy of +the first directory succeeded, but the second didn't, the first would +be left on the destination partition and the second and third would be +left on the original partition. + + If a destination file exists but is normally unwritable, standard +input is a terminal, and the `-f' or `--force' option is not given, +`mv' prompts the user for whether to replace the file. (You might own +the file, or have write permission on its directory.) If the response +does not begin with `y' or `Y', the file is skipped. + + _Warning_: If you try to move a symlink that points to a directory, +and you specify the symlink with a trailing slash, then `mv' doesn't +move the symlink but instead moves the directory referenced by the +symlink. *Note Trailing slashes::. + + The program accepts the following options. Also see *Note Common +options::. + +`-b' +`--backup[=METHOD]' + *Note Backup options::. Make a backup of each file that would + otherwise be overwritten or removed. + +`-f' +`--force' + Do not prompt the user before removing a destination file. + +`-i' +`--interactive' + Prompt whether to overwrite each existing destination file, + regardless of its permissions. If the response does not begin + with `y' or `Y', the file is skipped. + +`--reply[=HOW]' + Specifying `--reply=yes' is equivalent to using `--force'. + Specify `--reply=no' to make `mv' act as if `no' were given as a + response to every prompt about a destination file. Specify + `--reply=query' to make `mv' prompt the user about each existing + destination file. + +`-u' +`--update' + Do not move a non-directory that has an existing destination with + the same or newer modification time. + +`-v' +`--verbose' + Print the name of each file before moving it. + +`--strip-trailing-slashes' + Remove any trailing slashes from each SOURCE argument. *Note + Trailing slashes::. + +`-S SUFFIX' +`--suffix=SUFFIX' + Append SUFFIX to each backup file made with `-b'. *Note Backup + options::. + +`--target-directory=DIRECTORY' + Specify the destination DIRECTORY. *Note Target directory::. + +`-V METHOD' +`--version-control=METHOD' + Change the type of backups made with `-b'. The METHOD argument + can be `none' (or `off'), `numbered' (or `t'), `existing' (or + `nil'), or `never' (or `simple'). *Note Backup options::. + + + +File: coreutils.info, Node: rm invocation, Next: shred invocation, Prev: mv invocation, Up: Basic operations + +`rm': Remove files or directories +================================= + + `rm' removes each given FILE. By default, it does not remove +directories. Synopsis: + + rm [OPTION]... [FILE]... + + If a file is unwritable, standard input is a terminal, and the `-f' +or `--force' option is not given, or the `-i' or `--interactive' option +_is_ given, `rm' prompts the user for whether to remove the file. If +the response does not begin with `y' or `Y', the file is skipped. + + _Warning_: If you use `rm' to remove a file, it is usually possible +to recover the contents of that file. If you want more assurance that +the contents are truly unrecoverable, consider using `shred'. + + The program accepts the following options. Also see *Note Common +options::. + +`-d' +`--directory' + Attempt to remove directories using the `unlink' function rather + than the `rmdir' function, and don't require a directory to be + empty before trying to unlink it. This works only if you have + appropriate privileges and if your operating system supports + `unlink' for directories. Because unlinking a directory causes + any files in the deleted directory to become unreferenced, it is + wise to `fsck' the filesystem after doing this. + +`-f' +`--force' + Ignore nonexistent files and never prompt the user. Ignore any + previous `--interactive' (`-i') option. + +`-i' +`--interactive' + Prompt whether to remove each file. If the response does not begin + with `y' or `Y', the file is skipped. Ignore any previous + `--force' (`-f') option. + +`-r' +`-R' +`--recursive' + Remove the contents of directories recursively. + +`-v' +`--verbose' + Print the name of each file before removing it. + + + One common question is how to remove files whose names begin with a +`-'. GNU `rm', like every program that uses the `getopt' function to +parse its arguments, lets you use the `--' option to indicate that all +following arguments are non-options. To remove a file called `-f' in +the current directory, you could type either: + + rm -- -f + +or: + + rm ./-f + + The Unix `rm' program's use of a single `-' for this purpose +predates the development of the getopt standard syntax. + + +File: coreutils.info, Node: shred invocation, Prev: rm invocation, Up: Basic operations + +`shred': Remove files more securely +=================================== + + `shred' overwrites devices or files, to help prevent even very +expensive hardware from recovering the data. + + Ordinarily when you remove a file (*note rm invocation::), the data +is not actually destroyed. Only the index listing where the file is +stored is destroyed, and the storage is made available for reuse. +There are undelete utilities that will attempt to reconstruct the index +and can bring the file back if the parts were not reused. + + On a busy system with a nearly-full drive, space can get reused in a +few seconds. But there is no way to know for sure. If you have +sensitive data, you may want to be sure that recovery is not possible +by actually overwriting the file with non-sensitive data. + + However, even after doing that, it is possible to take the disk back +to a laboratory and use a lot of sensitive (and expensive) equipment to +look for the faint "echoes" of the original data underneath the +overwritten data. If the data has only been overwritten once, it's not +even that hard. + + The best way to remove something irretrievably is to destroy the +media it's on with acid, melt it down, or the like. For cheap +removable media like floppy disks, this is the preferred method. +However, hard drives are expensive and hard to melt, so the `shred' +utility tries to achieve a similar effect non-destructively. + + This uses many overwrite passes, with the data patterns chosen to +maximize the damage they do to the old data. While this will work on +floppies, the patterns are designed for best effect on hard drives. +For more details, see the source code and Peter Gutmann's paper `Secure +Deletion of Data from Magnetic and Solid-State Memory', from the +proceedings of the Sixth USENIX Security Symposium (San Jose, +California, 22-25 July, 1996). The paper is also available online +. + + *Please note* that `shred' relies on a very important assumption: +that the filesystem overwrites data in place. This is the traditional +way to do things, but many modern filesystem designs do not satisfy this +assumption. Exceptions include: + + * Log-structured or journaled filesystems, such as those supplied + with AIX and Solaris, and JFS, ReiserFS, XFS, Ext3, etc. + + * Filesystems that write redundant data and carry on even if some + writes fail, such as RAID-based filesystems. + + * Filesystems that make snapshots, such as Network Appliance's NFS + server. + + * Filesystems that cache in temporary locations, such as NFS version + 3 clients. + + * Compressed filesystems. + + If you are not sure how your filesystem operates, then you should +assume that it does not overwrite data in place, which means that shred +cannot reliably operate on regular files in your filesystem. + + Generally speaking, it is more reliable to shred a device than a +file, since this bypasses the problem of filesystem design mentioned +above. However, even shredding devices is not always completely +reliable. For example, most disks map out bad sectors invisibly to the +application; if the bad sectors contain sensitive data, `shred' won't +be able to destroy it. + + `shred' makes no attempt to detect or report this problem, just as +it makes no attempt to do anything about backups. However, since it is +more reliable to shred devices than files, `shred' by default does not +truncate or remove the output file. This default is more suitable for +devices, which typically cannot be truncated and should not be removed. + + Finally, consider the risk of backups and mirrors. File system +backups and remote mirrors may contain copies of the file that cannot +be removed, and that will allow a shredded file to be recovered later. +So if you keep any data you may later want to destroy using `shred', be +sure that it is not backed up or mirrored. + + shred [OPTION]... FILE[...] + + The program accepts the following options. Also see *Note Common +options::. + +`-f' +`--force' + Override file permissions if necessary to allow overwriting. + +`-NUMBER' +`-n NUMBER' +`--iterations=NUMBER' + By default, `shred' uses 25 passes of overwrite. This is enough + for all of the useful overwrite patterns to be used at least once. + You can reduce this to save time, or increase it if you have a lot + of time to waste. + +`-s BYTES' +`--size=BYTES' + Shred the first BYTES bytes of the file. The default is to shred + the whole file. BYTES can be followed by a size specification like + `K', `M', or `G' to specify a multiple. *Note Block size::. + +`-u' +`--remove' + After shredding a file, truncate it (if possible) and then remove + it. If a file has multiple links, only the named links will be + removed. + +`-v' +`--verbose' + Display status updates as sterilization proceeds. + +`-x' +`--exact' + By default, `shred' rounds the size of a regular file up to the + next multiple of the filesystem block size to fully erase the last + block of the file. Use `--exact' to suppress that behavior. + Thus, by default if you shred a 10-byte regular file on a system + with 512-byte blocks, the resulting file will be 512 bytes long. + With this option, shred does not increase the apparent size of the + file. + +`-z' +`--zero' + Normally, the last pass that `shred' writes is made up of random + data. If this would be conspicuous on your hard drive (for + example, because it looks like encrypted data), or you just think + it's tidier, the `--zero' option adds an additional overwrite pass + with all zero bits. This is in addition to the number of passes + specified by the `--iterations' option. + +`-' + Shred standard output. + + This argument is considered an option. If the common `--' option + has been used to indicate the end of options on the command line, + then `-' will be interpreted as an ordinary file name. + + The intended use of this is to shred a removed temporary file. + For example + + i=`tempfile -m 0600` + exec 3<>"$i" + rm -- "$i" + echo "Hello, world" >&3 + shred - >&3 + exec 3>- + + Note that the shell command `shred - >file' does not shred the + contents of FILE, since it truncates FILE before invoking `shred'. + Use the command `shred file' or (if using a Bourne-compatible + shell) the command `shred - 1<>file' instead. + + + You might use the following command to erase all trace of the +filesystem you'd created on the floppy disk in your first drive. That +command takes about 20 minutes to erase a "1.44MB" (actually 1440 KiB) +floppy. + + shred --verbose /dev/fd0 + + Similarly, to erase all data on a selected partition of your hard +disk, you could give a command like this: + + shred --verbose /dev/sda5 + + +File: coreutils.info, Node: Special file types, Next: Changing file attributes, Prev: Basic operations, Up: Top + +Special file types +****************** + + This chapter describes commands which create special types of files +(and `rmdir', which removes directories, one special file type). + + Although Unix-like operating systems have markedly fewer special file +types than others, not _everything_ can be treated only as the +undifferentiated byte stream of "normal files". For example, when a +file is created or removed, the system must record this information, +which it does in a "directory"--a special type of file. Although you +can read directories as normal files, if you're curious, in order for +the system to do its job it must impose a structure, a certain order, +on the bytes of the file. Thus it is a "special" type of file. + + Besides directories, other special file types include named pipes +(FIFOs), symbolic links, sockets, and so-called "special files". + +* Menu: + +* link invocation:: Make a hard link via the link syscall +* ln invocation:: Make links between files. +* mkdir invocation:: Make directories. +* mkfifo invocation:: Make FIFOs (named pipes). +* mknod invocation:: Make block or character special files. +* readlink invocation:: Print the referent of a symbolic link. +* rmdir invocation:: Remove empty directories. +* unlink invocation:: Remove files via the unlink syscall + + +File: coreutils.info, Node: link invocation, Next: ln invocation, Up: Special file types + +`link': Make a hard link via the link syscall +============================================= + + `link' creates a single hard link at a time. It is a minimalist +interface to the system-provided `link' function. *Note Hard Links: +(libc)Hard Links. Synopsis: + + link FILENAME LINKNAME + + FILENAME must specify an existing file, and LINKNAME must specify a +nonexistent entry in an existing directory. `link' simply calls `link +(FILENAME, LINKNAME)' to create the link. + + +File: coreutils.info, Node: ln invocation, Next: mkdir invocation, Prev: link invocation, Up: Special file types + +`ln': Make links between files +============================== + + `ln' makes links between files. By default, it makes hard links; +with the `-s' option, it makes symbolic (or "soft") links. Synopses: + + ln [OPTION]... TARGET [LINKNAME] + ln [OPTION]... TARGET... DIRECTORY + + * If the last argument names an existing directory, `ln' creates a + link to each TARGET file in that directory, using the TARGETs' + names. (But see the description of the `--no-dereference' option + below.) + + * If two filenames are given, `ln' creates a link from the second to + the first. + + * If one TARGET is given, `ln' creates a link to that file in the + current directory. + + * It is an error if the last argument is not a directory and more + than two files are given. Without `-f' or `-i' (see below), `ln' + will not remove an existing file. Use the `--backup' option to + make `ln' rename existing files. + + + A "hard link" is another name for an existing file; the link and the +original are indistinguishable. Technically speaking, they share the +same inode, and the inode contains all the information about a +file--indeed, it is not incorrect to say that the inode _is_ the file. +On all existing implementations, you cannot make a hard link to a +directory, and hard links cannot cross filesystem boundaries. (These +restrictions are not mandated by POSIX, however.) + + "Symbolic links" ("symlinks" for short), on the other hand, are a +special file type (which not all kernels support: System V release 3 +(and older) systems lack symlinks) in which the link file actually +refers to a different file, by name. When most operations (opening, +reading, writing, and so on) are passed the symbolic link file, the +kernel automatically "dereferences" the link and operates on the target +of the link. But some operations (e.g., removing) work on the link +file itself, rather than on its target. *Note Symbolic Links: +(libc)Symbolic Links. + + The program accepts the following options. Also see *Note Common +options::. + +`-b' +`--backup[=METHOD]' + *Note Backup options::. Make a backup of each file that would + otherwise be overwritten or removed. + +`-d' +`-F' +`--directory' + Allow the super-user to make hard links to directories. + +`-f' +`--force' + Remove existing destination files. + +`-i' +`--interactive' + Prompt whether to remove existing destination files. + +`-n' +`--no-dereference' + When given an explicit destination that is a symlink to a + directory, treat that destination as if it were a normal file. + + When the destination is an actual directory (not a symlink to one), + there is no ambiguity. The link is created in that directory. + But when the specified destination is a symlink to a directory, + there are two ways to treat the user's request. `ln' can treat + the destination just as it would a normal directory and create the + link in it. On the other hand, the destination can be viewed as a + non-directory--as the symlink itself. In that case, `ln' must + delete or backup that symlink before creating the new link. The + default is to treat a destination that is a symlink to a directory + just like a directory. + +`-s' +`--symbolic' + Make symbolic links instead of hard links. This option merely + produces an error message on systems that do not support symbolic + links. + +`-S SUFFIX' +`--suffix=SUFFIX' + Append SUFFIX to each backup file made with `-b'. *Note Backup + options::. + +`--target-directory=DIRECTORY' + Specify the destination DIRECTORY. *Note Target directory::. + +`-v' +`--verbose' + Print the name of each file before linking it. + +`-V METHOD' +`--version-control=METHOD' + Change the type of backups made with `-b'. The METHOD argument + can be `none' (or `off'), `numbered' (or `t'), `existing' (or + `nil'), or `never' (or `simple'). *Note Backup options::. + + + Examples: + + ln -s /some/name # creates link ./name pointing to /some/name + ln -s /some/name myname # creates link ./myname pointing to /some/name + ln -s a b .. # creates links ../a and ../b pointing to ./a and ./b + + +File: coreutils.info, Node: mkdir invocation, Next: mkfifo invocation, Prev: ln invocation, Up: Special file types + +`mkdir': Make directories +========================= + + `mkdir' creates directories with the specified names. Synopsis: + + mkdir [OPTION]... NAME... + + If a NAME is an existing file but not a directory, `mkdir' prints a +warning message on stderr and will exit with a status of 1 after +processing any remaining NAMEs. The same is done when a NAME is an +existing directory and the -p option is not given. If a NAME is an +existing directory and the -p option is given, `mkdir' will ignore it. +That is, `mkdir' will not print a warning, raise an error, or change +the mode of the directory (even if the -m option is given), and will +move on to processing any remaining NAMEs. + + The program accepts the following options. Also see *Note Common +options::. + +`-m MODE' +`--mode=MODE' + Set the mode of created directories to MODE, which is symbolic as + in `chmod' and uses `a=rwx' (read, write and execute allowed for + everyone) minus the bits set in the umask for the point of the + departure. *Note File permissions::. + +`-p' +`--parents' + Make any missing parent directories for each argument. The mode + for parent directories is set to the umask modified by `u+wx'. + Ignore arguments corresponding to existing directories. + +`-v' + +`--verbose' + Print a message for each created directory. This is most useful + with `--parents'. + + +File: coreutils.info, Node: mkfifo invocation, Next: mknod invocation, Prev: mkdir invocation, Up: Special file types + +`mkfifo': Make FIFOs (named pipes) +================================== + + `mkfifo' creates FIFOs (also called "named pipes") with the +specified names. Synopsis: + + mkfifo [OPTION] NAME... + + A "FIFO" is a special file type that permits independent processes +to communicate. One process opens the FIFO file for writing, and +another for reading, after which data can flow as with the usual +anonymous pipe in shells or elsewhere. + + The program accepts the following option. Also see *Note Common +options::. + +`-m MODE' +`--mode=MODE' + Set the mode of created FIFOs to MODE, which is symbolic as in + `chmod' and uses `a=rw' (read and write allowed for everyone) minus + the bits set in the umask for the point of departure. *Note File + permissions::. + + + +File: coreutils.info, Node: mknod invocation, Next: readlink invocation, Prev: mkfifo invocation, Up: Special file types + +`mknod': Make block or character special files +============================================== + + `mknod' creates a FIFO, character special file, or block special +file with the specified name. Synopsis: + + mknod [OPTION]... NAME TYPE [MAJOR MINOR] + + Unlike the phrase "special file type" above, the term "special file" +has a technical meaning on Unix: something that can generate or receive +data. Usually this corresponds to a physical piece of hardware, e.g., +a printer or a disk. (These files are typically created at +system-configuration time.) The `mknod' command is what creates files +of this type. Such devices can be read either a character at a time or +a "block" (many characters) at a time, hence we say there are "block +special" files and "character special" files. + + The arguments after NAME specify the type of file to make: + +`p' + for a FIFO + +`b' + for a block special file + +`c' + for a character special file + + + When making a block or character special file, the major and minor +device numbers must be given after the file type. If a major or minor +device number begins with `0x' or `0X', it is interpreted as +hexadecimal; otherwise, if it begins with `0', as octal; otherwise, as +decimal. + + The program accepts the following option. Also see *Note Common +options::. + +`-m MODE' +`--mode=MODE' + Set the mode of created files to MODE, which is symbolic as in + `chmod' and uses `a=rw' minus the bits set in the umask as the + point of departure. *Note File permissions::. + + + +File: coreutils.info, Node: readlink invocation, Next: rmdir invocation, Prev: mknod invocation, Up: Special file types + +`readlink': Print the referent of a symbolic link +================================================= + + `readlink' may work in one of two supported modes: + +`Readlink mode' + `readlink' outputs the value of the given symbolic link. If + `readlink' is invoked with an argument other than the pathname of + a symbolic link, it exits with a non-zero exit code. + +`Canonicalize mode' + `readlink' outputs the absolute name of the given file which + contains no `.', `..' components nor any repeated path separators + (`/') or symlinks. In any of the path components is missing or + unavailable, it exits with a non-zero exit code. + + + readlink [OPTION] FILE + + By default, `readlink' operates in readlink mode. + + The program accepts the following options. Also see *Note Common +options::. + +`-f' +`--canonicalize' + Activate canonicalize mode. + +`-n' +`--no-newline' + Do not output the trailing newline. + +`-s' +`-q' +`--silent' +`--quiet' + Suppress most error messages. + +`-v' +`--verbose' + Report error messages. + + + The `readlink' utility first appeared in OpenBSD 2.1. + + +File: coreutils.info, Node: rmdir invocation, Next: unlink invocation, Prev: readlink invocation, Up: Special file types + +`rmdir': Remove empty directories +================================= + + `rmdir' removes empty directories. Synopsis: + + rmdir [OPTION]... DIRECTORY... + + If any DIRECTORY argument does not refer to an existing empty +directory, it is an error. + + The program accepts the following option. Also see *Note Common +options::. + +`--ignore-fail-on-non-empty' + Ignore each failure to remove a directory that is solely because + the directory is non-empty. + +`-p' +`--parents' + Remove DIRECTORY, then try to remove each component of DIRECTORY. + So, for example, `rmdir -p a/b/c' is similar to `rmdir a/b/c a/b + a'. As such, it fails if any of those directories turns out not + to be empty. Use the `--ignore-fail-on-non-empty' option to make + it so such a failure does not evoke a diagnostic and does not + cause `rmdir' to exit unsuccessfully. + +`-v' + +`--verbose' + Give a diagnostic for each successful removal. DIRECTORY is + removed. + + + *Note rm invocation::, for how to remove non-empty directories +(recursively). + + +File: coreutils.info, Node: unlink invocation, Prev: rmdir invocation, Up: Special file types + +`unlink': Remove files via the unlink syscall +============================================= + + `unlink' deletes a single specified file name. It is a minimalist +interface to the system-provided `unlink' function. *Note Deleting +Files: (libc)Deleting Files. Synopsis: + + unlink FILENAME + + On some systems `unlink' can be used to delete the name of a +directory. On others, it can be used that way only by a privileged +user. In the GNU system `unlink' can never delete the name of a +directory. + + By default, `unlink' honors the `--help' and `--version' options. +That makes it a little harder to remove files named `--help' and +`--version', so when the environment variable `POSIXLY_CORRECT' is set, +`unlink' treats such a command line arguments not as an option, but as +an operand. + + +File: coreutils.info, Node: Changing file attributes, Next: Disk usage, Prev: Special file types, Up: Top + +Changing file attributes +************************ + + A file is not merely its contents, a name, and a file type (*note +Special file types::). A file also has an owner (a userid), a group (a +group id), permissions (what the owner can do with the file, what +people in the group can do, and what everyone else can do), various +timestamps, and other information. Collectively, we call these a file's +"attributes". + + These commands change file attributes. + +* Menu: + +* chgrp invocation:: Change file groups. +* chmod invocation:: Change access permissions. +* chown invocation:: Change file owners and groups. +* touch invocation:: Change file timestamps. + + +File: coreutils.info, Node: chown invocation, Next: touch invocation, Prev: chmod invocation, Up: Changing file attributes + +`chown': Change file owner and group +==================================== + + `chown' changes the user and/or group ownership of each given FILE +to NEW-OWNER or to the user and group of an existing reference file. +Synopsis: + + chown [OPTION]... {NEW-OWNER | --reference=REF_FILE} FILE... + + If used, NEW-OWNER specifies the new owner and/or group as follows +(with no embedded white space): + + [OWNER] [ [:] [GROUP] ] + + Specifically: + +OWNER + If only an OWNER (a user name or numeric user id) is given, that + user is made the owner of each given file, and the files' group is + not changed. + +OWNER`:'GROUP + If the OWNER is followed by a colon and a GROUP (a group name or + numeric group id), with no spaces between them, the group + ownership of the files is changed as well (to GROUP). + +OWNER`:' + If a colon but no group name follows OWNER, that user is made the + owner of the files and the group of the files is changed to + OWNER's login group. + +`:'GROUP + If the colon and following GROUP are given, but the owner is + omitted, only the group of the files is changed; in this case, + `chown' performs the same function as `chgrp'. + + + You may use `.' in place of the `:' separator. This is a GNU +extension for compatibility with older scripts. New scripts should +avoid the use of `.' because GNU `chown' may fail if OWNER contains `.' +characters. + + The program accepts the following options. Also see *Note Common +options::. + +`-c' +`--changes' + Verbosely describe the action for each FILE whose ownership + actually changes. + +`-f' +`--silent' +`--quiet' + Do not print error messages about files whose ownership cannot be + changed. + +`--from=OLD-OWNER' + Change a FILE's ownership only if it has current attributes + specified by OLD-OWNER. OLD-OWNER has the same form as NEW-OWNER + described above. This option is useful primarily from a security + standpoint in that it narrows considerably the window of potential + abuse. For example, to reflect a UID numbering change for one + user's files without an option like this, `root' might run + + find / -owner OLDUSER -print0 | xargs -0 chown NEWUSER + + But that is dangerous because the interval between when the `find' + tests the existing file's owner and when the `chown' is actually + run may be quite large. One way to narrow the gap would be to + invoke chown for each file as it is found: + + find / -owner OLDUSER -exec chown NEWUSER {} \; + + But that is very slow if there are many affected files. With this + option, it is safer (the gap is narrower still) though still not + perfect: + + chown -R --from=OLDUSER NEWUSER / + +`--dereference' + Do not act on symbolic links themselves but rather on what they + point to. + +`-h' +`--no-dereference' + Act on symbolic links themselves instead of what they point to. + This is the default. This mode relies on the `lchown' system call. + On systems that do not provide the `lchown' system call, `chown' + fails when a file specified on the command line is a symbolic link. + By default, no diagnostic is issued for symbolic links encountered + during a recursive traversal, but see `--verbose'. + +`--reference=REF_FILE' + Change the user and group of each FILE to be the same as those of + REF_FILE. If REF_FILE is a symbolic link, do not use the user and + group of the symbolic link, but rather those of the file it refers + to. + +`-v' +`--verbose' + Output a diagnostic for every file processed. If a symbolic link + is encountered during a recursive traversal on a system without + the `lchown' system call, and `--no-dereference' is in effect, + then issue a diagnostic saying neither the symbolic link nor its + referent is being changed. + +`-R' +`--recursive' + Recursively change ownership of directories and their contents. + + + +File: coreutils.info, Node: chgrp invocation, Next: chmod invocation, Up: Changing file attributes + +`chgrp': Change group ownership +=============================== + + `chgrp' changes the group ownership of each given FILE to GROUP +(which can be either a group name or a numeric group id) or to the +group of an existing reference file. Synopsis: + + chgrp [OPTION]... {GROUP | --reference=REF_FILE} FILE... + + The program accepts the following options. Also see *Note Common +options::. + +`-c' +`--changes' + Verbosely describe the action for each FILE whose group actually + changes. + +`-f' +`--silent' +`--quiet' + Do not print error messages about files whose group cannot be + changed. + +`--dereference' + Do not act on symbolic links themselves but rather on what they + point to. + +`-h' +`--no-dereference' + Act on symbolic links themselves instead of what they point to. + This is the default. This mode relies on the `lchown' system call. + On systems that do not provide the `lchown' system call, `chgrp' + fails when a file specified on the command line is a symbolic link. + By default, no diagnostic is issued for symbolic links encountered + during a recursive traversal, but see `--verbose'. + +`--reference=REF_FILE' + Change the group of each FILE to be the same as that of REF_FILE. + If REF_FILE is a symbolic link, do not use the group of the + symbolic link, but rather that of the file it refers to. + +`-v' +`--verbose' + Output a diagnostic for every file processed. If a symbolic link + is encountered during a recursive traversal on a system without + the `lchown' system call, and `--no-dereference' is in effect, + then issue a diagnostic saying neither the symbolic link nor its + referent is being changed. + +`-R' +`--recursive' + Recursively change the group ownership of directories and their + contents. + + + +File: coreutils.info, Node: chmod invocation, Next: chown invocation, Prev: chgrp invocation, Up: Changing file attributes + +`chmod': Change access permissions +================================== + + `chmod' changes the access permissions of the named files. Synopsis: + + chmod [OPTION]... {MODE | --reference=REF_FILE} FILE... + + `chmod' never changes the permissions of symbolic links, since the +`chmod' system call cannot change their permissions. This is not a +problem since the permissions of symbolic links are never used. +However, for each symbolic link listed on the command line, `chmod' +changes the permissions of the pointed-to file. In contrast, `chmod' +ignores symbolic links encountered during recursive directory +traversals. + + If used, MODE specifies the new permissions. For details, see the +section on *Note File permissions::. + + The program accepts the following options. Also see *Note Common +options::. + +`-c' +`--changes' + Verbosely describe the action for each FILE whose permissions + actually changes. + +`-f' +`--silent' +`--quiet' + Do not print error messages about files whose permissions cannot be + changed. + +`-v' +`--verbose' + Verbosely describe the action or non-action taken for every FILE. + +`--reference=REF_FILE' + Change the mode of each FILE to be the same as that of REF_FILE. + *Note File permissions::. If REF_FILE is a symbolic link, do not + use the mode of the symbolic link, but rather that of the file it + refers to. + +`-R' +`--recursive' + Recursively change permissions of directories and their contents. + + + +File: coreutils.info, Node: touch invocation, Prev: chown invocation, Up: Changing file attributes + +`touch': Change file timestamps +=============================== + + `touch' changes the access and/or modification times of the +specified files. Synopsis: + + touch [OPTION]... FILE... + + On older systems, `touch' supports an obsolete syntax, as follows. +If the first FILE would be a valid argument to the `-t' option and no +timestamp is given with any of the `-d', `-r', or `-t' options and the +`--' argument is not given, that argument is interpreted as the time +for the other files instead of as a file name. POSIX 1003.1-2001 +(*note Standards conformance::) does not allow this; use `-t' instead. + + Any FILE that does not exist is created empty. + + If changing both the access and modification times to the current +time, `touch' can change the timestamps for files that the user running +it does not own but has write permission for. Otherwise, the user must +own the files. + + Although `touch' provides options for changing two of the times - +the times of last access and modification - of a file, there is actually +a third one as well: the inode change time. This is often referred to +as a file's `ctime'. The inode change time represents the time when +the file's meta-information last changed. One common example of this +is when the permissions of a file change. Changing the permissions +doesn't access the file, so the atime doesn't change, nor does it +modify the file, so the mtime doesn't change. Yet, something about the +file itself has changed, and this must be noted somewhere. This is the +job of the ctime field. This is necessary, so that, for example, a +backup program can make a fresh copy of the file, including the new +permissions value. Another operation that modifies a file's ctime +without affecting the others is renaming. In any case, it is not +possible, in normal operations, for a user to change the ctime field to +a user-specified value. + + The program accepts the following options. Also see *Note Common +options::. + +`-a' +`--time=atime' +`--time=access' +`--time=use' + Change the access time only. + +`-c' +`--no-create' + Do not create files that do not exist. + +`-d' +`--date=time' + Use TIME instead of the current time. It can contain month names, + time zones, `am' and `pm', etc. *Note Date input formats::. + +`-f' + Ignored; for compatibility with BSD versions of `touch'. + +`-m' +`--time=mtime' +`--time=modify' + Change the modification time only. + +`-r FILE' +`--reference=FILE' + Use the times of the reference FILE instead of the current time. + +`-t [[CC]YY]MMDDhhmm[.ss]' + Use the argument (optional four-digit or two-digit years, months, + days, hours, minutes, optional seconds) instead of the current + time. If the year is specified with only two digits, then CC is + 20 for years in the range 0 ... 68, and 19 for years in 69 ... 99. + If no digits of the year are specified, the argument is + interpreted as a date in the current year. + + + +File: coreutils.info, Node: Disk usage, Next: Printing text, Prev: Changing file attributes, Up: Top + +Disk usage +********** + + No disk can hold an infinite amount of data. These commands report +on how much disk storage is in use or available. (This has nothing +much to do with how much _main memory_, i.e., RAM, a program is using +when it runs; for that, you want `ps' or `pstat' or `swap' or some such +command.) + +* Menu: + +* df invocation:: Report filesystem disk space usage. +* du invocation:: Estimate file space usage. +* stat invocation:: Report file or filesystem status. +* sync invocation:: Synchronize memory and disk. + + +File: coreutils.info, Node: df invocation, Next: du invocation, Up: Disk usage + +`df': Report filesystem disk space usage +======================================== + + `df' reports the amount of disk space used and available on +filesystems. Synopsis: + + df [OPTION]... [FILE]... + + With no arguments, `df' reports the space used and available on all +currently mounted filesystems (of all types). Otherwise, `df' reports +on the filesystem containing each argument FILE. + + Normally the disk space is printed in units of 1024 bytes, but this +can be overridden (*note Block size::). Non-integer quantities are +rounded up to the next higher unit. + + If an argument FILE is a disk device file containing a mounted +filesystem, `df' shows the space available on that filesystem rather +than on the filesystem containing the device node (i.e., the root +filesystem). GNU `df' does not attempt to determine the disk usage on +unmounted filesystems, because on most kinds of systems doing so +requires extremely nonportable intimate knowledge of filesystem +structures. + + The program accepts the following options. Also see *Note Common +options::. + +`-a' +`--all' + Include in the listing filesystems that have a size of 0 blocks, + which are omitted by default. Such filesystems are typically + special-purpose pseudo-filesystems, such as automounter entries. + Also, filesystems of type "ignore" or "auto", supported by some + operating systems, are only included if this option is specified. + +`-B SIZE' +`--block-size=SIZE' + Scale sizes by SIZE before printing them (*note Block size::). + For example, `-BG' prints sizes in units of 1,073,741,824 bytes. + +`-h' +`--human-readable' + Append a size letter to each size, such as `M' for mebibytes. + Powers of 1024 are used, not 1000; `M' stands for 1,048,576 bytes. + Use the `-H' or `--si' option if you prefer powers of 1000. + +`-H' +`--si' + Append an SI-style abbreviation to each size, such as `MB' for + megabytes. Powers of 1000 are used, not 1024; `MB' stands for + 1,000,000 bytes. Use the `-h' or `--human-readable' option if you + prefer powers of 1024. + +`-i' +`--inodes' + List inode usage information instead of block usage. An inode + (short for index node) contains information about a file such as + its owner, permissions, timestamps, and location on the disk. + +`-k' + Print sizes in 1024-byte blocks, overriding the default block size + (*note Block size::). This option is equivalent to + `--block-size=1K'. + +`-l' +`--local' + Limit the listing to local filesystems. By default, remote + filesystems are also listed. + +`--no-sync' + Do not invoke the `sync' system call before getting any usage data. + This may make `df' run significantly faster on systems with many + disks, but on some systems (notably SunOS) the results may be + slightly out of date. This is the default. + +`-P' +`--portability' + Use the POSIX output format. This is like the default format + except for the following: + + 1. The information about each filesystem is always printed on + exactly one line; a mount device is never put on a line by + itself. This means that if the mount device name is more + than 20 characters long (e.g., for some network mounts), the + columns are misaligned. + + 2. The labels in the header output line are changed to conform + to POSIX. + +`--sync' + Invoke the `sync' system call before getting any usage data. On + some systems (notably SunOS), doing this yields more up to date + results, but in general this option makes `df' much slower, + especially when there are many or very busy filesystems. + +`-t FSTYPE' +`--type=FSTYPE' + Limit the listing to filesystems of type FSTYPE. Multiple + filesystem types can be specified by giving multiple `-t' options. + By default, nothing is omitted. + +`-T' +`--print-type' + Print each filesystem's type. The types printed here are the same + ones you can include or exclude with `-t' and `-x'. The particular + types printed are whatever is supported by the system. Here are + some of the common names (this list is certainly not exhaustive): + + `nfs' + An NFS filesystem, i.e., one mounted over a network from + another machine. This is the one type name which seems to be + used uniformly by all systems. + + `4.2, ufs, efs...' + A filesystem on a locally-mounted hard disk. (The system + might even support more than one type here; Linux does.) + + `hsfs, cdfs' + A filesystem on a CD-ROM drive. HP-UX uses `cdfs', most other + systems use `hsfs' (`hs' for "High Sierra"). + + `pcfs' + An MS-DOS filesystem, usually on a diskette. + + +`-x FSTYPE' +`--exclude-type=FSTYPE' + Limit the listing to filesystems not of type FSTYPE. Multiple + filesystem types can be eliminated by giving multiple `-x' + options. By default, no filesystem types are omitted. + +`-v' + Ignored; for compatibility with System V versions of `df'. + + + +File: coreutils.info, Node: du invocation, Next: stat invocation, Prev: df invocation, Up: Disk usage + +`du': Estimate file space usage +=============================== + + `du' reports the amount of disk space used by the specified files +and for each subdirectory (of directory arguments). Synopsis: + + du [OPTION]... [FILE]... + + With no arguments, `du' reports the disk space for the current +directory. Normally the disk space is printed in units of 1024 bytes, +but this can be overridden (*note Block size::). Non-integer +quantities are rounded up to the next higher unit. + + The program accepts the following options. Also see *Note Common +options::. + +`-a' +`--all' + Show counts for all files, not just directories. + +`--apparent-size' + Print apparent sizes, rather than disk usage. The apparent size + of a file is the number of bytes reported by `wc -c' on regular + files, or more generally, `ls -l --block-size=1' or `stat + --format=%s'. For example, a file containing the word `zoo' with + no newline would, of course, have an apparent size of 3. Such a + small file may require anywhere from zero to 16 or more kilobytes + of disk space, depending on the type and configuration of the file + system on which the file resides. However, a sparse file created + with this command + : | dd bs=1 seek=`echo '2^31'|bc` of=big + has an apparent size of 2 gigabytes, yet on most modern systems, + it actually uses almost no disk space. + +`-b' +`--bytes' + Equivalent to `--apparent-size --block-size=1'. + +`-B SIZE' +`--block-size=SIZE' + Scale sizes by SIZE before printing them (*note Block size::). + For example, `-BG' prints sizes in units of 1,073,741,824 bytes. + +`-c' +`--total' + Print a grand total of all arguments after all arguments have been + processed. This can be used to find out the total disk usage of a + given set of files or directories. + +`-D' +`--dereference-args' + Dereference symbolic links that are command line arguments. Does + not affect other symbolic links. This is helpful for finding out + the disk usage of directories, such as `/usr/tmp', which are often + symbolic links. + +`-h' +`--human-readable' + Append a size letter to each size, such as `M' for mebibytes. + Powers of 1024 are used, not 1000; `M' stands for 1,048,576 bytes. + Use the `-H' or `--si' option if you prefer powers of 1000. + +`-H' +`--si' + Append an SI-style abbreviation to each size, such as `MB' for + megabytes. Powers of 1000 are used, not 1024; `MB' stands for + 1,000,000 bytes. Use the `-h' or `--human-readable' option if you + prefer powers of 1024. + +`-k' + Print sizes in 1024-byte blocks, overriding the default block size + (*note Block size::). This option is equivalent to + `--block-size=1K'. + +`-l' +`--count-links' + Count the size of all files, even if they have appeared already + (as a hard link). + +`-L' +`--dereference' + Dereference symbolic links (show the disk space used by the file + or directory that the link points to instead of the space used by + the link). + +`--max-depth=DEPTH' + Show the total for each directory (and file if -all) that is at + most MAX_DEPTH levels down from the root of the hierarchy. The + root is at level 0, so `du --max-depth=0' is equivalent to `du -s'. + +`-s' +`--summarize' + Display only a total for each argument. + +`-S' +`--separate-dirs' + Report the size of each directory separately, not including the + sizes of subdirectories. + +`-x' +`--one-file-system' + Skip directories that are on different filesystems from the one + that the argument being processed is on. + +`--exclude=PATTERN' + When recursing, skip subdirectories or files matching PATTERN. + For example, `du --exclude='*.o'' excludes files whose names end + in `.o'. + +`-X FILE' +`--exclude-from=FILE' + Like `--exclude', except take the patterns to exclude from FILE, + one per line. If FILE is `-', take the patterns from standard + input. + + + On BSD systems, `du' reports sizes that are half the correct values +for files that are NFS-mounted from HP-UX systems. On HP-UX systems, +it reports sizes that are twice the correct values for files that are +NFS-mounted from BSD systems. This is due to a flaw in HP-UX; it also +affects the HP-UX `du' program. + + +File: coreutils.info, Node: stat invocation, Next: sync invocation, Prev: du invocation, Up: Disk usage + +`stat': Report file or filesystem status +======================================== + + `stat' displays information about the specified file(s). Synopsis: + + stat [OPTION]... [FILE]... + + With no option, `stat' reports all information about the given files. +But it also can be used to report the information of the filesystems the +given files are located on. If the files are links, `stat' can also +give information about the files the links point to. + +`-f' +`--filesystem' + Report information about the filesystems where the given files are + located instead of information about the files themselves. + +`-L' +`--dereference' + Change how `stat' treats symbolic links. With this option, `stat' + acts on the file referenced by each symbolic link argument. + Without it, `stat' acts on any symbolic link argument directly. + +`-t' +`--terse' + Print the information in terse form, suitable for parsing by other + programs. + +`-c' +`--format' + Allow user to specify the output format. + + Interpreted sequences for file stat are: + * %a - Access rights in octal + + * %A - Access rights in human readable form + + * %b - Number of blocks allocated (see `%B') + + * %B - The size in bytes of each block reported by `%b' + + * %d - Device number in decimal + + * %D - Device number in hex + + * %f - raw mode in hex + + * %F - File type + + * %g - Group Id of owner + + * %G - Group name of owner + + * %h - Number of hard links + + * %i - Inode number + + * %n - File name + + * %N - Quoted File name with dereference if symbolic link + + * %o - IO block size + + * %s - Total size, in bytes + + * %t - Major device type in hex + + * %T - Minor device type in hex + + * %u - User Id of owner + + * %U - User name of owner + + * %x - Time of last access + + * %X - Time of last access as seconds since Epoch + + * %y - Time of last modification + + * %Y - Time of last modification as seconds since Epoch + + * %z - Time of last change + + * %Z - Time of last change as seconds since Epoch + + Interpreted sequences for filesystem stat are: + * %n - File name + + * %i - File System id in hex + + * %l - Maximum length of filenames + + * %t - Type in hex + + * %T - Type in human readable form + + * %b - Total data blocks in file system + + * %f - Free blocks in file system + + * %a - Free blocks available to non-superuser + + * %s - Optimal transfer block size + + * %c - Total file nodes in file system + + +File: coreutils.info, Node: sync invocation, Prev: stat invocation, Up: Disk usage + +`sync': Synchronize data on disk with memory +============================================ + + `sync' writes any data buffered in memory out to disk. This can +include (but is not limited to) modified superblocks, modified inodes, +and delayed reads and writes. This must be implemented by the kernel; +The `sync' program does nothing but exercise the `sync' system call. + + The kernel keeps data in memory to avoid doing (relatively slow) disk +reads and writes. This improves performance, but if the computer +crashes, data may be lost or the filesystem corrupted as a result. +`sync' ensures everything in memory is written to disk. + + Any arguments are ignored, except for a lone `--help' or `--version' +(*note Common options::). + + +File: coreutils.info, Node: Printing text, Next: Conditions, Prev: Disk usage, Up: Top + +Printing text +************* + + This section describes commands that display text strings. + +* Menu: + +* echo invocation:: Print a line of text. +* printf invocation:: Format and print data. +* yes invocation:: Print a string until interrupted. + + +File: coreutils.info, Node: echo invocation, Next: printf invocation, Up: Printing text + +`echo': Print a line of text +============================ + + `echo' writes each given STRING to standard output, with a space +between each and a newline after the last one. Synopsis: + + echo [OPTION]... [STRING]... + + The program accepts the following options. Also see *Note Common +options::. + +`-n' + Do not output the trailing newline. + +`-e' + Enable interpretation of the following backslash-escaped + characters in each STRING: + + `\a' + alert (bell) + + `\b' + backspace + + `\c' + suppress trailing newline + + `\f' + form feed + + `\n' + new line + + `\r' + carriage return + + `\t' + horizontal tab + + `\v' + vertical tab + + `\\' + backslash + + `\NNN' + the character whose ASCII code is NNN (octal); if NNN is not + a valid octal number, it is printed literally. + + + +File: coreutils.info, Node: printf invocation, Next: yes invocation, Prev: echo invocation, Up: Printing text + +`printf': Format and print data +=============================== + + `printf' does formatted printing of text. Synopsis: + + printf FORMAT [ARGUMENT]... + + `printf' prints the FORMAT string, interpreting `%' directives and +`\' escapes in the same way as the C `printf' function. The FORMAT +argument is re-used as necessary to convert all of the given ARGUMENTs. + + `printf' has one additional directive, `%b', which prints its +argument string with `\' escapes interpreted in the same way as in the +FORMAT string. + + `printf' interprets `\OOO' in FORMAT as an octal number (if OOO is 0 +to 3 octal digits) specifying a character to print, and `\xHH' as a +hexadecimal number (if HH is 1 to 2 hex digits) specifying a character +to print. + + `printf' interprets two character syntaxes introduced in ISO C 99: +`\u' for 16-bit Unicode characters, specified as 4 hex digits HHHH, and +`\U' for 32-bit Unicode characters, specified as 8 hex digits HHHHHHHH. +`printf' outputs the Unicode characters according to the LC_CTYPE part +of the current locale, i.e. depending on the values of the environment +variables `LC_ALL', `LC_CTYPE', `LANG'. + + The processing of `\u' and `\U' requires a full-featured `iconv' +facility. It is activated on systems with glibc 2.2 (or newer), or when +`libiconv' is installed prior to this package. Otherwise the use of +`\u' and `\U' will give an error message. + + An additional escape, `\c', causes `printf' to produce no further +output. + + The only options are a lone `--help' or `--version'. *Note Common +options::. + + The Unicode character syntaxes are useful for writing strings in a +locale independent way. For example, a string containing the Euro +currency symbol + + $ /usr/local/bin/printf '\u20AC 14.95' + +will be output correctly in all locales supporting the Euro symbol +(ISO-8859-15, UTF-8, and others). Similarly, a Chinese string + + $ /usr/local/bin/printf '\u4e2d\u6587' + +will be output correctly in all Chinese locales (GB2312, BIG5, UTF-8, +etc). + + Note that in these examples, the full pathname of `printf' has been +given, to distinguish it from the GNU `bash' builtin function `printf'. + + For larger strings, you don't need to look up the hexadecimal code +values of each character one by one. ASCII characters mixed with \u +escape sequences is also known as the JAVA source file encoding. You can +use GNU recode 3.5c (or newer) to convert strings to this encoding. Here +is how to convert a piece of text into a shell script which will output +this text in a locale-independent way: + + $ LC_CTYPE=zh_CN.big5 /usr/local/bin/printf \ + '\u4e2d\u6587\n' > sample.txt + $ recode BIG5..JAVA < sample.txt \ + | sed -e "s|^|/usr/local/bin/printf '|" -e "s|$|\\\\n'|" \ + > sample.sh + + +File: coreutils.info, Node: yes invocation, Prev: printf invocation, Up: Printing text + +`yes': Print a string until interrupted +======================================= + + `yes' prints the command line arguments, separated by spaces and +followed by a newline, forever until it is killed. If no arguments are +given, it prints `y' followed by a newline forever until killed. + + The only options are a lone `--help' or `--version'. *Note Common +options::. + + +File: coreutils.info, Node: Conditions, Next: Redirection, Prev: Printing text, Up: Top + +Conditions +********** + + This section describes commands that are primarily useful for their +exit status, rather than their output. Thus, they are often used as the +condition of shell `if' statements, or as the last command in a +pipeline. + +* Menu: + +* false invocation:: Do nothing, unsuccessfully. +* true invocation:: Do nothing, successfully. +* test invocation:: Check file types and compare values. +* expr invocation:: Evaluate expressions. + + +File: coreutils.info, Node: false invocation, Next: true invocation, Up: Conditions + +`false': Do nothing, unsuccessfully +=================================== + + `false' does nothing except return an exit status of 1, meaning +"failure". It can be used as a place holder in shell scripts where an +unsuccessful command is needed. + + By default, `false' honors the `--help' and `--version' options. +However, that is contrary to POSIX, so when the environment variable +`POSIXLY_CORRECT' is set, `false' ignores _all_ command line arguments, +including `--help' and `--version'. + + This version of `false' is implemented as a C program, and is thus +more secure and faster than a shell script implementation, and may +safely be used as a dummy shell for the purpose of disabling accounts. + + Note that `false' (unlike all other programs documented herein) +exits unsuccessfully, even when invoked with `--help' or `--version'. + + +File: coreutils.info, Node: true invocation, Next: test invocation, Prev: false invocation, Up: Conditions + +`true': Do nothing, successfully +================================ + + `true' does nothing except return an exit status of 0, meaning +"success". It can be used as a place holder in shell scripts where a +successful command is needed, although the shell built-in command `:' +(colon) may do the same thing faster. In most modern shells, `true' is +a built-in command, so when you use `true' in a script, you're probably +using the built-in command, not the one documented here. + + By default, `true' honors the `--help' and `--version' options. +However, that is contrary to POSIX, so when the environment variable +`POSIXLY_CORRECT' is set, `true' ignores _all_ command line arguments, +including `--help' and `--version'. + + This version of `true' is implemented as a C program, and is thus +more secure and faster than a shell script implementation, and may +safely be used as a dummy shell for the purpose of disabling accounts. + + +File: coreutils.info, Node: test invocation, Next: expr invocation, Prev: true invocation, Up: Conditions + +`test': Check file types and compare values +=========================================== + + `test' returns a status of 0 (true) or 1 (false) depending on the +evaluation of the conditional expression EXPR. Each part of the +expression must be a separate argument. + + `test' has file status checks, string operators, and numeric +comparison operators. + + Because most shells have a built-in command by the same name, using +the unadorned command name in a script or interactively may get you +different functionality than that described here. + + Besides the options below, `test' accepts a lone `--help' or +`--version'. *Note Common options::. A single non-option argument is +also allowed: `test' returns true if the argument is not null. + +* Menu: + +* File type tests:: -[bcdfhLpSt] +* Access permission tests:: -[gkruwxOG] +* File characteristic tests:: -e -s -nt -ot -ef +* String tests:: -z -n = != +* Numeric tests:: -eq -ne -lt -le -gt -ge +* Connectives for test:: ! -a -o + + +File: coreutils.info, Node: File type tests, Next: Access permission tests, Up: test invocation + +File type tests +--------------- + + These options test for particular types of files. (Everything's a +file, but not all files are the same!) + +`-b FILE' + True if FILE exists and is a block special device. + +`-c FILE' + True if FILE exists and is a character special device. + +`-d FILE' + True if FILE exists and is a directory. + +`-f FILE' + True if FILE exists and is a regular file. + +`-h FILE' +`-L FILE' + True if FILE exists and is a symbolic link. + +`-p FILE' + True if FILE exists and is a named pipe. + +`-S FILE' + True if FILE exists and is a socket. + +`-t [FD]' + True if FD is opened on a terminal. If FD is omitted, it defaults + to 1 (standard output). + + + +File: coreutils.info, Node: Access permission tests, Next: File characteristic tests, Prev: File type tests, Up: test invocation + +Access permission tests +----------------------- + + These options test for particular access permissions. + +`-g FILE' + True if FILE exists and has its set-group-id bit set. + +`-k FILE' + True if FILE has its "sticky" bit set. + +`-r FILE' + True if FILE exists and is readable. + +`-u FILE' + True if FILE exists and has its set-user-id bit set. + +`-w FILE' + True if FILE exists and is writable. + +`-x FILE' + True if FILE exists and is executable. + +`-O FILE' + True if FILE exists and is owned by the current effective user id. + +`-G FILE' + True if FILE exists and is owned by the current effective group id. + + + +File: coreutils.info, Node: File characteristic tests, Next: String tests, Prev: Access permission tests, Up: test invocation + +File characteristic tests +------------------------- + + These options test other file characteristics. + +`-e FILE' + True if FILE exists. + +`-s FILE' + True if FILE exists and has a size greater than zero. + +`FILE1 -nt FILE2' + True if FILE1 is newer (according to modification date) than + FILE2, or if FILE1 exists and FILE2 does not. + +`FILE1 -ot FILE2' + True if FILE1 is older (according to modification date) than + FILE2, or if FILE2 exists and FILE1 does not. + +`FILE1 -ef FILE2' + True if FILE1 and FILE2 have the same device and inode numbers, + i.e., if they are hard links to each other. + + + +File: coreutils.info, Node: String tests, Next: Numeric tests, Prev: File characteristic tests, Up: test invocation + +String tests +------------ + + These options test string characteristics. Strings are not quoted +for `test', though you may need to quote them to protect characters +with special meaning to the shell, e.g., spaces. + +`-z STRING' + True if the length of STRING is zero. + +`-n STRING' +`STRING' + True if the length of STRING is nonzero. + +`STRING1 = STRING2' + True if the strings are equal. + +`STRING1 != STRING2' + True if the strings are not equal. + + + +File: coreutils.info, Node: Numeric tests, Next: Connectives for test, Prev: String tests, Up: test invocation + +Numeric tests +------------- + + Numeric relationals. The arguments must be entirely numeric +(possibly negative), or the special expression `-l STRING', which +evaluates to the length of STRING. + +`ARG1 -eq ARG2' +`ARG1 -ne ARG2' +`ARG1 -lt ARG2' +`ARG1 -le ARG2' +`ARG1 -gt ARG2' +`ARG1 -ge ARG2' + These arithmetic binary operators return true if ARG1 is equal, + not-equal, less-than, less-than-or-equal, greater-than, or + greater-than-or-equal than ARG2, respectively. + + + For example: + + test -1 -gt -2 && echo yes + => yes + test -l abc -gt 1 && echo yes + => yes + test 0x100 -eq 1 + error--> test: integer expression expected before -eq + + +File: coreutils.info, Node: Connectives for test, Prev: Numeric tests, Up: test invocation + +Connectives for `test' +---------------------- + + The usual logical connectives. + +`! EXPR' + True if EXPR is false. + +`EXPR1 -a EXPR2' + True if both EXPR1 and EXPR2 are true. + +`EXPR1 -o EXPR2' + True if either EXPR1 or EXPR2 is true. + + + +File: coreutils.info, Node: expr invocation, Prev: test invocation, Up: Conditions + +`expr': Evaluate expressions +============================ + + `expr' evaluates an expression and writes the result on standard +output. Each token of the expression must be a separate argument. + + Operands are either numbers or strings. `expr' converts anything +appearing in an operand position to an integer or a string depending on +the operation being applied to it. + + Strings are not quoted for `expr' itself, though you may need to +quote them to protect characters with special meaning to the shell, +e.g., spaces. + + Operators may be given as infix symbols or prefix keywords. +Parentheses may be used for grouping in the usual manner (you must +quote parentheses to avoid the shell evaluating them, however). + + Exit status: + + 0 if the expression is neither null nor 0, + 1 if the expression is null or 0, + 2 for invalid expressions. + +* Menu: + +* String expressions:: + : match substr index length +* Numeric expressions:: + - * / % +* Relations for expr:: | & < <= = == != >= > +* Examples of expr:: Examples. + + +File: coreutils.info, Node: String expressions, Next: Numeric expressions, Up: expr invocation + +String expressions +------------------ + + `expr' supports pattern matching and other string operators. These +have lower precedence than both the numeric and relational operators (in +the next sections). + +`STRING : REGEX' + Perform pattern matching. The arguments are converted to strings + and the second is considered to be a (basic, a la GNU `grep') + regular expression, with a `^' implicitly prepended. The first + argument is then matched against this regular expression. + + If the match succeeds and REGEX uses `\(' and `\)', the `:' + expression returns the part of STRING that matched the + subexpression; otherwise, it returns the number of characters + matched. + + If the match fails, the `:' operator returns the null string if + `\(' and `\)' are used in REGEX, otherwise 0. + + Only the first `\( ... \)' pair is relevant to the return value; + additional pairs are meaningful only for grouping the regular + expression operators. + + In the regular expression, `\+', `\?', and `\|' are operators + which respectively match one or more, zero or one, or separate + alternatives. SunOS and other `expr''s treat these as regular + characters. (POSIX allows either behavior.) *Note Regular + Expression Library: (regex)Top, for details of regular expression + syntax. Some examples are in *Note Examples of expr::. + +`match STRING REGEX' + An alternative way to do pattern matching. This is the same as + `STRING : REGEX'. + +`substr STRING POSITION LENGTH' + Returns the substring of STRING beginning at POSITION with length + at most LENGTH. If either POSITION or LENGTH is negative, zero, + or non-numeric, returns the null string. + +`index STRING CHARSET' + Returns the first position in STRING where the first character in + CHARSET was found. If no character in CHARSET is found in STRING, + return 0. + +`length STRING' + Returns the length of STRING. + +`+ TOKEN' + Interpret TOKEN as a string, even if it is a keyword like MATCH or + an operator like `/'. This makes it possible to test `expr length + + "$x"' or `expr + "$x" : '.*/\(.\)'' and have it do the right + thing even if the value of $X happens to be (for example) `/' or + `index'. This operator is a GNU extension. Portable shell + scripts should use `" $token" : ' \(.*\)'' instead of `+ "$token"'. + + + To make `expr' interpret keywords as strings, you must use the +`quote' operator. + + +File: coreutils.info, Node: Numeric expressions, Next: Relations for expr, Prev: String expressions, Up: expr invocation + +Numeric expressions +------------------- + + `expr' supports the usual numeric operators, in order of increasing +precedence. The string operators (previous section) have lower +precedence, the connectives (next section) have higher. + +`+ -' + Addition and subtraction. Both arguments are converted to numbers; + an error occurs if this cannot be done. + +`* / %' + Multiplication, division, remainder. Both arguments are converted + to numbers; an error occurs if this cannot be done. + + + +File: coreutils.info, Node: Relations for expr, Next: Examples of expr, Prev: Numeric expressions, Up: expr invocation + +Relations for `expr' +-------------------- + + `expr' supports the usual logical connectives and relations. These +are higher precedence than either the string or numeric operators +(previous sections). Here is the list, lowest-precedence operator +first. + +`|' + Returns its first argument if that is neither null nor 0, + otherwise its second argument. + +`&' + Return its first argument if neither argument is null or 0, + otherwise 0. + +`< <= = == != >= >' + Compare the arguments and return 1 if the relation is true, 0 + otherwise. `==' is a synonym for `='. `expr' first tries to + convert both arguments to numbers and do a numeric comparison; if + either conversion fails, it does a lexicographic comparison using + the character collating sequence specified by the `LC_COLLATE' + locale. + + + +File: coreutils.info, Node: Examples of expr, Prev: Relations for expr, Up: expr invocation + +Examples of using `expr' +------------------------ + + Here are a few examples, including quoting for shell metacharacters. + + To add 1 to the shell variable `foo', in Bourne-compatible shells: + foo=`expr $foo + 1` + + To print the non-directory part of the file name stored in `$fname', +which need not contain a `/'. + expr $fname : '.*/\(.*\)' '|' $fname + + An example showing that `\+' is an operator: + expr aaa : 'a\+' + => 3 + + expr abc : 'a\(.\)c' + => b + expr index abcdef cz + => 3 + expr index index a + error--> expr: syntax error + expr index quote index a + => 0 + + +File: coreutils.info, Node: Redirection, Next: File name manipulation, Prev: Conditions, Up: Top + +Redirection +*********** + + Unix shells commonly provide several forms of "redirection"--ways to +change the input source or output destination of a command. But one +useful redirection is performed by a separate command, not by the shell; +it's described here. + +* Menu: + +* tee invocation:: Redirect output to multiple files. + + +File: coreutils.info, Node: tee invocation, Up: Redirection + +`tee': Redirect output to multiple files +======================================== + + The `tee' command copies standard input to standard output and also +to any files given as arguments. This is useful when you want not only +to send some data down a pipe, but also to save a copy. Synopsis: + + tee [OPTION]... [FILE]... + + If a file being written to does not already exist, it is created. +If a file being written to already exists, the data it previously +contained is overwritten unless the `-a' option is used. + + The program accepts the following options. Also see *Note Common +options::. + +`-a' +`--append' + Append standard input to the given files rather than overwriting + them. + +`-i' +`--ignore-interrupts' + Ignore interrupt signals. + + + +File: coreutils.info, Node: File name manipulation, Next: Working context, Prev: Redirection, Up: Top + +File name manipulation +********************** + + This section describes commands that manipulate file names. + +* Menu: + +* basename invocation:: Strip directory and suffix from a file name. +* dirname invocation:: Strip non-directory suffix from a file name. +* pathchk invocation:: Check file name portability. + + +File: coreutils.info, Node: basename invocation, Next: dirname invocation, Up: File name manipulation + +`basename': Strip directory and suffix from a file name +======================================================= + + `basename' removes any leading directory components from NAME. +Synopsis: + + basename NAME [SUFFIX] + + If SUFFIX is specified and is identical to the end of NAME, it is +removed from NAME as well. `basename' prints the result on standard +output. + + The only options are `--help' and `--version'. *Note Common +options::. + + +File: coreutils.info, Node: dirname invocation, Next: pathchk invocation, Prev: basename invocation, Up: File name manipulation + +`dirname': Strip non-directory suffix from a file name +====================================================== + + `dirname' prints all but the final slash-delimited component of a +string (presumably a filename). Synopsis: + + dirname NAME + + If NAME is a single component, `dirname' prints `.' (meaning the +current directory). + + The only options are `--help' and `--version'. *Note Common +options::. + + +File: coreutils.info, Node: pathchk invocation, Prev: dirname invocation, Up: File name manipulation + +`pathchk': Check file name portability +====================================== + + `pathchk' checks portability of filenames. Synopsis: + + pathchk [OPTION]... NAME... + + For each NAME, `pathchk' prints a message if any of these conditions +is true: + 1. one of the existing directories in NAME does not have search + (execute) permission, + + 2. the length of NAME is larger than its filesystem's maximum file + name length, + + 3. the length of one component of NAME, corresponding to an existing + directory name, is larger than its filesystem's maximum length for + a file name component. + + The program accepts the following option. Also see *Note Common +options::. + +`-p' +`--portability' + Instead of performing length checks on the underlying filesystem, + test the length of each file name and its components against the + POSIX minimum limits for portability. Also check that the file + name contains no characters not in the portable file name + character set. + + + Exit status: + + 0 if all specified file names passed all of the tests, + 1 otherwise. + + +File: coreutils.info, Node: Working context, Next: User information, Prev: File name manipulation, Up: Top + +Working context +*************** + + This section describes commands that display or alter the context in +which you are working: the current directory, the terminal settings, and +so forth. See also the user-related commands in the next section. + +* Menu: + +* pwd invocation:: Print working directory. +* stty invocation:: Print or change terminal characteristics. +* printenv invocation:: Print environment variables. +* tty invocation:: Print file name of terminal on standard input. + + +File: coreutils.info, Node: pwd invocation, Next: stty invocation, Up: Working context + +`pwd': Print working directory +============================== + + `pwd' prints the fully resolved name of the current directory. That +is, all components of the printed name will be actual directory +names--none will be symbolic links. + + Because most shells have a built-in command by the same name, using +the unadorned command name in a script or interactively may get you +different functionality than that described here. + + The only options are a lone `--help' or `--version'. *Note Common +options::. + + +File: coreutils.info, Node: stty invocation, Next: printenv invocation, Prev: pwd invocation, Up: Working context + +`stty': Print or change terminal characteristics +================================================ + + `stty' prints or changes terminal characteristics, such as baud rate. +Synopses: + + stty [OPTION] [SETTING]... + stty [OPTION] + + If given no line settings, `stty' prints the baud rate, line +discipline number (on systems that support it), and line settings that +have been changed from the values set by `stty sane'. By default, mode +reading and setting are performed on the tty line connected to standard +input, although this can be modified by the `--file' option. + + `stty' accepts many non-option arguments that change aspects of the +terminal line operation, as described below. + + The program accepts the following options. Also see *Note Common +options::. + +`-a' +`--all' + Print all current settings in human-readable form. This option + may not be used in combination with any line settings. + +`-F DEVICE' +`--file=DEVICE' + Set the line opened by the filename specified in DEVICE instead of + the tty line connected to standard input. This option is necessary + because opening a POSIX tty requires use of the `O_NONDELAY' flag + to prevent a POSIX tty from blocking until the carrier detect line + is high if the `clocal' flag is not set. Hence, it is not always + possible to allow the shell to open the device in the traditional + manner. + +`-g' +`--save' + Print all current settings in a form that can be used as an + argument to another `stty' command to restore the current + settings. This option may not be used in combination with any + line settings. + + + Many settings can be turned off by preceding them with a `-'. Such +arguments are marked below with "May be negated" in their description. +The descriptions themselves refer to the positive case, that is, when +_not_ negated (unless stated otherwise, of course). + + Some settings are not available on all POSIX systems, since they use +extensions. Such arguments are marked below with "Non-POSIX" in their +description. On non-POSIX systems, those or other settings also may not +be available, but it's not feasible to document all the variations: just +try it and see. + +* Menu: + +* Control:: Control settings +* Input:: Input settings +* Output:: Output settings +* Local:: Local settings +* Combination:: Combination settings +* Characters:: Special characters +* Special:: Special settings + + +File: coreutils.info, Node: Control, Next: Input, Up: stty invocation + +Control settings +---------------- + + Control settings: + +`parenb' + Generate parity bit in output and expect parity bit in input. May + be negated. + +`parodd' + Set odd parity (even if negated). May be negated. + +`cs5' +`cs6' +`cs7' +`cs8' + Set character size to 5, 6, 7, or 8 bits. + +`hup' +`hupcl' + Send a hangup signal when the last process closes the tty. May be + negated. + +`cstopb' + Use two stop bits per character (one if negated). May be negated. + +`cread' + Allow input to be received. May be negated. + +`clocal' + Disable modem control signals. May be negated. + +`crtscts' + Enable RTS/CTS flow control. Non-POSIX. May be negated. + + +File: coreutils.info, Node: Input, Next: Output, Prev: Control, Up: stty invocation + +Input settings +-------------- + +`ignbrk' + Ignore break characters. May be negated. + +`brkint' + Make breaks cause an interrupt signal. May be negated. + +`ignpar' + Ignore characters with parity errors. May be negated. + +`parmrk' + Mark parity errors (with a 255-0-character sequence). May be + negated. + +`inpck' + Enable input parity checking. May be negated. + +`istrip' + Clear high (8th) bit of input characters. May be negated. + +`inlcr' + Translate newline to carriage return. May be negated. + +`igncr' + Ignore carriage return. May be negated. + +`icrnl' + Translate carriage return to newline. May be negated. + +`ixon' + Enable XON/XOFF flow control (that is, `CTRL-S'/`CTRL-Q'). May be + negated. + +`ixoff' +`tandem' + Enable sending of `stop' character when the system input buffer is + almost full, and `start' character when it becomes almost empty + again. May be negated. + +`iuclc' + Translate uppercase characters to lowercase. Non-POSIX. May be + negated. + +`ixany' + Allow any character to restart output (only the start character if + negated). Non-POSIX. May be negated. + +`imaxbel' + Enable beeping and not flushing input buffer if a character arrives + when the input buffer is full. Non-POSIX. May be negated. + + +File: coreutils.info, Node: Output, Next: Local, Prev: Input, Up: stty invocation + +Output settings +--------------- + + These arguments specify output-related operations. + +`opost' + Postprocess output. May be negated. + +`olcuc' + Translate lowercase characters to uppercase. Non-POSIX. May be + negated. + +`ocrnl' + Translate carriage return to newline. Non-POSIX. May be negated. + +`onlcr' + Translate newline to carriage return-newline. Non-POSIX. May be + negated. + +`onocr' + Do not print carriage returns in the first column. Non-POSIX. + May be negated. + +`onlret' + Newline performs a carriage return. Non-POSIX. May be negated. + +`ofill' + Use fill (padding) characters instead of timing for delays. + Non-POSIX. May be negated. + +`ofdel' + Use delete characters for fill instead of null characters. + Non-POSIX. May be negated. + +`nl1' +`nl0' + Newline delay style. Non-POSIX. + +`cr3' +`cr2' +`cr1' +`cr0' + Carriage return delay style. Non-POSIX. + +`tab3' +`tab2' +`tab1' +`tab0' + Horizontal tab delay style. Non-POSIX. + +`bs1' +`bs0' + Backspace delay style. Non-POSIX. + +`vt1' +`vt0' + Vertical tab delay style. Non-POSIX. + +`ff1' +`ff0' + Form feed delay style. Non-POSIX. + + +File: coreutils.info, Node: Local, Next: Combination, Prev: Output, Up: stty invocation + +Local settings +-------------- + +`isig' + Enable `interrupt', `quit', and `suspend' special characters. May + be negated. + +`icanon' + Enable `erase', `kill', `werase', and `rprnt' special characters. + May be negated. + +`iexten' + Enable non-POSIX special characters. May be negated. + +`echo' + Echo input characters. May be negated. + +`echoe' +`crterase' + Echo `erase' characters as backspace-space-backspace. May be + negated. + +`echok' + Echo a newline after a `kill' character. May be negated. + +`echonl' + Echo newline even if not echoing other characters. May be negated. + +`noflsh' + Disable flushing after `interrupt' and `quit' special characters. + May be negated. + +`xcase' + Enable input and output of uppercase characters by preceding their + lowercase equivalents with `\', when `icanon' is set. Non-POSIX. + May be negated. + +`tostop' + Stop background jobs that try to write to the terminal. Non-POSIX. + May be negated. + +`echoprt' +`prterase' + Echo erased characters backward, between `\' and `/'. Non-POSIX. + May be negated. + +`echoctl' +`ctlecho' + Echo control characters in hat notation (`^C') instead of + literally. Non-POSIX. May be negated. + +`echoke' +`crtkill' + Echo the `kill' special character by erasing each character on the + line as indicated by the `echoprt' and `echoe' settings, instead + of by the `echoctl' and `echok' settings. Non-POSIX. May be + negated. + + +File: coreutils.info, Node: Combination, Next: Characters, Prev: Local, Up: stty invocation + +Combination settings +-------------------- + + Combination settings: + +`evenp' +`parity' + Same as `parenb -parodd cs7'. May be negated. If negated, same + as `-parenb cs8'. + +`oddp' + Same as `parenb parodd cs7'. May be negated. If negated, same as + `-parenb cs8'. + +`nl' + Same as `-icrnl -onlcr'. May be negated. If negated, same as + `icrnl -inlcr -igncr onlcr -ocrnl -onlret'. + +`ek' + Reset the `erase' and `kill' special characters to their default + values. + +`sane' + Same as: + cread -ignbrk brkint -inlcr -igncr icrnl -ixoff + -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr + -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 + ff0 isig icanon iexten echo echoe echok -echonl + -noflsh -xcase -tostop -echoprt echoctl echoke + and also sets all special characters to their default values. + +`cooked' + Same as `brkint ignpar istrip icrnl ixon opost isig icanon', plus + sets the `eof' and `eol' characters to their default values if + they are the same as the `min' and `time' characters. May be + negated. If negated, same as `raw'. + +`raw' + Same as: + -ignbrk -brkint -ignpar -parmrk -inpck -istrip + -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany + -imaxbel -opost -isig -icanon -xcase min 1 time 0 + May be negated. If negated, same as `cooked'. + +`cbreak' + Same as `-icanon'. May be negated. If negated, same as `icanon'. + +`pass8' + Same as `-parenb -istrip cs8'. May be negated. If negated, same + as `parenb istrip cs7'. + +`litout' + Same as `-parenb -istrip -opost cs8'. May be negated. If + negated, same as `parenb istrip opost cs7'. + +`decctlq' + Same as `-ixany'. Non-POSIX. May be negated. + +`tabs' + Same as `tab0'. Non-POSIX. May be negated. If negated, same as + `tab3'. + +`lcase' +`LCASE' + Same as `xcase iuclc olcuc'. Non-POSIX. May be negated. + +`crt' + Same as `echoe echoctl echoke'. + +`dec' + Same as `echoe echoctl echoke -ixany intr ^C erase ^? kill C-u'. + + +File: coreutils.info, Node: Characters, Next: Special, Prev: Combination, Up: stty invocation + +Special characters +------------------ + + The special characters' default values vary from system to system. +They are set with the syntax `name value', where the names are listed +below and the value can be given either literally, in hat notation +(`^C'), or as an integer which may start with `0x' to indicate +hexadecimal, `0' to indicate octal, or any other digit to indicate +decimal. + + For GNU stty, giving a value of `^-' or `undef' disables that +special character. (This is incompatible with Ultrix `stty', which +uses a value of `u' to disable a special character. GNU `stty' treats +a value `u' like any other, namely to set that special character to +.) + +`intr' + Send an interrupt signal. + +`quit' + Send a quit signal. + +`erase' + Erase the last character typed. + +`kill' + Erase the current line. + +`eof' + Send an end of file (terminate the input). + +`eol' + End the line. + +`eol2' + Alternate character to end the line. Non-POSIX. + +`swtch' + Switch to a different shell layer. Non-POSIX. + +`start' + Restart the output after stopping it. + +`stop' + Stop the output. + +`susp' + Send a terminal stop signal. + +`dsusp' + Send a terminal stop signal after flushing the input. Non-POSIX. + +`rprnt' + Redraw the current line. Non-POSIX. + +`werase' + Erase the last word typed. Non-POSIX. + +`lnext' + Enter the next character typed literally, even if it is a special + character. Non-POSIX. + + +File: coreutils.info, Node: Special, Prev: Characters, Up: stty invocation + +Special settings +---------------- + +`min N' + Set the minimum number of characters that will satisfy a read until + the time value has expired, when `-icanon' is set. + +`time N' + Set the number of tenths of a second before reads time out if the + minimum number of characters have not been read, when `-icanon' is + set. + +`ispeed N' + Set the input speed to N. + +`ospeed N' + Set the output speed to N. + +`rows N' + Tell the tty kernel driver that the terminal has N rows. + Non-POSIX. + +`cols N' +`columns N' + Tell the kernel that the terminal has N columns. Non-POSIX. + +`size' + Print the number of rows and columns that the kernel thinks the + terminal has. (Systems that don't support rows and columns in the + kernel typically use the environment variables `LINES' and + `COLUMNS' instead; however, GNU `stty' does not know anything + about them.) Non-POSIX. + +`line N' + Use line discipline N. Non-POSIX. + +`speed' + Print the terminal speed. + +`N' + Set the input and output speeds to N. N can be one of: 0 50 75 + 110 134 134.5 150 200 300 600 1200 1800 2400 4800 9600 19200 38400 + `exta' `extb'. `exta' is the same as 19200; `extb' is the same as + 38400. 0 hangs up the line if `-clocal' is set. + + +File: coreutils.info, Node: printenv invocation, Next: tty invocation, Prev: stty invocation, Up: Working context + +`printenv': Print all or some environment variables +=================================================== + + `printenv' prints environment variable values. Synopsis: + + printenv [OPTION] [VARIABLE]... + + If no VARIABLEs are specified, `printenv' prints the value of every +environment variable. Otherwise, it prints the value of each VARIABLE +that is set, and nothing for those that are not set. + + The only options are a lone `--help' or `--version'. *Note Common +options::. + + Exit status: + + 0 if all variables specified were found + 1 if at least one specified variable was not found + 2 if a write error occurred + + +File: coreutils.info, Node: tty invocation, Prev: printenv invocation, Up: Working context + +`tty': Print file name of terminal on standard input +==================================================== + + `tty' prints the file name of the terminal connected to its standard +input. It prints `not a tty' if standard input is not a terminal. +Synopsis: + + tty [OPTION]... + + The program accepts the following option. Also see *Note Common +options::. + +`-s' +`--silent' +`--quiet' + Print nothing; only return an exit status. + + + Exit status: + + 0 if standard input is a terminal + 1 if standard input is not a terminal + 2 if given incorrect arguments + 3 if a write error occurs + + +File: coreutils.info, Node: User information, Next: System context, Prev: Working context, Up: Top + +User information +**************** + + This section describes commands that print user-related information: +logins, groups, and so forth. + +* Menu: + +* id invocation:: Print real and effective uid and gid. +* logname invocation:: Print current login name. +* whoami invocation:: Print effective user id. +* groups invocation:: Print group names a user is in. +* users invocation:: Print login names of users currently logged in. +* who invocation:: Print who is currently logged in. + + +File: coreutils.info, Node: id invocation, Next: logname invocation, Up: User information + +`id': Print real and effective uid and gid +========================================== + + `id' prints information about the given user, or the process running +it if no user is specified. Synopsis: + + id [OPTION]... [USERNAME] + + By default, it prints the real user id, real group id, effective +user id if different from the real user id, effective group id if +different from the real group id, and supplemental group ids. + + Each of these numeric values is preceded by an identifying string and +followed by the corresponding user or group name in parentheses. + + The options cause `id' to print only part of the above information. +Also see *Note Common options::. + +`-g' +`--group' + Print only the group id. + +`-G' +`--groups' + Print only the supplementary groups. + +`-n' +`--name' + Print the user or group name instead of the ID number. Requires + `-u', `-g', or `-G'. + +`-r' +`--real' + Print the real, instead of effective, user or group id. Requires + `-u', `-g', or `-G'. + +`-u' +`--user' + Print only the user id. + + + +File: coreutils.info, Node: logname invocation, Next: whoami invocation, Prev: id invocation, Up: User information + +`logname': Print current login name +=================================== + + `logname' prints the calling user's name, as found in the file +`/etc/utmp', and exits with a status of 0. If there is no `/etc/utmp' +entry for the calling process, `logname' prints an error message and +exits with a status of 1. + + The only options are `--help' and `--version'. *Note Common +options::. + + +File: coreutils.info, Node: whoami invocation, Next: groups invocation, Prev: logname invocation, Up: User information + +`whoami': Print effective user id +================================= + + `whoami' prints the user name associated with the current effective +user id. It is equivalent to the command `id -un'. + + The only options are `--help' and `--version'. *Note Common +options::. + + +File: coreutils.info, Node: groups invocation, Next: users invocation, Prev: whoami invocation, Up: User information + +`groups': Print group names a user is in +======================================== + + `groups' prints the names of the primary and any supplementary +groups for each given USERNAME, or the current process if no names are +given. If names are given, the name of each user is printed before the +list of that user's groups. Synopsis: + + groups [USERNAME]... + + The group lists are equivalent to the output of the command `id -Gn'. + + The only options are `--help' and `--version'. *Note Common +options::. + + +File: coreutils.info, Node: users invocation, Next: who invocation, Prev: groups invocation, Up: User information + +`users': Print login names of users currently logged in +======================================================= + + `users' prints on a single line a blank-separated list of user names +of users currently logged in to the current host. Each user name +corresponds to a login session, so if a user has more than one login +session, that user's name will appear the same number of times in the +output. Synopsis: + + users [FILE] + + With no FILE argument, `users' extracts its information from the +file `/etc/utmp'. If a file argument is given, `users' uses that file +instead. A common choice is `/etc/wtmp'. + + The only options are `--help' and `--version'. *Note Common +options::. + + +File: coreutils.info, Node: who invocation, Prev: users invocation, Up: User information + +`who': Print who is currently logged in +======================================= + + `who' prints information about users who are currently logged on. +Synopsis: + + `who' [OPTION] [FILE] [am i] + + If given no non-option arguments, `who' prints the following +information for each user currently logged on: login name, terminal +line, login time, and remote hostname or X display. + + If given one non-option argument, `who' uses that instead of +`/etc/utmp' as the name of the file containing the record of users +logged on. `/etc/wtmp' is commonly given as an argument to `who' to +look at who has previously logged on. + + If given two non-option arguments, `who' prints only the entry for +the user running it (determined from its standard input), preceded by +the hostname. Traditionally, the two arguments given are `am i', as in +`who am i'. + + The program accepts the following options. Also see *Note Common +options::. + +`-m' + Same as `who am i'. + +`-q' +`--count' + Print only the login names and the number of users logged on. + Overrides all other options. + +`-s' + Ignored; for compatibility with other versions of `who'. + +`-i' +`-u' +`--idle' + After the login time, print the number of hours and minutes that + the user has been idle. `.' means the user was active in last + minute. `old' means the user was idle for more than 24 hours. + +`-l' +`--lookup' + Attempt to canonicalize hostnames found in utmp through a DNS + lookup. This is not the default because it can cause significant + delays on systems with automatic dial-up internet access. + +`-H' +`--heading' + Print a line of column headings. + +`-w' +`-T' +`--mesg' +`--message' +`--writable' + After each login name print a character indicating the user's + message status: + + `+' allowing `write' messages + `-' disallowing `write' messages + `?' cannot find terminal device + + + +File: coreutils.info, Node: System context, Next: Modified command invocation, Prev: User information, Up: Top + +System context +************** + + This section describes commands that print or change system-wide +information. + +* Menu: + +* date invocation:: Print or set system date and time. +* uname invocation:: Print system information. +* hostname invocation:: Print or set system name. +* hostid invocation:: Print numeric host identifier. + + +File: coreutils.info, Node: date invocation, Next: uname invocation, Up: System context + +`date': Print or set system date and time +========================================= + + Synopses: + + date [OPTION]... [+FORMAT] + date [-u|--utc|--universal] [ MMDDhhmm[[CC]YY][.ss] ] + + Invoking `date' with no FORMAT argument is equivalent to invoking +`date '+%a %b %e %H:%M:%S %Z %Y''. + + If given an argument that starts with a `+', `date' prints the +current time and date (or the time and date specified by the `--date' +option, see below) in the format defined by that argument, which is the +same as in the `strftime' function. Except for directives, which start +with `%', characters in the format string are printed unchanged. The +directives are described below. + +* Menu: + +* Time directives:: %[HIklMprsSTXzZ] +* Date directives:: %[aAbBcdDhjmUwWxyY] +* Literal directives:: %[%nt] +* Padding:: Pad with zeroes, spaces (%_), or nothing (%-). +* Setting the time:: Changing the system clock. +* Options for date:: Instead of the current time. +* Examples of date:: Examples. + + +File: coreutils.info, Node: Time directives, Next: Date directives, Up: date invocation + +Time directives +--------------- + + `date' directives related to times. + +`%H' + hour (00...23) + +`%I' + hour (01...12) + +`%k' + hour ( 0...23) + +`%l' + hour ( 1...12) + +`%M' + minute (00...59) + +`%N' + nanoseconds (000000000...999999999) + +`%p' + locale's upper case `AM' or `PM' (blank in many locales) + +`%P' + locale's lower case `am' or `pm' (blank in many locales) + +`%r' + time, 12-hour (hh:mm:ss [AP]M) + +`%R' + time, 24-hour (hh:mm). Same as `%H:%M'. + +`%s' + seconds since the epoch, i.e., 1 January 1970 00:00:00 UTC (a GNU + extension). Note that this value is the number of seconds between + the epoch and the current date as defined by the localtime system + call. It isn't changed by the `--date' option. + +`%S' + second (00...60). The range is [00...60], and not [00...59], in + order to accommodate the occasional positive leap second. + +`%T' + time, 24-hour (hh:mm:ss) + +`%X' + locale's time representation (%H:%M:%S) + +`%z' + RFC-822 style numeric time zone (e.g., -0600 or +0100), or nothing + if no time zone is determinable. This value reflects the + _current_ time zone. It isn't changed by the `--date' option. + +`%Z' + time zone (e.g., EDT), or nothing if no time zone is determinable. + Note that this value reflects the _current_ time zone. It isn't + changed by the `--date' option. + + +File: coreutils.info, Node: Date directives, Next: Literal directives, Prev: Time directives, Up: date invocation + +Date directives +--------------- + + `date' directives related to dates. + +`%a' + locale's abbreviated weekday name (Sun...Sat) + +`%A' + locale's full weekday name, variable length (Sunday...Saturday) + +`%b' + locale's abbreviated month name (Jan...Dec) + +`%B' + locale's full month name, variable length (January...December) + +`%c' + locale's date and time (Sat Nov 04 12:02:33 EST 1989) + +`%C' + century (year divided by 100 and truncated to an integer) (00...99) + +`%d' + day of month (01...31) + +`%D' + date (mm/dd/yy) + +`%e' + blank-padded day of month (1...31) + +`%F' + the ISO 8601 standard date format: `%Y-%m-%d'. This is the + preferred form for all uses. + +`%g' + The year corresponding to the ISO week number, but without the + century (range `00' through `99'). This has the same format and + value as `%y', except that if the ISO week number (see `%V') + belongs to the previous or next year, that year is used instead. + +`%G' + The year corresponding to the ISO week number. This has the same + format and value as `%Y', except that if the ISO week number (see + `%V') belongs to the previous or next year, that year is used + instead. + +`%h' + same as %b + +`%j' + day of year (001...366) + +`%m' + month (01...12) + +`%u' + day of week (1...7) with 1 corresponding to Monday + +`%U' + week number of year with Sunday as first day of week (00...53). + Days in a new year preceding the first Sunday are in week zero. + +`%V' + week number of year with Monday as first day of the week as a + decimal (01...53). If the week containing January 1 has four or + more days in the new year, then it is considered week 1; + otherwise, it is week 53 of the previous year, and the next week + is week 1. (See the ISO 8601 standard.) + +`%w' + day of week (0...6) with 0 corresponding to Sunday + +`%W' + week number of year with Monday as first day of week (00...53). + Days in a new year preceding the first Monday are in week zero. + +`%x' + locale's date representation (mm/dd/yy) + +`%y' + last two digits of year (00...99) + +`%Y' + year (1970....) + + +File: coreutils.info, Node: Literal directives, Next: Padding, Prev: Date directives, Up: date invocation + +Literal directives +------------------ + + `date' directives that produce literal strings. + +`%%' + a literal % + +`%n' + a newline + +`%t' + a horizontal tab + + +File: coreutils.info, Node: Padding, Next: Setting the time, Prev: Literal directives, Up: date invocation + +Padding +------- + + By default, `date' pads numeric fields with zeroes, so that, for +example, numeric months are always output as two digits. GNU `date' +recognizes the following numeric modifiers between the `%' and the +directive. + +`-' + (hyphen) do not pad the field; useful if the output is intended for + human consumption. + +`_' + (underscore) pad the field with spaces; useful if you need a fixed + number of characters in the output, but zeroes are too distracting. + +These are GNU extensions. + + Here is an example illustrating the differences: + + date +%d/%m -d "Feb 1" + => 01/02 + date +%-d/%-m -d "Feb 1" + => 1/2 + date +%_d/%_m -d "Feb 1" + => 1/ 2 + + +File: coreutils.info, Node: Setting the time, Next: Options for date, Prev: Padding, Up: date invocation + +Setting the time +---------------- + + If given an argument that does not start with `+', `date' sets the +system clock to the time and date specified by that argument (as +described below). You must have appropriate privileges to set the +system clock. The `--date' and `--set' options may not be used with +such an argument. The `--universal' option may be used with such an +argument to indicate that the specified time and date are relative to +Coordinated Universal Time rather than to the local time zone. + + The argument must consist entirely of digits, which have the +following meaning: + +`MM' + month + +`DD' + day within month + +`hh' + hour + +`mm' + minute + +`CC' + first two digits of year (optional) + +`YY' + last two digits of year (optional) + +`ss' + second (optional) + + The `--set' option also sets the system clock; see the next section. + + +File: coreutils.info, Node: Options for date, Next: Examples of date, Prev: Setting the time, Up: date invocation + +Options for `date' +------------------ + + The program accepts the following options. Also see *Note Common +options::. + +`-d DATESTR' +`--date=DATESTR' + Display the time and date specified in DATESTR instead of the + current time and date. DATESTR can be in almost any common + format. It can contain month names, time zones, `am' and `pm', + `yesterday', `ago', `next', etc. *Note Date input formats::. + +`-f DATEFILE' +`--file=DATEFILE' + Parse each line in DATEFILE as with `-d' and display the resulting + time and date. If DATEFILE is `-', use standard input. This is + useful when you have many dates to process, because the system + overhead of starting up the `date' executable many times can be + considerable. + +`-I TIMESPEC' +`--iso-8601[=TIMESPEC]' + Display the date using the ISO 8601 format, `%Y-%m-%d'. + + The argument TIMESPEC specifies the number of additional terms of + the time to include. It can be one of the following: + `auto' + The default behavior: print just the date. + + `hours' + Append the hour of the day to the date. + + `minutes' + Append the hours and minutes. + + `seconds' + Append the hours, minutes, and seconds. + + If showing any time terms, then include the time zone using the + format `%z'. + + If TIMESPEC is omitted with `--iso-8601', the default is `auto'. + On older systems, GNU `date' instead supports an obsolete option + `-I[TIMESPEC]', where TIMESPEC defaults to `auto'. POSIX + 1003.1-2001 (*note Standards conformance::) does not allow `-I' + without an argument; use `--iso-8601' instead. + +`-R' +`--rfc-822' + Display the time and date using the RFC-822-conforming format, + `%a, %_d %b %Y %H:%M:%S %z'. + +`-r FILE' +`--reference=FILE' + Display the time and date reference according to the last + modification time of FILE, instead of the current time and date. + +`-s DATESTR' +`--set=DATESTR' + Set the time and date to DATESTR. See `-d' above. + +`-u' +`--utc' +`--universal' + Use Coordinated Universal Time (UTC) by operating as if the `TZ' + environment variable were set to the string `UTC0'. Normally, + `date' operates in the time zone indicated by `TZ', or the system + default if `TZ' is not set. Coordinated Universal Time is often + called "Greenwich Mean Time" (GMT) for historical reasons. + + +File: coreutils.info, Node: Examples of date, Prev: Options for date, Up: date invocation + +Examples of `date' +------------------ + + Here are a few examples. Also see the documentation for the `-d' +option in the previous section. + + * To print the date of the day before yesterday: + + date --date='2 days ago' + + * To print the date of the day three months and one day hence: + date --date='3 months 1 day' + + * To print the day of year of Christmas in the current year: + date --date='25 Dec' +%j + + * To print the current full month name and the day of the month: + date '+%B %d' + + But this may not be what you want because for the first nine days + of the month, the `%d' expands to a zero-padded two-digit field, + for example `date -d 1may '+%B %d'' will print `May 01'. + + * To print a date without the leading zero for one-digit days of the + month, you can use the (GNU extension) `-' modifier to suppress + the padding altogether. + date -d 1may '+%B %-d + + * To print the current date and time in the format required by many + non-GNU versions of `date' when setting the system clock: + date +%m%d%H%M%Y.%S + + * To set the system clock forward by two minutes: + date --set='+2 minutes' + + * To print the date in the format specified by RFC-822, use `date + --rfc'. I just did and saw this: + + Mon, 25 Mar 1996 23:34:17 -0600 + + * To convert a date string to the number of seconds since the epoch + (which is 1970-01-01 00:00:00 UTC), use the `--date' option with + the `%s' format. That can be useful in sorting and/or graphing + and/or comparing data by date. The following command outputs the + number of the seconds since the epoch for the time two minutes + after the epoch: + + date --date='1970-01-01 00:02:00 +0000' +%s + 120 + + If you do not specify time zone information in the date string, + `date' uses your computer's idea of the time zone when + interpreting the string. For example, if your computer's time + zone is that of Cambridge, Massachusetts, which was then 5 hours + (i.e., 18,000 seconds) behind UTC: + + # local time zone used + date --date='1970-01-01 00:02:00' +%s + 18120 + + * If you're sorting or graphing dated data, your raw date values may + be represented as seconds since the epoch. But few people can + look at the date `946684800' and casually note "Oh, that's the + first second of the year 2000 in Greenwich, England." + + date --date='2000-01-01 UTC' +%s + 946684800 + + To convert such an unwieldy number of seconds back to a more + readable form, use a command like this: + + # local time zone used + date -d '1970-01-01 UTC 946684800 seconds' +"%Y-%m-%d %T %z" + 1999-12-31 19:00:00 -0500 + + + +File: coreutils.info, Node: uname invocation, Next: hostname invocation, Prev: date invocation, Up: System context + +`uname': Print system information +================================= + + `uname' prints information about the machine and operating system it +is run on. If no options are given, `uname' acts as if the `-s' option +were given. Synopsis: + + uname [OPTION]... + + If multiple options or `-a' are given, the selected information is +printed in this order: + + KERNEL-NAME NODENAME KERNEL-RELEASE KERNEL-VERSION MACHINE PROCESSOR HARDWARE-PLATFORM OPERATING-SYSTEM + + The information may contain internal spaces, so such output cannot be +parsed reliably. In the following example, RELEASE is +`2.2.18ss.e820-bda652a #4 SMP Tue Jun 5 11:24:08 PDT 2001': + + uname -a + => Linux dum 2.2.18ss.e820-bda652a #4 SMP Tue Jun 5 11:24:08 PDT 2001 i686 unknown unknown GNU/Linux + + The program accepts the following options. Also see *Note Common +options::. + +`-a' +`--all' + Print all of the below information. + +`-i' +`--hardware-platform' + Print the hardware platform name (sometimes called the hardware + implementation). + +`-m' +`--machine' + Print the machine hardware name (sometimes called the hardware + class). + +`-n' +`--nodename' + Print the network node hostname. + +`-p' +`--processor' + Print the processor type (sometimes called the instruction set + architecture or ISA). + +`-o' +`--operating-system' + Print the name of the operating system. + +`-r' +`--kernel-release' + Print the kernel release. + +`-s' +`--kernel-name' + Print the kernel name. + +`-v' +`--kernel-version' + Print the kernel version. + + + +File: coreutils.info, Node: hostname invocation, Next: hostid invocation, Prev: uname invocation, Up: System context + +`hostname': Print or set system name +==================================== + + With no arguments, `hostname' prints the name of the current host +system. With one argument, it sets the current host name to the +specified string. You must have appropriate privileges to set the host +name. Synopsis: + + hostname [NAME] + + The only options are `--help' and `--version'. *Note Common +options::. + + +File: coreutils.info, Node: hostid invocation, Prev: hostname invocation, Up: System context + +`hostid': Print numeric host identifier. +======================================== + + `hostid' prints the numeric identifier of the current host in +hexadecimal. This command accepts no arguments. The only options are +`--help' and `--version'. *Note Common options::. + + For example, here's what it prints on one system I use: + + $ hostid + 1bac013d + + On that system, the 32-bit quantity happens to be closely related to +the system's Internet address, but that isn't always the case. + + +File: coreutils.info, Node: Modified command invocation, Next: Process control, Prev: System context, Up: Top + +Modified command invocation +*************************** + + This section describes commands that run other commands in some +context different than the current one: a modified environment, as a +different user, etc. + +* Menu: + +* chroot invocation:: Modify the root directory. +* env invocation:: Modify environment variables. +* nice invocation:: Modify scheduling priority. +* nohup invocation:: Immunize to hangups. +* su invocation:: Modify user and group id. + + +File: coreutils.info, Node: chroot invocation, Next: env invocation, Up: Modified command invocation + +`chroot': Run a command with a different root directory +======================================================= + + `chroot' runs a command with a specified root directory. On many +systems, only the super-user can do this. Synopses: + + chroot NEWROOT [COMMAND [ARGS]...] + chroot OPTION + + Ordinarily, filenames are looked up starting at the root of the +directory structure, i.e., `/'. `chroot' changes the root to the +directory NEWROOT (which must exist) and then runs COMMAND with +optional ARGS. If COMMAND is not specified, the default is the value +of the `SHELL' environment variable or `/bin/sh' if not set, invoked +with the `-i' option. + + The only options are `--help' and `--version'. *Note Common +options::. + + Here are a few tips to help avoid common problems in using chroot. +To start with a simple example, make COMMAND refer to a statically +linked binary. If you were to use a dynamically linked executable, then +you'd have to arrange to have the shared libraries in the right place +under your new root directory. + + For example, if you create a statically linked `ls' executable, and +put it in /tmp/empty, you can run this command as root: + + $ chroot /tmp/empty /ls -Rl / + + Then you'll see output like this: + + /: + total 1023 + -rwxr-xr-x 1 0 0 1041745 Aug 16 11:17 ls + + If you want to use a dynamically linked executable, say `bash', then +first run `ldd bash' to see what shared objects it needs. Then, in +addition to copying the actual binary, also copy the listed files to +the required positions under your intended new root directory. +Finally, if the executable requires any other files (e.g., data, state, +device files), copy them into place, too. + + +File: coreutils.info, Node: env invocation, Next: nice invocation, Prev: chroot invocation, Up: Modified command invocation + +`env': Run a command in a modified environment +============================================== + + `env' runs a command with a modified environment. Synopses: + + env [OPTION]... [NAME=VALUE]... [COMMAND [ARGS]...] + env + + Arguments of the form `VARIABLE=VALUE' set the environment variable +VARIABLE to value VALUE. VALUE may be empty (`VARIABLE='). Setting a +variable to an empty value is different from unsetting it. + + The first remaining argument specifies the program name to invoke; +it is searched for according to the `PATH' environment variable. Any +remaining arguments are passed as arguments to that program. + + If no command name is specified following the environment +specifications, the resulting environment is printed. This is like +specifying a command name of `printenv'. + + The program accepts the following options. Also see *Note Common +options::. + +`-u NAME' +`--unset=NAME' + Remove variable NAME from the environment, if it was in the + environment. + +`-' +`-i' +`--ignore-environment' + Start with an empty environment, ignoring the inherited + environment. + + + +File: coreutils.info, Node: nice invocation, Next: nohup invocation, Prev: env invocation, Up: Modified command invocation + +`nice': Run a command with modified scheduling priority +======================================================= + + `nice' prints or modifies the scheduling priority of a job. +Synopsis: + + nice [OPTION]... [COMMAND [ARG]...] + + If no arguments are given, `nice' prints the current scheduling +priority, which it inherited. Otherwise, `nice' runs the given COMMAND +with its scheduling priority adjusted. If no ADJUSTMENT is given, the +priority of the command is incremented by 10. You must have +appropriate privileges to specify a negative adjustment. The priority +can be adjusted by `nice' over the range of -20 (the highest priority) +to 19 (the lowest). + + Because most shells have a built-in command by the same name, using +the unadorned command name in a script or interactively may get you +different functionality than that described here. + + The program accepts the following option. Also see *Note Common +options::. + +`-n ADJUSTMENT' +`--adjustment=ADJUSTMENT' + Add ADJUSTMENT instead of 10 to the command's priority. + + On older systems, `nice' supports an obsolete option + `-ADJUSTMENT'. POSIX 1003.1-2001 (*note Standards conformance::) + does not allow this; use `-n ADJUSTMENT' instead. + + + +File: coreutils.info, Node: nohup invocation, Next: su invocation, Prev: nice invocation, Up: Modified command invocation + +`nohup': Run a command immune to hangups +======================================== + + `nohup' runs the given COMMAND with hangup signals ignored, so that +the command can continue running in the background after you log out. +Synopsis: + + nohup COMMAND [ARG]... + + If standard output is a terminal, it is redirected so that it is +appended to the file `nohup.out'; if that cannot be written to, it is +appended to the file `$HOME/nohup.out'. If that cannot be written to, +the command is not run. + + If `nohup' creates either `nohup.out' or `$HOME/nohup.out', it +creates it with no "group" or "other" access permissions. It does not +change the permissions if the output file already existed. + + If standard error is a terminal, it is redirected to the same file +descriptor as the standard output. + + `nohup' does not automatically put the command it runs in the +background; you must do that explicitly, by ending the command line +with an `&'. Also, `nohup' does not change the scheduling priority of +COMMAND; use `nice' for that, e.g., `nohup nice COMMAND'. + + The only options are `--help' and `--version'. *Note Common +options::. + + Exit status: + + 126 if COMMAND was found but could not be invoked + 127 if `nohup' itself failed or if COMMAND could not be found + the exit status of COMMAND otherwise + + +File: coreutils.info, Node: su invocation, Prev: nohup invocation, Up: Modified command invocation + +`su': Run a command with substitute user and group id +===================================================== + + `su' allows one user to temporarily become another user. It runs a +command (often an interactive shell) with the real and effective user +id, group id, and supplemental groups of a given USER. Synopsis: + + su [OPTION]... [USER [ARG]...] + + If no USER is given, the default is `root', the super-user. The +shell to use is taken from USER's `passwd' entry, or `/bin/sh' if none +is specified there. If USER has a password, `su' prompts for the +password unless run by a user with effective user id of zero (the +super-user). + + By default, `su' does not change the current directory. It sets the +environment variables `HOME' and `SHELL' from the password entry for +USER, and if USER is not the super-user, sets `USER' and `LOGNAME' to +USER. By default, the shell is not a login shell. + + Any additional ARGs are passed as additional arguments to the shell. + + GNU `su' does not treat `/bin/sh' or any other shells specially +(e.g., by setting `argv[0]' to `-su', passing `-c' only to certain +shells, etc.). + + `su' can optionally be compiled to use `syslog' to report failed, +and optionally successful, `su' attempts. (If the system supports +`syslog'.) However, GNU `su' does not check if the user is a member of +the `wheel' group; see below. + + The program accepts the following options. Also see *Note Common +options::. + +`-c COMMAND' +`--command=COMMAND' + Pass COMMAND, a single command line to run, to the shell with a + `-c' option instead of starting an interactive shell. + +`-f' +`--fast' + Pass the `-f' option to the shell. This probably only makes sense + if the shell run is `csh' or `tcsh', for which the `-f' option + prevents reading the startup file (`.cshrc'). With Bourne-like + shells, the `-f' option disables file name pattern expansion + (globbing), which is not likely to be useful. + +`-' +`-l' +`--login' + Make the shell a login shell. This means the following. Unset all + environment variables except `TERM', `HOME', and `SHELL' (which + are set as described above), and `USER' and `LOGNAME' (which are + set, even for the super-user, as described above), and set `PATH' + to a compiled-in default value. Change to USER's home directory. + Prepend `-' to the shell's name, intended to make it read its + login startup file(s). + +`-m' +`-p' +`--preserve-environment' + Do not change the environment variables `HOME', `USER', `LOGNAME', + or `SHELL'. Run the shell given in the environment variable + `SHELL' instead of the shell from USER's passwd entry, unless the + user running `su' is not the superuser and USER's shell is + restricted. A "restricted shell" is one that is not listed in the + file `/etc/shells', or in a compiled-in list if that file does not + exist. Parts of what this option does can be overridden by + `--login' and `--shell'. + +`-s SHELL' +`--shell=SHELL' + Run SHELL instead of the shell from USER's passwd entry, unless + the user running `su' is not the superuser and USER's shell is + restricted (see `-m' just above). + + +Why GNU `su' does not support the `wheel' group +=============================================== + + (This section is by Richard Stallman.) + + Sometimes a few of the users try to hold total power over all the +rest. For example, in 1984, a few users at the MIT AI lab decided to +seize power by changing the operator password on the Twenex system and +keeping it secret from everyone else. (I was able to thwart this coup +and give power back to the users by patching the kernel, but I wouldn't +know how to do that in Unix.) + + However, occasionally the rulers do tell someone. Under the usual +`su' mechanism, once someone learns the root password who sympathizes +with the ordinary users, he or she can tell the rest. The "wheel +group" feature would make this impossible, and thus cement the power of +the rulers. + + I'm on the side of the masses, not that of the rulers. If you are +used to supporting the bosses and sysadmins in whatever they do, you +might find this idea strange at first. + + +File: coreutils.info, Node: Process control, Next: Delaying, Prev: Modified command invocation, Up: Top + +Process control +*************** + +* Menu: + +* kill invocation:: Sending a signal to processes. + + +File: coreutils.info, Node: kill invocation, Up: Process control + +`kill': Send a signal to processes +================================== + + The `kill' command sends a signal to processes, causing them to +terminate or otherwise act upon receiving the signal in some way. +Alternatively, it lists information about signals. Synopses: + + kill [-s SIGNAL | --signal SIGNAL | -SIGNAL] PID... + kill [-l | --list | -t | --table] [SIGNAL]... + + The first form of the `kill' command sends a signal to all PID +arguments. The default signal to send if none is specified is `TERM'. +The special signal number `0' does not denote a valid signal, but can +be used to test whether the PID arguments specify processes to which a +signal could be sent. + + If PID is positive, the signal is sent to the process with the +process id PID. If PID is zero, the signal is sent to all processes in +the process group of the current process. If PID is -1, the signal is +sent to all processes for which the user has permission to send a +signal. If PID is less than -1, the signal is sent to all processes in +the process group that equals the absolute value of PID. + + If PID is not positive, a system-dependent set of system processes +is excluded from the list of processes to which the signal is sent. + + If a negative PID argument is desired as the first one, either a +signal must be specified as well, or the option parsing must be +interrupted with `-' before the first PID argument. The following +three commands are equivalent: + + kill -15 -1 + kill -TERM -1 + kill -- -1 + + The first form of the `kill' command succeeds if every PID argument +specifies at least one process that the signal was sent to. + + The second form of the `kill' command lists signal information. +Either the `-l' or `--list' option, or the `-t' or `--table' option +must be specified. Without any SIGNAL argument, all supported signals +are listed. The output of `-l' or `--list' is a list of the signal +names, one per line; if SIGNAL is already a name, the signal number is +printed instead. The output of `-t' or `--table' is a table of signal +numbers, names, and descriptions. This form of the `kill' command +succeeds if all SIGNAL arguments are valid and if there is no output +error. + + The `kill' command also supports the `--help' and `--version' +options. *Note Common options::. + + A SIGNAL may be a signal name like `HUP', or a signal number like +`1', or an exit status of a process terminated by the signal. A signal +name can be given in canonical form or prefixed by `SIG'. The case of +the letters is ignored, except for the `-SIGNAL' option which must use +upper case to avoid ambiguity with lower case option letters. The +following signal names and numbers are supported on all POSIX compliant +systems: + +`HUP' + 1. Hangup. + +`INT' + 2. Terminal interrupt. + +`QUIT' + 3. Terminal quit. + +`ABRT' + 6. Process abort. + +`KILL' + 9. Kill (cannot be caught or ignored). + +`ALRM' + 14. Alarm Clock. + +`TERM' + 15. Termination. + +Other supported signal names have system-dependent corresponding +numbers. All systems conforming to POSIX 1003.1-2001 also support the +following signals: + +`BUS' + Access to an undefined portion of a memory object. + +`CHLD' + Child process terminated, stopped, or continued. + +`CONT' + Continue executing, if stopped. + +`FPE' + Erroneous arithmetic operation. + +`ILL' + Illegal Instruction. + +`PIPE' + Write on a pipe with no one to read it. + +`SEGV' + Invalid memory reference. + +`STOP' + Stop executing (cannot be caught or ignored). + +`TSTP' + Terminal stop. + +`TTIN' + Background process attempting read. + +`TTOU' + Background process attempting write. + +`URG' + High bandwidth data is available at a socket. + +`USR1' + User-defined signal 1. + +`USR2' + User-defined signal 2. + +POSIX 1003.1-2001 systems that support the XSI extension also support +the following signals: + +`POLL' + Pollable event. + +`PROF' + Profiling timer expired. + +`SYS' + Bad system call. + +`TRAP' + Trace/breakpoint trap. + +`VTALRM' + Virtual timer expired. + +`XCPU' + CPU time limit exceeded. + +`XFSZ' + File size limit exceeded. + +POSIX 1003.1-2001 systems that support the XRT extension also support +at least eight real-time signals called `RTMIN', `RTMIN+1', ..., +`RTMAX-1', `RTMAX'. + + +File: coreutils.info, Node: Delaying, Next: Numeric operations, Prev: Process control, Up: Top + +Delaying +******** + +* Menu: + +* sleep invocation:: Delay for a specified time. + + +File: coreutils.info, Node: sleep invocation, Up: Delaying + +`sleep': Delay for a specified time +=================================== + + `sleep' pauses for an amount of time specified by the sum of the +values of the command line arguments. Synopsis: + + sleep NUMBER[smhd]... + + Each argument is a number followed by an optional unit; the default +is seconds. The units are: + +`s' + seconds + +`m' + minutes + +`h' + hours + +`d' + days + + Historical implementations of `sleep' have required that NUMBER be +an integer. However, GNU `sleep' accepts arbitrary floating point +numbers. + + The only options are `--help' and `--version'. *Note Common +options::. + + +File: coreutils.info, Node: Numeric operations, Next: File permissions, Prev: Delaying, Up: Top + +Numeric operations +****************** + + These programs do numerically-related operations. + +* Menu: + +* factor invocation:: Show factors of numbers. +* seq invocation:: Print sequences of numbers. + + +File: coreutils.info, Node: factor invocation, Next: seq invocation, Up: Numeric operations + +`factor': Print prime factors +============================= + + `factor' prints prime factors. Synopses: + + factor [NUMBER]... + factor OPTION + + If no NUMBER is specified on the command line, `factor' reads +numbers from standard input, delimited by newlines, tabs, or spaces. + + The only options are `--help' and `--version'. *Note Common +options::. + + The algorithm it uses is not very sophisticated, so for some inputs +`factor' runs for a long time. The hardest numbers to factor are the +products of large primes. Factoring the product of the two largest +32-bit prime numbers takes over 10 minutes of CPU time on a 400MHz +Pentium II. + + $ p=`echo '4294967279 * 4294967291'|bc` + $ factor $p + 18446743979220271189: 4294967279 4294967291 + + In contrast, `factor' factors the largest 64-bit number in just over +a tenth of a second: + + $ factor `echo '2^64-1'|bc` + 18446744073709551615: 3 5 17 257 641 65537 6700417 + + +File: coreutils.info, Node: seq invocation, Prev: factor invocation, Up: Numeric operations + +`seq': Print numeric sequences +============================== + + `seq' prints a sequence of numbers to standard output. Synopses: + + seq [OPTION]... [FIRST [INCREMENT]] LAST... + + `seq' prints the numbers from FIRST to LAST by INCREMENT. By +default, FIRST and INCREMENT are both 1, and each number is printed on +its own line. All numbers can be reals, not just integers. + + The program accepts the following options. Also see *Note Common +options::. + +`-f FORMAT' +`--format=FORMAT' + Print all numbers using FORMAT; default `%g'. FORMAT must contain + exactly one of the floating point output formats `%e', `%f', or + `%g'. + +`-s STRING' +`--separator=STRING' + Separate numbers with STRING; default is a newline. The output + always terminates with a newline. + +`-w' +`--equal-width' + Print all numbers with the same width, by padding with leading + zeroes. (To have other kinds of padding, use `--format'). + + + If you want to use `seq' to print sequences of large integer values, +don't use the default `%g' format since it can result in loss of +precision: + + $ seq 1000000 1000001 + 1e+06 + 1e+06 + + Instead, you can use the format, `%1.f', to print large decimal +numbers with no exponent and no decimal point. + + $ seq --format=%1.f 1000000 1000001 + 1000000 + 1000001 + + If you want hexadecimal output, you can use `printf' to perform the +conversion: + + $ printf %x'\n' `seq -f %1.f 1048575 1024 1050623` + fffff + 1003ff + 1007ff + + For very long lists of numbers, use xargs to avoid system +limitations on the length of an argument list: + + $ seq -f %1.f 1000000 | xargs printf %x'\n' | tail -n 3 + f423e + f423f + f4240 + + To generate octal output, use the printf `%o' format instead of +`%x'. Note however that using printf works only for numbers smaller +than `2^32': + + $ printf "%x\n" `seq -f %1.f 4294967295 4294967296` + ffffffff + bash: printf: 4294967296: Numerical result out of range + + On most systems, seq can produce whole-number output for values up to +`2^53', so here's a more general approach to base conversion that also +happens to be more robust for such large numbers. It works by using +`bc' and setting its output radix variable, OBASE, to `16' in this case +to produce hexadecimal output. + + $ (echo obase=16; seq -f %1.f 4294967295 4294967296)|bc + FFFFFFFF + 100000000 + + Be careful when using `seq' with a fractional INCREMENT, otherwise +you may see surprising results. Most people would expect to see `0.3' +printed as the last number in this example: + + $ seq -s' ' 0 .1 .3 + 0 0.1 0.2 + + But that doesn't happen on most systems because `seq' is implemented +using binary floating point arithmetic (via the C `double' type) - +which means some decimal numbers like `.1' cannot be represented +exactly. That in turn means some nonintuitive conditions like `.1 * 3 +> .3' will end up being true. + + To work around that in the above example, use a slightly larger +number as the LAST value: + + $ seq -s' ' 0 .1 .31 + 0 0.1 0.2 0.3 + + In general, when using an INCREMENT with a fractional part, where +(LAST - FIRST) / INCREMENT is (mathematically) a whole number, specify +a slightly larger (or smaller, if INCREMENT is negative) value for LAST +to ensure that LAST is the final value printed by seq. + + +File: coreutils.info, Node: File permissions, Next: Date input formats, Prev: Numeric operations, Up: Top + +File permissions +**************** + + Each file has a set of "permissions" that control the kinds of +access that users have to that file. The permissions for a file are +also called its "access mode". They can be represented either in +symbolic form or as an octal number. + +* Menu: + +* Mode Structure:: Structure of file permissions. +* Symbolic Modes:: Mnemonic permissions representation. +* Numeric Modes:: Permissions as octal numbers. + + +File: coreutils.info, Node: Mode Structure, Next: Symbolic Modes, Up: File permissions + +Structure of File Permissions +============================= + + There are three kinds of permissions that a user can have for a file: + + 1. permission to read the file. For directories, this means + permission to list the contents of the directory. + + 2. permission to write to (change) the file. For directories, this + means permission to create and remove files in the directory. + + 3. permission to execute the file (run it as a program). For + directories, this means permission to access files in the + directory. + + There are three categories of users who may have different +permissions to perform any of the above operations on a file: + + 1. the file's owner; + + 2. other users who are in the file's group; + + 3. everyone else. + + Files are given an owner and group when they are created. Usually +the owner is the current user and the group is the group of the +directory the file is in, but this varies with the operating system, the +filesystem the file is created on, and the way the file is created. You +can change the owner and group of a file by using the `chown' and +`chgrp' commands. + + In addition to the three sets of three permissions listed above, a +file's permissions have three special components, which affect only +executable files (programs) and, on some systems, directories: + + 1. set the process's effective user ID to that of the file upon + execution (called the "setuid bit"). No effect on directories. + + 2. set the process's effective group ID to that of the file upon + execution (called the "setgid bit"). For directories on some + systems, put files created in the directory into the same group as + the directory, no matter what group the user who creates them is + in. + + 3. save the program's text image on the swap device so it will load + more quickly when run (called the "sticky bit"). For directories + on some systems, prevent users from removing or renaming a file in + a directory unless they own the file or the directory; this is + called the "restricted deletion flag" for the directory. + + In addition to the permissions listed above, there may be file +attributes specific to the filesystem, e.g: access control lists +(ACLs), whether a file is compressed, whether a file can be modified +(immutability), whether a file can be dumped. These are usually set +using programs specific to the filesystem. For example: + +ext2 + On GNU and Linux/GNU the file permissions ("attributes") specific + to the ext2 filesystem are set using `chattr'. + +FFS + On FreeBSD the file permissions ("flags") specific to the FFS + filesystem are set using `chrflags'. + + Although a file's permission "bits" allow an operation on that file, +that operation may still fail, because: + + * the filesystem-specific permissions do not permit it; + + * the filesystem is mounted as read-only. + + For example, if the immutable attribute is set on a file, it cannot +be modified, regardless of the fact that you may have just run `chmod +a+w FILE'. + + +File: coreutils.info, Node: Symbolic Modes, Next: Numeric Modes, Prev: Mode Structure, Up: File permissions + +Symbolic Modes +============== + + "Symbolic modes" represent changes to files' permissions as +operations on single-character symbols. They allow you to modify either +all or selected parts of files' permissions, optionally based on their +previous values, and perhaps on the current `umask' as well (*note +Umask and Protection::). + + The format of symbolic modes is: + + [ugoa...][[+-=][rwxXstugo...]...][,...] + + The following sections describe the operators and other details of +symbolic modes. + +* Menu: + +* Setting Permissions:: Basic operations on permissions. +* Copying Permissions:: Copying existing permissions. +* Changing Special Permissions:: Special permissions. +* Conditional Executability:: Conditionally affecting executability. +* Multiple Changes:: Making multiple changes. +* Umask and Protection:: The effect of the umask. + + +File: coreutils.info, Node: Setting Permissions, Next: Copying Permissions, Up: Symbolic Modes + +Setting Permissions +------------------- + + The basic symbolic operations on a file's permissions are adding, +removing, and setting the permission that certain users have to read, +write, and execute the file. These operations have the following +format: + + USERS OPERATION PERMISSIONS + +The spaces between the three parts above are shown for readability only; +symbolic modes cannot contain spaces. + + The USERS part tells which users' access to the file is changed. It +consists of one or more of the following letters (or it can be empty; +*note Umask and Protection::, for a description of what happens then). +When more than one of these letters is given, the order that they are +in does not matter. + +`u' + the user who owns the file; + +`g' + other users who are in the file's group; + +`o' + all other users; + +`a' + all users; the same as `ugo'. + + The OPERATION part tells how to change the affected users' access to +the file, and is one of the following symbols: + +`+' + to add the PERMISSIONS to whatever permissions the USERS already + have for the file; + +`-' + to remove the PERMISSIONS from whatever permissions the USERS + already have for the file; + +`=' + to make the PERMISSIONS the only permissions that the USERS have + for the file. + + The PERMISSIONS part tells what kind of access to the file should be +changed; it is zero or more of the following letters. As with the +USERS part, the order does not matter when more than one letter is +given. Omitting the PERMISSIONS part is useful only with the `=' +operation, where it gives the specified USERS no access at all to the +file. + +`r' + the permission the USERS have to read the file; + +`w' + the permission the USERS have to write to the file; + +`x' + the permission the USERS have to execute the file. + + For example, to give everyone permission to read and write a file, +but not to execute it, use: + + a=rw + + To remove write permission for from all users other than the file's +owner, use: + + go-w + +The above command does not affect the access that the owner of the file +has to it, nor does it affect whether other users can read or execute +the file. + + To give everyone except a file's owner no permission to do anything +with that file, use the mode below. Other users could still remove the +file, if they have write permission on the directory it is in. + + go= + +Another way to specify the same thing is: + + og-rxw + + +File: coreutils.info, Node: Copying Permissions, Next: Changing Special Permissions, Prev: Setting Permissions, Up: Symbolic Modes + +Copying Existing Permissions +---------------------------- + + You can base a file's permissions on its existing permissions. To do +this, instead of using `r', `w', or `x' after the operator, you use the +letter `u', `g', or `o'. For example, the mode + o+g + +adds the permissions for users who are in a file's group to the +permissions that other users have for the file. Thus, if the file +started out as mode 664 (`rw-rw-r--'), the above mode would change it +to mode 666 (`rw-rw-rw-'). If the file had started out as mode 741 +(`rwxr----x'), the above mode would change it to mode 745 +(`rwxr--r-x'). The `-' and `=' operations work analogously. + + +File: coreutils.info, Node: Changing Special Permissions, Next: Conditional Executability, Prev: Copying Permissions, Up: Symbolic Modes + +Changing Special Permissions +---------------------------- + + In addition to changing a file's read, write, and execute +permissions, you can change its special permissions. *Note Mode +Structure::, for a summary of these permissions. + + To change a file's permission to set the user ID on execution, use +`u' in the USERS part of the symbolic mode and `s' in the PERMISSIONS +part. + + To change a file's permission to set the group ID on execution, use +`g' in the USERS part of the symbolic mode and `s' in the PERMISSIONS +part. + + To change a file's permission to stay permanently on the swap device, +use `o' in the USERS part of the symbolic mode and `t' in the +PERMISSIONS part. + + For example, to add set user ID permission to a program, you can use +the mode: + + u+s + + To remove both set user ID and set group ID permission from it, you +can use the mode: + + ug-s + + To cause a program to be saved on the swap device, you can use the +mode: + + o+t + + Remember that the special permissions only affect files that are +executable, plus, on some systems, directories (on which they have +different meanings; *note Mode Structure::). Also, the combinations +`u+t', `g+t', and `o+s' have no effect. + + The `=' operator is not very useful with special permissions; for +example, the mode: + + o=t + +does cause the file to be saved on the swap device, but it also removes +all read, write, and execute permissions that users not in the file's +group might have had for it. + + +File: coreutils.info, Node: Conditional Executability, Next: Multiple Changes, Prev: Changing Special Permissions, Up: Symbolic Modes + +Conditional Executability +------------------------- + + There is one more special type of symbolic permission: if you use +`X' instead of `x', execute permission is affected only if the file +already had execute permission or is a directory. It affects +directories' execute permission even if they did not initially have any +execute permissions set. + + For example, this mode: + + a+X + +gives all users permission to execute files (or search directories) if +anyone could before. + + +File: coreutils.info, Node: Multiple Changes, Next: Umask and Protection, Prev: Conditional Executability, Up: Symbolic Modes + +Making Multiple Changes +----------------------- + + The format of symbolic modes is actually more complex than described +above (*note Setting Permissions::). It provides two ways to make +multiple changes to files' permissions. + + The first way is to specify multiple OPERATION and PERMISSIONS parts +after a USERS part in the symbolic mode. + + For example, the mode: + + og+rX-w + +gives users other than the owner of the file read permission and, if it +is a directory or if someone already had execute permission to it, +gives them execute permission; and it also denies them write permission +to the file. It does not affect the permission that the owner of the +file has for it. The above mode is equivalent to the two modes: + + og+rX + og-w + + The second way to make multiple changes is to specify more than one +simple symbolic mode, separated by commas. For example, the mode: + + a+r,go-w + +gives everyone permission to read the file and removes write permission +on it for all users except its owner. Another example: + + u=rwx,g=rx,o= + +sets all of the non-special permissions for the file explicitly. (It +gives users who are not in the file's group no permission at all for +it.) + + The two methods can be combined. The mode: + + a+r,g+x-w + +gives all users permission to read the file, and gives users who are in +the file's group permission to execute it, as well, but not permission +to write to it. The above mode could be written in several different +ways; another is: + + u+r,g+rx,o+r,g-w + + +File: coreutils.info, Node: Umask and Protection, Prev: Multiple Changes, Up: Symbolic Modes + +The Umask and Protection +------------------------ + + If the USERS part of a symbolic mode is omitted, it defaults to `a' +(affect all users), except that any permissions that are _set_ in the +system variable `umask' are _not affected_. The value of `umask' can +be set using the `umask' command. Its default value varies from system +to system. + + Omitting the USERS part of a symbolic mode is generally not useful +with operations other than `+'. It is useful with `+' because it +allows you to use `umask' as an easily customizable protection against +giving away more permission to files than you intended to. + + As an example, if `umask' has the value 2, which removes write +permission for users who are not in the file's group, then the mode: + + +w + +adds permission to write to the file to its owner and to other users who +are in the file's group, but _not_ to other users. In contrast, the +mode: + + a+w + +ignores `umask', and _does_ give write permission for the file to all +users. + + +File: coreutils.info, Node: Numeric Modes, Prev: Symbolic Modes, Up: File permissions + +Numeric Modes +============= + + File permissions are stored internally as integers. As an +alternative to giving a symbolic mode, you can give an octal (base 8) +number that corresponds to the internal representation of the new mode. +This number is always interpreted in octal; you do not have to add a +leading 0, as you do in C. Mode 0055 is the same as mode 55. + + A numeric mode is usually shorter than the corresponding symbolic +mode, but it is limited in that it cannot take into account a file's +previous permissions; it can only set them absolutely. + + On most systems, the permissions granted to the user, to other users +in the file's group, and to other users not in the file's group are +each stored as three bits, which are represented as one octal digit. +The three special permissions are also each stored as one bit, and they +are as a group represented as another octal digit. Here is how the +bits are arranged, starting with the lowest valued bit: + + Value in Corresponding + Mode Permission + + Other users not in the file's group: + 1 Execute + 2 Write + 4 Read + + Other users in the file's group: + 10 Execute + 20 Write + 40 Read + + The file's owner: + 100 Execute + 200 Write + 400 Read + + Special permissions: + 1000 Save text image on swap device + 2000 Set group ID on execution + 4000 Set user ID on execution + + For example, numeric mode 4755 corresponds to symbolic mode +`u=rwxs,go=rx', and numeric mode 664 corresponds to symbolic mode +`ug=rw,o=r'. Numeric mode 0 corresponds to symbolic mode `ugo='. + + +File: coreutils.info, Node: Date input formats, Next: Opening the software toolbox, Prev: File permissions, Up: Top + +Date input formats +****************** + + First, a quote: + + Our units of temporal measurement, from seconds on up to months, + are so complicated, asymmetrical and disjunctive so as to make + coherent mental reckoning in time all but impossible. Indeed, had + some tyrannical god contrived to enslave our minds to time, to + make it all but impossible for us to escape subjection to sodden + routines and unpleasant surprises, he could hardly have done + better than handing down our present system. It is like a set of + trapezoidal building blocks, with no vertical or horizontal + surfaces, like a language in which the simplest thought demands + ornate constructions, useless particles and lengthy + circumlocutions. Unlike the more successful patterns of language + and science, which enable us to face experience boldly or at least + level-headedly, our system of temporal calculation silently and + persistently encourages our terror of time. + + ... It is as though architects had to measure length in feet, + width in meters and height in ells; as though basic instruction + manuals demanded a knowledge of five different languages. It is + no wonder then that we often look into our own immediate past or + future, last Tuesday or a week from Sunday, with feelings of + helpless confusion. ... + + -- Robert Grudin, `Time and the Art of Living'. + + This section describes the textual date representations that GNU +programs accept. These are the strings you, as a user, can supply as +arguments to the various programs. The C interface (via the `getdate' +function) is not described here. + + Although the date syntax here can represent any possible time since +the year zero, computer integers often cannot represent such a wide +range of time. On POSIX systems, the clock starts at 1970-01-01 +00:00:00 UTC: POSIX does not require support for times before the POSIX +Epoch and times far in the future. Traditional Unix systems have +32-bit signed `time_t' and can represent times from 1901-12-13 20:45:52 +through 2038-01-19 03:14:07 UTC. Systems with 64-bit signed `time_t' +can represent all the times in the known lifetime of the universe. + +* Menu: + +* General date syntax:: Common rules. +* Calendar date items:: 19 Dec 1994. +* Time of day items:: 9:20pm. +* Time zone items:: EST, PDT, GMT, ... +* Day of week items:: Monday and others. +* Relative items in date strings:: next tuesday, 2 years ago. +* Pure numbers in date strings:: 19931219, 1440. +* Authors of getdate:: Bellovin, Eggert, Salz, Berets, et al. + + +File: coreutils.info, Node: General date syntax, Next: Calendar date items, Up: Date input formats + +General date syntax +=================== + + A "date" is a string, possibly empty, containing many items +separated by whitespace. The whitespace may be omitted when no +ambiguity arises. The empty string means the beginning of today (i.e., +midnight). Order of the items is immaterial. A date string may contain +many flavors of items: + + * calendar date items + + * time of the day items + + * time zone items + + * day of the week items + + * relative items + + * pure numbers. + +We describe each of these item types in turn, below. + + A few numbers may be written out in words in most contexts. This is +most useful for specifying day of the week items or relative items (see +below). Here is the list: `first' for 1, `next' for 2, `third' for 3, +`fourth' for 4, `fifth' for 5, `sixth' for 6, `seventh' for 7, `eighth' +for 8, `ninth' for 9, `tenth' for 10, `eleventh' for 11 and `twelfth' +for 12. Also, `last' means exactly -1. + + When a month is written this way, it is still considered to be +written numerically, instead of being "spelled in full"; this changes +the allowed strings. + + In the current implementation, only English is supported for words +and abbreviations like `AM', `DST', `EST', `first', `January', +`Sunday', `tomorrow', and `year'. + + The output of `date' is not always acceptable as a date string, not +only because of the language problem, but also because there is no +standard meaning for time zone items like `IST'. When using `date' to +generate a date string intended to be parsed later, specify a date +format that is independent of language and that does not use time zone +items other than `UTC' and `Z'. Here are some ways to do this: + + $ LC_ALL=C TZ=UTC0 date + Fri Dec 15 19:48:05 UTC 2000 + $ TZ=UTC0 date +"%Y-%m-%d %H:%M:%SZ" + 2000-12-15 19:48:05Z + $ date --iso-8601=seconds # a GNU extension + 2000-12-15T11:48:05-0800 + $ date --rfc-822 # a GNU extension + Fri, 15 Dec 2000 11:48:05 -0800 + $ date +"%Y-%m-%d %H:%M:%S %z" # %z is a GNU extension. + 2000-12-15 11:48:05 -0800 + + Alphabetic case is completely ignored in dates. Comments may be +introduced between round parentheses, as long as included parentheses +are properly nested. Hyphens not followed by a digit are currently +ignored. Leading zeros on numbers are ignored. + + +File: coreutils.info, Node: Calendar date items, Next: Time of day items, Prev: General date syntax, Up: Date input formats + +Calendar date items +=================== + + A "calendar date item" specifies a day of the year. It is specified +differently, depending on whether the month is specified numerically or +literally. All these strings specify the same calendar date: + + 1972-09-24 # ISO 8601. + 72-9-24 # Assume 19xx for 69 through 99, + # 20xx for 00 through 68. + 72-09-24 # Leading zeros are ignored. + 9/24/72 # Common U.S. writing. + 24 September 1972 + 24 Sept 72 # September has a special abbreviation. + 24 Sep 72 # Three-letter abbreviations always allowed. + Sep 24, 1972 + 24-sep-72 + 24sep72 + + The year can also be omitted. In this case, the last specified year +is used, or the current year if none. For example: + + 9/24 + sep 24 + + Here are the rules. + + For numeric months, the ISO 8601 format `YEAR-MONTH-DAY' is allowed, +where YEAR is any positive number, MONTH is a number between 01 and 12, +and DAY is a number between 01 and 31. A leading zero must be present +if a number is less than ten. If YEAR is 68 or smaller, then 2000 is +added to it; otherwise, if YEAR is less than 100, then 1900 is added to +it. The construct `MONTH/DAY/YEAR', popular in the United States, is +accepted. Also `MONTH/DAY', omitting the year. + + Literal months may be spelled out in full: `January', `February', +`March', `April', `May', `June', `July', `August', `September', +`October', `November' or `December'. Literal months may be abbreviated +to their first three letters, possibly followed by an abbreviating dot. +It is also permitted to write `Sept' instead of `September'. + + When months are written literally, the calendar date may be given as +any of the following: + + DAY MONTH YEAR + DAY MONTH + MONTH DAY YEAR + DAY-MONTH-YEAR + + Or, omitting the year: + + MONTH DAY + + +File: coreutils.info, Node: Time of day items, Next: Time zone items, Prev: Calendar date items, Up: Date input formats + +Time of day items +================= + + A "time of day item" in date strings specifies the time on a given +day. Here are some examples, all of which represent the same time: + + 20:02:0 + 20:02 + 8:02pm + 20:02-0500 # In EST (U.S. Eastern Standard Time). + + More generally, the time of the day may be given as +`HOUR:MINUTE:SECOND', where HOUR is a number between 0 and 23, MINUTE +is a number between 0 and 59, and SECOND is a number between 0 and 59. +Alternatively, `:SECOND' can be omitted, in which case it is taken to +be zero. + + If the time is followed by `am' or `pm' (or `a.m.' or `p.m.'), HOUR +is restricted to run from 1 to 12, and `:MINUTE' may be omitted (taken +to be zero). `am' indicates the first half of the day, `pm' indicates +the second half of the day. In this notation, 12 is the predecessor of +1: midnight is `12am' while noon is `12pm'. (This is the zero-oriented +interpretation of `12am' and `12pm', as opposed to the old tradition +derived from Latin which uses `12m' for noon and `12pm' for midnight.) + + The time may alternatively be followed by a time zone correction, +expressed as `SHHMM', where S is `+' or `-', HH is a number of zone +hours and MM is a number of zone minutes. When a time zone correction +is given this way, it forces interpretation of the time relative to +Coordinated Universal Time (UTC), overriding any previous specification +for the time zone or the local time zone. The MINUTE part of the time +of the day may not be elided when a time zone correction is used. This +is the best way to specify a time zone correction by fractional parts +of an hour. + + Either `am'/`pm' or a time zone correction may be specified, but not +both. + + +File: coreutils.info, Node: Time zone items, Next: Day of week items, Prev: Time of day items, Up: Date input formats + +Time zone items +=============== + + A "time zone item" specifies an international time zone, indicated +by a small set of letters, e.g., `UTC' or `Z' for Coordinated Universal +Time. Any included periods are ignored. By following a +non-daylight-saving time zone by the string `DST' in a separate word +(that is, separated by some white space), the corresponding daylight +saving time zone may be specified. + + Time zone items other than `UTC' and `Z' are obsolescent and are not +recommended, because they are ambiguous; for example, `EST' has a +different meaning in Australia than in the United States. Instead, +it's better to use unambiguous numeric time zone corrections like +`-0500', as described in the previous section. + + +File: coreutils.info, Node: Day of week items, Next: Relative items in date strings, Prev: Time zone items, Up: Date input formats + +Day of week items +================= + + The explicit mention of a day of the week will forward the date +(only if necessary) to reach that day of the week in the future. + + Days of the week may be spelled out in full: `Sunday', `Monday', +`Tuesday', `Wednesday', `Thursday', `Friday' or `Saturday'. Days may +be abbreviated to their first three letters, optionally followed by a +period. The special abbreviations `Tues' for `Tuesday', `Wednes' for +`Wednesday' and `Thur' or `Thurs' for `Thursday' are also allowed. + + A number may precede a day of the week item to move forward +supplementary weeks. It is best used in expression like `third +monday'. In this context, `last DAY' or `next DAY' is also acceptable; +they move one week before or after the day that DAY by itself would +represent. + + A comma following a day of the week item is ignored. + + +File: coreutils.info, Node: Relative items in date strings, Next: Pure numbers in date strings, Prev: Day of week items, Up: Date input formats + +Relative items in date strings +============================== + + "Relative items" adjust a date (or the current date if none) forward +or backward. The effects of relative items accumulate. Here are some +examples: + + 1 year + 1 year ago + 3 years + 2 days + + The unit of time displacement may be selected by the string `year' +or `month' for moving by whole years or months. These are fuzzy units, +as years and months are not all of equal duration. More precise units +are `fortnight' which is worth 14 days, `week' worth 7 days, `day' +worth 24 hours, `hour' worth 60 minutes, `minute' or `min' worth 60 +seconds, and `second' or `sec' worth one second. An `s' suffix on +these units is accepted and ignored. + + The unit of time may be preceded by a multiplier, given as an +optionally signed number. Unsigned numbers are taken as positively +signed. No number at all implies 1 for a multiplier. Following a +relative item by the string `ago' is equivalent to preceding the unit +by a multiplier with value -1. + + The string `tomorrow' is worth one day in the future (equivalent to +`day'), the string `yesterday' is worth one day in the past (equivalent +to `day ago'). + + The strings `now' or `today' are relative items corresponding to +zero-valued time displacement, these strings come from the fact a +zero-valued time displacement represents the current time when not +otherwise changed by previous items. They may be used to stress other +items, like in `12:00 today'. The string `this' also has the meaning +of a zero-valued time displacement, but is preferred in date strings +like `this thursday'. + + When a relative item causes the resulting date to cross a boundary +where the clocks were adjusted, typically for daylight-saving time, the +resulting date and time are adjusted accordingly. + + +File: coreutils.info, Node: Pure numbers in date strings, Next: Authors of getdate, Prev: Relative items in date strings, Up: Date input formats + +Pure numbers in date strings +============================ + + The precise interpretation of a pure decimal number depends on the +context in the date string. + + If the decimal number is of the form YYYYMMDD and no other calendar +date item (*note Calendar date items::) appears before it in the date +string, then YYYY is read as the year, MM as the month number and DD as +the day of the month, for the specified calendar date. + + If the decimal number is of the form HHMM and no other time of day +item appears before it in the date string, then HH is read as the hour +of the day and MM as the minute of the hour, for the specified time of +the day. MM can also be omitted. + + If both a calendar date and a time of day appear to the left of a +number in the date string, but no relative item, then the number +overrides the year. + + +File: coreutils.info, Node: Authors of getdate, Prev: Pure numbers in date strings, Up: Date input formats + +Authors of `getdate' +==================== + + `getdate' was originally implemented by Steven M. Bellovin +() while at the University of North Carolina at +Chapel Hill. The code was later tweaked by a couple of people on +Usenet, then completely overhauled by Rich $alz () and +Jim Berets () in August, 1990. Various revisions for +the GNU system were made by David MacKenzie, Jim Meyering, Paul Eggert +and others. + + This chapter was originally produced by Franc,ois Pinard +() from the `getdate.y' source code, and then +edited by K. Berry (). + + +File: coreutils.info, Node: Opening the software toolbox, Next: GNU Free Documentation License, Prev: Date input formats, Up: Top + +Opening the Software Toolbox +**************************** + + This chapter originally appeared in `Linux Journal', volume 1, +number 2, in the `What's GNU?' column. It was written by Arnold Robbins. + +* Menu: + +* Toolbox introduction:: Toolbox introduction +* I/O redirection:: I/O redirection +* The who command:: The `who' command +* The cut command:: The `cut' command +* The sort command:: The `sort' command +* The uniq command:: The `uniq' command +* Putting the tools together:: Putting the tools together + + +File: coreutils.info, Node: Toolbox introduction, Next: I/O redirection, Up: Opening the software toolbox + +Toolbox Introduction +==================== + + This month's column is only peripherally related to the GNU Project, +in that it describes a number of the GNU tools on your GNU/Linux system +and how they might be used. What it's really about is the "Software +Tools" philosophy of program development and usage. + + The software tools philosophy was an important and integral concept +in the initial design and development of Unix (of which Linux and GNU +are essentially clones). Unfortunately, in the modern day press of +Internetworking and flashy GUIs, it seems to have fallen by the +wayside. This is a shame, since it provides a powerful mental model +for solving many kinds of problems. + + Many people carry a Swiss Army knife around in their pants pockets +(or purse). A Swiss Army knife is a handy tool to have: it has several +knife blades, a screwdriver, tweezers, toothpick, nail file, corkscrew, +and perhaps a number of other things on it. For the everyday, small +miscellaneous jobs where you need a simple, general purpose tool, it's +just the thing. + + On the other hand, an experienced carpenter doesn't build a house +using a Swiss Army knife. Instead, he has a toolbox chock full of +specialized tools--a saw, a hammer, a screwdriver, a plane, and so on. +And he knows exactly when and where to use each tool; you won't catch +him hammering nails with the handle of his screwdriver. + + The Unix developers at Bell Labs were all professional programmers +and trained computer scientists. They had found that while a +one-size-fits-all program might appeal to a user because there's only +one program to use, in practice such programs are + + a. difficult to write, + + b. difficult to maintain and debug, and + + c. difficult to extend to meet new situations. + + Instead, they felt that programs should be specialized tools. In +short, each program "should do one thing well." No more and no less. +Such programs are simpler to design, write, and get right--they only do +one thing. + + Furthermore, they found that with the right machinery for hooking +programs together, that the whole was greater than the sum of the +parts. By combining several special purpose programs, you could +accomplish a specific task that none of the programs was designed for, +and accomplish it much more quickly and easily than if you had to write +a special purpose program. We will see some (classic) examples of this +further on in the column. (An important additional point was that, if +necessary, take a detour and build any software tools you may need +first, if you don't already have something appropriate in the toolbox.) + + +File: coreutils.info, Node: I/O redirection, Next: The who command, Prev: Toolbox introduction, Up: Opening the software toolbox + +I/O Redirection +=============== + + Hopefully, you are familiar with the basics of I/O redirection in the +shell, in particular the concepts of "standard input," "standard +output," and "standard error". Briefly, "standard input" is a data +source, where data comes from. A program should not need to either +know or care if the data source is a disk file, a keyboard, a magnetic +tape, or even a punched card reader. Similarly, "standard output" is a +data sink, where data goes to. The program should neither know nor +care where this might be. Programs that only read their standard +input, do something to the data, and then send it on, are called +"filters", by analogy to filters in a water pipeline. + + With the Unix shell, it's very easy to set up data pipelines: + + program_to_create_data | filter1 | .... | filterN > final.pretty.data + + We start out by creating the raw data; each filter applies some +successive transformation to the data, until by the time it comes out +of the pipeline, it is in the desired form. + + This is fine and good for standard input and standard output. Where +does the standard error come in to play? Well, think about `filter1' in +the pipeline above. What happens if it encounters an error in the data +it sees? If it writes an error message to standard output, it will just +disappear down the pipeline into `filter2''s input, and the user will +probably never see it. So programs need a place where they can send +error messages so that the user will notice them. This is standard +error, and it is usually connected to your console or window, even if +you have redirected standard output of your program away from your +screen. + + For filter programs to work together, the format of the data has to +be agreed upon. The most straightforward and easiest format to use is +simply lines of text. Unix data files are generally just streams of +bytes, with lines delimited by the ASCII LF (Line Feed) character, +conventionally called a "newline" in the Unix literature. (This is +`'\n'' if you're a C programmer.) This is the format used by all the +traditional filtering programs. (Many earlier operating systems had +elaborate facilities and special purpose programs for managing binary +data. Unix has always shied away from such things, under the +philosophy that it's easiest to simply be able to view and edit your +data with a text editor.) + + OK, enough introduction. Let's take a look at some of the tools, and +then we'll see how to hook them together in interesting ways. In the +following discussion, we will only present those command line options +that interest us. As you should always do, double check your system +documentation for the full story. + + +File: coreutils.info, Node: The who command, Next: The cut command, Prev: I/O redirection, Up: Opening the software toolbox + +The `who' Command +================= + + The first program is the `who' command. By itself, it generates a +list of the users who are currently logged in. Although I'm writing +this on a single-user system, we'll pretend that several people are +logged in: + + $ who + -| arnold console Jan 22 19:57 + -| miriam ttyp0 Jan 23 14:19(:0.0) + -| bill ttyp1 Jan 21 09:32(:0.0) + -| arnold ttyp2 Jan 23 20:48(:0.0) + + Here, the `$' is the usual shell prompt, at which I typed `who'. +There are three people logged in, and I am logged in twice. On +traditional Unix systems, user names are never more than eight +characters long. This little bit of trivia will be useful later. The +output of `who' is nice, but the data is not all that exciting. + + +File: coreutils.info, Node: The cut command, Next: The sort command, Prev: The who command, Up: Opening the software toolbox + +The `cut' Command +================= + + The next program we'll look at is the `cut' command. This program +cuts out columns or fields of input data. For example, we can tell it +to print just the login name and full name from the `/etc/passwd' file. +The `/etc/passwd' file has seven fields, separated by colons: + + arnold:xyzzy:2076:10:Arnold D. Robbins:/home/arnold:/bin/bash + + To get the first and fifth fields, we would use `cut' like this: + + $ cut -d: -f1,5 /etc/passwd + -| root:Operator + ... + -| arnold:Arnold D. Robbins + -| miriam:Miriam A. Robbins + ... + + With the `-c' option, `cut' will cut out specific characters (i.e., +columns) in the input lines. This is useful for input data that has +fixed width fields, and does not have a field separator. For example, +list the Monday dates for the current month: + + $ cal | cut -c 3-5 + -|Mo + -| + -| 6 + -| 13 + -| 20 + -| 27 + + Cut can also add field separators to fixed width data, using the +`--output-delimiter' option. This can be very useful to fill a +database: + + $ ls -ld ~/* | cut --output-delimiter=, -c1,2-4,5-7,8-10,57- | tee home.cs + -| d,rwx,r-x,r-x,CVS + -| d,rwx,---,---,Mail + -| d,rwx,r-x,r-x,lilypond + -| d,rwx,r-x,r-x,savannah + $ mysql -e 'create table home \ + (d char(1),u char(3), g char (3), o char (3), name text)' test + $ mysqlimport --fields-terminated-by=, test home.cs + -| test.home: Records: 4 Deleted: 0 Skipped: 0 Warnings: 0 + $ mysql -e 'select * from home' test + -| +------+------+------+------+----------+ + -| | d | u | g | o | name | + -| +------+------+------+------+----------+ + -| | d | rwx | r-x | r-x | CVS | + -| | d | rwx | --- | --- | Mail | + -| | d | rwx | r-x | r-x | lilypond | + -| | d | rwx | r-x | r-x | savannah | + -| +------+------+------+------+----------+ + + But beware of assumptions. The above invocation of `ls' assumes +that the owner and group names are no longer than eight bytes each, and +that no file has size larger than 99999999 bytes. Otherwise, the byte +offset of `57' would need to be larger. To avoid such problems, +suppress output of the owner and group names with the `-g' and `-G' +options respectively, and add the `-h' option to ensure that the +representation of the size of the file does not exceed the allotted +space. Finally, note that the width of even the date/time field may +change, depending on the current locale. To avoid that, use an option +like `--time-style='+%Y-%m-%d %H:%M:%S''. + + And there's still another problem: if a file has more than 999 hard +links to it, then that will change the alignment. The morale is that +it is hard to use fixed byte offsets into a line of `ls' output. Use a +different tool, like find, but with `-printf' and carefully chosen +format strings. + + +File: coreutils.info, Node: The sort command, Next: The uniq command, Prev: The cut command, Up: Opening the software toolbox + +The `sort' Command +================== + + Next we'll look at the `sort' command. This is one of the most +powerful commands on a Unix-style system; one that you will often find +yourself using when setting up fancy data plumbing. + + The `sort' command reads and sorts each file named on the command +line. It then merges the sorted data and writes it to standard output. +It will read standard input if no files are given on the command line +(thus making it into a filter). The sort is based on the character +collating sequence or based on user-supplied ordering criteria. + + +File: coreutils.info, Node: The uniq command, Next: Putting the tools together, Prev: The sort command, Up: Opening the software toolbox + +The `uniq' Command +================== + + Finally (at least for now), we'll look at the `uniq' program. When +sorting data, you will often end up with duplicate lines, lines that +are identical. Usually, all you need is one instance of each line. +This is where `uniq' comes in. The `uniq' program reads its standard +input, which it expects to be sorted. It only prints out one copy of +each duplicated line. It does have several options. Later on, we'll +use the `-c' option, which prints each unique line, preceded by a count +of the number of times that line occurred in the input. + + +File: coreutils.info, Node: Putting the tools together, Prev: The uniq command, Up: Opening the software toolbox + +Putting the Tools Together +========================== + + Now, let's suppose this is a large ISP server system with dozens of +users logged in. The management wants the system administrator to +write a program that will generate a sorted list of logged in users. +Furthermore, even if a user is logged in multiple times, his or her +name should only show up in the output once. + + The administrator could sit down with the system documentation and +write a C program that did this. It would take perhaps a couple of +hundred lines of code and about two hours to write it, test it, and +debug it. However, knowing the software toolbox, the administrator can +instead start out by generating just a list of logged on users: + + $ who | cut -c1-8 + -| arnold + -| miriam + -| bill + -| arnold + + Next, sort the list: + + $ who | cut -c1-8 | sort + -| arnold + -| arnold + -| bill + -| miriam + + Finally, run the sorted list through `uniq', to weed out duplicates: + + $ who | cut -c1-8 | sort | uniq + -| arnold + -| bill + -| miriam + + The `sort' command actually has a `-u' option that does what `uniq' +does. However, `uniq' has other uses for which one cannot substitute +`sort -u'. + + The administrator puts this pipeline into a shell script, and makes +it available for all the users on the system (`#' is the system +administrator, or `root', prompt): + + # cat > /usr/local/bin/listusers + who | cut -c1-8 | sort | uniq + ^D + # chmod +x /usr/local/bin/listusers + + There are four major points to note here. First, with just four +programs, on one command line, the administrator was able to save about +two hours worth of work. Furthermore, the shell pipeline is just about +as efficient as the C program would be, and it is much more efficient in +terms of programmer time. People time is much more expensive than +computer time, and in our modern "there's never enough time to do +everything" society, saving two hours of programmer time is no mean +feat. + + Second, it is also important to emphasize that with the +_combination_ of the tools, it is possible to do a special purpose job +never imagined by the authors of the individual programs. + + Third, it is also valuable to build up your pipeline in stages, as +we did here. This allows you to view the data at each stage in the +pipeline, which helps you acquire the confidence that you are indeed +using these tools correctly. + + Finally, by bundling the pipeline in a shell script, other users can +use your command, without having to remember the fancy plumbing you set +up for them. In terms of how you run them, shell scripts and compiled +programs are indistinguishable. + + After the previous warm-up exercise, we'll look at two additional, +more complicated pipelines. For them, we need to introduce two more +tools. + + The first is the `tr' command, which stands for "transliterate." +The `tr' command works on a character-by-character basis, changing +characters. Normally it is used for things like mapping upper case to +lower case: + + $ echo ThIs ExAmPlE HaS MIXED case! | tr '[A-Z]' '[a-z]' + -| this example has mixed case! + + There are several options of interest: + +`-c' + work on the complement of the listed characters, i.e., operations + apply to characters not in the given set + +`-d' + delete characters in the first set from the output + +`-s' + squeeze repeated characters in the output into just one character. + + We will be using all three options in a moment. + + The other command we'll look at is `comm'. The `comm' command takes +two sorted input files as input data, and prints out the files' lines +in three columns. The output columns are the data lines unique to the +first file, the data lines unique to the second file, and the data +lines that are common to both. The `-1', `-2', and `-3' command line +options _omit_ the respective columns. (This is non-intuitive and takes +a little getting used to.) For example: + + $ cat f1 + -| 11111 + -| 22222 + -| 33333 + -| 44444 + $ cat f2 + -| 00000 + -| 22222 + -| 33333 + -| 55555 + $ comm f1 f2 + -| 00000 + -| 11111 + -| 22222 + -| 33333 + -| 44444 + -| 55555 + + The single dash as a filename tells `comm' to read standard input +instead of a regular file. + + Now we're ready to build a fancy pipeline. The first application is +a word frequency counter. This helps an author determine if he or she +is over-using certain words. + + The first step is to change the case of all the letters in our input +file to one case. "The" and "the" are the same word when doing +counting. + + $ tr '[A-Z]' '[a-z]' < whats.gnu | ... + + The next step is to get rid of punctuation. Quoted words and +unquoted words should be treated identically; it's easiest to just get +the punctuation out of the way. + + $ tr '[A-Z]' '[a-z]' < whats.gnu | tr -cd '[A-Za-z0-9_ \012]' | ... + + The second `tr' command operates on the complement of the listed +characters, which are all the letters, the digits, the underscore, and +the blank. The `\012' represents the newline character; it has to be +left alone. (The ASCII tab character should also be included for good +measure in a production script.) + + At this point, we have data consisting of words separated by blank +space. The words only contain alphanumeric characters (and the +underscore). The next step is break the data apart so that we have one +word per line. This makes the counting operation much easier, as we +will see shortly. + + $ tr '[A-Z]' '[a-z]' < whats.gnu | tr -cd '[A-Za-z0-9_ \012]' | + > tr -s '[ ]' '\012' | ... + + This command turns blanks into newlines. The `-s' option squeezes +multiple newline characters in the output into just one. This helps us +avoid blank lines. (The `>' is the shell's "secondary prompt." This is +what the shell prints when it notices you haven't finished typing in +all of a command.) + + We now have data consisting of one word per line, no punctuation, +all one case. We're ready to count each word: + + $ tr '[A-Z]' '[a-z]' < whats.gnu | tr -cd '[A-Za-z0-9_ \012]' | + > tr -s '[ ]' '\012' | sort | uniq -c | ... + + At this point, the data might look something like this: + + 60 a + 2 able + 6 about + 1 above + 2 accomplish + 1 acquire + 1 actually + 2 additional + + The output is sorted by word, not by count! What we want is the most +frequently used words first. Fortunately, this is easy to accomplish, +with the help of two more `sort' options: + +`-n' + do a numeric sort, not a textual one + +`-r' + reverse the order of the sort + + The final pipeline looks like this: + + $ tr '[A-Z]' '[a-z]' < whats.gnu | tr -cd '[A-Za-z0-9_ \012]' | + > tr -s '[ ]' '\012' | sort | uniq -c | sort -nr + -| 156 the + -| 60 a + -| 58 to + -| 51 of + -| 51 and + ... + + Whew! That's a lot to digest. Yet, the same principles apply. With +six commands, on two lines (really one long one split for convenience), +we've created a program that does something interesting and useful, in +much less time than we could have written a C program to do the same +thing. + + A minor modification to the above pipeline can give us a simple +spelling checker! To determine if you've spelled a word correctly, all +you have to do is look it up in a dictionary. If it is not there, then +chances are that your spelling is incorrect. So, we need a dictionary. +The conventional location for a dictionary is `/usr/dict/words'. On my +GNU/Linux system,(1) this is a is a sorted, 45,402 word dictionary. + + Now, how to compare our file with the dictionary? As before, we +generate a sorted list of words, one per line: + + $ tr '[A-Z]' '[a-z]' < whats.gnu | tr -cd '[A-Za-z0-9_ \012]' | + > tr -s '[ ]' '\012' | sort -u | ... + + Now, all we need is a list of words that are _not_ in the +dictionary. Here is where the `comm' command comes in. + + $ tr '[A-Z]' '[a-z]' < whats.gnu | tr -cd '[A-Za-z0-9_ \012]' | + > tr -s '[ ]' '\012' | sort -u | + > comm -23 - /usr/dict/words + + The `-2' and `-3' options eliminate lines that are only in the +dictionary (the second file), and lines that are in both files. Lines +only in the first file (standard input, our stream of words), are words +that are not in the dictionary. These are likely candidates for +spelling errors. This pipeline was the first cut at a production +spelling checker on Unix. + + There are some other tools that deserve brief mention. + +`grep' + search files for text that matches a regular expression + +`wc' + count lines, words, characters + +`tee' + a T-fitting for data pipes, copies data to files and to standard + output + +`sed' + the stream editor, an advanced tool + +`awk' + a data manipulation language, another advanced tool + + The software tools philosophy also espoused the following bit of +advice: "Let someone else do the hard part." This means, take +something that gives you most of what you need, and then massage it the +rest of the way until it's in the form that you want. + + To summarize: + + 1. Each program should do one thing well. No more, no less. + + 2. Combining programs with appropriate plumbing leads to results where + the whole is greater than the sum of the parts. It also leads to + novel uses of programs that the authors might never have imagined. + + 3. Programs should never print extraneous header or trailer data, + since these could get sent on down a pipeline. (A point we didn't + mention earlier.) + + 4. Let someone else do the hard part. + + 5. Know your toolbox! Use each program appropriately. If you don't + have an appropriate tool, build one. + + As of this writing, all the programs we've discussed are available +via anonymous `ftp' from: +`ftp://gnudist.gnu.org/textutils/textutils-1.22.tar.gz'. (There may be +more recent versions available now.) + + None of what I have presented in this column is new. The Software +Tools philosophy was first introduced in the book `Software Tools', by +Brian Kernighan and P.J. Plauger (Addison-Wesley, ISBN 0-201-03669-X). +This book showed how to write and use software tools. It was written in +1976, using a preprocessor for FORTRAN named `ratfor' (RATional +FORtran). At the time, C was not as ubiquitous as it is now; FORTRAN +was. The last chapter presented a `ratfor' to FORTRAN processor, +written in `ratfor'. `ratfor' looks an awful lot like C; if you know C, +you won't have any problem following the code. + + In 1981, the book was updated and made available as `Software Tools +in Pascal' (Addison-Wesley, ISBN 0-201-10342-7). The first book is +still in print; the second, alas, is not. Both books are well worth +reading if you're a programmer. They certainly made a major change in +how I view programming. + + Initially, the programs in both books were available (on 9-track +tape) from Addison-Wesley. Unfortunately, this is no longer the case, +although the `ratfor' versions are available from Brian Kernighan's +home page (http://cm.bell-labs.come/who/bwk), and you might be able to +find copies of the Pascal versions floating around the Internet. For a +number of years, there was an active Software Tools Users Group, whose +members had ported the original `ratfor' programs to essentially every +computer system with a FORTRAN compiler. The popularity of the group +waned in the middle 1980s as Unix began to spread beyond universities. + + With the current proliferation of GNU code and other clones of Unix +programs, these programs now receive little attention; modern C +versions are much more efficient and do more than these programs do. +Nevertheless, as exposition of good programming style, and evangelism +for a still-valuable philosophy, these books are unparalleled, and I +recommend them highly. + + Acknowledgment: I would like to express my gratitude to Brian +Kernighan of Bell Labs, the original Software Toolsmith, for reviewing +this column. + + ---------- Footnotes ---------- + + (1) Redhat Linux 6.1, for the November 2000 revision of this article. + + +File: coreutils.info, Node: GNU Free Documentation License, Next: Index, Prev: Opening the software toolbox, Up: Top + +GNU Free Documentation License +****************************** + + Version 1.1, March 2000 + +* Menu: + +* How to use this License for your documents:: + + Copyright (C) 2000 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + 0. PREAMBLE + + The purpose of this License is to make a manual, textbook, or other + written document "free" in the sense of freedom: to assure everyone + the effective freedom to copy and redistribute it, with or without + modifying it, either commercially or noncommercially. Secondarily, + this License preserves for the author and publisher a way to get + credit for their work, while not being considered responsible for + modifications made by others. + + This License is a kind of "copyleft", which means that derivative + works of the document must themselves be free in the same sense. + It complements the GNU General Public License, which is a copyleft + license designed for free software. + + We have designed this License in order to use it for manuals for + free software, because free software needs free documentation: a + free program should come with manuals providing the same freedoms + that the software does. But this License is not limited to + software manuals; it can be used for any textual work, regardless + of subject matter or whether it is published as a printed book. + We recommend this License principally for works whose purpose is + instruction or reference. + + 1. APPLICABILITY AND DEFINITIONS + + This License applies to any manual or other work that contains a + notice placed by the copyright holder saying it can be distributed + under the terms of this License. The "Document", below, refers to + any such manual or work. Any member of the public is a licensee, + and is addressed as "you". + + A "Modified Version" of the Document means any work containing the + Document or a portion of it, either copied verbatim, or with + modifications and/or translated into another language. + + A "Secondary Section" is a named appendix or a front-matter + section of the Document that deals exclusively with the + relationship of the publishers or authors of the Document to the + Document's overall subject (or to related matters) and contains + nothing that could fall directly within that overall subject. + (For example, if the Document is in part a textbook of + mathematics, a Secondary Section may not explain any mathematics.) + The relationship could be a matter of historical connection with + the subject or with related matters, or of legal, commercial, + philosophical, ethical or political position regarding them. + + The "Invariant Sections" are certain Secondary Sections whose + titles are designated, as being those of Invariant Sections, in + the notice that says that the Document is released under this + License. + + The "Cover Texts" are certain short passages of text that are + listed, as Front-Cover Texts or Back-Cover Texts, in the notice + that says that the Document is released under this License. + + A "Transparent" copy of the Document means a machine-readable copy, + represented in a format whose specification is available to the + general public, whose contents can be viewed and edited directly + and straightforwardly with generic text editors or (for images + composed of pixels) generic paint programs or (for drawings) some + widely available drawing editor, and that is suitable for input to + text formatters or for automatic translation to a variety of + formats suitable for input to text formatters. A copy made in an + otherwise Transparent file format whose markup has been designed + to thwart or discourage subsequent modification by readers is not + Transparent. A copy that is not "Transparent" is called "Opaque". + + Examples of suitable formats for Transparent copies include plain + ASCII without markup, Texinfo input format, LaTeX input format, + SGML or XML using a publicly available DTD, and + standard-conforming simple HTML designed for human modification. + Opaque formats include PostScript, PDF, proprietary formats that + can be read and edited only by proprietary word processors, SGML + or XML for which the DTD and/or processing tools are not generally + available, and the machine-generated HTML produced by some word + processors for output purposes only. + + The "Title Page" means, for a printed book, the title page itself, + plus such following pages as are needed to hold, legibly, the + material this License requires to appear in the title page. For + works in formats which do not have any title page as such, "Title + Page" means the text near the most prominent appearance of the + work's title, preceding the beginning of the body of the text. + + 2. VERBATIM COPYING + + You may copy and distribute the Document in any medium, either + commercially or noncommercially, provided that this License, the + copyright notices, and the license notice saying this License + applies to the Document are reproduced in all copies, and that you + add no other conditions whatsoever to those of this License. You + may not use technical measures to obstruct or control the reading + or further copying of the copies you make or distribute. However, + you may accept compensation in exchange for copies. If you + distribute a large enough number of copies you must also follow + the conditions in section 3. + + You may also lend copies, under the same conditions stated above, + and you may publicly display copies. + + 3. COPYING IN QUANTITY + + If you publish printed copies of the Document numbering more than + 100, and the Document's license notice requires Cover Texts, you + must enclose the copies in covers that carry, clearly and legibly, + all these Cover Texts: Front-Cover Texts on the front cover, and + Back-Cover Texts on the back cover. Both covers must also clearly + and legibly identify you as the publisher of these copies. The + front cover must present the full title with all words of the + title equally prominent and visible. You may add other material + on the covers in addition. Copying with changes limited to the + covers, as long as they preserve the title of the Document and + satisfy these conditions, can be treated as verbatim copying in + other respects. + + If the required texts for either cover are too voluminous to fit + legibly, you should put the first ones listed (as many as fit + reasonably) on the actual cover, and continue the rest onto + adjacent pages. + + If you publish or distribute Opaque copies of the Document + numbering more than 100, you must either include a + machine-readable Transparent copy along with each Opaque copy, or + state in or with each Opaque copy a publicly-accessible + computer-network location containing a complete Transparent copy + of the Document, free of added material, which the general + network-using public has access to download anonymously at no + charge using public-standard network protocols. If you use the + latter option, you must take reasonably prudent steps, when you + begin distribution of Opaque copies in quantity, to ensure that + this Transparent copy will remain thus accessible at the stated + location until at least one year after the last time you + distribute an Opaque copy (directly or through your agents or + retailers) of that edition to the public. + + It is requested, but not required, that you contact the authors of + the Document well before redistributing any large number of + copies, to give them a chance to provide you with an updated + version of the Document. + + 4. MODIFICATIONS + + You may copy and distribute a Modified Version of the Document + under the conditions of sections 2 and 3 above, provided that you + release the Modified Version under precisely this License, with + the Modified Version filling the role of the Document, thus + licensing distribution and modification of the Modified Version to + whoever possesses a copy of it. In addition, you must do these + things in the Modified Version: + + A. Use in the Title Page (and on the covers, if any) a title + distinct from that of the Document, and from those of previous + versions (which should, if there were any, be listed in the + History section of the Document). You may use the same title + as a previous version if the original publisher of that version + gives permission. + B. List on the Title Page, as authors, one or more persons or + entities responsible for authorship of the modifications in the + Modified Version, together with at least five of the principal + authors of the Document (all of its principal authors, if it + has less than five). + C. State on the Title page the name of the publisher of the + Modified Version, as the publisher. + D. Preserve all the copyright notices of the Document. + E. Add an appropriate copyright notice for your modifications + adjacent to the other copyright notices. + F. Include, immediately after the copyright notices, a license + notice giving the public permission to use the Modified Version + under the terms of this License, in the form shown in the + Addendum below. + G. Preserve in that license notice the full lists of Invariant + Sections and required Cover Texts given in the Document's + license notice. + H. Include an unaltered copy of this License. + I. Preserve the section entitled "History", and its title, and add + to it an item stating at least the title, year, new authors, and + publisher of the Modified Version as given on the Title Page. + If there is no section entitled "History" in the Document, + create one stating the title, year, authors, and publisher of + the Document as given on its Title Page, then add an item + describing the Modified Version as stated in the previous + sentence. + J. Preserve the network location, if any, given in the Document for + public access to a Transparent copy of the Document, and + likewise the network locations given in the Document for + previous versions it was based on. These may be placed in the + "History" section. You may omit a network location for a work + that was published at least four years before the Document + itself, or if the original publisher of the version it refers + to gives permission. + K. In any section entitled "Acknowledgements" or "Dedications", + preserve the section's title, and preserve in the section all the + substance and tone of each of the contributor acknowledgements + and/or dedications given therein. + L. Preserve all the Invariant Sections of the Document, + unaltered in their text and in their titles. Section numbers + or the equivalent are not considered part of the section titles. + M. Delete any section entitled "Endorsements". Such a section + may not be included in the Modified Version. + N. Do not retitle any existing section as "Endorsements" or to + conflict in title with any Invariant Section. + If the Modified Version includes new front-matter sections or + appendices that qualify as Secondary Sections and contain no + material copied from the Document, you may at your option + designate some or all of these sections as invariant. To do this, + add their titles to the list of Invariant Sections in the Modified + Version's license notice. These titles must be distinct from any + other section titles. + + You may add a section entitled "Endorsements", provided it contains + nothing but endorsements of your Modified Version by various + parties-for example, statements of peer review or that the text has + been approved by an organization as the authoritative definition + of a standard. + + You may add a passage of up to five words as a Front-Cover Text, + and a passage of up to 25 words as a Back-Cover Text, to the end + of the list of Cover Texts in the Modified Version. Only one + passage of Front-Cover Text and one of Back-Cover Text may be + added by (or through arrangements made by) any one entity. If the + Document already includes a cover text for the same cover, + previously added by you or by arrangement made by the same entity + you are acting on behalf of, you may not add another; but you may + replace the old one, on explicit permission from the previous + publisher that added the old one. + + The author(s) and publisher(s) of the Document do not by this + License give permission to use their names for publicity for or to + assert or imply endorsement of any Modified Version. + + 5. COMBINING DOCUMENTS + + You may combine the Document with other documents released under + this License, under the terms defined in section 4 above for + modified versions, provided that you include in the combination + all of the Invariant Sections of all of the original documents, + unmodified, and list them all as Invariant Sections of your + combined work in its license notice. + + The combined work need only contain one copy of this License, and + multiple identical Invariant Sections may be replaced with a single + copy. If there are multiple Invariant Sections with the same name + but different contents, make the title of each such section unique + by adding at the end of it, in parentheses, the name of the + original author or publisher of that section if known, or else a + unique number. Make the same adjustment to the section titles in + the list of Invariant Sections in the license notice of the + combined work. + + In the combination, you must combine any sections entitled + "History" in the various original documents, forming one section + entitled "History"; likewise combine any sections entitled + "Acknowledgements", and any sections entitled "Dedications". You + must delete all sections entitled "Endorsements." + + 6. COLLECTIONS OF DOCUMENTS + + You may make a collection consisting of the Document and other + documents released under this License, and replace the individual + copies of this License in the various documents with a single copy + that is included in the collection, provided that you follow the + rules of this License for verbatim copying of each of the + documents in all other respects. + + You may extract a single document from such a collection, and + distribute it individually under this License, provided you insert + a copy of this License into the extracted document, and follow + this License in all other respects regarding verbatim copying of + that document. + + 7. AGGREGATION WITH INDEPENDENT WORKS + + A compilation of the Document or its derivatives with other + separate and independent documents or works, in or on a volume of + a storage or distribution medium, does not as a whole count as a + Modified Version of the Document, provided no compilation + copyright is claimed for the compilation. Such a compilation is + called an "aggregate", and this License does not apply to the + other self-contained works thus compiled with the Document, on + account of their being thus compiled, if they are not themselves + derivative works of the Document. + + If the Cover Text requirement of section 3 is applicable to these + copies of the Document, then if the Document is less than one + quarter of the entire aggregate, the Document's Cover Texts may be + placed on covers that surround only the Document within the + aggregate. Otherwise they must appear on covers around the whole + aggregate. + + 8. TRANSLATION + + Translation is considered a kind of modification, so you may + distribute translations of the Document under the terms of section + 4. Replacing Invariant Sections with translations requires special + permission from their copyright holders, but you may include + translations of some or all Invariant Sections in addition to the + original versions of these Invariant Sections. You may include a + translation of this License provided that you also include the + original English version of this License. In case of a + disagreement between the translation and the original English + version of this License, the original English version will prevail. + + 9. TERMINATION + + You may not copy, modify, sublicense, or distribute the Document + except as expressly provided for under this License. Any other + attempt to copy, modify, sublicense or distribute the Document is + void, and will automatically terminate your rights under this + License. However, parties who have received copies, or rights, + from you under this License will not have their licenses + terminated so long as such parties remain in full compliance. + + 10. FUTURE REVISIONS OF THIS LICENSE + + The Free Software Foundation may publish new, revised versions of + the GNU Free Documentation License from time to time. Such new + versions will be similar in spirit to the present version, but may + differ in detail to address new problems or concerns. See + http://www.gnu.org/copyleft/. + + Each version of the License is given a distinguishing version + number. If the Document specifies that a particular numbered + version of this License "or any later version" applies to it, you + have the option of following the terms and conditions either of + that specified version or of any later version that has been + published (not as a draft) by the Free Software Foundation. If + the Document does not specify a version number of this License, + you may choose any version ever published (not as a draft) by the + Free Software Foundation. + + + +File: coreutils.info, Node: How to use this License for your documents, Up: GNU Free Documentation License + +ADDENDUM: How to use this License for your documents +==================================================== + + To use this License in a document you have written, include a copy of +the License in the document and put the following copyright and license +notices just after the title page: + + + Copyright (C) YEAR YOUR NAME. + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.1 + or any later version published by the Free Software Foundation; + with the Invariant Sections being LIST THEIR TITLES, with the + Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. + A copy of the license is included in the section entitled ``GNU + Free Documentation License''. +If you have no Invariant Sections, write "with no Invariant +Sections" instead of saying which ones are invariant. If you have no +Front-Cover Texts, write "no Front-Cover Texts" instead of "Front-Cover +Texts being LIST"; likewise for Back-Cover Texts. + + If your document contains nontrivial examples of program code, we +recommend releasing these examples in parallel under your choice of +free software license, such as the GNU General Public License, to +permit their use in free software. + + +File: coreutils.info, Node: Index, Prev: GNU Free Documentation License, Up: Top + +Index +***** + +* Menu: + +* !: Connectives for test. +* !=: String tests. +* %: Numeric expressions. +* &: Relations for expr. +* *: Numeric expressions. +* + <1>: Numeric expressions. +* +: String expressions. +* +PAGE_RANGE: pr invocation. +* - <1>: su invocation. +* - <2>: env invocation. +* - <3>: Numeric expressions. +* -: shred invocation. +* - and Unix rm: rm invocation. +* -, removing files beginning with: rm invocation. +* --: Common options. +* --across: pr invocation. +* --address-radix: od invocation. +* --adjustment: nice invocation. +* --all <1>: uname invocation. +* --all <2>: stty invocation. +* --all <3>: du invocation. +* --all <4>: df invocation. +* --all <5>: Which files are listed. +* --all: unexpand invocation. +* --all-repeated: uniq invocation. +* --almost-all: Which files are listed. +* --apparent-size: du invocation. +* --append: tee invocation. +* --archive: cp invocation. +* --author: What information is listed. +* --backup <1>: ln invocation. +* --backup <2>: mv invocation. +* --backup <3>: install invocation. +* --backup <4>: cp invocation. +* --backup: Backup options. +* --before: tac invocation. +* --binary <1>: md5sum invocation. +* --binary: cat invocation. +* --block-size <1>: du invocation. +* --block-size <2>: df invocation. +* --block-size: Block size. +* --block-size=SIZE: Block size. +* --body-numbering: nl invocation. +* --bourne-shell: dircolors invocation. +* --buffer-size: sort invocation. +* --bytes <1>: du invocation. +* --bytes <2>: cut invocation. +* --bytes <3>: wc invocation. +* --bytes <4>: split invocation. +* --bytes <5>: tail invocation. +* --bytes <6>: head invocation. +* --bytes: fold invocation. +* --c-shell: dircolors invocation. +* --canonicalize: readlink invocation. +* --changes <1>: chmod invocation. +* --changes <2>: chgrp invocation. +* --changes: chown invocation. +* --characters: cut invocation. +* --chars: wc invocation. +* --check: sort invocation. +* --check-chars: uniq invocation. +* --classify: General output formatting. +* --color: General output formatting. +* --columns: pr invocation. +* --command: su invocation. +* --count <1>: who invocation. +* --count: uniq invocation. +* --count-links: du invocation. +* --crown-margin: fmt invocation. +* --csh: dircolors invocation. +* --date <1>: Options for date. +* --date: touch invocation. +* --delimiter: cut invocation. +* --delimiters: paste invocation. +* --dereference <1>: stat invocation. +* --dereference <2>: du invocation. +* --dereference <3>: chgrp invocation. +* --dereference <4>: chown invocation. +* --dereference <5>: cp invocation. +* --dereference: Which files are listed. +* --dereference-args: du invocation. +* --dereference-command-line: Which files are listed. +* --dereference-command-line-symlink-to-dir: Which files are listed. +* --dictionary-order: sort invocation. +* --digits: csplit invocation. +* --directory <1>: ln invocation. +* --directory <2>: rm invocation. +* --directory <3>: install invocation. +* --directory: Which files are listed. +* --dired: What information is listed. +* --double-space: pr invocation. +* --elide-empty-files: csplit invocation. +* --escape: Formatting the file names. +* --exact: shred invocation. +* --exclude-from=FILE: du invocation. +* --exclude-type: df invocation. +* --exclude=PATTERN: du invocation. +* --expand-tabs: pr invocation. +* --fast: su invocation. +* --field-separator: sort invocation. +* --fields: cut invocation. +* --file <1>: Options for date. +* --file: stty invocation. +* --file-type: General output formatting. +* --filesystem: stat invocation. +* --first-line-number: pr invocation. +* --follow: tail invocation. +* --footer-numbering: nl invocation. +* --force <1>: ln invocation. +* --force <2>: shred invocation. +* --force <3>: rm invocation. +* --force <4>: mv invocation. +* --force: cp invocation. +* --form-feed: pr invocation. +* --format <1>: stat invocation. +* --format <2>: General output formatting. +* --format <3>: What information is listed. +* --format: od invocation. +* --format=FORMAT: seq invocation. +* --from: chown invocation. +* --full-time: What information is listed. +* --general-numeric-sort: sort invocation. +* --group <1>: id invocation. +* --group: install invocation. +* --groups: id invocation. +* --hardware-platform: uname invocation. +* --header: pr invocation. +* --header-numbering: nl invocation. +* --heading: who invocation. +* --help: Common options. +* --hide-control-chars: Formatting the file names. +* --human-readable <1>: du invocation. +* --human-readable <2>: df invocation. +* --human-readable <3>: What information is listed. +* --human-readable: Block size. +* --idle: who invocation. +* --ignore-backups: Which files are listed. +* --ignore-case <1>: join invocation. +* --ignore-case <2>: uniq invocation. +* --ignore-case: sort invocation. +* --ignore-environment: env invocation. +* --ignore-fail-on-non-empty: rmdir invocation. +* --ignore-interrupts: tee invocation. +* --ignore-leading-blanks: sort invocation. +* --ignore-nonprinting: sort invocation. +* --ignore=PATTERN: Which files are listed. +* --indent: pr invocation. +* --indicator-style: General output formatting. +* --initial: expand invocation. +* --inode: What information is listed. +* --inodes: df invocation. +* --interactive <1>: ln invocation. +* --interactive <2>: rm invocation. +* --interactive <3>: mv invocation. +* --interactive: cp invocation. +* --iso-8601[=TIMESPEC]: Options for date. +* --iterations=NUMBER: shred invocation. +* --join-blank-lines: nl invocation. +* --join-lines: pr invocation. +* --keep-files: csplit invocation. +* --kernel-name: uname invocation. +* --kernel-release: uname invocation. +* --kernel-version: uname invocation. +* --key: sort invocation. +* --length: pr invocation. +* --line-bytes: split invocation. +* --lines <1>: wc invocation. +* --lines <2>: split invocation. +* --lines <3>: tail invocation. +* --lines: head invocation. +* --link: cp invocation. +* --literal: Formatting the file names. +* --local: df invocation. +* --login: su invocation. +* --lookup: who invocation. +* --machine: uname invocation. +* --max-depth=DEPTH: du invocation. +* --max-line-length: wc invocation. +* --max-unchanged-stats: tail invocation. +* --merge <1>: sort invocation. +* --merge: pr invocation. +* --mesg: who invocation. +* --message: who invocation. +* --mode <1>: mknod invocation. +* --mode <2>: mkfifo invocation. +* --mode <3>: mkdir invocation. +* --mode: install invocation. +* --month-sort: sort invocation. +* --name: id invocation. +* --no-create: touch invocation. +* --no-dereference <1>: chgrp invocation. +* --no-dereference <2>: chown invocation. +* --no-dereference <3>: ln invocation. +* --no-dereference: cp invocation. +* --no-file-warnings: pr invocation. +* --no-group: What information is listed. +* --no-newline: readlink invocation. +* --no-renumber: nl invocation. +* --no-sync: df invocation. +* --nodename: uname invocation. +* --number: cat invocation. +* --number-format: nl invocation. +* --number-lines: pr invocation. +* --number-nonblank: cat invocation. +* --number-separator: nl invocation. +* --number-width: nl invocation. +* --numeric-sort: sort invocation. +* --numeric-uid-gid: What information is listed. +* --omit-header: pr invocation. +* --omit-pagination: pr invocation. +* --one-file-system <1>: du invocation. +* --one-file-system: cp invocation. +* --only-delimited: cut invocation. +* --operating-system: uname invocation. +* --output: sort invocation. +* --output-delimiter: cut invocation. +* --output-duplicates: od invocation. +* --output-tabs: pr invocation. +* --owner: install invocation. +* --page-increment: nl invocation. +* --page_width: pr invocation. +* --pages=PAGE_RANGE: pr invocation. +* --parents <1>: rmdir invocation. +* --parents <2>: mkdir invocation. +* --parents: cp invocation. +* --pid: tail invocation. +* --portability <1>: pathchk invocation. +* --portability: df invocation. +* --prefix: csplit invocation. +* --preserve: cp invocation. +* --preserve-environment: su invocation. +* --preserve-timestamps: install invocation. +* --print-database: dircolors invocation. +* --print-type: df invocation. +* --processor: uname invocation. +* --quiet <1>: tty invocation. +* --quiet <2>: chmod invocation. +* --quiet <3>: chgrp invocation. +* --quiet <4>: chown invocation. +* --quiet <5>: readlink invocation. +* --quiet <6>: csplit invocation. +* --quiet <7>: tail invocation. +* --quiet: head invocation. +* --quote-name: Formatting the file names. +* --quoting-style: Formatting the file names. +* --read-bytes: od invocation. +* --real: id invocation. +* --recursive <1>: chmod invocation. +* --recursive <2>: chgrp invocation. +* --recursive <3>: chown invocation. +* --recursive <4>: rm invocation. +* --recursive <5>: cp invocation. +* --recursive: Which files are listed. +* --reference <1>: Options for date. +* --reference <2>: touch invocation. +* --reference <3>: chmod invocation. +* --reference <4>: chgrp invocation. +* --reference: chown invocation. +* --regex: tac invocation. +* --remove: shred invocation. +* --remove-destination: cp invocation. +* --repeated: uniq invocation. +* --reply <1>: mv invocation. +* --reply: cp invocation. +* --retry: tail invocation. +* --reverse <1>: Sorting the output. +* --reverse: sort invocation. +* --rfc-822: Options for date. +* --save: stty invocation. +* --section-delimiter: nl invocation. +* --sep-string: pr invocation. +* --separate-dirs: du invocation. +* --separator <1>: pr invocation. +* --separator: tac invocation. +* --serial: paste invocation. +* --set: Options for date. +* --sh: dircolors invocation. +* --shell: su invocation. +* --show-all: cat invocation. +* --show-control-chars <1>: Formatting the file names. +* --show-control-chars: pr invocation. +* --show-ends: cat invocation. +* --show-nonprinting <1>: pr invocation. +* --show-nonprinting: cat invocation. +* --show-tabs: cat invocation. +* --si <1>: du invocation. +* --si <2>: df invocation. +* --si <3>: What information is listed. +* --si: Block size. +* --silent <1>: tty invocation. +* --silent <2>: chmod invocation. +* --silent <3>: chgrp invocation. +* --silent <4>: chown invocation. +* --silent <5>: readlink invocation. +* --silent <6>: csplit invocation. +* --silent <7>: tail invocation. +* --silent: head invocation. +* --size: What information is listed. +* --size=BYTES: shred invocation. +* --skip-bytes: od invocation. +* --skip-chars: uniq invocation. +* --skip-fields: uniq invocation. +* --sleep-interval: tail invocation. +* --sort: Sorting the output. +* --spaces: fold invocation. +* --sparse=WHEN: cp invocation. +* --split-only: fmt invocation. +* --squeeze-blank: cat invocation. +* --stable: sort invocation. +* --starting-line-number: nl invocation. +* --status: md5sum invocation. +* --strings: od invocation. +* --strip: install invocation. +* --strip-trailing-slashes <1>: mv invocation. +* --strip-trailing-slashes: cp invocation. +* --suffix <1>: ln invocation. +* --suffix <2>: mv invocation. +* --suffix <3>: install invocation. +* --suffix <4>: cp invocation. +* --suffix <5>: csplit invocation. +* --suffix: Backup options. +* --suffix-length: split invocation. +* --summarize: du invocation. +* --symbolic: ln invocation. +* --symbolic-link: cp invocation. +* --sync: df invocation. +* --sysv: sum invocation. +* --tabs <1>: unexpand invocation. +* --tabs: expand invocation. +* --tabsize: General output formatting. +* --tagged-paragraph: fmt invocation. +* --target-directory <1>: ln invocation. +* --target-directory <2>: mv invocation. +* --target-directory <3>: install invocation. +* --target-directory <4>: cp invocation. +* --target-directory: Target directory. +* --temporary-directory: sort invocation. +* --terse: stat invocation. +* --text: md5sum invocation. +* --time <1>: touch invocation. +* --time: Sorting the output. +* --time-style: Formatting file timestamps. +* --total: du invocation. +* --traditional: od invocation. +* --type: df invocation. +* --uniform-spacing: fmt invocation. +* --unique <1>: uniq invocation. +* --unique: sort invocation. +* --universal: Options for date. +* --update: mv invocation. +* --user: id invocation. +* --utc: Options for date. +* --verbose <1>: chmod invocation. +* --verbose <2>: chgrp invocation. +* --verbose <3>: chown invocation. +* --verbose <4>: rmdir invocation. +* --verbose <5>: readlink invocation. +* --verbose <6>: mkdir invocation. +* --verbose <7>: ln invocation. +* --verbose <8>: shred invocation. +* --verbose <9>: rm invocation. +* --verbose <10>: mv invocation. +* --verbose <11>: install invocation. +* --verbose <12>: cp invocation. +* --verbose <13>: split invocation. +* --verbose <14>: tail invocation. +* --verbose: head invocation. +* --version: Common options. +* --version-control <1>: ln invocation. +* --version-control <2>: mv invocation. +* --version-control <3>: install invocation. +* --version-control <4>: cp invocation. +* --version-control: Backup options. +* --warn: md5sum invocation. +* --width <1>: General output formatting. +* --width <2>: fold invocation. +* --width <3>: pr invocation. +* --width <4>: fmt invocation. +* --width: od invocation. +* --words: wc invocation. +* --writable: who invocation. +* --zero: shred invocation. +* --zero-terminated: sort invocation. +* -1 <1>: General output formatting. +* -1 <2>: join invocation. +* -1: comm invocation. +* -2 <1>: join invocation. +* -2: comm invocation. +* -3: comm invocation. +* -a <1>: uname invocation. +* -a <2>: stty invocation. +* -a <3>: tee invocation. +* -a <4>: Connectives for test. +* -a <5>: du invocation. +* -a <6>: df invocation. +* -a <7>: touch invocation. +* -a: cp invocation. +* -A: Which files are listed. +* -a <1>: Which files are listed. +* -a <2>: unexpand invocation. +* -a <3>: join invocation. +* -a <4>: split invocation. +* -a <5>: pr invocation. +* -a: od invocation. +* -A <1>: od invocation. +* -A: cat invocation. +* -b: File type tests. +* -B: du invocation. +* -b: du invocation. +* -B: df invocation. +* -b <1>: ln invocation. +* -b <2>: mv invocation. +* -b <3>: install invocation. +* -b <4>: cp invocation. +* -b <5>: dircolors invocation. +* -b: Formatting the file names. +* -B: Which files are listed. +* -b <1>: cut invocation. +* -b <2>: sort invocation. +* -b <3>: md5sum invocation. +* -b <4>: csplit invocation. +* -b <5>: split invocation. +* -b <6>: fold invocation. +* -b <7>: od invocation. +* -b <8>: nl invocation. +* -b <9>: tac invocation. +* -b: cat invocation. +* -B: cat invocation. +* -b: Backup options. +* -c <1>: su invocation. +* -c <2>: File type tests. +* -c <3>: stat invocation. +* -c <4>: du invocation. +* -c <5>: touch invocation. +* -c <6>: chmod invocation. +* -c <7>: chgrp invocation. +* -c <8>: chown invocation. +* -c <9>: install invocation. +* -c: dircolors invocation. +* -C: General output formatting. +* -c <1>: Sorting the output. +* -c <2>: cut invocation. +* -c <3>: uniq invocation. +* -c <4>: sort invocation. +* -c: wc invocation. +* -C: split invocation. +* -c <1>: tail invocation. +* -c <2>: head invocation. +* -c <3>: pr invocation. +* -c <4>: fmt invocation. +* -c: od invocation. +* -COLUMN: pr invocation. +* -d <1>: Options for date. +* -d: File type tests. +* -D: du invocation. +* -d <1>: touch invocation. +* -d <2>: ln invocation. +* -d <3>: rm invocation. +* -d <4>: install invocation. +* -d: cp invocation. +* -D: What information is listed. +* -d <1>: Which files are listed. +* -d <2>: paste invocation. +* -d: cut invocation. +* -D: uniq invocation. +* -d <1>: uniq invocation. +* -d <2>: sort invocation. +* -d <3>: pr invocation. +* -d <4>: od invocation. +* -d: nl invocation. +* -e <1>: File characteristic tests. +* -e <2>: echo invocation. +* -e <3>: join invocation. +* -e: pr invocation. +* -E: cat invocation. +* -e: cat invocation. +* -ef: File characteristic tests. +* -eq: Numeric tests. +* -f <1>: su invocation. +* -f: Options for date. +* -F: stty invocation. +* -f <1>: File type tests. +* -f <2>: stat invocation. +* -f <3>: touch invocation. +* -f <4>: chmod invocation. +* -f <5>: chgrp invocation. +* -f <6>: chown invocation. +* -f <7>: readlink invocation. +* -f: ln invocation. +* -F: ln invocation. +* -f <1>: shred invocation. +* -f <2>: rm invocation. +* -f <3>: mv invocation. +* -f: cp invocation. +* -F: General output formatting. +* -f <1>: Sorting the output. +* -f <2>: cut invocation. +* -f <3>: uniq invocation. +* -f <4>: sort invocation. +* -f: csplit invocation. +* -F: tail invocation. +* -f <1>: tail invocation. +* -f: pr invocation. +* -F: pr invocation. +* -f <1>: od invocation. +* -f: nl invocation. +* -f FORMAT: seq invocation. +* -G: id invocation. +* -g <1>: id invocation. +* -g: stty invocation. +* -G: Access permission tests. +* -g <1>: Access permission tests. +* -g: install invocation. +* -G: What information is listed. +* -g <1>: What information is listed. +* -g: sort invocation. +* -ge: Numeric tests. +* -gt: Numeric tests. +* -H: who invocation. +* -h: File type tests. +* -H: du invocation. +* -h: du invocation. +* -H: df invocation. +* -h <1>: df invocation. +* -h <2>: chgrp invocation. +* -h: chown invocation. +* -H: cp invocation. +* -h: What information is listed. +* -H: Which files are listed. +* -h <1>: pr invocation. +* -h <2>: od invocation. +* -h <3>: nl invocation. +* -h: Block size. +* -i <1>: env invocation. +* -i <2>: uname invocation. +* -i <3>: who invocation. +* -i <4>: tee invocation. +* -i <5>: df invocation. +* -i <6>: ln invocation. +* -i <7>: rm invocation. +* -i <8>: mv invocation. +* -i <9>: cp invocation. +* -i: What information is listed. +* -I: Which files are listed. +* -i <1>: expand invocation. +* -i <2>: join invocation. +* -i <3>: uniq invocation. +* -i <4>: sort invocation. +* -i <5>: pr invocation. +* -i <6>: od invocation. +* -i: nl invocation. +* -I TIMESPEC: Options for date. +* -J: pr invocation. +* -j: od invocation. +* -j1: join invocation. +* -j2: join invocation. +* -k <1>: Access permission tests. +* -k <2>: du invocation. +* -k <3>: df invocation. +* -k <4>: General output formatting. +* -k <5>: sort invocation. +* -k <6>: csplit invocation. +* -k: Block size. +* -l <1>: su invocation. +* -l: who invocation. +* -L <1>: File type tests. +* -L <2>: stat invocation. +* -L: du invocation. +* -l <1>: du invocation. +* -l: df invocation. +* -L: cp invocation. +* -l <1>: cp invocation. +* -l: What information is listed. +* -L <1>: Which files are listed. +* -L: wc invocation. +* -l <1>: wc invocation. +* -l <2>: split invocation. +* -l <3>: pr invocation. +* -l <4>: od invocation. +* -l: nl invocation. +* -le: Numeric tests. +* -lt: Numeric tests. +* -m <1>: su invocation. +* -m <2>: uname invocation. +* -m <3>: who invocation. +* -m <4>: touch invocation. +* -m <5>: mknod invocation. +* -m <6>: mkfifo invocation. +* -m <7>: mkdir invocation. +* -m <8>: install invocation. +* -m: General output formatting. +* -M: sort invocation. +* -m <1>: sort invocation. +* -m <2>: wc invocation. +* -m: pr invocation. +* -n <1>: nice invocation. +* -n <2>: uname invocation. +* -n <3>: id invocation. +* -n <4>: String tests. +* -n <5>: echo invocation. +* -n <6>: readlink invocation. +* -n: ln invocation. +* -N: Formatting the file names. +* -n <1>: What information is listed. +* -n <2>: cut invocation. +* -n <3>: sort invocation. +* -n <4>: csplit invocation. +* -n <5>: tail invocation. +* -n: head invocation. +* -N: pr invocation. +* -n: pr invocation. +* -N: od invocation. +* -n <1>: nl invocation. +* -n: cat invocation. +* -n NUMBER: shred invocation. +* -ne: Numeric tests. +* -nt: File characteristic tests. +* -o <1>: uname invocation. +* -o: Connectives for test. +* -O: Access permission tests. +* -o <1>: install invocation. +* -o <2>: What information is listed. +* -o <3>: sort invocation. +* -o <4>: pr invocation. +* -o: od invocation. +* -ot: File characteristic tests. +* -p <1>: su invocation. +* -p <2>: uname invocation. +* -p <3>: pathchk invocation. +* -p: File type tests. +* -P: df invocation. +* -p <1>: rmdir invocation. +* -p <2>: mkdir invocation. +* -p <3>: install invocation. +* -p: cp invocation. +* -P: cp invocation. +* -p <1>: dircolors invocation. +* -p: nl invocation. +* -q <1>: who invocation. +* -q: readlink invocation. +* -Q: Formatting the file names. +* -q <1>: Formatting the file names. +* -q <2>: csplit invocation. +* -q <3>: tail invocation. +* -q: head invocation. +* -r <1>: uname invocation. +* -r: Options for date. +* -R: Options for date. +* -r <1>: id invocation. +* -r <2>: Access permission tests. +* -r: touch invocation. +* -R <1>: chmod invocation. +* -R <2>: chgrp invocation. +* -R <3>: chown invocation. +* -R: rm invocation. +* -r <1>: rm invocation. +* -r: cp invocation. +* -R: cp invocation. +* -r: Sorting the output. +* -R: Which files are listed. +* -r <1>: sort invocation. +* -r <2>: sum invocation. +* -r <3>: pr invocation. +* -r: tac invocation. +* -s <1>: su invocation. +* -s <2>: uname invocation. +* -s <3>: Options for date. +* -s <4>: who invocation. +* -s <5>: tty invocation. +* -s: File characteristic tests. +* -S <1>: File type tests. +* -S: du invocation. +* -s <1>: du invocation. +* -s: readlink invocation. +* -S: ln invocation. +* -s: ln invocation. +* -S <1>: mv invocation. +* -S: install invocation. +* -s: install invocation. +* -S: cp invocation. +* -s: cp invocation. +* -S: Sorting the output. +* -s <1>: What information is listed. +* -s <2>: paste invocation. +* -s <3>: cut invocation. +* -s: uniq invocation. +* -S: sort invocation. +* -s <1>: sort invocation. +* -s <2>: sum invocation. +* -s <3>: csplit invocation. +* -s: fold invocation. +* -S: pr invocation. +* -s <1>: pr invocation. +* -s <2>: fmt invocation. +* -s <3>: od invocation. +* -s <4>: nl invocation. +* -s <5>: tac invocation. +* -s: cat invocation. +* -S: Backup options. +* -s BYTES: shred invocation. +* -su: su invocation. +* -T: who invocation. +* -t <1>: File type tests. +* -t: stat invocation. +* -T: df invocation. +* -t: df invocation. +* -T: General output formatting. +* -t <1>: Sorting the output. +* -t <2>: unexpand invocation. +* -t: expand invocation. +* -T: sort invocation. +* -t <1>: sort invocation. +* -t: md5sum invocation. +* -T: pr invocation. +* -t <1>: pr invocation. +* -t <2>: fmt invocation. +* -t: od invocation. +* -T: cat invocation. +* -t: cat invocation. +* -u <1>: env invocation. +* -u <2>: Options for date. +* -u <3>: who invocation. +* -u <4>: id invocation. +* -u <5>: Access permission tests. +* -u <6>: shred invocation. +* -u: mv invocation. +* -U: Sorting the output. +* -u <1>: Sorting the output. +* -u <2>: uniq invocation. +* -u <3>: sort invocation. +* -u <4>: fmt invocation. +* -u: cat invocation. +* -unset: env invocation. +* -v <1>: uname invocation. +* -v <2>: chmod invocation. +* -v <3>: chgrp invocation. +* -v <4>: chown invocation. +* -v <5>: rmdir invocation. +* -v <6>: readlink invocation. +* -v: mkdir invocation. +* -V: ln invocation. +* -v <1>: ln invocation. +* -v <2>: shred invocation. +* -v: rm invocation. +* -V: mv invocation. +* -v: mv invocation. +* -V: install invocation. +* -v: install invocation. +* -V: cp invocation. +* -v <1>: cp invocation. +* -v <2>: Sorting the output. +* -v <3>: tail invocation. +* -v <4>: head invocation. +* -v <5>: pr invocation. +* -v <6>: od invocation. +* -v <7>: nl invocation. +* -v: cat invocation. +* -w <1>: who invocation. +* -w <2>: Access permission tests. +* -w <3>: General output formatting. +* -w <4>: uniq invocation. +* -w <5>: md5sum invocation. +* -w <6>: wc invocation. +* -w: fold invocation. +* -W: pr invocation. +* -w <1>: pr invocation. +* -w <2>: fmt invocation. +* -w <3>: od invocation. +* -w: nl invocation. +* -WIDTH: fmt invocation. +* -x <1>: Access permission tests. +* -x <2>: du invocation. +* -x <3>: df invocation. +* -x <4>: shred invocation. +* -x <5>: cp invocation. +* -x: General output formatting. +* -X: Sorting the output. +* -x: od invocation. +* -X FILE: du invocation. +* -z <1>: String tests. +* -z <2>: shred invocation. +* -z <3>: sort invocation. +* -z: csplit invocation. +* .cshrc: su invocation. +* /: Numeric expressions. +* /bin/sh: su invocation. +* /etc/passwd: su invocation. +* /etc/shells: su invocation. +* /etc/utmp <1>: who invocation. +* /etc/utmp <2>: users invocation. +* /etc/utmp: logname invocation. +* /etc/wtmp <1>: who invocation. +* /etc/wtmp: users invocation. +* 128-bit checksum: md5sum invocation. +* 16-bit checksum: sum invocation. +* 4.2 filesystem type: df invocation. +* <: Relations for expr. +* <=: Relations for expr. +* = <1>: Relations for expr. +* =: String tests. +* ==: Relations for expr. +* >: Relations for expr. +* >=: Relations for expr. +* \( regexp operator: String expressions. +* \+ regexp operator: String expressions. +* \? regexp operator: String expressions. +* \c: printf invocation. +* \OOO: printf invocation. +* \uhhhh: printf invocation. +* \Uhhhhhhhh: printf invocation. +* \xHH: printf invocation. +* \| regexp operator: String expressions. +* _POSIX2_VERSION: Standards conformance. +* abbreviations for months: Calendar date items. +* access permission tests: Access permission tests. +* access permissions, changing: chmod invocation. +* access time, changing: touch invocation. +* access time, printing or sorting files by: Sorting the output. +* across columns: pr invocation. +* across, listing files: General output formatting. +* adding permissions: Setting Permissions. +* addition: Numeric expressions. +* ago in date strings: Relative items in date strings. +* all duplicate lines, outputting: uniq invocation. +* alnum: Character sets. +* alpha: Character sets. +* alternate ebcdic, converting to: dd invocation. +* always color option: General output formatting. +* am i: who invocation. +* am in date strings: Time of day items. +* and operator <1>: Relations for expr. +* and operator: Connectives for test. +* appropriate privileges <1>: nice invocation. +* appropriate privileges <2>: hostname invocation. +* appropriate privileges <3>: Setting the time. +* appropriate privileges: install invocation. +* arbitrary date strings, parsing: Options for date. +* arbitrary text, displaying: echo invocation. +* arithmetic tests: Numeric tests. +* ASCII dump of files: od invocation. +* ascii, converting to: dd invocation. +* atime, changing: touch invocation. +* atime, printing or sorting files by: Sorting the output. +* attributes, file: Changing file attributes. +* authors of getdate: Authors of getdate. +* auto color option: General output formatting. +* automounter filesystems: df invocation. +* b for block special file: mknod invocation. +* background jobs, stopping at terminal write: Local. +* backslash escapes <1>: echo invocation. +* backslash escapes: Character sets. +* backslash sequences for file names: Formatting the file names. +* backup files, ignoring: Which files are listed. +* backup options: Backup options. +* backup suffix: Backup options. +* backups, making <1>: ln invocation. +* backups, making <2>: mv invocation. +* backups, making <3>: install invocation. +* backups, making <4>: cp invocation. +* backups, making: Backup options. +* backups, making only: cp invocation. +* basename: basename invocation. +* baud rate, setting: Special. +* beeping at input buffer full: Input. +* beginning of time: Time directives. +* beginning of time, for POSIX: Date input formats. +* Bellovin, Steven M.: Authors of getdate. +* Berets, Jim: Authors of getdate. +* Berry, K. <1>: Authors of getdate. +* Berry, K.: Introduction. +* binary and text I/O in cat: cat invocation. +* binary input files: md5sum invocation. +* blank: Character sets. +* blank lines, numbering: nl invocation. +* blanks, ignoring leading: sort invocation. +* block (space-padding): dd invocation. +* block size <1>: dd invocation. +* block size: Block size. +* block size of conversion: dd invocation. +* block size of input: dd invocation. +* block size of output: dd invocation. +* block special check: File type tests. +* block special files: mknod invocation. +* block special files, creating: mknod invocation. +* BLOCK_SIZE: Block size. +* body, numbering: nl invocation. +* Bourne shell syntax for color setup: dircolors invocation. +* breaks, cause interrupts: Input. +* breaks, ignoring: Input. +* brkint: Input. +* bs: dd invocation. +* BSD sum: sum invocation. +* BSD tail: tail invocation. +* BSD touch compatibility: touch invocation. +* bsN: Output. +* bugs, reporting: Introduction. +* built-in shell commands, conflicts with <1>: nice invocation. +* built-in shell commands, conflicts with <2>: pwd invocation. +* built-in shell commands, conflicts with: test invocation. +* byte count: wc invocation. +* byte-swapping: dd invocation. +* c for character special file: mknod invocation. +* C shell syntax for color setup: dircolors invocation. +* C-s/C-q flow control: Input. +* calendar date item: Calendar date items. +* case folding: sort invocation. +* case translation: Local. +* case, ignored in dates: General date syntax. +* cat: cat invocation. +* cbreak: Combination. +* cbs: dd invocation. +* CD-ROM filesystem type: df invocation. +* cdfs filesystem type: df invocation. +* change or print terminal settings: stty invocation. +* changed files, verbosely describing: chgrp invocation. +* changed owners, verbosely describing: chown invocation. +* changing access permissions: chmod invocation. +* changing file attributes: Changing file attributes. +* changing file ownership: chown invocation. +* changing file timestamps: touch invocation. +* changing group ownership <1>: chgrp invocation. +* changing group ownership: chown invocation. +* changing special permissions: Changing Special Permissions. +* character classes: Character sets. +* character count: wc invocation. +* character size: Control. +* character special check: File type tests. +* character special files: mknod invocation. +* character special files, creating: mknod invocation. +* characters, special: Characters. +* check file types: test invocation. +* checking for sortedness: sort invocation. +* checksum, 128-bit: md5sum invocation. +* checksum, 16-bit: sum invocation. +* chgrp: chgrp invocation. +* chmod: chmod invocation. +* chown: chown invocation. +* chroot: chroot invocation. +* cksum: cksum invocation. +* clocal: Control. +* cntrl: Character sets. +* color database, printing: dircolors invocation. +* color setup: dircolors invocation. +* color, distinguishing file types with: General output formatting. +* cols: Special. +* COLUMNS: Special. +* columns: Special. +* COLUMNS: General output formatting. +* combination settings: Combination. +* comm: comm invocation. +* commands for controlling processes: Process control. +* commands for delaying: Delaying. +* commands for exit status: Conditions. +* commands for file name manipulation: File name manipulation. +* commands for invoking other commands: Modified command invocation. +* commands for printing text: Printing text. +* commands for printing the working context: Working context. +* commands for printing user information: User information. +* commands for redirection: Redirection. +* commands for system context: System context. +* commas, outputting between files: General output formatting. +* comments, in dates: General date syntax. +* common field, joining on: join invocation. +* common lines: comm invocation. +* common options: Common options. +* compare values: test invocation. +* comparing sorted files: comm invocation. +* comparison operators: Relations for expr. +* concatenate and write files: cat invocation. +* conditional executability: Conditional Executability. +* conditions: Conditions. +* conflicts with shell built-ins <1>: nice invocation. +* conflicts with shell built-ins <2>: pwd invocation. +* conflicts with shell built-ins: test invocation. +* connectives, logical <1>: Relations for expr. +* connectives, logical: Connectives for test. +* context splitting: csplit invocation. +* context, system: System context. +* control characters, using ^C: Local. +* control settings: Control. +* conv: dd invocation. +* conversion block size: dd invocation. +* converting tabs to spaces: expand invocation. +* converting while copying a file: dd invocation. +* cooked: Combination. +* Coordinated Universal Time: Options for date. +* copying directories recursively: cp invocation. +* copying existing permissions: Copying Permissions. +* copying files: cat invocation. +* copying files and directories: cp invocation. +* copying files and setting attributes: install invocation. +* core utilities: Top. +* count: dd invocation. +* cp: cp invocation. +* crashes and corruption: sync invocation. +* CRC checksum: cksum invocation. +* cread: Control. +* creating directories: mkdir invocation. +* creating FIFOs (named pipes): mkfifo invocation. +* creating links (hard only): link invocation. +* creating links (hard or soft): ln invocation. +* crN: Output. +* crown margin: fmt invocation. +* crt: Combination. +* crterase: Local. +* crtkill: Local. +* crtscts: Control. +* csh syntax for color setup: dircolors invocation. +* csN: Control. +* csplit: csplit invocation. +* cstopb: Control. +* ctime, printing or sorting by: Sorting the output. +* ctlecho: Local. +* current working directory, printing: pwd invocation. +* cut: cut invocation. +* cyclic redundancy check: cksum invocation. +* data, erasing: shred invocation. +* database for color setup, printing: dircolors invocation. +* date: date invocation. +* date directives: Date directives. +* date format, ISO 8601: Calendar date items. +* date input formats: Date input formats. +* date options: Options for date. +* date strings, parsing: Options for date. +* day in date strings: Relative items in date strings. +* day of week item: Day of week items. +* dd: dd invocation. +* dec: Combination. +* decctlq: Combination. +* delay for a specified time: sleep invocation. +* delaying commands: Delaying. +* deleting characters: Squeezing. +* dereferencing symbolic links: ln invocation. +* descriptor follow option: tail invocation. +* destination directory <1>: ln invocation. +* destination directory <2>: mv invocation. +* destination directory <3>: install invocation. +* destination directory <4>: cp invocation. +* destination directory: Target directory. +* destinations, multiple output: tee invocation. +* device file, disk: df invocation. +* df: df invocation. +* DF_BLOCK_SIZE: Block size. +* dictionary order: sort invocation. +* differing lines: comm invocation. +* digit: Character sets. +* dir: dir invocation. +* dircolors: dircolors invocation. +* directives, date: Date directives. +* directives, literal: Literal directives. +* directives, time: Time directives. +* directories, copying: cp invocation. +* directories, copying recursively: cp invocation. +* directories, creating: mkdir invocation. +* directories, creating with given attributes: install invocation. +* directories, removing (recursively): rm invocation. +* directories, removing empty: rmdir invocation. +* directories, removing with unlink: rm invocation. +* directory check: File type tests. +* directory components, printing: dirname invocation. +* directory deletion, ignoring failures: rmdir invocation. +* directory deletion, reporting: rmdir invocation. +* directory listing: ls invocation. +* directory listing, brief: dir invocation. +* directory listing, recursive: Which files are listed. +* directory listing, verbose: vdir invocation. +* directory order, listing by: Sorting the output. +* directory, stripping from file names: basename invocation. +* dired Emacs mode support: What information is listed. +* dirname: dirname invocation. +* disabling sort's last-resort comparison: sort invocation. +* disabling special characters: Characters. +* disk allocation: What information is listed. +* disk device file: df invocation. +* disk usage: Disk usage. +* disk usage by filesystem: df invocation. +* disk usage for files: du invocation. +* diskette filesystem: df invocation. +* displacement of dates: Relative items in date strings. +* displaying text: echo invocation. +* displaying value of a symbolic link: readlink invocation. +* division: Numeric expressions. +* do nothing, successfully: true invocation. +* do nothing, unsuccessfully: false invocation. +* DOS filesystem: df invocation. +* double spacing: pr invocation. +* down columns: pr invocation. +* dsusp: Characters. +* du: du invocation. +* DU_BLOCK_SIZE: Block size. +* duplicate lines, outputting: uniq invocation. +* ebcdic, converting to: dd invocation. +* echo <1>: Local. +* echo: echo invocation. +* echoctl: Local. +* echoe: Local. +* echok: Local. +* echoke: Local. +* echonl: Local. +* echoprt: Local. +* effective uid and gid, printing: id invocation. +* effective UID, printing: whoami invocation. +* efs filesystem type: df invocation. +* Eggert, Paul: Authors of getdate. +* eight-bit characters <1>: Combination. +* eight-bit characters: Control. +* eight-bit input: Input. +* ek: Combination. +* empty files, creating: touch invocation. +* empty lines, numbering: nl invocation. +* entire files, output of: Output of entire files. +* env: env invocation. +* environment variables, printing: printenv invocation. +* environment, preserving: su invocation. +* environment, printing: env invocation. +* environment, running a program in a modified: env invocation. +* eof: Characters. +* eol: Characters. +* eol2: Characters. +* epoch, for POSIX: Date input formats. +* epoch, seconds since: Time directives. +* equal string check: String tests. +* equivalence classes: Character sets. +* erase: Characters. +* erasing data: shred invocation. +* error messages, omitting <1>: chmod invocation. +* error messages, omitting <2>: chgrp invocation. +* error messages, omitting: chown invocation. +* evaluation of expressions: expr invocation. +* even parity: Control. +* evenp: Combination. +* exabyte, definition of: Block size. +* examples of date: Examples of date. +* examples of expr: Examples of expr. +* exbibyte, definition of: Block size. +* excluding files from du: du invocation. +* executable file check: Access permission tests. +* executables and file type, marking: General output formatting. +* execute permission: Mode Structure. +* execute permission, symbolic: Setting Permissions. +* existence-of-file check: File characteristic tests. +* existing backup method: Backup options. +* exit status commands: Conditions. +* exit status of expr: expr invocation. +* exit status of false: false invocation. +* exit status of nohup: nohup invocation. +* exit status of pathchk: pathchk invocation. +* exit status of printenv: printenv invocation. +* exit status of true: true invocation. +* exit status of tty: tty invocation. +* expand: expand invocation. +* expr: expr invocation. +* expression evaluation <1>: expr invocation. +* expression evaluation: test invocation. +* expressions, numeric: Numeric expressions. +* expressions, string: String expressions. +* extension, sorting files by: Sorting the output. +* factor: factor invocation. +* failure exit status: false invocation. +* false: false invocation. +* fascism: su invocation. +* ffN: Output. +* field separator character: sort invocation. +* fields, padding numeric: Padding. +* FIFOs, creating: mkfifo invocation. +* file attributes, changing: Changing file attributes. +* file characteristic tests: File characteristic tests. +* file contents, dumping unambiguously: od invocation. +* file information, preserving: cp invocation. +* file name manipulation: File name manipulation. +* file name pattern expansion, disabled: su invocation. +* file names, checking validity and portability: pathchk invocation. +* file names, stripping directory and suffix: basename invocation. +* file offset radix: od invocation. +* file ownership, changing: chown invocation. +* file permissions, numeric: Numeric Modes. +* file sizes: du invocation. +* file space usage: du invocation. +* file status: stat invocation. +* file timestamps, changing: touch invocation. +* file type and executables, marking: General output formatting. +* file type tests: File type tests. +* file type, marking: General output formatting. +* file types: Special file types. +* file types, special: Special file types. +* file utilities: Top. +* files beginning with -, removing: rm invocation. +* files, copying: cp invocation. +* filesystem disk usage: df invocation. +* filesystem sizes: df invocation. +* filesystem space, retrieving current data more slowly: df invocation. +* filesystem space, retrieving old data more quickly: df invocation. +* filesystem status: stat invocation. +* filesystem types, limiting output to certain: df invocation. +* filesystem types, printing: df invocation. +* filesystems: stat invocation. +* filesystems and hard links: ln invocation. +* filesystems, omitting copying to different: cp invocation. +* fingerprint, 128-bit: md5sum invocation. +* first in date strings: General date syntax. +* first part of files, outputting: head invocation. +* flow control, hardware: Control. +* flow control, software: Input. +* flushing, disabling: Local. +* fmt: fmt invocation. +* fold: fold invocation. +* folding long input lines: fold invocation. +* footers, numbering: nl invocation. +* force deletion: shred invocation. +* formatting file contents: Formatting file contents. +* formatting of numbers in seq: seq invocation. +* formatting times <1>: date invocation. +* formatting times: pr invocation. +* fortnight in date strings: Relative items in date strings. +* fsck: rm invocation. +* general date syntax: General date syntax. +* general numeric sort: sort invocation. +* getdate: Date input formats. +* gibibyte, definition of: Block size. +* gigabyte, definition of: Block size. +* giving away permissions: Umask and Protection. +* globbing, disabled: su invocation. +* GMT: Options for date. +* grand total of disk space: du invocation. +* graph: Character sets. +* Greenwich Mean Time: Options for date. +* group owner, default: Mode Structure. +* group ownership of installed files, setting: install invocation. +* group ownership, changing <1>: chgrp invocation. +* group ownership, changing: chown invocation. +* group wheel, not supported: su invocation. +* group, permissions for: Setting Permissions. +* groups: groups invocation. +* growing files: tail invocation. +* hangups, immunity to: nohup invocation. +* hard link check: File characteristic tests. +* hard link, defined: ln invocation. +* hard links to directories: ln invocation. +* hard links, counting in du: du invocation. +* hard links, creating <1>: ln invocation. +* hard links, creating: link invocation. +* hard links, preserving: cp invocation. +* hardware class: uname invocation. +* hardware flow control: Control. +* hardware platform: uname invocation. +* hardware type: uname invocation. +* hat notation for control characters: Local. +* head: head invocation. +* headers, numbering: nl invocation. +* help, online: Common options. +* hex dump of files: od invocation. +* High Sierra filesystem: df invocation. +* holes, copying files with: cp invocation. +* HOME: su invocation. +* horizontal, listing files: General output formatting. +* host processor type: uname invocation. +* hostid: hostid invocation. +* hostname <1>: hostname invocation. +* hostname: uname invocation. +* hour in date strings: Relative items in date strings. +* hsfs filesystem type: df invocation. +* human-readable output <1>: du invocation. +* human-readable output <2>: df invocation. +* human-readable output <3>: What information is listed. +* human-readable output: Block size. +* hup[cl]: Control. +* hurd, author, printing: What information is listed. +* ibs: dd invocation. +* icanon: Local. +* icrnl: Input. +* id: id invocation. +* idle time: who invocation. +* iexten: Local. +* if: dd invocation. +* ignbrk: Input. +* igncr: Input. +* ignore filesystems: df invocation. +* ignoring case: sort invocation. +* ignpar: Input. +* imaxbel: Input. +* immunity to hangups: nohup invocation. +* implementation, hardware: uname invocation. +* indenting lines: pr invocation. +* index: String expressions. +* information, about current users: who invocation. +* initial part of files, outputting: head invocation. +* initial tabs, converting: expand invocation. +* inlcr: Input. +* inode number, printing: What information is listed. +* inode usage: df invocation. +* inode, and hard links: ln invocation. +* inodes, written buffered: sync invocation. +* inpck: Input. +* input block size: dd invocation. +* input settings: Input. +* input tabs: pr invocation. +* install: install invocation. +* interactivity <1>: mv invocation. +* interactivity: cp invocation. +* intr: Characters. +* invocation of commands, modified: Modified command invocation. +* isig: Local. +* ISO 8601 date format: Calendar date items. +* ispeed: Special. +* istrip: Input. +* items in date strings: General date syntax. +* iterations, selecting the number of: shred invocation. +* iuclc: Input. +* ixany: Input. +* ixoff: Input. +* ixon: Input. +* join: join invocation. +* kernel name: uname invocation. +* kernel release: uname invocation. +* kernel version: uname invocation. +* kibibyte, definition of: Block size. +* kibibytes for file sizes: du invocation. +* kibibytes for filesystem sizes: df invocation. +* kill <1>: kill invocation. +* kill: Characters. +* kilobyte, definition of: Block size. +* Knuth, Donald E.: fmt invocation. +* language, in dates: General date syntax. +* last DAY <1>: Day of week items. +* last DAY: Options for date. +* last in date strings: General date syntax. +* last part of files, outputting: tail invocation. +* LC_ALL <1>: ls invocation. +* LC_ALL: sort invocation. +* LC_COLLATE <1>: Relations for expr. +* LC_COLLATE <2>: join invocation. +* LC_COLLATE <3>: comm invocation. +* LC_COLLATE <4>: uniq invocation. +* LC_COLLATE: sort invocation. +* LC_CTYPE: sort invocation. +* LC_MESSAGES: pr invocation. +* LC_NUMERIC <1>: sort invocation. +* LC_NUMERIC: Block size. +* LC_TIME <1>: Formatting file timestamps. +* LC_TIME <2>: sort invocation. +* LC_TIME: pr invocation. +* LCASE: Combination. +* lcase: Combination. +* lcase, converting to: dd invocation. +* lchown <1>: chgrp invocation. +* lchown: chown invocation. +* leading directories, creating missing: install invocation. +* leading directory components, stripping: basename invocation. +* left margin: pr invocation. +* length: String expressions. +* limiting output of du: du invocation. +* line: Special. +* line count: wc invocation. +* line numbering: nl invocation. +* line settings of terminal: stty invocation. +* line-breaking: fmt invocation. +* line-by-line comparison: comm invocation. +* LINES: Special. +* link: link invocation. +* links, creating <1>: ln invocation. +* links, creating: link invocation. +* Linux filesystem types: df invocation. +* literal directives: Literal directives. +* litout: Combination. +* ln: ln invocation. +* ln format for nl: nl invocation. +* lnext: Characters. +* local filesystem types: df invocation. +* local settings: Local. +* logging out and continuing to run: nohup invocation. +* logical and operator <1>: Relations for expr. +* logical and operator: Connectives for test. +* logical connectives <1>: Relations for expr. +* logical connectives: Connectives for test. +* logical or operator <1>: Relations for expr. +* logical or operator: Connectives for test. +* logical pages, numbering on: nl invocation. +* login name, printing: logname invocation. +* login sessions, printing users with: users invocation. +* login shell: su invocation. +* login shell, creating: su invocation. +* login time: who invocation. +* LOGNAME: su invocation. +* logname: logname invocation. +* long ls format: What information is listed. +* lower: Character sets. +* lowercase, translating to output: Output. +* ls: ls invocation. +* LS_BLOCK_SIZE: Block size. +* LS_COLORS: dircolors invocation. +* machine type: uname invocation. +* machine-readable stty output: stty invocation. +* MacKenzie, D.: Introduction. +* MacKenzie, David: Authors of getdate. +* Makefiles, installing programs in: install invocation. +* manipulating files: Basic operations. +* manipulation of file names: File name manipulation. +* match: String expressions. +* matching patterns: String expressions. +* md5sum: md5sum invocation. +* mebibyte, definition of: Block size. +* megabyte, definition of: Block size. +* merging files: paste invocation. +* merging files in parallel: pr invocation. +* merging sorted files: sort invocation. +* message status: who invocation. +* message-digest, 128-bit: md5sum invocation. +* Meyering, J.: Introduction. +* Meyering, Jim: Authors of getdate. +* midnight in date strings: Time of day items. +* min: Special. +* minute in date strings: Relative items in date strings. +* minutes, time zone correction by: Time of day items. +* MIT AI lab: su invocation. +* mkdir: mkdir invocation. +* mkfifo: mkfifo invocation. +* mknod: mknod invocation. +* modem control: Control. +* modes and umask: Umask and Protection. +* modes of created directories, setting: mkdir invocation. +* modes of created FIFOs, setting: mkfifo invocation. +* modification time, sorting files by: Sorting the output. +* modified command invocation: Modified command invocation. +* modified environment, running a program in a: env invocation. +* modify time, changing: touch invocation. +* modifying scheduling priority: nice invocation. +* month in date strings: Relative items in date strings. +* month names in date strings: Calendar date items. +* months, sorting by: sort invocation. +* months, written-out: General date syntax. +* MS-DOS filesystem: df invocation. +* mtime, changing: touch invocation. +* multicolumn output, generating: pr invocation. +* multiple changes to permissions: Multiple Changes. +* multiplication: Numeric expressions. +* multipliers after numbers: dd invocation. +* mv: mv invocation. +* name follow option: tail invocation. +* name of kernel: uname invocation. +* named pipe check: File type tests. +* named pipes, creating: mkfifo invocation. +* network node name: uname invocation. +* newer files, moving only: mv invocation. +* newer-than file check: File characteristic tests. +* newline echoing after kill: Local. +* newline, echoing: Local. +* newline, translating to crlf: Output. +* newline, translating to return: Input. +* next DAY <1>: Day of week items. +* next DAY: Options for date. +* next in date strings: General date syntax. +* NFS filesystem type: df invocation. +* NFS mounts from BSD to HP-UX <1>: du invocation. +* NFS mounts from BSD to HP-UX: What information is listed. +* nice: nice invocation. +* nl <1>: Combination. +* nl: nl invocation. +* nlN: Output. +* no-op: true invocation. +* node name: uname invocation. +* noerror: dd invocation. +* noflsh: Local. +* nohup: nohup invocation. +* nohup.out: nohup invocation. +* non-directories, copying as special files: cp invocation. +* non-directory suffix, stripping: dirname invocation. +* none backup method: Backup options. +* none color option: General output formatting. +* none, sorting option for ls: Sorting the output. +* nonempty file check: File characteristic tests. +* nonprinting characters, ignoring: sort invocation. +* nonzero-length string check: String tests. +* noon in date strings: Time of day items. +* not-equal string check: String tests. +* notrunc: dd invocation. +* now in date strings: Relative items in date strings. +* numbered backup method: Backup options. +* numbering lines: nl invocation. +* numbers, written-out: General date syntax. +* numeric expressions: Numeric expressions. +* numeric field padding: Padding. +* numeric modes: Numeric Modes. +* numeric operations: Numeric operations. +* numeric sequences: seq invocation. +* numeric sort: sort invocation. +* numeric tests: Numeric tests. +* numeric uid and gid: What information is listed. +* obs: dd invocation. +* ocrnl: Output. +* octal dump of files: od invocation. +* octal numbers for file modes: Numeric Modes. +* od: od invocation. +* odd parity: Control. +* oddp: Combination. +* of: dd invocation. +* ofdel: Output. +* ofill: Output. +* olcuc: Output. +* older-than file check: File characteristic tests. +* one filesystem, restricting du to: du invocation. +* one-line output format: df invocation. +* onlcr: Output. +* onlret: Output. +* onocr: Output. +* operating on characters: Operating on characters. +* operating on sorted files: Operating on sorted files. +* operating system name: uname invocation. +* opost: Output. +* option delimiter: Common options. +* options for date: Options for date. +* or operator <1>: Relations for expr. +* or operator: Connectives for test. +* ordinal numbers: General date syntax. +* ospeed: Special. +* other permissions: Setting Permissions. +* output block size: dd invocation. +* output file name prefix <1>: csplit invocation. +* output file name prefix: split invocation. +* output file name suffix: csplit invocation. +* output format: stat invocation. +* output format, portable: df invocation. +* output of entire files: Output of entire files. +* output of parts of files: Output of parts of files. +* output settings: Output. +* output tabs: pr invocation. +* overwriting of input, allowed: sort invocation. +* owned by effective gid check: Access permission tests. +* owned by effective uid check: Access permission tests. +* owner of file, permissions for: Setting Permissions. +* owner, default: Mode Structure. +* ownership of installed files, setting: install invocation. +* p for FIFO file: mknod invocation. +* pad character: Output. +* pad instead of timing for delaying: Output. +* padding of numeric fields: Padding. +* paragraphs, reformatting: fmt invocation. +* parenb: Control. +* parent directories and cp: cp invocation. +* parent directories, creating: mkdir invocation. +* parent directories, creating missing: install invocation. +* parent directories, removing: rmdir invocation. +* parentheses for grouping: expr invocation. +* parity: Combination. +* parity errors, marking: Input. +* parity, ignoring: Input. +* parmrk: Input. +* parodd: Control. +* parsing date strings: Options for date. +* parts of files, output of: Output of parts of files. +* pass8: Combination. +* passwd entry, and su shell: su invocation. +* paste: paste invocation. +* Paterson, R.: Introduction. +* PATH <1>: su invocation. +* PATH: env invocation. +* pathchk: pathchk invocation. +* pattern matching: String expressions. +* PC filesystem: df invocation. +* pcfs: df invocation. +* pebibyte, definition of: Block size. +* permission tests: Access permission tests. +* permissions of installed files, setting: install invocation. +* permissions, changing access: chmod invocation. +* permissions, copying existing: Copying Permissions. +* permissions, for changing file timestamps: touch invocation. +* permissions, output by ls: What information is listed. +* petabyte, definition of: Block size. +* phone directory order: sort invocation. +* pieces, splitting a file into: split invocation. +* Pinard, F. <1>: Authors of getdate. +* Pinard, F.: Introduction. +* pipe fitting: tee invocation. +* Plass, Michael F.: fmt invocation. +* platform, hardware: uname invocation. +* pm in date strings: Time of day items. +* portable file names, checking for: pathchk invocation. +* portable output format: df invocation. +* POSIX: Introduction. +* POSIX output format: df invocation. +* POSIXLY_CORRECT <1>: Warnings in tr. +* POSIXLY_CORRECT <2>: sort invocation. +* POSIXLY_CORRECT <3>: wc invocation. +* POSIXLY_CORRECT <4>: pr invocation. +* POSIXLY_CORRECT <5>: Standards conformance. +* POSIXLY_CORRECT: Common options. +* POSIXLY_CORRECT, and block size: Block size. +* pr: pr invocation. +* prime factors: factor invocation. +* print: Character sets. +* print name of current directory: pwd invocation. +* print system information: uname invocation. +* print terminal file name: tty invocation. +* printenv: printenv invocation. +* printf: printf invocation. +* printing all or some environment variables: printenv invocation. +* printing color database: dircolors invocation. +* printing current user information: who invocation. +* printing current usernames: users invocation. +* printing groups a user is in: groups invocation. +* printing real and effective uid and gid: id invocation. +* printing text: echo invocation. +* printing text, commands for: Printing text. +* printing the current time: date invocation. +* printing the effective UID: whoami invocation. +* printing the host identifier: hostid invocation. +* printing the hostname: hostname invocation. +* printing user's login name: logname invocation. +* printing, preparing files for: pr invocation. +* priority, modifying: nice invocation. +* processes, commands for controlling: Process control. +* prompting, and ln: ln invocation. +* prompting, and mv: mv invocation. +* prompting, and rm: rm invocation. +* prompts, forcing: mv invocation. +* prompts, omitting: mv invocation. +* prterase: Local. +* ptx: ptx invocation. +* punct: Character sets. +* pure numbers in date strings: Pure numbers in date strings. +* pwd: pwd invocation. +* quit: Characters. +* quoting style: Formatting the file names. +* radix for file offsets: od invocation. +* ranges: Character sets. +* raw: Combination. +* read errors, ignoring: dd invocation. +* read from stdin and write to stdout and files: tee invocation. +* read permission: Mode Structure. +* read permission, symbolic: Setting Permissions. +* read system call, and holes: cp invocation. +* readable file check: Access permission tests. +* readlink: readlink invocation. +* real uid and gid, printing: id invocation. +* recursive directory listing: Which files are listed. +* recursively changing access permissions: chmod invocation. +* recursively changing file ownership: chown invocation. +* recursively changing group ownership: chgrp invocation. +* recursively copying directories: cp invocation. +* redirection: Redirection. +* reformatting paragraph text: fmt invocation. +* regular expression matching: String expressions. +* regular file check: File type tests. +* relations, numeric or string: Relations for expr. +* relative items in date strings: Relative items in date strings. +* release of kernel: uname invocation. +* remainder: Numeric expressions. +* remote hostname: who invocation. +* removing empty directories: rmdir invocation. +* removing files after shredding: shred invocation. +* removing files or directories: rm invocation. +* removing files or directories (via the unlink syscall): unlink invocation. +* removing permissions: Setting Permissions. +* repeated characters: Character sets. +* repeated output of a string: yes invocation. +* restricted deletion flag: Mode Structure. +* restricted shell: su invocation. +* return, ignoring: Input. +* return, translating to newline <1>: Output. +* return, translating to newline: Input. +* reverse sorting <1>: Sorting the output. +* reverse sorting: sort invocation. +* reversing files: tac invocation. +* rm: rm invocation. +* rmdir: rmdir invocation. +* rn format for nl: nl invocation. +* root as default owner: install invocation. +* root directory, running a program in a specified: chroot invocation. +* root, becoming: su invocation. +* rows: Special. +* rprnt: Characters. +* RTS/CTS flow control: Control. +* running a program in a modified environment: env invocation. +* running a program in a specified root directory: chroot invocation. +* rz format for nl: nl invocation. +* Salz, Rich: Authors of getdate. +* same file check: File characteristic tests. +* sane: Combination. +* scheduling priority, modifying: nice invocation. +* screen columns: fold invocation. +* seconds since the epoch: Time directives. +* section delimiters of pages: nl invocation. +* seek: dd invocation. +* self-backups: cp invocation. +* send a signal to processes: kill invocation. +* sentences and line-breaking: fmt invocation. +* separator for numbers in seq: seq invocation. +* seq: seq invocation. +* sequence of numbers: seq invocation. +* set-group-id check: Access permission tests. +* set-user-id check: Access permission tests. +* setgid: Mode Structure. +* setting permissions: Setting Permissions. +* setting the hostname: hostname invocation. +* setting the time: Setting the time. +* setuid: Mode Structure. +* setup for color: dircolors invocation. +* sh syntax for color setup: dircolors invocation. +* SHELL: su invocation. +* SHELL environment variable, and color: dircolors invocation. +* shell utilities: Top. +* shred: shred invocation. +* SI output <1>: du invocation. +* SI output <2>: df invocation. +* SI output <3>: What information is listed. +* SI output: Block size. +* simple backup method: Backup options. +* SIMPLE_BACKUP_SUFFIX: Backup options. +* single-column output of files: General output formatting. +* size: Special. +* size for main memory sorting: sort invocation. +* size of file to shred: shred invocation. +* size of files, reporting: What information is listed. +* size of files, sorting files by: Sorting the output. +* skip: dd invocation. +* sleep: sleep invocation. +* socket check: File type tests. +* software flow control: Input. +* sort: sort invocation. +* sort field: sort invocation. +* sort stability: sort invocation. +* sort zero-terminated lines: sort invocation. +* sorted files, operations on: Operating on sorted files. +* sorting files: sort invocation. +* sorting ls output: Sorting the output. +* space: Character sets. +* sparse files, copying: cp invocation. +* special characters: Characters. +* special file types: Special file types. +* special files: mknod invocation. +* special settings: Special. +* specifying sets of characters: Character sets. +* speed: Special. +* split: split invocation. +* splitting a file into pieces: split invocation. +* splitting a file into pieces by context: csplit invocation. +* squeezing blank lines: cat invocation. +* squeezing repeat characters: Squeezing. +* Stallman, R.: Introduction. +* standard input: Common options. +* standard output: Common options. +* start: Characters. +* stat: stat invocation. +* status time, printing or sorting by: Sorting the output. +* sticky: Mode Structure. +* sticky bit check: Access permission tests. +* stop: Characters. +* stop bits: Control. +* strftime and date: date invocation. +* string constants, outputting: od invocation. +* string expressions: String expressions. +* string tests: String tests. +* strip directory and suffix from file names: basename invocation. +* stripping non-directory suffix: dirname invocation. +* stripping symbol table information: install invocation. +* stripping trailing slashes <1>: mv invocation. +* stripping trailing slashes: cp invocation. +* stty: stty invocation. +* su: su invocation. +* substitute user and group ids: su invocation. +* substr: String expressions. +* subtracting permissions: Setting Permissions. +* subtraction: Numeric expressions. +* successful exit: true invocation. +* suffix, stripping from file names: basename invocation. +* sum: sum invocation. +* summarizing files: Summarizing files. +* super-user, becoming: su invocation. +* superblock, writing: sync invocation. +* supplementary groups, printing: groups invocation. +* susp: Characters. +* swab (byte-swapping): dd invocation. +* swap space, saving text image in: Mode Structure. +* swtch: Characters. +* symbol table information, stripping: install invocation. +* symbolic (soft) links, creating: ln invocation. +* symbolic link check: File type tests. +* symbolic link, defined: ln invocation. +* symbolic links and pwd: pwd invocation. +* symbolic links, changing group: chgrp invocation. +* symbolic links, changing owner <1>: chgrp invocation. +* symbolic links, changing owner: chown invocation. +* symbolic links, copying: cp invocation. +* symbolic links, copying with: cp invocation. +* symbolic links, dereferencing: Which files are listed. +* symbolic links, dereferencing in du: du invocation. +* symbolic links, dereferencing in stat: stat invocation. +* symbolic links, permissions of: chmod invocation. +* symbolic modes: Symbolic Modes. +* sync: sync invocation. +* sync (padding with nulls): dd invocation. +* synchronize disk and memory: sync invocation. +* syslog: su invocation. +* system context: System context. +* system information, printing: uname invocation. +* system name, printing: hostname invocation. +* System V sum: sum invocation. +* tabN: Output. +* tabs: Combination. +* tabs to spaces, converting: expand invocation. +* tabstops, setting: expand invocation. +* tac: tac invocation. +* tagged paragraphs: fmt invocation. +* tail: tail invocation. +* tandem: Input. +* target directory <1>: ln invocation. +* target directory <2>: mv invocation. +* target directory <3>: install invocation. +* target directory <4>: cp invocation. +* target directory: Target directory. +* tebibyte, definition of: Block size. +* tee: tee invocation. +* telephone directory order: sort invocation. +* temporary directory: sort invocation. +* terabyte, definition of: Block size. +* TERM: su invocation. +* terminal check: File type tests. +* terminal file name, printing: tty invocation. +* terminal lines, currently used: who invocation. +* terminal settings: stty invocation. +* terminal, using color iff: General output formatting. +* terse output: stat invocation. +* test: test invocation. +* text image, saving in swap space: Mode Structure. +* text input files: md5sum invocation. +* text utilities: Top. +* text, displaying: echo invocation. +* text, reformatting: fmt invocation. +* this in date strings: Relative items in date strings. +* time <1>: Special. +* time: touch invocation. +* time directives: Time directives. +* time formats <1>: date invocation. +* time formats: pr invocation. +* time of day item: Time of day items. +* time setting: Setting the time. +* time style: Formatting file timestamps. +* time units: sleep invocation. +* time zone correction: Time of day items. +* time zone item <1>: Time zone items. +* time zone item: General date syntax. +* time, printing or setting: date invocation. +* TIME_STYLE: Formatting file timestamps. +* timestamps of installed files, preserving: install invocation. +* timestamps, changing file: touch invocation. +* TMPDIR: sort invocation. +* today in date strings: Relative items in date strings. +* tomorrow: Options for date. +* tomorrow in date strings: Relative items in date strings. +* topological sort: tsort invocation. +* tostop: Local. +* total counts: wc invocation. +* touch: touch invocation. +* tr: tr invocation. +* trailing slashes: Trailing slashes. +* translating characters: Translating. +* true: true invocation. +* truncating output file, avoiding: dd invocation. +* tsort: tsort invocation. +* tty: tty invocation. +* Twenex: su invocation. +* two-way parity: Control. +* type size: od invocation. +* u, and disabling special characters: Characters. +* ucase, converting to: dd invocation. +* ufs filesystem type: df invocation. +* umask and modes: Umask and Protection. +* uname: uname invocation. +* unblock: dd invocation. +* unexpand: unexpand invocation. +* uniq: uniq invocation. +* unique lines, outputting: uniq invocation. +* uniquify files: uniq invocation. +* uniquifying output: sort invocation. +* unlink <1>: unlink invocation. +* unlink: rm invocation. +* unprintable characters, ignoring: sort invocation. +* unsorted directory listing: Sorting the output. +* upper: Character sets. +* uppercase, translating to lowercase: Input. +* use time, changing: touch invocation. +* use time, printing or sorting files by: Sorting the output. +* USER: su invocation. +* user id, switching: su invocation. +* user information, commands for: User information. +* user name, printing: logname invocation. +* usernames, printing current: users invocation. +* users: users invocation. +* UTC: Options for date. +* utmp: logname invocation. +* valid file names, checking for: pathchk invocation. +* vdir: vdir invocation. +* verbose ls format: What information is listed. +* verifying MD5 checksums: md5sum invocation. +* version number, finding: Common options. +* version of kernel: uname invocation. +* version, sorting option for ls: Sorting the output. +* version-control Emacs variable: Backup options. +* VERSION_CONTROL <1>: ln invocation. +* VERSION_CONTROL <2>: mv invocation. +* VERSION_CONTROL <3>: install invocation. +* VERSION_CONTROL <4>: cp invocation. +* VERSION_CONTROL: Backup options. +* vertical sorted files in columns: General output formatting. +* vtN: Output. +* wc: wc invocation. +* week in date strings: Relative items in date strings. +* werase: Characters. +* wheel group, not supported: su invocation. +* who: who invocation. +* who am i: who invocation. +* whoami: whoami invocation. +* word count: wc invocation. +* working context: Working context. +* working directory, printing: pwd invocation. +* wrapping long input lines: fold invocation. +* writable file check: Access permission tests. +* write permission: Mode Structure. +* write permission, symbolic: Setting Permissions. +* write, allowed: who invocation. +* xcase: Local. +* xdigit: Character sets. +* XON/XOFF flow control: Input. +* year in date strings: Relative items in date strings. +* yes: yes invocation. +* yesterday: Options for date. +* yesterday in date strings: Relative items in date strings. +* yottabyte, definition of: Block size. +* Youmans, B.: Introduction. +* zero-length string check: String tests. +* zettabyte, definition of: Block size. +* |: Relations for expr. + + + +Tag Table: +Node: Top7422 +Node: Introduction19840 +Node: Common options21397 +Node: Exit status23497 +Node: Backup options24109 +Node: Block size26169 +Node: Target directory30681 +Node: Trailing slashes32915 +Node: Standards conformance33933 +Node: Output of entire files35400 +Node: cat invocation35932 +Node: tac invocation38545 +Node: nl invocation39717 +Node: od invocation43407 +Node: Formatting file contents49640 +Node: fmt invocation50090 +Node: pr invocation52795 +Node: fold invocation65560 +Node: Output of parts of files66978 +Node: head invocation67485 +Node: tail invocation68810 +Node: split invocation75226 +Node: csplit invocation77164 +Node: Summarizing files81196 +Node: wc invocation81720 +Node: sum invocation83582 +Node: cksum invocation84897 +Node: md5sum invocation85946 +Node: Operating on sorted files89198 +Node: sort invocation89801 +Ref: sort invocation-Footnote-1104273 +Node: uniq invocation104825 +Node: comm invocation108154 +Node: tsort invocation109477 +Node: tsort background112506 +Node: ptx invocation114179 +Node: General options in ptx116978 +Node: Charset selection in ptx117593 +Node: Input processing in ptx118486 +Node: Output formatting in ptx124168 +Node: Compatibility in ptx130725 +Node: Operating on fields within a line133946 +Node: cut invocation134346 +Node: paste invocation137136 +Node: join invocation138374 +Node: Operating on characters142130 +Node: tr invocation142565 +Node: Character sets143682 +Node: Translating147901 +Node: Squeezing149927 +Node: Warnings in tr152934 +Node: expand invocation154064 +Node: unexpand invocation155544 +Node: Directory listing157218 +Node: ls invocation157701 +Ref: ls invocation-Footnote-1159369 +Node: Which files are listed159591 +Node: What information is listed162090 +Node: Sorting the output170072 +Node: More details about version sort172381 +Node: General output formatting173618 +Node: Formatting file timestamps177022 +Node: Formatting the file names182024 +Node: dir invocation184261 +Node: vdir invocation184689 +Node: dircolors invocation185084 +Node: Basic operations186470 +Node: cp invocation187087 +Node: dd invocation197465 +Node: install invocation200654 +Node: mv invocation204172 +Node: rm invocation207740 +Node: shred invocation210049 +Node: Special file types216980 +Node: link invocation218473 +Node: ln invocation219042 +Node: mkdir invocation223320 +Node: mkfifo invocation224808 +Node: mknod invocation225705 +Node: readlink invocation227356 +Node: rmdir invocation228587 +Node: unlink invocation229769 +Node: Changing file attributes230662 +Node: chown invocation231472 +Node: chgrp invocation235527 +Node: chmod invocation237428 +Node: touch invocation239024 +Node: Disk usage242063 +Node: df invocation242739 +Node: du invocation247837 +Node: stat invocation252202 +Node: sync invocation254927 +Node: Printing text255749 +Node: echo invocation256120 +Node: printf invocation257106 +Node: yes invocation259981 +Node: Conditions260443 +Node: false invocation261031 +Node: true invocation261958 +Node: test invocation262999 +Node: File type tests264140 +Node: Access permission tests264931 +Node: File characteristic tests265697 +Node: String tests266451 +Node: Numeric tests267033 +Node: Connectives for test267819 +Node: expr invocation268161 +Node: String expressions269315 +Node: Numeric expressions271887 +Node: Relations for expr272512 +Node: Examples of expr273464 +Node: Redirection274178 +Node: tee invocation274620 +Node: File name manipulation275443 +Node: basename invocation275888 +Node: dirname invocation276438 +Node: pathchk invocation276981 +Node: Working context278186 +Node: pwd invocation278827 +Node: stty invocation279428 +Node: Control282095 +Node: Input282844 +Node: Output284232 +Node: Local285477 +Node: Combination287045 +Node: Characters289194 +Node: Special290737 +Node: printenv invocation292089 +Node: tty invocation292845 +Node: User information293544 +Node: id invocation294193 +Node: logname invocation295334 +Node: whoami invocation295838 +Node: groups invocation296233 +Node: users invocation296866 +Node: who invocation297673 +Node: System context299670 +Node: date invocation300157 +Node: Time directives301321 +Node: Date directives302790 +Node: Literal directives305048 +Node: Padding305324 +Node: Setting the time306131 +Node: Options for date307110 +Node: Examples of date309612 +Node: uname invocation312482 +Node: hostname invocation314139 +Node: hostid invocation314659 +Node: Modified command invocation315254 +Node: chroot invocation315888 +Node: env invocation317716 +Node: nice invocation318952 +Node: nohup invocation320305 +Node: su invocation321756 +Node: Process control326024 +Node: kill invocation326241 +Node: Delaying330587 +Node: sleep invocation330778 +Node: Numeric operations331451 +Node: factor invocation331780 +Node: seq invocation332825 +Node: File permissions336258 +Node: Mode Structure336849 +Node: Symbolic Modes339970 +Node: Setting Permissions340972 +Node: Copying Permissions343512 +Node: Changing Special Permissions344301 +Node: Conditional Executability345926 +Node: Multiple Changes346548 +Node: Umask and Protection348201 +Node: Numeric Modes349295 +Node: Date input formats351116 +Node: General date syntax353904 +Node: Calendar date items356319 +Node: Time of day items358317 +Node: Time zone items360144 +Node: Day of week items360995 +Node: Relative items in date strings361985 +Node: Pure numbers in date strings363948 +Node: Authors of getdate364929 +Node: Opening the software toolbox365678 +Node: Toolbox introduction366386 +Node: I/O redirection369112 +Node: The who command371948 +Node: The cut command372848 +Node: The sort command375875 +Node: The uniq command376582 +Node: Putting the tools together377311 +Ref: Putting the tools together-Footnote-1389487 +Node: GNU Free Documentation License389561 +Node: How to use this License for your documents408054 +Node: Index409464 + +End Tag Table diff --git a/src/apps/bin/coreutils-5.0/doc/coreutils.texi b/src/apps/bin/coreutils-5.0/doc/coreutils.texi new file mode 100644 index 0000000000..eb5be5e178 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/doc/coreutils.texi @@ -0,0 +1,12404 @@ +\input texinfo +@c %**start of header +@setfilename coreutils.info +@settitle @sc{gnu} Coreutils + +@c %**end of header + +@include version.texi +@include constants.texi + +@c Define new indices. +@defcodeindex op +@defcodeindex fl + +@c Put everything in one index (arbitrarily chosen to be the concept index). +@syncodeindex fl cp +@syncodeindex fn cp +@syncodeindex ky cp +@syncodeindex op cp +@syncodeindex pg cp +@syncodeindex vr cp + +@dircategory Basics +@direntry +* Coreutils: (coreutils). Core GNU (file, text, shell) utilities. +* Common options: (coreutils)Common options. Common options. +* File permissions: (coreutils)File permissions. Access modes. +* Date input formats: (coreutils)Date input formats. +@end direntry + +@dircategory Individual utilities +@direntry +* basename: (coreutils)basename invocation. Strip directory and suffix. +* cat: (coreutils)cat invocation. Concatenate and write files. +* chgrp: (coreutils)chgrp invocation. Change file groups. +* chmod: (coreutils)chmod invocation. Change file permissions. +* chown: (coreutils)chown invocation. Change file owners/groups. +* chroot: (coreutils)chroot invocation. Specify the root directory. +* cksum: (coreutils)cksum invocation. Print POSIX CRC checksum. +* comm: (coreutils)comm invocation. Compare sorted files by line. +* cp: (coreutils)cp invocation. Copy files. +* csplit: (coreutils)csplit invocation. Split by context. +* cut: (coreutils)cut invocation. Print selected parts of lines. +* date: (coreutils)date invocation. Print/set system date and time. +* dd: (coreutils)dd invocation. Copy and convert a file. +* df: (coreutils)df invocation. Report filesystem disk usage. +* dir: (coreutils)dir invocation. List directories briefly. +* dircolors: (coreutils)dircolors invocation. Color setup for ls. +* dirname: (coreutils)dirname invocation. Strip non-directory suffix. +* du: (coreutils)du invocation. Report on disk usage. +* echo: (coreutils)echo invocation. Print a line of text. +* env: (coreutils)env invocation. Modify the environment. +* expand: (coreutils)expand invocation. Convert tabs to spaces. +* expr: (coreutils)expr invocation. Evaluate expressions. +* factor: (coreutils)factor invocation. Print prime factors +* false: (coreutils)false invocation. Do nothing, unsuccessfully. +* fmt: (coreutils)fmt invocation. Reformat paragraph text. +* fold: (coreutils)fold invocation. Wrap long input lines. +* groups: (coreutils)groups invocation. Print group names a user is in. +* head: (coreutils)head invocation. Output the first part of files. +* hostid: (coreutils)hostid invocation. Print numeric host identifier. +* hostname: (coreutils)hostname invocation. Print or set system name. +* id: (coreutils)id invocation. Print real/effective uid/gid. +* install: (coreutils)install invocation. Copy and change attributes. +* join: (coreutils)join invocation. Join lines on a common field. +* kill: (coreutils)kill invocation. Send a signal to processes. +* link: (coreutils)link invocation. Make hard links between files. +* ln: (coreutils)ln invocation. Make links between files. +* logname: (coreutils)logname invocation. Print current login name. +* ls: (coreutils)ls invocation. List directory contents. +* md5sum: (coreutils)md5sum invocation. Print or check message-digests. +* mkdir: (coreutils)mkdir invocation. Create directories. +* mkfifo: (coreutils)mkfifo invocation. Create FIFOs (named pipes). +* mknod: (coreutils)mknod invocation. Create special files. +* mv: (coreutils)mv invocation. Rename files. +* nice: (coreutils)nice invocation. Modify scheduling priority. +* nl: (coreutils)nl invocation. Number lines and write files. +* nohup: (coreutils)nohup invocation. Immunize to hangups. +* od: (coreutils)od invocation. Dump files in octal, etc. +* paste: (coreutils)paste invocation. Merge lines of files. +* pathchk: (coreutils)pathchk invocation. Check file name portability. +* pr: (coreutils)pr invocation. Paginate or columnate files. +* printenv: (coreutils)printenv invocation. Print environment variables. +* printf: (coreutils)printf invocation. Format and print data. +* ptx: (coreutils)ptx invocation. Produce permuted indexes. +* pwd: (coreutils)pwd invocation. Print working directory. +* readlink: (coreutils)readlink invocation. Print referent of a symlink. +* rm: (coreutils)rm invocation. Remove files. +* rmdir: (coreutils)rmdir invocation. Remove empty directories. +* seq: (coreutils)seq invocation. Print numeric sequences +* shred: (coreutils)shred invocation. Remove files more securely. +* sleep: (coreutils)sleep invocation. Delay for a specified time. +* sort: (coreutils)sort invocation. Sort text files. +* split: (coreutils)split invocation. Split into fixed-size pieces. +* stat: (coreutils)stat invocation. Report file(system) status. +* stty: (coreutils)stty invocation. Print/change terminal settings. +* su: (coreutils)su invocation. Modify user and group id. +* sum: (coreutils)sum invocation. Print traditional checksum. +* sync: (coreutils)sync invocation. Synchronize memory and disk. +* tac: (coreutils)tac invocation. Reverse files. +* tail: (coreutils)tail invocation. Output the last part of files. +* tee: (coreutils)tee invocation. Redirect to multiple files. +* test: (coreutils)test invocation. File/string tests. +* touch: (coreutils)touch invocation. Change file timestamps. +* tr: (coreutils)tr invocation. Translate characters. +* true: (coreutils)true invocation. Do nothing, successfully. +* tsort: (coreutils)tsort invocation. Topological sort. +* tty: (coreutils)tty invocation. Print terminal name. +* uname: (coreutils)uname invocation. Print system information. +* unexpand: (coreutils)unexpand invocation. Convert spaces to tabs. +* uniq: (coreutils)uniq invocation. Uniquify files. +* unlink: (coreutils)unlink invocation. Removal via unlink(2). +* users: (coreutils)users invocation. Print current user names. +* vdir: (coreutils)vdir invocation. List directories verbosely. +* wc: (coreutils)wc invocation. Byte, word, and line counts. +* who: (coreutils)who invocation. Print who is logged in. +* whoami: (coreutils)whoami invocation. Print effective user id. +* yes: (coreutils)yes invocation. Print a string indefinitely. +@end direntry + +@copying +This manual documents version @value{VERSION} of the @sc{gnu} core +utilities, including the standard programs for text and file manipulation. + +Copyright @copyright{} 1994, 1995, 1996, 2000, 2001, 2002, 2003 +Free Software Foundation, Inc. + +@quotation +Permission is granted to copy, distribute and/or modify this document +under the terms of the GNU Free Documentation License, Version 1.1 or +any later version published by the Free Software Foundation; with no +Invariant Sections, with no Front-Cover Texts, and with no Back-Cover +Texts. A copy of the license is included in the section entitled ``GNU +Free Documentation License''. +@end quotation +@end copying + +@titlepage +@title @sc{gnu} @code{Coreutils} +@subtitle Core GNU utilities +@subtitle for version @value{VERSION}, @value{UPDATED} +@author David MacKenzie et al. + +@page +@vskip 0pt plus 1filll +@insertcopying +@end titlepage + + +@ifnottex +@node Top +@top GNU Coreutils + +@insertcopying +@end ifnottex + +@cindex core utilities +@cindex text utilities +@cindex shell utilities +@cindex file utilities + +@menu +* Introduction:: Caveats, overview, and authors. +* Common options:: Common options. +* Output of entire files:: cat tac nl od +* Formatting file contents:: fmt pr fold +* Output of parts of files:: head tail split csplit +* Summarizing files:: wc sum cksum md5sum +* Operating on sorted files:: sort uniq comm ptx tsort +* Operating on fields within a line:: cut paste join +* Operating on characters:: tr expand unexpand +* Directory listing:: ls dir vdir d v dircolors +* Basic operations:: cp dd install mv rm shred +* Special file types:: ln mkdir rmdir mkfifo mknod +* Changing file attributes:: chgrp chmod chown touch +* Disk usage:: df du stat sync +* Printing text:: echo printf yes +* Conditions:: false true test expr +* Redirection:: tee +* File name manipulation:: dirname basename pathchk +* Working context:: pwd stty printenv tty +* User information:: id logname whoami groups users who +* System context:: date uname hostname +* Modified command invocation:: chroot env nice nohup su +* Process control:: kill +* Delaying:: sleep +* Numeric operations:: factor seq +* File permissions:: Access modes. +* Date input formats:: Specifying date strings. +* Opening the software toolbox:: The software tools philosophy. +* GNU Free Documentation License:: The license for this documentation. +* Index:: General index. + +@detailmenu + --- The Detailed Node Listing --- + +Common Options + +* Exit status:: Indicating program success or failure. +* Backup options:: Backup options +* Block size:: Block size +* Target directory:: Target directory +* Trailing slashes:: Trailing slashes +* Standards conformance:: Standards conformance + +Output of entire files + +* cat invocation:: Concatenate and write files. +* tac invocation:: Concatenate and write files in reverse. +* nl invocation:: Number lines and write files. +* od invocation:: Write files in octal or other formats. + +Formatting file contents + +* fmt invocation:: Reformat paragraph text. +* pr invocation:: Paginate or columnate files for printing. +* fold invocation:: Wrap input lines to fit in specified width. + +Output of parts of files + +* head invocation:: Output the first part of files. +* tail invocation:: Output the last part of files. +* split invocation:: Split a file into fixed-size pieces. +* csplit invocation:: Split a file into context-determined pieces. + +Summarizing files + +* wc invocation:: Print byte, word, and line counts. +* sum invocation:: Print checksum and block counts. +* cksum invocation:: Print CRC checksum and byte counts. +* md5sum invocation:: Print or check message-digests. + +Operating on sorted files + +* sort invocation:: Sort text files. +* uniq invocation:: Uniquify files. +* comm invocation:: Compare two sorted files line by line. +* ptx invocation:: Produce a permuted index of file contents. +* tsort invocation:: Topological sort. + +@command{ptx}: Produce permuted indexes + +* General options in ptx:: Options which affect general program behavior. +* Charset selection in ptx:: Underlying character set considerations. +* Input processing in ptx:: Input fields, contexts, and keyword selection. +* Output formatting in ptx:: Types of output format, and sizing the fields. +* Compatibility in ptx:: The GNU extensions to @command{ptx} + +Operating on fields within a line + +* cut invocation:: Print selected parts of lines. +* paste invocation:: Merge lines of files. +* join invocation:: Join lines on a common field. + +Operating on characters + +* tr invocation:: Translate, squeeze, and/or delete characters. +* expand invocation:: Convert tabs to spaces. +* unexpand invocation:: Convert spaces to tabs. + +@command{tr}: Translate, squeeze, and/or delete characters + +* Character sets:: Specifying sets of characters. +* Translating:: Changing one characters to another. +* Squeezing:: Squeezing repeats and deleting. +* Warnings in tr:: Warning messages. + +Directory listing + +* ls invocation:: List directory contents +* dir invocation:: Briefly list directory contents +* vdir invocation:: Verbosely list directory contents +* dircolors invocation:: Color setup for @command{ls} + +@command{ls}: List directory contents + +* Which files are listed:: Which files are listed +* What information is listed:: What information is listed +* Sorting the output:: Sorting the output +* More details about version sort:: More details about version sort +* General output formatting:: General output formatting +* Formatting the file names:: Formatting the file names + +Basic operations + +* cp invocation:: Copy files and directories +* dd invocation:: Convert and copy a file +* install invocation:: Copy files and set attributes +* mv invocation:: Move (rename) files +* rm invocation:: Remove files or directories +* shred invocation:: Remove files more securely + +Special file types + +* link invocation:: Make a hard link via the link syscall +* ln invocation:: Make links between files +* mkdir invocation:: Make directories +* mkfifo invocation:: Make FIFOs (named pipes) +* mknod invocation:: Make block or character special files +* readlink invocation:: Print the referent of a symbolic link +* rmdir invocation:: Remove empty directories +* unlink invocation:: Remove files via unlink syscall + +Changing file attributes + +* chown invocation:: Change file owner and group +* chgrp invocation:: Change group ownership +* chmod invocation:: Change access permissions +* touch invocation:: Change file timestamps + +Disk usage + +* df invocation:: Report filesystem disk space usage +* du invocation:: Estimate file space usage +* stat invocation:: Report file or filesystem status +* sync invocation:: Synchronize data on disk with memory + +Printing text + +* echo invocation:: Print a line of text +* printf invocation:: Format and print data +* yes invocation:: Print a string until interrupted + +Conditions + +* false invocation:: Do nothing, unsuccessfully +* true invocation:: Do nothing, successfully +* test invocation:: Check file types and compare values +* expr invocation:: Evaluate expressions + +@command{test}: Check file types and compare values + +* File type tests:: File type tests +* Access permission tests:: Access permission tests +* File characteristic tests:: File characteristic tests +* String tests:: String tests +* Numeric tests:: Numeric tests + +@command{expr}: Evaluate expression + +* String expressions:: + : match substr index length +* Numeric expressions:: + - * / % +* Relations for expr:: | & < <= = == != >= > +* Examples of expr:: Examples of using @command{expr} + +Redirection + +* tee invocation:: Redirect output to multiple files + +File name manipulation + +* basename invocation:: Strip directory and suffix from a file name +* dirname invocation:: Strip non-directory suffix from a file name +* pathchk invocation:: Check file name portability + +Working context + +* pwd invocation:: Print working directory +* stty invocation:: Print or change terminal characteristics +* printenv invocation:: Print all or some environment variables +* tty invocation:: Print file name of terminal on standard input + +@command{stty}: Print or change terminal characteristics + +* Control:: Control settings +* Input:: Input settings +* Output:: Output settings +* Local:: Local settings +* Combination:: Combination settings +* Characters:: Special characters +* Special:: Special settings + +User information + +* id invocation:: Print real and effective uid and gid +* logname invocation:: Print current login name +* whoami invocation:: Print effective user id +* groups invocation:: Print group names a user is in +* users invocation:: Print login names of users currently logged in +* who invocation:: Print who is currently logged in + +System context + +* date invocation:: Print or set system date and time +* uname invocation:: Print system information +* hostname invocation:: Print or set system name +* hostid invocation:: Print numeric host identifier. + +@command{date}: Print or set system date and time + +* Time directives:: Time directives +* Date directives:: Date directives +* Literal directives:: Literal directives +* Padding:: Padding +* Setting the time:: Setting the time +* Options for date:: Options for @command{date} +* Examples of date:: Examples of @command{date} + +Modified command invocation + +* chroot invocation:: Run a command with a different root directory +* env invocation:: Run a command in a modified environment +* nice invocation:: Run a command with modified scheduling priority +* nohup invocation:: Run a command immune to hangups +* su invocation:: Run a command with substitute user and group id + +Process control + +* kill invocation:: Sending a signal to processes. + +Delaying + +* sleep invocation:: Delay for a specified time + +Numeric operations + +* factor invocation:: Print prime factors +* seq invocation:: Print numeric sequences + +File permissions + +* Mode Structure:: Structure of File Permissions +* Symbolic Modes:: Mnemonic permissions representation +* Numeric Modes:: Permissions as octal numbers + +Date input formats + +* General date syntax: General date syntax +* Calendar date items: Calendar date items +* Time of day items: Time of day items +* Time zone items: Time zone items +* Day of week items: Day of week items +* Relative items in date strings: Relative items in date strings +* Pure numbers in date strings: Pure numbers in date strings +* Authors of getdate: Authors of getdate + +Opening the software toolbox + +* Toolbox introduction:: Toolbox introduction +* I/O redirection:: I/O redirection +* The who command:: The @command{who} command +* The cut command:: The @command{cut} command +* The sort command:: The @command{sort} command +* The uniq command:: The @command{uniq} command +* Putting the tools together:: Putting the tools together + +GNU Free Documentation License + +* How to use this License for your documents:: + +@end detailmenu +@end menu + + +@node Introduction +@chapter Introduction + +This manual is a work in progress: many sections make no attempt to explain +basic concepts in a way suitable for novices. Thus, if you are interested, +please get involved in improving this manual. The entire @sc{gnu} community +will benefit. + +@cindex @acronym{POSIX} +The @sc{gnu} utilities documented here are mostly compatible with the +@acronym{POSIX} standard. +@cindex bugs, reporting +Please report bugs to @email{bug-coreutils@@gnu.org}. Remember +to include the version number, machine architecture, input files, and +any other information needed to reproduce the bug: your input, what you +expected, what you got, and why it is wrong. Diffs are welcome, but +please include a description of the problem as well, since this is +sometimes difficult to infer. @xref{Bugs, , , gcc, Using and Porting GNU CC}. + +@cindex Berry, K. +@cindex Paterson, R. +@cindex Stallman, R. +@cindex Pinard, F. +@cindex MacKenzie, D. +@cindex Meyering, J. +@cindex Youmans, B. +This manual was originally derived from the Unix man pages in the +distributions, which were written by David MacKenzie and updated by Jim +Meyering. What you are reading now is the authoritative documentation +for these utilities; the man pages are no longer being maintained. The +original @command{fmt} man page was written by Ross Paterson. Fran@,{c}ois +Pinard did the initial conversion to Texinfo format. Karl Berry did the +indexing, some reorganization, and editing of the results. Brian +Youmans of the Free Software Foundation office staff combined the +manuals for textutils, fileutils, and sh-utils to produce the present +omnibus manual. Richard Stallman contributed his usual invaluable +insights to the overall process. + +@node Common options +@chapter Common options + +@cindex common options + +Certain options are available in all of these programs. Rather than +writing identical descriptions for each of the programs, they are +described here. (In fact, every @sc{gnu} program accepts (or should accept) +these options.) + +@vindex POSIXLY_CORRECT +Normally options and operands can appear in any order, and programs act +as if all the options appear before any operands. For example, +@samp{sort -r passwd -t :} acts like @samp{sort -r -t : passwd}, since +@samp{:} is an option-argument of @option{-t}. However, if the +@env{POSIXLY_CORRECT} environment variable is set, options must appear +before operands, unless otherwise specified for a particular command. + +Some of these programs recognize the @option{--help} and @option{--version} +options only when one of them is the sole command line argument. + +@table @samp + +@item --help +@opindex --help +@cindex help, online +Print a usage message listing all available options, then exit successfully. + +@item --version +@opindex --version +@cindex version number, finding +Print the version number, then exit successfully. + +@item -- +@opindex -- +@cindex option delimiter +Delimit the option list. Later arguments, if any, are treated as +operands even if they begin with @samp{-}. For example, @samp{sort -- +-r} reads from the file named @file{-r}. + +@end table + +@cindex standard input +@cindex standard output +A single @samp{-} is not really an option, though it looks like one. It +stands for standard input, or for standard output if that is clear from +the context, and it can be used either as an operand or as an +option-argument. For example, @samp{sort -o - -} outputs to standard +output and reads from standard input, and is equivalent to plain +@samp{sort}. Unless otherwise specified, @samp{-} can appear in any +context that requires a file name. + +@menu +* Exit status:: Indicating program success or failure. +* Backup options:: -b -S -V, in some programs. +* Block size:: BLOCK_SIZE and --block-size, in some programs. +* Target directory:: --target-directory, in some programs. +* Trailing slashes:: --strip-trailing-slashes, in some programs. +* Standards conformance:: Conformance to the @acronym{POSIX} standard. +@end menu + + +@node Exit status +@section Exit status + +Nearly every command invocation yields an integral @dfn{exit status} +that can be used to change how other commands work. +For the vast majority of commands, an exit status of zero indicates +success, and a value of @samp{1} indicates failure. +However, some of the programs documented here do produce +other exit status values and a few associate different +meanings with the values @samp{0} and @samp{1}. +Here are some of the exceptions: +@command{expr}, @command{false}, @command{nohup}, @command{printenv}, +@command{sort}, @command{test}, @command{true}, @command{tty}, +@command{uniq}. + + +@node Backup options +@section Backup options + +@cindex backup options + +Some @sc{gnu} programs (at least @command{cp}, @command{install}, +@command{ln}, and @command{mv}) optionally make backups of files +before writing new versions. +These options control the details of these backups. The options are also +briefly mentioned in the descriptions of the particular programs. + +@table @samp + +@item -b +@itemx @w{@kbd{--backup}[=@var{method}]} +@opindex -b +@opindex --backup +@vindex VERSION_CONTROL +@cindex backups, making +Make a backup of each file that would otherwise be overwritten or removed. +Without this option, the original versions are destroyed. +Use @var{method} to determine the type of backups to make. +When this option is used but @var{method} is not specified, +then the value of the @env{VERSION_CONTROL} +environment variable is used. And if @env{VERSION_CONTROL} is not set, +the default backup type is @samp{existing}. + +Note that the short form of this option, @option{-b} does not accept any +argument. Using @option{-b} is equivalent to using @option{--backup=existing}. + +@vindex version-control @r{Emacs variable} +This option corresponds to the Emacs variable @samp{version-control}; +the values for @var{method} are the same as those used in Emacs. +This option also accepts more descriptive names. +The valid @var{method}s are (unique abbreviations are accepted): + +@table @samp +@item none +@itemx off +@opindex none @r{backup method} +Never make backups. + +@item numbered +@itemx t +@opindex numbered @r{backup method} +Always make numbered backups. + +@item existing +@itemx nil +@opindex existing @r{backup method} +Make numbered backups of files that already have them, simple backups +of the others. + +@item simple +@itemx never +@opindex simple @r{backup method} +Always make simple backups. Please note @samp{never} is not to be +confused with @samp{none}. + +@end table + +@item -S @var{suffix} +@itemx --suffix=@var{suffix} +@opindex -S +@opindex --suffix +@cindex backup suffix +@vindex SIMPLE_BACKUP_SUFFIX +Append @var{suffix} to each backup file made with @option{-b}. If this +option is not specified, the value of the @env{SIMPLE_BACKUP_SUFFIX} +environment variable is used. And if @env{SIMPLE_BACKUP_SUFFIX} is not +set, the default is @samp{~}, just as in Emacs. + +@itemx --version-control=@var{method} +@opindex --version-control +@c FIXME: remove this block one or two releases after the actual +@c removal from the code. +This option is obsolete and will be removed in a future release. +It has been replaced with @w{@kbd{--backup}}. + +@end table + +@node Block size +@section Block size + +@cindex block size + +Some @sc{gnu} programs (at least @command{df}, @command{du}, and +@command{ls}) display sizes in ``blocks''. You can adjust the block size +and method of display to make sizes easier to read. The block size +used for display is independent of any filesystem block size. +Fractional block counts are rounded up to the nearest integer. + +@opindex --block-size=@var{size} +@vindex BLOCK_SIZE +@vindex DF_BLOCK_SIZE +@vindex DU_BLOCK_SIZE +@vindex LS_BLOCK_SIZE +@vindex POSIXLY_CORRECT@r{, and block size} + +The default block size is chosen by examining the following environment +variables in turn; the first one that is set determines the block size. + +@table @code + +@item DF_BLOCK_SIZE +This specifies the default block size for the @command{df} command. +Similarly, @env{DU_BLOCK_SIZE} specifies the default for @command{du} and +@env{LS_BLOCK_SIZE} for @command{ls}. + +@item BLOCK_SIZE +This specifies the default block size for all three commands, if the +above command-specific environment variables are not set. + +@item POSIXLY_CORRECT +If neither the @env{@var{command}_BLOCK_SIZE} nor the @env{BLOCK_SIZE} +variables are set, but this variable is set, the block size defaults to 512. + +@end table + +If none of the above environment variables are set, the block size +currently defaults to 1024 bytes in most contexts, but this number may +change in the future. For @command{ls} file sizes, the block size +defaults to 1 byte. + +@cindex human-readable output +@cindex SI output + +A block size specification can be a positive integer specifying the number +of bytes per block, or it can be @code{human-readable} or @code{si} to +select a human-readable format. Integers may be followed by suffixes +that are upward compatible with the +@uref{http://www.bipm.fr/enus/3_SI/si-prefixes.html, SI prefixes} +for decimal multiples and with the +@uref{http://physics.nist.gov/cuu/Units/binary.html, IEC 60027-2 +prefixes for binary multiples}. + +With human-readable formats, output sizes are followed by a size letter +such as @samp{M} for megabytes. @code{BLOCK_SIZE=human-readable} uses +powers of 1024; @samp{M} stands for 1,048,576 bytes. +@code{BLOCK_SIZE=si} is similar, but uses powers of 1000 and appends +@samp{B}; @samp{MB} stands for 1,000,000 bytes. + +@vindex LC_NUMERIC +A block size specification preceded by @samp{'} causes output sizes to +be displayed with thousands separators. The @env{LC_NUMERIC} locale +specifies the thousands separator and grouping. For example, in an +American English locale, @samp{--block-size="'1kB"} would cause a size +of 1234000 bytes to be displayed as @samp{1,234}. In the default C +locale, there is no thousands separator so a leading @samp{'} has no +effect. + +An integer block size can be followed by a suffix to specify a +multiple of that size. A bare size letter, +or one followed by @samp{iB}, specifies +a multiple using powers of 1024. A size letter followed by @samp{B} +specifies powers of 1000 instead. For example, @samp{1M} and +@samp{1MiB} are equivalent to @samp{1048576}, whereas @samp{1MB} is +equivalent to @samp{1000000}. + +A plain suffix without a preceding integer acts as if @samp{1} were +prepended, except that it causes a size indication to be appended to +the output. For example, @samp{--block-size="kB"} displays 3000 as +@samp{3kB}. + +The following suffixes are defined. Large sizes like @code{1Y} +may be rejected by your computer due to limitations of its arithmetic. + +@table @samp +@item kB +@cindex kilobyte, definition of +kilobyte: @math{10^3 = 1000}. +@item k +@itemx K +@itemx KiB +@cindex kibibyte, definition of +kibibyte: @math{2^10 = 1024}. @samp{K} is special: the SI prefix is +@samp{k} and the IEC 60027-2 prefix is @samp{Ki}, but tradition and +@acronym{POSIX} use @samp{k} to mean @samp{KiB}. +@item MB +@cindex megabyte, definition of +megabyte: @math{10^6 = 1,000,000}. +@item M +@itemx MiB +@cindex mebibyte, definition of +mebibyte: @math{2^20 = 1,048,576}. +@item GB +@cindex gigabyte, definition of +gigabyte: @math{10^9 = 1,000,000,000}. +@item G +@itemx GiB +@cindex gibibyte, definition of +gibibyte: @math{2^30 = 1,073,741,824}. +@item TB +@cindex terabyte, definition of +terabyte: @math{10^12 = 1,000,000,000,000}. +@item T +@itemx TiB +@cindex tebibyte, definition of +tebibyte: @math{2^40 = 1,099,511,627,776}. +@item PB +@cindex petabyte, definition of +petabyte: @math{10^15 = 1,000,000,000,000,000}. +@item P +@itemx PiB +@cindex pebibyte, definition of +pebibyte: @math{2^50 = 1,125,899,906,842,624}. +@item EB +@cindex exabyte, definition of +exabyte: @math{10^18 = 1,000,000,000,000,000,000}. +@item E +@itemx EiB +@cindex exbibyte, definition of +exbibyte: @math{2^60 = 1,152,921,504,606,846,976}. +@item ZB +@cindex zettabyte, definition of +zettabyte: @math{10^21 = 1,000,000,000,000,000,000,000} +@item Z +@itemx ZiB +@math{2^70 = 1,180,591,620,717,411,303,424}. +(@samp{Zi} is a GNU extension to IEC 60027-2.) +@item YB +@cindex yottabyte, definition of +yottabyte: @math{10^24 = 1,000,000,000,000,000,000,000,000}. +@item Y +@itemx YiB +@math{2^80 = 1,208,925,819,614,629,174,706,176}. +(@samp{Yi} is a GNU extension to IEC 60027-2.) +@end table + +@opindex -k +@opindex -h +@opindex --block-size +@opindex --human-readable +@opindex --si + +Block size defaults can be overridden by an explicit +@option{--block-size=@var{size}} option. The @option{-k} +option is equivalent to @option{--block-size=1K}, which +is the default unless the @env{POSIXLY_CORRECT} environment variable is +set. The @option{-h} or @option{--human-readable} option is equivalent to +@option{--block-size=human-readable}. The @option{--si} option is +equivalent to @option{--block-size=si}. + +@node Target directory +@section Target directory + +@cindex target directory + +Some @sc{gnu} programs (at least @command{cp}, @command{install}, +@command{ln}, and @command{mv}) allow you to specify the target directory +via this option: + +@table @samp + +@itemx @w{@kbd{--target-directory}=@var{directory}} +@opindex --target-directory +@cindex target directory +@cindex destination directory +Specify the destination @var{directory}. + +The interface for most programs is that after processing options and a +finite (possibly zero) number of fixed-position arguments, the remaining +argument list is either expected to be empty, or is a list of items +(usually files) that will all be handled identically. The @command{xargs} +program is designed to work well with this convention. + +The commands in the @command{mv}-family are unusual in that they take +a variable number of arguments with a special case at the @emph{end} +(namely, the target directory). This makes it nontrivial to perform some +operations, e.g., ``move all files from here to ../d/'', because +@code{mv * ../d/} might exhaust the argument space, and @code{ls | xargs ...} +doesn't have a clean way to specify an extra final argument for each +invocation of the subject command. (It can be done by going through a +shell command, but that requires more human labor and brain power than +it should.) + +The @w{@kbd{--target-directory}} option allows the @command{cp}, +@command{install}, @command{ln}, and @command{mv} programs to be used +conveniently with @command{xargs}. For example, you can move the files +from the current directory to a sibling directory, @code{d} like this: +(However, this doesn't move files whose names begin with @samp{.}.) + +@smallexample +ls |xargs mv --target-directory=../d +@end smallexample + +If you use the @sc{gnu} @command{find} program, you can move @emph{all} +files with this command: +@example +find . -mindepth 1 -maxdepth 1 \ + | xargs mv --target-directory=../d +@end example + +But that will fail if there are no files in the current directory +or if any file has a name containing a newline character. +The following example removes those limitations and requires both +@sc{gnu} @command{find} and @sc{gnu} @command{xargs}: +@example +find . -mindepth 1 -maxdepth 1 -print0 \ + | xargs --null --no-run-if-empty \ + mv --target-directory=../d +@end example + +@end table + +@node Trailing slashes +@section Trailing slashes + +@cindex trailing slashes + +Some @sc{gnu} programs (at least @command{cp} and @command{mv}) allow you to +remove any trailing slashes from each @var{source} argument before +operating on it. The @w{@kbd{--strip-trailing-slashes}} option enables +this behavior. + +This is useful when a @var{source} argument may have a trailing slash and +@c FIXME: mv's behavior in this case is system-dependent +specify a symbolic link to a directory. This scenario is in fact rather +common because some shells can automatically append a trailing slash when +performing file name completion on such symbolic links. Without this +option, @command{mv}, for example, (via the system's rename function) must +interpret a trailing slash as a request to dereference the symbolic link +and so must rename the indirectly referenced @emph{directory} and not +the symbolic link. Although it may seem surprising that such behavior +be the default, it is required by @acronym{POSIX} and is consistent with +other parts of that standard. + +@node Standards conformance +@section Standards conformance + +@vindex POSIXLY_CORRECT +In a few cases, the @sc{gnu} utilities' default behavior is +incompatible with the @acronym{POSIX} standard. To suppress these +incompatibilities, define the @env{POSIXLY_CORRECT} environment +variable. Unless you are checking for @acronym{POSIX} conformance, you +probably do not need to define @env{POSIXLY_CORRECT}. + +Newer versions of @acronym{POSIX} are occasionally incompatible with older +versions. For example, older versions of @acronym{POSIX} required the +command @samp{sort +1} to sort based on the second and succeeding +fields in each input line, but starting with @acronym{POSIX} 1003.1-2001 +the same command is required to sort the file named @file{+1}, and you +must instead use the command @samp{sort -k 2} to get the field-based +sort. + +@vindex _POSIX2_VERSION +The @sc{gnu} utilities normally conform to the version of @acronym{POSIX} +that is standard for your system. To cause them to conform to a +different version of @acronym{POSIX}, define the @env{_POSIX2_VERSION} +environment variable to a value of the form @var{yyyymm} specifying +the year and month the standard was adopted. Two values are currently +supported for @env{_POSIX2_VERSION}: @samp{199209} stands for +@acronym{POSIX} 1003.2-1992, and @samp{200112} stands for @acronym{POSIX} +1003.1-2001. For example, if you are running older software that +assumes an older version of @acronym{POSIX} and uses @samp{sort +1}, you +can work around the compatibility problems by setting +@samp{_POSIX2_VERSION=199209} in your environment. + +@node Output of entire files +@chapter Output of entire files + +@cindex output of entire files +@cindex entire files, output of + +These commands read and write entire files, possibly transforming them +in some way. + +@menu +* cat invocation:: Concatenate and write files. +* tac invocation:: Concatenate and write files in reverse. +* nl invocation:: Number lines and write files. +* od invocation:: Write files in octal or other formats. +@end menu + +@node cat invocation +@section @command{cat}: Concatenate and write files + +@pindex cat +@cindex concatenate and write files +@cindex copying files + +@command{cat} copies each @var{file} (@samp{-} means standard input), or +standard input if none are given, to standard output. Synopsis: + +@example +cat [@var{option}] [@var{file}]@dots{} +@end example + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -A +@itemx --show-all +@opindex -A +@opindex --show-all +Equivalent to @option{-vET}. + +@item -B +@itemx --binary +@opindex -B +@opindex --binary +@cindex binary and text I/O in cat +On MS-DOS and MS-Windows only, read and write the files in binary mode. +By default, @command{cat} on MS-DOS/MS-Windows uses binary mode only when +standard output is redirected to a file or a pipe; this option overrides +that. Binary file I/O is used so that the files retain their format +(Unix text as opposed to DOS text and binary), because @command{cat} is +frequently used as a file-copying program. Some options (see below) +cause @command{cat} to read and write files in text mode because in those +cases the original file contents aren't important (e.g., when lines are +numbered by @command{cat}, or when line endings should be marked). This is +so these options work as DOS/Windows users would expect; for example, +DOS-style text files have their lines end with the CR-LF pair of +characters, which won't be processed as an empty line by @option{-b} unless +the file is read in text mode. + +@item -b +@itemx --number-nonblank +@opindex -b +@opindex --number-nonblank +Number all nonblank output lines, starting with 1. On MS-DOS and +MS-Windows, this option causes @command{cat} to read and write files in +text mode. + +@item -e +@opindex -e +Equivalent to @option{-vE}. + +@item -E +@itemx --show-ends +@opindex -E +@opindex --show-ends +Display a @samp{$} after the end of each line. On MS-DOS and +MS-Windows, this option causes @command{cat} to read and write files in +text mode. + +@item -n +@itemx --number +@opindex -n +@opindex --number +Number all output lines, starting with 1. On MS-DOS and MS-Windows, +this option causes @command{cat} to read and write files in text mode. + +@item -s +@itemx --squeeze-blank +@opindex -s +@opindex --squeeze-blank +@cindex squeezing blank lines +Replace multiple adjacent blank lines with a single blank line. On +MS-DOS and MS-Windows, this option causes @command{cat} to read and write +files in text mode. + +@item -t +@opindex -t +Equivalent to @option{-vT}. + +@item -T +@itemx --show-tabs +@opindex -T +@opindex --show-tabs +Display TAB characters as @samp{^I}. + +@item -u +@opindex -u +Ignored; for Unix compatibility. + +@item -v +@itemx --show-nonprinting +@opindex -v +@opindex --show-nonprinting +Display control characters except for LFD and TAB using +@samp{^} notation and precede characters that have the high bit set with +@samp{M-}. On MS-DOS and MS-Windows, this option causes @command{cat} to +read files and standard input in DOS binary mode, so the CR +characters at the end of each line are also visible. + +@end table + + +@node tac invocation +@section @command{tac}: Concatenate and write files in reverse + +@pindex tac +@cindex reversing files + +@command{tac} copies each @var{file} (@samp{-} means standard input), or +standard input if none are given, to standard output, reversing the +records (lines by default) in each separately. Synopsis: + +@example +tac [@var{option}]@dots{} [@var{file}]@dots{} +@end example + +@dfn{Records} are separated by instances of a string (newline by +default). By default, this separator string is attached to the end of +the record that it follows in the file. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -b +@itemx --before +@opindex -b +@opindex --before +The separator is attached to the beginning of the record that it +precedes in the file. + +@item -r +@itemx --regex +@opindex -r +@opindex --regex +Treat the separator string as a regular expression. Users of @command{tac} +on MS-DOS/MS-Windows should note that, since @command{tac} reads files in +binary mode, each line of a text file might end with a CR/LF pair +instead of the Unix-style LF. + +@item -s @var{separator} +@itemx --separator=@var{separator} +@opindex -s +@opindex --separator +Use @var{separator} as the record separator, instead of newline. + +@end table + + +@node nl invocation +@section @command{nl}: Number lines and write files + +@pindex nl +@cindex numbering lines +@cindex line numbering + +@command{nl} writes each @var{file} (@samp{-} means standard input), or +standard input if none are given, to standard output, with line numbers +added to some or all of the lines. Synopsis: + +@example +nl [@var{option}]@dots{} [@var{file}]@dots{} +@end example + +@cindex logical pages, numbering on +@command{nl} decomposes its input into (logical) pages; by default, the +line number is reset to 1 at the top of each logical page. @command{nl} +treats all of the input files as a single document; it does not reset +line numbers or logical pages between files. + +@cindex headers, numbering +@cindex body, numbering +@cindex footers, numbering +A logical page consists of three sections: header, body, and footer. +Any of the sections can be empty. Each can be numbered in a different +style from the others. + +The beginnings of the sections of logical pages are indicated in the +input file by a line containing exactly one of these delimiter strings: + +@table @samp +@item \:\:\: +start of header; +@item \:\: +start of body; +@item \: +start of footer. +@end table + +The two characters from which these strings are made can be changed from +@samp{\} and @samp{:} via options (see below), but the pattern and +length of each string cannot be changed. + +A section delimiter is replaced by an empty line on output. Any text +that comes before the first section delimiter string in the input file +is considered to be part of a body section, so @command{nl} treats a +file that contains no section delimiters as a single body section. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -b @var{style} +@itemx --body-numbering=@var{style} +@opindex -b +@opindex --body-numbering +Select the numbering style for lines in the body section of each +logical page. When a line is not numbered, the current line number +is not incremented, but the line number separator character is still +prepended to the line. The styles are: + +@table @samp +@item a +number all lines, +@item t +number only nonempty lines (default for body), +@item n +do not number lines (default for header and footer), +@item p@var{regexp} +number only lines that contain a match for @var{regexp}. +@end table + +@item -d @var{cd} +@itemx --section-delimiter=@var{cd} +@opindex -d +@opindex --section-delimiter +@cindex section delimiters of pages +Set the section delimiter characters to @var{cd}; default is +@samp{\:}. If only @var{c} is given, the second remains @samp{:}. +(Remember to protect @samp{\} or other metacharacters from shell +expansion with quotes or extra backslashes.) + +@item -f @var{style} +@itemx --footer-numbering=@var{style} +@opindex -f +@opindex --footer-numbering +Analogous to @option{--body-numbering}. + +@item -h @var{style} +@itemx --header-numbering=@var{style} +@opindex -h +@opindex --header-numbering +Analogous to @option{--body-numbering}. + +@item -i @var{number} +@itemx --page-increment=@var{number} +@opindex -i +@opindex --page-increment +Increment line numbers by @var{number} (default 1). + +@item -l @var{number} +@itemx --join-blank-lines=@var{number} +@opindex -l +@opindex --join-blank-lines +@cindex empty lines, numbering +@cindex blank lines, numbering +Consider @var{number} (default 1) consecutive empty lines to be one +logical line for numbering, and only number the last one. Where fewer +than @var{number} consecutive empty lines occur, do not number them. +An empty line is one that contains no characters, not even spaces +or tabs. + +@item -n @var{format} +@itemx --number-format=@var{format} +@opindex -n +@opindex --number-format +Select the line numbering format (default is @code{rn}): + +@table @samp +@item ln +@opindex ln @r{format for @command{nl}} +left justified, no leading zeros; +@item rn +@opindex rn @r{format for @command{nl}} +right justified, no leading zeros; +@item rz +@opindex rz @r{format for @command{nl}} +right justified, leading zeros. +@end table + +@item -p +@itemx --no-renumber +@opindex -p +@opindex --no-renumber +Do not reset the line number at the start of a logical page. + +@item -s @var{string} +@itemx --number-separator=@var{string} +@opindex -s +@opindex --number-separator +Separate the line number from the text line in the output with +@var{string} (default is the TAB character). + +@item -v @var{number} +@itemx --starting-line-number=@var{number} +@opindex -v +@opindex --starting-line-number +Set the initial line number on each logical page to @var{number} (default 1). + +@item -w @var{number} +@itemx --number-width=@var{number} +@opindex -w +@opindex --number-width +Use @var{number} characters for line numbers (default 6). + +@end table + + +@node od invocation +@section @command{od}: Write files in octal or other formats + +@pindex od +@cindex octal dump of files +@cindex hex dump of files +@cindex ASCII dump of files +@cindex file contents, dumping unambiguously + +@command{od} writes an unambiguous representation of each @var{file} +(@samp{-} means standard input), or standard input if none are given. +Synopses: + +@example +od [@var{option}]@dots{} [@var{file}]@dots{} +od --traditional [@var{file}] [[+]@var{offset} [[+]@var{label}]] +@end example + +Each line of output consists of the offset in the input, followed by +groups of data from the file. By default, @command{od} prints the offset in +octal, and each group of file data is two bytes of input printed as a +single octal number. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -A @var{radix} +@itemx --address-radix=@var{radix} +@opindex -A +@opindex --address-radix +@cindex radix for file offsets +@cindex file offset radix +Select the base in which file offsets are printed. @var{radix} can +be one of the following: + +@table @samp +@item d +decimal; +@item o +octal; +@item x +hexadecimal; +@item n +none (do not print offsets). +@end table + +The default is octal. + +@item -j @var{bytes} +@itemx --skip-bytes=@var{bytes} +@opindex -j +@opindex --skip-bytes +Skip @var{bytes} input bytes before formatting and writing. If +@var{bytes} begins with @samp{0x} or @samp{0X}, it is interpreted in +hexadecimal; otherwise, if it begins with @samp{0}, in octal; otherwise, +in decimal. Appending @samp{b} multiplies @var{bytes} by 512, @samp{k} +by 1024, and @samp{m} by 1048576. + +@item -N @var{bytes} +@itemx --read-bytes=@var{bytes} +@opindex -N +@opindex --read-bytes +Output at most @var{bytes} bytes of the input. Prefixes and suffixes on +@code{bytes} are interpreted as for the @option{-j} option. + +@item -s @var{n} +@itemx --strings[=@var{n}] +@opindex -s +@opindex --strings +@cindex string constants, outputting +Instead of the normal output, output only @dfn{string constants}: at +least @var{n} consecutive @acronym{ASCII} graphic characters, +followed by a null (zero) byte. + +If @var{n} is omitted with @option{--strings}, the default is 3. On +older systems, @sc{gnu} @command{od} instead supports an obsolete +option @option{-s[@var{n}]}, where @var{n} also defaults to 3. +@acronym{POSIX} 1003.1-2001 (@pxref{Standards conformance}) does not allow +@option{-s} without an argument; use @option{--strings} instead. + +@item -t @var{type} +@itemx --format=@var{type} +@opindex -t +@opindex --format +Select the format in which to output the file data. @var{type} is a +string of one or more of the below type indicator characters. If you +include more than one type indicator character in a single @var{type} +string, or use this option more than once, @command{od} writes one copy +of each output line using each of the data types that you specified, +in the order that you specified. + +Adding a trailing ``z'' to any type specification appends a display +of the @acronym{ASCII} character representation of the printable characters +to the output line generated by the type specification. + +@table @samp +@item a +named character +@item c +@acronym{ASCII} character or backslash escape, +@item d +signed decimal +@item f +floating point +@item o +octal +@item u +unsigned decimal +@item x +hexadecimal +@end table + +The type @code{a} outputs things like @samp{sp} for space, @samp{nl} for +newline, and @samp{nul} for a null (zero) byte. Type @code{c} outputs +@samp{ }, @samp{\n}, and @code{\0}, respectively. + +@cindex type size +Except for types @samp{a} and @samp{c}, you can specify the number +of bytes to use in interpreting each number in the given data type +by following the type indicator character with a decimal integer. +Alternately, you can specify the size of one of the C compiler's +built-in data types by following the type indicator character with +one of the following characters. For integers (@samp{d}, @samp{o}, +@samp{u}, @samp{x}): + +@table @samp +@item C +char +@item S +short +@item I +int +@item L +long +@end table + +For floating point (@code{f}): + +@table @asis +@item F +float +@item D +double +@item L +long double +@end table + +@item -v +@itemx --output-duplicates +@opindex -v +@opindex --output-duplicates +Output consecutive lines that are identical. By default, when two or +more consecutive output lines would be identical, @command{od} outputs only +the first line, and puts just an asterisk on the following line to +indicate the elision. + +@item -w @var{n} +@itemx --width[=@var{n}] +@opindex -w +@opindex --width +Dump @code{n} input bytes per output line. This must be a multiple of +the least common multiple of the sizes associated with the specified +output types. + +If this option is not given at all, the default is 16. If @var{n} is +omitted with @option{--width}, the default is 32. On older systems, +@sc{gnu} @command{od} instead supports an obsolete option +@option{-w[@var{n}]}, where @var{n} also defaults to 32. @acronym{POSIX} +1003.1-2001 (@pxref{Standards conformance}) does not allow @option{-w} +without an argument; use @option{--width} instead. + +@end table + +The next several options are shorthands for format specifications. +@sc{gnu} @command{od} accepts any combination of shorthands and format +specification options. These options accumulate. + +@table @samp + +@item -a +@opindex -a +Output as named characters. Equivalent to @option{-ta}. + +@item -b +@opindex -b +Output as octal bytes. Equivalent to @option{-toC}. + +@item -c +@opindex -c +Output as @acronym{ASCII} characters or backslash escapes. Equivalent to +@option{-tc}. + +@item -d +@opindex -d +Output as unsigned decimal shorts. Equivalent to @option{-tu2}. + +@item -f +@opindex -f +Output as floats. Equivalent to @option{-tfF}. + +@item -h +@opindex -h +Output as hexadecimal shorts. Equivalent to @option{-tx2}. + +@item -i +@opindex -i +Output as decimal shorts. Equivalent to @option{-td2}. + +@item -l +@opindex -l +Output as decimal longs. Equivalent to @option{-td4}. + +@item -o +@opindex -o +Output as octal shorts. Equivalent to @option{-to2}. + +@item -x +@opindex -x +Output as hexadecimal shorts. Equivalent to @option{-tx2}. + +@item --traditional +@opindex --traditional +Recognize the non-option arguments that traditional @command{od} +accepted. The following syntax: + +@smallexample +od --traditional [@var{file}] [[+]@var{offset}[.][b] [[+]@var{label}[.][b]]] +@end smallexample + +@noindent +can be used to specify at most one file and optional arguments +specifying an offset and a pseudo-start address, @var{label}. By +default, @var{offset} is interpreted as an octal number specifying how +many input bytes to skip before formatting and writing. The optional +trailing decimal point forces the interpretation of @var{offset} as a +decimal number. If no decimal is specified and the offset begins with +@samp{0x} or @samp{0X} it is interpreted as a hexadecimal number. If +there is a trailing @samp{b}, the number of bytes skipped will be +@var{offset} multiplied by 512. The @var{label} argument is interpreted +just like @var{offset}, but it specifies an initial pseudo-address. The +pseudo-addresses are displayed in parentheses following any normal +address. + +@end table + + +@node Formatting file contents +@chapter Formatting file contents + +@cindex formatting file contents + +These commands reformat the contents of files. + +@menu +* fmt invocation:: Reformat paragraph text. +* pr invocation:: Paginate or columnate files for printing. +* fold invocation:: Wrap input lines to fit in specified width. +@end menu + + +@node fmt invocation +@section @command{fmt}: Reformat paragraph text + +@pindex fmt +@cindex reformatting paragraph text +@cindex paragraphs, reformatting +@cindex text, reformatting + +@command{fmt} fills and joins lines to produce output lines of (at most) +a given number of characters (75 by default). Synopsis: + +@example +fmt [@var{option}]@dots{} [@var{file}]@dots{} +@end example + +@command{fmt} reads from the specified @var{file} arguments (or standard +input if none are given), and writes to standard output. + +By default, blank lines, spaces between words, and indentation are +preserved in the output; successive input lines with different +indentation are not joined; tabs are expanded on input and introduced on +output. + +@cindex line-breaking +@cindex sentences and line-breaking +@cindex Knuth, Donald E. +@cindex Plass, Michael F. +@command{fmt} prefers breaking lines at the end of a sentence, and tries to +avoid line breaks after the first word of a sentence or before the last +word of a sentence. A @dfn{sentence break} is defined as either the end +of a paragraph or a word ending in any of @samp{.?!}, followed by two +spaces or end of line, ignoring any intervening parentheses or quotes. +Like @TeX{}, @command{fmt} reads entire ``paragraphs'' before choosing line +breaks; the algorithm is a variant of that in ``Breaking Paragraphs Into +Lines'' (Donald E. Knuth and Michael F. Plass, @cite{Software---Practice +and Experience}, 11 (1981), 1119--1184). + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -c +@itemx --crown-margin +@opindex -c +@opindex --crown-margin +@cindex crown margin +@dfn{Crown margin} mode: preserve the indentation of the first two +lines within a paragraph, and align the left margin of each subsequent +line with that of the second line. + +@item -t +@itemx --tagged-paragraph +@opindex -t +@opindex --tagged-paragraph +@cindex tagged paragraphs +@dfn{Tagged paragraph} mode: like crown margin mode, except that if +indentation of the first line of a paragraph is the same as the +indentation of the second, the first line is treated as a one-line +paragraph. + +@item -s +@itemx --split-only +@opindex -s +@opindex --split-only +Split lines only. Do not join short lines to form longer ones. This +prevents sample lines of code, and other such ``formatted'' text from +being unduly combined. + +@item -u +@itemx --uniform-spacing +@opindex -u +@opindex --uniform-spacing +Uniform spacing. Reduce spacing between words to one space, and spacing +between sentences to two spaces. + +@item -@var{width} +@itemx -w @var{width} +@itemx --width=@var{width} +@opindex -@var{width} +@opindex -w +@opindex --width +Fill output lines up to @var{width} characters (default 75). @command{fmt} +initially tries to make lines about 7% shorter than this, to give it +room to balance line lengths. + +@item -p @var{prefix} +@itemx --prefix=@var{prefix} +Only lines beginning with @var{prefix} (possibly preceded by whitespace) +are subject to formatting. The prefix and any preceding whitespace are +stripped for the formatting and then re-attached to each formatted output +line. One use is to format certain kinds of program comments, while +leaving the code unchanged. + +@end table + + +@node pr invocation +@section @command{pr}: Paginate or columnate files for printing + +@pindex pr +@cindex printing, preparing files for +@cindex multicolumn output, generating +@cindex merging files in parallel + +@command{pr} writes each @var{file} (@samp{-} means standard input), or +standard input if none are given, to standard output, paginating and +optionally outputting in multicolumn format; optionally merges all +@var{file}s, printing all in parallel, one per column. Synopsis: + +@example +pr [@var{option}]@dots{} [@var{file}]@dots{} +@end example + +@vindex LC_MESSAGES +By default, a 5-line header is printed at each page: two blank lines; +a line with the date, the filename, and the page count; and two more +blank lines. A footer of five blank lines is also printed. +With the @option{-F} +option, a 3-line header is printed: the leading two blank lines are +omitted; no footer is used. The default @var{page_length} in both cases is 66 +lines. The default number of text lines changes from 56 (without @option{-F}) +to 63 (with @option{-F}). The text line of the header takes the form +@samp{@var{date} @var{string} @var{page}}, with spaces inserted around +@var{string} so that the line takes up the full @var{page_width}. Here, +@var{date} is the date (see the @option{-D} or @option{--date-format} +option for details), @var{string} is the centered header string, and +@var{page} identifies the page number. The @env{LC_MESSAGES} locale +category affects the spelling of @var{page}; in the default C locale, it +is @samp{Page @var{number}} where @var{number} is the decimal page +number. + +Form feeds in the input cause page breaks in the output. Multiple form +feeds produce empty pages. + +Columns are of equal width, separated by an optional string (default +is @samp{space}). For multicolumn output, lines will always be truncated to +@var{page_width} (default 72), unless you use the @option{-J} option. +For single +column output no line truncation occurs by default. Use @option{-W} option to +truncate lines in that case. + +The following changes were made in version 1.22i and apply to later +versions of @command{pr}: +@c FIXME: this whole section here sounds very awkward to me. I +@c made a few small changes, but really it all needs to be redone. - Brian +@c OK, I fixed another sentence or two, but some of it I just don't understand. +@ - Brian +@itemize @bullet + +@item +Some small @var{letter options} (@option{-s}, @option{-w}) have been +redefined for better @acronym{POSIX} compliance. The output of some further +cases has been adapted to other Unix systems. These changes are not +compatible with earlier versions of the program. + +@item +Some @var{new capital letter} options (@option{-J}, @option{-S}, @option{-W}) +have been introduced to turn off unexpected interferences of small letter +options. The @option{-N} option and the second argument @var{last_page} +of @samp{+FIRST_PAGE} offer more flexibility. The detailed handling of +form feeds set in the input files requires the @option{-T} option. + +@item +Capital letter options override small letter ones. + +@item +Some of the option-arguments (compare @option{-s}, @option{-e}, +@option{-i}, @option{-n}) cannot be specified as separate arguments from the +preceding option letter (already stated in the @acronym{POSIX} specification). +@end itemize + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item +@var{first_page}[:@var{last_page}] +@itemx --pages=@var{first_page}[:@var{last_page}] +@c The two following @opindex lines evoke warnings because they contain `:' +@c The `info' spec does not permit that. If we use those lines, we end +@c up with truncated index entries that don't work. +@c @opindex +@var{first_page}[:@var{last_page}] +@c @opindex --pages=@var{first_page}[:@var{last_page}] +@opindex +@var{page_range} +@opindex --pages=@var{page_range} +Begin printing with page @var{first_page} and stop with @var{last_page}. +Missing @samp{:@var{last_page}} implies end of file. While estimating +the number of skipped pages each form feed in the input file results +in a new page. Page counting with and without @samp{+@var{first_page}} +is identical. By default, counting starts with the first page of input +file (not first page printed). Line numbering may be altered by @option{-N} +option. + +@item -@var{column} +@itemx --columns=@var{column} +@opindex -@var{column} +@opindex --columns +@cindex down columns +With each single @var{file}, produce @var{column} columns of output +(default is 1) and print columns down, unless @option{-a} is used. The +column width is automatically decreased as @var{column} increases; unless +you use the @option{-W/-w} option to increase @var{page_width} as well. +This option might well cause some lines to be truncated. The number of +lines in the columns on each page are balanced. The options @option{-e} +and @option{-i} are on for multiple text-column output. Together with +@option{-J} option column alignment and line truncation is turned off. +Lines of full length are joined in a free field format and @option{-S} +option may set field separators. @option{-@var{column}} may not be used +with @option{-m} option. + +@item -a +@itemx --across +@opindex -a +@opindex --across +@cindex across columns +With each single @var{file}, print columns across rather than down. The +@option{-@var{column}} option must be given with @var{column} greater than one. +If a line is too long to fit in a column, it is truncated. + +@item -c +@itemx --show-control-chars +@opindex -c +@opindex --show-control-chars +Print control characters using hat notation (e.g., @samp{^G}); print +other nonprinting characters in octal backslash notation. By default, +nonprinting characters are not changed. + +@item -d +@itemx --double-space +@opindex -d +@opindex --double-space +@cindex double spacing +Double space the output. + +@item -D @var{format} +@itemx --date-format=@var{format} +@cindex time formats +@cindex formatting times +Format header dates using @var{format}, using the same conventions as +for the the command @samp{date +@var{format}}; @xref{date invocation}. +Except for directives, which start with +@samp{%}, characters in @var{format} are printed unchanged. You can use +this option to specify an arbitrary string in place of the header date, +e.g., @option{--date-format="Monday morning"}. + +@vindex POSIXLY_CORRECT +@vindex LC_TIME +If the @env{POSIXLY_CORRECT} environment variable is not set, the date +format defaults to @samp{%Y-%m-%d %H:%M} (for example, @samp{2001-12-04 +23:59}); otherwise, the format depends on the @env{LC_TIME} locale +category, with the default being @samp{%b %e %H:%M %Y} (for example, +@samp{Dec@ @ 4 23:59 2001}. + +@item -e[@var{in-tabchar}[@var{in-tabwidth}]] +@itemx --expand-tabs[=@var{in-tabchar}[@var{in-tabwidth}]] +@opindex -e +@opindex --expand-tabs +@cindex input tabs +Expand @var{tab}s to spaces on input. Optional argument @var{in-tabchar} is +the input tab character (default is the TAB character). Second optional +argument @var{in-tabwidth} is the input tab character's width (default +is 8). + +@item -f +@itemx -F +@itemx --form-feed +@opindex -F +@opindex -f +@opindex --form-feed +Use a form feed instead of newlines to separate output pages. The default +page length of 66 lines is not altered. But the number of lines of text +per page changes from default 56 to 63 lines. + +@item -h @var{HEADER} +@itemx --header=@var{HEADER} +@opindex -h +@opindex --header +Replace the filename in the header with the centered string @var{header}. +When using the shell, @var{header} should be quoted and should be +separated from @option{-h} by a space. + +@item -i[@var{out-tabchar}[@var{out-tabwidth}]] +@itemx --output-tabs[=@var{out-tabchar}[@var{out-tabwidth}]] +@opindex -i +@opindex --output-tabs +@cindex output tabs +Replace spaces with @var{tab}s on output. Optional argument @var{out-tabchar} +is the output tab character (default is the TAB character). Second optional +argument @var{out-tabwidth} is the output tab character's width (default +is 8). + +@item -J +@itemx --join-lines +@opindex -J +@opindex --join-lines +Merge lines of full length. Used together with the column options +@option{-@var{column}}, @option{-a -@var{column}} or @option{-m}. Turns off +@option{-W/-w} line truncation; +no column alignment used; may be used with +@option{--sep-string[=@var{string}]}. @option{-J} has been introduced +(together with @option{-W} and @option{--sep-string}) +to disentangle the old (@acronym{POSIX}-compliant) options @option{-w} and +@option{-s} along with the three column options. + + +@item -l @var{page_length} +@itemx --length=@var{page_length} +@opindex -l +@opindex --length +Set the page length to @var{page_length} (default 66) lines, including +the lines of the header [and the footer]. If @var{page_length} is less +than or equal to 10 (or <= 3 with @option{-F}), the header and footer are +omitted, and all form feeds set in input files are eliminated, as if +the @option{-T} option had been given. + +@item -m +@itemx --merge +@opindex -m +@opindex --merge +Merge and print all @var{file}s in parallel, one in each column. If a +line is too long to fit in a column, it is truncated, unless the @option{-J} +option is used. @option{--sep-string[=@var{string}]} may be used. +Empty pages in +some @var{file}s (form feeds set) produce empty columns, still marked +by @var{string}. The result is a continuous line numbering and column +marking throughout the whole merged file. Completely empty merged pages +show no separators or line numbers. The default header becomes +@samp{@var{date} @var{page}} with spaces inserted in the middle; this +may be used with the @option{-h} or @option{--header} option to fill up +the middle blank part. + +@item -n[@var{number-separator}[@var{digits}]] +@itemx --number-lines[=@var{number-separator}[@var{digits}]] +@opindex -n +@opindex --number-lines +Provide @var{digits} digit line numbering (default for @var{digits} is +5). With multicolumn output the number occupies the first @var{digits} +column positions of each text column or only each line of @option{-m} +output. With single column output the number precedes each line just as +@option{-m} does. Default counting of the line numbers starts with the +first line of the input file (not the first line printed, compare the +@option{--page} option and @option{-N} option). +Optional argument @var{number-separator} is the character appended to +the line number to separate it from the text followed. The default +separator is the TAB character. In a strict sense a TAB is always +printed with single column output only. The @var{TAB}-width varies +with the @var{TAB}-position, e.g. with the left @var{margin} specified +by @option{-o} option. With multicolumn output priority is given to +@samp{equal width of output columns} (a @acronym{POSIX} specification). +The @var{TAB}-width is fixed to the value of the first column and does +not change with different values of left @var{margin}. That means a +fixed number of spaces is always printed in the place of the +@var{number-separator tab}. The tabification depends upon the output +position. + +@item -N @var{line_number} +@itemx --first-line-number=@var{line_number} +@opindex -N +@opindex --first-line-number +Start line counting with the number @var{line_number} at first line of +first page printed (in most cases not the first line of the input file). + +@item -o @var{margin} +@itemx --indent=@var{margin} +@opindex -o +@opindex --indent +@cindex indenting lines +@cindex left margin +Indent each line with a margin @var{margin} spaces wide (default is zero). +The total page width is the size of the margin plus the @var{page_width} +set with the @option{-W/-w} option. A limited overflow may occur with +numbered single column output (compare @option{-n} option). + +@item -r +@itemx --no-file-warnings +@opindex -r +@opindex --no-file-warnings +Do not print a warning message when an argument @var{file} cannot be +opened. (The exit status will still be nonzero, however.) + +@item -s[@var{char}] +@itemx --separator[=@var{char}] +@opindex -s +@opindex --separator +Separate columns by a single character @var{char}. The default for +@var{char} is the TAB character without @option{-w} and @samp{no +character} with @option{-w}. Without @option{-s} the default separator +@samp{space} is set. @option{-s[char]} turns off line truncation of all +three column options (@option{-COLUMN}|@option{-a -COLUMN}|@option{-m}) unless +@option{-w} is set. This is a @acronym{POSIX}-compliant formulation. + + +@item -S @var{string} +@itemx --sep-string[=@var{string}] +@opindex -S +@opindex --sep-string +Use @var{string} to separate output columns. The @option{-S} option doesn't +affect the @option{-W/-w} option, unlike the @option{-s} option which does. It +does not affect line truncation or column alignment. +Without @option{-S}, and with @option{-J}, @command{pr} uses the default output +separator, TAB. +Without @option{-S} or @option{-J}, @command{pr} uses a @samp{space} +(same as @option{-S"@w{ }"}). With @option{-S@var{string}}, +@var{string} must be nonempty; @option{--sep-string} with no +@var{string} is equivalent to @option{--sep-string=""}. + +On older systems, @command{pr} instead supports an obsolete option +@option{-S[@var{string}]}, where @var{string} is optional. @acronym{POSIX} +1003.1-2001 (@pxref{Standards conformance}) does not allow this older +usage. To specify an empty @var{string} portably, use +@option{--sep-string}. + +@item -t +@itemx --omit-header +@opindex -t +@opindex --omit-header +Do not print the usual header [and footer] on each page, and do not fill +out the bottom of pages (with blank lines or a form feed). No page +structure is produced, but form feeds set in the input files are retained. +The predefined pagination is not changed. @option{-t} or @option{-T} may be +useful together with other options; e.g.: @option{-t -e4}, expand TAB characters +in the input file to 4 spaces but don't make any other changes. Use of +@option{-t} overrides @option{-h}. + +@item -T +@itemx --omit-pagination +@opindex -T +@opindex --omit-pagination +Do not print header [and footer]. In addition eliminate all form feeds +set in the input files. + +@item -v +@itemx --show-nonprinting +@opindex -v +@opindex --show-nonprinting +Print nonprinting characters in octal backslash notation. + +@item -w @var{page_width} +@itemx --width=@var{page_width} +@opindex -w +@opindex --width +Set page width to @var{page_width} characters for multiple text-column +output only (default for @var{page_width} is 72). @option{-s[CHAR]} turns +off the default page width and any line truncation and column alignment. +Lines of full length are merged, regardless of the column options +set. No @var{page_width} setting is possible with single column output. +A @acronym{POSIX}-compliant formulation. + +@item -W @var{page_width} +@itemx --page_width=@var{page_width} +@opindex -W +@opindex --page_width +Set the page width to @var{page_width} characters. That's valid with and +without a column option. Text lines are truncated, unless @option{-J} +is used. Together with one of the three column options +(@option{-@var{column}}, @option{-a -@var{column}} or @option{-m}) column +alignment is always used. The separator options @option{-S} or @option{-s} +don't affect the @option{-W} option. Default is 72 characters. Without +@option{-W @var{page_width}} and without any of the column options NO line +truncation is used (defined to keep downward compatibility and to meet +most frequent tasks). That's equivalent to @option{-W 72 -J}. The header +line is never truncated. + +@end table + + +@node fold invocation +@section @command{fold}: Wrap input lines to fit in specified width + +@pindex fold +@cindex wrapping long input lines +@cindex folding long input lines + +@command{fold} writes each @var{file} (@option{-} means standard input), or +standard input if none are given, to standard output, breaking long +lines. Synopsis: + +@example +fold [@var{option}]@dots{} [@var{file}]@dots{} +@end example + +By default, @command{fold} breaks lines wider than 80 columns. The output +is split into as many lines as necessary. + +@cindex screen columns +@command{fold} counts screen columns by default; thus, a tab may count more +than one column, backspace decreases the column count, and carriage +return sets the column to zero. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -b +@itemx --bytes +@opindex -b +@opindex --bytes +Count bytes rather than columns, so that tabs, backspaces, and carriage +returns are each counted as taking up one column, just like other +characters. + +@item -s +@itemx --spaces +@opindex -s +@opindex --spaces +Break at word boundaries: the line is broken after the last blank before +the maximum line length. If the line contains no such blanks, the line +is broken at the maximum line length as usual. + +@item -w @var{width} +@itemx --width=@var{width} +@opindex -w +@opindex --width +Use a maximum line length of @var{width} columns instead of 80. + +On older systems, @command{fold} supports an obsolete option +@option{-@var{width}}. @acronym{POSIX} 1003.1-2001 (@pxref{Standards +conformance}) does not allow this; use @option{-w @var{width}} +instead. + +@end table + + +@node Output of parts of files +@chapter Output of parts of files + +@cindex output of parts of files +@cindex parts of files, output of + +These commands output pieces of the input. + +@menu +* head invocation:: Output the first part of files. +* tail invocation:: Output the last part of files. +* split invocation:: Split a file into fixed-size pieces. +* csplit invocation:: Split a file into context-determined pieces. +@end menu + +@node head invocation +@section @command{head}: Output the first part of files + +@pindex head +@cindex initial part of files, outputting +@cindex first part of files, outputting + +@command{head} prints the first part (10 lines by default) of each +@var{file}; it reads from standard input if no files are given or +when given a @var{file} of @option{-}. Synopsis: + +@example +head [@var{option}]@dots{} [@var{file}]@dots{} +@end example + +If more than one @var{file} is specified, @command{head} prints a +one-line header consisting of +@example +==> @var{file name} <== +@end example +@noindent +before the output for each @var{file}. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -c @var{bytes} +@itemx --bytes=@var{bytes} +@opindex -c +@opindex --bytes +Print the first @var{bytes} bytes, instead of initial lines. Appending +@samp{b} multiplies @var{bytes} by 512, @samp{k} by 1024, and @samp{m} +by 1048576. + +@itemx -n @var{n} +@itemx --lines=@var{n} +@opindex -n +@opindex --lines +Output the first @var{n} lines. + +@item -q +@itemx --quiet +@itemx --silent +@opindex -q +@opindex --quiet +@opindex --silent +Never print file name headers. + +@item -v +@itemx --verbose +@opindex -v +@opindex --verbose +Always print file name headers. + +@end table + +On older systems, @command{head} supports an obsolete option +@option{-@var{count}@var{options}}, which is recognized only if it is +specified first. @var{count} is a decimal number optionally followed +by a size letter (@samp{b}, @samp{k}, @samp{m}) as in @code{-c}, or +@samp{l} to mean count by lines, or other option letters (@samp{cqv}). +@acronym{POSIX} 1003.1-2001 (@pxref{Standards conformance}) does not allow +this; use @option{-c @var{count}} or @option{-n @var{count}} instead. + +@node tail invocation +@section @command{tail}: Output the last part of files + +@pindex tail +@cindex last part of files, outputting + +@command{tail} prints the last part (10 lines by default) of each +@var{file}; it reads from standard input if no files are given or +when given a @var{file} of @samp{-}. Synopsis: + +@example +tail [@var{option}]@dots{} [@var{file}]@dots{} +@end example + +If more than one @var{file} is specified, @command{tail} prints a +one-line header consisting of +@example +==> @var{file name} <== +@end example +@noindent +before the output for each @var{file}. + +@cindex BSD @command{tail} +@sc{gnu} @command{tail} can output any amount of data (some other versions of +@command{tail} cannot). It also has no @option{-r} option (print in +reverse), since reversing a file is really a different job from printing +the end of a file; BSD @command{tail} (which is the one with @code{-r}) can +only reverse files that are at most as large as its buffer, which is +typically 32 KiB. A more reliable and versatile way to reverse files is +the @sc{gnu} @command{tac} command. + +If any option-argument is a number @var{n} starting with a @samp{+}, +@command{tail} begins printing with the @var{n}th item from the start of +each file, instead of from the end. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -c @var{bytes} +@itemx --bytes=@var{bytes} +@opindex -c +@opindex --bytes +Output the last @var{bytes} bytes, instead of final lines. Appending +@samp{b} multiplies @var{bytes} by 512, @samp{k} by 1024, and @samp{m} +by 1048576. + +@item -f +@itemx --follow[=@var{how}] +@opindex -f +@opindex --follow +@cindex growing files +@vindex name @r{follow option} +@vindex descriptor @r{follow option} +Loop forever trying to read more characters at the end of the file, +presumably because the file is growing. This option is ignored when +reading from a pipe. +If more than one file is given, @command{tail} prints a header whenever it +gets output from a different file, to indicate which file that output is +from. + +There are two ways to specify how you'd like to track files with this option, +but that difference is noticeable only when a followed file is removed or +renamed. +If you'd like to continue to track the end of a growing file even after +it has been unlinked, use @option{--follow=descriptor}. This is the default +behavior, but it is not useful if you're tracking a log file that may be +rotated (removed or renamed, then reopened). In that case, use +@option{--follow=name} to track the named file by reopening it periodically +to see if it has been removed and recreated by some other program. + +No matter which method you use, if the tracked file is determined to have +shrunk, @command{tail} prints a message saying the file has been truncated +and resumes tracking the end of the file from the newly-determined endpoint. + +When a file is removed, @command{tail}'s behavior depends on whether it is +following the name or the descriptor. When following by name, tail can +detect that a file has been removed and gives a message to that effect, +and if @option{--retry} has been specified it will continue checking +periodically to see if the file reappears. +When following a descriptor, tail does not detect that the file has +been unlinked or renamed and issues no message; even though the file +may no longer be accessible via its original name, it may still be +growing. + +The option values @samp{descriptor} and @samp{name} may be specified only +with the long form of the option, not with @option{-f}. + +@item -F +@opindex -F +This option is the same as @option{--follow=name --retry}. That is, tail +will attempt to reopen a file when it is removed. Should this fail, tail +will keep trying until it becomes accessible again. + +@itemx --retry +@opindex --retry +This option is meaningful only when following by name. +Without this option, when tail encounters a file that doesn't +exist or is otherwise inaccessible, it reports that fact and +never checks it again. + +@itemx --sleep-interval=@var{number} +@opindex --sleep-interval +Change the number of seconds to wait between iterations (the default is 1.0). +During one iteration, every specified file is checked to see if it has +Historical implementations of @command{tail} have required that +@var{number} be an integer. However, GNU @command{tail} accepts +an arbitrary floating point number. + +@itemx --pid=@var{pid} +@opindex --pid +When following by name or by descriptor, you may specify the process ID, +@var{pid}, of the sole writer of all @var{file} arguments. Then, shortly +after that process terminates, tail will also terminate. This will +work properly only if the writer and the tailing process are running on +the same machine. For example, to save the output of a build in a file +and to watch the file grow, if you invoke @command{make} and @command{tail} +like this then the tail process will stop when your build completes. +Without this option, you would have had to kill the @code{tail -f} +process yourself. +@example +$ make >& makerr & tail --pid=$! -f makerr +@end example +If you specify a @var{pid} that is not in use or that does not correspond +to the process that is writing to the tailed files, then @command{tail} +may terminate long before any @var{file}s stop growing or it may not +terminate until long after the real writer has terminated. +Note that @option{--pid} cannot be supported on some systems; @command{tail} +will print a warning if this is the case. + +@itemx --max-unchanged-stats=@var{n} +@opindex --max-unchanged-stats +When tailing a file by name, if there have been @var{n} (default +n=@value{DEFAULT_MAX_N_UNCHANGED_STATS_BETWEEN_OPENS}) consecutive +iterations for which the size has remained the same, then +@code{open}/@code{fstat} the file to determine if that file name is +still associated with the same device/inode-number pair as before. +When following a log file that is rotated, this is approximately the +number of seconds between when tail prints the last pre-rotation lines +and when it prints the lines that have accumulated in the new log file. +This option is meaningful only when following by name. + +@itemx -n @var{n} +@itemx --lines=@var{n} +@opindex -n +@opindex --lines +Output the last @var{n} lines. + +@item -q +@itemx --quiet +@itemx --silent +@opindex -q +@opindex --quiet +@opindex --silent +Never print file name headers. + +@item -v +@itemx --verbose +@opindex -v +@opindex --verbose +Always print file name headers. + +@end table + +On older systems, @command{tail} supports an obsolete option +@option{-@var{count}@var{options}}, which is recognized only if it is +specified first. @var{count} is a decimal number optionally followed +by a size letter (@samp{b}, @samp{k}, @samp{m}) as in @code{-c}, or +@samp{l} to mean count by lines, or other option letters +(@samp{cfqv}). Some older @command{tail} implementations also support +an obsolete option @option{+@var{count}} with the same meaning as +@option{-+@var{count}}. @acronym{POSIX} 1003.1-2001 (@pxref{Standards +conformance}) does not allow these options; use @option{-c +@var{count}} or @option{-n @var{count}} instead. + +@node split invocation +@section @command{split}: Split a file into fixed-size pieces + +@pindex split +@cindex splitting a file into pieces +@cindex pieces, splitting a file into + +@command{split} creates output files containing consecutive sections of +@var{input} (standard input if none is given or @var{input} is +@samp{-}). Synopsis: + +@example +split [@var{option}] [@var{input} [@var{prefix}]] +@end example + +By default, @command{split} puts 1000 lines of @var{input} (or whatever is +left over for the last section), into each output file. + +@cindex output file name prefix +The output files' names consist of @var{prefix} (@samp{x} by default) +followed by a group of letters (@samp{aa}, @samp{ab}, @dots{} by default), +such that concatenating the output files in sorted order by file name produces +the original input file. If the output file names are exhausted, +@command{split} reports an error without deleting the output files +that it did create. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -a @var{length} +@itemx --suffix-length=@var{length} +@opindex -a +@opindex --suffix-length +Use suffixes of length @var{length}. The default @var{length} is 2. + +@item -l @var{lines} +@itemx --lines=@var{lines} +@opindex -l +@opindex --lines +Put @var{lines} lines of @var{input} into each output file. + +On older systems, @command{split} supports an obsolete option +@option{-@var{lines}}. @acronym{POSIX} 1003.1-2001 (@pxref{Standards +conformance}) does not allow this; use @option{-l @var{lines}} +instead. + +@item -b @var{bytes} +@itemx --bytes=@var{bytes} +@opindex -b +@opindex --bytes +Put the first @var{bytes} bytes of @var{input} into each output file. +Appending @samp{b} multiplies @var{bytes} by 512, @samp{k} by 1024, and +@samp{m} by 1048576. + +@item -C @var{bytes} +@itemx --line-bytes=@var{bytes} +@opindex -C +@opindex --line-bytes +Put into each output file as many complete lines of @var{input} as +possible without exceeding @var{bytes} bytes. For lines longer than +@var{bytes} bytes, put @var{bytes} bytes into each output file until +less than @var{bytes} bytes of the line are left, then continue +normally. @var{bytes} has the same format as for the @option{--bytes} +option. + +@itemx --verbose +@opindex --verbose +Write a diagnostic to standard error just before each output file is opened. + +@end table + + +@node csplit invocation +@section @command{csplit}: Split a file into context-determined pieces + +@pindex csplit +@cindex context splitting +@cindex splitting a file into pieces by context + +@command{csplit} creates zero or more output files containing sections of +@var{input} (standard input if @var{input} is @samp{-}). Synopsis: + +@example +csplit [@var{option}]@dots{} @var{input} @var{pattern}@dots{} +@end example + +The contents of the output files are determined by the @var{pattern} +arguments, as detailed below. An error occurs if a @var{pattern} +argument refers to a nonexistent line of the input file (e.g., if no +remaining line matches a given regular expression). After every +@var{pattern} has been matched, any remaining input is copied into one +last output file. + +By default, @command{csplit} prints the number of bytes written to each +output file after it has been created. + +The types of pattern arguments are: + +@table @samp + +@item @var{n} +Create an output file containing the input up to but not including line +@var{n} (a positive integer). If followed by a repeat count, also +create an output file containing the next @var{line} lines of the input +file once for each repeat. + +@item /@var{regexp}/[@var{offset}] +Create an output file containing the current line up to (but not +including) the next line of the input file that contains a match for +@var{regexp}. The optional @var{offset} is a @samp{+} or @samp{-} +followed by a positive integer. If it is given, the input up to the +matching line plus or minus @var{offset} is put into the output file, +and the line after that begins the next section of input. + +@item %@var{regexp}%[@var{offset}] +Like the previous type, except that it does not create an output +file, so that section of the input file is effectively ignored. + +@item @{@var{repeat-count}@} +Repeat the previous pattern @var{repeat-count} additional +times. @var{repeat-count} can either be a positive integer or an +asterisk, meaning repeat as many times as necessary until the input is +exhausted. + +@end table + +The output files' names consist of a prefix (@samp{xx} by default) +followed by a suffix. By default, the suffix is an ascending sequence +of two-digit decimal numbers from @samp{00} to @samp{99}. In any case, +concatenating the output files in sorted order by filename produces the +original input file. + +By default, if @command{csplit} encounters an error or receives a hangup, +interrupt, quit, or terminate signal, it removes any output files +that it has created so far before it exits. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -f @var{prefix} +@itemx --prefix=@var{prefix} +@opindex -f +@opindex --prefix +@cindex output file name prefix +Use @var{prefix} as the output file name prefix. + +@item -b @var{suffix} +@itemx --suffix=@var{suffix} +@opindex -b +@opindex --suffix +@cindex output file name suffix +Use @var{suffix} as the output file name suffix. When this option is +specified, the suffix string must include exactly one +@code{printf(3)}-style conversion specification, possibly including +format specification flags, a field width, a precision specifications, +or all of these kinds of modifiers. The format letter must convert a +binary integer argument to readable form; thus, only @samp{d}, @samp{i}, +@samp{u}, @samp{o}, @samp{x}, and @samp{X} conversions are allowed. The +entire @var{suffix} is given (with the current output file number) to +@code{sprintf(3)} to form the file name suffixes for each of the +individual output files in turn. If this option is used, the +@option{--digits} option is ignored. + +@item -n @var{digits} +@itemx --digits=@var{digits} +@opindex -n +@opindex --digits +Use output file names containing numbers that are @var{digits} digits +long instead of the default 2. + +@item -k +@itemx --keep-files +@opindex -k +@opindex --keep-files +Do not remove output files when errors are encountered. + +@item -z +@itemx --elide-empty-files +@opindex -z +@opindex --elide-empty-files +Suppress the generation of zero-length output files. (In cases where +the section delimiters of the input file are supposed to mark the first +lines of each of the sections, the first output file will generally be a +zero-length file unless you use this option.) The output file sequence +numbers always run consecutively starting from 0, even when this option +is specified. + +@item -s +@itemx -q +@itemx --silent +@itemx --quiet +@opindex -s +@opindex -q +@opindex --silent +@opindex --quiet +Do not print counts of output file sizes. + +@end table + + +@node Summarizing files +@chapter Summarizing files + +@cindex summarizing files + +These commands generate just a few numbers representing entire +contents of files. + +@menu +* wc invocation:: Print byte, word, and line counts. +* sum invocation:: Print checksum and block counts. +* cksum invocation:: Print CRC checksum and byte counts. +* md5sum invocation:: Print or check message-digests. +@end menu + + +@node wc invocation +@section @command{wc}: Print byte, word, and line counts + +@pindex wc +@cindex byte count +@cindex character count +@cindex word count +@cindex line count + +@command{wc} counts the number of bytes, characters, whitespace-separated +words, and newlines in each given @var{file}, or standard input if none +are given or for a @var{file} of @samp{-}. Synopsis: + +@example +wc [@var{option}]@dots{} [@var{file}]@dots{} +@end example + +@cindex total counts +@vindex POSIXLY_CORRECT +@command{wc} prints one line of counts for each file, and if the file was +given as an argument, it prints the file name following the counts. If +more than one @var{file} is given, @command{wc} prints a final line +containing the cumulative counts, with the file name @file{total}. The +counts are printed in this order: newlines, words, characters, bytes. +By default, each count is output right-justified in a 7-byte field with +one space between fields so that the numbers and file names line up nicely +in columns. However, @acronym{POSIX} requires that there be exactly one space +separating columns. You can make @command{wc} use the @acronym{POSIX}-mandated +output format by setting the @env{POSIXLY_CORRECT} environment variable. + +By default, @command{wc} prints three counts: the newline, words, and byte +counts. Options can specify that only certain counts be printed. +Options do not undo others previously given, so + +@example +wc --bytes --words +@end example + +@noindent +prints both the byte counts and the word counts. + +With the @code{--max-line-length} option, @command{wc} prints the length +of the longest line per file, and if there is more than one file it +prints the maximum (not the sum) of those lengths. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -c +@itemx --bytes +@opindex -c +@opindex --bytes +Print only the byte counts. + +@item -m +@itemx --chars +@opindex -m +@opindex --chars +Print only the character counts. + +@item -w +@itemx --words +@opindex -w +@opindex --words +Print only the word counts. + +@item -l +@itemx --lines +@opindex -l +@opindex --lines +Print only the newline counts. + +@item -L +@itemx --max-line-length +@opindex -L +@opindex --max-line-length +Print only the maximum line lengths. + +@end table + + +@node sum invocation +@section @command{sum}: Print checksum and block counts + +@pindex sum +@cindex 16-bit checksum +@cindex checksum, 16-bit + +@command{sum} computes a 16-bit checksum for each given @var{file}, or +standard input if none are given or for a @var{file} of @samp{-}. Synopsis: + +@example +sum [@var{option}]@dots{} [@var{file}]@dots{} +@end example + +@command{sum} prints the checksum for each @var{file} followed by the +number of blocks in the file (rounded up). If more than one @var{file} +is given, file names are also printed (by default). (With the +@option{--sysv} option, corresponding file names are printed when there is +at least one file argument.) + +By default, @sc{gnu} @command{sum} computes checksums using an algorithm +compatible with BSD @command{sum} and prints file sizes in units of +1024-byte blocks. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -r +@opindex -r +@cindex BSD @command{sum} +Use the default (BSD compatible) algorithm. This option is included for +compatibility with the System V @command{sum}. Unless @option{-s} was also +given, it has no effect. + +@item -s +@itemx --sysv +@opindex -s +@opindex --sysv +@cindex System V @command{sum} +Compute checksums using an algorithm compatible with System V +@command{sum}'s default, and print file sizes in units of 512-byte blocks. + +@end table + +@command{sum} is provided for compatibility; the @command{cksum} program (see +next section) is preferable in new applications. + + +@node cksum invocation +@section @command{cksum}: Print CRC checksum and byte counts + +@pindex cksum +@cindex cyclic redundancy check +@cindex CRC checksum + +@command{cksum} computes a cyclic redundancy check (CRC) checksum for each +given @var{file}, or standard input if none are given or for a +@var{file} of @samp{-}. Synopsis: + +@example +cksum [@var{option}]@dots{} [@var{file}]@dots{} +@end example + +@command{cksum} prints the CRC checksum for each file along with the number +of bytes in the file, and the filename unless no arguments were given. + +@command{cksum} is typically used to ensure that files +transferred by unreliable means (e.g., netnews) have not been corrupted, +by comparing the @command{cksum} output for the received files with the +@command{cksum} output for the original files (typically given in the +distribution). + +The CRC algorithm is specified by the @acronym{POSIX} standard. It is not +compatible with the BSD or System V @command{sum} algorithms (see the +previous section); it is more robust. + +The only options are @option{--help} and @option{--version}. @xref{Common +options}. + + +@node md5sum invocation +@section @command{md5sum}: Print or check message-digests + +@pindex md5sum +@cindex 128-bit checksum +@cindex checksum, 128-bit +@cindex fingerprint, 128-bit +@cindex message-digest, 128-bit + +@command{md5sum} computes a 128-bit checksum (or @dfn{fingerprint} or +@dfn{message-digest}) for each specified @var{file}. +If a @var{file} is specified as @samp{-} or if no files are given +@command{md5sum} computes the checksum for the standard input. +@command{md5sum} can also determine whether a file and checksum are +consistent. Synopses: + +@example +md5sum [@var{option}]@dots{} [@var{file}]@dots{} +md5sum [@var{option}]@dots{} --check [@var{file}] +@end example + +For each @var{file}, @samp{md5sum} outputs the MD5 checksum, a flag +indicating a binary or text input file, and the filename. +If @var{file} is omitted or specified as @samp{-}, standard input is read. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -b +@itemx --binary +@opindex -b +@opindex --binary +@cindex binary input files +Treat all input files as binary. This option has no effect on Unix +systems, since they don't distinguish between binary and text files. +This option is useful on systems that have different internal and +external character representations. On MS-DOS and MS-Windows, this is +the default. + +@item -c +@itemx --check +Read filenames and checksum information from the single @var{file} +(or from stdin if no @var{file} was specified) and report whether +each named file and the corresponding checksum data are consistent. +The input to this mode of @command{md5sum} is usually the output of +a prior, checksum-generating run of @samp{md5sum}. +Each valid line of input consists of an MD5 checksum, a binary/text +flag, and then a filename. +Binary files are marked with @samp{*}, text with @samp{ }. +For each such line, @command{md5sum} reads the named file and computes its +MD5 checksum. Then, if the computed message digest does not match the +one on the line with the filename, the file is noted as having +failed the test. Otherwise, the file passes the test. +By default, for each valid line, one line is written to standard +output indicating whether the named file passed the test. +After all checks have been performed, if there were any failures, +a warning is issued to standard error. +Use the @option{--status} option to inhibit that output. +If any listed file cannot be opened or read, if any valid line has +an MD5 checksum inconsistent with the associated file, or if no valid +line is found, @command{md5sum} exits with nonzero status. Otherwise, +it exits successfully. + +@itemx --status +@opindex --status +@cindex verifying MD5 checksums +This option is useful only when verifying checksums. +When verifying checksums, don't generate the default one-line-per-file +diagnostic and don't output the warning summarizing any failures. +Failures to open or read a file still evoke individual diagnostics to +standard error. +If all listed files are readable and are consistent with the associated +MD5 checksums, exit successfully. Otherwise exit with a status code +indicating there was a failure. + +@item -t +@itemx --text +@opindex -t +@opindex --text +@cindex text input files +Treat all input files as text files. This is the reverse of +@option{--binary}. + +@item -w +@itemx --warn +@opindex -w +@opindex --warn +@cindex verifying MD5 checksums +When verifying checksums, warn about improperly formatted MD5 checksum lines. +This option is useful only if all but a few lines in the checked input +are valid. + +@end table + + +@node Operating on sorted files +@chapter Operating on sorted files + +@cindex operating on sorted files +@cindex sorted files, operations on + +These commands work with (or produce) sorted files. + +@menu +* sort invocation:: Sort text files. +* uniq invocation:: Uniquify files. +* comm invocation:: Compare two sorted files line by line. +* ptx invocation:: Produce a permuted index of file contents. +* tsort invocation:: Topological sort. +* tsort background:: Where tsort came from. +@end menu + + +@node sort invocation +@section @command{sort}: Sort text files + +@pindex sort +@cindex sorting files + +@command{sort} sorts, merges, or compares all the lines from the given +files, or standard input if none are given or for a @var{file} of +@samp{-}. By default, @command{sort} writes the results to standard +output. Synopsis: + +@example +sort [@var{option}]@dots{} [@var{file}]@dots{} +@end example + +@command{sort} has three modes of operation: sort (the default), merge, +and check for sortedness. The following options change the operation +mode: + +@table @samp + +@item -c +@itemx --check +@opindex -c +@opindex --check +@cindex checking for sortedness +Check whether the given files are already sorted: if they are not all +sorted, print an error message and exit with a status of 1. +Otherwise, exit successfully. + +@item -m +@itemx --merge +@opindex -m +@opindex --merge +@cindex merging sorted files +Merge the given files by sorting them as a group. Each input file must +always be individually sorted. It always works to sort instead of +merge; merging is provided because it is faster, in the case where it +works. + +@end table + +@vindex LC_ALL +@vindex LC_COLLATE +A pair of lines is compared as follows: if any key fields have +been specified, @command{sort} compares each pair of fields, in the +order specified on the command line, according to the associated +ordering options, until a difference is found or no fields are left. +Unless otherwise specified, all comparisons use the character collating +sequence specified by the @env{LC_COLLATE} locale. @footnote{If you +use a non-@acronym{POSIX} locale (e.g., by setting @env{LC_ALL} +to @samp{en_US}), then @command{sort} may produce output that is sorted +differently than you're accustomed to. In that case, set the @env{LC_ALL} +environment variable to @samp{C}. Note that setting only @env{LC_COLLATE} +has two problems. First, it is ineffective if @env{LC_ALL} is also set. +Second, it has undefined behavior if @env{LC_CTYPE} (or @env{LANG}, if +@env{LC_CTYPE} is unset) is set to an incompatible value. For example, +you get undefined behavior if @env{LC_CTYPE} is @code{ja_JP.PCK} but +@env{LC_COLLATE} is @code{en_US.UTF-8}. } + +If any of the global options @samp{bdfgiMnr} are given but no key fields +are specified, @command{sort} compares the entire lines according to the +global options. + +Finally, as a last resort when all keys compare equal (or if no ordering +options were specified at all), @command{sort} compares the entire lines. +The last resort comparison honors the @option{--reverse} (@option{-r}) +global option. The @option{--stable} (@option{-s}) option disables this +last-resort comparison so that lines in which all fields compare equal +are left in their original relative order. If no fields or global +options are specified, @option{--stable} (@option{-s}) has no effect. + +@sc{gnu} @command{sort} (as specified for all @sc{gnu} utilities) has no +limit on input line length or restrictions on bytes allowed within lines. +In addition, if the final byte of an input file is not a newline, @sc{gnu} +@command{sort} silently supplies one. A line's trailing newline is not +part of the line for comparison purposes. + +Upon any error, @command{sort} exits with a status of @samp{2}. + +@vindex TMPDIR +If the environment variable @env{TMPDIR} is set, @command{sort} uses its +value as the directory for temporary files instead of @file{/tmp}. The +@option{--temporary-directory} (@option{-T}) option in turn overrides +the environment variable. + + +The following options affect the ordering of output lines. They may be +specified globally or as part of a specific key field. If no key +fields are specified, global options apply to comparison of entire +lines; otherwise the global options are inherited by key fields that do +not specify any special options of their own. In pre-@acronym{POSIX} +versions of @command{sort}, global options affect only later key fields, +so portable shell scripts should specify global options first. + +@table @samp + +@item -b +@itemx --ignore-leading-blanks +@opindex -b +@opindex --ignore-leading-blanks +@cindex blanks, ignoring leading +@vindex LC_CTYPE +Ignore leading blanks when finding sort keys in each line. +The @env{LC_CTYPE} locale determines character types. + +@item -d +@itemx --dictionary-order +@opindex -d +@opindex --dictionary-order +@cindex dictionary order +@cindex phone directory order +@cindex telephone directory order +@vindex LC_CTYPE +Sort in @dfn{phone directory} order: ignore all characters except +letters, digits and blanks when sorting. +The @env{LC_CTYPE} locale determines character types. + +@item -f +@itemx --ignore-case +@opindex -f +@opindex --ignore-case +@cindex ignoring case +@cindex case folding +@vindex LC_CTYPE +Fold lowercase characters into the equivalent uppercase characters when +comparing so that, for example, @samp{b} and @samp{B} sort as equal. +The @env{LC_CTYPE} locale determines character types. + +@item -g +@itemx --general-numeric-sort +@opindex -g +@opindex --general-numeric-sort +@cindex general numeric sort +@vindex LC_NUMERIC +Sort numerically, using the standard C function @code{strtod} to convert +a prefix of each line to a double-precision floating point number. +This allows floating point numbers to be specified in scientific notation, +like @code{1.0e-34} and @code{10e100}. +The @env{LC_NUMERIC} locale determines the decimal-point character. +Do not report overflow, underflow, or conversion errors. +Use the following collating sequence: + +@itemize @bullet +@item +Lines that do not start with numbers (all considered to be equal). +@item +NaNs (``Not a Number'' values, in IEEE floating point arithmetic) +in a consistent but machine-dependent order. +@item +Minus infinity. +@item +Finite numbers in ascending numeric order (with @math{-0} and @math{+0} equal). +@item +Plus infinity. +@end itemize + +Use this option only if there is no alternative; it is much slower than +@option{--numeric-sort} (@option{-n}) and it can lose information when +converting to floating point. + +@item -i +@itemx --ignore-nonprinting +@opindex -i +@opindex --ignore-nonprinting +@cindex nonprinting characters, ignoring +@cindex unprintable characters, ignoring +@vindex LC_CTYPE +Ignore nonprinting characters. +The @env{LC_CTYPE} locale determines character types. + +@item -M +@itemx --month-sort +@opindex -M +@opindex --month-sort +@cindex months, sorting by +@vindex LC_TIME +An initial string, consisting of any amount of whitespace, followed +by a month name abbreviation, is folded to UPPER case and +compared in the order @samp{JAN} < @samp{FEB} < @dots{} < @samp{DEC}. +Invalid names compare low to valid names. The @env{LC_TIME} locale +category determines the month spellings. + +@item -n +@itemx --numeric-sort +@opindex -n +@opindex --numeric-sort +@cindex numeric sort +@vindex LC_NUMERIC +Sort numerically: the number begins each line; specifically, it consists +of optional whitespace, an optional @samp{-} sign, and zero or more +digits possibly separated by thousands separators, optionally followed +by a decimal-point character and zero or more digits. The @env{LC_NUMERIC} +locale specifies the decimal-point character and thousands separator. + +Numeric sort uses what might be considered an unconventional method to +compare strings representing floating point numbers. Rather than first +converting each string to the C @code{double} type and then comparing +those values, @command{sort} aligns the decimal-point characters in the +two strings and compares the strings a character at a time. One benefit +of using this approach is its speed. In practice this is much more +efficient than performing the two corresponding string-to-double (or +even string-to-integer) conversions and then comparing doubles. In +addition, there is no corresponding loss of precision. Converting each +string to @code{double} before comparison would limit precision to about +16 digits on most systems. + +Neither a leading @samp{+} nor exponential notation is recognized. +To compare such strings numerically, use the +@option{--general-numeric-sort} (@option{-g}) option. + +@item -r +@itemx --reverse +@opindex -r +@opindex --reverse +@cindex reverse sorting +Reverse the result of comparison, so that lines with greater key values +appear earlier in the output instead of later. + +@end table + +Other options are: + +@table @samp + +@item -o @var{output-file} +@itemx --output=@var{output-file} +@opindex -o +@opindex --output +@cindex overwriting of input, allowed +Write output to @var{output-file} instead of standard output. +If necessary, @command{sort} reads input before opening +@var{output-file}, so you can safely sort a file in place by using +commands like @code{sort -o F F} and @code{cat F | sort -o F}. + +@vindex POSIXLY_CORRECT +On newer systems, @option{-o} cannot appear after an input file if +@env{POSIXLY_CORRECT} is set, e.g., @samp{sort F -o F}. Portable +scripts should specify @option{-o @var{output-file}} before any input +files. + +@item -s +@itemx --stable +@opindex -s +@opindex --stable +@cindex sort stability +@cindex disabling sort's last-resort comparison + +Make @command{sort} stable by disabling the last-resort +comparison that is performed in some cases. +By default, when lines compare equal based on command line options +that affect ordering, those lines are ordered using +a @dfn{last-resort comparison} that takes the entire +line as the key and acts as if no ordering options were specified. +But if @option{--reverse} (@option{-r}) was specified along with other +ordering options, then the last-resort comparison does use @option{--reverse}. +In any case, when no ordering option is specified or when only +@option{--reverse} is specified, the last-resort comparison is not performed + +@item -S @var{size} +@itemx --buffer-size=@var{size} +@opindex -S +@opindex --buffer-size +@cindex size for main memory sorting +Use a main-memory sort buffer of the given @var{size}. By default, +@var{size} is in units of 1024 bytes. Appending @samp{%} causes +@var{size} to be interpreted as a percentage of physical memory. +Appending @samp{K} multiplies @var{size} by 1024 (the default), +@samp{M} by 1,048,576, @samp{G} by 1,073,741,824, and so on for +@samp{T}, @samp{P}, @samp{E}, @samp{Z}, and @samp{Y}. Appending +@samp{b} causes @var{size} to be interpreted as a byte count, with no +multiplication. + +This option can improve the performance of @command{sort} by causing it +to start with a larger or smaller sort buffer than the default. +However, this option affects only the initial buffer size. The buffer +grows beyond @var{size} if @command{sort} encounters input lines larger +than @var{size}. + +@item -t @var{separator} +@itemx --field-separator=@var{separator} +@opindex -t +@opindex --field-separator +@cindex field separator character +Use character @var{separator} as the field separator when finding the +sort keys in each line. By default, fields are separated by the empty +string between a non-whitespace character and a whitespace character. +That is, given the input line @w{@samp{ foo bar}}, @command{sort} breaks it +into fields @w{@samp{ foo}} and @w{@samp{ bar}}. The field separator is +not considered to be part of either the field preceding or the field +following. But note that sort fields that extend to the end of the line, +as @option{-k 2}, or sort fields consisting of a range, as @option{-k 2,3}, +retain the field separators present between the endpoints of the range. + +@item -T @var{tempdir} +@itemx --temporary-directory=@var{tempdir} +@opindex -T +@opindex --temporary-directory +@cindex temporary directory +@vindex TMPDIR +Use directory @var{tempdir} to store temporary files, overriding the +@env{TMPDIR} environment variable. If this option is given more than +once, temporary files are stored in all the directories given. If you +have a large sort or merge that is I/O-bound, you can often improve +performance by using this option to specify directories on different +disks and controllers. + +@item -u +@itemx --unique +@opindex -u +@opindex --unique +@cindex uniquifying output + +Normally, output only the first of a sequence of lines that compare +equal. For the @option{--check} (@option{-c}) option, +check that no pair of consecutive lines compares equal. + +@item -k @var{pos1}[,@var{pos2}] +@itemx --key=@var{pos1}[,@var{pos2}] +@opindex -k +@opindex --key +@cindex sort field +Specify a sort field that consists of the part of the line between +@var{pos1} and @var{pos2} (or the end of the line, if @var{pos2} is +omitted), @emph{inclusive}. Fields and character positions are numbered +starting with 1. So to sort on the second field, you'd use +@option{--key=2,2} (@option{-k 2,2}). See below for more examples. + +@item -z +@itemx --zero-terminated +@opindex -z +@opindex --zero-terminated +@cindex sort zero-terminated lines +Treat the input as a set of lines, each terminated by a zero byte +(@acronym{ASCII} @sc{nul} (Null) character) instead of an +@acronym{ASCII} @sc{lf} (Line Feed). +This option can be useful in conjunction with @samp{perl -0} or +@samp{find -print0} and @samp{xargs -0} which do the same in order to +reliably handle arbitrary pathnames (even those which contain Line Feed +characters.) + +@end table + +Historical (BSD and System V) implementations of @command{sort} have +differed in their interpretation of some options, particularly +@option{-b}, @option{-f}, and @option{-n}. @sc{gnu} sort follows the @acronym{POSIX} +behavior, which is usually (but not always!) like the System V behavior. +According to @acronym{POSIX}, @option{-n} no longer implies @option{-b}. For +consistency, @option{-M} has been changed in the same way. This may +affect the meaning of character positions in field specifications in +obscure cases. The only fix is to add an explicit @option{-b}. + +A position in a sort field specified with the @option{-k} +option has the form @samp{@var{f}.@var{c}}, where @var{f} is the number +of the field to use and @var{c} is the number of the first character +from the beginning of the field. In a start position, an omitted +@samp{.@var{c}} stands for the field's first character. In an end +position, an omitted or zero @samp{.@var{c}} stands for the field's +last character. If the +@option{-b} option was specified, the @samp{.@var{c}} part of a field +specification is counted from the first nonblank character of the field. + +A sort key position may also have any of the option letters @samp{Mbdfinr} +appended to it, in which case the global ordering options are not used +for that particular field. The @option{-b} option may be independently +attached to either or both of the start and +end positions of a field specification, and if it is inherited +from the global options it will be attached to both. +Keys may span multiple fields. + +On older systems, @command{sort} supports an obsolete origin-zero +syntax @samp{+@var{pos1} [-@var{pos2}]} for specifying sort keys. +@acronym{POSIX} 1003.1-2001 (@pxref{Standards conformance}) does not allow +this; use @option{-k} instead. + +Here are some examples to illustrate various combinations of options. + +@itemize @bullet + +@item +Sort in descending (reverse) numeric order. + +@example +sort -nr +@end example + +@item +Sort alphabetically, omitting the first and second fields. +This uses a single key composed of the characters beginning +at the start of field three and extending to the end of each line. + +@example +sort -k 3 +@end example + +@item +Sort numerically on the second field and resolve ties by sorting +alphabetically on the third and fourth characters of field five. +Use @samp{:} as the field delimiter. + +@example +sort -t : -k 2,2n -k 5.3,5.4 +@end example + +Note that if you had written @option{-k 2} instead of @option{-k 2,2} +@command{sort} would have used all characters beginning in the second field +and extending to the end of the line as the primary @emph{numeric} +key. For the large majority of applications, treating keys spanning +more than one field as numeric will not do what you expect. + +Also note that the @samp{n} modifier was applied to the field-end +specifier for the first key. It would have been equivalent to +specify @option{-k 2n,2} or @option{-k 2n,2n}. All modifiers except +@samp{b} apply to the associated @emph{field}, regardless of whether +the modifier character is attached to the field-start and/or the +field-end part of the key specifier. + +@item +Sort the password file on the fifth field and ignore any +leading white space. Sort lines with equal values in field five +on the numeric user ID in field three. + +@example +sort -t : -k 5b,5 -k 3,3n /etc/passwd +@end example + +An alternative is to use the global numeric modifier @option{-n}. + +@example +sort -t : -n -k 5b,5 -k 3,3 /etc/passwd +@end example + +@item +Generate a tags file in case-insensitive sorted order. + +@smallexample +find src -type f -print0 | sort -t / -z -f | xargs -0 etags --append +@end smallexample + +The use of @option{-print0}, @option{-z}, and @option{-0} in this case means +that pathnames that contain Line Feed characters will not get broken up +by the sort operation. + +Finally, to ignore both leading and trailing white space, you +could have applied the @samp{b} modifier to the field-end specifier +for the first key, + +@example +sort -t : -n -k 5b,5b -k 3,3 /etc/passwd +@end example + +or by using the global @option{-b} modifier instead of @option{-n} +and an explicit @samp{n} with the second key specifier. + +@example +sort -t : -b -k 5,5 -k 3,3n /etc/passwd +@end example + +@c This example is a bit contrived and needs more explanation. +@c @item +@c Sort records separated by an arbitrary string by using a pipe to convert +@c each record delimiter string to @samp{\0}, then using sort's -z option, +@c and converting each @samp{\0} back to the original record delimiter. +@c +@c @example +@c printf 'c\n\nb\n\na\n'|perl -0pe 's/\n\n/\n\0/g'|sort -z|perl -0pe 's/\0/\n/g' +@c @end example + +@end itemize + + +@node uniq invocation +@section @command{uniq}: Uniquify files + +@pindex uniq +@cindex uniquify files + +@command{uniq} writes the unique lines in the given @file{input}, or +standard input if nothing is given or for an @var{input} name of +@samp{-}. Synopsis: + +@example +uniq [@var{option}]@dots{} [@var{input} [@var{output}]] +@end example + +By default, @command{uniq} prints the unique lines in a sorted file, i.e., +discards all but one of identical successive lines. Optionally, it can +instead show only lines that appear exactly once, or lines that appear +more than once. + +The input need not be sorted, but duplicate input lines are detected +only if they are adjacent. If you want to discard non-adjacent +duplicate lines, perhaps you want to use @code{sort -u}. + +@vindex LC_COLLATE +Comparisons use the character collating sequence specified by the +@env{LC_COLLATE} locale category. + +If no @var{output} file is specified, @command{uniq} writes to standard +output. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -f @var{n} +@itemx --skip-fields=@var{n} +@opindex -f +@opindex --skip-fields +Skip @var{n} fields on each line before checking for uniqueness. Fields +are sequences of non-space non-tab characters that are separated from +each other by at least one space or tab. + +On older systems, @command{uniq} supports an obsolete option +@option{-@var{n}}. @acronym{POSIX} 1003.1-2001 (@pxref{Standards conformance}) +does not allow this; use @option{-f @var{n}} instead. + +@item -s @var{n} +@itemx --skip-chars=@var{n} +@opindex -s +@opindex --skip-chars +Skip @var{n} characters before checking for uniqueness. If you use both +the field and character skipping options, fields are skipped over first. + +On older systems, @command{uniq} supports an obsolete option +@option{+@var{n}}. @acronym{POSIX} 1003.1-2001 (@pxref{Standards conformance}) +does not allow this; use @option{-s @var{n}} instead. + +@item -c +@itemx --count +@opindex -c +@opindex --count +Print the number of times each line occurred along with the line. + +@item -i +@itemx --ignore-case +@opindex -i +@opindex --ignore-case +Ignore differences in case when comparing lines. + +@item -d +@itemx --repeated +@opindex -d +@opindex --repeated +@cindex duplicate lines, outputting +Print one copy of each duplicate line. + +@item -D +@itemx --all-repeated[=@var{delimit-method}] +@opindex -D +@opindex --all-repeated +@cindex all duplicate lines, outputting +Print all copies of each duplicate line. +This option is useful mainly in conjunction with other options e.g., +to ignore case or to compare only selected fields. +The optional @var{delimit-method} tells how to delimit +groups of duplicate lines, and must be one of the following: + +@table @samp + +@item none +Do not delimit groups of duplicate lines. +This is equivalent to @option{--all-repeated} (@option{-D}). + +@item prepend +Output a newline before each group of duplicate lines. + +@item separate +Separate groups of duplicate lines with a single newline. +This is the same as using @samp{prepend}, except that +there is no newline before the first group, and hence +may be better suited for output direct to users. +@end table + +Note that when groups are delimited and the input stream contains +two or more consecutive blank lines, then the output is ambiguous. +To avoid that, filter the input through @samp{tr -s '\n'} to replace +each sequence of consecutive newlines with a single newline. + +This is a @sc{gnu} extension. +@c FIXME: give an example showing *how* it's useful + +@item -u +@itemx --unique +@opindex -u +@opindex --unique +@cindex unique lines, outputting +Print non-duplicate lines. + +@item -w @var{n} +@itemx --check-chars=@var{n} +@opindex -w +@opindex --check-chars +Compare @var{n} characters on each line (after skipping any specified +fields and characters). By default the entire rest of the lines are +compared. + +@end table + + +@node comm invocation +@section @command{comm}: Compare two sorted files line by line + +@pindex comm +@cindex line-by-line comparison +@cindex comparing sorted files + +@command{comm} writes to standard output lines that are common, and lines +that are unique, to two input files; a file name of @samp{-} means +standard input. Synopsis: + +@example +comm [@var{option}]@dots{} @var{file1} @var{file2} +@end example + +@vindex LC_COLLATE +Before @command{comm} can be used, the input files must be sorted using the +collating sequence specified by the @env{LC_COLLATE} locale. +If an input file ends in a non-newline +character, a newline is silently appended. The @command{sort} command with +no options always outputs a file that is suitable input to @command{comm}. + +@cindex differing lines +@cindex common lines +With no options, @command{comm} produces three column output. Column one +contains lines unique to @var{file1}, column two contains lines unique +to @var{file2}, and column three contains lines common to both files. +Columns are separated by a single TAB character. +@c FIXME: when there's an option to supply an alternative separator +@c string, append `by default' to the above sentence. + +@opindex -1 +@opindex -2 +@opindex -3 +The options @option{-1}, @option{-2}, and @option{-3} suppress printing of +the corresponding columns. Also see @ref{Common options}. + +Unlike some other comparison utilities, @command{comm} has an exit +status that does not depend on the result of the comparison. +Upon normal completion @command{comm} produces an exit code of zero. +If there is an error it exits with nonzero status. + + +@node tsort invocation +@section @command{tsort}: Topological sort + +@pindex tsort +@cindex topological sort + +@command{tsort} performs a topological sort on the given @var{file}, or +standard input if no input file is given or for a @var{file} of +@samp{-}. For more details and some history, see @ref{tsort background}. +Synopsis: + +@example +tsort [@var{option}] [@var{file}] +@end example + +@command{tsort} reads its input as pairs of strings, separated by blanks, +indicating a partial ordering. The output is a total ordering that +corresponds to the given partial ordering. + +For example + +@example +tsort < out +$ dd bs=1 skip=252 count=6 < out 2>/dev/null; echo +deeper +@end example + +Note that although the listing above includes a trailing slash +for the @samp{deeper} entry, the offsets select the name without +the trailing slash. However, if you invoke @command{ls} with @option{--dired} +along with an option like @option{--escape} (aka @option{-b}) and operate +on a file whose name contains special characters, notice that the backslash +@emph{is} included: + +@example +$ touch 'a b' +$ ls -blog --dired 'a b' + -rw-r--r-- 1 0 Nov 9 18:41 a\ b +//DIRED// 40 44 +//DIRED-OPTIONS// --quoting-style=escape +@end example + +If you use a quoting style that adds quote marks +(e.g., @option{--quoting-style=c}), then the offsets include the quote marks. +So beware that the user may select the quoting style via the environment +variable @env{QUOTING_STYLE}. Hence, applications using @option{--dired} +should either specify an explicit @option{--quoting-style=literal} option +(aka @option{-N} or @option{--literal}) on the command line, or else be +prepared to parse the escaped names. + +@item --full-time +@opindex --full-time +Produce long format directory listings, and list times in full. It is +equivalent to using @option{--format=long} with +@option{--time-style=full-iso} (@pxref{Formatting file timestamps}). + +@item -g +@opindex -g +Produce long format directory listings, but don't display owner information. + +@item -G +@itemx --no-group +@opindex -G +@opindex --no-group +Inhibit display of group information in a long format directory listing. +(This is the default in some non-@sc{gnu} versions of @command{ls}, so we +provide this option for compatibility.) + +@item -h +@itemx --human-readable +@opindex -h +@opindex --human-readable +@cindex human-readable output +Append a size letter to each size, such as @samp{M} for mebibytes. +Powers of 1024 are used, not 1000; @samp{M} stands for 1,048,576 bytes. +This option is equivalent to @option{--block-size=human} (@pxref{Block size}). +Use the @option{--si} option if you prefer powers of 1000. + +@item -i +@itemx --inode +@opindex -i +@opindex --inode +@cindex inode number, printing +Print the inode number (also called the file serial number and index +number) of each file to the left of the file name. (This number +uniquely identifies each file within a particular filesystem.) + +@item -l +@itemx --format=long +@itemx --format=verbose +@opindex -l +@opindex --format +@opindex long ls @r{format} +@opindex verbose ls @r{format} +In addition to the name of each file, print the file type, permissions, +number of hard links, owner name, group name, size, and +timestamp (@pxref{Formatting file timestamps}), normally +the modification time. + +Normally the size is printed as a byte count without punctuation, but +this can be overridden (@pxref{Block size}). For example, @option{-h} +prints an abbreviated, human-readable count, and +@samp{--block-size="'1"} prints a byte count with the thousands +separator of the current locale. + +For each directory that is listed, preface the files with a line +@samp{total @var{blocks}}, where @var{blocks} is the total disk allocation +for all files in that directory. The block size currently defaults to 1024 +bytes, but this can be overridden (@pxref{Block size}). +The @var{blocks} computed counts each hard link separately; +this is arguably a deficiency. + +@cindex permissions, output by @command{ls} +The permissions listed are similar to symbolic mode specifications +(@pxref{Symbolic Modes}). But @command{ls} combines multiple bits into the +third character of each set of permissions as follows: +@table @samp +@item s +If the setuid or setgid bit and the corresponding executable bit +are both set. + +@item S +If the setuid or setgid bit is set but the corresponding executable bit +is not set. + +@item t +If the sticky bit and the other-executable bit are both set. + +@item T +If the sticky bit is set but the other-executable bit is not set. + +@item x +If the executable bit is set and none of the above apply. + +@item - +Otherwise. +@end table + +Following the permission bits is a single character that specifies +whether an alternate access method applies to the file. When that +character is a space, there is no alternate access method. When it +is a printing character (e.g., @samp{+}), then there is such a method. + +@item -n +@itemx --numeric-uid-gid +@opindex -n +@opindex --numeric-uid-gid +@cindex numeric uid and gid +Produce long format directory listings, but +display numeric UIDs and GIDs instead of the owner and group names. + +@item -o +@opindex -o +Produce long format directory listings, but don't display group information. +It is equivalent to using @option{--format=long} with @option{--no-group} . + +@item -s +@itemx --size +@opindex -s +@opindex --size +@cindex disk allocation +@cindex size of files, reporting +Print the disk allocation of each file to the left of the file name. +This is the amount of disk space used by the file, which is usually a +bit more than the file's size, but it can be less if the file has holes. + +Normally the disk allocation is printed in units of +1024 bytes, but this can be overridden (@pxref{Block size}). + +@cindex NFS mounts from BSD to HP-UX +For files that are NFS-mounted from an HP-UX system to a BSD system, +this option reports sizes that are half the correct values. On HP-UX +systems, it reports sizes that are twice the correct values for files +that are NFS-mounted from BSD systems. This is due to a flaw in HP-UX; +it also affects the HP-UX @command{ls} program. + +@itemx --si +@opindex --si +@cindex SI output +Append an SI-style abbreviation to each size, such as @samp{MB} for +megabytes. Powers of 1000 are used, not 1024; @samp{MB} stands for +1,000,000 bytes. This option is equivalent to +@option{--block-size=si}. Use the @option{-h} or +@option{--human-readable} option if +you prefer powers of 1024. + +@end table + + +@node Sorting the output +@subsection Sorting the output + +@cindex sorting @command{ls} output +These options change the order in which @command{ls} sorts the information +it outputs. By default, sorting is done by character code +(e.g., @acronym{ASCII} order). + +@table @samp + +@item -c +@itemx --time=ctime +@itemx --time=status +@itemx --time=use +@opindex -c +@opindex --time +@opindex ctime@r{, printing or sorting by} +@opindex status time@r{, printing or sorting by} +@opindex use time@r{, printing or sorting files by} +If the long listing format (e.g., @option{-l}, @option{-o}) is being used, +print the status change time (the @samp{ctime} in the inode) instead of +the modification time. +When explicitly sorting by time (@option{--sort=time} or @option{-t}) +or when not using a long listing format, +sort according to the status change time. + +@item -f +@opindex -f +@cindex unsorted directory listing +@cindex directory order, listing by +Primarily, like @option{-U}---do not sort; list the files in whatever +order they are stored in the directory. But also enable @option{-a} (list +all files) and disable @option{-l}, @option{--color}, and @option{-s} (if they +were specified before the @option{-f}). + +@item -r +@itemx --reverse +@opindex -r +@opindex --reverse +@cindex reverse sorting +Reverse whatever the sorting method is---e.g., list files in reverse +alphabetical order, youngest first, smallest first, or whatever. + +@item -S +@itemx --sort=size +@opindex -S +@opindex --sort +@opindex size of files@r{, sorting files by} +Sort by file size, largest first. + +@item -t +@itemx --sort=time +@opindex -t +@opindex --sort +@opindex modification time@r{, sorting files by} +Sort by modification time (the @samp{mtime} in the inode), newest first. + +@item -u +@itemx --time=atime +@itemx --time=access +@opindex -u +@opindex --time +@opindex use time@r{, printing or sorting files by} +@opindex atime@r{, printing or sorting files by} +@opindex access time@r{, printing or sorting files by} +If the long listing format (e.g., @option{--format=long}) is being used, +print the last access time (the @samp{atime} in the inode). +When explicitly sorting by time (@option{--sort=time} or @option{-t}) +or when not using a long listing format, sort according to the access time. + +@item -U +@itemx --sort=none +@opindex -U +@opindex --sort +@opindex none@r{, sorting option for @command{ls}} +Do not sort; list the files in whatever order they are +stored in the directory. (Do not do any of the other unrelated things +that @option{-f} does.) This is especially useful when listing very large +directories, since not doing any sorting can be noticeably faster. + +@item -v +@itemx --sort=version +@opindex -v +@opindex --sort +@opindex version@r{, sorting option for @command{ls}} +Sort by version name and number, lowest first. It behaves like a default +sort, except that each sequence of decimal digits is treated numerically +as an index/version number. (@xref{More details about version sort}.) + +@item -X +@itemx --sort=extension +@opindex -X +@opindex --sort +@opindex extension@r{, sorting files by} +Sort directory contents alphabetically by file extension (characters +after the last @samp{.}); files with no extension are sorted first. + +@end table + + +@node More details about version sort +@subsection More details about version sort + +The version sort takes into account the fact that file names frequently include +indices or version numbers. Standard sorting functions usually do not produce +the ordering that people expect because comparisons are made on a +character-by-character basis. The version +sort addresses this problem, and is especially useful when browsing +directories that contain many files with indices/version numbers in their +names: + +@example + > ls -1 > ls -1v + foo.zml-1.gz foo.zml-1.gz + foo.zml-100.gz foo.zml-2.gz + foo.zml-12.gz foo.zml-6.gz + foo.zml-13.gz foo.zml-12.gz + foo.zml-2.gz foo.zml-13.gz + foo.zml-25.gz foo.zml-25.gz + foo.zml-6.gz foo.zml-100.gz +@end example + +Note also that numeric parts with leading zeroes are considered as +fractional one: + +@example + > ls -1 > ls -1v + abc-1.007.tgz abc-1.007.tgz + abc-1.012b.tgz abc-1.01a.tgz + abc-1.01a.tgz abc-1.012b.tgz +@end example + +@node General output formatting +@subsection General output formatting + +These options affect the appearance of the overall output. + +@table @samp + +@item -1 +@itemx --format=single-column +@opindex -1 +@opindex --format +@opindex single-column @r{output of files} +List one file per line. This is the default for @command{ls} when standard +output is not a terminal. + +@item -C +@itemx --format=vertical +@opindex -C +@opindex --format +@opindex vertical @r{sorted files in columns} +List files in columns, sorted vertically. This is the default for +@command{ls} if standard output is a terminal. It is always the default +for the @command{dir} and @command{d} programs. +@sc{gnu} @command{ls} uses variable width columns to display as many files as +possible in the fewest lines. + +@item --color [=@var{when}] +@opindex --color +@cindex color, distinguishing file types with +Specify whether to use color for distinguishing file types. @var{when} +may be omitted, or one of: +@itemize @bullet +@item none +@vindex none @r{color option} +- Do not use color at all. This is the default. +@item auto +@vindex auto @r{color option} +@cindex terminal, using color iff +- Only use color if standard output is a terminal. +@item always +@vindex always @r{color option} +- Always use color. +@end itemize +Specifying @option{--color} and no @var{when} is equivalent to +@option{--color=always}. +Piping a colorized listing through a pager like @command{more} or +@command{less} usually produces unreadable results. However, using +@code{more -f} does seem to work. + +@item -F +@itemx --classify +@itemx --indicator-style=classify +@opindex -F +@opindex --classify +@opindex --indicator-style +@cindex file type and executables, marking +@cindex executables and file type, marking +Append a character to each file name indicating the file type. Also, +for regular files that are executable, append @samp{*}. The file type +indicators are @samp{/} for directories, @samp{@@} for symbolic links, +@samp{|} for FIFOs, @samp{=} for sockets, and nothing for regular files. +@c The following sentence is the same as the one for -d. +Do not follow symbolic links listed on the +command line unless the @option{--dereference-command-line} (@option{-H}), +@option{--dereference} (@option{-L}), or +@option{--dereference-command-line-symlink-to-dir} options are specified. + +@item --indicator-style=@var{word} +@opindex --indicator-style +Append a character indicator with style @var{word} to entry names, +as follows: +@table @samp +@item none +Do not append any character indicator; this is the default. +@item file-type +Append @samp{/} for directories, @samp{@@} for symbolic links, @samp{|} +for FIFOs, @samp{=} for sockets, and nothing for regular files. This is +the same as the @option{-p} or @option{--file-type} option. +@item classify +Append @samp{*} for executable regular files, otherwise behave as for +@samp{file-type}. This is the same as the @option{-F} or +@option{--classify} option. +@end table + +@item -k +@opindex -k +Print file sizes in 1024-byte blocks, overriding the default block +size (@pxref{Block size}). +This option is equivalent to @option{--block-size=1K}. + +@item -m +@itemx --format=commas +@opindex -m +@opindex --format +@opindex commas@r{, outputting between files} +List files horizontally, with as many as will fit on each line, +separated by @samp{, } (a comma and a space). + +@item -p +@itemx --file-type +@itemx --indicator-style=file-type +@opindex --file-type +@opindex --indicator-style +@cindex file type, marking +Append a character to each file name indicating the file type. This is +like @option{-F}, except that executables are not marked. + +@item -x @var{format} +@itemx --format=across +@itemx --format=horizontal +@opindex -x +@opindex --format +@opindex across@r{, listing files} +@opindex horizontal@r{, listing files} +List the files in columns, sorted horizontally. + +@item -T @var{cols} +@itemx --tabsize=@var{cols} +@opindex -T +@opindex --tabsize +Assume that each tabstop is @var{cols} columns wide. The default is 8. +@command{ls} uses tabs where possible in the output, for efficiency. If +@var{cols} is zero, do not use tabs at all. + +@item -w +@itemx --width=@var{cols} +@opindex -w +@opindex --width +@vindex COLUMNS +Assume the screen is @var{cols} columns wide. The default is taken +from the terminal settings if possible; otherwise the environment +variable @env{COLUMNS} is used if it is set; otherwise the default +is 80. + +@end table + + +@node Formatting file timestamps +@subsection Formatting file timestamps + +By default, file timestamps are listed in abbreviated form. Most +locales use a timestamp like @samp{2002-03-30 23:45}. However, the +default @acronym{POSIX} locale uses a date like @samp{Mar 30@ @ 2002} +for non-recent timestamps, and a date-without-year and time like +@samp{Mar 30 23:45} for recent timestamps. + +A timestamp is considered to be @dfn{recent} if it is less than six +months old, and is not dated in the future. If a timestamp dated +today is not listed in recent form, the timestamp is in the future, +which means you probably have clock skew problems which may break +programs like @command{make} that rely on file timestamps. + +The following option changes how file timestamps are printed. + +@table @samp +@item --time-style=@var{style} +@opindex --time-style +@cindex time style +List timestamps in style @var{style}. The @var{style} should +be one of the following: + +@table @samp +@item +@var{format} +@vindex LC_TIME +List timestamps using @var{format}, where @var{format} is interpreted +like the format argument of @command{date} (@pxref{date invocation}). +For example, @option{--time-style="+%Y-%m-%d %H:%M:%S"} causes +@command{ls} to list timestamps like @samp{2002-03-30 23:45:56}. As +with @command{date}, @var{format}'s interpretation is affected by the +@env{LC_TIME} locale category. + +If @var{format} contains two format strings separated by a newline, +the former is used for non-recent files and the latter for recent +files; if you want output columns to line up, you may need to insert +spaces in one of the two formats. + +@item full-iso +List timestamps in full using @acronym{ISO} 8601 date, time, and time zone +format with nanosecond precision, e.g., @samp{2002-03-30 +23:45:56.477817180 -0700}. This style is equivalent to +@samp{+%Y-%m-%d %H:%M:%S.%N %z}. + +This is useful because the time output includes all the information that +is available from the operating system. For example, this can help +explain @command{make}'s behavior, since @acronym{GNU} @command{make} +uses the full timestamp to determine whether a file is out of date. + +@item long-iso +List @acronym{ISO} 8601 date and time in minutes, e.g., +@samp{2002-03-30 23:45}. These timestamps are shorter than +@samp{full-iso} timestamps, and are usually good enough for everyday +work. This style is equivalent to @samp{%Y-%m-%d %H:%M}. + +@item iso +List @acronym{ISO} 8601 dates for non-recent timestamps (e.g., +@samp{2002-03-30@ }), and @acronym{ISO} 8601 month, day, hour, and +minute for recent timestamps (e.g., @samp{03-30 23:45}). These +timestamps are uglier than @samp{long-iso} timestamps, but they carry +nearly the same information in a smaller space and their brevity helps +@command{ls} output fit within traditional 80-column output lines. +The following two @command{ls} invocations are equivalent: + +@example +newline=' +' +ls -l --time-style="+%Y-%m-%d $newline%m-%d %H:%M" +ls -l --time-style="iso" +@end example + +@item locale +@vindex LC_TIME +List timestamps in a locale-dependent form. For example, a Finnish +locale might list non-recent timestamps like @samp{maalis 30@ @ 2002} +and recent timestamps like @samp{maalis 30 23:45}. Locale-dependent +timestamps typically consume more space than @samp{iso} timestamps and +are harder for programs to parse because locale conventions vary so +widely, but they are easier for many people to read. + +The @env{LC_TIME} locale category specifies the timestamp format. The +default @acronym{POSIX} locale uses timestamps like @samp{Mar 30@ +@ 2002} and @samp{Mar 30 23:45}; in this locale, the following two +@command{ls} invocations are equivalent: + +@example +newline=' +' +ls -l --time-style="+%b %e %Y$newline%b %e %H:%M" +ls -l --time-style="locale" +@end example + +Other locales behave differently. For example, in a German locale, +@option{--time-style="locale"} might be equivalent to +@option{--time-style="+%e. %b %Y $newline%e. %b %H:%M"} +and might generate timestamps like @samp{30. M@"ar 2002@ } and +@samp{30. M@"ar 23:45}. + +@item posix-@var{style} +@vindex LC_TIME +List @acronym{POSIX}-locale timestamps if the @env{LC_TIME} locale +category is @acronym{POSIX}, @var{style} timestamps otherwise. For +example, the default style, which is @samp{posix-long-iso}, lists +timestamps like @samp{Mar 30@ @ 2002} and @samp{Mar 30 23:45} when in +the @acronym{POSIX} locale, and like @samp{2002-03-30 23:45} otherwise. +@end table +@end table + +@vindex TIME_STYLE +You can specify the default value of the @option{--time-style} option +with the environment variable @env{TIME_STYLE}; if @env{TIME_STYLE} is not set +the default style is @samp{posix-long-iso}. @acronym{GNU} Emacs 21 and +later can parse @acronym{ISO} dates, but older Emacs versions do not, so if +you are using an older version of Emacs and specify a non-@acronym{POSIX} +locale, you may need to set @samp{TIME_STYLE="locale"}. + + +@node Formatting the file names +@subsection Formatting the file names + +These options change how file names themselves are printed. + +@table @samp + +@item -b +@itemx --escape +@itemx --quoting-style=escape +@opindex -b +@opindex --escape +@opindex --quoting-style +@cindex backslash sequences for file names +Quote nongraphic characters in file names using alphabetic and octal +backslash sequences like those used in C. + +@item -N +@itemx --literal +@itemx --quoting-style=literal +@opindex -N +@opindex --literal +@opindex --quoting-style +Do not quote file names. + +@item -q +@itemx --hide-control-chars +@opindex -q +@opindex --hide-control-chars +Print question marks instead of nongraphic characters in file names. +This is the default if the output is a terminal and the program is +@command{ls}. + +@item -Q +@itemx --quote-name +@itemx --quoting-style=c +@opindex -Q +@opindex --quote-name +@opindex --quoting-style +Enclose file names in double quotes and quote nongraphic characters as +in C. + +@item --quoting-style=@var{word} +@opindex --quoting-style +@cindex quoting style +Use style @var{word} to quote output names. The @var{word} should +be one of the following: +@table @samp +@item literal +Output names as-is; this is the same as the @option{-N} or +@option{--literal} option. +@item shell +Quote names for the shell if they contain shell metacharacters or would +cause ambiguous output. +@item shell-always +Quote names for the shell, even if they would normally not require quoting. +@item c +Quote names as for a C language string; this is the same as the +@option{-Q} or @option{--quote-name} option. +@item escape +Quote as with @samp{c} except omit the surrounding double-quote +characters; this is the same as the @option{-b} or @option{--escape} option. +@item clocale +Quote as with @samp{c} except use quotation marks appropriate for the +locale. +@item locale +@c Use @t instead of @samp to avoid duplicate quoting in some output styles. +Like @samp{clocale}, but quote @t{`like this'} instead of @t{"like +this"} in the default C locale. This looks nicer on many displays. +@end table + +You can specify the default value of the @option{--quoting-style} option +with the environment variable @env{QUOTING_STYLE}. If that environment +variable is not set, the default value is @samp{literal}, but this +default may change to @samp{shell} in a future version of this package. + +@item --show-control-chars +@opindex --show-control-chars +Print nongraphic characters as-is in file names. +This is the default unless the output is a terminal and the program is +@command{ls}. + +@end table + + +@node dir invocation +@section @command{dir}: Briefly list directory contents + +@pindex dir +@cindex directory listing, brief + +@command{dir} (also installed as @command{d}) is equivalent to @code{ls -C +-b}; that is, by default files are listed in columns, sorted vertically, +and special characters are represented by backslash escape sequences. + +@xref{ls invocation, @command{ls}}. + + +@node vdir invocation +@section @command{vdir}: Verbosely list directory contents + +@pindex vdir +@cindex directory listing, verbose + +@command{vdir} (also installed as @command{v}) is equivalent to @code{ls -l +-b}; that is, by default files are listed in long format and special +characters are represented by backslash escape sequences. + +@node dircolors invocation +@section @command{dircolors}: Color setup for @command{ls} + +@pindex dircolors +@cindex color setup +@cindex setup for color + +@command{dircolors} outputs a sequence of shell commands to set up the +terminal for color output from @command{ls} (and @command{dir}, etc.). +Typical usage: + +@example +eval `dircolors [@var{option}]@dots{} [@var{file}]` +@end example + +If @var{file} is specified, @command{dircolors} reads it to determine which +colors to use for which file types and extensions. Otherwise, a +precompiled database is used. For details on the format of these files, +run @samp{dircolors --print-database}. + +@vindex LS_COLORS +@vindex SHELL @r{environment variable, and color} +The output is a shell command to set the @env{LS_COLORS} environment +variable. You can specify the shell syntax to use on the command line, +or @command{dircolors} will guess it from the value of the @env{SHELL} +environment variable. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp +@item -b +@itemx --sh +@itemx --bourne-shell +@opindex -b +@opindex --sh +@opindex --bourne-shell +@cindex Bourne shell syntax for color setup +@cindex @command{sh} syntax for color setup +Output Bourne shell commands. This is the default if the @env{SHELL} +environment variable is set and does not end with @samp{csh} or +@samp{tcsh}. + +@item -c +@itemx --csh +@itemx --c-shell +@opindex -c +@opindex --csh +@opindex --c-shell +@cindex C shell syntax for color setup +@cindex @command{csh} syntax for color setup +Output C shell commands. This is the default if @code{SHELL} ends with +@command{csh} or @command{tcsh}. + +@item -p +@itemx --print-database +@opindex -p +@opindex --print-database +@cindex color database, printing +@cindex database for color setup, printing +@cindex printing color database +Print the (compiled-in) default color configuration database. This +output is itself a valid configuration file, and is fairly descriptive +of the possibilities. + +@end table + + +@node Basic operations +@chapter Basic operations + +@cindex manipulating files + +This chapter describes the commands for basic file manipulation: +copying, moving (renaming), and deleting (removing). + +@menu +* cp invocation:: Copy files. +* dd invocation:: Convert and copy a file. +* install invocation:: Copy files and set attributes. +* mv invocation:: Move (rename) files. +* rm invocation:: Remove files or directories. +* shred invocation:: Remove files more securely. +@end menu + + +@node cp invocation +@section @command{cp}: Copy files and directories + +@pindex cp +@cindex copying files and directories +@cindex files, copying +@cindex directories, copying + +@command{cp} copies files (or, optionally, directories). The copy is +completely independent of the original. You can either copy one file to +another, or copy arbitrarily many files to a destination directory. +Synopsis: + +@example +cp [@var{option}]@dots{} @var{source} @var{dest} +cp [@var{option}]@dots{} @var{source}@dots{} @var{directory} +@end example + +If the last argument names an existing directory, @command{cp} copies each +@var{source} file into that directory (retaining the same name). +Otherwise, if only two files are given, it copies the first onto the +second. It is an error if the last argument is not a directory and more +than two non-option arguments are given. + +Generally, files are written just as they are read. For exceptions, +see the @option{--sparse} option below. + +By default, @command{cp} does not copy directories. However, the +@option{-R}, @option{-a}, and @option{-r} options cause @command{cp} to +copy recursively by descending into source directories and copying files +to corresponding destination directories. + +By default, @command{cp} follows symbolic links only when not copying +recursively. This default can be overridden with the +@option{--archive} (@option{-a}), @option{-d}, @option{--dereference} +(@option{-L}), @option{--no-dereference} (@option{-P}), and +@option{-H} options. If more than one of these options is specified, +the last one silently overrides the others. + +By default, @command{cp} copies the contents of special files only +when not copying recursively. This default can be overridden with the +@option{--copy-contents} option. + +@cindex self-backups +@cindex backups, making only +@command{cp} generally refuses to copy a file onto itself, with the +following exception: if @option{--force --backup} is specified with +@var{source} and @var{dest} identical, and referring to a regular file, +@command{cp} will make a backup file, either regular or numbered, as +specified in the usual ways (@pxref{Backup options}). This is useful when +you simply want to make a backup of an existing file before changing it. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp +@item -a +@itemx --archive +@opindex -a +@opindex --archive +Preserve as much as possible of the structure and attributes of the +original files in the copy (but do not attempt to preserve internal +directory structure; i.e., @samp{ls -U} may list the entries in a copied +directory in a different order). +Equivalent to @option{-dpPR}. + +@item -b +@itemx @w{@kbd{--backup}[=@var{method}]} +@opindex -b +@opindex --backup +@vindex VERSION_CONTROL +@cindex backups, making +@xref{Backup options}. +Make a backup of each file that would otherwise be overwritten or removed. +As a special case, @command{cp} makes a backup of @var{source} when the force +and backup options are given and @var{source} and @var{dest} are the same +name for an existing, regular file. One useful application of this +combination of options is this tiny Bourne shell script: + +@example +#!/bin/sh +# Usage: backup FILE... +# Create a @sc{gnu}-style backup of each listed FILE. +for i; do + cp --backup --force "$i" "$i" +done +@end example + +@item --copy-contents +@cindex directories, copying recursively +@cindex copying directories recursively +@cindex recursively copying directories +@cindex non-directories, copying as special files +If copying recursively, copy the contents of any special files (e.g., +FIFOs and device files) as if they were regular files. This means +trying to read the data in each source file and writing it to the +destination. It is usually a mistake to use this option, as it +normally has undesirable effects on special files like FIFOs and the +ones typically found in the @file{/dev} directory. In most cases, +@code{cp -R --copy-contents} will hang indefinitely trying to read +from FIFOs and special files like @file{/dev/console}, and it will +fill up your destination disk if you use it to copy @file{/dev/zero}. +This option has no effect unless copying recursively, and it does not +affect the copying of symbolic links. + +@item -d +@opindex -d +@cindex symbolic links, copying +@cindex hard links, preserving +Copy symbolic links as symbolic links rather than copying the files that +they point to, and preserve hard links between source files in the copies. +Equivalent to @option{--no-dereference --preserve=links}. + +@item -f +@itemx --force +@opindex -f +@opindex --force +When copying without this option and an existing destination file cannot +be opened for writing, the copy fails. However, with @option{--force}), +when a destination file cannot be opened, @command{cp} then unlinks it and +tries to open it again. Contrast this behavior with that enabled by +@option{--link} and @option{--symbolic-link}, whereby the destination file +is never opened but rather is unlinked unconditionally. Also see the +description of @option{--remove-destination}. + +@item -H +@opindex -H +If a command line argument specifies a symbolic link, then copy the +file it points to rather than the symbolic link itself. However, +copy (preserving its nature) any symbolic link that is encountered +via recursive traversal. + +@item -i +@itemx --interactive +@opindex -i +@opindex --interactive +Prompt whether to overwrite existing regular destination files. + +@item -l +@itemx --link +@opindex -l +@opindex --link +Make hard links instead of copies of non-directories. + +@item -L +@itemx --dereference +@opindex -L +@opindex --dereference +Always follow symbolic links. + +@item -P +@itemx --no-dereference +@opindex -P +@opindex --no-dereference +@cindex symbolic links, copying +Copy symbolic links as symbolic links rather than copying the files that +they point to. + +@item -p +@itemx @w{@kbd{--preserve}[=@var{attribute_list}]} +@opindex -p +@opindex --preserve +@cindex file information, preserving +Preserve the specified attributes of the original files. +If specified, the @var{attribute_list} must be a comma-separated list +of one or more of the following strings: + +@table @samp +@itemx mode +Preserve the permission attributes. +@itemx ownership +Preserve the owner and group. On most modern systems, +only the super-user may change the owner of a file, and regular users +may preserve the group ownership of a file only if they happen to be +a member of the desired group. +@itemx timestamps +Preserve the times of last access and last modification. +@itemx links +Preserve in the destination files +any links between corresponding source files. +@c Give examples illustrating how hard links are preserved. +@c Also, show how soft links map to hard links with -L and -H. +@itemx all +Preserve all file attributes. +Equivalent to specifying all of the above. +@c Mention ACLs here. +@end table + +Using @option{--preserve} with no @var{attribute_list} is equivalent +to @option{--preserve=mode,ownership,timestamps}. + +In the absence of this option, each destination file is created with the +permissions of the corresponding source file, minus the bits set in the +umask and minus the set-user-id and set-group-id bits. @xref{File permissions}. + +@itemx @w{@kbd{--no-preserve}=@var{attribute_list}} +@cindex file information, preserving +Do not preserve the specified attributes. The @var{attribute_list} +has the same form as for @option{--preserve}. + +@itemx --parents +@opindex --parents +@cindex parent directories and @command{cp} +Form the name of each destination file by appending to the target +directory a slash and the specified name of the source file. The last +argument given to @command{cp} must be the name of an existing directory. +For example, the command: + +@example +cp --parents a/b/c existing_dir +@end example + +@noindent +copies the file @file{a/b/c} to @file{existing_dir/a/b/c}, creating +any missing intermediate directories. + +@itemx @w{@kbd{--reply}[=@var{how}]} +@opindex --reply +@cindex interactivity +Using @option{--reply=yes} makes @command{cp} act as if @samp{yes} were +given as a response to every prompt about a destination file. That effectively +cancels any preceding @option{--interactive} or @option{-i} option. +Specify @option{--reply=no} to make @command{cp} act as if @samp{no} were +given as a response to every prompt about a destination file. +Specify @option{--reply=query} to make @command{cp} prompt the user +about each existing destination file. + +@item -R +@itemx -r +@itemx --recursive +@opindex -R +@opindex -r +@opindex --recursive +@cindex directories, copying recursively +@cindex copying directories recursively +@cindex recursively copying directories +@cindex non-directories, copying as special files +Copy directories recursively. Symbolic links are not followed by +default; see the @option{--archive} (@option{-a}), @option{-d}, +@option{--dereference} (@option{-L}), @option{--no-dereference} +(@option{-P}), and @option{-H} options. Special files are copied by +creating a destination file of the same type as the source; see the +@option{--copy-contents} option. It is not portable to use +@option{-r} to copy symbolic links or special files. On some +non-@sc{gnu} systems, @option{-r} implies the equivalent of +@option{-L} and @option{--copy-contents} for historical reasons. +Also, it is not portable to use @option{-R} to copy symbolic links +unless you also specify @option{-P}, as @acronym{POSIX} allows +implementations that dereference symbolic links by default. + +@item --remove-destination +@opindex --remove-destination +Remove each existing destination file before attempting to open it +(contrast with @option{-f} above). + +@item --sparse=@var{when} +@opindex --sparse=@var{when} +@cindex sparse files, copying +@cindex holes, copying files with +@findex read @r{system call, and holes} +A @dfn{sparse file} contains @dfn{holes}---a sequence of zero bytes that +does not occupy any physical disk blocks; the @samp{read} system call +reads these as zeroes. This can both save considerable disk space and +increase speed, since many binary files contain lots of consecutive zero +bytes. By default, @command{cp} detects holes in input source files via a crude +heuristic and makes the corresponding output file sparse as well. + +The @var{when} value can be one of the following: +@table @samp +@item auto +The default behavior: the output file is sparse if the input file is sparse. + +@item always +Always make the output file sparse. This is useful when the input +file resides on a filesystem that does not support sparse files (the +most notable example is @samp{efs} filesystems in SGI IRIX 5.3 and +earlier), but the output file is on another type of filesystem. + +@item never +Never make the output file sparse. +This is useful in creating a file for use with the @command{mkswap} command, +since such a file must not have any holes. +@end table + +@itemx @w{@kbd{--strip-trailing-slashes}} +@opindex --strip-trailing-slashes +@cindex stripping trailing slashes +Remove any trailing slashes from each @var{source} argument. +@xref{Trailing slashes}. + +@item -s +@itemx --symbolic-link +@opindex -s +@opindex --symbolic-link +@cindex symbolic links, copying with +Make symbolic links instead of copies of non-directories. All source +file names must be absolute (starting with @samp{/}) unless the +destination files are in the current directory. This option merely +results in an error message on systems that do not support symbolic links. + +@item -S @var{suffix} +@itemx --suffix=@var{suffix} +@opindex -S +@opindex --suffix +Append @var{suffix} to each backup file made with @option{-b}. +@xref{Backup options}. + +@itemx @w{@kbd{--target-directory}=@var{directory}} +@opindex --target-directory +@cindex target directory +@cindex destination directory +Specify the destination @var{directory}. +@xref{Target directory}. + +@item -v +@itemx --verbose +@opindex -v +@opindex --verbose +Print the name of each file before copying it. + +@item -V @var{method} +@itemx --version-control=@var{method} +@opindex -V +@opindex --version-control +Change the type of backups made with @option{-b}. The @var{method} +argument can be @samp{none} (or @samp{off}), @samp{numbered} (or +@samp{t}), @samp{existing} (or @samp{nil}), or @samp{never} (or +@samp{simple}). @xref{Backup options}. + +@item -x +@itemx --one-file-system +@opindex -x +@opindex --one-file-system +@cindex filesystems, omitting copying to different +Skip subdirectories that are on different filesystems from the one that +the copy started on. +However, mount point directories @emph{are} copied. + +@end table + + +@node dd invocation +@section @command{dd}: Convert and copy a file + +@pindex dd +@cindex converting while copying a file + +@command{dd} copies a file (from standard input to standard output, by +default) with a changeable I/O block size, while optionally performing +conversions on it. Synopsis: + +@example +dd [@var{option}]@dots{} +@end example + +The program accepts the following options. Also see @ref{Common options}. + +@cindex multipliers after numbers +The numeric-valued options below (@var{bytes} and @var{blocks}) can be +followed by a multiplier: @samp{b}=512, @samp{c}=1, +@samp{w}=2, @samp{x@var{m}}=@var{m}, or any of the +standard block size suffixes like @samp{k}=1024 (@pxref{Block size}). + +Use different @command{dd} invocations to use different block sizes for +skipping and I/O. For example, the following shell commands copy data +in 512 KiB blocks between a disk and a tape, but do not save or restore a +4 KiB label at the start of the disk: + +@example +disk=/dev/rdsk/c0t1d0s2 +tape=/dev/rmt/0 + +# Copy all but the label from disk to tape. +(dd bs=4k skip=1 count=0 && dd bs=512k) <$disk >$tape + +# Copy from tape back to disk, but leave the disk label alone. +(dd bs=4k seek=1 count=0 && dd bs=512k) <$tape >$disk +@end example + +@table @samp + +@item if=@var{file} +@opindex if +Read from @var{file} instead of standard input. + +@item of=@var{file} +@opindex of +Write to @var{file} instead of standard output. Unless +@samp{conv=notrunc} is given, @command{dd} truncates @var{file} to zero +bytes (or the size specified with @samp{seek=}). + +@item ibs=@var{bytes} +@opindex ibs +@cindex block size of input +@cindex input block size +Read @var{bytes} bytes at a time. + +@item obs=@var{bytes} +@opindex obs +@cindex block size of output +@cindex output block size +Write @var{bytes} bytes at a time. + +@item bs=@var{bytes} +@opindex bs +@cindex block size +Both read and write @var{bytes} bytes at a time. This overrides +@samp{ibs} and @samp{obs}. + +@item cbs=@var{bytes} +@opindex cbs +@cindex block size of conversion +@cindex conversion block size +Convert @var{bytes} bytes at a time. + +@item skip=@var{blocks} +@opindex skip +Skip @var{blocks} @samp{ibs}-byte blocks in the input file before copying. + +@item seek=@var{blocks} +@opindex seek +Skip @var{blocks} @samp{obs}-byte blocks in the output file before copying. + +@item count=@var{blocks} +@opindex count +Copy @var{blocks} @samp{ibs}-byte blocks from the input file, instead +of everything until the end of the file. + +@item conv=@var{conversion}[,@var{conversion}]@dots{} +@opindex conv +Convert the file as specified by the @var{conversion} argument(s). +(No spaces around any comma(s).) + +Conversions: + +@table @samp + +@item ascii +@opindex ascii@r{, converting to} +Convert @acronym{EBCDIC} to @acronym{ASCII}. + +@item ebcdic +@opindex ebcdic@r{, converting to} +Convert @acronym{ASCII} to @acronym{EBCDIC}. + +@item ibm +@opindex alternate ebcdic@r{, converting to} +Convert @acronym{ASCII} to alternate @acronym{EBCDIC}. + +@item block +@opindex block @r{(space-padding)} +For each line in the input, output @samp{cbs} bytes, replacing the +input newline with a space and padding with spaces as necessary. + +@item unblock +@opindex unblock +Replace trailing spaces in each @samp{cbs}-sized input block with a +newline. + +@item lcase +@opindex lcase@r{, converting to} +Change uppercase letters to lowercase. + +@item ucase +@opindex ucase@r{, converting to} +Change lowercase letters to uppercase. + +@item swab +@opindex swab @r{(byte-swapping)} +@cindex byte-swapping +Swap every pair of input bytes. @sc{gnu} @command{dd}, unlike others, works +when an odd number of bytes are read---the last byte is simply copied +(since there is nothing to swap it with). + +@item noerror +@opindex noerror +@cindex read errors, ignoring +Continue after read errors. + +@item notrunc +@opindex notrunc +@cindex truncating output file, avoiding +Do not truncate the output file. + +@item sync +@opindex sync @r{(padding with nulls)} +Pad every input block to size of @samp{ibs} with trailing zero bytes. +When used with @samp{block} or @samp{unblock}, pad with spaces instead of +zero bytes. +@end table + +@end table + + +@node install invocation +@section @command{install}: Copy files and set attributes + +@pindex install +@cindex copying files and setting attributes + +@command{install} copies files while setting their permission modes and, if +possible, their owner and group. Synopses: + +@example +install [@var{option}]@dots{} @var{source} @var{dest} +install [@var{option}]@dots{} @var{source}@dots{} @var{directory} +install -d [@var{option}]@dots{} @var{directory}@dots{} +@end example + +In the first of these, the @var{source} file is copied to the @var{dest} +target file. In the second, each of the @var{source} files are copied +to the destination @var{directory}. In the last, each @var{directory} +(and any missing parent directories) is created. + +@cindex Makefiles, installing programs in +@command{install} is similar to @command{cp}, but allows you to control the +attributes of destination files. It is typically used in Makefiles to +copy programs into their destination directories. It refuses to copy +files onto themselves. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -b +@itemx @w{@kbd{--backup}[=@var{method}]} +@opindex -b +@opindex --backup +@vindex VERSION_CONTROL +@cindex backups, making +@xref{Backup options}. +Make a backup of each file that would otherwise be overwritten or removed. + +@item -c +@opindex -c +Ignored; for compatibility with old Unix versions of @command{install}. + +@item -d +@itemx --directory +@opindex -d +@opindex --directory +@cindex directories, creating with given attributes +@cindex parent directories, creating missing +@cindex leading directories, creating missing +Create each given directory and any missing parent directories, setting +the owner, group and mode as given on the command line or to the +defaults. It also gives any parent directories it creates those +attributes. (This is different from the SunOS 4.x @command{install}, which +gives directories that it creates the default attributes.) + +@item -g @var{group} +@itemx --group=@var{group} +@opindex -g +@opindex --group +@cindex group ownership of installed files, setting +Set the group ownership of installed files or directories to +@var{group}. The default is the process' current group. @var{group} +may be either a group name or a numeric group id. + +@item -m @var{mode} +@itemx --mode=@var{mode} +@opindex -m +@opindex --mode +@cindex permissions of installed files, setting +Set the permissions for the installed file or directory to @var{mode}, +which can be either an octal number, or a symbolic mode as in +@command{chmod}, with 0 as the point of departure (@pxref{File +permissions}). The default mode is @samp{u=rwx,go=rx}---read, write, +and execute for the owner, and read and execute for group and other. + +@item -o @var{owner} +@itemx --owner=@var{owner} +@opindex -o +@opindex --owner +@cindex ownership of installed files, setting +@cindex appropriate privileges +@vindex root @r{as default owner} +If @command{install} has appropriate privileges (is run as root), set the +ownership of installed files or directories to @var{owner}. The default +is @code{root}. @var{owner} may be either a user name or a numeric user +ID. + +@item -p +@itemx --preserve-timestamps +@opindex -p +@opindex --preserve-timestamps +@cindex timestamps of installed files, preserving +Set the time of last access and the time of last modification of each +installed file to match those of each corresponding original file. +When a file is installed without this option, its last access and +last modification times are both set to the time of installation. +This option is useful if you want to use the last modification times +of installed files to keep track of when they were last built as opposed +to when they were last installed. + +@item -s +@itemx --strip +@opindex -s +@opindex --strip +@cindex symbol table information, stripping +@cindex stripping symbol table information +Strip the symbol tables from installed binary executables. + +@item -S @var{suffix} +@itemx --suffix=@var{suffix} +@opindex -S +@opindex --suffix +Append @var{suffix} to each backup file made with @option{-b}. +@xref{Backup options}. + +@itemx @w{@kbd{--target-directory}=@var{directory}} +@opindex --target-directory +@cindex target directory +@cindex destination directory +Specify the destination @var{directory}. +@xref{Target directory}. + +@item -v +@itemx --verbose +@opindex -v +@opindex --verbose +Print the name of each file before copying it. + +@item -V @var{method} +@itemx --version-control=@var{method} +@opindex -V +@opindex --version-control +Change the type of backups made with @option{-b}. The @var{method} +argument can be @samp{none} (or @samp{off}), @samp{numbered} (or +@samp{t}), @samp{existing} (or @samp{nil}), or @samp{never} (or +@samp{simple}). @xref{Backup options}. + +@end table + + +@node mv invocation +@section @command{mv}: Move (rename) files + +@pindex mv + +@command{mv} moves or renames files (or directories). Synopsis: + +@example +mv [@var{option}]@dots{} @var{source} @var{dest} +mv [@var{option}]@dots{} @var{source}@dots{} @var{directory} +@end example + +If the last argument names an existing directory, @command{mv} moves each +other given file into a file with the same name in that directory. +Otherwise, if only two files are given, it renames the first as +the second. It is an error if the last argument is not a directory +and more than two files are given. + +@command{mv} can move any type of file from one filesystem to another. +Prior to version @code{4.0} of the fileutils, +@command{mv} could move only regular files between filesystems. +For example, now @command{mv} can move an entire directory hierarchy +including special device files from one partition to another. It first +uses some of the same code that's used by @code{cp -a} to copy the +requested directories and files, then (assuming the copy succeeded) +it removes the originals. If the copy fails, then the part that was +copied to the destination partition is removed. If you were to copy +three directories from one partition to another and the copy of the first +directory succeeded, but the second didn't, the first would be left on +the destination partition and the second and third would be left on the +original partition. + +@cindex prompting, and @command{mv} +If a destination file exists but is normally unwritable, standard input +is a terminal, and the @option{-f} or @option{--force} option is not given, +@command{mv} prompts the user for whether to replace the file. (You might +own the file, or have write permission on its directory.) If the +response does not begin with @samp{y} or @samp{Y}, the file is skipped. + +@emph{Warning}: If you try to move a symlink that points to a directory, +and you specify the symlink with a trailing slash, then @command{mv} +doesn't move the symlink but instead moves the directory referenced +by the symlink. @xref{Trailing slashes}. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -b +@itemx @w{@kbd{--backup}[=@var{method}]} +@opindex -b +@opindex --backup +@vindex VERSION_CONTROL +@cindex backups, making +@xref{Backup options}. +Make a backup of each file that would otherwise be overwritten or removed. + +@item -f +@itemx --force +@opindex -f +@opindex --force +@cindex prompts, omitting +Do not prompt the user before removing a destination file. + +@item -i +@itemx --interactive +@opindex -i +@opindex --interactive +@cindex prompts, forcing +Prompt whether to overwrite each existing destination file, regardless +of its permissions. If the response does not begin with @samp{y} or +@samp{Y}, the file is skipped. + +@itemx @w{@kbd{--reply}[=@var{how}]} +@opindex --reply +@cindex interactivity +Specifying @option{--reply=yes} is equivalent to using @option{--force}. +Specify @option{--reply=no} to make @command{mv} act as if @samp{no} were +given as a response to every prompt about a destination file. +Specify @option{--reply=query} to make @command{mv} prompt the user +about each existing destination file. + +@item -u +@itemx --update +@opindex -u +@opindex --update +@cindex newer files, moving only +Do not move a non-directory that has an existing destination with the +same or newer modification time. + +@item -v +@itemx --verbose +@opindex -v +@opindex --verbose +Print the name of each file before moving it. + +@itemx @w{@kbd{--strip-trailing-slashes}} +@opindex --strip-trailing-slashes +@cindex stripping trailing slashes +Remove any trailing slashes from each @var{source} argument. +@xref{Trailing slashes}. + +@item -S @var{suffix} +@itemx --suffix=@var{suffix} +@opindex -S +@opindex --suffix +Append @var{suffix} to each backup file made with @option{-b}. +@xref{Backup options}. + +@itemx @w{@kbd{--target-directory}=@var{directory}} +@opindex --target-directory +@cindex target directory +@cindex destination directory +Specify the destination @var{directory}. +@xref{Target directory}. + +@item -V @var{method} +@itemx --version-control=@var{method} +@opindex -V +@opindex --version-control +Change the type of backups made with @option{-b}. The @var{method} +argument can be @samp{none} (or @samp{off}), @samp{numbered} (or +@samp{t}), @samp{existing} (or @samp{nil}), or @samp{never} (or +@samp{simple}). @xref{Backup options}. + +@end table + + +@node rm invocation +@section @command{rm}: Remove files or directories + +@pindex rm +@cindex removing files or directories + +@command{rm} removes each given @var{file}. By default, it does not remove +directories. Synopsis: + +@example +rm [@var{option}]@dots{} [@var{file}]@dots{} +@end example + +@cindex prompting, and @command{rm} +If a file is unwritable, standard input is a terminal, and the @option{-f} +or @option{--force} option is not given, or the @option{-i} or +@option{--interactive} option @emph{is} given, @command{rm} prompts the user +for whether to remove the file. If the response does not begin with +@samp{y} or @samp{Y}, the file is skipped. + +@emph{Warning}: If you use @command{rm} to remove a file, it is usually +possible to recover the contents of that file. If you want more assurance +that the contents are truly unrecoverable, consider using @command{shred}. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -d +@itemx --directory +@opindex -d +@opindex --directory +@cindex directories, removing with @code{unlink} +@findex unlink +@pindex fsck +Attempt to remove directories using the @code{unlink} function rather than +the @code{rmdir} function, and +don't require a directory to be empty before trying to unlink it. This works +only if you have appropriate privileges and if your operating system supports +@code{unlink} for directories. Because unlinking a directory causes any files +in the deleted directory to become unreferenced, it is wise to @command{fsck} +the filesystem after doing this. + +@item -f +@itemx --force +@opindex -f +@opindex --force +Ignore nonexistent files and never prompt the user. +Ignore any previous @option{--interactive} (@option{-i}) option. + +@item -i +@itemx --interactive +@opindex -i +@opindex --interactive +Prompt whether to remove each file. If the response does not begin +with @samp{y} or @samp{Y}, the file is skipped. +Ignore any previous @option{--force} (@option{-f}) option. + +@item -r +@itemx -R +@itemx --recursive +@opindex -r +@opindex -R +@opindex --recursive +@cindex directories, removing (recursively) +Remove the contents of directories recursively. + +@item -v +@itemx --verbose +@opindex -v +@opindex --verbose +Print the name of each file before removing it. + +@end table + +@cindex files beginning with @samp{-}, removing +@cindex @samp{-}, removing files beginning with +One common question is how to remove files whose names begin with a +@samp{-}. @sc{gnu} @command{rm}, like every program that uses the @code{getopt} +function to parse its arguments, lets you use the @samp{--} option to +indicate that all following arguments are non-options. To remove a file +called @file{-f} in the current directory, you could type either: + +@example +rm -- -f +@end example + +@noindent +or: + +@example +rm ./-f +@end example + +@opindex - @r{and Unix @command{rm}} +The Unix @command{rm} program's use of a single @samp{-} for this purpose +predates the development of the getopt standard syntax. + + +@node shred invocation +@section @command{shred}: Remove files more securely + +@pindex shred +@cindex data, erasing +@cindex erasing data + +@command{shred} overwrites devices or files, to help prevent even +very expensive hardware from recovering the data. + +Ordinarily when you remove a file (@pxref{rm invocation}), the data is +not actually destroyed. Only the index listing where the file is +stored is destroyed, and the storage is made available for reuse. +There are undelete utilities that will attempt to reconstruct the index +and can bring the file back if the parts were not reused. + +On a busy system with a nearly-full drive, space can get reused in a few +seconds. But there is no way to know for sure. If you have sensitive +data, you may want to be sure that recovery is not possible by actually +overwriting the file with non-sensitive data. + +However, even after doing that, it is possible to take the disk back +to a laboratory and use a lot of sensitive (and expensive) equipment +to look for the faint ``echoes'' of the original data underneath the +overwritten data. If the data has only been overwritten once, it's not +even that hard. + +The best way to remove something irretrievably is to destroy the media +it's on with acid, melt it down, or the like. For cheap removable media +like floppy disks, this is the preferred method. However, hard drives +are expensive and hard to melt, so the @command{shred} utility tries +to achieve a similar effect non-destructively. + +This uses many overwrite passes, with the data patterns chosen to +maximize the damage they do to the old data. While this will work on +floppies, the patterns are designed for best effect on hard drives. +For more details, see the source code and Peter Gutmann's paper +@cite{Secure Deletion of Data from Magnetic and Solid-State Memory}, +from the proceedings of the Sixth USENIX Security Symposium (San Jose, +California, 22--25 July, 1996). The paper is also available online +@url{http://www.cs.auckland.ac.nz/~pgut001/pubs/secure_del.html}. + +@strong{Please note} that @command{shred} relies on a very important assumption: +that the filesystem overwrites data in place. This is the traditional +way to do things, but many modern filesystem designs do not satisfy this +assumption. Exceptions include: + +@itemize @bullet + +@item +Log-structured or journaled filesystems, such as those supplied with +AIX and Solaris, and JFS, ReiserFS, XFS, Ext3, etc. + +@item +Filesystems that write redundant data and carry on even if some writes +fail, such as RAID-based filesystems. + +@item +Filesystems that make snapshots, such as Network Appliance's NFS server. + +@item +Filesystems that cache in temporary locations, such as NFS version 3 +clients. + +@item +Compressed filesystems. +@end itemize + +If you are not sure how your filesystem operates, then you should assume +that it does not overwrite data in place, which means that shred cannot +reliably operate on regular files in your filesystem. + +Generally speaking, it is more reliable to shred a device than a file, +since this bypasses the problem of filesystem design mentioned above. +However, even shredding devices is not always completely reliable. For +example, most disks map out bad sectors invisibly to the application; if +the bad sectors contain sensitive data, @command{shred} won't be able to +destroy it. + +@command{shred} makes no attempt to detect or report this problem, just as +it makes no attempt to do anything about backups. However, since it is +more reliable to shred devices than files, @command{shred} by default does +not truncate or remove the output file. This default is more suitable +for devices, which typically cannot be truncated and should not be +removed. + +Finally, consider the risk of backups and mirrors. +File system backups and remote mirrors may contain copies of the +file that cannot be removed, and that will allow a shredded file +to be recovered later. So if you keep any data you may later want +to destroy using @command{shred}, be sure that it is not backed up or mirrored. + +@example +shred [@var{option}]@dots{} @var{file}[@dots{}] +@end example + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -f +@itemx --force +@opindex -f +@opindex --force +@cindex force deletion +Override file permissions if necessary to allow overwriting. + +@item -@var{NUMBER} +@itemx -n @var{NUMBER} +@itemx --iterations=@var{NUMBER} +@opindex -n @var{NUMBER} +@opindex --iterations=@var{NUMBER} +@cindex iterations, selecting the number of +By default, @command{shred} uses 25 passes of overwrite. This is enough +for all of the useful overwrite patterns to be used at least once. +You can reduce this to save time, or increase it if you have a lot of +time to waste. + +@item -s @var{BYTES} +@itemx --size=@var{BYTES} +@opindex -s @var{BYTES} +@opindex --size=@var{BYTES} +@cindex size of file to shred +Shred the first @var{BYTES} bytes of the file. The default is to shred +the whole file. @var{BYTES} can be followed by a size specification like +@samp{K}, @samp{M}, or @samp{G} to specify a multiple. @xref{Block size}. + +@item -u +@itemx --remove +@opindex -u +@opindex --remove +@cindex removing files after shredding +After shredding a file, truncate it (if possible) and then remove it. +If a file has multiple links, only the named links will be removed. + +@item -v +@itemx --verbose +@opindex -v +@opindex --verbose +Display status updates as sterilization proceeds. + +@item -x +@itemx --exact +@opindex -x +@opindex --exact +By default, @command{shred} rounds the size of a regular file up to the next +multiple of the filesystem block size to fully erase the last block of the file. +Use @option{--exact} to suppress that behavior. +Thus, by default if you shred a 10-byte regular file on a system with 512-byte +blocks, the resulting file will be 512 bytes long. With this option, +shred does not increase the apparent size of the file. + +@item -z +@itemx --zero +@opindex -z +@opindex --zero +Normally, the last pass that @command{shred} writes is made up of +random data. If this would be conspicuous on your hard drive (for +example, because it looks like encrypted data), or you just think +it's tidier, the @option{--zero} option adds an additional overwrite pass with +all zero bits. This is in addition to the number of passes specified +by the @option{--iterations} option. + +@item - +@opindex - +Shred standard output. + +This argument is considered an option. If the common @samp{--} option has +been used to indicate the end of options on the command line, then @samp{-} +will be interpreted as an ordinary file name. + +The intended use of this is to shred a removed temporary file. +For example + +@example +i=`tempfile -m 0600` +exec 3<>"$i" +rm -- "$i" +echo "Hello, world" >&3 +shred - >&3 +exec 3>- +@end example + +Note that the shell command @samp{shred - >file} does not shred the +contents of @var{file}, since it truncates @var{file} before invoking +@command{shred}. Use the command @samp{shred file} or (if using a +Bourne-compatible shell) the command @samp{shred - 1<>file} instead. + +@end table + +You might use the following command to erase all trace of the +filesystem you'd created on the floppy disk in your first drive. +That command takes about 20 minutes to erase a ``1.44MB'' (actually +1440 KiB) floppy. + +@example +shred --verbose /dev/fd0 +@end example + +Similarly, to erase all data on a selected partition of +your hard disk, you could give a command like this: + +@example +shred --verbose /dev/sda5 +@end example + +@node Special file types +@chapter Special file types + +@cindex special file types +@cindex file types, special + +This chapter describes commands which create special types of files (and +@command{rmdir}, which removes directories, one special file type). + +@cindex special file types +@cindex file types +Although Unix-like operating systems have markedly fewer special file +types than others, not @emph{everything} can be treated only as the +undifferentiated byte stream of @dfn{normal files}. For example, when a +file is created or removed, the system must record this information, +which it does in a @dfn{directory}---a special type of file. Although +you can read directories as normal files, if you're curious, in order +for the system to do its job it must impose a structure, a certain +order, on the bytes of the file. Thus it is a ``special'' type of file. + +Besides directories, other special file types include named pipes +(FIFOs), symbolic links, sockets, and so-called @dfn{special files}. + +@menu +* link invocation:: Make a hard link via the link syscall +* ln invocation:: Make links between files. +* mkdir invocation:: Make directories. +* mkfifo invocation:: Make FIFOs (named pipes). +* mknod invocation:: Make block or character special files. +* readlink invocation:: Print the referent of a symbolic link. +* rmdir invocation:: Remove empty directories. +* unlink invocation:: Remove files via the unlink syscall +@end menu + + +@node link invocation +@section @command{link}: Make a hard link via the link syscall + +@pindex link +@cindex links, creating +@cindex hard links, creating +@cindex creating links (hard only) + +@command{link} creates a single hard link at a time. +It is a minimalist interface to the system-provided +@code{link} function. @xref{Hard Links, , , libc, +The GNU C Library Reference Manual}. +Synopsis: + +@example +link @var{filename} @var{linkname} +@end example + +@var{filename} must specify an existing file, and @var{linkname} +must specify a nonexistent entry in an existing directory. +@command{link} simply calls @code{link (@var{filename}, @var{linkname})} +to create the link. + +@node ln invocation +@section @command{ln}: Make links between files + +@pindex ln +@cindex links, creating +@cindex hard links, creating +@cindex symbolic (soft) links, creating +@cindex creating links (hard or soft) + +@cindex filesystems and hard links +@command{ln} makes links between files. By default, it makes hard links; +with the @option{-s} option, it makes symbolic (or @dfn{soft}) links. +Synopses: + +@example +ln [@var{option}]@dots{} @var{target} [@var{linkname}] +ln [@var{option}]@dots{} @var{target}@dots{} @var{directory} +@end example + +@itemize @bullet + +@item If the last argument names an existing directory, @command{ln} creates a +link to each @var{target} file in that directory, using the +@var{target}s' names. (But see the description of the +@option{--no-dereference} option below.) + +@item If two filenames are given, @command{ln} creates a link from the +second to the first. + +@item If one @var{target} is given, @command{ln} creates a link to that +file in the current directory. + +@item It is an error if the last argument is not a directory and more +than two files are given. Without @option{-f} or @option{-i} (see below), +@command{ln} will not remove an existing file. Use the @option{--backup} +option to make @command{ln} rename existing files. + +@end itemize + +@cindex hard link, defined +@cindex inode, and hard links +A @dfn{hard link} is another name for an existing file; the link and the +original are indistinguishable. Technically speaking, they share the +same inode, and the inode contains all the information about a +file---indeed, it is not incorrect to say that the inode @emph{is} the +file. On all existing implementations, you cannot make a hard link to +a directory, and hard links cannot cross filesystem boundaries. (These +restrictions are not mandated by @acronym{POSIX}, however.) + +@cindex dereferencing symbolic links +@cindex symbolic link, defined +@dfn{Symbolic links} (@dfn{symlinks} for short), on the other hand, are +a special file type (which not all kernels support: System V release 3 +(and older) systems lack symlinks) in which the link file actually +refers to a different file, by name. When most operations (opening, +reading, writing, and so on) are passed the symbolic link file, the +kernel automatically @dfn{dereferences} the link and operates on the +target of the link. But some operations (e.g., removing) work on the +link file itself, rather than on its target. @xref{Symbolic Links,,, +libc, The GNU C Library Reference Manual}. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -b +@itemx @w{@kbd{--backup}[=@var{method}]} +@opindex -b +@opindex --backup +@vindex VERSION_CONTROL +@cindex backups, making +@xref{Backup options}. +Make a backup of each file that would otherwise be overwritten or removed. + +@item -d +@itemx -F +@itemx --directory +@opindex -d +@opindex -F +@opindex --directory +@cindex hard links to directories +Allow the super-user to make hard links to directories. + +@item -f +@itemx --force +@opindex -f +@opindex --force +Remove existing destination files. + +@item -i +@itemx --interactive +@opindex -i +@opindex --interactive +@cindex prompting, and @command{ln} +Prompt whether to remove existing destination files. + +@item -n +@itemx --no-dereference +@opindex -n +@opindex --no-dereference +When given an explicit destination that is a symlink to a directory, +treat that destination as if it were a normal file. + +When the destination is an actual directory (not a symlink to one), +there is no ambiguity. The link is created in that directory. +But when the specified destination is a symlink to a directory, +there are two ways to treat the user's request. @command{ln} can +treat the destination just as it would a normal directory and create +the link in it. On the other hand, the destination can be viewed as a +non-directory---as the symlink itself. In that case, @command{ln} +must delete or backup that symlink before creating the new link. +The default is to treat a destination that is a symlink to a directory +just like a directory. + +@item -s +@itemx --symbolic +@opindex -s +@opindex --symbolic +Make symbolic links instead of hard links. This option merely produces +an error message on systems that do not support symbolic links. + +@item -S @var{suffix} +@itemx --suffix=@var{suffix} +@opindex -S +@opindex --suffix +Append @var{suffix} to each backup file made with @option{-b}. +@xref{Backup options}. + +@itemx @w{@kbd{--target-directory}=@var{directory}} +@opindex --target-directory +@cindex target directory +@cindex destination directory +Specify the destination @var{directory}. +@xref{Target directory}. + +@item -v +@itemx --verbose +@opindex -v +@opindex --verbose +Print the name of each file before linking it. + +@item -V @var{method} +@itemx --version-control=@var{method} +@opindex -V +@opindex --version-control +Change the type of backups made with @option{-b}. The @var{method} +argument can be @samp{none} (or @samp{off}), @samp{numbered} (or +@samp{t}), @samp{existing} (or @samp{nil}), or @samp{never} (or +@samp{simple}). @xref{Backup options}. + +@end table + +Examples: + +@smallexample +ln -s /some/name # creates link ./name pointing to /some/name +ln -s /some/name myname # creates link ./myname pointing to /some/name +ln -s a b .. # creates links ../a and ../b pointing to ./a and ./b +@end smallexample + + +@node mkdir invocation +@section @command{mkdir}: Make directories + +@pindex mkdir +@cindex directories, creating +@cindex creating directories + +@command{mkdir} creates directories with the specified names. Synopsis: + +@example +mkdir [@var{option}]@dots{} @var{name}@dots{} +@end example + +If a @var{name} is an existing file but not a directory, @command{mkdir} prints a +warning message on stderr and will exit with a status of 1 after +processing any remaining @var{name}s. The same is done when a @var{name} is an +existing directory and the -p option is not given. If a @var{name} is an +existing directory and the -p option is given, @command{mkdir} will ignore it. +That is, @command{mkdir} will not print a warning, raise an error, or change +the mode of the directory (even if the -m option is given), and will +move on to processing any remaining @var{name}s. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -m @var{mode} +@itemx --mode=@var{mode} +@opindex -m +@opindex --mode +@cindex modes of created directories, setting +Set the mode of created directories to @var{mode}, which is symbolic as +in @command{chmod} and uses @samp{a=rwx} (read, write and execute allowed for +everyone) minus the bits set in the umask for the point of the +departure. @xref{File permissions}. + +@item -p +@itemx --parents +@opindex -p +@opindex --parents +@cindex parent directories, creating +Make any missing parent directories for each argument. The mode for parent +directories is set to the umask modified by @samp{u+wx}. +Ignore arguments corresponding to existing directories. + +@item -v +@item --verbose +@opindex -v +@opindex --verbose +Print a message for each created directory. This is most useful with +@option{--parents}. +@end table + + +@node mkfifo invocation +@section @command{mkfifo}: Make FIFOs (named pipes) + +@pindex mkfifo +@cindex FIFOs, creating +@cindex named pipes, creating +@cindex creating FIFOs (named pipes) + +@command{mkfifo} creates FIFOs (also called @dfn{named pipes}) with the +specified names. Synopsis: + +@example +mkfifo [@var{option}] @var{name}@dots{} +@end example + +A @dfn{FIFO} is a special file type that permits independent processes +to communicate. One process opens the FIFO file for writing, and +another for reading, after which data can flow as with the usual +anonymous pipe in shells or elsewhere. + +The program accepts the following option. Also see @ref{Common options}. + +@table @samp + +@item -m @var{mode} +@itemx --mode=@var{mode} +@opindex -m +@opindex --mode +@cindex modes of created FIFOs, setting +Set the mode of created FIFOs to @var{mode}, which is symbolic as in +@command{chmod} and uses @samp{a=rw} (read and write allowed for everyone) minus +the bits set in the umask for the point of departure. @xref{File permissions}. + +@end table + + +@node mknod invocation +@section @command{mknod}: Make block or character special files + +@pindex mknod +@cindex block special files, creating +@cindex character special files, creating + +@command{mknod} creates a FIFO, character special file, or block special +file with the specified name. Synopsis: + +@example +mknod [@var{option}]@dots{} @var{name} @var{type} [@var{major} @var{minor}] +@end example + +@cindex special files +@cindex block special files +@cindex character special files +Unlike the phrase ``special file type'' above, the term @dfn{special +file} has a technical meaning on Unix: something that can generate or +receive data. Usually this corresponds to a physical piece of hardware, +e.g., a printer or a disk. (These files are typically created at +system-configuration time.) The @command{mknod} command is what creates +files of this type. Such devices can be read either a character at a +time or a ``block'' (many characters) at a time, hence we say there are +@dfn{block special} files and @dfn{character special} files. + +The arguments after @var{name} specify the type of file to make: + +@table @samp + +@item p +@opindex p @r{for FIFO file} +for a FIFO + +@item b +@opindex b @r{for block special file} +for a block special file + +@item c +@c Don't document the `u' option -- it's just a synonym for `c'. +@c Do *any* versions of mknod still use it? +@c @itemx u +@opindex c @r{for character special file} +@c @opindex u @r{for character special file} +for a character special file + +@end table + +When making a block or character special file, the major and minor +device numbers must be given after the file type. +If a major or minor device number begins with @samp{0x} or @samp{0X}, +it is interpreted as hexadecimal; otherwise, if it begins with @samp{0}, +as octal; otherwise, as decimal. + +The program accepts the following option. Also see @ref{Common options}. + +@table @samp + +@item -m @var{mode} +@itemx --mode=@var{mode} +@opindex -m +@opindex --mode +Set the mode of created files to @var{mode}, which is symbolic as in +@command{chmod} and uses @samp{a=rw} minus the bits set in the umask as the point +of departure. @xref{File permissions}. + +@end table + + +@node readlink invocation +@section @command{readlink}: Print the referent of a symbolic link + +@pindex readlink +@cindex displaying value of a symbolic link + +@command{readlink} may work in one of two supported modes: + +@table @samp + +@item Readlink mode + +@command{readlink} outputs the value of the given symbolic link. +If @command{readlink} is invoked with an argument other than the pathname +of a symbolic link, it exits with a non-zero exit code. + +@item Canonicalize mode + +@command{readlink} outputs the absolute name of the given file which contains +no `.', `..' components nor any repeated path separators (`/') or symlinks. +In any of the path components is missing or unavailable, +it exits with a non-zero exit code. + +@end table + +@example +readlink [@var{option}] @var{file} +@end example + +By default, @command{readlink} operates in readlink mode. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -f +@itemx --canonicalize +@opindex -f +@opindex --canonicalize +Activate canonicalize mode. + +@item -n +@itemx --no-newline +@opindex -n +@opindex --no-newline +Do not output the trailing newline. + +@item -s +@itemx -q +@itemx --silent +@itemx --quiet +@opindex -s +@opindex -q +@opindex --silent +@opindex --quiet +Suppress most error messages. + +@item -v +@itemx --verbose +@opindex -v +@opindex --verbose +Report error messages. + +@end table + +The @command{readlink} utility first appeared in OpenBSD 2.1. + + +@node rmdir invocation +@section @command{rmdir}: Remove empty directories + +@pindex rmdir +@cindex removing empty directories +@cindex directories, removing empty + +@command{rmdir} removes empty directories. Synopsis: + +@example +rmdir [@var{option}]@dots{} @var{directory}@dots{} +@end example + +If any @var{directory} argument does not refer to an existing empty +directory, it is an error. + +The program accepts the following option. Also see @ref{Common options}. + +@table @samp + +@item --ignore-fail-on-non-empty +@opindex --ignore-fail-on-non-empty +@cindex directory deletion, ignoring failures +Ignore each failure to remove a directory that is solely because +the directory is non-empty. + +@item -p +@itemx --parents +@opindex -p +@opindex --parents +@cindex parent directories, removing +Remove @var{directory}, then try to remove each component of @var{directory}. +So, for example, @samp{rmdir -p a/b/c} is similar to @samp{rmdir a/b/c a/b a}. +As such, it fails if any of those directories turns out not to be empty. +Use the @option{--ignore-fail-on-non-empty} option to make it so such +a failure does not evoke a diagnostic and does not cause @command{rmdir} to +exit unsuccessfully. + +@item -v +@item --verbose +@opindex -v +@opindex --verbose +@cindex directory deletion, reporting +Give a diagnostic for each successful removal. +@var{directory} is removed. + +@end table + +@xref{rm invocation}, for how to remove non-empty directories (recursively). + +@node unlink invocation +@section @command{unlink}: Remove files via the unlink syscall + +@pindex unlink +@cindex removing files or directories (via the unlink syscall) + +@command{unlink} deletes a single specified file name. +It is a minimalist interface to the system-provided +@code{unlink} function. @xref{Deleting Files, , , libc, +The GNU C Library Reference Manual}. Synopsis: + +@example +unlink @var{filename} +@end example + +On some systems @code{unlink} can be used to delete the name of a +directory. On others, it can be used that way only by a privileged user. +In the GNU system @code{unlink} can never delete the name of a directory. + +By default, @command{unlink} honors the @option{--help} and @option{--version} +options. That makes it a little harder to remove files named +@code{--help} and @code{--version}, so when the environment variable +@env{POSIXLY_CORRECT} is set, @command{unlink} treats such a command line +arguments not as an option, but as an operand. + + +@node Changing file attributes +@chapter Changing file attributes + +@cindex changing file attributes +@cindex file attributes, changing +@cindex attributes, file + +A file is not merely its contents, a name, and a file type +(@pxref{Special file types}). A file also has an owner (a userid), a +group (a group id), permissions (what the owner can do with the file, +what people in the group can do, and what everyone else can do), various +timestamps, and other information. Collectively, we call these a file's +@dfn{attributes}. + +These commands change file attributes. + +@menu +* chgrp invocation:: Change file groups. +* chmod invocation:: Change access permissions. +* chown invocation:: Change file owners and groups. +* touch invocation:: Change file timestamps. +@end menu + + +@node chown invocation +@section @command{chown}: Change file owner and group + +@pindex chown +@cindex file ownership, changing +@cindex group ownership, changing +@cindex changing file ownership +@cindex changing group ownership + +@command{chown} changes the user and/or group ownership of each given @var{file} +to @var{new-owner} or to the user and group of an existing reference file. +Synopsis: + +@example +chown [@var{option}]@dots{} @{@var{new-owner} | --reference=@var{ref_file}@} @var{file}@dots{} +@end example + +If used, @var{new-owner} specifies the new owner and/or group as follows +(with no embedded white space): + +@example +[@var{owner}] [ [:] [@var{group}] ] +@end example + +Specifically: + +@table @var +@item owner +If only an @var{owner} (a user name or numeric user id) is given, that +user is made the owner of each given file, and the files' group is not +changed. + +@itemx owner@samp{:}group +If the @var{owner} is followed by a colon and a @var{group} (a +group name or numeric group id), with no spaces between them, the group +ownership of the files is changed as well (to @var{group}). + +@itemx owner@samp{:} +If a colon but no group name follows @var{owner}, that user is +made the owner of the files and the group of the files is changed to +@var{owner}'s login group. + +@itemx @samp{:}group +If the colon and following @var{group} are given, but the owner +is omitted, only the group of the files is changed; in this case, +@command{chown} performs the same function as @command{chgrp}. + +@end table + +You may use @samp{.} in place of the @samp{:} separator. This is a +@sc{gnu} extension for compatibility with older scripts. +New scripts should avoid the use of @samp{.} because @sc{gnu} @command{chown} +may fail if @var{owner} contains @samp{.} characters. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -c +@itemx --changes +@opindex -c +@opindex --changes +@cindex changed owners, verbosely describing +Verbosely describe the action for each @var{file} whose ownership +actually changes. + +@item -f +@itemx --silent +@itemx --quiet +@opindex -f +@opindex --silent +@opindex --quiet +@cindex error messages, omitting +Do not print error messages about files whose ownership cannot be +changed. + +@itemx @w{@kbd{--from}=@var{old-owner}} +@opindex --from +@cindex symbolic links, changing owner +Change a @var{file}'s ownership only if it has current attributes specified +by @var{old-owner}. @var{old-owner} has the same form as @var{new-owner} +described above. +This option is useful primarily from a security standpoint in that +it narrows considerably the window of potential abuse. +For example, to reflect a UID numbering change for one user's files +without an option like this, @code{root} might run + +@smallexample +find / -owner OLDUSER -print0 | xargs -0 chown NEWUSER +@end smallexample + +But that is dangerous because the interval between when the @command{find} +tests the existing file's owner and when the @command{chown} is actually run +may be quite large. +One way to narrow the gap would be to invoke chown for each file +as it is found: + +@example +find / -owner OLDUSER -exec chown NEWUSER @{@} \; +@end example + +But that is very slow if there are many affected files. +With this option, it is safer (the gap is narrower still) +though still not perfect: + +@example +chown -R --from=OLDUSER NEWUSER / +@end example + +@item --dereference +@opindex --dereference +@cindex symbolic links, changing owner +@findex lchown +Do not act on symbolic links themselves but rather on what they point to. + +@item -h +@itemx --no-dereference +@opindex -h +@opindex --no-dereference +@cindex symbolic links, changing owner +@findex lchown +Act on symbolic links themselves instead of what they point to. +This is the default. +This mode relies on the @code{lchown} system call. +On systems that do not provide the @code{lchown} system call, +@command{chown} fails when a file specified on the command line +is a symbolic link. +By default, no diagnostic is issued for symbolic links encountered +during a recursive traversal, but see @option{--verbose}. + +@item --reference=@var{ref_file} +@opindex --reference +Change the user and group of each @var{file} to be the same as those of +@var{ref_file}. If @var{ref_file} is a symbolic link, do not use the +user and group of the symbolic link, but rather those of the file it +refers to. + +@item -v +@itemx --verbose +@opindex -v +@opindex --verbose +Output a diagnostic for every file processed. +If a symbolic link is encountered during a recursive traversal +on a system without the @code{lchown} system call, and @option{--no-dereference} +is in effect, then issue a diagnostic saying neither the symbolic link nor +its referent is being changed. + +@item -R +@itemx --recursive +@opindex -R +@opindex --recursive +@cindex recursively changing file ownership +Recursively change ownership of directories and their contents. + +@end table + + +@node chgrp invocation +@section @command{chgrp}: Change group ownership + +@pindex chgrp +@cindex group ownership, changing +@cindex changing group ownership + +@command{chgrp} changes the group ownership of each given @var{file} +to @var{group} (which can be either a group name or a numeric group id) +or to the group of an existing reference file. Synopsis: + +@example +chgrp [@var{option}]@dots{} @{@var{group} | --reference=@var{ref_file}@} @var{file}@dots{} +@end example + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -c +@itemx --changes +@opindex -c +@opindex --changes +@cindex changed files, verbosely describing +Verbosely describe the action for each @var{file} whose group actually +changes. + +@item -f +@itemx --silent +@itemx --quiet +@opindex -f +@opindex --silent +@opindex --quiet +@cindex error messages, omitting +Do not print error messages about files whose group cannot be +changed. + +@item --dereference +@opindex --dereference +@cindex symbolic links, changing owner +@findex lchown +Do not act on symbolic links themselves but rather on what they point to. + +@item -h +@itemx --no-dereference +@opindex -h +@opindex --no-dereference +@cindex symbolic links, changing group +@findex lchown +Act on symbolic links themselves instead of what they point to. +This is the default. +This mode relies on the @code{lchown} system call. +On systems that do not provide the @code{lchown} system call, +@command{chgrp} fails when a file specified on the command line +is a symbolic link. +By default, no diagnostic is issued for symbolic links encountered +during a recursive traversal, but see @option{--verbose}. + +@item --reference=@var{ref_file} +@opindex --reference +Change the group of each @var{file} to be the same as that of +@var{ref_file}. If @var{ref_file} is a symbolic link, do not use the +group of the symbolic link, but rather that of the file it refers to. + +@item -v +@itemx --verbose +@opindex -v +@opindex --verbose +Output a diagnostic for every file processed. +If a symbolic link is encountered during a recursive traversal +on a system without the @code{lchown} system call, and @option{--no-dereference} +is in effect, then issue a diagnostic saying neither the symbolic link nor +its referent is being changed. + +@item -R +@itemx --recursive +@opindex -R +@opindex --recursive +@cindex recursively changing group ownership +Recursively change the group ownership of directories and their contents. + +@end table + + +@node chmod invocation +@section @command{chmod}: Change access permissions + +@pindex chmod +@cindex changing access permissions +@cindex access permissions, changing +@cindex permissions, changing access + +@command{chmod} changes the access permissions of the named files. Synopsis: + +@example +chmod [@var{option}]@dots{} @{@var{mode} | --reference=@var{ref_file}@} @var{file}@dots{} +@end example + +@cindex symbolic links, permissions of +@command{chmod} never changes the permissions of symbolic links, since +the @command{chmod} system call cannot change their permissions. +This is not a problem since the permissions of symbolic links are +never used. However, for each symbolic link listed on the command +line, @command{chmod} changes the permissions of the pointed-to file. +In contrast, @command{chmod} ignores symbolic links encountered during +recursive directory traversals. + +If used, @var{mode} specifies the new permissions. +For details, see the section on @ref{File permissions}. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -c +@itemx --changes +@opindex -c +@opindex --changes +Verbosely describe the action for each @var{file} whose permissions +actually changes. + +@item -f +@itemx --silent +@itemx --quiet +@opindex -f +@opindex --silent +@opindex --quiet +@cindex error messages, omitting +Do not print error messages about files whose permissions cannot be +changed. + +@item -v +@itemx --verbose +@opindex -v +@opindex --verbose +Verbosely describe the action or non-action taken for every @var{file}. + +@item --reference=@var{ref_file} +@opindex --reference +Change the mode of each @var{file} to be the same as that of @var{ref_file}. +@xref{File permissions}. +If @var{ref_file} is a symbolic link, do not use the mode +of the symbolic link, but rather that of the file it refers to. + +@item -R +@itemx --recursive +@opindex -R +@opindex --recursive +@cindex recursively changing access permissions +Recursively change permissions of directories and their contents. + +@end table + + +@node touch invocation +@section @command{touch}: Change file timestamps + +@pindex touch +@cindex changing file timestamps +@cindex file timestamps, changing +@cindex timestamps, changing file + +@command{touch} changes the access and/or modification times of the +specified files. Synopsis: + +@example +touch [@var{option}]@dots{} @var{file}@dots{} +@end example + +On older systems, @command{touch} supports an obsolete syntax, as follows. +If the first @var{file} would be a valid argument to the @option{-t} +option and no timestamp is given with any of the @option{-d}, @option{-r}, +or @option{-t} options and the @samp{--} argument is not given, that +argument is interpreted as the time for the other files instead of +as a file name. @acronym{POSIX} 1003.1-2001 (@pxref{Standards conformance}) +does not allow this; use @option{-t} instead. + +@cindex empty files, creating +Any @var{file} that does not exist is created empty. + +@cindex permissions, for changing file timestamps +If changing both the access and modification times to the current +time, @command{touch} can change the timestamps for files that the user +running it does not own but has write permission for. Otherwise, the +user must own the files. + +Although @command{touch} provides options for changing two of the times -- +the times of last access and modification -- of a file, there is actually +a third one as well: the inode change time. This is often referred to +as a file's @code{ctime}. +The inode change time represents the time when the file's meta-information +last changed. One common example of this is when the permissions of a +file change. Changing the permissions doesn't access the file, so +the atime doesn't change, nor does it modify the file, so the mtime +doesn't change. Yet, something about the file itself has changed, +and this must be noted somewhere. This is the job of the ctime field. +This is necessary, so that, for example, a backup program can make a +fresh copy of the file, including the new permissions value. +Another operation that modifies a file's ctime without affecting +the others is renaming. In any case, it is not possible, in normal +operations, for a user to change the ctime field to a user-specified value. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -a +@itemx --time=atime +@itemx --time=access +@itemx --time=use +@opindex -a +@opindex --time +@opindex atime@r{, changing} +@opindex access @r{time, changing} +@opindex use @r{time, changing} +Change the access time only. + +@item -c +@itemx --no-create +@opindex -c +@opindex --no-create +Do not create files that do not exist. + +@item -d +@itemx --date=time +@opindex -d +@opindex --date +@opindex time +Use @var{time} instead of the current time. It can contain month names, +time zones, @samp{am} and @samp{pm}, etc. @xref{Date input formats}. + +@item -f +@opindex -f +@cindex BSD @command{touch} compatibility +Ignored; for compatibility with BSD versions of @command{touch}. + +@item -m +@itemx --time=mtime +@itemx --time=modify +@opindex -m +@opindex --time +@opindex mtime@r{, changing} +@opindex modify @r{time, changing} +Change the modification time only. + +@item -r @var{file} +@itemx --reference=@var{file} +@opindex -r +@opindex --reference +Use the times of the reference @var{file} instead of the current time. + +@item -t [[CC]YY]MMDDhhmm[.ss] +Use the argument (optional four-digit or two-digit years, months, +days, hours, minutes, optional seconds) instead of the current time. +If the year is specified with only two digits, then @var{CC} +is 20 for years in the range 0 @dots{} 68, and 19 for years in +69 @dots{} 99. If no digits of the year are specified, +the argument is interpreted as a date in the current year. + +@end table + + +@node Disk usage +@chapter Disk usage + +@cindex disk usage + +No disk can hold an infinite amount of data. These commands report on +how much disk storage is in use or available. (This has nothing much to +do with how much @emph{main memory}, i.e., RAM, a program is using when +it runs; for that, you want @command{ps} or @command{pstat} or @command{swap} +or some such command.) + +@menu +* df invocation:: Report filesystem disk space usage. +* du invocation:: Estimate file space usage. +* stat invocation:: Report file or filesystem status. +* sync invocation:: Synchronize memory and disk. +@end menu + + +@node df invocation +@section @command{df}: Report filesystem disk space usage + +@pindex df +@cindex filesystem disk usage +@cindex disk usage by filesystem + +@command{df} reports the amount of disk space used and available on +filesystems. Synopsis: + +@example +df [@var{option}]@dots{} [@var{file}]@dots{} +@end example + +With no arguments, @command{df} reports the space used and available on all +currently mounted filesystems (of all types). Otherwise, @command{df} +reports on the filesystem containing each argument @var{file}. + +Normally the disk space is printed in units of +1024 bytes, but this can be overridden (@pxref{Block size}). +Non-integer quantities are rounded up to the next higher unit. + +@cindex disk device file +@cindex device file, disk +If an argument @var{file} is a disk device file containing a mounted +filesystem, @command{df} shows the space available on that filesystem +rather than on the filesystem containing the device node (i.e., the root +filesystem). @sc{gnu} @command{df} does not attempt to determine the disk usage +on unmounted filesystems, because on most kinds of systems doing so +requires extremely nonportable intimate knowledge of filesystem +structures. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -a +@itemx --all +@opindex -a +@opindex --all +@cindex automounter filesystems +@cindex ignore filesystems +Include in the listing filesystems that have a size of 0 blocks, which +are omitted by default. Such filesystems are typically special-purpose +pseudo-filesystems, such as automounter entries. Also, filesystems of +type ``ignore'' or ``auto'', supported by some operating systems, are +only included if this option is specified. + +@item -B @var{size} +@itemx --block-size=@var{size} +@opindex -B +@opindex --block-size +@cindex filesystem sizes +Scale sizes by @var{size} before printing them (@pxref{Block size}). +For example, @option{-BG} prints sizes in units of 1,073,741,824 bytes. + +@item -h +@itemx --human-readable +@opindex -h +@opindex --human-readable +@cindex human-readable output +Append a size letter to each size, such as @samp{M} for mebibytes. +Powers of 1024 are used, not 1000; @samp{M} stands for 1,048,576 bytes. +Use the @option{-H} or @option{--si} option if you prefer powers of 1000. + +@item -H +@itemx --si +@opindex -H +@opindex --si +@cindex SI output +Append an SI-style abbreviation to each size, such as @samp{MB} for +megabytes. Powers of 1000 are used, not 1024; @samp{MB} stands for +1,000,000 bytes. Use the @option{-h} or @option{--human-readable} option if +you prefer powers of 1024. + +@item -i +@itemx --inodes +@opindex -i +@opindex --inodes +@cindex inode usage +List inode usage information instead of block usage. An inode (short +for index node) contains information about a file such as its owner, +permissions, timestamps, and location on the disk. + +@item -k +@opindex -k +@cindex kibibytes for filesystem sizes +Print sizes in 1024-byte blocks, overriding the default block size +(@pxref{Block size}). +This option is equivalent to @option{--block-size=1K}. + +@item -l +@itemx --local +@opindex -l +@opindex --local +@cindex filesystem types, limiting output to certain +Limit the listing to local filesystems. By default, remote filesystems +are also listed. + +@item --no-sync +@opindex --no-sync +@cindex filesystem space, retrieving old data more quickly +Do not invoke the @code{sync} system call before getting any usage data. +This may make @command{df} run significantly faster on systems with many +disks, but on some systems (notably SunOS) the results may be slightly +out of date. This is the default. + +@item -P +@itemx --portability +@opindex -P +@opindex --portability +@cindex one-line output format +@cindex @acronym{POSIX} output format +@cindex portable output format +@cindex output format, portable +Use the @acronym{POSIX} output format. This is like the default format except +for the following: + +@enumerate +@item +The information about each filesystem is always printed on exactly +one line; a mount device is never put on a line by itself. This means +that if the mount device name is more than 20 characters long (e.g., for +some network mounts), the columns are misaligned. + +@item +The labels in the header output line are changed to conform to @acronym{POSIX}. +@end enumerate + +@item --sync +@opindex --sync +@cindex filesystem space, retrieving current data more slowly +Invoke the @code{sync} system call before getting any usage data. On +some systems (notably SunOS), doing this yields more up to date results, +but in general this option makes @command{df} much slower, especially when +there are many or very busy filesystems. + +@item -t @var{fstype} +@itemx --type=@var{fstype} +@opindex -t +@opindex --type +@cindex filesystem types, limiting output to certain +Limit the listing to filesystems of type @var{fstype}. Multiple +filesystem types can be specified by giving multiple @option{-t} options. +By default, nothing is omitted. + +@item -T +@itemx --print-type +@opindex -T +@opindex --print-type +@cindex filesystem types, printing +Print each filesystem's type. The types printed here are the same ones +you can include or exclude with @option{-t} and @option{-x}. The particular +types printed are whatever is supported by the system. Here are some of +the common names (this list is certainly not exhaustive): + +@table @samp + +@item nfs +@cindex NFS filesystem type +An NFS filesystem, i.e., one mounted over a network from another +machine. This is the one type name which seems to be used uniformly by +all systems. + +@item 4.2@r{, }ufs@r{, }efs@dots{} +@cindex Linux filesystem types +@cindex local filesystem types +@opindex 4.2 @r{filesystem type} +@opindex ufs @r{filesystem type} +@opindex efs @r{filesystem type} +A filesystem on a locally-mounted hard disk. (The system might even +support more than one type here; Linux does.) + +@item hsfs@r{, }cdfs +@cindex CD-ROM filesystem type +@cindex High Sierra filesystem +@opindex hsfs @r{filesystem type} +@opindex cdfs @r{filesystem type} +A filesystem on a CD-ROM drive. HP-UX uses @samp{cdfs}, most other +systems use @samp{hsfs} (@samp{hs} for ``High Sierra''). + +@item pcfs +@cindex PC filesystem +@cindex DOS filesystem +@cindex MS-DOS filesystem +@cindex diskette filesystem +@opindex pcfs +An MS-DOS filesystem, usually on a diskette. + +@end table + +@item -x @var{fstype} +@itemx --exclude-type=@var{fstype} +@opindex -x +@opindex --exclude-type +Limit the listing to filesystems not of type @var{fstype}. +Multiple filesystem types can be eliminated by giving multiple +@option{-x} options. By default, no filesystem types are omitted. + +@item -v +Ignored; for compatibility with System V versions of @command{df}. + +@end table + + +@node du invocation +@section @command{du}: Estimate file space usage + +@pindex du +@cindex file space usage +@cindex disk usage for files + +@command{du} reports the amount of disk space used by the specified files +and for each subdirectory (of directory arguments). Synopsis: + +@example +du [@var{option}]@dots{} [@var{file}]@dots{} +@end example + +With no arguments, @command{du} reports the disk space for the current +directory. Normally the disk space is printed in units of +1024 bytes, but this can be overridden (@pxref{Block size}). +Non-integer quantities are rounded up to the next higher unit. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -a +@itemx --all +@opindex -a +@opindex --all +Show counts for all files, not just directories. + +@itemx --apparent-size +@opindex --apparent-size +Print apparent sizes, rather than disk usage. The apparent size of a +file is the number of bytes reported by @code{wc -c} on regular files, +or more generally, @code{ls -l --block-size=1} or @code{stat --format=%s}. +For example, a file containing the word @samp{zoo} with no newline would, +of course, have an apparent size of 3. Such a small file may require +anywhere from zero to 16 or more kilobytes of disk space, depending on +the type and configuration of the file system on which the file resides. +However, a sparse file created with this command +@example +: | dd bs=1 seek=`echo '2^31'|bc` of=big +@end example +has an apparent size of 2 gigabytes, yet on most modern +systems, it actually uses almost no disk space. + +@item -b +@itemx --bytes +@opindex -b +@opindex --bytes +Equivalent to @code{--apparent-size --block-size=1}. + +@item -B @var{size} +@itemx --block-size=@var{size} +@opindex -B +@opindex --block-size +@cindex file sizes +Scale sizes by @var{size} before printing them (@pxref{Block size}). +For example, @option{-BG} prints sizes in units of 1,073,741,824 bytes. + +@item -c +@itemx --total +@opindex -c +@opindex --total +@cindex grand total of disk space +Print a grand total of all arguments after all arguments have +been processed. This can be used to find out the total disk usage of +a given set of files or directories. + +@item -D +@itemx --dereference-args +@opindex -D +@opindex --dereference-args +Dereference symbolic links that are command line arguments. +Does not affect other symbolic links. This is helpful for finding +out the disk usage of directories, such as @file{/usr/tmp}, which +are often symbolic links. + +@item -h +@itemx --human-readable +@opindex -h +@opindex --human-readable +@cindex human-readable output +Append a size letter to each size, such as @samp{M} for mebibytes. +Powers of 1024 are used, not 1000; @samp{M} stands for 1,048,576 bytes. +Use the @option{-H} or @option{--si} option if you prefer powers of 1000. + +@item -H +@itemx --si +@opindex -H +@opindex --si +@cindex SI output +Append an SI-style abbreviation to each size, such as @samp{MB} for +megabytes. Powers of 1000 are used, not 1024; @samp{MB} stands for +1,000,000 bytes. Use the @option{-h} or @option{--human-readable} option if +you prefer powers of 1024. + +@item -k +@opindex -k +@cindex kibibytes for file sizes +Print sizes in 1024-byte blocks, overriding the default block size +(@pxref{Block size}). +This option is equivalent to @option{--block-size=1K}. + +@item -l +@itemx --count-links +@opindex -l +@opindex --count-links +@cindex hard links, counting in @command{du} +Count the size of all files, even if they have appeared already (as a +hard link). + +@item -L +@itemx --dereference +@opindex -L +@opindex --dereference +@cindex symbolic links, dereferencing in @command{du} +Dereference symbolic links (show the disk space used by the file +or directory that the link points to instead of the space used by +the link). + +@item --max-depth=@var{DEPTH} +@opindex --max-depth=@var{DEPTH} +@cindex limiting output of @command{du} +Show the total for each directory (and file if --all) that is at +most MAX_DEPTH levels down from the root of the hierarchy. The root +is at level 0, so @code{du --max-depth=0} is equivalent to @code{du -s}. + +@item -s +@itemx --summarize +@opindex -s +@opindex --summarize +Display only a total for each argument. + +@item -S +@itemx --separate-dirs +@opindex -S +@opindex --separate-dirs +Report the size of each directory separately, not including the sizes +of subdirectories. + +@item -x +@itemx --one-file-system +@opindex -x +@opindex --one-file-system +@cindex one filesystem, restricting @command{du} to +Skip directories that are on different filesystems from the one that +the argument being processed is on. + +@item --exclude=@var{PATTERN} +@opindex --exclude=@var{PATTERN} +@cindex excluding files from @command{du} +When recursing, skip subdirectories or files matching @var{PATTERN}. +For example, @code{du --exclude='*.o'} excludes files whose names +end in @samp{.o}. + +@item -X @var{FILE} +@itemx --exclude-from=@var{FILE} +@opindex -X @var{FILE} +@opindex --exclude-from=@var{FILE} +@cindex excluding files from @command{du} +Like @option{--exclude}, except take the patterns to exclude from @var{FILE}, +one per line. If @var{FILE} is @samp{-}, take the patterns from standard +input. + +@end table + +@cindex NFS mounts from BSD to HP-UX +On BSD systems, @command{du} reports sizes that are half the correct +values for files that are NFS-mounted from HP-UX systems. On HP-UX +systems, it reports sizes that are twice the correct values for +files that are NFS-mounted from BSD systems. This is due to a flaw +in HP-UX; it also affects the HP-UX @command{du} program. + + +@node stat invocation +@section @command{stat}: Report file or filesystem status + +@pindex stat +@cindex file status +@cindex filesystem status + +@command{stat} displays information about the specified file(s). Synopsis: + +@example +stat [@var{option}]@dots{} [@var{file}]@dots{} +@end example + +With no option, @command{stat} reports all information about the given files. +But it also can be used to report the information of the filesystems the +given files are located on. If the files are links, @command{stat} can +also give information about the files the links point to. + + +@table @samp + +@item -f +@itemx --filesystem +@opindex -f +@opindex --filesystem +@cindex filesystems +Report information about the filesystems where the given files are located +instead of information about the files themselves. + +@item -L +@itemx --dereference +@opindex -L +@opindex --dereference +@cindex symbolic links, dereferencing in @command{stat} +Change how @command{stat} treats symbolic links. +With this option, @command{stat} acts on the file referenced +by each symbolic link argument. +Without it, @command{stat} acts on any symbolic link argument directly. + +@item -t +@itemx --terse +@opindex -t +@opindex --terse +@cindex terse output +Print the information in terse form, suitable for parsing by other programs. + +@item -c +@itemx --format +@opindex -c +@opindex --format +@cindex output format +Allow user to specify the output format. + +Interpreted sequences for file stat are: +@itemize @bullet +@item %a - Access rights in octal +@item %A - Access rights in human readable form +@item %b - Number of blocks allocated (see @samp{%B}) +@item %B - The size in bytes of each block reported by @samp{%b} +@item %d - Device number in decimal +@item %D - Device number in hex +@item %f - raw mode in hex +@item %F - File type +@item %g - Group Id of owner +@item %G - Group name of owner +@item %h - Number of hard links +@item %i - Inode number +@item %n - File name +@item %N - Quoted File name with dereference if symbolic link +@item %o - IO block size +@item %s - Total size, in bytes +@item %t - Major device type in hex +@item %T - Minor device type in hex +@item %u - User Id of owner +@item %U - User name of owner +@item %x - Time of last access +@item %X - Time of last access as seconds since Epoch +@item %y - Time of last modification +@item %Y - Time of last modification as seconds since Epoch +@item %z - Time of last change +@item %Z - Time of last change as seconds since Epoch +@end itemize + +Interpreted sequences for filesystem stat are: +@itemize @bullet +@item %n - File name +@item %i - File System id in hex +@item %l - Maximum length of filenames +@item %t - Type in hex +@item %T - Type in human readable form +@item %b - Total data blocks in file system +@item %f - Free blocks in file system +@item %a - Free blocks available to non-superuser +@item %s - Optimal transfer block size +@item %c - Total file nodes in file system +@end itemize +@end table + + +@node sync invocation +@section @command{sync}: Synchronize data on disk with memory + +@pindex sync +@cindex synchronize disk and memory + +@cindex superblock, writing +@cindex inodes, written buffered +@command{sync} writes any data buffered in memory out to disk. This can +include (but is not limited to) modified superblocks, modified inodes, +and delayed reads and writes. This must be implemented by the kernel; +The @command{sync} program does nothing but exercise the @code{sync} system +call. + +@cindex crashes and corruption +The kernel keeps data in memory to avoid doing (relatively slow) disk +reads and writes. This improves performance, but if the computer +crashes, data may be lost or the filesystem corrupted as a +result. @command{sync} ensures everything in memory is written to disk. + +Any arguments are ignored, except for a lone @option{--help} or +@option{--version} (@pxref{Common options}). + +@node Printing text +@chapter Printing text + +@cindex printing text, commands for +@cindex commands for printing text + +This section describes commands that display text strings. + +@menu +* echo invocation:: Print a line of text. +* printf invocation:: Format and print data. +* yes invocation:: Print a string until interrupted. +@end menu + + +@node echo invocation +@section @command{echo}: Print a line of text + +@pindex echo +@cindex displaying text +@cindex printing text +@cindex text, displaying +@cindex arbitrary text, displaying + +@command{echo} writes each given @var{string} to standard output, with a +space between each and a newline after the last one. Synopsis: + +@example +echo [@var{option}]@dots{} [@var{string}]@dots{} +@end example + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp +@item -n +@opindex -n +Do not output the trailing newline. + +@item -e +@opindex -e +@cindex backslash escapes +Enable interpretation of the following backslash-escaped characters in +each @var{string}: + +@table @samp +@item \a +alert (bell) +@item \b +backspace +@item \c +suppress trailing newline +@item \f +form feed +@item \n +new line +@item \r +carriage return +@item \t +horizontal tab +@item \v +vertical tab +@item \\ +backslash +@item \@var{nnn} +the character whose @acronym{ASCII} code is @var{nnn} (octal); if @var{nnn} is not +a valid octal number, it is printed literally. +@end table + +@end table + + +@node printf invocation +@section @command{printf}: Format and print data + +@pindex printf +@command{printf} does formatted printing of text. Synopsis: + +@example +printf @var{format} [@var{argument}]@dots{} +@end example + +@command{printf} prints the @var{format} string, interpreting @samp{%} +directives and @samp{\} escapes in the same way as the C @command{printf} +function. The @var{format} argument is re-used as necessary to convert +all of the given @var{argument}s. + +@command{printf} has one additional directive, @samp{%b}, which prints its +argument string with @samp{\} escapes interpreted in the same way as in +the @var{format} string. + +@kindex \@var{ooo} +@kindex \x@var{hh} + +@command{printf} interprets @samp{\@var{ooo}} in @var{format} as an octal number +(if @var{ooo} is 0 to 3 octal digits) specifying a character to print, +and @samp{\x@var{hh}} as a hexadecimal number (if @var{hh} is 1 to 2 hex +digits) specifying a character to print. + +@kindex \uhhhh +@kindex \Uhhhhhhhh +@command{printf} interprets two character syntaxes introduced in ISO C 99: +@samp{\u} for 16-bit Unicode characters, specified as 4 hex digits +@var{hhhh}, and @samp{\U} for 32-bit Unicode characters, specified as 8 hex +digits @var{hhhhhhhh}. @command{printf} outputs the Unicode characters +according to the LC_CTYPE part of the current locale, i.e. depending +on the values of the environment variables @code{LC_ALL}, @code{LC_CTYPE}, +@code{LANG}. + +The processing of @samp{\u} and @samp{\U} requires a full-featured +@code{iconv} facility. It is activated on systems with glibc 2.2 (or newer), +or when @code{libiconv} is installed prior to this package. Otherwise the +use of @samp{\u} and @samp{\U} will give an error message. + +@kindex \c +An additional escape, @samp{\c}, causes @command{printf} to produce no +further output. + +The only options are a lone @option{--help} or +@option{--version}. @xref{Common options}. + +The Unicode character syntaxes are useful for writing strings in a locale +independent way. For example, a string containing the Euro currency symbol + +@example +$ /usr/local/bin/printf '\u20AC 14.95' +@end example + +@noindent +will be output correctly in all locales supporting the Euro symbol +(ISO-8859-15, UTF-8, and others). Similarly, a Chinese string + +@example +$ /usr/local/bin/printf '\u4e2d\u6587' +@end example + +@noindent +will be output correctly in all Chinese locales (GB2312, BIG5, UTF-8, etc). + +Note that in these examples, the full pathname of @command{printf} has been +given, to distinguish it from the GNU @code{bash} builtin function +@command{printf}. + +For larger strings, you don't need to look up the hexadecimal code +values of each character one by one. @acronym{ASCII} characters mixed with \u +escape sequences is also known as the JAVA source file encoding. You can +use GNU recode 3.5c (or newer) to convert strings to this encoding. Here +is how to convert a piece of text into a shell script which will output +this text in a locale-independent way: + +@smallexample +$ LC_CTYPE=zh_CN.big5 /usr/local/bin/printf \ + '\u4e2d\u6587\n' > sample.txt +$ recode BIG5..JAVA < sample.txt \ + | sed -e "s|^|/usr/local/bin/printf '|" -e "s|$|\\\\n'|" \ + > sample.sh +@end smallexample + + +@node yes invocation +@section @command{yes}: Print a string until interrupted + +@pindex yes +@cindex repeated output of a string + +@command{yes} prints the command line arguments, separated by spaces and +followed by a newline, forever until it is killed. If no arguments are +given, it prints @samp{y} followed by a newline forever until killed. + +The only options are a lone @option{--help} or @option{--version}. +@xref{Common options}. + + +@node Conditions +@chapter Conditions + +@cindex conditions +@cindex commands for exit status +@cindex exit status commands + +This section describes commands that are primarily useful for their exit +status, rather than their output. Thus, they are often used as the +condition of shell @code{if} statements, or as the last command in a +pipeline. + +@menu +* false invocation:: Do nothing, unsuccessfully. +* true invocation:: Do nothing, successfully. +* test invocation:: Check file types and compare values. +* expr invocation:: Evaluate expressions. +@end menu + + +@node false invocation +@section @command{false}: Do nothing, unsuccessfully + +@pindex false +@cindex do nothing, unsuccessfully +@cindex failure exit status +@cindex exit status of @command{false} + +@command{false} does nothing except return an exit status of 1, meaning +@dfn{failure}. It can be used as a place holder in shell scripts +where an unsuccessful command is needed. + +By default, @command{false} honors the @option{--help} and @option{--version} +options. However, that is contrary to @acronym{POSIX}, so when the environment +variable @env{POSIXLY_CORRECT} is set, @command{false} ignores @emph{all} +command line arguments, including @option{--help} and @option{--version}. + +This version of @command{false} is implemented as a C program, and is thus +more secure and faster than a shell script implementation, and may safely +be used as a dummy shell for the purpose of disabling accounts. + +Note that @command{false} (unlike all other programs documented herein) +exits unsuccessfully, even when invoked with +@option{--help} or @option{--version}. + + +@node true invocation +@section @command{true}: Do nothing, successfully + +@pindex true +@cindex do nothing, successfully +@cindex no-op +@cindex successful exit +@cindex exit status of @command{true} + +@command{true} does nothing except return an exit status of 0, meaning +@dfn{success}. It can be used as a place holder in shell scripts +where a successful command is needed, although the shell built-in +command @code{:} (colon) may do the same thing faster. +In most modern shells, @command{true} is a built-in command, so when +you use @samp{true} in a script, you're probably using the built-in +command, not the one documented here. + +By default, @command{true} honors the @option{--help} and @option{--version} +options. However, that is contrary to @acronym{POSIX}, so when the environment +variable @env{POSIXLY_CORRECT} is set, @command{true} ignores @emph{all} +command line arguments, including @option{--help} and @option{--version}. + +This version of @command{true} is implemented as a C program, and is thus +more secure and faster than a shell script implementation, and may safely +be used as a dummy shell for the purpose of disabling accounts. + +@node test invocation +@section @command{test}: Check file types and compare values + +@pindex test +@cindex check file types +@cindex compare values +@cindex expression evaluation + +@command{test} returns a status of 0 (true) or 1 (false) depending on the +evaluation of the conditional expression @var{expr}. Each part of the +expression must be a separate argument. + +@command{test} has file status checks, string operators, and numeric +comparison operators. + +@cindex conflicts with shell built-ins +@cindex built-in shell commands, conflicts with +Because most shells have a built-in command by the same name, using the +unadorned command name in a script or interactively may get you +different functionality than that described here. + +Besides the options below, @command{test} accepts a lone @option{--help} or +@option{--version}. @xref{Common options}. A single non-option argument +is also allowed: @command{test} returns true if the argument is not null. + +@menu +* File type tests:: -[bcdfhLpSt] +* Access permission tests:: -[gkruwxOG] +* File characteristic tests:: -e -s -nt -ot -ef +* String tests:: -z -n = != +* Numeric tests:: -eq -ne -lt -le -gt -ge +* Connectives for test:: ! -a -o +@end menu + + +@node File type tests +@subsection File type tests + +@cindex file type tests + +These options test for particular types of files. (Everything's a file, +but not all files are the same!) + +@table @samp + +@item -b @var{file} +@opindex -b +@cindex block special check +True if @var{file} exists and is a block special device. + +@item -c @var{file} +@opindex -c +@cindex character special check +True if @var{file} exists and is a character special device. + +@item -d @var{file} +@opindex -d +@cindex directory check +True if @var{file} exists and is a directory. + +@item -f @var{file} +@opindex -f +@cindex regular file check +True if @var{file} exists and is a regular file. + +@item -h @var{file} +@itemx -L @var{file} +@opindex -L +@opindex -h +@cindex symbolic link check +True if @var{file} exists and is a symbolic link. + +@item -p @var{file} +@opindex -p +@cindex named pipe check +True if @var{file} exists and is a named pipe. + +@item -S @var{file} +@opindex -S +@cindex socket check +True if @var{file} exists and is a socket. + +@item -t [@var{fd}] +@opindex -t +@cindex terminal check +True if @var{fd} is opened on a terminal. If @var{fd} is omitted, it +defaults to 1 (standard output). + +@end table + + +@node Access permission tests +@subsection Access permission tests + +@cindex access permission tests +@cindex permission tests + +These options test for particular access permissions. + +@table @samp + +@item -g @var{file} +@opindex -g +@cindex set-group-id check +True if @var{file} exists and has its set-group-id bit set. + +@item -k @var{file} +@opindex -k +@cindex sticky bit check +True if @var{file} has its @dfn{sticky} bit set. + +@item -r @var{file} +@opindex -r +@cindex readable file check +True if @var{file} exists and is readable. + +@item -u @var{file} +@opindex -u +@cindex set-user-id check +True if @var{file} exists and has its set-user-id bit set. + +@item -w @var{file} +@opindex -w +@cindex writable file check +True if @var{file} exists and is writable. + +@item -x @var{file} +@opindex -x +@cindex executable file check +True if @var{file} exists and is executable. + +@item -O @var{file} +@opindex -O +@cindex owned by effective uid check +True if @var{file} exists and is owned by the current effective user id. + +@item -G @var{file} +@opindex -G +@cindex owned by effective gid check +True if @var{file} exists and is owned by the current effective group id. + +@end table + +@node File characteristic tests +@subsection File characteristic tests + +@cindex file characteristic tests + +These options test other file characteristics. + +@table @samp + +@item -e @var{file} +@opindex -e +@cindex existence-of-file check +True if @var{file} exists. + +@item -s @var{file} +@opindex -s +@cindex nonempty file check +True if @var{file} exists and has a size greater than zero. + +@item @var{file1} -nt @var{file2} +@opindex -nt +@cindex newer-than file check +True if @var{file1} is newer (according to modification date) than +@var{file2}, or if @var{file1} exists and @var{file2} does not. + +@item @var{file1} -ot @var{file2} +@opindex -ot +@cindex older-than file check +True if @var{file1} is older (according to modification date) than +@var{file2}, or if @var{file2} exists and @var{file1} does not. + +@item @var{file1} -ef @var{file2} +@opindex -ef +@cindex same file check +@cindex hard link check +True if @var{file1} and @var{file2} have the same device and inode +numbers, i.e., if they are hard links to each other. + +@end table + + +@node String tests +@subsection String tests + +@cindex string tests + +These options test string characteristics. Strings are not quoted for +@command{test}, though you may need to quote them to protect characters +with special meaning to the shell, e.g., spaces. + +@table @samp + +@item -z @var{string} +@opindex -z +@cindex zero-length string check +True if the length of @var{string} is zero. + +@item -n @var{string} +@itemx @var{string} +@opindex -n +@cindex nonzero-length string check +True if the length of @var{string} is nonzero. + +@item @var{string1} = @var{string2} +@opindex = +@cindex equal string check +True if the strings are equal. + +@item @var{string1} != @var{string2} +@opindex != +@cindex not-equal string check +True if the strings are not equal. + +@end table + + +@node Numeric tests +@subsection Numeric tests + +@cindex numeric tests +@cindex arithmetic tests + +Numeric relationals. The arguments must be entirely numeric (possibly +negative), or the special expression @w{@code{-l @var{string}}}, which +evaluates to the length of @var{string}. + +@table @samp + +@item @var{arg1} -eq @var{arg2} +@itemx @var{arg1} -ne @var{arg2} +@itemx @var{arg1} -lt @var{arg2} +@itemx @var{arg1} -le @var{arg2} +@itemx @var{arg1} -gt @var{arg2} +@itemx @var{arg1} -ge @var{arg2} +@opindex -eq +@opindex -ne +@opindex -lt +@opindex -le +@opindex -gt +@opindex -ge +These arithmetic binary operators return true if @var{arg1} is equal, +not-equal, less-than, less-than-or-equal, greater-than, or +greater-than-or-equal than @var{arg2}, respectively. + +@end table + +For example: + +@example +test -1 -gt -2 && echo yes +@result{} yes +test -l abc -gt 1 && echo yes +@result{} yes +test 0x100 -eq 1 +@error{} test: integer expression expected before -eq +@end example + + +@node Connectives for test +@subsection Connectives for @command{test} + +@cindex logical connectives +@cindex connectives, logical + +The usual logical connectives. + +@table @samp + +@item ! @var{expr} +@opindex ! +True if @var{expr} is false. + +@item @var{expr1} -a @var{expr2} +@opindex -a +@cindex logical and operator +@cindex and operator +True if both @var{expr1} and @var{expr2} are true. + +@item @var{expr1} -o @var{expr2} +@opindex -o +@cindex logical or operator +@cindex or operator +True if either @var{expr1} or @var{expr2} is true. + +@end table + + +@node expr invocation +@section @command{expr}: Evaluate expressions + +@pindex expr +@cindex expression evaluation +@cindex evaluation of expressions + +@command{expr} evaluates an expression and writes the result on standard +output. Each token of the expression must be a separate argument. + +Operands are either numbers or strings. @command{expr} converts +anything appearing in an operand position to an integer or a string +depending on the operation being applied to it. + +Strings are not quoted for @command{expr} itself, though you may need to +quote them to protect characters with special meaning to the shell, +e.g., spaces. + +@cindex parentheses for grouping +Operators may be given as infix symbols or prefix keywords. Parentheses +may be used for grouping in the usual manner (you must quote parentheses +to avoid the shell evaluating them, however). + +@cindex exit status of @command{expr} +Exit status: + +@display +0 if the expression is neither null nor 0, +1 if the expression is null or 0, +2 for invalid expressions. +@end display + +@menu +* String expressions:: + : match substr index length +* Numeric expressions:: + - * / % +* Relations for expr:: | & < <= = == != >= > +* Examples of expr:: Examples. +@end menu + + +@node String expressions +@subsection String expressions + +@cindex string expressions +@cindex expressions, string + +@command{expr} supports pattern matching and other string operators. These +have lower precedence than both the numeric and relational operators (in +the next sections). + +@table @samp + +@item @var{string} : @var{regex} +@cindex pattern matching +@cindex regular expression matching +@cindex matching patterns +Perform pattern matching. The arguments are converted to strings and the +second is considered to be a (basic, a la GNU @code{grep}) regular +expression, with a @code{^} implicitly prepended. The first argument is +then matched against this regular expression. + +If the match succeeds and @var{regex} uses @samp{\(} and @samp{\)}, the +@code{:} expression returns the part of @var{string} that matched the +subexpression; otherwise, it returns the number of characters matched. + +If the match fails, the @code{:} operator returns the null string if +@samp{\(} and @samp{\)} are used in @var{regex}, otherwise 0. + +@kindex \( @r{regexp operator} +Only the first @samp{\( @dots{} \)} pair is relevant to the return +value; additional pairs are meaningful only for grouping the regular +expression operators. + +@kindex \+ @r{regexp operator} +@kindex \? @r{regexp operator} +@kindex \| @r{regexp operator} +In the regular expression, @code{\+}, @code{\?}, and @code{\|} are +operators which respectively match one or more, zero or one, or separate +alternatives. SunOS and other @command{expr}'s treat these as regular +characters. (@acronym{POSIX} allows either behavior.) +@xref{Top, , Regular Expression Library, regex, Regex}, for details of +regular expression syntax. Some examples are in @ref{Examples of expr}. + +@item match @var{string} @var{regex} +@findex match +An alternative way to do pattern matching. This is the same as +@w{@samp{@var{string} : @var{regex}}}. + +@item substr @var{string} @var{position} @var{length} +@findex substr +Returns the substring of @var{string} beginning at @var{position} +with length at most @var{length}. If either @var{position} or +@var{length} is negative, zero, or non-numeric, returns the null string. + +@item index @var{string} @var{charset} +@findex index +Returns the first position in @var{string} where the first character in +@var{charset} was found. If no character in @var{charset} is found in +@var{string}, return 0. + +@item length @var{string} +@findex length +Returns the length of @var{string}. + +@item + @var{token} +@kindex + +Interpret @var{token} as a string, even if it is a keyword like @var{match} +or an operator like @code{/}. +This makes it possible to test @code{expr length + "$x"} or +@code{expr + "$x" : '.*/\(.\)'} and have it do the right thing even if +the value of @var{$x} happens to be (for example) @code{/} or @code{index}. +This operator is a GNU extension. Portable shell scripts should use +@code{@w{" $token"} : @w{' \(.*\)'}} instead of @code{+ "$token"}. + +@end table + +To make @command{expr} interpret keywords as strings, you must use the +@code{quote} operator. + + +@node Numeric expressions +@subsection Numeric expressions + +@cindex numeric expressions +@cindex expressions, numeric + +@command{expr} supports the usual numeric operators, in order of increasing +precedence. The string operators (previous section) have lower precedence, +the connectives (next section) have higher. + +@table @samp + +@item + - +@kindex + +@kindex - +@cindex addition +@cindex subtraction +Addition and subtraction. Both arguments are converted to numbers; +an error occurs if this cannot be done. + +@item * / % +@kindex * +@kindex / +@kindex % +@cindex multiplication +@cindex division +@cindex remainder +Multiplication, division, remainder. Both arguments are converted to +numbers; an error occurs if this cannot be done. + +@end table + + +@node Relations for expr +@subsection Relations for @command{expr} + +@cindex connectives, logical +@cindex logical connectives +@cindex relations, numeric or string + +@command{expr} supports the usual logical connectives and relations. These +are higher precedence than either the string or numeric operators +(previous sections). Here is the list, lowest-precedence operator first. + +@table @samp + +@item | +@kindex | +@cindex logical or operator +@cindex or operator +Returns its first argument if that is neither null nor 0, otherwise its +second argument. + +@item & +@kindex & +@cindex logical and operator +@cindex and operator +Return its first argument if neither argument is null or 0, otherwise +0. + +@item < <= = == != >= > +@kindex < +@kindex <= +@kindex = +@kindex == +@kindex > +@kindex >= +@cindex comparison operators +@vindex LC_COLLATE +Compare the arguments and return 1 if the relation is true, 0 otherwise. +@code{==} is a synonym for @code{=}. @command{expr} first tries to convert +both arguments to numbers and do a numeric comparison; if either +conversion fails, it does a lexicographic comparison using the character +collating sequence specified by the @env{LC_COLLATE} locale. + +@end table + + +@node Examples of expr +@subsection Examples of using @command{expr} + +@cindex examples of @command{expr} +Here are a few examples, including quoting for shell metacharacters. + +To add 1 to the shell variable @code{foo}, in Bourne-compatible shells: +@example +foo=`expr $foo + 1` +@end example + +To print the non-directory part of the file name stored in +@code{$fname}, which need not contain a @code{/}. +@example +expr $fname : '.*/\(.*\)' '|' $fname +@end example + +An example showing that @code{\+} is an operator: +@example +expr aaa : 'a\+' +@result{} 3 +@end example + +@example +expr abc : 'a\(.\)c' +@result{} b +expr index abcdef cz +@result{} 3 +expr index index a +@error{} expr: syntax error +expr index quote index a +@result{} 0 +@end example + + +@node Redirection +@chapter Redirection + +@cindex redirection +@cindex commands for redirection + +Unix shells commonly provide several forms of @dfn{redirection}---ways +to change the input source or output destination of a command. But one +useful redirection is performed by a separate command, not by the shell; +it's described here. + +@menu +* tee invocation:: Redirect output to multiple files. +@end menu + + +@node tee invocation +@section @command{tee}: Redirect output to multiple files + +@pindex tee +@cindex pipe fitting +@cindex destinations, multiple output +@cindex read from stdin and write to stdout and files + +The @command{tee} command copies standard input to standard output and also +to any files given as arguments. This is useful when you want not only +to send some data down a pipe, but also to save a copy. Synopsis: + +@example +tee [@var{option}]@dots{} [@var{file}]@dots{} +@end example + +If a file being written to does not already exist, it is created. If a +file being written to already exists, the data it previously contained +is overwritten unless the @code{-a} option is used. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp +@item -a +@itemx --append +@opindex -a +@opindex --append +Append standard input to the given files rather than overwriting +them. + +@item -i +@itemx --ignore-interrupts +@opindex -i +@opindex --ignore-interrupts +Ignore interrupt signals. + +@end table + + +@node File name manipulation +@chapter File name manipulation + +@cindex file name manipulation +@cindex manipulation of file names +@cindex commands for file name manipulation + +This section describes commands that manipulate file names. + +@menu +* basename invocation:: Strip directory and suffix from a file name. +* dirname invocation:: Strip non-directory suffix from a file name. +* pathchk invocation:: Check file name portability. +@end menu + + +@node basename invocation +@section @command{basename}: Strip directory and suffix from a file name + +@pindex basename +@cindex strip directory and suffix from file names +@cindex directory, stripping from file names +@cindex suffix, stripping from file names +@cindex file names, stripping directory and suffix +@cindex leading directory components, stripping + +@command{basename} removes any leading directory components from +@var{name}. Synopsis: + +@example +basename @var{name} [@var{suffix}] +@end example + +If @var{suffix} is specified and is identical to the end of @var{name}, +it is removed from @var{name} as well. @command{basename} prints the +result on standard output. + +The only options are @option{--help} and @option{--version}. @xref{Common +options}. + + +@node dirname invocation +@section @command{dirname}: Strip non-directory suffix from a file name + +@pindex dirname +@cindex directory components, printing +@cindex stripping non-directory suffix +@cindex non-directory suffix, stripping + +@command{dirname} prints all but the final slash-delimited component of +a string (presumably a filename). Synopsis: + +@example +dirname @var{name} +@end example + +If @var{name} is a single component, @command{dirname} prints @samp{.} +(meaning the current directory). + +The only options are @option{--help} and @option{--version}. @xref{Common +options}. + + +@node pathchk invocation +@section @command{pathchk}: Check file name portability + +@pindex pathchk +@cindex file names, checking validity and portability +@cindex valid file names, checking for +@cindex portable file names, checking for + +@command{pathchk} checks portability of filenames. Synopsis: + +@example +pathchk [@var{option}]@dots{} @var{name}@dots{} +@end example + +For each @var{name}, @command{pathchk} prints a message if any of +these conditions is true: +@enumerate +@item +one of the existing directories in @var{name} does not have search +(execute) permission, +@item +the length of @var{name} is larger than its filesystem's maximum +file name length, +@item +the length of one component of @var{name}, corresponding to an +existing directory name, is larger than its filesystem's maximum +length for a file name component. +@end enumerate + +The program accepts the following option. Also see @ref{Common options}. + +@table @samp + +@item -p +@itemx --portability +@opindex -p +@opindex --portability +Instead of performing length checks on the underlying filesystem, +test the length of each file name and its components against the +@acronym{POSIX} minimum limits for portability. Also check that the file +name contains no characters not in the portable file name character set. + +@end table + +@cindex exit status of @command{pathchk} +Exit status: + +@display +0 if all specified file names passed all of the tests, +1 otherwise. +@end display + + +@node Working context +@chapter Working context + +@cindex working context +@cindex commands for printing the working context + +This section describes commands that display or alter the context in +which you are working: the current directory, the terminal settings, and +so forth. See also the user-related commands in the next section. + +@menu +* pwd invocation:: Print working directory. +* stty invocation:: Print or change terminal characteristics. +* printenv invocation:: Print environment variables. +* tty invocation:: Print file name of terminal on standard input. +@end menu + + +@node pwd invocation +@section @command{pwd}: Print working directory + +@pindex pwd +@cindex print name of current directory +@cindex current working directory, printing +@cindex working directory, printing + +@cindex symbolic links and @command{pwd} +@command{pwd} prints the fully resolved name of the current directory. +That is, all components of the printed name will be actual directory +names---none will be symbolic links. + +@cindex conflicts with shell built-ins +@cindex built-in shell commands, conflicts with +Because most shells have a built-in command by the same name, using the +unadorned command name in a script or interactively may get you +different functionality than that described here. + +The only options are a lone @option{--help} or +@option{--version}. @xref{Common options}. + + +@node stty invocation +@section @command{stty}: Print or change terminal characteristics + +@pindex stty +@cindex change or print terminal settings +@cindex terminal settings +@cindex line settings of terminal + +@command{stty} prints or changes terminal characteristics, such as baud rate. +Synopses: + +@example +stty [@var{option}] [@var{setting}]@dots{} +stty [@var{option}] +@end example + +If given no line settings, @command{stty} prints the baud rate, line +discipline number (on systems that support it), and line settings +that have been changed from the values set by @samp{stty sane}. +By default, mode reading and setting are performed on the tty line +connected to standard input, although this can be modified by the +@option{--file} option. + +@command{stty} accepts many non-option arguments that change aspects of +the terminal line operation, as described below. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp +@item -a +@itemx --all +@opindex -a +@opindex --all +Print all current settings in human-readable form. This option may not +be used in combination with any line settings. + +@item -F @var{device} +@itemx --file=@var{device} +@opindex -F +@opindex --file +Set the line opened by the filename specified in @var{device} instead of +the tty line connected to standard input. This option is necessary +because opening a @acronym{POSIX} tty requires use of the @code{O_NONDELAY} flag to +prevent a @acronym{POSIX} tty from blocking until the carrier detect line is high if +the @code{clocal} flag is not set. Hence, it is not always possible +to allow the shell to open the device in the traditional manner. + +@item -g +@itemx --save +@opindex -g +@opindex --save +@cindex machine-readable @command{stty} output +Print all current settings in a form that can be used as an argument to +another @command{stty} command to restore the current settings. This option +may not be used in combination with any line settings. + +@end table + +Many settings can be turned off by preceding them with a @samp{-}. +Such arguments are marked below with ``May be negated'' in their +description. The descriptions themselves refer to the positive +case, that is, when @emph{not} negated (unless stated otherwise, +of course). + +Some settings are not available on all @acronym{POSIX} systems, since they use +extensions. Such arguments are marked below with ``Non-@acronym{POSIX}'' in their +description. On non-@acronym{POSIX} systems, those or other settings also may not +be available, but it's not feasible to document all the variations: just +try it and see. + +@menu +* Control:: Control settings +* Input:: Input settings +* Output:: Output settings +* Local:: Local settings +* Combination:: Combination settings +* Characters:: Special characters +* Special:: Special settings +@end menu + + +@node Control +@subsection Control settings + +@cindex control settings +Control settings: + +@table @samp +@item parenb +@opindex parenb +@cindex two-way parity +Generate parity bit in output and expect parity bit in input. +May be negated. + +@item parodd +@opindex parodd +@cindex odd parity +@cindex even parity +Set odd parity (even if negated). May be negated. + +@item cs5 +@itemx cs6 +@itemx cs7 +@itemx cs8 +@opindex cs@var{n} +@cindex character size +@cindex eight-bit characters +Set character size to 5, 6, 7, or 8 bits. + +@item hup +@itemx hupcl +@opindex hup[cl] +Send a hangup signal when the last process closes the tty. May be +negated. + +@item cstopb +@opindex cstopb +@cindex stop bits +Use two stop bits per character (one if negated). May be negated. + +@item cread +@opindex cread +Allow input to be received. May be negated. + +@item clocal +@opindex clocal +@cindex modem control +Disable modem control signals. May be negated. + +@item crtscts +@opindex crtscts +@cindex hardware flow control +@cindex flow control, hardware +@cindex RTS/CTS flow control +Enable RTS/CTS flow control. Non-@acronym{POSIX}. May be negated. +@end table + + +@node Input +@subsection Input settings + +@cindex input settings + +@table @samp +@item ignbrk +@opindex ignbrk +@cindex breaks, ignoring +Ignore break characters. May be negated. + +@item brkint +@opindex brkint +@cindex breaks, cause interrupts +Make breaks cause an interrupt signal. May be negated. + +@item ignpar +@opindex ignpar +@cindex parity, ignoring +Ignore characters with parity errors. May be negated. + +@item parmrk +@opindex parmrk +@cindex parity errors, marking +Mark parity errors (with a 255-0-character sequence). May be negated. + +@item inpck +@opindex inpck +Enable input parity checking. May be negated. + +@item istrip +@opindex istrip +@cindex eight-bit input +Clear high (8th) bit of input characters. May be negated. + +@item inlcr +@opindex inlcr +@cindex newline, translating to return +Translate newline to carriage return. May be negated. + +@item igncr +@opindex igncr +@cindex return, ignoring +Ignore carriage return. May be negated. + +@item icrnl +@opindex icrnl +@cindex return, translating to newline +Translate carriage return to newline. May be negated. + +@item ixon +@opindex ixon +@kindex C-s/C-q flow control +@cindex XON/XOFF flow control +Enable XON/XOFF flow control (that is, @kbd{CTRL-S}/@kbd{CTRL-Q}). May +be negated. + +@item ixoff +@itemx tandem +@opindex ixoff +@opindex tandem +@cindex software flow control +@cindex flow control, software +Enable sending of @code{stop} character when the system input buffer +is almost full, and @code{start} character when it becomes almost +empty again. May be negated. + +@item iuclc +@opindex iuclc +@cindex uppercase, translating to lowercase +Translate uppercase characters to lowercase. Non-@acronym{POSIX}. May be +negated. + +@item ixany +@opindex ixany +Allow any character to restart output (only the start character +if negated). Non-@acronym{POSIX}. May be negated. + +@item imaxbel +@opindex imaxbel +@cindex beeping at input buffer full +Enable beeping and not flushing input buffer if a character arrives +when the input buffer is full. Non-@acronym{POSIX}. May be negated. +@end table + + +@node Output +@subsection Output settings + +@cindex output settings +These arguments specify output-related operations. + +@table @samp +@item opost +@opindex opost +Postprocess output. May be negated. + +@item olcuc +@opindex olcuc +@cindex lowercase, translating to output +Translate lowercase characters to uppercase. Non-@acronym{POSIX}. May be +negated. + +@item ocrnl +@opindex ocrnl +@cindex return, translating to newline +Translate carriage return to newline. Non-@acronym{POSIX}. May be negated. + +@item onlcr +@opindex onlcr +@cindex newline, translating to crlf +Translate newline to carriage return-newline. Non-@acronym{POSIX}. May be +negated. + +@item onocr +@opindex onocr +Do not print carriage returns in the first column. Non-@acronym{POSIX}. +May be negated. + +@item onlret +@opindex onlret +Newline performs a carriage return. Non-@acronym{POSIX}. May be negated. + +@item ofill +@opindex ofill +@cindex pad instead of timing for delaying +Use fill (padding) characters instead of timing for delays. Non-@acronym{POSIX}. +May be negated. + +@item ofdel +@opindex ofdel +@cindex pad character +Use delete characters for fill instead of null characters. Non-@acronym{POSIX}. +May be negated. + +@item nl1 +@itemx nl0 +@opindex nl@var{n} +Newline delay style. Non-@acronym{POSIX}. + +@item cr3 +@itemx cr2 +@itemx cr1 +@itemx cr0 +@opindex cr@var{n} +Carriage return delay style. Non-@acronym{POSIX}. + +@item tab3 +@itemx tab2 +@itemx tab1 +@itemx tab0 +@opindex tab@var{n} +Horizontal tab delay style. Non-@acronym{POSIX}. + +@item bs1 +@itemx bs0 +@opindex bs@var{n} +Backspace delay style. Non-@acronym{POSIX}. + +@item vt1 +@itemx vt0 +@opindex vt@var{n} +Vertical tab delay style. Non-@acronym{POSIX}. + +@item ff1 +@itemx ff0 +@opindex ff@var{n} +Form feed delay style. Non-@acronym{POSIX}. +@end table + + +@node Local +@subsection Local settings + +@cindex local settings + +@table @samp +@item isig +@opindex isig +Enable @code{interrupt}, @code{quit}, and @code{suspend} special +characters. May be negated. + +@item icanon +@opindex icanon +Enable @code{erase}, @code{kill}, @code{werase}, and @code{rprnt} +special characters. May be negated. + +@item iexten +@opindex iexten +Enable non-@acronym{POSIX} special characters. May be negated. + +@item echo +@opindex echo +Echo input characters. May be negated. + +@item echoe +@itemx crterase +@opindex echoe +@opindex crterase +Echo @code{erase} characters as backspace-space-backspace. May be +negated. + +@item echok +@opindex echok +@cindex newline echoing after @code{kill} +Echo a newline after a @code{kill} character. May be negated. + +@item echonl +@opindex echonl +@cindex newline, echoing +Echo newline even if not echoing other characters. May be negated. + +@item noflsh +@opindex noflsh +@cindex flushing, disabling +Disable flushing after @code{interrupt} and @code{quit} special +characters. May be negated. + +@item xcase +@opindex xcase +@cindex case translation +Enable input and output of uppercase characters by preceding their +lowercase equivalents with @samp{\}, when @code{icanon} is set. +Non-@acronym{POSIX}. May be negated. + +@item tostop +@opindex tostop +@cindex background jobs, stopping at terminal write +Stop background jobs that try to write to the terminal. Non-@acronym{POSIX}. +May be negated. + +@item echoprt +@itemx prterase +@opindex echoprt +@opindex prterase +Echo erased characters backward, between @samp{\} and @samp{/}. +Non-@acronym{POSIX}. May be negated. + +@item echoctl +@itemx ctlecho +@opindex echoctl +@opindex ctlecho +@cindex control characters, using @samp{^@var{c}} +@cindex hat notation for control characters +Echo control characters in hat notation (@samp{^@var{c}}) instead +of literally. Non-@acronym{POSIX}. May be negated. + +@item echoke +@itemx crtkill +@opindex echoke +@opindex crtkill +Echo the @code{kill} special character by erasing each character on +the line as indicated by the @code{echoprt} and @code{echoe} settings, +instead of by the @code{echoctl} and @code{echok} settings. Non-@acronym{POSIX}. +May be negated. +@end table + + +@node Combination +@subsection Combination settings + +@cindex combination settings +Combination settings: + +@table @samp +@item evenp +@opindex evenp +@itemx parity +@opindex parity +Same as @code{parenb -parodd cs7}. May be negated. If negated, same +as @code{-parenb cs8}. + +@item oddp +@opindex oddp +Same as @code{parenb parodd cs7}. May be negated. If negated, same +as @code{-parenb cs8}. + +@item nl +@opindex nl +Same as @code{-icrnl -onlcr}. May be negated. If negated, same as +@code{icrnl -inlcr -igncr onlcr -ocrnl -onlret}. + +@item ek +@opindex ek +Reset the @code{erase} and @code{kill} special characters to their default +values. + +@item sane +@opindex sane +Same as: +@c This is too long to write inline. +@example +cread -ignbrk brkint -inlcr -igncr icrnl -ixoff +-iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr +-onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 +ff0 isig icanon iexten echo echoe echok -echonl +-noflsh -xcase -tostop -echoprt echoctl echoke +@end example +@noindent and also sets all special characters to their default values. + +@item cooked +@opindex cooked +Same as @code{brkint ignpar istrip icrnl ixon opost isig icanon}, plus +sets the @code{eof} and @code{eol} characters to their default values +if they are the same as the @code{min} and @code{time} characters. +May be negated. If negated, same as @code{raw}. + +@item raw +@opindex raw +Same as: +@example +-ignbrk -brkint -ignpar -parmrk -inpck -istrip +-inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany +-imaxbel -opost -isig -icanon -xcase min 1 time 0 +@end example +@noindent May be negated. If negated, same as @code{cooked}. + +@item cbreak +@opindex cbreak +Same as @code{-icanon}. May be negated. If negated, same as +@code{icanon}. + +@item pass8 +@opindex pass8 +@cindex eight-bit characters +Same as @code{-parenb -istrip cs8}. May be negated. If negated, +same as @code{parenb istrip cs7}. + +@item litout +@opindex litout +Same as @code{-parenb -istrip -opost cs8}. May be negated. +If negated, same as @code{parenb istrip opost cs7}. + +@item decctlq +@opindex decctlq +Same as @code{-ixany}. Non-@acronym{POSIX}. May be negated. + +@item tabs +@opindex tabs +Same as @code{tab0}. Non-@acronym{POSIX}. May be negated. If negated, same +as @code{tab3}. + +@item lcase +@itemx LCASE +@opindex lcase +@opindex LCASE +Same as @code{xcase iuclc olcuc}. Non-@acronym{POSIX}. May be negated. + +@item crt +@opindex crt +Same as @code{echoe echoctl echoke}. + +@item dec +@opindex dec +Same as @code{echoe echoctl echoke -ixany intr ^C erase ^? kill C-u}. +@end table + + +@node Characters +@subsection Special characters + +@cindex special characters +@cindex characters, special + +The special characters' default values vary from system to system. +They are set with the syntax @samp{name value}, where the names are +listed below and the value can be given either literally, in hat +notation (@samp{^@var{c}}), or as an integer which may start with +@samp{0x} to indicate hexadecimal, @samp{0} to indicate octal, or +any other digit to indicate decimal. + +@cindex disabling special characters +@kindex u@r{, and disabling special characters} +For GNU stty, giving a value of @code{^-} or @code{undef} disables that +special character. (This is incompatible with Ultrix @command{stty}, +which uses a value of @samp{u} to disable a special character. GNU +@command{stty} treats a value @samp{u} like any other, namely to set that +special character to @key{U}.) + +@table @samp + +@item intr +@opindex intr +Send an interrupt signal. + +@item quit +@opindex quit +Send a quit signal. + +@item erase +@opindex erase +Erase the last character typed. + +@item kill +@opindex kill +Erase the current line. + +@item eof +@opindex eof +Send an end of file (terminate the input). + +@item eol +@opindex eol +End the line. + +@item eol2 +@opindex eol2 +Alternate character to end the line. Non-@acronym{POSIX}. + +@item swtch +@opindex swtch +Switch to a different shell layer. Non-@acronym{POSIX}. + +@item start +@opindex start +Restart the output after stopping it. + +@item stop +@opindex stop +Stop the output. + +@item susp +@opindex susp +Send a terminal stop signal. + +@item dsusp +@opindex dsusp +Send a terminal stop signal after flushing the input. Non-@acronym{POSIX}. + +@item rprnt +@opindex rprnt +Redraw the current line. Non-@acronym{POSIX}. + +@item werase +@opindex werase +Erase the last word typed. Non-@acronym{POSIX}. + +@item lnext +@opindex lnext +Enter the next character typed literally, even if it is a special +character. Non-@acronym{POSIX}. +@end table + + +@node Special +@subsection Special settings + +@cindex special settings + +@table @samp +@item min @var{n} +@opindex min +Set the minimum number of characters that will satisfy a read until +the time value has expired, when @code{-icanon} is set. + +@item time @var{n} +@opindex time +Set the number of tenths of a second before reads time out if the minimum +number of characters have not been read, when @code{-icanon} is set. + +@item ispeed @var{n} +@opindex ispeed +Set the input speed to @var{n}. + +@item ospeed @var{n} +@opindex ospeed +Set the output speed to @var{n}. + +@item rows @var{n} +@opindex rows +Tell the tty kernel driver that the terminal has @var{n} rows. Non-@acronym{POSIX}. + +@item cols @var{n} +@itemx columns @var{n} +@opindex cols +@opindex columns +Tell the kernel that the terminal has @var{n} columns. Non-@acronym{POSIX}. + +@item size +@opindex size +@vindex LINES +@vindex COLUMNS +Print the number of rows and columns that the kernel thinks the +terminal has. (Systems that don't support rows and columns in the kernel +typically use the environment variables @env{LINES} and @env{COLUMNS} +instead; however, GNU @command{stty} does not know anything about them.) +Non-@acronym{POSIX}. + +@item line @var{n} +@opindex line +Use line discipline @var{n}. Non-@acronym{POSIX}. + +@item speed +@opindex speed +Print the terminal speed. + +@item @var{n} +@cindex baud rate, setting +@c FIXME: Is this still true that the baud rate can't be set +@c higher than 38400? +Set the input and output speeds to @var{n}. @var{n} can be one +of: 0 50 75 110 134 134.5 150 200 300 600 1200 1800 2400 4800 9600 +19200 38400 @code{exta} @code{extb}. @code{exta} is the same as +19200; @code{extb} is the same as 38400. 0 hangs up the line if +@code{-clocal} is set. +@end table + + +@node printenv invocation +@section @command{printenv}: Print all or some environment variables + +@pindex printenv +@cindex printing all or some environment variables +@cindex environment variables, printing + +@command{printenv} prints environment variable values. Synopsis: + +@example +printenv [@var{option}] [@var{variable}]@dots{} +@end example + +If no @var{variable}s are specified, @command{printenv} prints the value of +every environment variable. Otherwise, it prints the value of each +@var{variable} that is set, and nothing for those that are not set. + +The only options are a lone @option{--help} or @option{--version}. +@xref{Common options}. + +@cindex exit status of @command{printenv} +Exit status: + +@display +0 if all variables specified were found +1 if at least one specified variable was not found +2 if a write error occurred +@end display + + +@node tty invocation +@section @command{tty}: Print file name of terminal on standard input + +@pindex tty +@cindex print terminal file name +@cindex terminal file name, printing + +@command{tty} prints the file name of the terminal connected to its standard +input. It prints @samp{not a tty} if standard input is not a terminal. +Synopsis: + +@example +tty [@var{option}]@dots{} +@end example + +The program accepts the following option. Also see @ref{Common options}. + +@table @samp + +@item -s +@itemx --silent +@itemx --quiet +@opindex -s +@opindex --silent +@opindex --quiet +Print nothing; only return an exit status. + +@end table + +@cindex exit status of @command{tty} +Exit status: + +@display +0 if standard input is a terminal +1 if standard input is not a terminal +2 if given incorrect arguments +3 if a write error occurs +@end display + + +@node User information +@chapter User information + +@cindex user information, commands for +@cindex commands for printing user information + +This section describes commands that print user-related information: +logins, groups, and so forth. + +@menu +* id invocation:: Print real and effective uid and gid. +* logname invocation:: Print current login name. +* whoami invocation:: Print effective user id. +* groups invocation:: Print group names a user is in. +* users invocation:: Print login names of users currently logged in. +* who invocation:: Print who is currently logged in. +@end menu + + +@node id invocation +@section @command{id}: Print real and effective uid and gid + +@pindex id +@cindex real uid and gid, printing +@cindex effective uid and gid, printing +@cindex printing real and effective uid and gid + +@command{id} prints information about the given user, or the process +running it if no user is specified. Synopsis: + +@example +id [@var{option}]@dots{} [@var{username}] +@end example + +By default, it prints the real user id, real group id, effective user id +if different from the real user id, effective group id if different from +the real group id, and supplemental group ids. + +Each of these numeric values is preceded by an identifying string and +followed by the corresponding user or group name in parentheses. + +The options cause @command{id} to print only part of the above information. +Also see @ref{Common options}. + +@table @samp +@item -g +@itemx --group +@opindex -g +@opindex --group +Print only the group id. + +@item -G +@itemx --groups +@opindex -G +@opindex --groups +Print only the supplementary groups. + +@item -n +@itemx --name +@opindex -n +@opindex --name +Print the user or group name instead of the ID number. Requires +@code{-u}, @code{-g}, or @code{-G}. + +@item -r +@itemx --real +@opindex -r +@opindex --real +Print the real, instead of effective, user or group id. Requires +@code{-u}, @code{-g}, or @code{-G}. + +@item -u +@itemx --user +@opindex -u +@opindex --user +Print only the user id. + +@end table + + +@node logname invocation +@section @command{logname}: Print current login name + +@pindex logname +@cindex printing user's login name +@cindex login name, printing +@cindex user name, printing + +@flindex /etc/utmp +@flindex utmp + +@command{logname} prints the calling user's name, as found in the file +@file{/etc/utmp}, and exits with a status of 0. If there is no +@file{/etc/utmp} entry for the calling process, @command{logname} prints +an error message and exits with a status of 1. + +The only options are @option{--help} and @option{--version}. @xref{Common +options}. + + +@node whoami invocation +@section @command{whoami}: Print effective user id + +@pindex whoami +@cindex effective UID, printing +@cindex printing the effective UID + +@command{whoami} prints the user name associated with the current +effective user id. It is equivalent to the command @samp{id -un}. + +The only options are @option{--help} and @option{--version}. @xref{Common +options}. + + +@node groups invocation +@section @command{groups}: Print group names a user is in + +@pindex groups +@cindex printing groups a user is in +@cindex supplementary groups, printing + +@command{groups} prints the names of the primary and any supplementary +groups for each given @var{username}, or the current process if no names +are given. If names are given, the name of each user is printed before +the list of that user's groups. Synopsis: + +@example +groups [@var{username}]@dots{} +@end example + +The group lists are equivalent to the output of the command @samp{id -Gn}. + +The only options are @option{--help} and @option{--version}. @xref{Common +options}. + + +@node users invocation +@section @command{users}: Print login names of users currently logged in + +@pindex users +@cindex printing current usernames +@cindex usernames, printing current + +@cindex login sessions, printing users with +@command{users} prints on a single line a blank-separated list of user +names of users currently logged in to the current host. Each user name +corresponds to a login session, so if a user has more than one login +session, that user's name will appear the same number of times in the +output. Synopsis: + +@example +users [@var{file}] +@end example + +@flindex /etc/utmp +@flindex /etc/wtmp +With no @var{file} argument, @command{users} extracts its information from +the file @file{/etc/utmp}. If a file argument is given, @command{users} +uses that file instead. A common choice is @file{/etc/wtmp}. + +The only options are @option{--help} and @option{--version}. @xref{Common +options}. + + +@node who invocation +@section @command{who}: Print who is currently logged in + +@pindex who +@cindex printing current user information +@cindex information, about current users + +@command{who} prints information about users who are currently logged on. +Synopsis: + +@example +@command{who} [@var{option}] [@var{file}] [am i] +@end example + +@cindex terminal lines, currently used +@cindex login time +@cindex remote hostname +If given no non-option arguments, @command{who} prints the following +information for each user currently logged on: login name, terminal +line, login time, and remote hostname or X display. + +@flindex /etc/utmp +@flindex /etc/wtmp +If given one non-option argument, @command{who} uses that instead of +@file{/etc/utmp} as the name of the file containing the record of +users logged on. @file{/etc/wtmp} is commonly given as an argument +to @command{who} to look at who has previously logged on. + +@opindex am i +@opindex who am i +If given two non-option arguments, @command{who} prints only the entry +for the user running it (determined from its standard input), preceded +by the hostname. Traditionally, the two arguments given are @samp{am +i}, as in @samp{who am i}. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp +@item -m +@opindex -m +Same as @samp{who am i}. + +@item -q +@itemx --count +@opindex -q +@opindex --count +Print only the login names and the number of users logged on. +Overrides all other options. + +@item -s +@opindex -s +Ignored; for compatibility with other versions of @command{who}. + +@item -i +@itemx -u +@itemx --idle +@opindex -i +@opindex -u +@opindex --idle +@cindex idle time +After the login time, print the number of hours and minutes that the +user has been idle. @samp{.} means the user was active in last minute. +@samp{old} means the user was idle for more than 24 hours. + +@item -l +@itemx --lookup +@opindex -l +@opindex --lookup +Attempt to canonicalize hostnames found in utmp through a DNS lookup. This +is not the default because it can cause significant delays on systems with +automatic dial-up internet access. + +@item -H +@itemx --heading +@opindex -H +@opindex --heading +Print a line of column headings. + +@item -w +@itemx -T +@itemx --mesg +@itemx --message +@itemx --writable +@opindex -w +@opindex -T +@opindex --mesg +@opindex --message +@opindex --writable +@cindex message status +@pindex write@r{, allowed} +After each login name print a character indicating the user's message status: + +@display +@samp{+} allowing @code{write} messages +@samp{-} disallowing @code{write} messages +@samp{?} cannot find terminal device +@end display + +@end table + + +@node System context +@chapter System context + +@cindex system context +@cindex context, system +@cindex commands for system context + +This section describes commands that print or change system-wide +information. + +@menu +* date invocation:: Print or set system date and time. +* uname invocation:: Print system information. +* hostname invocation:: Print or set system name. +* hostid invocation:: Print numeric host identifier. +@end menu + + +@node date invocation +@section @command{date}: Print or set system date and time + +@pindex date +@cindex time, printing or setting +@cindex printing the current time + +Synopses: + +@example +date [@var{option}]@dots{} [+@var{format}] +date [-u|--utc|--universal] @c this avoids a newline in the output +[ MMDDhhmm[[CC]YY][.ss] ] +@end example + +Invoking @command{date} with no @var{format} argument is equivalent to invoking +@samp{date '+%a %b %e %H:%M:%S %Z %Y'}. + +@findex strftime @r{and @command{date}} +@cindex time formats +@cindex formatting times +If given an argument that starts with a @samp{+}, @command{date} prints the +current time and date (or the time and date specified by the +@code{--date} option, see below) in the format defined by that argument, +which is the same as in the @code{strftime} function. Except for +directives, which start with @samp{%}, characters in the format string +are printed unchanged. The directives are described below. + +@menu +* Time directives:: %[HIklMprsSTXzZ] +* Date directives:: %[aAbBcdDhjmUwWxyY] +* Literal directives:: %[%nt] +* Padding:: Pad with zeroes, spaces (%_), or nothing (%-). +* Setting the time:: Changing the system clock. +* Options for date:: Instead of the current time. +* Examples of date:: Examples. +@end menu + +@node Time directives +@subsection Time directives + +@cindex time directives +@cindex directives, time + +@command{date} directives related to times. + +@table @samp +@item %H +hour (00@dots{}23) +@item %I +hour (01@dots{}12) +@item %k +hour ( 0@dots{}23) +@item %l +hour ( 1@dots{}12) +@item %M +minute (00@dots{}59) +@item %N +nanoseconds (000000000@dots{}999999999) +@item %p +locale's upper case @samp{AM} or @samp{PM} (blank in many locales) +@item %P +locale's lower case @samp{am} or @samp{pm} (blank in many locales) +@item %r +time, 12-hour (hh:mm:ss [AP]M) +@item %R +time, 24-hour (hh:mm). Same as @code{%H:%M}. +@item %s +@cindex epoch, seconds since +@cindex seconds since the epoch +@cindex beginning of time +seconds since the epoch, i.e., 1 January 1970 00:00:00 UTC (a +GNU extension). +Note that this value is the number of seconds between the epoch +and the current date as defined by the localtime system call. +It isn't changed by the @option{--date} option. +@item %S +second (00@dots{}60). The range is [00@dots{}60], and not [00@dots{}59], +in order to accommodate the occasional positive leap second. +@item %T +time, 24-hour (hh:mm:ss) +@item %X +locale's time representation (%H:%M:%S) +@item %z +RFC-822 style numeric time zone (e.g., -0600 or +0100), or nothing if no +time zone is determinable. This value reflects the @emph{current} time +zone. It isn't changed by the @option{--date} option. +@item %Z +time zone (e.g., EDT), or nothing if no time zone is +determinable. +Note that this value reflects the @emph{current} time zone. +It isn't changed by the @option{--date} option. +@end table + + +@node Date directives +@subsection Date directives + +@cindex date directives +@cindex directives, date + +@command{date} directives related to dates. + +@table @samp +@item %a +locale's abbreviated weekday name (Sun@dots{}Sat) +@item %A +locale's full weekday name, variable length (Sunday@dots{}Saturday) +@item %b +locale's abbreviated month name (Jan@dots{}Dec) +@item %B +locale's full month name, variable length (January@dots{}December) +@item %c +locale's date and time (Sat Nov 04 12:02:33 EST 1989) +@item %C +century (year divided by 100 and truncated to an integer) (00@dots{}99) +@item %d +day of month (01@dots{}31) +@item %D +date (mm/dd/yy) +@item %e +blank-padded day of month (1@dots{}31) +@item %F +the @w{ISO 8601} standard date format: @code{%Y-%m-%d}. +This is the preferred form for all uses. +@item %g +The year corresponding to the ISO week number, but without the century +(range @code{00} through @code{99}). This has the same format and value +as @code{%y}, except that if the ISO week number (see @code{%V}) belongs +to the previous or next year, that year is used instead. +@item %G +The year corresponding to the ISO week number. This has the same format +and value as @code{%Y}, except that if the ISO week number (see +@code{%V}) belongs to the previous or next year, that year is used +instead. +@item %h +same as %b +@item %j +day of year (001@dots{}366) +@item %m +month (01@dots{}12) +@item %u +day of week (1@dots{}7) with 1 corresponding to Monday +@item %U +week number of year with Sunday as first day of week (00@dots{}53). +Days in a new year preceding the first Sunday are in week zero. +@item %V +week number of year with Monday as first day of the week as a decimal +(01@dots{}53). If the week containing January 1 has four or more days in +the new year, then it is considered week 1; otherwise, it is week 53 of +the previous year, and the next week is week 1. (See the @acronym{ISO} 8601 +standard.) +@item %w +day of week (0@dots{}6) with 0 corresponding to Sunday +@item %W +week number of year with Monday as first day of week (00@dots{}53). +Days in a new year preceding the first Monday are in week zero. +@item %x +locale's date representation (mm/dd/yy) +@item %y +last two digits of year (00@dots{}99) +@item %Y +year (1970@dots{}.) +@end table + + +@node Literal directives +@subsection Literal directives + +@cindex literal directives +@cindex directives, literal + +@command{date} directives that produce literal strings. + +@table @samp +@item %% +a literal % +@item %n +a newline +@item %t +a horizontal tab +@end table + + +@node Padding +@subsection Padding + +@cindex numeric field padding +@cindex padding of numeric fields +@cindex fields, padding numeric + +By default, @command{date} pads numeric fields with zeroes, so that, for +example, numeric months are always output as two digits. GNU @command{date} +recognizes the following numeric modifiers between the @samp{%} and the +directive. + +@table @samp +@item - +(hyphen) do not pad the field; useful if the output is intended for +human consumption. +@item _ +(underscore) pad the field with spaces; useful if you need a fixed +number of characters in the output, but zeroes are too distracting. +@end table + +@noindent +These are GNU extensions. + +Here is an example illustrating the differences: + +@example +date +%d/%m -d "Feb 1" +@result{} 01/02 +date +%-d/%-m -d "Feb 1" +@result{} 1/2 +date +%_d/%_m -d "Feb 1" +@result{} 1/ 2 +@end example + + +@node Setting the time +@subsection Setting the time + +@cindex setting the time +@cindex time setting +@cindex appropriate privileges + +If given an argument that does not start with @samp{+}, @command{date} sets +the system clock to the time and date specified by that argument (as +described below). You must have appropriate privileges to set the +system clock. The @option{--date} and @option{--set} options may not be +used with such an argument. The @option{--universal} option may be used +with such an argument to indicate that the specified time and date are +relative to Coordinated Universal Time rather than to the local time +zone. + +The argument must consist entirely of digits, which have the following +meaning: + +@table @samp +@item MM +month +@item DD +day within month +@item hh +hour +@item mm +minute +@item CC +first two digits of year (optional) +@item YY +last two digits of year (optional) +@item ss +second (optional) +@end table + +The @option{--set} option also sets the system clock; see the next section. + + +@node Options for date +@subsection Options for @command{date} + +@cindex @command{date} options +@cindex options for @command{date} + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -d @var{datestr} +@itemx --date=@var{datestr} +@opindex -d +@opindex --date +@cindex parsing date strings +@cindex date strings, parsing +@cindex arbitrary date strings, parsing +@opindex yesterday +@opindex tomorrow +@opindex next @var{day} +@opindex last @var{day} +Display the time and date specified in @var{datestr} instead of the +current time and date. @var{datestr} can be in almost any common +format. It can contain month names, time zones, @samp{am} and @samp{pm}, +@samp{yesterday}, @samp{ago}, @samp{next}, etc. @xref{Date input formats}. + +@item -f @var{datefile} +@itemx --file=@var{datefile} +@opindex -f +@opindex --file +Parse each line in @var{datefile} as with @option{-d} and display the +resulting time and date. If @var{datefile} is @samp{-}, use standard +input. This is useful when you have many dates to process, because the +system overhead of starting up the @command{date} executable many times can +be considerable. + +@item -I @var{timespec} +@itemx --iso-8601[=@var{timespec}] +@opindex -I @var{timespec} +@opindex --iso-8601[=@var{timespec}] +Display the date using the @acronym{ISO} 8601 format, @samp{%Y-%m-%d}. + +The argument @var{timespec} specifies the number of additional +terms of the time to include. It can be one of the following: +@table @samp +@item auto +The default behavior: print just the date. + +@item hours +Append the hour of the day to the date. + +@item minutes +Append the hours and minutes. + +@item seconds +Append the hours, minutes, and seconds. +@end table + +If showing any time terms, then include the time zone using the format +@samp{%z}. + +If @var{timespec} is omitted with @option{--iso-8601}, the default is +@samp{auto}. On older systems, @sc{gnu} @command{date} instead +supports an obsolete option @option{-I[@var{timespec}]}, where +@var{timespec} defaults to @samp{auto}. @acronym{POSIX} 1003.1-2001 +(@pxref{Standards conformance}) does not allow @option{-I} without an +argument; use @option{--iso-8601} instead. + +@item -R +@itemx --rfc-822 +@opindex -R +@opindex --rfc-822 +Display the time and date using the RFC-822-conforming +format, @samp{%a, %_d %b %Y %H:%M:%S %z}. + +@item -r @var{file} +@itemx --reference=@var{file} +@opindex -r +@opindex --reference +Display the time and date reference according to the last modification +time of @var{file}, instead of the current time and date. + +@item -s @var{datestr} +@itemx --set=@var{datestr} +@opindex -s +@opindex --set +Set the time and date to @var{datestr}. See @option{-d} above. + +@item -u +@itemx --utc +@itemx --universal +@opindex -u +@opindex --utc +@opindex --universal +@cindex Coordinated Universal Time +@cindex UTC +@cindex Greenwich Mean Time +@cindex GMT +Use Coordinated Universal Time (@acronym{UTC}) by operating as if the +@env{TZ} environment variable were set to the string @samp{UTC0}. +Normally, @command{date} operates in the time zone indicated by +@env{TZ}, or the system default if @env{TZ} is not set. Coordinated +Universal Time is often called ``Greenwich Mean Time'' (@sc{gmt}) for +historical reasons. +@end table + + +@node Examples of date +@subsection Examples of @command{date} + +@cindex examples of @command{date} + +Here are a few examples. Also see the documentation for the @option{-d} +option in the previous section. + +@itemize @bullet + +@item +To print the date of the day before yesterday: + +@example +date --date='2 days ago' +@end example + +@item +To print the date of the day three months and one day hence: +@example +date --date='3 months 1 day' +@end example + +@item +To print the day of year of Christmas in the current year: +@example +date --date='25 Dec' +%j +@end example + +@item +To print the current full month name and the day of the month: +@example +date '+%B %d' +@end example + +But this may not be what you want because for the first nine days of +the month, the @samp{%d} expands to a zero-padded two-digit field, +for example @samp{date -d 1may '+%B %d'} will print @samp{May 01}. + +@item +To print a date without the leading zero for one-digit days +of the month, you can use the (GNU extension) @code{-} modifier to suppress +the padding altogether. +@example +date -d 1may '+%B %-d +@end example + +@item +To print the current date and time in the format required by many +non-GNU versions of @command{date} when setting the system clock: +@example +date +%m%d%H%M%Y.%S +@end example + +@item +To set the system clock forward by two minutes: +@example +date --set='+2 minutes' +@end example + +@item +To print the date in the format specified by RFC-822, +use @samp{date --rfc}. I just did and saw this: + +@example +Mon, 25 Mar 1996 23:34:17 -0600 +@end example + +@item +To convert a date string to the number of seconds since the epoch +(which is 1970-01-01 00:00:00 UTC), use the @option{--date} option with +the @samp{%s} format. That can be useful in sorting and/or graphing +and/or comparing data by date. The following command outputs the +number of the seconds since the epoch for the time two minutes after the +epoch: + +@example +date --date='1970-01-01 00:02:00 +0000' +%s +120 +@end example + +If you do not specify time zone information in the date string, +@command{date} uses your computer's idea of the time zone when +interpreting the string. For example, if your computer's time zone is +that of Cambridge, Massachusetts, which was then 5 hours (i.e., 18,000 +seconds) behind UTC: + +@example +# local time zone used +date --date='1970-01-01 00:02:00' +%s +18120 +@end example + +@item +If you're sorting or graphing dated data, your raw date values may be +represented as seconds since the epoch. But few people can look at +the date @samp{946684800} and casually note ``Oh, that's the first second +of the year 2000 in Greenwich, England.'' + +@example +date --date='2000-01-01 UTC' +%s +946684800 +@end example + +To convert such an unwieldy number of seconds back to +a more readable form, use a command like this: + +@smallexample +# local time zone used +date -d '1970-01-01 UTC 946684800 seconds' +"%Y-%m-%d %T %z" +1999-12-31 19:00:00 -0500 +@end smallexample + +@end itemize + + +@node uname invocation +@section @command{uname}: Print system information + +@pindex uname +@cindex print system information +@cindex system information, printing + +@command{uname} prints information about the machine and operating system +it is run on. If no options are given, @command{uname} acts as if the +@code{-s} option were given. Synopsis: + +@example +uname [@var{option}]@dots{} +@end example + +If multiple options or @code{-a} are given, the selected information is +printed in this order: + +@example +@var{kernel-name} @var{nodename} @var{kernel-release} @var{kernel-version} @var{machine} @var{processor} @var{hardware-platform} @var{operating-system} +@end example + +The information may contain internal spaces, so such output cannot be +parsed reliably. In the following example, @var{release} is +@samp{2.2.18ss.e820-bda652a #4 SMP Tue Jun 5 11:24:08 PDT 2001}: + +@example +uname -a +@result{} Linux dum 2.2.18ss.e820-bda652a #4 SMP Tue Jun 5 11:24:08 PDT 2001 i686 unknown unknown GNU/Linux +@end example + + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -a +@itemx --all +@opindex -a +@opindex --all +Print all of the below information. + +@item -i +@itemx --hardware-platform +@opindex -i +@opindex --hardware-platform +@cindex implementation, hardware +@cindex hardware platform +@cindex platform, hardware +Print the hardware platform name +(sometimes called the hardware implementation). + +@item -m +@itemx --machine +@opindex -m +@opindex --machine +@cindex machine type +@cindex hardware class +@cindex hardware type +Print the machine hardware name (sometimes called the hardware class). + +@item -n +@itemx --nodename +@opindex -n +@opindex --nodename +@cindex hostname +@cindex node name +@cindex network node name +Print the network node hostname. + +@item -p +@itemx --processor +@opindex -p +@opindex --processor +@cindex host processor type +Print the processor type (sometimes called the instruction set +architecture or ISA). + +@item -o +@itemx --operating-system +@opindex -o +@opindex --operating-system +@cindex operating system name +Print the name of the operating system. + +@item -r +@itemx --kernel-release +@opindex -r +@opindex --kernel-release +@cindex kernel release +@cindex release of kernel +Print the kernel release. + +@item -s +@itemx --kernel-name +@opindex -s +@opindex --kernel-name +@cindex kernel name +@cindex name of kernel +Print the kernel name. + +@item -v +@itemx --kernel-version +@opindex -v +@opindex --kernel-version +@cindex kernel version +@cindex version of kernel +Print the kernel version. + +@end table + +@node hostname invocation +@section @command{hostname}: Print or set system name + +@pindex hostname +@cindex setting the hostname +@cindex printing the hostname +@cindex system name, printing +@cindex appropriate privileges + +With no arguments, @command{hostname} prints the name of the current host +system. With one argument, it sets the current host name to the +specified string. You must have appropriate privileges to set the host +name. Synopsis: + +@example +hostname [@var{name}] +@end example + +The only options are @option{--help} and @option{--version}. @xref{Common +options}. + + +@node hostid invocation +@section @command{hostid}: Print numeric host identifier. + +@pindex hostid +@cindex printing the host identifier + +@command{hostid} prints the numeric identifier of the current host +in hexadecimal. This command accepts no arguments. +The only options are @option{--help} and @option{--version}. +@xref{Common options}. + +For example, here's what it prints on one system I use: + +@example +$ hostid +1bac013d +@end example + +On that system, the 32-bit quantity happens to be closely +related to the system's Internet address, but that isn't always +the case. + + +@node Modified command invocation +@chapter Modified command invocation + +@cindex modified command invocation +@cindex invocation of commands, modified +@cindex commands for invoking other commands + +This section describes commands that run other commands in some context +different than the current one: a modified environment, as a different +user, etc. + +@menu +* chroot invocation:: Modify the root directory. +* env invocation:: Modify environment variables. +* nice invocation:: Modify scheduling priority. +* nohup invocation:: Immunize to hangups. +* su invocation:: Modify user and group id. +@end menu + + +@node chroot invocation +@section @command{chroot}: Run a command with a different root directory + +@pindex chroot +@cindex running a program in a specified root directory +@cindex root directory, running a program in a specified + +@command{chroot} runs a command with a specified root directory. +On many systems, only the super-user can do this. +Synopses: + +@example +chroot @var{newroot} [@var{command} [@var{args}]@dots{}] +chroot @var{option} +@end example + +Ordinarily, filenames are looked up starting at the root of the +directory structure, i.e., @file{/}. @command{chroot} changes the root to +the directory @var{newroot} (which must exist) and then runs +@var{command} with optional @var{args}. If @var{command} is not +specified, the default is the value of the @env{SHELL} environment +variable or @command{/bin/sh} if not set, invoked with the @option{-i} option. + +The only options are @option{--help} and @option{--version}. @xref{Common +options}. + +Here are a few tips to help avoid common problems in using chroot. +To start with a simple example, make @var{command} refer to a statically +linked binary. If you were to use a dynamically linked executable, then +you'd have to arrange to have the shared libraries in the right place under +your new root directory. + +For example, if you create a statically linked `ls' executable, +and put it in /tmp/empty, you can run this command as root: + +@example +$ chroot /tmp/empty /ls -Rl / +@end example + +Then you'll see output like this: + +@example +/: +total 1023 +-rwxr-xr-x 1 0 0 1041745 Aug 16 11:17 ls +@end example + +If you want to use a dynamically linked executable, say @command{bash}, +then first run @samp{ldd bash} to see what shared objects it needs. +Then, in addition to copying the actual binary, also copy the listed +files to the required positions under your intended new root directory. +Finally, if the executable requires any other files (e.g., data, state, +device files), copy them into place, too. + + +@node env invocation +@section @command{env}: Run a command in a modified environment + +@pindex env +@cindex environment, running a program in a modified +@cindex modified environment, running a program in a +@cindex running a program in a modified environment + +@command{env} runs a command with a modified environment. Synopses: + +@example +env [@var{option}]@dots{} [@var{name}=@var{value}]@dots{} @c +[@var{command} [@var{args}]@dots{}] +env +@end example + +Arguments of the form @samp{@var{variable}=@var{value}} set +the environment variable @var{variable} to value @var{value}. +@var{value} may be empty (@samp{@var{variable}=}). Setting a variable +to an empty value is different from unsetting it. + +@vindex PATH +The first remaining argument specifies the program name to invoke; it is +searched for according to the @env{PATH} environment variable. Any +remaining arguments are passed as arguments to that program. + +@cindex environment, printing + +If no command name is specified following the environment +specifications, the resulting environment is printed. This is like +specifying a command name of @command{printenv}. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp + +@item -u @var{name} +@itemx --unset=@var{name} +@opindex -u +@opindex -unset +Remove variable @var{name} from the environment, if it was in the +environment. + +@item - +@itemx -i +@itemx --ignore-environment +@opindex - +@opindex -i +@opindex --ignore-environment +Start with an empty environment, ignoring the inherited environment. + +@end table + + +@node nice invocation +@section @command{nice}: Run a command with modified scheduling priority + +@pindex nice +@cindex modifying scheduling priority +@cindex scheduling priority, modifying +@cindex priority, modifying +@cindex appropriate privileges + +@command{nice} prints or modifies the scheduling priority of a job. +Synopsis: + +@example +nice [@var{option}]@dots{} [@var{command} [@var{arg}]@dots{}] +@end example + +If no arguments are given, @command{nice} prints the current scheduling +priority, which it inherited. Otherwise, @command{nice} runs the given +@var{command} with its scheduling priority adjusted. If no +@var{adjustment} is given, the priority of the command is incremented by +10. You must have appropriate privileges to specify a negative +adjustment. The priority can be adjusted by @command{nice} over the range +of -20 (the highest priority) to 19 (the lowest). + +@cindex conflicts with shell built-ins +@cindex built-in shell commands, conflicts with +Because most shells have a built-in command by the same name, using the +unadorned command name in a script or interactively may get you +different functionality than that described here. + +The program accepts the following option. Also see @ref{Common options}. + +@table @samp +@item -n @var{adjustment} +@itemx --adjustment=@var{adjustment} +@opindex -n +@opindex --adjustment +Add @var{adjustment} instead of 10 to the command's priority. + +On older systems, @command{nice} supports an obsolete option +@option{-@var{adjustment}}. @acronym{POSIX} 1003.1-2001 (@pxref{Standards +conformance}) does not allow this; use @option{-n @var{adjustment}} +instead. + +@end table + + +@node nohup invocation +@section @command{nohup}: Run a command immune to hangups + +@pindex nohup +@cindex hangups, immunity to +@cindex immunity to hangups +@cindex logging out and continuing to run + +@flindex nohup.out +@command{nohup} runs the given @var{command} with hangup signals ignored, +so that the command can continue running in the background after you log +out. Synopsis: + +@example +nohup @var{command} [@var{arg}]@dots{} +@end example + +@flindex nohup.out +If standard output is a terminal, it is redirected so that it is appended +to the file @file{nohup.out}; if that cannot be written to, it is appended +to the file @file{$HOME/nohup.out}. If that cannot be written to, the +command is not run. + +If @command{nohup} creates either @file{nohup.out} or +@file{$HOME/nohup.out}, it creates it with no ``group'' or ``other'' +access permissions. It does not change the permissions if the output +file already existed. + +If standard error is a terminal, it is redirected to the same file +descriptor as the standard output. + +@command{nohup} does not automatically put the command it runs in the +background; you must do that explicitly, by ending the command line +with an @samp{&}. Also, @command{nohup} does not change the +scheduling priority of @var{command}; use @command{nice} for that, +e.g., @samp{nohup nice @var{command}}. + +The only options are @option{--help} and @option{--version}. @xref{Common +options}. + +@cindex exit status of @command{nohup} +Exit status: + +@display +126 if @var{command} was found but could not be invoked +127 if @command{nohup} itself failed or if @var{command} could not be found +the exit status of @var{command} otherwise +@end display + + +@node su invocation +@section @command{su}: Run a command with substitute user and group id + +@pindex su +@cindex substitute user and group ids +@cindex user id, switching +@cindex super-user, becoming +@cindex root, becoming + +@command{su} allows one user to temporarily become another user. It runs a +command (often an interactive shell) with the real and effective user +id, group id, and supplemental groups of a given @var{user}. Synopsis: + +@example +su [@var{option}]@dots{} [@var{user} [@var{arg}]@dots{}] +@end example + +@cindex passwd entry, and @command{su} shell +@flindex /bin/sh +@flindex /etc/passwd +If no @var{user} is given, the default is @code{root}, the super-user. +The shell to use is taken from @var{user}'s @code{passwd} entry, or +@file{/bin/sh} if none is specified there. If @var{user} has a +password, @command{su} prompts for the password unless run by a user with +effective user id of zero (the super-user). + +@vindex HOME +@vindex SHELL +@vindex USER +@vindex LOGNAME +@cindex login shell +By default, @command{su} does not change the current directory. +It sets the environment variables @env{HOME} and @env{SHELL} +from the password entry for @var{user}, and if @var{user} is not +the super-user, sets @env{USER} and @env{LOGNAME} to @var{user}. +By default, the shell is not a login shell. + +Any additional @var{arg}s are passed as additional arguments to the +shell. + +@cindex @option{-su} +GNU @command{su} does not treat @file{/bin/sh} or any other shells specially +(e.g., by setting @code{argv[0]} to @option{-su}, passing @code{-c} only +to certain shells, etc.). + +@findex syslog +@command{su} can optionally be compiled to use @code{syslog} to report +failed, and optionally successful, @command{su} attempts. (If the system +supports @code{syslog}.) However, GNU @command{su} does not check if the +user is a member of the @code{wheel} group; see below. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp +@item -c @var{command} +@itemx --command=@var{command} +@opindex -c +@opindex --command +Pass @var{command}, a single command line to run, to the shell with +a @code{-c} option instead of starting an interactive shell. + +@item -f +@itemx --fast +@opindex -f +@opindex --fast +@flindex .cshrc +@cindex file name pattern expansion, disabled +@cindex globbing, disabled +Pass the @code{-f} option to the shell. This probably only makes sense +if the shell run is @command{csh} or @command{tcsh}, for which the @code{-f} +option prevents reading the startup file (@file{.cshrc}). With +Bourne-like shells, the @code{-f} option disables file name pattern +expansion (globbing), which is not likely to be useful. + +@item - +@itemx -l +@itemx --login +@opindex - +@opindex -l +@opindex --login +@c other variables already indexed above +@vindex TERM +@vindex PATH +@cindex login shell, creating +Make the shell a login shell. This means the following. Unset all +environment variables except @env{TERM}, @env{HOME}, and @env{SHELL} +(which are set as described above), and @env{USER} and @env{LOGNAME} +(which are set, even for the super-user, as described above), and set +@env{PATH} to a compiled-in default value. Change to @var{user}'s home +directory. Prepend @samp{-} to the shell's name, intended to make it +read its login startup file(s). + +@item -m +@itemx -p +@itemx --preserve-environment +@opindex -m +@opindex -p +@opindex --preserve-environment +@cindex environment, preserving +@flindex /etc/shells +@cindex restricted shell +Do not change the environment variables @env{HOME}, @env{USER}, +@env{LOGNAME}, or @env{SHELL}. Run the shell given in the environment +variable @env{SHELL} instead of the shell from @var{user}'s passwd +entry, unless the user running @command{su} is not the superuser and +@var{user}'s shell is restricted. A @dfn{restricted shell} is one that +is not listed in the file @file{/etc/shells}, or in a compiled-in list +if that file does not exist. Parts of what this option does can be +overridden by @code{--login} and @code{--shell}. + +@item -s @var{shell} +@itemx --shell=@var{shell} +@opindex -s +@opindex --shell +Run @var{shell} instead of the shell from @var{user}'s passwd entry, +unless the user running @command{su} is not the superuser and @var{user}'s +shell is restricted (see @option{-m} just above). + +@end table + +@cindex wheel group, not supported +@cindex group wheel, not supported +@cindex fascism +@heading Why GNU @command{su} does not support the @samp{wheel} group + +(This section is by Richard Stallman.) + +@cindex Twenex +@cindex MIT AI lab +Sometimes a few of the users try to hold total power over all the +rest. For example, in 1984, a few users at the MIT AI lab decided to +seize power by changing the operator password on the Twenex system and +keeping it secret from everyone else. (I was able to thwart this coup +and give power back to the users by patching the kernel, but I +wouldn't know how to do that in Unix.) + +However, occasionally the rulers do tell someone. Under the usual +@command{su} mechanism, once someone learns the root password who +sympathizes with the ordinary users, he or she can tell the rest. The +``wheel group'' feature would make this impossible, and thus cement the +power of the rulers. + +I'm on the side of the masses, not that of the rulers. If you are +used to supporting the bosses and sysadmins in whatever they do, you +might find this idea strange at first. + + +@node Process control +@chapter Process control + +@cindex processes, commands for controlling +@cindex commands for controlling processes + +@menu +* kill invocation:: Sending a signal to processes. +@end menu + + +@node kill invocation +@section @command{kill}: Send a signal to processes + +@pindex kill +@cindex send a signal to processes + +The @command{kill} command sends a signal to processes, causing them +to terminate or otherwise act upon receiving the signal in some way. +Alternatively, it lists information about signals. Synopses: + +@example +kill [-s @var{signal} | --signal @var{signal} | -@var{signal}] @var{pid}@dots{} +kill [-l | --list | -t | --table] [@var{signal}]@dots{} +@end example + +The first form of the @command{kill} command sends a signal to all +@var{pid} arguments. The default signal to send if none is specified +is @samp{TERM}. The special signal number @samp{0} does not denote a +valid signal, but can be used to test whether the @var{pid} arguments +specify processes to which a signal could be sent. + +If @var{pid} is positive, the signal is sent to the process with the +process id @var{pid}. If @var{pid} is zero, the signal is sent to all +processes in the process group of the current process. If @var{pid} +is -1, the signal is sent to all processes for which the user has +permission to send a signal. If @var{pid} is less than -1, the signal +is sent to all processes in the process group that equals the absolute +value of @var{pid}. + +If @var{pid} is not positive, a system-dependent set of system +processes is excluded from the list of processes to which the signal +is sent. + +If a negative @var{PID} argument is desired as the first one, either a +signal must be specified as well, or the option parsing +must be interrupted with `--' before the first @var{pid} argument. +The following three commands are equivalent: + +@example +kill -15 -1 +kill -TERM -1 +kill -- -1 +@end example + +The first form of the @command{kill} command succeeds if every @var{pid} +argument specifies at least one process that the signal was sent to. + +The second form of the @command{kill} command lists signal information. +Either the @option{-l} or @option{--list} option, or the @option{-t} +or @option{--table} option must be specified. Without any +@var{signal} argument, all supported signals are listed. The output +of @option{-l} or @option{--list} is a list of the signal names, one +per line; if @var{signal} is already a name, the signal number is +printed instead. The output of @option{-t} or @option{--table} is a +table of signal numbers, names, and descriptions. This form of the +@command{kill} command succeeds if all @var{signal} arguments are valid +and if there is no output error. + +The @command{kill} command also supports the @option{--help} and +@option{--version} options. @xref{Common options}. + +A @var{signal} may be a signal name like @samp{HUP}, or a signal +number like @samp{1}, or an exit status of a process terminated by the +signal. A signal name can be given in canonical form or prefixed by +@samp{SIG}. The case of the letters is ignored, except for the +@option{-@var{signal}} option which must use upper case to avoid +ambiguity with lower case option letters. The following signal names +and numbers are supported on all @acronym{POSIX} compliant systems: + +@table @samp +@item HUP +1. Hangup. +@item INT +2. Terminal interrupt. +@item QUIT +3. Terminal quit. +@item ABRT +6. Process abort. +@item KILL +9. Kill (cannot be caught or ignored). +@item ALRM +14. Alarm Clock. +@item TERM +15. Termination. +@end table + +@noindent +Other supported signal names have system-dependent corresponding +numbers. All systems conforming to @acronym{POSIX} 1003.1-2001 also +support the following signals: + +@table @samp +@item BUS +Access to an undefined portion of a memory object. +@item CHLD +Child process terminated, stopped, or continued. +@item CONT +Continue executing, if stopped. +@item FPE +Erroneous arithmetic operation. +@item ILL +Illegal Instruction. +@item PIPE +Write on a pipe with no one to read it. +@item SEGV +Invalid memory reference. +@item STOP +Stop executing (cannot be caught or ignored). +@item TSTP +Terminal stop. +@item TTIN +Background process attempting read. +@item TTOU +Background process attempting write. +@item URG +High bandwidth data is available at a socket. +@item USR1 +User-defined signal 1. +@item USR2 +User-defined signal 2. +@end table + +@noindent +@acronym{POSIX} 1003.1-2001 systems that support the @acronym{XSI} extension +also support the following signals: + +@table @samp +@item POLL +Pollable event. +@item PROF +Profiling timer expired. +@item SYS +Bad system call. +@item TRAP +Trace/breakpoint trap. +@item VTALRM +Virtual timer expired. +@item XCPU +CPU time limit exceeded. +@item XFSZ +File size limit exceeded. +@end table + +@noindent +@acronym{POSIX} 1003.1-2001 systems that support the @acronym{XRT} extension +also support at least eight real-time signals called @samp{RTMIN}, +@samp{RTMIN+1}, @dots{}, @samp{RTMAX-1}, @samp{RTMAX}. + + +@node Delaying +@chapter Delaying + +@cindex delaying commands +@cindex commands for delaying + +@c Perhaps @command{wait} or other commands should be described here also? + +@menu +* sleep invocation:: Delay for a specified time. +@end menu + + +@node sleep invocation +@section @command{sleep}: Delay for a specified time + +@pindex sleep +@cindex delay for a specified time + +@command{sleep} pauses for an amount of time specified by the sum of +the values of the command line arguments. +Synopsis: + +@example +sleep @var{number}[smhd]@dots{} +@end example + +@cindex time units +Each argument is a number followed by an optional unit; the default +is seconds. The units are: + +@table @samp +@item s +seconds +@item m +minutes +@item h +hours +@item d +days +@end table + +Historical implementations of @command{sleep} have required that +@var{number} be an integer. However, GNU @command{sleep} accepts +arbitrary floating point numbers. + +The only options are @option{--help} and @option{--version}. @xref{Common +options}. + + +@node Numeric operations +@chapter Numeric operations + +@cindex numeric operations +These programs do numerically-related operations. + +@menu +* factor invocation:: Show factors of numbers. +* seq invocation:: Print sequences of numbers. +@end menu + + +@node factor invocation +@section @command{factor}: Print prime factors + +@pindex factor +@cindex prime factors + +@command{factor} prints prime factors. Synopses: + +@example +factor [@var{number}]@dots{} +factor @var{option} +@end example + +If no @var{number} is specified on the command line, @command{factor} reads +numbers from standard input, delimited by newlines, tabs, or spaces. + +The only options are @option{--help} and @option{--version}. @xref{Common +options}. + +The algorithm it uses is not very sophisticated, so for some inputs +@command{factor} runs for a long time. The hardest numbers to factor are +the products of large primes. Factoring the product of the two largest 32-bit +prime numbers takes over 10 minutes of CPU time on a 400MHz Pentium II. + +@example +$ p=`echo '4294967279 * 4294967291'|bc` +$ factor $p +18446743979220271189: 4294967279 4294967291 +@end example + +In contrast, @command{factor} factors the largest 64-bit number in just +over a tenth of a second: + +@example +$ factor `echo '2^64-1'|bc` +18446744073709551615: 3 5 17 257 641 65537 6700417 +@end example + +@node seq invocation +@section @command{seq}: Print numeric sequences + +@pindex seq +@cindex numeric sequences +@cindex sequence of numbers + +@command{seq} prints a sequence of numbers to standard output. Synopses: + +@example +seq [@var{option}]@dots{} [@var{first} [@var{increment}]] @var{last}@dots{} +@end example + +@command{seq} prints the numbers from @var{first} to @var{last} by +@var{increment}. By default, @var{first} and @var{increment} are both 1, +and each number is printed on its own line. All numbers can be reals, +not just integers. + +The program accepts the following options. Also see @ref{Common options}. + +@table @samp +@item -f @var{format} +@itemx --format=@var{format} +@opindex -f @var{format} +@opindex --format=@var{format} +@cindex formatting of numbers in @command{seq} +Print all numbers using @var{format}; default @samp{%g}. +@var{format} must contain exactly one of the floating point +output formats @samp{%e}, @samp{%f}, or @samp{%g}. + +@item -s @var{string} +@itemx --separator=@var{string} +@cindex separator for numbers in @command{seq} +Separate numbers with @var{string}; default is a newline. +The output always terminates with a newline. + +@item -w +@itemx --equal-width +Print all numbers with the same width, by padding with leading zeroes. +(To have other kinds of padding, use @option{--format}). + +@end table + +If you want to use @command{seq} to print sequences of large integer values, +don't use the default @samp{%g} format since it can result in +loss of precision: + +@example +$ seq 1000000 1000001 +1e+06 +1e+06 +@end example + +Instead, you can use the format, @samp{%1.f}, +to print large decimal numbers with no exponent and no decimal point. + +@example +$ seq --format=%1.f 1000000 1000001 +1000000 +1000001 +@end example + +If you want hexadecimal output, you can use @command{printf} +to perform the conversion: + +@example +$ printf %x'\n' `seq -f %1.f 1048575 1024 1050623` +fffff +1003ff +1007ff +@end example + +For very long lists of numbers, use xargs to avoid +system limitations on the length of an argument list: + +@example +$ seq -f %1.f 1000000 | xargs printf %x'\n' | tail -n 3 +f423e +f423f +f4240 +@end example + +To generate octal output, use the printf @code{%o} format instead +of @code{%x}. Note however that using printf works only for numbers +smaller than @code{2^32}: + +@example +$ printf "%x\n" `seq -f %1.f 4294967295 4294967296` +ffffffff +bash: printf: 4294967296: Numerical result out of range +@end example + +On most systems, seq can produce whole-number output for values up to +@code{2^53}, so here's a more general approach to base conversion that +also happens to be more robust for such large numbers. It works by +using @code{bc} and setting its output radix variable, @var{obase}, +to @samp{16} in this case to produce hexadecimal output. + +@example +$ (echo obase=16; seq -f %1.f 4294967295 4294967296)|bc +FFFFFFFF +100000000 +@end example + +Be careful when using @command{seq} with a fractional @var{increment}, +otherwise you may see surprising results. Most people would expect to +see @code{0.3} printed as the last number in this example: + +@example +$ seq -s' ' 0 .1 .3 +0 0.1 0.2 +@end example + +But that doesn't happen on most systems because @command{seq} is +implemented using binary floating point arithmetic (via the C +@code{double} type) -- which means some decimal numbers like @code{.1} +cannot be represented exactly. That in turn means some nonintuitive +conditions like @code{.1 * 3 > .3} will end up being true. + +To work around that in the above example, use a slightly larger number as +the @var{last} value: + +@example +$ seq -s' ' 0 .1 .31 +0 0.1 0.2 0.3 +@end example + +In general, when using an @var{increment} with a fractional part, where +(@var{last} - @var{first}) / @var{increment} is (mathematically) a whole +number, specify a slightly larger (or smaller, if @var{increment} is negative) +value for @var{last} to ensure that @var{last} is the final value printed +by seq. + +@node File permissions +@chapter File permissions +@include perm.texi + +@include getdate.texi + +@c What's GNU? +@c Arnold Robbins +@node Opening the software toolbox +@chapter Opening the Software Toolbox + +This chapter originally appeared in @cite{Linux Journal}, volume 1, +number 2, in the @cite{What's GNU?} column. It was written by Arnold +Robbins. + +@menu +* Toolbox introduction:: Toolbox introduction +* I/O redirection:: I/O redirection +* The who command:: The @command{who} command +* The cut command:: The @command{cut} command +* The sort command:: The @command{sort} command +* The uniq command:: The @command{uniq} command +* Putting the tools together:: Putting the tools together +@end menu + + +@node Toolbox introduction +@unnumberedsec Toolbox Introduction + +This month's column is only peripherally related to the GNU Project, in +that it describes a number of the GNU tools on your GNU/Linux system and how they +might be used. What it's really about is the ``Software Tools'' philosophy +of program development and usage. + +The software tools philosophy was an important and integral concept +in the initial design and development of Unix (of which Linux and GNU are +essentially clones). Unfortunately, in the modern day press of +Internetworking and flashy GUIs, it seems to have fallen by the +wayside. This is a shame, since it provides a powerful mental model +for solving many kinds of problems. + +Many people carry a Swiss Army knife around in their pants pockets (or +purse). A Swiss Army knife is a handy tool to have: it has several knife +blades, a screwdriver, tweezers, toothpick, nail file, corkscrew, and perhaps +a number of other things on it. For the everyday, small miscellaneous jobs +where you need a simple, general purpose tool, it's just the thing. + +On the other hand, an experienced carpenter doesn't build a house using +a Swiss Army knife. Instead, he has a toolbox chock full of specialized +tools---a saw, a hammer, a screwdriver, a plane, and so on. And he knows +exactly when and where to use each tool; you won't catch him hammering nails +with the handle of his screwdriver. + +The Unix developers at Bell Labs were all professional programmers and trained +computer scientists. They had found that while a one-size-fits-all program +might appeal to a user because there's only one program to use, in practice +such programs are + +@enumerate a +@item +difficult to write, + +@item +difficult to maintain and +debug, and + +@item +difficult to extend to meet new situations. +@end enumerate + +Instead, they felt that programs should be specialized tools. In short, each +program ``should do one thing well.'' No more and no less. Such programs are +simpler to design, write, and get right---they only do one thing. + +Furthermore, they found that with the right machinery for hooking programs +together, that the whole was greater than the sum of the parts. By combining +several special purpose programs, you could accomplish a specific task +that none of the programs was designed for, and accomplish it much more +quickly and easily than if you had to write a special purpose program. +We will see some (classic) examples of this further on in the column. +(An important additional point was that, if necessary, take a detour +and build any software tools you may need first, if you don't already +have something appropriate in the toolbox.) + +@node I/O redirection +@unnumberedsec I/O Redirection + +Hopefully, you are familiar with the basics of I/O redirection in the +shell, in particular the concepts of ``standard input,'' ``standard output,'' +and ``standard error''. Briefly, ``standard input'' is a data source, where +data comes from. A program should not need to either know or care if the +data source is a disk file, a keyboard, a magnetic tape, or even a punched +card reader. Similarly, ``standard output'' is a data sink, where data goes +to. The program should neither know nor care where this might be. +Programs that only read their standard input, do something to the data, +and then send it on, are called @dfn{filters}, by analogy to filters in a +water pipeline. + +With the Unix shell, it's very easy to set up data pipelines: + +@smallexample +program_to_create_data | filter1 | .... | filterN > final.pretty.data +@end smallexample + +We start out by creating the raw data; each filter applies some successive +transformation to the data, until by the time it comes out of the pipeline, +it is in the desired form. + +This is fine and good for standard input and standard output. Where does the +standard error come in to play? Well, think about @command{filter1} in +the pipeline above. What happens if it encounters an error in the data it +sees? If it writes an error message to standard output, it will just +disappear down the pipeline into @command{filter2}'s input, and the +user will probably never see it. So programs need a place where they can send +error messages so that the user will notice them. This is standard error, +and it is usually connected to your console or window, even if you have +redirected standard output of your program away from your screen. + +For filter programs to work together, the format of the data has to be +agreed upon. The most straightforward and easiest format to use is simply +lines of text. Unix data files are generally just streams of bytes, with +lines delimited by the @acronym{ASCII} @sc{lf} (Line Feed) character, +conventionally called a ``newline'' in the Unix literature. (This is +@code{'\n'} if you're a C programmer.) This is the format used by all +the traditional filtering programs. (Many earlier operating systems +had elaborate facilities and special purpose programs for managing +binary data. Unix has always shied away from such things, under the +philosophy that it's easiest to simply be able to view and edit your +data with a text editor.) + +OK, enough introduction. Let's take a look at some of the tools, and then +we'll see how to hook them together in interesting ways. In the following +discussion, we will only present those command line options that interest +us. As you should always do, double check your system documentation +for the full story. + +@node The who command +@unnumberedsec The @command{who} Command + +The first program is the @command{who} command. By itself, it generates a +list of the users who are currently logged in. Although I'm writing +this on a single-user system, we'll pretend that several people are +logged in: + +@example +$ who +@print{} arnold console Jan 22 19:57 +@print{} miriam ttyp0 Jan 23 14:19(:0.0) +@print{} bill ttyp1 Jan 21 09:32(:0.0) +@print{} arnold ttyp2 Jan 23 20:48(:0.0) +@end example + +Here, the @samp{$} is the usual shell prompt, at which I typed @samp{who}. +There are three people logged in, and I am logged in twice. On traditional +Unix systems, user names are never more than eight characters long. This +little bit of trivia will be useful later. The output of @command{who} is nice, +but the data is not all that exciting. + +@node The cut command +@unnumberedsec The @command{cut} Command + +The next program we'll look at is the @command{cut} command. This program +cuts out columns or fields of input data. For example, we can tell it +to print just the login name and full name from the @file{/etc/passwd} +file. The @file{/etc/passwd} file has seven fields, separated by +colons: + +@example +arnold:xyzzy:2076:10:Arnold D. Robbins:/home/arnold:/bin/bash +@end example + +To get the first and fifth fields, we would use @command{cut} like this: + +@example +$ cut -d: -f1,5 /etc/passwd +@print{} root:Operator +@dots{} +@print{} arnold:Arnold D. Robbins +@print{} miriam:Miriam A. Robbins +@dots{} +@end example + +With the @option{-c} option, @command{cut} will cut out specific characters +(i.e., columns) in the input lines. This is useful for input data +that has fixed width fields, and does not have a field separator. For +example, list the Monday dates for the current month: + +@c Is using cal ok? Looked at gcal, but I don't like it. +@example +$ cal | cut -c 3-5 +@print{}Mo +@print{} +@print{} 6 +@print{} 13 +@print{} 20 +@print{} 27 +@end example + +Cut can also add field separators to fixed width data, using the +@option{--output-delimiter} option. This can be very useful to fill a +database: + +@c [Why] can't that silly total line for directories be switched off? +@example +$ ls -ld ~/* | cut --output-delimiter=, -c1,2-4,5-7,8-10,57- | tee home.cs +@print{} d,rwx,r-x,r-x,CVS +@print{} d,rwx,---,---,Mail +@print{} d,rwx,r-x,r-x,lilypond +@print{} d,rwx,r-x,r-x,savannah +$ mysql -e 'create table home \ + (d char(1),u char(3), g char (3), o char (3), name text)' test +$ mysqlimport --fields-terminated-by=, test home.cs +@print{} test.home: Records: 4 Deleted: 0 Skipped: 0 Warnings: 0 +$ mysql -e 'select * from home' test +@print{} +------+------+------+------+----------+ +@print{} | d | u | g | o | name | +@print{} +------+------+------+------+----------+ +@print{} | d | rwx | r-x | r-x | CVS | +@print{} | d | rwx | --- | --- | Mail | +@print{} | d | rwx | r-x | r-x | lilypond | +@print{} | d | rwx | r-x | r-x | savannah | +@print{} +------+------+------+------+----------+ +@end example + +But beware of assumptions. +The above invocation of @command{ls} assumes that the owner +and group names are no longer than eight bytes each, +and that no file has size larger than 99999999 bytes. +Otherwise, the byte offset of @samp{57} would need to be larger. +To avoid such problems, suppress output of the owner and group +names with the @option{-g} and @option{-G} options respectively, +and add the @option{-h} option to ensure that the representation +of the size of the file does not exceed the allotted space. +Finally, note that the width of even the date/time field may change, +depending on the current locale. To avoid that, use an option +like @option{--time-style='+%Y-%m-%d %H:%M:%S'}. + +And there's still another problem: if a file has more +than 999 hard links to it, then that will change the alignment. +The morale is that it is hard to use fixed byte offsets into +a line of @command{ls} output. Use a different tool, like +find, but with @option{-printf} and carefully chosen format strings. + +@node The sort command +@unnumberedsec The @command{sort} Command + +Next we'll look at the @command{sort} command. This is one of the most +powerful commands on a Unix-style system; one that you will often find +yourself using when setting up fancy data plumbing. + +The @command{sort} +command reads and sorts each file named on the command line. It then +merges the sorted data and writes it to standard output. It will read +standard input if no files are given on the command line (thus +making it into a filter). The sort is based on the character collating +sequence or based on user-supplied ordering criteria. + + +@node The uniq command +@unnumberedsec The @command{uniq} Command + +Finally (at least for now), we'll look at the @command{uniq} program. When +sorting data, you will often end up with duplicate lines, lines that +are identical. Usually, all you need is one instance of each line. +This is where @command{uniq} comes in. The @command{uniq} program reads its +standard input, which it expects to be sorted. It only prints out one +copy of each duplicated line. It does have several options. Later on, +we'll use the @option{-c} option, which prints each unique line, preceded +by a count of the number of times that line occurred in the input. + + +@node Putting the tools together +@unnumberedsec Putting the Tools Together + +Now, let's suppose this is a large ISP server system with dozens of users +logged in. The management wants the system administrator to write a program that will +generate a sorted list of logged in users. Furthermore, even if a user +is logged in multiple times, his or her name should only show up in the +output once. + +The administrator could sit down with the system documentation and write a C +program that did this. It would take perhaps a couple of hundred lines +of code and about two hours to write it, test it, and debug it. +However, knowing the software toolbox, the administrator can instead start out +by generating just a list of logged on users: + +@example +$ who | cut -c1-8 +@print{} arnold +@print{} miriam +@print{} bill +@print{} arnold +@end example + +Next, sort the list: + +@example +$ who | cut -c1-8 | sort +@print{} arnold +@print{} arnold +@print{} bill +@print{} miriam +@end example + +Finally, run the sorted list through @command{uniq}, to weed out duplicates: + +@example +$ who | cut -c1-8 | sort | uniq +@print{} arnold +@print{} bill +@print{} miriam +@end example + +The @command{sort} command actually has a @option{-u} option that does what +@command{uniq} does. However, @command{uniq} has other uses for which one +cannot substitute @samp{sort -u}. + +The administrator puts this pipeline into a shell script, and makes it available for +all the users on the system (@samp{#} is the system administrator, +or @code{root}, prompt): + +@example +# cat > /usr/local/bin/listusers +who | cut -c1-8 | sort | uniq +^D +# chmod +x /usr/local/bin/listusers +@end example + +There are four major points to note here. First, with just four +programs, on one command line, the administrator was able to save about two +hours worth of work. Furthermore, the shell pipeline is just about as +efficient as the C program would be, and it is much more efficient in +terms of programmer time. People time is much more expensive than +computer time, and in our modern ``there's never enough time to do +everything'' society, saving two hours of programmer time is no mean +feat. + +Second, it is also important to emphasize that with the +@emph{combination} of the tools, it is possible to do a special +purpose job never imagined by the authors of the individual programs. + +Third, it is also valuable to build up your pipeline in stages, as we did here. +This allows you to view the data at each stage in the pipeline, which helps +you acquire the confidence that you are indeed using these tools correctly. + +Finally, by bundling the pipeline in a shell script, other users can use +your command, without having to remember the fancy plumbing you set up for +them. In terms of how you run them, shell scripts and compiled programs are +indistinguishable. + +After the previous warm-up exercise, we'll look at two additional, more +complicated pipelines. For them, we need to introduce two more tools. + +The first is the @command{tr} command, which stands for ``transliterate.'' +The @command{tr} command works on a character-by-character basis, changing +characters. Normally it is used for things like mapping upper case to +lower case: + +@example +$ echo ThIs ExAmPlE HaS MIXED case! | tr '[A-Z]' '[a-z]' +@print{} this example has mixed case! +@end example + +There are several options of interest: + +@table @code +@item -c +work on the complement of the listed characters, i.e., +operations apply to characters not in the given set + +@item -d +delete characters in the first set from the output + +@item -s +squeeze repeated characters in the output into just one character. +@end table + +We will be using all three options in a moment. + +The other command we'll look at is @command{comm}. The @command{comm} +command takes two sorted input files as input data, and prints out the +files' lines in three columns. The output columns are the data lines +unique to the first file, the data lines unique to the second file, and +the data lines that are common to both. The @option{-1}, @option{-2}, and +@option{-3} command line options @emph{omit} the respective columns. (This is +non-intuitive and takes a little getting used to.) For example: + +@example +$ cat f1 +@print{} 11111 +@print{} 22222 +@print{} 33333 +@print{} 44444 +$ cat f2 +@print{} 00000 +@print{} 22222 +@print{} 33333 +@print{} 55555 +$ comm f1 f2 +@print{} 00000 +@print{} 11111 +@print{} 22222 +@print{} 33333 +@print{} 44444 +@print{} 55555 +@end example + +The single dash as a filename tells @command{comm} to read standard input +instead of a regular file. + +Now we're ready to build a fancy pipeline. The first application is a word +frequency counter. This helps an author determine if he or she is over-using +certain words. + +The first step is to change the case of all the letters in our input file +to one case. ``The'' and ``the'' are the same word when doing counting. + +@example +$ tr '[A-Z]' '[a-z]' < whats.gnu | ... +@end example + +The next step is to get rid of punctuation. Quoted words and unquoted words +should be treated identically; it's easiest to just get the punctuation out of +the way. + +@smallexample +$ tr '[A-Z]' '[a-z]' < whats.gnu | tr -cd '[A-Za-z0-9_ \012]' | ... +@end smallexample + +The second @command{tr} command operates on the complement of the listed +characters, which are all the letters, the digits, the underscore, and +the blank. The @samp{\012} represents the newline character; it has to +be left alone. (The @acronym{ASCII} tab character should also be included for +good measure in a production script.) + +At this point, we have data consisting of words separated by blank space. +The words only contain alphanumeric characters (and the underscore). The +next step is break the data apart so that we have one word per line. This +makes the counting operation much easier, as we will see shortly. + +@smallexample +$ tr '[A-Z]' '[a-z]' < whats.gnu | tr -cd '[A-Za-z0-9_ \012]' | +> tr -s '[ ]' '\012' | ... +@end smallexample + +This command turns blanks into newlines. The @option{-s} option squeezes +multiple newline characters in the output into just one. This helps us +avoid blank lines. (The @samp{>} is the shell's ``secondary prompt.'' +This is what the shell prints when it notices you haven't finished +typing in all of a command.) + +We now have data consisting of one word per line, no punctuation, all one +case. We're ready to count each word: + +@smallexample +$ tr '[A-Z]' '[a-z]' < whats.gnu | tr -cd '[A-Za-z0-9_ \012]' | +> tr -s '[ ]' '\012' | sort | uniq -c | ... +@end smallexample + +At this point, the data might look something like this: + +@example + 60 a + 2 able + 6 about + 1 above + 2 accomplish + 1 acquire + 1 actually + 2 additional +@end example + +The output is sorted by word, not by count! What we want is the most +frequently used words first. Fortunately, this is easy to accomplish, +with the help of two more @command{sort} options: + +@table @code +@item -n +do a numeric sort, not a textual one + +@item -r +reverse the order of the sort +@end table + +The final pipeline looks like this: + +@smallexample +$ tr '[A-Z]' '[a-z]' < whats.gnu | tr -cd '[A-Za-z0-9_ \012]' | +> tr -s '[ ]' '\012' | sort | uniq -c | sort -nr +@print{} 156 the +@print{} 60 a +@print{} 58 to +@print{} 51 of +@print{} 51 and +@dots{} +@end smallexample + +Whew! That's a lot to digest. Yet, the same principles apply. With six +commands, on two lines (really one long one split for convenience), we've +created a program that does something interesting and useful, in much +less time than we could have written a C program to do the same thing. + +A minor modification to the above pipeline can give us a simple spelling +checker! To determine if you've spelled a word correctly, all you have to +do is look it up in a dictionary. If it is not there, then chances are +that your spelling is incorrect. So, we need a dictionary. +The conventional location for a dictionary is @file{/usr/dict/words}. +On my GNU/Linux system,@footnote{Redhat Linux 6.1, for the November 2000 +revision of this article.} +this is a is a sorted, 45,402 word dictionary. + +Now, how to compare our file with the dictionary? As before, we generate +a sorted list of words, one per line: + +@smallexample +$ tr '[A-Z]' '[a-z]' < whats.gnu | tr -cd '[A-Za-z0-9_ \012]' | +> tr -s '[ ]' '\012' | sort -u | ... +@end smallexample + +Now, all we need is a list of words that are @emph{not} in the +dictionary. Here is where the @command{comm} command comes in. + +@smallexample +$ tr '[A-Z]' '[a-z]' < whats.gnu | tr -cd '[A-Za-z0-9_ \012]' | +> tr -s '[ ]' '\012' | sort -u | +> comm -23 - /usr/dict/words +@end smallexample + +The @option{-2} and @option{-3} options eliminate lines that are only in the +dictionary (the second file), and lines that are in both files. Lines +only in the first file (standard input, our stream of words), are +words that are not in the dictionary. These are likely candidates for +spelling errors. This pipeline was the first cut at a production +spelling checker on Unix. + +There are some other tools that deserve brief mention. + +@table @command +@item grep +search files for text that matches a regular expression + +@item wc +count lines, words, characters + +@item tee +a T-fitting for data pipes, copies data to files and to standard output + +@item sed +the stream editor, an advanced tool + +@item awk +a data manipulation language, another advanced tool +@end table + +The software tools philosophy also espoused the following bit of +advice: ``Let someone else do the hard part.'' This means, take +something that gives you most of what you need, and then massage it the +rest of the way until it's in the form that you want. + +To summarize: + +@enumerate 1 +@item +Each program should do one thing well. No more, no less. + +@item +Combining programs with appropriate plumbing leads to results where +the whole is greater than the sum of the parts. It also leads to novel +uses of programs that the authors might never have imagined. + +@item +Programs should never print extraneous header or trailer data, since these +could get sent on down a pipeline. (A point we didn't mention earlier.) + +@item +Let someone else do the hard part. + +@item +Know your toolbox! Use each program appropriately. If you don't have an +appropriate tool, build one. +@end enumerate + +As of this writing, all the programs we've discussed are available via +anonymous @command{ftp} from: @* +@uref{ftp://gnudist.gnu.org/textutils/textutils-1.22.tar.gz}. (There may +be more recent versions available now.) + +None of what I have presented in this column is new. The Software Tools +philosophy was first introduced in the book @cite{Software Tools}, by +Brian Kernighan and P.J. Plauger (Addison-Wesley, ISBN 0-201-03669-X). +This book showed how to write and use software tools. It was written in +1976, using a preprocessor for FORTRAN named @command{ratfor} (RATional +FORtran). At the time, C was not as ubiquitous as it is now; FORTRAN +was. The last chapter presented a @command{ratfor} to FORTRAN +processor, written in @command{ratfor}. @command{ratfor} looks an awful +lot like C; if you know C, you won't have any problem following the +code. + +In 1981, the book was updated and made available as @cite{Software Tools +in Pascal} (Addison-Wesley, ISBN 0-201-10342-7). The first book is +still in print; the second, alas, is not. Both books are well worth +reading if you're a programmer. They certainly made a major change in +how I view programming. + +Initially, the programs in both books were available (on 9-track tape) +from Addison-Wesley. Unfortunately, this is no longer the case, +although the @command{ratfor} versions are available from +@uref{http://cm.bell-labs.come/who/bwk, Brian Kernighan's home page}, +and you might be able to find copies of the Pascal versions floating +around the Internet. For a number of years, there was an active +Software Tools Users Group, whose members had ported the original +@command{ratfor} programs to essentially every computer system with a +FORTRAN compiler. The popularity of the group waned in the middle 1980s +as Unix began to spread beyond universities. + +With the current proliferation of GNU code and other clones of Unix programs, +these programs now receive little attention; modern C versions are +much more efficient and do more than these programs do. Nevertheless, as +exposition of good programming style, and evangelism for a still-valuable +philosophy, these books are unparalleled, and I recommend them highly. + +Acknowledgment: I would like to express my gratitude to Brian Kernighan +of Bell Labs, the original Software Toolsmith, for reviewing this column. + +@include doclicense.texi + +@node Index +@unnumbered Index + +@printindex cp + +@shortcontents +@contents +@bye + +@c Local variables: +@c texinfo-column-for-description: 32 +@c End: diff --git a/src/apps/bin/coreutils-5.0/doc/doclicense.texi b/src/apps/bin/coreutils-5.0/doc/doclicense.texi new file mode 100644 index 0000000000..2dfc81b3bd --- /dev/null +++ b/src/apps/bin/coreutils-5.0/doc/doclicense.texi @@ -0,0 +1,395 @@ +@c -*-texinfo-*- +@node GNU Free Documentation License +@appendix GNU Free Documentation License +@center Version 1.1, March 2000 +@ifnottex +@menu +* How to use this License for your documents:: +@end menu +@end ifnottex +@display +Copyright (C) 2000 Free Software Foundation, Inc. +59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. +@end display +@iftex +@sp1 +@end iftex +@enumerate 0 +@item +PREAMBLE + +The purpose of this License is to make a manual, textbook, or other +written document ``free'' in the sense of freedom: to assure everyone +the effective freedom to copy and redistribute it, with or without +modifying it, either commercially or noncommercially. Secondarily, +this License preserves for the author and publisher a way to get +credit for their work, while not being considered responsible for +modifications made by others. + +This License is a kind of ``copyleft'', which means that derivative +works of the document must themselves be free in the same sense. It +complements the GNU General Public License, which is a copyleft +license designed for free software. + +We have designed this License in order to use it for manuals for free +software, because free software needs free documentation: a free +program should come with manuals providing the same freedoms that the +software does. But this License is not limited to software manuals; +it can be used for any textual work, regardless of subject matter or +whether it is published as a printed book. We recommend this License +principally for works whose purpose is instruction or reference. +@iftex +@sp1 +@end iftex +@item +APPLICABILITY AND DEFINITIONS + +This License applies to any manual or other work that contains a +notice placed by the copyright holder saying it can be distributed +under the terms of this License. The ``Document'', below, refers to any +such manual or work. Any member of the public is a licensee, and is +addressed as ``you''. + +A ``Modified Version'' of the Document means any work containing the +Document or a portion of it, either copied verbatim, or with +modifications and/or translated into another language. + +A ``Secondary Section'' is a named appendix or a front-matter section of +the Document that deals exclusively with the relationship of the +publishers or authors of the Document to the Document's overall subject +(or to related matters) and contains nothing that could fall directly +within that overall subject. (For example, if the Document is in part a +textbook of mathematics, a Secondary Section may not explain any +mathematics.) The relationship could be a matter of historical +connection with the subject or with related matters, or of legal, +commercial, philosophical, ethical or political position regarding +them. + +The ``Invariant Sections'' are certain Secondary Sections whose titles +are designated, as being those of Invariant Sections, in the notice +that says that the Document is released under this License. + +The ``Cover Texts'' are certain short passages of text that are listed, +as Front-Cover Texts or Back-Cover Texts, in the notice that says that +the Document is released under this License. + +A ``Transparent'' copy of the Document means a machine-readable copy, +represented in a format whose specification is available to the +general public, whose contents can be viewed and edited directly and +straightforwardly with generic text editors or (for images composed of +pixels) generic paint programs or (for drawings) some widely available +drawing editor, and that is suitable for input to text formatters or +for automatic translation to a variety of formats suitable for input +to text formatters. A copy made in an otherwise Transparent file +format whose markup has been designed to thwart or discourage +subsequent modification by readers is not Transparent. A copy that is +not ``Transparent'' is called ``Opaque''. + +Examples of suitable formats for Transparent copies include plain +ASCII without markup, Texinfo input format, LaTeX input format, SGML +or XML using a publicly available DTD, and standard-conforming simple +HTML designed for human modification. Opaque formats include +PostScript, PDF, proprietary formats that can be read and edited only +by proprietary word processors, SGML or XML for which the DTD and/or +processing tools are not generally available, and the +machine-generated HTML produced by some word processors for output +purposes only. + +The ``Title Page'' means, for a printed book, the title page itself, +plus such following pages as are needed to hold, legibly, the material +this License requires to appear in the title page. For works in +formats which do not have any title page as such, ``Title Page'' means +the text near the most prominent appearance of the work's title, +preceding the beginning of the body of the text. +@iftex +@sp1 +@end iftex +@item +VERBATIM COPYING + +You may copy and distribute the Document in any medium, either +commercially or noncommercially, provided that this License, the +copyright notices, and the license notice saying this License applies +to the Document are reproduced in all copies, and that you add no other +conditions whatsoever to those of this License. You may not use +technical measures to obstruct or control the reading or further +copying of the copies you make or distribute. However, you may accept +compensation in exchange for copies. If you distribute a large enough +number of copies you must also follow the conditions in section 3. + +You may also lend copies, under the same conditions stated above, and +you may publicly display copies. +@iftex +@sp1 +@end iftex +@item +COPYING IN QUANTITY + +If you publish printed copies of the Document numbering more than 100, +and the Document's license notice requires Cover Texts, you must enclose +the copies in covers that carry, clearly and legibly, all these Cover +Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on +the back cover. Both covers must also clearly and legibly identify +you as the publisher of these copies. The front cover must present +the full title with all words of the title equally prominent and +visible. You may add other material on the covers in addition. +Copying with changes limited to the covers, as long as they preserve +the title of the Document and satisfy these conditions, can be treated +as verbatim copying in other respects. + +If the required texts for either cover are too voluminous to fit +legibly, you should put the first ones listed (as many as fit +reasonably) on the actual cover, and continue the rest onto adjacent +pages. + +If you publish or distribute Opaque copies of the Document numbering +more than 100, you must either include a machine-readable Transparent +copy along with each Opaque copy, or state in or with each Opaque copy +a publicly-accessible computer-network location containing a complete +Transparent copy of the Document, free of added material, which the +general network-using public has access to download anonymously at no +charge using public-standard network protocols. If you use the latter +option, you must take reasonably prudent steps, when you begin +distribution of Opaque copies in quantity, to ensure that this +Transparent copy will remain thus accessible at the stated location +until at least one year after the last time you distribute an Opaque +copy (directly or through your agents or retailers) of that edition to +the public. + +It is requested, but not required, that you contact the authors of the +Document well before redistributing any large number of copies, to give +them a chance to provide you with an updated version of the Document. +@iftex +@sp1 +@end iftex +@item +MODIFICATIONS + +You may copy and distribute a Modified Version of the Document under +the conditions of sections 2 and 3 above, provided that you release +the Modified Version under precisely this License, with the Modified +Version filling the role of the Document, thus licensing distribution +and modification of the Modified Version to whoever possesses a copy +of it. In addition, you must do these things in the Modified Version: + +A. Use in the Title Page (and on the covers, if any) a title distinct + from that of the Document, and from those of previous versions + (which should, if there were any, be listed in the History section + of the Document). You may use the same title as a previous version + if the original publisher of that version gives permission.@* +B. List on the Title Page, as authors, one or more persons or entities + responsible for authorship of the modifications in the Modified + Version, together with at least five of the principal authors of the + Document (all of its principal authors, if it has less than five).@* +C. State on the Title page the name of the publisher of the + Modified Version, as the publisher.@* +D. Preserve all the copyright notices of the Document.@* +E. Add an appropriate copyright notice for your modifications + adjacent to the other copyright notices.@* +F. Include, immediately after the copyright notices, a license notice + giving the public permission to use the Modified Version under the + terms of this License, in the form shown in the Addendum below.@* +G. Preserve in that license notice the full lists of Invariant Sections + and required Cover Texts given in the Document's license notice.@* +H. Include an unaltered copy of this License.@* +I. Preserve the section entitled ``History'', and its title, and add to + it an item stating at least the title, year, new authors, and + publisher of the Modified Version as given on the Title Page. If + there is no section entitled ``History'' in the Document, create one + stating the title, year, authors, and publisher of the Document as + given on its Title Page, then add an item describing the Modified + Version as stated in the previous sentence.@* +J. Preserve the network location, if any, given in the Document for + public access to a Transparent copy of the Document, and likewise + the network locations given in the Document for previous versions + it was based on. These may be placed in the ``History'' section. + You may omit a network location for a work that was published at + least four years before the Document itself, or if the original + publisher of the version it refers to gives permission.@* +K. In any section entitled ``Acknowledgements'' or ``Dedications'', + preserve the section's title, and preserve in the section all the + substance and tone of each of the contributor acknowledgements + and/or dedications given therein.@* +L. Preserve all the Invariant Sections of the Document, + unaltered in their text and in their titles. Section numbers + or the equivalent are not considered part of the section titles.@* +M. Delete any section entitled ``Endorsements''. Such a section + may not be included in the Modified Version.@* +N. Do not retitle any existing section as ``Endorsements'' + or to conflict in title with any Invariant Section.@* +@iftex +@sp1 +@end iftex +If the Modified Version includes new front-matter sections or +appendices that qualify as Secondary Sections and contain no material +copied from the Document, you may at your option designate some or all +of these sections as invariant. To do this, add their titles to the +list of Invariant Sections in the Modified Version's license notice. +These titles must be distinct from any other section titles. + +You may add a section entitled ``Endorsements'', provided it contains +nothing but endorsements of your Modified Version by various +parties--for example, statements of peer review or that the text has +been approved by an organization as the authoritative definition of a +standard. + +You may add a passage of up to five words as a Front-Cover Text, and a +passage of up to 25 words as a Back-Cover Text, to the end of the list +of Cover Texts in the Modified Version. Only one passage of +Front-Cover Text and one of Back-Cover Text may be added by (or +through arrangements made by) any one entity. If the Document already +includes a cover text for the same cover, previously added by you or +by arrangement made by the same entity you are acting on behalf of, +you may not add another; but you may replace the old one, on explicit +permission from the previous publisher that added the old one. + +The author(s) and publisher(s) of the Document do not by this License +give permission to use their names for publicity for or to assert or +imply endorsement of any Modified Version. +@iftex +@sp1 +@end iftex +@item +COMBINING DOCUMENTS + +You may combine the Document with other documents released under this +License, under the terms defined in section 4 above for modified +versions, provided that you include in the combination all of the +Invariant Sections of all of the original documents, unmodified, and +list them all as Invariant Sections of your combined work in its +license notice. + +The combined work need only contain one copy of this License, and +multiple identical Invariant Sections may be replaced with a single +copy. If there are multiple Invariant Sections with the same name but +different contents, make the title of each such section unique by +adding at the end of it, in parentheses, the name of the original +author or publisher of that section if known, or else a unique number. +Make the same adjustment to the section titles in the list of +Invariant Sections in the license notice of the combined work. + +In the combination, you must combine any sections entitled ``History'' +in the various original documents, forming one section entitled +``History''; likewise combine any sections entitled ``Acknowledgements'', +and any sections entitled ``Dedications''. You must delete all sections +entitled ``Endorsements.'' +@iftex +@sp1 +@end iftex +@item +COLLECTIONS OF DOCUMENTS + +You may make a collection consisting of the Document and other documents +released under this License, and replace the individual copies of this +License in the various documents with a single copy that is included in +the collection, provided that you follow the rules of this License for +verbatim copying of each of the documents in all other respects. + +You may extract a single document from such a collection, and distribute +it individually under this License, provided you insert a copy of this +License into the extracted document, and follow this License in all +other respects regarding verbatim copying of that document. +@iftex +@sp1 +@end iftex +@item +AGGREGATION WITH INDEPENDENT WORKS + +A compilation of the Document or its derivatives with other separate +and independent documents or works, in or on a volume of a storage or +distribution medium, does not as a whole count as a Modified Version +of the Document, provided no compilation copyright is claimed for the +compilation. Such a compilation is called an ``aggregate'', and this +License does not apply to the other self-contained works thus compiled +with the Document, on account of their being thus compiled, if they +are not themselves derivative works of the Document. + +If the Cover Text requirement of section 3 is applicable to these +copies of the Document, then if the Document is less than one quarter +of the entire aggregate, the Document's Cover Texts may be placed on +covers that surround only the Document within the aggregate. +Otherwise they must appear on covers around the whole aggregate. +@iftex +@sp1 +@end iftex +@item +TRANSLATION + +Translation is considered a kind of modification, so you may +distribute translations of the Document under the terms of section 4. +Replacing Invariant Sections with translations requires special +permission from their copyright holders, but you may include +translations of some or all Invariant Sections in addition to the +original versions of these Invariant Sections. You may include a +translation of this License provided that you also include the +original English version of this License. In case of a disagreement +between the translation and the original English version of this +License, the original English version will prevail. +@iftex +@sp1 +@end iftex +@item +TERMINATION + +You may not copy, modify, sublicense, or distribute the Document except +as expressly provided for under this License. Any other attempt to +copy, modify, sublicense or distribute the Document is void, and will +automatically terminate your rights under this License. However, +parties who have received copies, or rights, from you under this +License will not have their licenses terminated so long as such +parties remain in full compliance. +@iftex +@sp1 +@end iftex +@item +FUTURE REVISIONS OF THIS LICENSE + +The Free Software Foundation may publish new, revised versions +of the GNU Free Documentation License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. See +http://www.gnu.org/copyleft/. + +Each version of the License is given a distinguishing version number. +If the Document specifies that a particular numbered version of this +License ``or any later version'' applies to it, you have the option of +following the terms and conditions either of that specified version or +of any later version that has been published (not as a draft) by the +Free Software Foundation. If the Document does not specify a version +number of this License, you may choose any version ever published (not +as a draft) by the Free Software Foundation. + +@end enumerate + +@node How to use this License for your documents +@unnumberedsec ADDENDUM: How to use this License for your documents + +To use this License in a document you have written, include a copy of +the License in the document and put the following copyright and +license notices just after the title page: + +@smallexample +@group + + Copyright (C) @var{year} @var{your name}. + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.1 + or any later version published by the Free Software Foundation; + with the Invariant Sections being @var{list their titles}, with the + Front-Cover Texts being @var{list}, and with the Back-Cover Texts being @var{list}. + A copy of the license is included in the section entitled ``GNU + Free Documentation License''. +@end group +@end smallexample +If you have no Invariant Sections, write ``with no Invariant Sections'' +instead of saying which ones are invariant. If you have no +Front-Cover Texts, write ``no Front-Cover Texts'' instead of +``Front-Cover Texts being @var{list}''; likewise for Back-Cover Texts. + +If your document contains nontrivial examples of program code, we +recommend releasing these examples in parallel under your choice of +free software license, such as the GNU General Public License, +to permit their use in free software. diff --git a/src/apps/bin/coreutils-5.0/doc/getdate.texi b/src/apps/bin/coreutils-5.0/doc/getdate.texi new file mode 100644 index 0000000000..ced1414ad8 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/doc/getdate.texi @@ -0,0 +1,421 @@ +@node Date input formats +@chapter Date input formats + +@cindex date input formats +@findex getdate + +First, a quote: + +@quotation +Our units of temporal measurement, from seconds on up to months, are so +complicated, asymmetrical and disjunctive so as to make coherent mental +reckoning in time all but impossible. Indeed, had some tyrannical god +contrived to enslave our minds to time, to make it all but impossible +for us to escape subjection to sodden routines and unpleasant surprises, +he could hardly have done better than handing down our present system. +It is like a set of trapezoidal building blocks, with no vertical or +horizontal surfaces, like a language in which the simplest thought +demands ornate constructions, useless particles and lengthy +circumlocutions. Unlike the more successful patterns of language and +science, which enable us to face experience boldly or at least +level-headedly, our system of temporal calculation silently and +persistently encourages our terror of time. + +@dots{} It is as though architects had to measure length in feet, width +in meters and height in ells; as though basic instruction manuals +demanded a knowledge of five different languages. It is no wonder then +that we often look into our own immediate past or future, last Tuesday +or a week from Sunday, with feelings of helpless confusion. @dots{} + +--- Robert Grudin, @cite{Time and the Art of Living}. +@end quotation + +This section describes the textual date representations that @sc{gnu} +programs accept. These are the strings you, as a user, can supply as +arguments to the various programs. The C interface (via the +@code{getdate} function) is not described here. + +@cindex beginning of time, for @acronym{POSIX} +@cindex epoch, for @acronym{POSIX} +Although the date syntax here can represent any possible time since the +year zero, computer integers often cannot represent such a wide range of +time. On @acronym{POSIX} systems, the clock starts at 1970-01-01 00:00:00 +@sc{utc}: @acronym{POSIX} does not require support for times before the +@acronym{POSIX} Epoch and times far in the future. Traditional Unix systems +have 32-bit signed @code{time_t} and can represent times from 1901-12-13 +20:45:52 through 2038-01-19 03:14:07 @sc{utc}. Systems with 64-bit +signed @code{time_t} can represent all the times in the known +lifetime of the universe. + +@menu +* General date syntax:: Common rules. +* Calendar date items:: 19 Dec 1994. +* Time of day items:: 9:20pm. +* Time zone items:: @sc{est}, @sc{pdt}, @sc{gmt}, ... +* Day of week items:: Monday and others. +* Relative items in date strings:: next tuesday, 2 years ago. +* Pure numbers in date strings:: 19931219, 1440. +* Authors of getdate:: Bellovin, Eggert, Salz, Berets, et al. +@end menu + + +@node General date syntax +@section General date syntax + +@cindex general date syntax + +@cindex items in date strings +A @dfn{date} is a string, possibly empty, containing many items +separated by whitespace. The whitespace may be omitted when no +ambiguity arises. The empty string means the beginning of today (i.e., +midnight). Order of the items is immaterial. A date string may contain +many flavors of items: + +@itemize @bullet +@item calendar date items +@item time of the day items +@item time zone items +@item day of the week items +@item relative items +@item pure numbers. +@end itemize + +@noindent We describe each of these item types in turn, below. + +@cindex numbers, written-out +@cindex ordinal numbers +@findex first @r{in date strings} +@findex next @r{in date strings} +@findex last @r{in date strings} +A few numbers may be written out in words in most contexts. This is +most useful for specifying day of the week items or relative items (see +below). Here is the list: @samp{first} for 1, @samp{next} for 2, +@samp{third} for 3, @samp{fourth} for 4, @samp{fifth} for 5, +@samp{sixth} for 6, @samp{seventh} for 7, @samp{eighth} for 8, +@samp{ninth} for 9, @samp{tenth} for 10, @samp{eleventh} for 11 and +@samp{twelfth} for 12. Also, @samp{last} means exactly @math{-1}. + +@cindex months, written-out +When a month is written this way, it is still considered to be written +numerically, instead of being ``spelled in full''; this changes the +allowed strings. + +@cindex language, in dates +In the current implementation, only English is supported for words and +abbreviations like @samp{AM}, @samp{DST}, @samp{EST}, @samp{first}, +@samp{January}, @samp{Sunday}, @samp{tomorrow}, and @samp{year}. + +@cindex language, in dates +@cindex time zone item +The output of @command{date} is not always acceptable as a date string, +not only because of the language problem, but also because there is no +standard meaning for time zone items like @samp{IST}. When using +@command{date} to generate a date string intended to be parsed later, +specify a date format that is independent of language and that does not +use time zone items other than @samp{UTC} and @samp{Z}. Here are some +ways to do this: + +@example +$ LC_ALL=C TZ=UTC0 date +Fri Dec 15 19:48:05 UTC 2000 +$ TZ=UTC0 date +"%Y-%m-%d %H:%M:%SZ" +2000-12-15 19:48:05Z +$ date --iso-8601=seconds # a GNU extension +2000-12-15T11:48:05-0800 +$ date --rfc-822 # a GNU extension +Fri, 15 Dec 2000 11:48:05 -0800 +$ date +"%Y-%m-%d %H:%M:%S %z" # %z is a GNU extension. +2000-12-15 11:48:05 -0800 +@end example + +@cindex case, ignored in dates +@cindex comments, in dates +Alphabetic case is completely ignored in dates. Comments may be introduced +between round parentheses, as long as included parentheses are properly +nested. Hyphens not followed by a digit are currently ignored. Leading +zeros on numbers are ignored. + + +@node Calendar date items +@section Calendar date items + +@cindex calendar date item + +A @dfn{calendar date item} specifies a day of the year. It is +specified differently, depending on whether the month is specified +numerically or literally. All these strings specify the same calendar date: + +@example +1972-09-24 # @sc{iso} 8601. +72-9-24 # Assume 19xx for 69 through 99, + # 20xx for 00 through 68. +72-09-24 # Leading zeros are ignored. +9/24/72 # Common U.S. writing. +24 September 1972 +24 Sept 72 # September has a special abbreviation. +24 Sep 72 # Three-letter abbreviations always allowed. +Sep 24, 1972 +24-sep-72 +24sep72 +@end example + +The year can also be omitted. In this case, the last specified year is +used, or the current year if none. For example: + +@example +9/24 +sep 24 +@end example + +Here are the rules. + +@cindex @sc{iso} 8601 date format +@cindex date format, @sc{iso} 8601 +For numeric months, the @sc{iso} 8601 format +@samp{@var{year}-@var{month}-@var{day}} is allowed, where @var{year} is +any positive number, @var{month} is a number between 01 and 12, and +@var{day} is a number between 01 and 31. A leading zero must be present +if a number is less than ten. If @var{year} is 68 or smaller, then 2000 +is added to it; otherwise, if @var{year} is less than 100, +then 1900 is added to it. The construct +@samp{@var{month}/@var{day}/@var{year}}, popular in the United States, +is accepted. Also @samp{@var{month}/@var{day}}, omitting the year. + +@cindex month names in date strings +@cindex abbreviations for months +Literal months may be spelled out in full: @samp{January}, +@samp{February}, @samp{March}, @samp{April}, @samp{May}, @samp{June}, +@samp{July}, @samp{August}, @samp{September}, @samp{October}, +@samp{November} or @samp{December}. Literal months may be abbreviated +to their first three letters, possibly followed by an abbreviating dot. +It is also permitted to write @samp{Sept} instead of @samp{September}. + +When months are written literally, the calendar date may be given as any +of the following: + +@example +@var{day} @var{month} @var{year} +@var{day} @var{month} +@var{month} @var{day} @var{year} +@var{day}-@var{month}-@var{year} +@end example + +Or, omitting the year: + +@example +@var{month} @var{day} +@end example + + +@node Time of day items +@section Time of day items + +@cindex time of day item + +A @dfn{time of day item} in date strings specifies the time on a given +day. Here are some examples, all of which represent the same time: + +@example +20:02:0 +20:02 +8:02pm +20:02-0500 # In @sc{est} (U.S. Eastern Standard Time). +@end example + +More generally, the time of the day may be given as +@samp{@var{hour}:@var{minute}:@var{second}}, where @var{hour} is +a number between 0 and 23, @var{minute} is a number between 0 and +59, and @var{second} is a number between 0 and 59. Alternatively, +@samp{:@var{second}} can be omitted, in which case it is taken to +be zero. + +@findex am @r{in date strings} +@findex pm @r{in date strings} +@findex midnight @r{in date strings} +@findex noon @r{in date strings} +If the time is followed by @samp{am} or @samp{pm} (or @samp{a.m.} +or @samp{p.m.}), @var{hour} is restricted to run from 1 to 12, and +@samp{:@var{minute}} may be omitted (taken to be zero). @samp{am} +indicates the first half of the day, @samp{pm} indicates the second +half of the day. In this notation, 12 is the predecessor of 1: +midnight is @samp{12am} while noon is @samp{12pm}. +(This is the zero-oriented interpretation of @samp{12am} and @samp{12pm}, +as opposed to the old tradition derived from Latin +which uses @samp{12m} for noon and @samp{12pm} for midnight.) + +@cindex time zone correction +@cindex minutes, time zone correction by +The time may alternatively be followed by a time zone correction, +expressed as @samp{@var{s}@var{hh}@var{mm}}, where @var{s} is @samp{+} +or @samp{-}, @var{hh} is a number of zone hours and @var{mm} is a number +of zone minutes. When a time zone correction is given this way, it +forces interpretation of the time relative to +Coordinated Universal Time (@sc{utc}), overriding any previous +specification for the time zone or the local time zone. The @var{minute} +part of the time of the day may not be elided when a time zone correction +is used. This is the best way to specify a time zone correction by +fractional parts of an hour. + +Either @samp{am}/@samp{pm} or a time zone correction may be specified, +but not both. + + +@node Time zone items +@section Time zone items + +@cindex time zone item + +A @dfn{time zone item} specifies an international time zone, indicated +by a small set of letters, e.g., @samp{UTC} or @samp{Z} +for Coordinated Universal +Time. Any included periods are ignored. By following a +non-daylight-saving time zone by the string @samp{DST} in a separate +word (that is, separated by some white space), the corresponding +daylight saving time zone may be specified. + +Time zone items other than @samp{UTC} and @samp{Z} +are obsolescent and are not recommended, because they +are ambiguous; for example, @samp{EST} has a different meaning in +Australia than in the United States. Instead, it's better to use +unambiguous numeric time zone corrections like @samp{-0500}, as +described in the previous section. + + +@node Day of week items +@section Day of week items + +@cindex day of week item + +The explicit mention of a day of the week will forward the date +(only if necessary) to reach that day of the week in the future. + +Days of the week may be spelled out in full: @samp{Sunday}, +@samp{Monday}, @samp{Tuesday}, @samp{Wednesday}, @samp{Thursday}, +@samp{Friday} or @samp{Saturday}. Days may be abbreviated to their +first three letters, optionally followed by a period. The special +abbreviations @samp{Tues} for @samp{Tuesday}, @samp{Wednes} for +@samp{Wednesday} and @samp{Thur} or @samp{Thurs} for @samp{Thursday} are +also allowed. + +@findex next @var{day} +@findex last @var{day} +A number may precede a day of the week item to move forward +supplementary weeks. It is best used in expression like @samp{third +monday}. In this context, @samp{last @var{day}} or @samp{next +@var{day}} is also acceptable; they move one week before or after +the day that @var{day} by itself would represent. + +A comma following a day of the week item is ignored. + + +@node Relative items in date strings +@section Relative items in date strings + +@cindex relative items in date strings +@cindex displacement of dates + +@dfn{Relative items} adjust a date (or the current date if none) forward +or backward. The effects of relative items accumulate. Here are some +examples: + +@example +1 year +1 year ago +3 years +2 days +@end example + +@findex year @r{in date strings} +@findex month @r{in date strings} +@findex fortnight @r{in date strings} +@findex week @r{in date strings} +@findex day @r{in date strings} +@findex hour @r{in date strings} +@findex minute @r{in date strings} +The unit of time displacement may be selected by the string @samp{year} +or @samp{month} for moving by whole years or months. These are fuzzy +units, as years and months are not all of equal duration. More precise +units are @samp{fortnight} which is worth 14 days, @samp{week} worth 7 +days, @samp{day} worth 24 hours, @samp{hour} worth 60 minutes, +@samp{minute} or @samp{min} worth 60 seconds, and @samp{second} or +@samp{sec} worth one second. An @samp{s} suffix on these units is +accepted and ignored. + +@findex ago @r{in date strings} +The unit of time may be preceded by a multiplier, given as an optionally +signed number. Unsigned numbers are taken as positively signed. No +number at all implies 1 for a multiplier. Following a relative item by +the string @samp{ago} is equivalent to preceding the unit by a +multiplier with value @math{-1}. + +@findex day @r{in date strings} +@findex tomorrow @r{in date strings} +@findex yesterday @r{in date strings} +The string @samp{tomorrow} is worth one day in the future (equivalent +to @samp{day}), the string @samp{yesterday} is worth +one day in the past (equivalent to @samp{day ago}). + +@findex now @r{in date strings} +@findex today @r{in date strings} +@findex this @r{in date strings} +The strings @samp{now} or @samp{today} are relative items corresponding +to zero-valued time displacement, these strings come from the fact +a zero-valued time displacement represents the current time when not +otherwise changed by previous items. They may be used to stress other +items, like in @samp{12:00 today}. The string @samp{this} also has +the meaning of a zero-valued time displacement, but is preferred in +date strings like @samp{this thursday}. + +When a relative item causes the resulting date to cross a boundary +where the clocks were adjusted, typically for daylight-saving time, +the resulting date and time are adjusted accordingly. + + +@node Pure numbers in date strings +@section Pure numbers in date strings + +@cindex pure numbers in date strings + +The precise interpretation of a pure decimal number depends +on the context in the date string. + +If the decimal number is of the form @var{yyyy}@var{mm}@var{dd} and no +other calendar date item (@pxref{Calendar date items}) appears before it +in the date string, then @var{yyyy} is read as the year, @var{mm} as the +month number and @var{dd} as the day of the month, for the specified +calendar date. + +If the decimal number is of the form @var{hh}@var{mm} and no other time +of day item appears before it in the date string, then @var{hh} is read +as the hour of the day and @var{mm} as the minute of the hour, for the +specified time of the day. @var{mm} can also be omitted. + +If both a calendar date and a time of day appear to the left of a number +in the date string, but no relative item, then the number overrides the +year. + + +@node Authors of getdate +@section Authors of @code{getdate} + +@cindex authors of @code{getdate} + +@cindex Bellovin, Steven M. +@cindex Salz, Rich +@cindex Berets, Jim +@cindex MacKenzie, David +@cindex Meyering, Jim +@cindex Eggert, Paul +@code{getdate} was originally implemented by Steven M. Bellovin +(@email{smb@@research.att.com}) while at the University of North Carolina +at Chapel Hill. The code was later tweaked by a couple of people on +Usenet, then completely overhauled by Rich $alz (@email{rsalz@@bbn.com}) +and Jim Berets (@email{jberets@@bbn.com}) in August, 1990. Various +revisions for the @sc{gnu} system were made by David MacKenzie, Jim Meyering, +Paul Eggert and others. + +@cindex Pinard, F. +@cindex Berry, K. +This chapter was originally produced by Fran@,{c}ois Pinard +(@email{pinard@@iro.umontreal.ca}) from the @file{getdate.y} source code, +and then edited by K.@: Berry (@email{kb@@cs.umb.edu}). diff --git a/src/apps/bin/coreutils-5.0/doc/perm.texi b/src/apps/bin/coreutils-5.0/doc/perm.texi new file mode 100644 index 0000000000..a43a334149 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/doc/perm.texi @@ -0,0 +1,502 @@ +Each file has a set of @dfn{permissions} that control the kinds of +access that users have to that file. The permissions for a file are +also called its @dfn{access mode}. They can be represented either in +symbolic form or as an octal number. + +@menu +* Mode Structure:: Structure of file permissions. +* Symbolic Modes:: Mnemonic permissions representation. +* Numeric Modes:: Permissions as octal numbers. +@end menu + +@node Mode Structure +@section Structure of File Permissions + +There are three kinds of permissions that a user can have for a file: + +@enumerate +@item +@cindex read permission +permission to read the file. For directories, this means permission to +list the contents of the directory. +@item +@cindex write permission +permission to write to (change) the file. For directories, this means +permission to create and remove files in the directory. +@item +@cindex execute permission +permission to execute the file (run it as a program). For directories, +this means permission to access files in the directory. +@end enumerate + +There are three categories of users who may have different permissions +to perform any of the above operations on a file: + +@enumerate +@item +the file's owner; +@item +other users who are in the file's group; +@item +everyone else. +@end enumerate + +@cindex owner, default +@cindex group owner, default +Files are given an owner and group when they are created. Usually the +owner is the current user and the group is the group of the directory +the file is in, but this varies with the operating system, the +filesystem the file is created on, and the way the file is created. You +can change the owner and group of a file by using the @command{chown} and +@command{chgrp} commands. + +In addition to the three sets of three permissions listed above, a +file's permissions have three special components, which affect only +executable files (programs) and, on some systems, directories: + +@enumerate +@item +@cindex setuid +set the process's effective user ID to that of the file upon execution +(called the @dfn{setuid bit}). No effect on directories. +@item +@cindex setgid +set the process's effective group ID to that of the file upon execution +(called the @dfn{setgid bit}). For directories on some systems, put +files created in the directory into the same group as the directory, no +matter what group the user who creates them is in. +@item +@cindex sticky +@cindex swap space, saving text image in +@cindex text image, saving in swap space +@cindex restricted deletion flag +save the program's text image on the swap device so it will load more +quickly when run (called the @dfn{sticky bit}). For directories on some +systems, prevent users from removing or renaming a file in a directory +unless they own the file or the directory; this is called the +@dfn{restricted deletion flag} for the directory. +@end enumerate + +In addition to the permissions listed above, there may be file attributes +specific to the filesystem, e.g: access control lists (ACLs), whether a +file is compressed, whether a file can be modified (immutability), whether +a file can be dumped. These are usually set using programs +specific to the filesystem. For example: +@c should probably say a lot more about ACLs... someday + +@table @asis +@item ext2 +On GNU and Linux/GNU the file permissions (``attributes'') specific to +the ext2 filesystem are set using @command{chattr}. + +@item FFS +On FreeBSD the file permissions (``flags'') specific to the FFS +filesystem are set using @command{chrflags}. +@end table + +Although a file's permission ``bits'' allow an operation on that file, +that operation may still fail, because: + +@itemize +@item +the filesystem-specific permissions do not permit it; + +@item +the filesystem is mounted as read-only. +@end itemize + +For example, if the immutable attribute is set on a file, +it cannot be modified, regardless of the fact that you +may have just run @code{chmod a+w FILE}. + +@node Symbolic Modes +@section Symbolic Modes + +@cindex symbolic modes +@dfn{Symbolic modes} represent changes to files' permissions as +operations on single-character symbols. They allow you to modify either +all or selected parts of files' permissions, optionally based on +their previous values, and perhaps on the current @code{umask} as well +(@pxref{Umask and Protection}). + +The format of symbolic modes is: + +@example +@r{[}ugoa@dots{}@r{][[}+-=@r{][}rwxXstugo@dots{}@r{]}@dots{}@r{][},@dots{}@r{]} +@end example + +The following sections describe the operators and other details of +symbolic modes. + +@menu +* Setting Permissions:: Basic operations on permissions. +* Copying Permissions:: Copying existing permissions. +* Changing Special Permissions:: Special permissions. +* Conditional Executability:: Conditionally affecting executability. +* Multiple Changes:: Making multiple changes. +* Umask and Protection:: The effect of the umask. +@end menu + +@node Setting Permissions +@subsection Setting Permissions + +The basic symbolic operations on a file's permissions are adding, +removing, and setting the permission that certain users have to read, +write, and execute the file. These operations have the following +format: + +@example +@var{users} @var{operation} @var{permissions} +@end example + +@noindent +The spaces between the three parts above are shown for readability only; +symbolic modes cannot contain spaces. + +The @var{users} part tells which users' access to the file is changed. +It consists of one or more of the following letters (or it can be empty; +@pxref{Umask and Protection}, for a description of what happens then). When +more than one of these letters is given, the order that they are in does +not matter. + +@table @code +@item u +@cindex owner of file, permissions for +the user who owns the file; +@item g +@cindex group, permissions for +other users who are in the file's group; +@item o +@cindex other permissions +all other users; +@item a +all users; the same as @samp{ugo}. +@end table + +The @var{operation} part tells how to change the affected users' access +to the file, and is one of the following symbols: + +@table @code +@item + +@cindex adding permissions +to add the @var{permissions} to whatever permissions the @var{users} +already have for the file; +@item - +@cindex removing permissions +@cindex subtracting permissions +to remove the @var{permissions} from whatever permissions the +@var{users} already have for the file; +@item = +@cindex setting permissions +to make the @var{permissions} the only permissions that the @var{users} +have for the file. +@end table + +The @var{permissions} part tells what kind of access to the file should +be changed; it is zero or more of the following letters. As with the +@var{users} part, the order does not matter when more than one letter is +given. Omitting the @var{permissions} part is useful only with the +@samp{=} operation, where it gives the specified @var{users} no access +at all to the file. + +@table @code +@item r +@cindex read permission, symbolic +the permission the @var{users} have to read the file; +@item w +@cindex write permission, symbolic +the permission the @var{users} have to write to the file; +@item x +@cindex execute permission, symbolic +the permission the @var{users} have to execute the file. +@end table + +For example, to give everyone permission to read and write a file, +but not to execute it, use: + +@example +a=rw +@end example + +To remove write permission for from all users other than the file's +owner, use: + +@example +go-w +@end example + +@noindent +The above command does not affect the access that the owner of +the file has to it, nor does it affect whether other users can +read or execute the file. + +To give everyone except a file's owner no permission to do anything with +that file, use the mode below. Other users could still remove the file, +if they have write permission on the directory it is in. + +@example +go= +@end example + +@noindent +Another way to specify the same thing is: + +@example +og-rxw +@end example + +@node Copying Permissions +@subsection Copying Existing Permissions + +@cindex copying existing permissions +@cindex permissions, copying existing +You can base a file's permissions on its existing permissions. To do +this, instead of using @samp{r}, @samp{w}, or @samp{x} after the +operator, you use the letter @samp{u}, @samp{g}, or @samp{o}. For +example, the mode +@example +o+g +@end example +@noindent +adds the permissions for users who are in a file's group to the +permissions that other users have for the file. Thus, if the file +started out as mode 664 (@samp{rw-rw-r--}), the above mode would change +it to mode 666 (@samp{rw-rw-rw-}). If the file had started out as mode +741 (@samp{rwxr----x}), the above mode would change it to mode 745 +(@samp{rwxr--r-x}). The @samp{-} and @samp{=} operations work +analogously. + +@node Changing Special Permissions +@subsection Changing Special Permissions + +@cindex changing special permissions +In addition to changing a file's read, write, and execute permissions, +you can change its special permissions. @xref{Mode Structure}, for a +summary of these permissions. + +To change a file's permission to set the user ID on execution, use +@samp{u} in the @var{users} part of the symbolic mode and +@samp{s} in the @var{permissions} part. + +To change a file's permission to set the group ID on execution, use +@samp{g} in the @var{users} part of the symbolic mode and +@samp{s} in the @var{permissions} part. + +To change a file's permission to stay permanently on the swap device, +use @samp{o} in the @var{users} part of the symbolic mode and +@samp{t} in the @var{permissions} part. + +For example, to add set user ID permission to a program, +you can use the mode: + +@example +u+s +@end example + +To remove both set user ID and set group ID permission from +it, you can use the mode: + +@example +ug-s +@end example + +To cause a program to be saved on the swap device, you can use +the mode: + +@example +o+t +@end example + +Remember that the special permissions only affect files that are +executable, plus, on some systems, directories (on which they have +different meanings; @pxref{Mode Structure}). +Also, the combinations @samp{u+t}, @samp{g+t}, and @samp{o+s} have no effect. + +The @samp{=} operator is not very useful with special permissions; for +example, the mode: + +@example +o=t +@end example + +@noindent +does cause the file to be saved on the swap device, but it also +removes all read, write, and execute permissions that users not in the +file's group might have had for it. + +@node Conditional Executability +@subsection Conditional Executability + +@cindex conditional executability +There is one more special type of symbolic permission: if you use +@samp{X} instead of @samp{x}, execute permission is affected only if the +file already had execute permission or is a directory. It affects +directories' execute permission even if they did not initially have any +execute permissions set. + +For example, this mode: + +@example +a+X +@end example + +@noindent +gives all users permission to execute files (or search directories) if +anyone could before. + +@node Multiple Changes +@subsection Making Multiple Changes + +@cindex multiple changes to permissions +The format of symbolic modes is actually more complex than described +above (@pxref{Setting Permissions}). It provides two ways to make +multiple changes to files' permissions. + +The first way is to specify multiple @var{operation} and +@var{permissions} parts after a @var{users} part in the symbolic mode. + +For example, the mode: + +@example +og+rX-w +@end example + +@noindent +gives users other than the owner of the file read permission and, if +it is a directory or if someone already had execute permission +to it, gives them execute permission; and it also denies them write +permission to the file. It does not affect the permission that the +owner of the file has for it. The above mode is equivalent to +the two modes: + +@example +og+rX +og-w +@end example + +The second way to make multiple changes is to specify more than one +simple symbolic mode, separated by commas. For example, the mode: + +@example +a+r,go-w +@end example + +@noindent +gives everyone permission to read the file and removes write +permission on it for all users except its owner. Another example: + +@example +u=rwx,g=rx,o= +@end example + +@noindent +sets all of the non-special permissions for the file explicitly. (It +gives users who are not in the file's group no permission at all for +it.) + +The two methods can be combined. The mode: + +@example +a+r,g+x-w +@end example + +@noindent +gives all users permission to read the file, and gives users who are in +the file's group permission to execute it, as well, but not permission +to write to it. The above mode could be written in several different +ways; another is: + +@example +u+r,g+rx,o+r,g-w +@end example + +@node Umask and Protection +@subsection The Umask and Protection + +@cindex umask and modes +@cindex modes and umask +If the @var{users} part of a symbolic mode is omitted, it defaults to +@samp{a} (affect all users), except that any permissions that are +@emph{set} in the system variable @code{umask} are @emph{not affected}. +The value of @code{umask} can be set using the +@code{umask} command. Its default value varies from system to system. + +@cindex giving away permissions +Omitting the @var{users} part of a symbolic mode is generally not useful +with operations other than @samp{+}. It is useful with @samp{+} because +it allows you to use @code{umask} as an easily customizable protection +against giving away more permission to files than you intended to. + +As an example, if @code{umask} has the value 2, which removes write +permission for users who are not in the file's group, then the mode: + +@example ++w +@end example + +@noindent +adds permission to write to the file to its owner and to other users who +are in the file's group, but @emph{not} to other users. In contrast, +the mode: + +@example +a+w +@end example + +@noindent +ignores @code{umask}, and @emph{does} give write permission for +the file to all users. + +@node Numeric Modes +@section Numeric Modes + +@cindex numeric modes +@cindex file permissions, numeric +@cindex octal numbers for file modes +File permissions are stored internally as integers. As an +alternative to giving a symbolic mode, you can give an octal (base 8) +number that corresponds to the internal representation of the new mode. +This number is always interpreted in octal; you do not have to add a +leading 0, as you do in C. Mode 0055 is the same as mode 55. + +A numeric mode is usually shorter than the corresponding symbolic +mode, but it is limited in that it cannot take into account a file's +previous permissions; it can only set them absolutely. + +On most systems, the permissions granted to the user, +to other users in the file's group, +and to other users not in the file's group are each stored as three +bits, which are represented as one octal digit. The three special +permissions are also each stored as one bit, and they are as a group +represented as another octal digit. Here is how the bits are arranged, +starting with the lowest valued bit: + +@example +Value in Corresponding +Mode Permission + + Other users not in the file's group: + 1 Execute + 2 Write + 4 Read + + Other users in the file's group: + 10 Execute + 20 Write + 40 Read + + The file's owner: + 100 Execute + 200 Write + 400 Read + + Special permissions: +1000 Save text image on swap device +2000 Set group ID on execution +4000 Set user ID on execution +@end example + +For example, numeric mode 4755 corresponds to symbolic mode +@samp{u=rwxs,go=rx}, and numeric mode 664 corresponds to symbolic mode +@samp{ug=rw,o=r}. Numeric mode 0 corresponds to symbolic mode +@samp{ugo=}. diff --git a/src/apps/bin/coreutils-5.0/doc/stamp-vti b/src/apps/bin/coreutils-5.0/doc/stamp-vti new file mode 100644 index 0000000000..a8ef816063 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/doc/stamp-vti @@ -0,0 +1,4 @@ +@set UPDATED 2 April 2003 +@set UPDATED-MONTH April 2003 +@set EDITION 5.0 +@set VERSION 5.0 diff --git a/src/apps/bin/coreutils-5.0/doc/version.texi b/src/apps/bin/coreutils-5.0/doc/version.texi new file mode 100644 index 0000000000..a8ef816063 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/doc/version.texi @@ -0,0 +1,4 @@ +@set UPDATED 2 April 2003 +@set UPDATED-MONTH April 2003 +@set EDITION 5.0 +@set VERSION 5.0 diff --git a/src/apps/bin/coreutils-5.0/m4/ChangeLog b/src/apps/bin/coreutils-5.0/m4/ChangeLog new file mode 100644 index 0000000000..8eea10a436 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/ChangeLog @@ -0,0 +1,2402 @@ +2003-04-02 Jim Meyering + + * perl.m4 (jm_PERL): Use $am_missing_run, not undefined $missing_dir. + +2003-03-19 Jim Meyering + + * ftw.m4 (AC_FUNC_FTW): Require AC_HEADER_STAT. + +2003-03-17 Richard Dawe + + * jm-macros.m4 (jm_MACROS): Include $(EXEEXT) in DF_PROG's program + name, since automake only adds $(EXEEXT) to programs in its *_PROGRAMS. + Arrange to compile the corresponding stub function if fchdir is missing. + +2003-03-18 Jim Meyering + + * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the MOUNTED_VMOUNT + test to precede the MOUNTED_GETMNTENT1 tests, since otherwise, AIX 5.1 + systems would end up using the latter. MOUNTED_GETMNTENT1 support + is inadequate on such systems: 1) detecting whether a file system + is remote doesn't work 2) the MOUNTED_VMOUNT code reports the + HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1 code reports + merely /MOUNT_POINT. Reported by Mike Jetzer. + +2003-03-17 Jim Meyering + + * dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one + that is guaranteed to be `no'. Use `no_such_member' to indicate + that condition, rather than `-1' which is slightly misleading. + Change the name of the cache variable to have the gl_ prefix. + Prompted by a patch from Richard Dawe for DJGPP. + +2003-03-14 Jim Meyering + + * prereq.m4 (jm_PREREQ): Also forbid the gl_[A-Z] prefix. + Don't require jm_PREREQ_C_STACK. + +2003-03-13 Paul Eggert + + [from gnulib] + * onceonly.m4 (m4_quote): New macro. + (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE): + Quote AC_FOREACH variable-expansions properly. + +2003-03-13 Jim Meyering + + * jm-macros.m4 (jm_MACROS): Arrange to compile the corresponding stub + function if any of the following is missing: fchown, lstat, readlink. + From Richard Dawe. + +2003-03-07 Jim Meyering + + * jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define + using the latest version from cvs. This avoids problems with #line + directives using a vendor (Sun) compiler. + + * jm-macros.m4: Don't require AC_SYS_MMAP_STACK. + * mmap-stack.m4 (AC_SYS_MMAP_STACK): Remove file. + +2003-03-06 Jim Meyering + + * getcwd-path-max.m4 (GL_FUNC_GETCWD_PATH_MAX): Check for + declaration of getcwd. + +2003-03-04 Jim Meyering + + * getcwd-path-max.m4 (GL_FUNC_GETCWD_PATH_MAX): New macro. + * jm-macros.m4: Require GL_FUNC_GETCWD_PATH_MAX. + + `df /some/mount-point' no longer hangs when an unrelated hard-mount + is unavailable + * fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point in + /proc/mounts until it finds one with matching device number. This is + unnecessary when the FILE argument *is* a mount point. No stat call + is necessary in that case. So, disable the statvfs-testing code on + systems with GNU libc. Reported by Andrei Gaponenko via Tim Waugh + as RedHat bug# 84846. + +2003-02-27 Jim Meyering + + * prereq.m4 (jm_PREREQ_PHYSMEM): Also check for `table' function. + Reported by Kaveh Ghazi. + + * prereq.m4 (gl_SYS__SYSTEM_CONFIGURATION): New function. + (jm_PREREQ_PHYSMEM): Check for new headers and functions. + Use gl_SYS__SYSTEM_CONFIGURATION. + With suggestions from Kaveh Ghazi. + +2003-02-19 Jim Meyering + + * c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size + to 1MB, so as not to render systems with no stack size limit (e.g., + linux-2.2.x) unusable. Suggestion and code from Bruno Haible. + +2003-02-17 Jim Meyering + + * prereq.m4 (jm_PREREQ_PHYSMEM): Undo last change, since + Kaveh Ghazi found a better way to get the required information. + Add check for sys/sysmp.h. + +2003-02-15 Jim Meyering + + * mmap-stack.m4: New file. + + * jm-macros.m4: Require AC_SYS_MMAP_STACK. + + Add Irix6 support to physmem.c. + * prereq.m4 (jm_PREREQ_PHYSMEM): Also check for sys/sysget.h + and sys/sysinfo.h. + Also check for sysget. + Reported by Kaveh Ghazi. + +2003-02-12 Jim Meyering + + * restrict.m4 (ACX_C_RESTRICT): Remove #ifndef -- so now this + macro also checks for support when using a C++ compiler. + Also, remove the test for SGI's __restrict. + Suggested by Steven G. Johnson. + + * regex.m4 (jm_PREREQ_REGEX): Require ACX_C_RESTRICT. + + * restrict.m4 (ACX_C_RESTRICT): Minor syntactic changes: + Split long lines, use AC_COMPILE_IFELSE, indent, use `case' + instead of nested `if's, remove unnecessary quotes. + + * restrict.m4 (ACX_C_RESTRICT): New macro. + Copied directly from the URL in the comments. + By Steven G. Johnson. + +2003-02-09 Jim Meyering + + * check-decl.m4 (jm_CHECK_DECLS): Add euidaccess. + +2003-02-03 Jim Meyering + + * c-stack.m4: Include . On some systems, + it is required for the definition of _SC_PAGESIZE. + +2003-02-02 Jim Meyering + + * onceonly.m4: New file. From gnulib. + + * regex.m4 (jm_PREREQ_REGEX): New function, from gnulib. + (jm_INCLUDED_REGEX): Use it. + * prereq.m4 (jm_PREREQ_REGEX): Remove. + +2003-01-31 Jim Meyering + + * open-max.m4 (UTILS_SYS_OPEN_MAX): New file/macro. + * jm-macros.m4 (jm_MACROS): Require UTILS_SYS_OPEN_MAX. + +2003-01-29 Jim Meyering + + * regex.m4: Detect broken re_search in e.g. glibc-2.2.93. + +2003-01-23 Jim Meyering + + * dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this + from working on systems without dirfd (at least Irix and OSF1/Tru64). + + Merge in change by Bruno Haible from gnulib. + * dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP requirements. + +2003-01-16 Jim Meyering + + * regex.m4: The `regex' struct is both input and output. + Initialize it before each use. Patch by Tim Waugh. + +2003-01-15 Jim Meyering + + * jm-macros.m4: Require AC_FUNC_FTW. + +2003-01-12 Jim Meyering + + * ftw.m4: New file. + +2003-01-11 Jim Meyering + + * canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): New file and macro. + * jm-macros.m4: Require AC_FUNC_CANONICALIZE_FILE_NAME. + (jm_MACROS): No longer check for resolvepath or canonicalize_file_name. + +2002-12-15 Jim Meyering + + * jm-glibc-io.m4n: Remove now-unused file. + * Makefile.am.in (Makefile.am): Remove jm-glibc-io.m4 + and jm-glibc-io.m4n. + +2002-12-11 Jim Meyering + + * jm-glibc-io.m4: Maintain this file manually rather than generating it. + Generating it caused too much trouble. From gnulib. + +2002-11-19 Jim Meyering + + * jm-macros.m4: Require Autoconf-2.56. + +2002-09-30 Akim Demaille + + * prereq.m4: Use AC_REQUIRE everywhere it is possible. + (jm_PREREQ_CANON_HOST): Remove duplicates. + +2002-11-10 Jim Meyering + + * jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(raise). + +2002-10-30 Paul Eggert + + * getgroups.m4 (jm_FUNC_GETGROUPS): + Fix typo: cv_func_getgroups_works -> ac_cv_func_getgroups_works. + +2002-10-07 Paul Eggert + + * prereq.m4 (jm_PREREQ_HUMAN): Check for locale.h, localeconv, + AC_HEADER_STDBOOL. No need to check for limits.h since it's in + freestanding C89. No need to check for stdlib.h or string.h since + autoconf does this now. + +2002-10-12 Paul Eggert + + * jm-macros.m4 (jm_CHECK_ALL_HEADERS): Remove fenv.h. + +2002-09-29 Jim Meyering + + * gettext.m4 (AM_INTL_SUBDIR): Don't require gt_HEADER_INTTYPES_H. + It's not necessary with autoconf-2.54. + +2002-09-28 Jim Meyering + + * getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS + and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB. + * jm-macros.m4 (jm_MACROS): Don't set GETGROUPS_LIB here; now it's + done via getgroups.m4's wrapper function. + + * strerror_r.m4: Remove file -- now it's part of autoconf-2.54. + Reported by Akim Demaille. + +2002-09-25 Jim Meyering + + * gettext.m4: Upgrade to gettext-0.11.5. + +2002-09-07 Bruno Haible + + * host-os.m4 (UTILS_HOST_OS): Add a case for freebsd*-gnu*. + +2002-09-17 Jim Meyering + + * jm-macros.m4 (jm_MACROS): Require gt_INTTYPES_PRI. + * inttypes-pri.m4 (gt_INTTYPES_PRI): New file, mostly from gettext. + +2002-09-16 Jim Meyering + + * prereq.m4: Forbid symbols matching ^jm_[A-Z]. + (jm_PREREQ_QUOTEARG): Add jm_FUNC_MEMCMP. + From Akim Demaille. + + * error.m4 (jm_PREREQ_ERROR): Check for libintl.h. + Reported by Akim Demaille. + +2002-09-13 Jim Meyering + + * jm-macros.m4 (jm_MACROS): Require autoconf-2.54. + +2002-09-09 Jim Meyering + + * getloadavg.m4: Remove file -- now it's part of autoconf-2.53c. + * jm-macros.m4: Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new + AC_FUNC_GETLOADAVG where to find getloadavg.c. + +2002-09-03 Jim Meyering + + * gnu-source.m4: Remove file -- now it's part of autoconf-2.53c. + * mbstate_t.m4: Likewise. + * fnmatch.m4: Likewise. + +2002-08-05 Jim Meyering + + * jm-winsz1.m4: Also change use of $am_cv_sys_posix_termios + to $ac_cv_sys_posix_termios. Reported by Andreas Schwab. + +2002-08-03 Jim Meyering + + * jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not AM_SYS_POSIX_TERMIOS. + Reported by mkc@mathdogs.com. + +2002-08-01 Jim Meyering + + * prereq.m4 (jm_PREREQ_TEMPNAME): lib/tempname.c may use uintmax_t, + so require jm_AC_TYPE_UINTMAX_T. Patch by Joe Orton. + +2002-07-28 Jim Meyering + + * jm-macros.m4: Don't require jm_FUNC_READDIR. + * readdir.m4 (jm_FUNC_READDIR): Remove file/macro. No longer needed. + +2002-07-27 Jim Meyering + + * prereq.m4 (jm_PREREQ_READUTMP): Don't check just + `struct utmpx.ut_exit' and `struct utmp.ut_exit'. Instead, check + all combinations of utmp/utmpx and ut_termination/e_termination + and ut_exit/e_exit. + +2002-07-23 Jim Meyering + + * c-bs-a.m4 (AC_C_BACKSLASH_A): Remove file, now that autoconf + provides this macro. + +2002-07-20 Jim Meyering + + * intdiv0.m4: New file. From gettex-0.11.3. + + * jm-macros.m4: Require autoconf-2.53b. + Use new macros AC_FUNC_MALLOC and AC_FUNC_REALLOC, + in place of jm_-prefixed ones. Thanks, Akim! + * malloc.m4: Remove file, now that autoconf provides this macro. + * realloc.m4: Likewise. + +2002-07-18 gettextize + + * gettext.m4: Upgrade to gettext-0.11.3. + * iconv.m4: Upgrade to gettext-0.11.3. + * isc-posix.m4: Upgrade to gettext-0.11.3. + * lcmessage.m4: Upgrade to gettext-0.11.3. + * lib-link.m4: Upgrade to gettext-0.11.3. + +2002-07-17 Jim Meyering + + * boottime.m4: New file. Extracted from sh-utils' configure.ac + and extended to work also with *BSD systems. + +2002-07-15 Jim Meyering + + FreeBSD support for uname and uptime. + * jm-macros.m4 (jm_MACROS): Check for the sysctl function. + (jm_CHECK_ALL_HEADERS): Check for sys/sysctl.h. + Suggestion from Bruno Haible. + +2002-06-11 Paul Eggert + + * fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc. + +2002-06-22 Jim Meyering + + * c-stack.m4: New file, from diffutils-2.8.2. + * prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK. + + * jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE, + now that configure.ac uses AC_GNU_SOURCE. + (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU. + * prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH. + + Update to latest tools. Suggestions from Paul Eggert. + * stdbool.m4: New file, from diffutils-2.8.2. + * gnu-source.m4: Update from diffutils-2.8.2. + * fnmatch.m4: Likewise. + * prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h) + to AC_HEADER_STDBOOL + +2002-06-21 Jim Meyering + + * c-bs-a.m4: Add comment, from diffutils-2.8.2. + * mbrtowc.m4: Likewise. + + * mbstate_t.m4: Update from diffutils-2.8.2. + * mbswidth.m4: Reflect name change: + s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T. + * prereq.m4 (jm_PREREQ_QUOTEARG): Likewise. + + * lib-link.m4: Update from gettext-0.11.2. + * gettext.m4: Likewise. + + * jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h. + From Alfred M. Szmidt. + +2002-05-19 Paul Eggert + + * jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author. + +2002-06-07 Jim Meyering + + * prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h. + They're needed at least for NetBSD 1.5.2. + ($statxfs_includes): Include those same headers. + ($statxfs_includes): Include sys/vfs.h if available. + ($statxfs_includes): Likewise for sys/statvfs.h. + Check for the following members in both structs statfs and statvfs: + f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen. + +2002-06-01 Jim Meyering + + * d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro: + s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/. + +2002-05-28 Jim Meyering + + * readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'. + Reported by Volker Borchert. + +2002-05-27 Jim Meyering + + * gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace + localtime. + + * readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to + use the replacement function; it wouldn't resolve at link time. + Reported by Volker Borchert. + +2002-04-30 Jim Meyering + + * prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT. + +2002-04-29 Paul Eggert + + * prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h. + Do not check for alloca.h (no longer used) or stdbool.h (was never + used?). Add AM_C_PROTOTYPES since hard-locale.h uses it. + +2002-04-28 Paul Eggert + + * prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed. + +2002-04-29 Jim Meyering + + * jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN. + * prereq.m4: Add jm_PREREQ_STRNLEN. + Use AC_FUNC_STRNLEN here instead. + + * jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]). + With autoconf-2.53a, it's part of AC_PROG_CC. + +2002-04-28 Paul Eggert + + * jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str). + * prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR. + +2002-04-24 Jim Meyering + + * prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro. + (jm_PREREQ): Use it. + + * getloadavg.m4: Check for these headers: locale.h unistd.h + mach/mach.h fcntl.h. + Check for this function: setlocale. + +2002-04-16 Jim Meyering + + * prereq.m4 (jm_PREREQ_READUTMP): Also check for these members: + ut_pid, ut_id, ut_exit. + +2002-04-12 Jim Meyering + + * ls-mntd-fs.m4 (checking for getmntinfo function...): Remove now-bogus + check for f_type in sys/mount.h. Instead, just test for the existence + of the getmntinfo function. Needed for Darwin 5.3. + + * dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro. + This is necessary at least on Darwin 5.3. + + * jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use + AC_FUNC_STRNLEN. Otherwise, we'd end up putting two copies of strnlen.o + in the library, and that makes some versions of ranlib object. + +2002-04-09 Jim Meyering + + * malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message + to be more precise. Rather than saying we're checking whether the + function `works', say what we're testing. + * realloc.m4 (jm_FUNC_REALLOC): Likewise. + Reported by Bruno Haible. + +2002-02-27 Paul Eggert + + * jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used. + Check for clock_settime. + +2002-02-25 Paul Eggert + + * acl.m4: New file. + * jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL. + Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now. + +2002-02-16 gettextize + + * codeset.m4: Upgrade to gettext-0.11. + * gettext.m4: Upgrade to gettext-0.11. + * glibc21.m4: Upgrade to gettext-0.11. + * iconv.m4: Upgrade to gettext-0.11. + * isc-posix.m4: Upgrade to gettext-0.11. + * lcmessage.m4: Upgrade to gettext-0.11. + * lib-ld.m4: New file, from gettext-0.11. + * lib-link.m4: New file, from gettext-0.11. + * lib-prefix.m4: New file, from gettext-0.11. + * progtest.m4: Upgrade to gettext-0.11. + +2002-02-15 Paul Eggert + + * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro. + (jm_PREREQ): Use it. + +2002-01-26 Jim Meyering + + * jm-macros.m4 (jm_MACROS): Require autoconf-2.52g. + * strnlen.m4: Remove file, now that it's part of autoconf. + +2002-01-22 Paul Eggert + + * jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO. + +2002-01-19 Jim Meyering + + * jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN. + Remove useless quotes: DF_PROG="df". + * strnlen.m4: New file. + +2001-12-14 Jim Meyering + + * jm-macros.m4 (jm_MACROS): Check for iswspace. + Suggestion from Bruno Haible. + +2001-11-20 Jim Meyering + + * mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that + SunOS4.1.4 and solaris2.5.1 lose, too. + +2001-11-19 Jim Meyering + + * mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary + directory. Use "conftestXXXXXX" as the template. + Suggestion from Paul Eggert. + + * mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor immediately, + so the test doesn't mistakenly hit the max-open-files limit. + +2001-11-18 Jim Meyering + + * prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv. + +2001-11-17 Jim Meyering + + * mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro. + Prompted by a report from Bob Proulx. + + * jm-macros.m4 (jm_MACROS): Don't test for mkstemp here. + Instead, require UTILS_FUNC_MKSTEMP. + +2001-11-11 Jim Meyering + + * jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM. + Now, that's done as part of AC_FUNC_STRTOD. + +2001-10-22 Paul Eggert + + * jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define + WINSIZE_IN_PTEM if defines struct winsize. + +2001-11-10 Jim Meyering + + * prereq.m4 (jm_PREREQ_PHYSMEM): New function. + (jm_PREREQ): Use it. + +2001-11-09 Jim Meyering + + * jm-macros.m4: Require autoconf-2.52f. + (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD): + Use these AC_-prefixed names, not the AM_-prefixed ones. + + * afs.m4 (jm_AFS): Quote the body. Patch by Akim Demaille. + +2001-11-04 Jim Meyering + + * fpending.m4: Remove unused cruft that saved, set, and restored $DEFS. + +2001-11-03 Jim Meyering + + * jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg + of AC_DEFUN. + + * dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to + know the name of the variable in the macro definition. + +2001-11-01 Jim Meyering + + * dirfd.m4 (UTILS_FUNC_DIRFD): New macro. + * jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD. + +2001-10-20 Paul Eggert + + * error.m4 (jm_PREREQ_ERROR): + Do not invoke AC_CHECK_FUNCS with strerror_r, as + AC_FUNC_STRERROR_R does that. + Check for strerror declaration. + + * strerror_r.m4: Add copyright notice, as nontrivial m4 files + are supposed to have them these days. + (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached. + Merge changes from latest Autoconf CVS. + Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p, + and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since + POSIX decided to standardize on the int flavor of strerror_r. + +2001-09-30 Jim Meyering + + * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if + `struct fsstat' has the `f_fstypename' member. + Use that to define FS_TYPE, which is now used to make + the getfsstat link test tighter. + +2001-09-29 Jim Meyering + + * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS) + [one-argument getmntent function]): Include stdio.h before mntent.h. + SunOS4.1.x needs it for the declaration of `FILE'. + Patch by Volker Borchert. + + * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS) + Check for these headers: sys/param.h sys/ucred.h sys/mount.h + sys/fs_types.h, and make the link-test for getfsstat guard #include + directives with appropriate #if HAVE_*_H tests so that we can + detect getfsstat on Apple Darwin1.3.7 systems. + Reported by Nelson Beebe. + Fix harmless typo in cache variable name: s/getsstat/getfsstat/. + +2001-09-28 Paul Eggert + + Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which + #defines strtoimax. Also treat the other strto* functions + like strtoimax. + + * xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): + Check for strtoul and strtoumax, + as those declarations are made even in the signed case. + * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): + Likewise, for strtol and strtoimax. + +2001-09-24 Jim Meyering + + * gettext.m4: Use the version from gettext-0.10.40, not CVS. + +2001-09-23 Jim Meyering + + * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test + instead of the mere test for existence of mntent.h. The latter + would get a false-positive on AIX 3.4 systems. + In the outer getmntent if-block, don't die if neither of the getmntent + tests succeeds. Instead, just fall through and continue with the + remaining tests. + +2001-09-22 Jim Meyering + + * gettext.m4: New file. From gettext. + * lcmessage.m4: Sync with gettext -- this changes only comments. + * progtest.m4: Likewise + * isc-posix.m4: Decrement serial number to sync with gettext. + * glibc21.m4: Likewise. + + * libintl.m4: Remove. No longer used. + +2001-09-20 Jim Meyering + + * xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of + strtoimax. + * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of + strtoumax. + +2001-09-17 Jim Meyering + + * chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4, + * jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4, + * nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4, + * st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4, + * utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED, + whenever the right hand side need not be expanded by the shell. + +2001-09-16 Paul Eggert + + * fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C + library. It's not correct, as some older glibcs are buggy. + fnmatch wasn't fixed until glibc 2.2. + + Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no + special shell magic here. + +2001-09-16 Jim Meyering + + * mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro. + * jm-macros.m4: Require it. + +2001-09-15 Jim Meyering + + * jm-macros.m4: Check for help2man. + +2001-09-11 Jim Meyering + + * host-os.m4 (UTILS_HOST_OS): New file/macro. + The body, by Paul Eggert, was moved here from configure.in. + * jm-macros.m4: Require UTILS_HOST_OS. + +2001-09-04 Paul Eggert + + * prereq.m4 (jm_PREREQ_XREADLINK): New macro. + (jm_PREREQ): Use it. + +2001-09-03 Paul Eggert + + * prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and + sys/param.h, as pathmax.h includes them. + +2001-09-03 Paul Eggert + + * prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD. + (jm_PREREQ_XGETCWD): New macro. + + * getcwd.m4: New file. + +2001-09-01 Jim Meyering + + * jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name. + Used by df. + +2001-08-30 Paul Eggert + + Simplify code, partly by assuming autoconf 2.52 semantics. + + * Makefile.am (EXTRA_DIST): Remove uintmax_t.m4. + + * inttypes.m4 (AC_PREREQ): Bump to 2.52. + (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52. + All uses removed. + (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T): + Move AC_REQUIRE to next-to-top level, to avoid confusion. + Use 2.52's AC_CHECK_TYPE instead of merely looking for the header. + * prereq.m4 (jm_PREREQ_HUMAN): Don't require jm_AC_HEADER_INTTYPES_H. + * jm-macros.m4 (jm_MACROS): Likewise. + + * uintmax_t.m4: Remove, as it duplicates inttypes.m4. + + * xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): + Quote first arg of AC_DEFUN. + Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG + since they are needed to parse the include file even if we need + only xstrtoimax. Simplify logic behind the args to AC_REPLACE. + * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise, + but with opposite signedness. + +2001-08-30 Paul Eggert + + * prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE. + (jm_PREREQ_EXCLUDE): New macro. + +2001-08-26 Jim Meyering + + * jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX. + + * xstrtoimax.m4: New file. + * xstrtoumax.m4: Add comments explaining why we + AC_REPLACE_FUNCS(strtol). + +2001-06-20 Paul Eggert + + * inttypes.m4: Add AC_PREREQ(2.13). + (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too. + (jm_AC_TYPE_INTMAX_T): New macro. + (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4. + + * longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro. + + * longlong.m4: Renamed from ulonglong.m4. + * inttypes.m4: Renamed from inttypes_h.m4. + * uintmax_t.m4: Removed. + +2001-08-12 Jim Meyering + + * afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4, + d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4, + fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4, + group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4, + jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4, + link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4, + mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4, + prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4, + rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, + strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4, + utime.m4, utimes.m4, xstrtoumax.m4: + Quote the first argument in each use of AC_DEFUN. + +2001-08-05 Jim Meyering + + * jm-macros.m4: Require autoconf-2.52. + +2001-08-03 Paul Eggert + + The following changes are from gettext 0.10.39 as maintained by + Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ. + + * codeset.m4: Upgrade to serial AM1. + (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET; + all uses changed. Quote first arg of AC_DEFUN. + (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset. + + * iconv.m4: Upgrade to serial AM2. + (AM_ICONV): Renamed from jm_ICONV; all uses changed. + Add --with-libconv-prefix. + Quote first arg of AC_DEFUN. Add description for ICONV_CONST. + (am_cv_func_iconv): Renamed from jm_cv_func_iconv. + (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv. + (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv. + * jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings. + + * c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN. + * getline.m4 (AM_FUNC_GETLINE): Likewise. + * glibc21.m4 (jm_GLIBC21): Likewise. + * inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise. + * isc-posix.m4 (AC_ISC_POSIX): Likewise. + * lcmessage.m4 (AM_LC_MESSAGES): Likewise. + * progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise. + * uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise. + * ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise. + + * getline.m4 (AM_FUNC_GETLINE): Don't bother checking for + string.h any more. + + * progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no", + not the default value. + + 2001-06-25 Bruno Haible + * mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES. + Also check for mbsinit. Needed for SCO 3.2v5.0.2. + Also include ; this is where AIX 3.2.5 declares wcwidth. + Also check for iswcntrl, used for wcwidth fallback. + Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability + to Autoconf 2.13. + +2001-08-03 Jim Meyering + + * mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include', + as it was in the original. Reported by Paul Eggert. + +2001-07-16 Jim Meyering + + * gettimeofday.m4: New file. + Prompted by a report from Bernhard Baehr. + +2001-07-15 Jim Meyering + + * Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h stuff. + Now it's in ../Makefile.cfg. + +2001-07-04 Jim Meyering + + * Makefile.am.in (glibc-io.struct): New target. Rework the code + that generates jm-glibc-io.m4 so that it doesn't trigger any make + distcheck failure. + +2001-07-02 Jim Meyering + + The following changes were prompted by suggestions from Bruno Haible. + + * jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4 + is now generated. + * Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted + definition of EXTRA_DIST. + (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to + ensure that the generated file is created/updated whenever the list + of $(unlocked_functions) is changed. + (jm-glibc-io.m4): New rule. + (unlocked-io.h): New rule -- currently unused. + +2001-06-24 Jim Meyering + + * regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an + unmatched right bracket, rather than kludging it with an extra, + falsely-matching quote in a comment. Patch by Akim Demaille. + +2001-05-27 Jim Meyering + + * prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx. + Check for ut_type in struct utmp. + +2001-05-22 Jim Meyering + + * strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime), + now that we use the package-supplied version unconditionally. + (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason. + +2001-05-21 Jim Meyering + + * regex.m4: Change a couple backticks to single quotes to avoid shell + syntax errors. + +2001-05-19 Alexandre Duret-Lutz + + * dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__. + +2001-05-11 Paul Eggert + + * strftime.m4 (jm_FUNC_GNU_STRFTIME): + Don't bother to check library strftime, since + we'll be using our own my_strftime function anyway. + Define my_strftime instead of strftime. + +2001-05-15 Jim Meyering + + * regex.m4: Use proper quoting so brackets appear in the test program. + Reported by, and with help from, Bruno Haible. + +2001-05-13 Jim Meyering + + * jm-macros.m4 (major_t, minor_t): Define to unsigned int if undefined. + +2000-11-26 Paul Eggert + + * jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used. + +2001-04-21 Jim Meyering + + * rmdir-errno.m4: Write to a new file, so that a restrictive umask + doesn't interfere. + +2001-04-21 Alexandre Duret-Lutz + + * ftruncate.m4: Check for chsize. + Link with ftruncate.o unconditionally if ftruncate is missing. + This was required when cross-compiling to i586-mingw32msvc. + +2001-03-24 Jim Meyering + + * jm-macros.m4: Require autoconf-2.49d. + +2001-03-20 Bruno Haible + + * iconv.m4 (jm_ICONV): Recommend GNU libiconv. + +2001-03-17 Jim Meyering + + * memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP, + now that the version in autoconf is equivalent. + (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP. + + * error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R. + Suggestion from Akim Demaille. + + * prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME. + (jm_PREREQ_TEMPNAME): New function. + +2001-02-25 Paul Eggert + + * jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system + lacks mkstemp. Compile our own tempname.c if we compile our own + mkstemp.c, as mkstemp relies on tempname. + +2001-03-01 Jim Meyering + + * dos.m4 (jm_AC_DOS): Remove extra backslashes, now that + AH_VERBATIM really does output its argument verbatim. + +2001-02-18 Paul Eggert + + * jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h. + +2001-02-17 Jim Meyering + + * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for + getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt + further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on + UnixWare 7.1.1. + + * mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc., + rather than AC_CACHE_VAL. + +2001-02-17 Paul Eggert + + * mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC. + * mbswidth.m4 (jm_PREREQ_MBSWIDTH): + Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc). + * prereq.m4 (jm_PREREQ_QUOTEARG): Likewise. + +2001-02-07 Jim Meyering + + * regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug. + +2001-02-05 Jim Meyering + + * jm-macros.m4: Require autoconf-2.14d (not yet released), because + it includes the patch required for `large file' support with at least + HP-UX's 10.20 /bin/cc. + +2001-02-03 Jim Meyering + + * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of + AS_IF, now that it works once again (mysteriously). + * fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise. + +2001-01-30 Jim Meyering + + Don't use filenames that are 8.3-equivalent to "conftest" on DOS. + * chown.m4: Rename conftestchown to conftest.chown. + * rename.m4: s/conftestdir/conftest.d1/ and s/conftestdir2/conftest.d2/. + * utimes.m4: s/conftestdata/conftest.data/ + Inspired by Pavel Roskin's change in autoconf. + +2001-01-27 Jim Meyering + + * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was + a use of AS_IF. + * fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise. + +2001-01-26 Jim Meyering + + * prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that + quotearg.c includes it. + +2001-01-15 Bruno Haible + + * iconv.m4 (jm_ICONV): Also check whether the iconv declaration + has const. + +2001-01-20 Jim Meyering + + Be sure that headers are checked before used in code compiled + for the type checks. + * jm-macros.m4 (jm_MACROS): Remove all header checks. + In place of that, invoke jm_CHECK_ALL_TYPES. + (jm_CHECK_ALL_HEADERS): New functions with the above checks. + (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS. + Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES; + The check for ssize_t was mistakenly run before the test for unistd.h. + + The configure-time check for stdbool.h was missing. + * prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH. + (jm_PREREQ_HASH): New function. + +2001-01-17 Jim Meyering + + * fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE, + for autoconf-2.49c. + * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise. + +2001-01-14 Jim Meyering + + * rename.m4: Use temporary directories named conftestdir{,2}, not + foo and bar. Create conftestdir/ in the script, not in the C code. + Remove directories in the script, not in the C code. + Remove conftestdir{,2} before trying to create the directory. + Make the entire configure script fail if the mkdir fails. + +2001-01-02 Volker Borchert + + * rename.m4: New file. + * jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME. + +2001-01-01 Alexandre Duret-Lutz + + * libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by + expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN, + so `make install' also works in VPATH builds. + +2001-01-01 Jim Meyering + + * prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available), even + on systems with utmpx.h. It's necessary for the declaration of utmp's + ut_user member. Reported by Andreas Jaeger. + + * check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if available. + They are required for the declarations of getgrgid and getpwuid resp. + (_jm_DECL_HEADERS): Check for grp.h and pwd.h. + Reported by Andreas Jaeger. + +2000-12-25 Alexandre Duret-Lutz + + * libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR, + prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it + can be used in subdirectories. + +2000-12-26 Jim Meyering + + * dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work better + with autoheader. + +2000-12-17 Jim Meyering + + * dos.m4 (jm_AC_DOS): New file and macro. + * jm-macros.m4 (jm_MACROS): Require jm_AC_DOS. + +2000-12-06 Paul Eggert + + * off_t-format.m4: Remove this file. + * jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT. + +2000-12-06 Jim Meyering + + * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the replacement + strtoull, we may well need the replacement strtoul, too. + Check for declarations of strtoul and strtoull. + Check for strtol. Mainly as a cue to cause automake to include + strtol.c -- that file is included by each of strtoul.c and strtoull.c. + Check for limits.h -- strtol.c needs it. + +2000-12-02 Jim Meyering + + * off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro. + * jm-macros.m4 (jm_MACROS): require it. + +2000-11-30 Jim Meyering + + * jm-macros.m4 (jm_MACROS): Check for stdint.h. + +2000-11-30 Jim Meyering + + * getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf. + +2000-11-03 Bruno Haible + + * jm-macros.m4 (jm_MACROS): Add test for wcrtomb. + +2000-11-04 Jim Meyering + + * regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'. + +2000-10-29 Jim Meyering + + * fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf renaming. + * ls-mntd-fs.m4: Likewise + +2000-10-28 Jim Meyering + + * prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR. + (jm_PREREQ_MEMCHR): New function. + +2000-10-21 Jim Meyering + + * check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr. + * prereq.m4 (jm_PREREQ_DIRNAME): New macro. + * jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr. + +2000-09-18 Jim Meyering + + * getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of LIBS. + Otherwise, everyone ends up linking with -lelf for some configurations. + Reported by Mike Stone. + +2000-08-26 Jim Meyering + + * jm-macros.m4: Use jm_FUNC_FPENDING. + * fpending.m4: New file. + +2000-08-20 Jim Meyering + + * check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than + `#if !HAVE_UTMPX_H'. The latter would lose on systems with neither + utmp.h nor utmpx.h. Reported by Eli Zaretskii. + +2000-08-11 J. David Anglin + + Improve fileutils installation on systems where running + programs (like install) can't be unlinked. + * unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro. + * jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT. + +2000-08-06 Paul Eggert + + * mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int, + not char, for compatibility with glibc 2.1.3 strftime.c. + +2000-07-23 Paul Eggert + + * mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration. + +2000-07-23 Jim Meyering + + * check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these, too: + getgrgid, getpwuid, getuid. + +2000-07-16 Bruno Haible + + * mbswidth.m4: New file. + * prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH. + +2000-07-14 Jim Meyering + + * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require jm_AC_TYPE_UINTMAX_T. + +2000-07-10 Paul Eggert + + From a suggestion by Bruno Haible. + * mbstate_t.m4 (AC_MBSTATE_T): + Renamed from AC_MBSTATE_T_OBJECT. All uses changed. + Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT + and mbstate_t, to a single-part test that simply defines mbstate_t. + * prereq.m4 (jm_PREREQ_QUOTEARG): s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/. + +2000-07-10 Jim Meyering + + * strerror_r.m4: Mirror the correction made in autoconf. + + * gnu-source.m4: Output to confdefs.h directly. + Suggestion from Akim Demaille. + +2000-07-09 Jim Meyering + + * jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required + to link seq. If so, set SEQ_LIBM to -lm. From Bruno Haible. + + * gnu-source.m4 (AC__GNU_SOURCE): New file/macro. + * jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it. + +2000-07-05 Bruno Haible + + * strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer + to strerror_r. + Include for use of isalpha. + +2000-07-05 Paul Eggert + and Bruno Haible + + * mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t + only if the test for an object-type mbstate_t fails. This + prevents us from mistakenly reporting that mbstate_t is a + system object type after we "#define mbstate_t int" to work + around its lack. + +2000-07-04 Jim Meyering + + * fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead + of the deprecated AC_CHECKING. + +2000-07-03 Jim Meyering + + * check-decl.m4 (AC_CHECK_DECLS): Add strnlen. + +2000-07-03 Paul Eggert + + * mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13. + Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H. + +2000-07-02 Jim Meyering + + * mbstate_t.m4: Also define mbstate_t, if necessary. + + * chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with + AC_LIBOBJ(function_name). + * chown.m4: Likewise. + * fnmatch.m4: Likewise. + * ftruncate.m4: Likewise. + * getgroups.m4: Likewise. + * getline.m4: Likewise. + * group-member.m4: Likewise. + * jm-macros.m4: Likewise. + * lstat.m4: Likewise. + * malloc.m4: Likewise. + * memcmp.m4: Likewise. + * nanosleep.m4: Likewise. + * putenv.m4: Likewise. + * realloc.m4: Likewise. + * regex.m4: Likewise. + * stat.m4: Likewise. + * strftime.m4: Likewise. + +2000-07-01 Jim Meyering + + * ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated + problem. + +2000-06-17 Bruno Haible + + * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific + macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV. + +2000-07-01 Jim Meyering + + * uptime.m4: Put double quotes around use of $cross_compiling. + +2000-06-28 Jim Meyering + + * mbstate_t.m4: Use stdlib.h, not stdio.h. The latter is not included + by quotearg.c, for which we perform this test. From Bruno Haible. + +2000-06-17 Bruno Haible + + * check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well. + * prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either or + exists, put readutmp.o into LIBOBJS. + +2000-06-25 Jim Meyering + + * mbstate_t.m4: Include stdio.h before wchar.h to work around + Linux header bug when _XOPEN_SOURCE is defined to 500. + +2000-06-24 Jim Meyering + + * strerror_r.m4: Revive this file -- to try out an experimental + version of AC_FUNC_STRERROR_R that may work even on BeOS, a system + for which strerror does return char*, but which lacks a conveniently + accessible declaration of the function. If the compile-test says + strerror_r doesn't work, then resort to a `run'-test that works on + BeOS and segfaults on DEC Unix. + +2000-06-19 Paul Eggert + + * mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT. + * prereq.m4 (jm_PREREQ_QUOTEARG): Use it. Add check for iswprint. + +2000-06-23 Jim Meyering + + * afs.m4: Add missing AC_MSG_RESULT. + Reported by Bruno Haible. + + * fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/. + Suggestion from Bruno Haible. + +2000-06-21 Jim Meyering + + * jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass. + +2000-06-18 Jim Meyering + + * jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir. + + * link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the + `checking whether...' message to be consistent with that of the + lstat test. + +2000-06-16 Bruno Haible + + * glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C. + +2000-06-12 Jim Meyering + + * getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with AC_FUNC_GETLOADAVG + from autoconf, and tweak the latter to accept an optional argument. + * jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply + the optional argument, `lib'. + +2000-06-08 Jim Meyering + + * largefile.m4: Remove file (now that it's part of autoconf). + +2000-06-04 Paul Eggert + + Rewrite largefile configuration so that we don't need to run + getconf and don't need AC_CANONICAL_HOST. [I'm leaving the use of + AC_CANONICAL_HOST in configure.in -- jmm] + + * largefile.m4 (AC_SYS_LARGEFILE_FLAGS, + AC_SYS_LARGEFILE_SPACE_APPEND): Remove. + (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro. + (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from + CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY. + All uses changed. + Instead of inspecting the output of getconf, try to compile the + test program without and with the macro definition. + (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check + for getconf. Instead, check for the needed flags by compiling + test programs. + +2000-06-03 Jim Meyering + + * prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS, + now that autoconf requires that. + + * jm-glibc-io.m4: Add a kludge to make autoheader emit the required + #undefs. E.g., #undef HAVE_DECL_FERROR_UNLOCKED. + Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that. + +2000-05-26 Bruno Haible + + * glibc21.m4: New file. + * jm-macros.m4 (jm_MACROS): Call jm_GLIBC21. + +2000-05-28 Jim Meyering + + * jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from + jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK. + * stat.m4: Likewise. + * lstat.m4: Likewise. + * lstat-slash.m4: Remove file (absorbed into autoconf). + + * jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R. + * strerror_r.m4: Remove file (absorbed into autoconf). + +2000-05-26 Jim Meyering + + * uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'. + +2000-05-24 Jim Meyering + + * prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that + autoconf requires that. + * lib-check.m4: Likewise. + * jm-macros.m4: Likewise. + * strftime.m4: Likewise. + + * check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in AC_CHECK_DECLS, + now that autoconf requires that. + +2000-05-22 Jim Meyering + + * stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK. + * lstat.m4: Likewise. + +2000-05-20 Jim Meyering + + * prereq.m4 (jm_PREREQ_HUMAN): New macro. + (jm_PREREQ): Use it. + +2000-05-09 Jim Meyering + + * gettext.m4: Rename this... + * libintl.m4: ...to this. + +2000-05-06 Jim Meyering + + * jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit. + (AC_REPLACE_FUNCS): Add strnlen. + + * rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file. + * jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY. + + * nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around + AC_SEARCH_LIBS call for nanosleep. + (LIB_NANOSLEEP): Set and AC_SUBST. + +2000-05-03 Paul Eggert + + * largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to + be 500, instead of _GNU_SOURCE to be 1, to work around glibc + 2.1.3 bug. This avoids a clash when files like regex.c define + _GNU_SOURCE. + +2000-05-05 Jim Meyering + + * jm-macros.m4 (jm_MACROS): Save and restore LIBS around AC_SEARCH_LIBS + call for clock_gettime. + (LIB_CLOCK_GETTIME): Set and AC_SUBST. + + * search-libs.m4: Update from autoconf. + + su doesn't work on Solaris2.6. + * lib-check.m4: When checking for struct spwd.sp_pwdp, also include + . Reported by Dragos Harabor. + +2000-05-03 Jim Meyering + + * check-decl.m4 (AC_CHECK_DECLS): Add strndup. + +2000-05-02 Paul Eggert + + * largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if + this is needed to make ftello visible (e.g. glibc 2.1.3). Use + compile-time test, rather than inspecting host and OS, to + decide whether to define _LARGEFILE_SOURCE. + +2000-05-01 Jim Meyering + + * fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING. + + * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support. + Based on a patch from Bruno Haible. + +2000-04-18 Jim Meyering + + * prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro. + (jm_PREREQ): Use it. + +2000-04-17 Jim Meyering + + Get it right :-) + * jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the + actual #define via AH_VERBATIM. Don't need separate AC_DEFINE. + Suggestion from Akim Demaille. + +2000-04-14 Jim Meyering + + * jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg form + of AC_DEFINE. Otherwise, the #ifndef in AH_VERBATIM gets clobbered. + +2000-04-13 Jim Meyering + + * jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new AH_VERBATIM + to insert required #ifndef into config.h.in. + Suggestion from Akim Demaille. + +2000-04-12 Jim Meyering + + * getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not + `AC_CHECK_HEADER' to check for locale.h. Thanks to a report from + Christian Krackowizer. + + More code moved from ../configure.in into (jm_CHECK_ALL_TYPES). + * jm-macros.m4 (_GNU_SOURCE): Define. + (AC_SYS_LARGEFILE): Require. + (AM_C_PROTOTYPES): Require. + +2000-04-05 Paul Eggert + + * largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on + IRIX if the installer said otherwise. + +2000-04-05 Jim Meyering + + Portability tweaks required for ultrix4.3. + * check-decl.m4 [!HAVE_UTMPX_H] (headers): Include . + (jm_CHECK_DECLS): Add getutent to the list of functions. + (_jm_DECL_HEADERS): Add utmpx.h. + From John David Anglin. + + * strftime.m4: Back out the 2000-04-02 change. + Instead of that change, simply undefine putenv in the test program. + +2000-04-03 Jim Meyering + + * gettext.m4: Fix typo in comment. + + * codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from + textutils/configure.in). Suggestion from Paul Eggert. + (AC_CHECK_FUNCS): Add nl_langinfo. (also from textutils/configure.in) + +2000-04-02 Paul Eggert + + * strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment + variable in the shell rather than using putenv, which isn't + portable. This avoids the configure-time inter-test dependency + on the potentially-renamed putenv function. + +2000-03-30 Paul Eggert + + * jm-macros.m4 (jm_CHECK_ALL_TYPES): Include + before checking struct stat.st_blksize, so that + HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly. + +2000-03-29 Paul Eggert + + * strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime, + since strftime.c uses HAVE_STRFTIME to decide whether to use + the underlying strftime. + +2000-03-10 Jim Meyering + + * lib-check.m4: Look for getspnam in -lgen, too. + From Marco Franzen. + +2000-02-02 Bruno Haible + + * codeset.m4: New file. + * iconv.m4: New file. + * jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV. + +2000-03-04 Jim Meyering + + * jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE, + for lib/localcharset.c. + +2000-03-03 Jim Meyering + + * regex.m4: Make sure re_compile_pattern accepts patterns like `{1'. + +2000-03-02 Jim Meyering + + * timespec.m4: Require AC_HEADER_TIME before the cache check so + the messages come out on separate lines. + + * jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS, + rather than jm_CHECK_DECLARATIONS. + * decl.m4: Remove now-unused file. + + * check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and geteuid. + +2000-02-27 Jim Meyering + + * check-decl.m4: Add getenv to the list. + +2000-02-23 Jim Meyering + + * check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it + in place of my hack. + +2000-02-10 Jim Meyering + + * nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from + gnu_nanosleep to rpl_nanosleep. + +2000-02-09 Jim Meyering + + * lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in + struct spwd, rather than in struct passwd. Reported by Gaël Quéri. + +2000-02-08 Akim Demaille + + * largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with + `[' and `]' and remove uses of `changequote'. + (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise. + (AC_SYS_LARGEFILE): Likewise. + * gettext.m4 (AM_GNU_GETTEXT): Likewise. + * strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use + of changequote. + * regex.m4 (jm_INCLUDED_REGEX): Likewise. + * readdir.m4 (jm_FUNC_READDIR): Likewise + * memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main. + * getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise. + +2000-02-05 Jim Meyering + + * jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros. + Remove explicit use of AC_HEADER_TIME. It is required by + jm_CHECK_TYPE_STRUCT_TIMESPEC. Using AC_HEADER_TIME and + `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but + in autoconf whereby the expansion of the latter ended up preceding + the expansion of its prerequisite, AC_HEADER_TIME. + Reported by Volker Borchert. + +2000-02-03 Jim Meyering + + * prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname. + +2000-02-02 Jim Meyering + + * prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no + definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/. + Reported by Eli Zaretskii. + +2000-01-31 Jim Meyering + + * check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of + functions. Add the time.h and sys/time.h headers along with the + AC_REQUIRE'ment of AC_HEADER_TIME. + +2000-01-30 Jim Meyering + + * lib-check.m4: Clean up some kludgy old shadow password tests. + + * prereq.m4 (utmp_includes): Define. + Check for ut_user and ut_name members in both struct utmpx + and struct utmp. + +2000-01-29 Jim Meyering + + * lib-check.m4: New file containing library-related checks from + fileutils and sh-utils (textutils had none). + +2000-01-28 Jim Meyering + + * perl.m4: Change format of warning message to look more like that + from the missing script. Suggestion from François Pinard. + +2000-01-25 Jim Meyering + + * timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as well + as time.h in the compile check. + * nanosleep.m4: Require AC_HEADER_TIME rather than simply using it. + Fix typo in cross-compiling case: s/yes/no/. + +2000-01-23 Jim Meyering + + * jm-macros.m4: Move df-related tests here from fileutils/configure.in + + * ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/ + (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters. + + * fsusage.m4: New file. Extracted from fileutils/configure.in. + s/space/ac_fsusage_space/. + (jm_FILE_SYSTEM_USAGE): Take two parameters. + + * ftruncate.m4: New file (derived from part of fileutils/configure.in). + * jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it. + (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT. + + * jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN): + AC_SUBST these here, rather than just in sh-util/configure.in, so + that the now-shared-by-fileutils-and-textutils lib/Makefile.am are + all the same. + (AM_FUNC_OBSTACK): Add (from fileutils/configure.in). + (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils. + (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in). + (AC_SUBST(POW_LIBM)): Likewise. + (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in. + +2000-01-22 Jim Meyering + + * jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST. + + * prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h. + + * jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils' + configure.in + (AC_CHECK_HEADERS): Likewise for sh-utils. + (AC_CHECK_HEADERS): Likewise for textutils. + Merge the three lists of headers. + + * prereq.m4 (jm_PREREQ_ADDEXT): New macro. Parts moved here + from fileutils' configure.in. + + * decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)' code. + Moved tests into their own function (_jm_DECL_HEADERS) in check-decl.m4. + + * check-decl.m4: Use #if rather than #ifdef. + Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL. + (jm_CHECK_DECLARATIONS): Add strtoul strtoull. + (_jm_DECL_HEADERS): Define new function. + (jm_CHECK_DECLARATIONS): Require it. + +2000-01-19 Jim Meyering + + * nanosleep.m4 (jm_FUNC_NANOSLEEP): Include , too. + Use AC_HEADER_TIME. Volker Borchert reported that OpenBSD-2.3/sparc + defines `struct timespec' in + + * c-bs-a.m4: Remove uses of changequote altogether. + Thanks to Akim for explaining. + +2000-01-16 Jim Meyering + + * jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV, + AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME, + jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA, + AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME. + +2000-01-16 Jim Meyering + + * c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )' + because the latter didn't work. + +2000-01-15 Jim Meyering + + * jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell. + (AC_REPLACE_FUNCS): Add memcpy and memset. + Add these, too: stime strcspn stpcpy strstr strtol strtoul. + Add strpbrk. + Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp. + +2000-01-12 Jim Meyering + + * prereq.m4 (jm_PREREQ_CANON_HOST): New macro. + (jm_PREREQ): Use it. + (jm_PREREQ_READUTMP): New macro. + (jm_PREREQ): Use it. + +2000-01-11 Paul Eggert + + Quote multibyte characters correctly. + * c-bs-a.m4: New file. + * prereq.m4 (jm_PREREQ_QUOTEARG): New macro. + (jm_PREREQ): Use it. + +2000-01-11 Paul Eggert + + * uintmax_t.m4: Port to autoconf 2.13. + +2000-01-08 Jim Meyering + + * strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro. + * jm-macros.m4 (jm_FUNC_STRERROR_R): Require it. + +2000-01-04 Jim Meyering + + * d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from + jm_STRUCT_DIRENT_D_TYPE. + * d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from + jm_STRUCT_DIRENT_D_INO. + * utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from + jm_STRUCT_UTIMBUF. + * jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/ renamings. + * utime.m4: Likewise. + + * timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro. + * jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it. + +2000-01-03 Paul Eggert + + * nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt + (for Solaris 7) and in -lposix4 (for Solaris 2.5.1). + +2000-01-02 Jim Meyering + + * search-libs.m4: Escape `$' in $3 of dnl comment. I no longer + remember if this is necessary. + +1999-12-26 Jim Meyering + + * jm-macros.m4: Use it here. + * nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro. + +1999-12-23 Jim Meyering + + * jm-macros.m4: Check for clock_gettime (moved from + fileutils/configure.in) + Check for gettimeofday. + +1999-12-20 Jim Meyering + + * strftime.m4: Remove kludge, now that I'm using the fixed + autoconf-2.14a-1999-12-20. + +1999-12-19 Jim Meyering + + * lstat-slash.m4: New file. + * jm-macros.m4: Use the new macro: + jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK. + +1999-12-07 Jim Meyering + + * perl.m4: Require that File::Compare be available, too. + Too many systems seem to lack it. + + * strftime.m4: Add checks for most of the cpp macros tested in + GNU's strftime.c. Prompted by a patch from Paul Eggert. + +1999-11-18 Paul Eggert + + * largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a + problem with the QNX 4.25 shell, which doesn't propagate exit + status of failed commands inside shell assignments. + +1999-11-17 Jim Meyering + + * gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES. + +1999-11-07 Jim Meyering + + * getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE. + +1999-11-06 Jim Meyering + + * link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro. + * jm-macros.m4 (jm_MACROS): Use it here. + +1999-11-05 Jim Meyering + + * jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from configure.in + of textutils, fileutils, and sh-utils into this one (shared between + those packages) file. + Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated + AC_STRUCT_ST_BLKSIZE. + +1999-11-03 Jim Meyering + + * ssize_t.m4: Remove file. No longer needed since the new version of + AC_CHECK_TYPE checks includes unistd.h. + * jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'. + Suggestion from Akim Demaille. + +1999-10-30 Jim Meyering + + * uintmax_t.m4: Require 2.14a. Remove backslash before backtick in + m4-quoted string. + * ls-mntd-fs.m4: Likewise. + * jm-macros.m4: Likewise. Also, use AC_TYPE_SSIZE_T instead + * jm-winsz1.m4: Likewise. + + * const.m4: Remove file, since the fix made it into the experimental + version of autoconf. + * mktime.m4: Likewise. + + * check-type.m4: Remove file, now that the latest version of + AC_CHECK_TYPE takes a third arg to specify additional #includes. + + * ssize_t.m4: New file, requires experimental version of autoconf. + * jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked + AC_CHECK_TYPE. + +1999-10-04 Jim Meyering + + * jm-macros.m4: Don't require autoconf-2.14.1. + +1999-09-22 Paul Eggert + + * largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC + 2.95.1 bug with HP-UX 10.20. + +1999-09-17 Jim Meyering + + * jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup. + Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3 + due to missing strdup (against sh-utils-2.0). + +1999-08-29 Jim Meyering + + * jm-macros.m4: Require jm_BISON. + * bison.m4: New file. + +1999-08-17 Paul Eggert + + * largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma + in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20. + +1999-08-05 Jim Meyering + + * getline.m4: Rename test file from conftestdata to conftest.data + to avoid conflicts with `conftest' on 8+3 filesystems. + Suggestion from Eli Zaretskii. + +1999-08-04 Jim Meyering + + * jm-macros.m4: Move a 4-line block of code from the configure.in of + fileutils and sh-utils (textutils's getline test was inadequate). + (AM_FUNC_GETLINE): Run this test. + (AC_CHECK_FUNCS): Check for getdelim. + Reported by Bob Proulx. + +1999-08-02 Jim Meyering + + * jm-macros.m4: Add a comment. + +1999-08-01 Jim Meyering + + * mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from m4. + +1999-08-01 Paul Eggert + + * lfs.m4: Remove this file. + * largefile.m4: New file. It contains the old contents of + lfs.m4, except that all names with prefix AC_LFS have been + changed to use the prefix AC_SYS_LARGEFILE instead, to be + compatible with future autoconf versions. Also, some minor m4 + quoting problems have been fixed. + +1999-07-16 Paul Eggert + + * ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure + that we can shift, multiply and divide unsigned long long + values; Ultrix cc can't do it. + +1999-07-14 Paul Eggert + + * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether + defines strtoumax as a macro (and not as a + function). + +1999-07-05 Paul Eggert + + * gettext.m4 (AM_WITH_NLS): Remove unnecessary lines. + Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl. + (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting, + and simplify the shell code. + +1999-07-03 Paul Eggert + + * mktime.m4: New file, which is a preview of what should appear + in the next public autoconf release. + +1999-07-20 Jim Meyering + + * jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove. + +1999-07-15 Jim Meyering + + * jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize. + +1999-05-22 Jim Meyering + + * jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr. + +1999-05-20 Jim Meyering + + * search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine. + Add a colon after each `then' in case $4 is empty. + +1999-05-16 Jim Meyering + + * search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS. + +1999-05-10 Jim Meyering + + * jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME. + + * jm-macros.m4: Require 2.14.1, since we use newly-renamed + AC_FUNC_MKTIME. + +1999-05-10 Andreas Schwab + + * jm-mktime.m4, putenv.m4: Fix typos in config.h comments. + +1999-05-04 Paul Eggert + + * lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS, + not CPPFLAGS, so that linking works correctly in IRIX. + +1999-04-30 Paul Eggert + + * jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2. + +1999-04-20 Jim Meyering + + * xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG. + AC_REPLACE xstroull if necessary. From Paul Eggert. + (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq. + +1999-04-20 Paul Eggert + + * uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long + long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro. + * jm-macros.m4 (jm_CHECK_ALL_TYPES): Require + jm_AC_TYPE_UNSIGNED_LONG_LONG. + * ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro. + + * lfs.m4: Port to AIX and HP-UX. Support cross-compilation. + +1999-04-18 Jim Meyering + + * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro. + * jm-macros.m4: Use it. + +1999-04-06 Jim Meyering + + * strftime.m4: Remove test for %f. + +1999-03-29 Jim Meyering + + * jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the + superset of the AC_TYPE_* checks in the textutils, fileutils, + and sh-utils, plus AC_TYPE_PID_T. Paul Eggert suggested adding + AC_TYPE_PID_T. + +1999-03-28 Jim Meyering + + * jm-macros.m4: Define GNU_PACKAGE here. + Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is + replaced e.g., in the *.sh files of the sh-utils. + +1999-03-20 Jim Meyering + + * jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/. + * regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX. + Don't depend on AM_GLIBC. Suggestions from Alain Magloire. + +1999-03-19 Jim Meyering + + * jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro. + +1999-03-12 Jim Meyering + + * jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED. + +1999-03-07 Jim Meyering + + * jm-glibc-io.m4: Use only those *_unlocked macros that are declared. + +1999-02-17 Jim Meyering + + * gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of brackets + in macro definition. From Eli Zaretskii and Alain Magloire. + +1999-02-07 Jim Meyering + + * group-member.m4: New file -- extracted from sh-utils' configure.in. + + 1999-02-05 Eli Zaretskii + * gettext.m4: Support DOS-style d:/foo/bar absolute file names. + +1999-02-06 Jim Meyering + + * chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS. + * fnmatch.m4: Likewise. + * getgroups.m4: Likewise. + * lstat.m4: Likewise. + * malloc.m4: Likewise. + * putenv.m4: Likewise. + * realloc.m4: Likewise. + * regex.m4: Likewise. + * stat.m4: Likewise. + * strftime.m4: Likewise. + Suggestion from Alain Magloire. + + * chown.m4: Use `.$ac_objext', not `.o'. + * fnmatch.m4: Likewise. + * getgroups.m4: Likewise. + * getline.m4: Likewise. + * lstat.m4: Likewise. + * malloc.m4: Likewise. + * memcmp.m4: Likewise. + * putenv.m4: Likewise. + * realloc.m4: Likewise. + * regex.m4: Likewise. + * stat.m4: Likewise. + * strftime.m4: Likewise. + Suggestion from Alain Magloire. + + * jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires + an argument. + + * regex.m4: Add a run-time Test for proper operation of + re_compile_pattern. + +1999-01-31 Jim Meyering + + * getloadavg.m4: Check for locale.h and the function, setlocale. + +1999-01-30 Jim Meyering + + * check-type.m4: Use 3-arg form of AC_DEFINE. + + * jm-mktime.m4: Make this a wrapper around the official AM_FUNC_MKTIME + rather than my private copy, now that the official one is up to date. + * mktime.m4: Remove file. + + * getloadavg.m4: Use 3-arg form of AC_DEFINE. + * uptime.m4: Likewise. + * uintmax_t.m4: Likewise. + +1999-01-28 Jim Meyering + + * jm-macros.m4: Use jm_AFS. + * afs.m4: New file (from fileutils' configure.in). + + * assert.m4: Use the 3-argument forms of AC_DEFINE* macros. + * chown.m4: Likewise. + * d-ino.m4: Likewise. + * d-type.m4: Likewise. + * fnmatch.m4: Likewise. + * getgroups.m4: Likewise. + * gettext.m4: Likewise. + * jm-mktime.m4: Likewise. + * jm-winsz2.m4: Likewise. + * lcmessage.m4: Likewise. + * ls-mntd-fs.m4: Likewise. + * malloc.m4: Likewise. + * memcmp.m4: Likewise. + * putenv.m4: Likewise. + * realloc.m4: Likewise. + * st_mtim.m4: Likewise. + * strftime.m4: Likewise. + +1999-01-16 Jim Meyering + + * jm-macros.m4 (ARGMATCH_DIE): Define. + (ARGMATCH_DIE_DECL): Define. + +1999-01-12 Jim Meyering + + * Makefile.am.in: Rewrite to avoid using fmt. + Reported by Lars Hecking. + +1999-01-10 Jim Meyering + + * fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my + gross kludge. + * inttypes_h.m4: Likewise. + * lstat.m4: Likewise. + * malloc.m4: Likewise. + * readdir.m4: Likewise. + * realloc.m4: Likewise. + * st_dm_mode.m4: Likewise. + * stat.m4: Likewise. + * utimbuf.m4: Likewise. + * utimes.m4: Likewise. + + * check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the + AC_CHECK_FUNCS hack. Now, it's still a hack, but at least the + comments in config.h.in are meaningful. + + * jm-macros.m4: Require autoconf-2.13 here. + + * regex.m4: By default, don't use the included regex.c on systems + with glibc 2. Suggestion from Uli Drepper. + +1999-01-02 Jim Meyering + + * jm-macros.m4: Replace strcasecmp and strncasecmp. + +1998-12-18 Jim Meyering + + * Makefile.am.in (Makefile.am): Simplify rule. + Based on a suggestion from Lars Hecking. + +1998-11-16 Jim Meyering + + * lfs.m4: Double-quote the `uname...` expression. + +1998-11-16 Paul Eggert + + * lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11. + +1998-11-14 Jim Meyering + + * lstat.m4: Correct comment. POSIX does not permit it to succeed. + * stat.m4: Likewise. + +1998-11-03 Jim Meyering + + * stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG. + * lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG. + +1998-10-18 Jim Meyering + + * check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro. + +1998-10-17 Jim Meyering + + * decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to + include, though we still hard-code the `require'-like AC_CHECK_HEADERS + calls for those previously hard-coded headers. Instead, take a new + parameter. + (jm_CHECK_DECLARATIONS): Reflect interface change. + * check-decl.m4 (jm_CHECK_DECLS): Likewise. + (jm_CHECK_DECL_LOCALTIME_R): New macro. + + * mktime.m4: Test for spring-forward gap before long-running test. + +1998-10-14 Jim Meyering + + * mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0" + instead of "TZ=America/Vancouver". From Paul Eggert. + +1998-10-11 Jim Meyering + + * mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro. + This adds a test for a recently added compatibility fix for mktime.c. + * jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME. + +1998-09-27 Jim Meyering + + * jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH. + + * fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro. Extracted from + ../configure.in, including a change from Gordon Matzigkeit to allow + cross-compiling for the Hurd. + + * glibc.m4: New file/macro to test for the GNU C Library + versions 1 and 2. From Gordon Matzigkeit. + Indent. + +1998-09-21 Jim Meyering + + * chown.m4: Declare locals: before, after. From Andries Brouwer. + +1998-08-18 Paul Eggert + + Port nanosecond-resolution times to UnixWare 2.1.2 and + pedantic Solaris 2.6. + + * st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from + AC_STRUCT_ST_MTIM. + * st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): + Generate name of ns member, instead of just 1 or undef. + Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode. + +1998-08-15 Jim Meyering + + * ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file. + * check-type.m4: New file. Replacement for AC_CHECK_TYPE. + * jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int) + instead of jm_TYPE_SSIZE_T. + +1998-08-12 Jim Meyering + + * st_dm_mode.m4: New file. From Johan Danielsson. + +1998-08-02 Jim Meyering + + * st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM + in acconfig.h manually. + +1998-07-31 Paul Eggert + + * st_mtim.m4: New file. + +1998-07-28 Jim Meyering + + * utimes.m4: Undef stat. + +1998-07-25 Jim Meyering + + * utime.m4 (jm_FUNC_UTIME): New file and macro. + * utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro. + +1998-07-09 Manfred Hollstein + + * chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the + uid and gid actually remain unchanged. + +1998-07-07 Jim Meyering + + * jm-glibc-io.m4: Remove fclose_unlocked. + +1998-07-04 Jim Meyering + + * regex.m4: Use syscmd, ifelse, and sysval. Mainly as an exercise + to prove that this macro can be used in packages without regex.c. + +1998-07-02 Andreas Schwab + + * gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if + is to be used. + +1998-07-03 Jim Meyering + + * gettext.m4: Add -lintl if it's found to be necessary. + + * gettext.m4: New file -- from gettext-0.10.35. + * lcmessage.m4: Likewise. + * progtest.m4: Likewise. + + * regex.m4 (jm_WITH_REGEX): New file and macro. + * jm-macros.m4: Require the new macro. + +1998-06-29 Jim Meyering + + * fstypename.m4: Include sys/param.h. NetBSD 1.3.1 requires this + for the definition of NGROUPS (used in a system header included + by sys/mount.h). + +1998-06-28 Jim Meyering + + * ls-mntd-fs.m4: New file. + * fstypename.m4: New file. + + * jm-macros.m4: Require the new macro. + * jm-glibc-io.m4: New file. + +1998-05-19 Jim Meyering + + * jm-macros.m4: Add jm_FUNC_LCHOWN. + * lchown.m4: New file. + + * Makefile.am.in: New file. + * Makefile.am (Makefile.am): Depend on Makefile.am.in. + +1998-05-14 Jim Meyering + + * Makefile.am (EXTRA_DIST): Add them. + * jm-macros.m4: New file. + * utimbuf.m4: New file. + +1998-05-12 Jim Meyering + + * Makefile.am (EXTRA_DIST): Add isc-posix.m4. + +1998-05-11 Jim Meyering + + * isc-posix.m4: New file. + +1998-05-10 Jim Meyering + + * jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date. + +1998-05-09 Jim Meyering + + * Makefile.am (EXTRA_DIST): Add ssize_t.m4. + (EXTRA_DIST): Remove mktime.m4, now that the new version is included + with automake. + + * ssize_t.m4: New file. + * mktime.m4: Remove file -- the new automake has this now. + +1998-04-26 Jim Meyering + + * assert.m4: New file. + * Makefile.am (EXTRA_DIST): Add assert.m4. + +1998-04-05 Jim Meyering + + * prereq.m4 (jm_PREREQ_REGEX): New macro. + (jm_PREREQ): Use it here. + +1998-03-23 Jim Meyering + + * inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H + in acconfig.h. + +1998-03-15 Jim Meyering + + * prereq.m4: New file. + * error.m4: New file. + * Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4. + +1998-02-07 Jim Meyering + + * getline.m4: Don't set am_cv_func_working_getline before the + cache-check for the same variable -- that defeated the purpose of + the test; the test program was never run. This was a problem only + on systems with losing getline functions -- HP-UX 10.20 is one. + Reported by Bjorn Helgaas. + +1998-02-06 Jim Meyering + + * Makefile.am (EXTRA_DIST): Add perl.m4. + +1998-01-10 Jim Meyering + + * Makefile.am (EXTRA_DIST): Add const.m4. + + * const.m4: New file. Use an initializer in this declaration + typedef int charset[2]; const charset x; + Reported by Bob Glickstein. + +1997-12-21 Jim Meyering + + * chown.m4: Fix reversed types on -1 args to chown. + From Kaveh Ghazi. + +1997-12-14 Jim Meyering + + * check-decl.m4: s/DECLARATION_/DECL_/g. + Add lseek and memchr. + + * decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g. + T.E.Dickey said that some older preprocessors + have a 20-character limit on names. + +1997-11-30 Jim Meyering + + * inttypes_h.m4: New file. + * uintmax_t.m4: New file. + * Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4. diff --git a/src/apps/bin/coreutils-5.0/m4/Makefile b/src/apps/bin/coreutils-5.0/m4/Makefile new file mode 100644 index 0000000000..63e7cd7b55 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/Makefile @@ -0,0 +1,387 @@ +# Makefile.in generated by automake 1.7.3 from Makefile.am. +# m4/Makefile. Generated from Makefile.in by configure. + +# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +# Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +srcdir = . +top_srcdir = .. + +pkgdatadir = $(datadir)/coreutils +pkglibdir = $(libdir)/coreutils +pkgincludedir = $(includedir)/coreutils +top_builddir = .. + +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +INSTALL = /bin/install -c +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +host_triplet = i586-pc-beos +ACLOCAL = ${SHELL} /boot/home/Development/current/src/apps/bin/coreutils-5.0/config/missing --run aclocal-1.7 +ALLOCA = +AMDEP_FALSE = # +AMDEP_TRUE = +AMTAR = ${SHELL} /boot/home/Development/current/src/apps/bin/coreutils-5.0/config/missing --run tar +AUTOCONF = ${SHELL} /boot/home/Development/current/src/apps/bin/coreutils-5.0/config/missing --run autoconf +AUTOHEADER = ${SHELL} /boot/home/Development/current/src/apps/bin/coreutils-5.0/config/missing --run autoheader +AUTOMAKE = ${SHELL} /boot/home/Development/current/src/apps/bin/coreutils-5.0/config/missing --run automake-1.7 +AWK = gawk +CC = gcc +CCDEPMODE = depmode=gcc +CFLAGS = -g -O2 +CPP = gcc -E +CPPFLAGS = +CYGPATH_W = echo +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DF_PROG = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = grep -E +EXEEXT = +FESETROUND_LIBM = +GETLOADAVG_LIBS = +GLIBC21 = no +GMSGFMT = : +GNU_PACKAGE = GNU coreutils +HELP2MAN = ${SHELL} /boot/home/Development/current/src/apps/bin/coreutils-5.0/config/missing --run help2man +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s +INTLLIBS = +KMEM_GROUP = +LDFLAGS = +LIBICONV = +LIBINTL = +LIBOBJS = fileblocks$U.o mkdir$U.o fnmatch$U.o strnlen$U.o ftw$U.o tsearch$U.o lchown$U.o chown$U.o mktime$U.o nanosleep$U.o group-member$U.o putenv$U.o error$U.o __fpending$U.o rename$U.o getcwd$U.o canonicalize$U.o regex$U.o getloadavg$U.o getusershell$U.o sig2str$U.o euidaccess$U.o rpmatch$U.o strndup$U.o strverscmp$U.o getpass$U.o memrchr$U.o fchdir-stub$U.o +LIBS = +LIB_CLOCK_GETTIME = +LIB_CRYPT = +LIB_NANOSLEEP = +LN_S = ln -s +LTLIBICONV = +LTLIBINTL = +LTLIBOBJS = fileblocks$U.lo mkdir$U.lo fnmatch$U.lo strnlen$U.lo ftw$U.lo tsearch$U.lo lchown$U.lo chown$U.lo mktime$U.lo nanosleep$U.lo group-member$U.lo putenv$U.lo error$U.lo __fpending$U.lo rename$U.lo getcwd$U.lo canonicalize$U.lo regex$U.lo getloadavg$U.lo getusershell$U.lo sig2str$U.lo euidaccess$U.lo rpmatch$U.lo strndup$U.lo strverscmp$U.lo getpass$U.lo memrchr$U.lo fchdir-stub$U.lo +MAKEINFO = ${SHELL} /boot/home/Development/current/src/apps/bin/coreutils-5.0/config/missing --run makeinfo +MAN = uname.1 stty.1 +MKINSTALLDIRS = config/mkinstalldirs +MSGFMT = : +MSGMERGE = : +NEED_SETGID = false +OBJEXT = o +OPTIONAL_BIN_PROGS = uname$(EXEEXT) stty$(EXEEXT) +OPTIONAL_BIN_ZCRIPTS = +PACKAGE = coreutils +PACKAGE_BUGREPORT = bug-coreutils@gnu.org +PACKAGE_NAME = GNU coreutils +PACKAGE_STRING = GNU coreutils 5.0 +PACKAGE_TARNAME = coreutils +PACKAGE_VERSION = 5.0 +PATH_SEPARATOR = : +PERL = perl +POSUB = +POW_LIB = +RANLIB = ranlib +SEQ_LIBM = +SET_MAKE = +SHELL = /bin/sh +SQRT_LIBM = +STRIP = +U = +USE_NLS = no +VERSION = 5.0 +XGETTEXT = : +YACC = bison -y +ac_ct_CC = gcc +ac_ct_RANLIB = ranlib +ac_ct_STRIP = +am__fastdepCC_FALSE = +am__fastdepCC_TRUE = # +am__include = include +am__leading_dot = . +am__quote = +bindir = ${exec_prefix}/bin +build = i586-pc-beos +build_alias = +build_cpu = i586 +build_os = beos +build_vendor = pc +datadir = ${prefix}/share +exec_prefix = ${prefix} +host = i586-pc-beos +host_alias = +host_cpu = i586 +host_os = beos +host_vendor = pc +includedir = ${prefix}/include +infodir = ${prefix}/info +install_sh = /boot/home/Development/current/src/apps/bin/coreutils-5.0/config/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localstatedir = ${prefix}/var +mandir = ${prefix}/man +oldincludedir = /usr/include +prefix = /usr/local +program_transform_name = s,x,x, +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +sysconfdir = ${prefix}/etc +target_alias = + +EXTRA_DIST = \ + README Makefile.am.in \ +acl.m4 \ +afs.m4 \ +assert.m4 \ +bison.m4 \ +boottime.m4 \ +c-stack.m4 \ +canonicalize.m4 \ +check-decl.m4 \ +chown.m4 \ +codeset.m4 \ +d-ino.m4 \ +d-type.m4 \ +dirfd.m4 \ +dos.m4 \ +error.m4 \ +fpending.m4 \ +fstypename.m4 \ +fsusage.m4 \ +ftruncate.m4 \ +ftw.m4 \ +getcwd-path-max.m4 \ +getcwd.m4 \ +getgroups.m4 \ +getline.m4 \ +gettext.m4 \ +gettimeofday.m4 \ +glibc.m4 \ +glibc21.m4 \ +group-member.m4 \ +host-os.m4 \ +iconv.m4 \ +intdiv0.m4 \ +inttypes-pri.m4 \ +inttypes.m4 \ +isc-posix.m4 \ +jm-glibc-io.m4 \ +jm-macros.m4 \ +jm-mktime.m4 \ +jm-winsz1.m4 \ +jm-winsz2.m4 \ +lchown.m4 \ +lcmessage.m4 \ +lib-check.m4 \ +lib-ld.m4 \ +lib-link.m4 \ +lib-prefix.m4 \ +link-follow.m4 \ +longlong.m4 \ +ls-mntd-fs.m4 \ +lstat.m4 \ +mbrtowc.m4 \ +mbswidth.m4 \ +memcmp.m4 \ +mkdir-slash.m4 \ +mkstemp.m4 \ +nanosleep.m4 \ +onceonly.m4 \ +open-max.m4 \ +perl.m4 \ +prereq.m4 \ +progtest.m4 \ +putenv.m4 \ +regex.m4 \ +rename.m4 \ +restrict.m4 \ +rmdir-errno.m4 \ +search-libs.m4 \ +st_dm_mode.m4 \ +st_mtim.m4 \ +stat.m4 \ +stdbool.m4 \ +strftime.m4 \ +timespec.m4 \ +unlink-busy.m4 \ +uptime.m4 \ +utimbuf.m4 \ +utime.m4 \ +utimes.m4 \ +xstrtoimax.m4 \ +xstrtoumax.m4 + +subdir = m4 +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +DIST_SOURCES = +DIST_COMMON = README ChangeLog Makefile.am Makefile.in +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnits m4/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +uninstall-info-am: +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + +top_distdir = .. +distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkinstalldirs) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ + if test -d $$d/$$file; then \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile + +installdirs: + +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -rm -f Makefile $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +info: info-am + +info-am: + +install-data-am: + +install-exec-am: + +install-info: install-info-am + +install-man: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-info-am + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am info info-am install \ + install-am install-data install-data-am install-exec \ + install-exec-am install-info install-info-am install-man \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am \ + uninstall-info-am + + +Makefile.am: Makefile.am.in + rm -f $@ $@t + sed -n '1,/^##m4-files-begin/p' $< > $@t + (((echo EXTRA_DIST =; \ + echo " README Makefile.am.in" \ + ) | tr '\012' @); \ + (echo *.m4|tr ' ' @) ) \ + |sed 's/@$$/%/;s/@/ \\@/g' |tr @% '\012\012' \ + >> $@t + sed -n '/^##m4-files-end/,$$p' $< >> $@t + chmod a-w $@t + mv $@t $@ +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/src/apps/bin/coreutils-5.0/m4/Makefile.am b/src/apps/bin/coreutils-5.0/m4/Makefile.am new file mode 100644 index 0000000000..756e8f0235 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/Makefile.am @@ -0,0 +1,99 @@ +## Process this file with automake to produce Makefile.in -*-Makefile-*- + +##m4-files-begin +EXTRA_DIST = \ + README Makefile.am.in \ +acl.m4 \ +afs.m4 \ +assert.m4 \ +bison.m4 \ +boottime.m4 \ +c-stack.m4 \ +canonicalize.m4 \ +check-decl.m4 \ +chown.m4 \ +codeset.m4 \ +d-ino.m4 \ +d-type.m4 \ +dirfd.m4 \ +dos.m4 \ +error.m4 \ +fpending.m4 \ +fstypename.m4 \ +fsusage.m4 \ +ftruncate.m4 \ +ftw.m4 \ +getcwd-path-max.m4 \ +getcwd.m4 \ +getgroups.m4 \ +getline.m4 \ +gettext.m4 \ +gettimeofday.m4 \ +glibc.m4 \ +glibc21.m4 \ +group-member.m4 \ +host-os.m4 \ +iconv.m4 \ +intdiv0.m4 \ +inttypes-pri.m4 \ +inttypes.m4 \ +isc-posix.m4 \ +jm-glibc-io.m4 \ +jm-macros.m4 \ +jm-mktime.m4 \ +jm-winsz1.m4 \ +jm-winsz2.m4 \ +lchown.m4 \ +lcmessage.m4 \ +lib-check.m4 \ +lib-ld.m4 \ +lib-link.m4 \ +lib-prefix.m4 \ +link-follow.m4 \ +longlong.m4 \ +ls-mntd-fs.m4 \ +lstat.m4 \ +mbrtowc.m4 \ +mbswidth.m4 \ +memcmp.m4 \ +mkdir-slash.m4 \ +mkstemp.m4 \ +nanosleep.m4 \ +onceonly.m4 \ +open-max.m4 \ +perl.m4 \ +prereq.m4 \ +progtest.m4 \ +putenv.m4 \ +regex.m4 \ +rename.m4 \ +restrict.m4 \ +rmdir-errno.m4 \ +search-libs.m4 \ +st_dm_mode.m4 \ +st_mtim.m4 \ +stat.m4 \ +stdbool.m4 \ +strftime.m4 \ +timespec.m4 \ +unlink-busy.m4 \ +uptime.m4 \ +utimbuf.m4 \ +utime.m4 \ +utimes.m4 \ +xstrtoimax.m4 \ +xstrtoumax.m4 +##m4-files-end + +Makefile.am: Makefile.am.in + rm -f $@ $@t + sed -n '1,/^##m4-files-begin/p' $< > $@t + (((echo EXTRA_DIST =; \ + echo " README Makefile.am.in" \ + ) | tr '\012' @); \ + (echo *.m4|tr ' ' @) ) \ + |sed 's/@$$/%/;s/@/ \\@/g' |tr @% '\012\012' \ + >> $@t + sed -n '/^##m4-files-end/,$$p' $< >> $@t + chmod a-w $@t + mv $@t $@ diff --git a/src/apps/bin/coreutils-5.0/m4/Makefile.am.in b/src/apps/bin/coreutils-5.0/m4/Makefile.am.in new file mode 100644 index 0000000000..eddeffecbd --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/Makefile.am.in @@ -0,0 +1,17 @@ +## Process this file with automake to produce Makefile.in -*-Makefile-*- + +##m4-files-begin +##m4-files-end + +Makefile.am: Makefile.am.in + rm -f $@ $@t + sed -n '1,/^##m4-files-begin/p' $< > $@t + (((echo EXTRA_DIST =; \ + echo " README Makefile.am.in" \ + ) | tr '\012' @); \ + (echo *.m4|tr ' ' @) ) \ + |sed 's/@$$/%/;s/@/ \\@/g' |tr @% '\012\012' \ + >> $@t + sed -n '/^##m4-files-end/,$$p' $< >> $@t + chmod a-w $@t + mv $@t $@ diff --git a/src/apps/bin/coreutils-5.0/m4/Makefile.in b/src/apps/bin/coreutils-5.0/m4/Makefile.in new file mode 100644 index 0000000000..7069262327 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/Makefile.in @@ -0,0 +1,387 @@ +# Makefile.in generated by automake 1.7.3 from Makefile.am. +# @configure_input@ + +# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +# Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +top_builddir = .. + +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +INSTALL = @INSTALL@ +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +host_triplet = @host@ +ACLOCAL = @ACLOCAL@ +ALLOCA = @ALLOCA@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DF_PROG = @DF_PROG@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FESETROUND_LIBM = @FESETROUND_LIBM@ +GETLOADAVG_LIBS = @GETLOADAVG_LIBS@ +GLIBC21 = @GLIBC21@ +GMSGFMT = @GMSGFMT@ +GNU_PACKAGE = @GNU_PACKAGE@ +HELP2MAN = @HELP2MAN@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INTLLIBS = @INTLLIBS@ +KMEM_GROUP = @KMEM_GROUP@ +LDFLAGS = @LDFLAGS@ +LIBICONV = @LIBICONV@ +LIBINTL = @LIBINTL@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIB_CLOCK_GETTIME = @LIB_CLOCK_GETTIME@ +LIB_CRYPT = @LIB_CRYPT@ +LIB_NANOSLEEP = @LIB_NANOSLEEP@ +LN_S = @LN_S@ +LTLIBICONV = @LTLIBICONV@ +LTLIBINTL = @LTLIBINTL@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MAN = @MAN@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGMERGE = @MSGMERGE@ +NEED_SETGID = @NEED_SETGID@ +OBJEXT = @OBJEXT@ +OPTIONAL_BIN_PROGS = @OPTIONAL_BIN_PROGS@ +OPTIONAL_BIN_ZCRIPTS = @OPTIONAL_BIN_ZCRIPTS@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PERL = @PERL@ +POSUB = @POSUB@ +POW_LIB = @POW_LIB@ +RANLIB = @RANLIB@ +SEQ_LIBM = @SEQ_LIBM@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +SQRT_LIBM = @SQRT_LIBM@ +STRIP = @STRIP@ +U = @U@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +YACC = @YACC@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_RANLIB = @ac_ct_RANLIB@ +ac_ct_STRIP = @ac_ct_STRIP@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +datadir = @datadir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +oldincludedir = @oldincludedir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ + +EXTRA_DIST = \ + README Makefile.am.in \ +acl.m4 \ +afs.m4 \ +assert.m4 \ +bison.m4 \ +boottime.m4 \ +c-stack.m4 \ +canonicalize.m4 \ +check-decl.m4 \ +chown.m4 \ +codeset.m4 \ +d-ino.m4 \ +d-type.m4 \ +dirfd.m4 \ +dos.m4 \ +error.m4 \ +fpending.m4 \ +fstypename.m4 \ +fsusage.m4 \ +ftruncate.m4 \ +ftw.m4 \ +getcwd-path-max.m4 \ +getcwd.m4 \ +getgroups.m4 \ +getline.m4 \ +gettext.m4 \ +gettimeofday.m4 \ +glibc.m4 \ +glibc21.m4 \ +group-member.m4 \ +host-os.m4 \ +iconv.m4 \ +intdiv0.m4 \ +inttypes-pri.m4 \ +inttypes.m4 \ +isc-posix.m4 \ +jm-glibc-io.m4 \ +jm-macros.m4 \ +jm-mktime.m4 \ +jm-winsz1.m4 \ +jm-winsz2.m4 \ +lchown.m4 \ +lcmessage.m4 \ +lib-check.m4 \ +lib-ld.m4 \ +lib-link.m4 \ +lib-prefix.m4 \ +link-follow.m4 \ +longlong.m4 \ +ls-mntd-fs.m4 \ +lstat.m4 \ +mbrtowc.m4 \ +mbswidth.m4 \ +memcmp.m4 \ +mkdir-slash.m4 \ +mkstemp.m4 \ +nanosleep.m4 \ +onceonly.m4 \ +open-max.m4 \ +perl.m4 \ +prereq.m4 \ +progtest.m4 \ +putenv.m4 \ +regex.m4 \ +rename.m4 \ +restrict.m4 \ +rmdir-errno.m4 \ +search-libs.m4 \ +st_dm_mode.m4 \ +st_mtim.m4 \ +stat.m4 \ +stdbool.m4 \ +strftime.m4 \ +timespec.m4 \ +unlink-busy.m4 \ +uptime.m4 \ +utimbuf.m4 \ +utime.m4 \ +utimes.m4 \ +xstrtoimax.m4 \ +xstrtoumax.m4 + +subdir = m4 +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +DIST_SOURCES = +DIST_COMMON = README ChangeLog Makefile.am Makefile.in +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnits m4/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +uninstall-info-am: +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + +top_distdir = .. +distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkinstalldirs) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ + if test -d $$d/$$file; then \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile + +installdirs: + +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -rm -f Makefile $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +info: info-am + +info-am: + +install-data-am: + +install-exec-am: + +install-info: install-info-am + +install-man: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-info-am + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am info info-am install \ + install-am install-data install-data-am install-exec \ + install-exec-am install-info install-info-am install-man \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am \ + uninstall-info-am + + +Makefile.am: Makefile.am.in + rm -f $@ $@t + sed -n '1,/^##m4-files-begin/p' $< > $@t + (((echo EXTRA_DIST =; \ + echo " README Makefile.am.in" \ + ) | tr '\012' @); \ + (echo *.m4|tr ' ' @) ) \ + |sed 's/@$$/%/;s/@/ \\@/g' |tr @% '\012\012' \ + >> $@t + sed -n '/^##m4-files-end/,$$p' $< >> $@t + chmod a-w $@t + mv $@t $@ +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/src/apps/bin/coreutils-5.0/m4/README b/src/apps/bin/coreutils-5.0/m4/README new file mode 100644 index 0000000000..3a38ae8b95 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/README @@ -0,0 +1,10 @@ +The files in this directory are shared between the fileutils, sh-utils, +and textutils packages. + +These files are used by a program called aclocal (part of the GNU automake +package). aclocal uses these files to create aclocal.m4 which is in turn +used by autoconf to create the configure script at the top level in +this distribution. + +The Makefile.am file in this directory is automatically generated +from the template file, Makefile.am.in. diff --git a/src/apps/bin/coreutils-5.0/m4/acl.m4 b/src/apps/bin/coreutils-5.0/m4/acl.m4 new file mode 100644 index 0000000000..f5ffa3d276 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/acl.m4 @@ -0,0 +1,23 @@ +# acl.m4 - check for access control list (ACL) primitives + +# Copyright (C) 2002 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 2, 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, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + +# Written by Paul Eggert. + +AC_DEFUN([AC_FUNC_ACL], + [AC_CHECK_HEADERS(sys/acl.h) + AC_CHECK_FUNCS(acl)]) diff --git a/src/apps/bin/coreutils-5.0/m4/afs.m4 b/src/apps/bin/coreutils-5.0/m4/afs.m4 new file mode 100644 index 0000000000..9e7d773161 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/afs.m4 @@ -0,0 +1,13 @@ +#serial 5 + +AC_DEFUN([jm_AFS], + [ + AC_MSG_CHECKING(for AFS) + if test -d /afs; then + AC_DEFINE(AFS, 1, [Define if you have the Andrew File System.]) + ac_result=yes + else + ac_result=no + fi + AC_MSG_RESULT($ac_result) + ]) diff --git a/src/apps/bin/coreutils-5.0/m4/assert.m4 b/src/apps/bin/coreutils-5.0/m4/assert.m4 new file mode 100644 index 0000000000..8ab60b1bdf --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/assert.m4 @@ -0,0 +1,13 @@ +#serial 3 +dnl based on code from Eleftherios Gkioulekas + +AC_DEFUN([jm_ASSERT], +[ + AC_MSG_CHECKING(whether to enable assertions) + AC_ARG_ENABLE(assert, + [ --disable-assert turn off assertions], + [ AC_MSG_RESULT(no) + AC_DEFINE(NDEBUG,1,[Define to 1 if assertions should be disabled.]) ], + [ AC_MSG_RESULT(yes) ] + ) +]) diff --git a/src/apps/bin/coreutils-5.0/m4/bison.m4 b/src/apps/bin/coreutils-5.0/m4/bison.m4 new file mode 100644 index 0000000000..228ae4c5a6 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/bison.m4 @@ -0,0 +1,8 @@ +#serial 2 + +AC_DEFUN([jm_BISON], +[ + # getdate.y works with bison only. + : ${YACC='bison -y'} + AC_SUBST(YACC) +]) diff --git a/src/apps/bin/coreutils-5.0/m4/boottime.m4 b/src/apps/bin/coreutils-5.0/m4/boottime.m4 new file mode 100644 index 0000000000..e4f405483b --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/boottime.m4 @@ -0,0 +1,37 @@ +# Determine whether this system has infrastructure for obtaining the boot time. + +# GNULIB_BOOT_TIME([ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]]) +* ---------------------------------------------------------- +AC_DEFUN([GNULIB_BOOT_TIME], +[ + AC_CHECK_FUNCS(sysctl) + AC_CHECK_HEADERS(sys/sysctl.h) + AC_CACHE_CHECK( + [whether we can get the system boot time], + [gnulib_cv_have_boot_time], + [ + AC_COMPILE_IFELSE( + [AC_LANG_PROGRAM( +[AC_INCLUDES_DEFAULT +#if HAVE_SYSCTL && HAVE_SYS_SYSCTL_H +# include /* needed for OpenBSD 3.0 */ +# include +#endif +#ifdef HAVE_UTMPX_H +# include +#else +# include +#endif +], +[[ +#if defined BOOT_TIME || (defined CTL_KERN && defined KERN_BOOTTIME) +/* your system *does* have the infrastructure to determine boot time */ +#else +please_tell_us_how_to_determine_boot_time_on_your_system +#endif +]])], + gnulib_cv_have_boot_time=yes, + gnulib_cv_have_boot_time=no) + ]) + AS_IF([test $gnulib_cv_have_boot_time = yes], [$1], [$2]) +]) diff --git a/src/apps/bin/coreutils-5.0/m4/c-stack.m4 b/src/apps/bin/coreutils-5.0/m4/c-stack.m4 new file mode 100644 index 0000000000..666a8ee06e --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/c-stack.m4 @@ -0,0 +1,153 @@ +# Check prerequisites for compiling lib/c-stack.c. + +# Copyright (C) 2002, 2003 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 2, 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, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA +# 02111-1307, USA. + +# Written by Paul Eggert. + +AC_DEFUN([AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC], + [# for STACK_DIRECTION + AC_REQUIRE([AC_FUNC_ALLOCA]) + AC_CHECK_FUNCS(setrlimit) + + AC_CACHE_CHECK([for working C stack overflow detection], + ac_cv_sys_xsi_stack_overflow_heuristic, + [AC_TRY_RUN( + [ + #include + #include + #include + #if HAVE_SETRLIMIT + # include + # include + # include + #endif + + static union + { + char buffer[SIGSTKSZ]; + long double ld; + long u; + void *p; + } alternate_signal_stack; + + #if STACK_DIRECTION + # define find_stack_direction(ptr) STACK_DIRECTION + #else + static int + find_stack_direction (char const *addr) + { + char dummy; + return (! addr ? find_stack_direction (&dummy) + : addr < &dummy ? 1 : -1); + } + #endif + + static void + segv_handler (int signo, siginfo_t *info, void *context) + { + if (0 < info->si_code) + { + ucontext_t const *user_context = context; + char const *stack_min = user_context->uc_stack.ss_sp; + size_t stack_size = user_context->uc_stack.ss_size; + char const *faulting_address = info->si_addr; + size_t s = faulting_address - stack_min; + size_t page_size = sysconf (_SC_PAGESIZE); + if (find_stack_direction (0) < 0) + s += page_size; + if (s < stack_size + page_size) + _exit (0); + } + + _exit (1); + } + + static int + c_stack_action (void) + { + stack_t st; + struct sigaction act; + int r; + + st.ss_flags = 0; + st.ss_sp = alternate_signal_stack.buffer; + st.ss_size = sizeof alternate_signal_stack.buffer; + r = sigaltstack (&st, 0); + if (r != 0) + return r; + + sigemptyset (&act.sa_mask); + act.sa_flags = SA_NODEFER | SA_ONSTACK | SA_RESETHAND | SA_SIGINFO; + act.sa_sigaction = segv_handler; + return sigaction (SIGSEGV, &act, 0); + } + + static int + recurse (char *p) + { + char array[500]; + array[0] = 1; + return *p + recurse (array); + } + + int + main (void) + { + #if HAVE_SETRLIMIT && defined RLIMIT_STACK + /* Before starting the endless recursion, try to be friendly + to the user's machine. On some Linux 2.2.x systems, there + is no stack limit for user processes at all. We don't want + to kill such systems. */ + struct rlimit rl; + rl.rlim_cur = rl.rlim_max = 0x100000; /* 1 MB */ + setrlimit (RLIMIT_STACK, &rl); + #endif + + c_stack_action (); + return recurse ("\1"); + } + ], + [ac_cv_sys_xsi_stack_overflow_heuristic=yes], + [ac_cv_sys_xsi_stack_overflow_heuristic=no], + [ac_cv_sys_xsi_stack_overflow_heuristic=cross-compiling])]) + + if test $ac_cv_sys_xsi_stack_overflow_heuristic = yes; then + AC_DEFINE(HAVE_XSI_STACK_OVERFLOW_HEURISTIC, 1, + [Define to 1 if extending the stack slightly past the limit causes + a SIGSEGV, and an alternate stack can be established with sigaltstack, + and the signal handler is passed a context that specifies the + run time stack. This behavior is defined by POSIX 1003.1-2001 + with the X/Open System Interface (XSI) option + and is a standardized way to implement a SEGV-based stack + overflow detection heuristic.]) + fi]) + + +AC_DEFUN([jm_PREREQ_C_STACK], + [AC_REQUIRE([AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC]) + + # for STACK_DIRECTION + AC_REQUIRE([AC_FUNC_ALLOCA]) + + AC_CHECK_FUNCS(getcontext sigaltstack) + AC_CHECK_DECLS([getcontext], , , [#include ]) + AC_CHECK_DECLS([sigaltstack], , , [#include ]) + + AC_CHECK_HEADERS(sys/resource.h ucontext.h unistd.h) + + AC_CHECK_TYPES([stack_t], , , [#include ])]) diff --git a/src/apps/bin/coreutils-5.0/m4/canonicalize.m4 b/src/apps/bin/coreutils-5.0/m4/canonicalize.m4 new file mode 100644 index 0000000000..7e6276c5d5 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/canonicalize.m4 @@ -0,0 +1,13 @@ +#serial 1 +AC_DEFUN([AC_FUNC_CANONICALIZE_FILE_NAME], + [ + AC_REQUIRE([AC_HEADER_STDC]) + AC_CHECK_HEADERS(string.h sys/param.h stddef.h) + AC_CHECK_FUNCS(resolvepath) + AC_REQUIRE([AC_HEADER_STAT]) + + # This would simply be AC_REPLACE_FUNC([canonicalize_file_name]) + # if the function name weren't so long. Besides, I would rather + # not have underscores in file names. + AC_CHECK_FUNC([canonicalize_file_name], , [AC_LIBOBJ(canonicalize)]) + ]) diff --git a/src/apps/bin/coreutils-5.0/m4/check-decl.m4 b/src/apps/bin/coreutils-5.0/m4/check-decl.m4 new file mode 100644 index 0000000000..22f0361d86 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/check-decl.m4 @@ -0,0 +1,86 @@ +#serial 19 + +dnl This is just a wrapper function to encapsulate this kludge. +dnl Putting it in a separate file like this helps share it between +dnl different packages. +AC_DEFUN([jm_CHECK_DECLS], +[ + AC_REQUIRE([_jm_DECL_HEADERS]) + AC_REQUIRE([AC_HEADER_TIME]) + headers=' +#include +#if HAVE_STRING_H +# if !STDC_HEADERS && HAVE_MEMORY_H +# include +# endif +# include +#else +# if HAVE_STRINGS_H +# include +# endif +#endif +#if HAVE_STDLIB_H +# include +#endif +#if HAVE_UNISTD_H +# include +#endif + +#include +#if TIME_WITH_SYS_TIME +# include +# include +#else +# if HAVE_SYS_TIME_H +# include +# else +# include +# endif +#endif + +#if HAVE_UTMP_H +# include +#endif + +#if HAVE_GRP_H +# include +#endif + +#if HAVE_PWD_H +# include +#endif +' + + AC_CHECK_DECLS([ + euidaccess, + free, + getenv, + geteuid, + getgrgid, + getlogin, + getpwuid, + getuid, + getutent, + lseek, + malloc, + memchr, + memrchr, + nanosleep, + realloc, + stpcpy, + strndup, + strnlen, + strstr, + strtoul, + strtoull, + ttyname], , , $headers) +]) + +dnl FIXME: when autoconf has support for it. +dnl This is a little helper so we can require these header checks. +AC_DEFUN([_jm_DECL_HEADERS], +[ + AC_REQUIRE([AC_HEADER_STDC]) + AC_CHECK_HEADERS(grp.h memory.h pwd.h string.h strings.h stdlib.h \ + unistd.h sys/time.h utmp.h utmpx.h) +]) diff --git a/src/apps/bin/coreutils-5.0/m4/chown.m4 b/src/apps/bin/coreutils-5.0/m4/chown.m4 new file mode 100644 index 0000000000..1f3f51b46e --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/chown.m4 @@ -0,0 +1,49 @@ +#serial 7 + +dnl From Jim Meyering. +dnl Determine whether chown accepts arguments of -1 for uid and gid. +dnl If it doesn't, arrange to use the replacement function. +dnl + +AC_DEFUN([jm_FUNC_CHOWN], +[AC_REQUIRE([AC_TYPE_UID_T])dnl + test -z "$ac_cv_header_unistd_h" \ + && AC_CHECK_HEADERS(unistd.h) + AC_CACHE_CHECK([for working chown], jm_cv_func_working_chown, + [AC_TRY_RUN([ +# include +# include +# include +# ifdef HAVE_UNISTD_H +# include +# endif + + int + main () + { + char *f = "conftest.chown"; + struct stat before, after; + + if (creat (f, 0600) < 0) + exit (1); + if (stat (f, &before) < 0) + exit (1); + if (chown (f, (uid_t) -1, (gid_t) -1) == -1) + exit (1); + if (stat (f, &after) < 0) + exit (1); + exit ((before.st_uid == after.st_uid + && before.st_gid == after.st_gid) ? 0 : 1); + } + ], + jm_cv_func_working_chown=yes, + jm_cv_func_working_chown=no, + dnl When crosscompiling, assume chown is broken. + jm_cv_func_working_chown=no) + ]) + if test $jm_cv_func_working_chown = no; then + AC_LIBOBJ(chown) + AC_DEFINE(chown, rpl_chown, + [Define to rpl_chown if the replacement function should be used.]) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/codeset.m4 b/src/apps/bin/coreutils-5.0/m4/codeset.m4 new file mode 100644 index 0000000000..59535ebcff --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/codeset.m4 @@ -0,0 +1,23 @@ +# codeset.m4 serial AM1 (gettext-0.10.40) +dnl Copyright (C) 2000-2002 Free Software Foundation, Inc. +dnl This file is free software, distributed under the terms of the GNU +dnl General Public License. As a special exception to the GNU General +dnl Public License, this file may be distributed as part of a program +dnl that contains a configuration script generated by Autoconf, under +dnl the same distribution terms as the rest of that program. + +dnl From Bruno Haible. + +AC_DEFUN([AM_LANGINFO_CODESET], +[ + AC_CACHE_CHECK([for nl_langinfo and CODESET], am_cv_langinfo_codeset, + [AC_TRY_LINK([#include ], + [char* cs = nl_langinfo(CODESET);], + am_cv_langinfo_codeset=yes, + am_cv_langinfo_codeset=no) + ]) + if test $am_cv_langinfo_codeset = yes; then + AC_DEFINE(HAVE_LANGINFO_CODESET, 1, + [Define if you have and nl_langinfo(CODESET).]) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/d-ino.m4 b/src/apps/bin/coreutils-5.0/m4/d-ino.m4 new file mode 100644 index 0000000000..6ca60dc5e9 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/d-ino.m4 @@ -0,0 +1,42 @@ +#serial 4 + +dnl From Jim Meyering. +dnl +dnl Check whether struct dirent has a member named d_ino. +dnl + +AC_DEFUN([jm_CHECK_TYPE_STRUCT_DIRENT_D_INO], + [AC_REQUIRE([AC_HEADER_DIRENT])dnl + AC_CACHE_CHECK([for d_ino member in directory struct], + jm_cv_struct_dirent_d_ino, + [AC_TRY_LINK(dnl + [ +#include +#ifdef HAVE_DIRENT_H +# include +#else /* not HAVE_DIRENT_H */ +# define dirent direct +# ifdef HAVE_SYS_NDIR_H +# include +# endif /* HAVE_SYS_NDIR_H */ +# ifdef HAVE_SYS_DIR_H +# include +# endif /* HAVE_SYS_DIR_H */ +# ifdef HAVE_NDIR_H +# include +# endif /* HAVE_NDIR_H */ +#endif /* HAVE_DIRENT_H */ + ], + [struct dirent dp; dp.d_ino = 0;], + + jm_cv_struct_dirent_d_ino=yes, + jm_cv_struct_dirent_d_ino=no) + ] + ) + if test $jm_cv_struct_dirent_d_ino = yes; then + AC_DEFINE(D_INO_IN_DIRENT, 1, + [Define if there is a member named d_ino in the struct describing + directory headers.]) + fi + ] +) diff --git a/src/apps/bin/coreutils-5.0/m4/d-type.m4 b/src/apps/bin/coreutils-5.0/m4/d-type.m4 new file mode 100644 index 0000000000..ae0ba57c35 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/d-type.m4 @@ -0,0 +1,42 @@ +#serial 5 + +dnl From Jim Meyering. +dnl +dnl Check whether struct dirent has a member named d_type. +dnl + +AC_DEFUN([jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE], + [AC_REQUIRE([AC_HEADER_DIRENT])dnl + AC_CACHE_CHECK([for d_type member in directory struct], + jm_cv_struct_dirent_d_type, + [AC_TRY_LINK(dnl + [ +#include +#ifdef HAVE_DIRENT_H +# include +#else /* not HAVE_DIRENT_H */ +# define dirent direct +# ifdef HAVE_SYS_NDIR_H +# include +# endif /* HAVE_SYS_NDIR_H */ +# ifdef HAVE_SYS_DIR_H +# include +# endif /* HAVE_SYS_DIR_H */ +# ifdef HAVE_NDIR_H +# include +# endif /* HAVE_NDIR_H */ +#endif /* HAVE_DIRENT_H */ + ], + [struct dirent dp; dp.d_type = 0;], + + jm_cv_struct_dirent_d_type=yes, + jm_cv_struct_dirent_d_type=no) + ] + ) + if test $jm_cv_struct_dirent_d_type = yes; then + AC_DEFINE(HAVE_STRUCT_DIRENT_D_TYPE, 1, + [Define if there is a member named d_type in the struct describing + directory headers.]) + fi + ] +) diff --git a/src/apps/bin/coreutils-5.0/m4/dirfd.m4 b/src/apps/bin/coreutils-5.0/m4/dirfd.m4 new file mode 100644 index 0000000000..995cd25507 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/dirfd.m4 @@ -0,0 +1,82 @@ +#serial 5 + +dnl Find out how to get the file descriptor associated with an open DIR*. +dnl From Jim Meyering + +AC_DEFUN([UTILS_FUNC_DIRFD], +[ + dnl Work around a bug of AC_EGREP_CPP in autoconf-2.57. + AC_REQUIRE([AC_PROG_CPP]) + AC_REQUIRE([AC_PROG_EGREP]) + + AC_HEADER_DIRENT + dirfd_headers=' +#if HAVE_DIRENT_H +# include +#else /* not HAVE_DIRENT_H */ +# define dirent direct +# if HAVE_SYS_NDIR_H +# include +# endif /* HAVE_SYS_NDIR_H */ +# if HAVE_SYS_DIR_H +# include +# endif /* HAVE_SYS_DIR_H */ +# if HAVE_NDIR_H +# include +# endif /* HAVE_NDIR_H */ +#endif /* HAVE_DIRENT_H */ +' + AC_CHECK_FUNCS(dirfd) + AC_CHECK_DECLS([dirfd], , , $dirfd_headers) + + AC_CACHE_CHECK([whether dirfd is a macro], + jm_cv_func_dirfd_macro, + AC_EGREP_CPP([dirent_header_defines_dirfd], [$dirfd_headers +#ifdef dirfd + dirent_header_defines_dirfd +#endif], + jm_cv_func_dirfd_macro=yes, + jm_cv_func_dirfd_macro=no)) + + # Use the replacement only if we have no function, macro, + # or declaration with that name. + if test $ac_cv_func_dirfd,$ac_cv_have_decl_dirfd,$jm_cv_func_dirfd_macro \ + = no,no,no; then + AC_REPLACE_FUNCS([dirfd]) + AC_CACHE_CHECK( + [how to get the file descriptor associated with an open DIR*], + gl_cv_sys_dir_fd_member_name, + [ + dirfd_save_CFLAGS=$CFLAGS + for ac_expr in d_fd dd_fd; do + + CFLAGS="$CFLAGS -DDIR_FD_MEMBER_NAME=$ac_expr" + AC_TRY_COMPILE( + [$dirfd_headers + ], + [DIR *dir_p = opendir("."); (void) dir_p->DIR_FD_MEMBER_NAME;], + dir_fd_found=yes + ) + CFLAGS=$dirfd_save_CFLAGS + test "$dir_fd_found" = yes && break + done + test "$dir_fd_found" = yes || ac_expr=no_such_member + + gl_cv_sys_dir_fd_member_name=$ac_expr + ] + ) + if test $gl_cv_sys_dir_fd_member_name != no_such_member; then + AC_DEFINE_UNQUOTED(DIR_FD_MEMBER_NAME, + $gl_cv_sys_dir_fd_member_name, + [the name of the file descriptor member of DIR]) + fi + AH_VERBATIM(DIR_TO_FD, + [#ifdef DIR_FD_MEMBER_NAME +# define DIR_TO_FD(Dir_p) ((Dir_p)->DIR_FD_MEMBER_NAME) +#else +# define DIR_TO_FD(Dir_p) -1 +#endif +] + ) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/dos.m4 b/src/apps/bin/coreutils-5.0/m4/dos.m4 new file mode 100644 index 0000000000..868626e7e5 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/dos.m4 @@ -0,0 +1,53 @@ +#serial 5 + +# Define some macros required for proper operation of code in lib/*.c +# on MSDOS/Windows systems. + +# From Jim Meyering. + +AC_DEFUN([jm_AC_DOS], + [ + AC_CACHE_CHECK([whether system is Windows or MSDOS], [ac_cv_win_or_dos], + [ + AC_TRY_COMPILE([], + [#if !defined _WIN32 && !defined __WIN32__ && !defined __MSDOS__ +neither MSDOS nor Windows +#endif], + [ac_cv_win_or_dos=yes], + [ac_cv_win_or_dos=no]) + ]) + + if test x"$ac_cv_win_or_dos" = xyes; then + ac_fs_accepts_drive_letter_prefix=1 + ac_fs_backslash_is_file_name_separator=1 + else + ac_fs_accepts_drive_letter_prefix=0 + ac_fs_backslash_is_file_name_separator=0 + fi + + AH_VERBATIM(FILESYSTEM_PREFIX_LEN, + [#if FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX +# define FILESYSTEM_PREFIX_LEN(Filename) \ + ((Filename)[0] && (Filename)[1] == ':' ? 2 : 0) +#else +# define FILESYSTEM_PREFIX_LEN(Filename) 0 +#endif]) + + AC_DEFINE_UNQUOTED([FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX], + $ac_fs_accepts_drive_letter_prefix, + [Define on systems for which file names may have a so-called + `drive letter' prefix, define this to compute the length of that + prefix, including the colon.]) + + AH_VERBATIM(ISSLASH, + [#if FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR +# define ISSLASH(C) ((C) == '/' || (C) == '\\') +#else +# define ISSLASH(C) ((C) == '/') +#endif]) + + AC_DEFINE_UNQUOTED([FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR], + $ac_fs_backslash_is_file_name_separator, + [Define if the backslash character may also serve as a file name + component separator.]) + ]) diff --git a/src/apps/bin/coreutils-5.0/m4/error.m4 b/src/apps/bin/coreutils-5.0/m4/error.m4 new file mode 100644 index 0000000000..717725d619 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/error.m4 @@ -0,0 +1,14 @@ +#serial 5 + +dnl FIXME: put these prerequisite-only *.m4 files in a separate +dnl directory -- otherwise, they'll conflict with existing files. + +dnl These are the prerequisite macros for GNU's error.c file. +AC_DEFUN([jm_PREREQ_ERROR], +[ + AC_CHECK_FUNCS(strerror vprintf doprnt) + AC_CHECK_DECLS([strerror]) + AC_CHECK_HEADERS([libintl.h]) + AC_FUNC_STRERROR_R + AC_HEADER_STDC +]) diff --git a/src/apps/bin/coreutils-5.0/m4/fpending.m4 b/src/apps/bin/coreutils-5.0/m4/fpending.m4 new file mode 100644 index 0000000000..145c86a0bc --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/fpending.m4 @@ -0,0 +1,72 @@ +#serial 3 + +dnl From Jim Meyering +dnl Using code from emacs, based on suggestions from Paul Eggert +dnl and Ulrich Drepper. + +dnl Find out how to determine the number of pending output bytes on a stream. +dnl glibc (2.1.93 and newer) and Solaris provide __fpending. On other systems, +dnl we have to grub around in the FILE struct. + +AC_DEFUN([jm_FUNC_FPENDING], +[ + AC_CHECK_HEADERS(stdio_ext.h) + AC_REPLACE_FUNCS([__fpending]) + fp_headers=' +# if HAVE_STDIO_EXT_H +# include +# endif +' + AC_CHECK_DECLS([__fpending], , , $fp_headers) + if test $ac_cv_func___fpending = no; then + AC_CACHE_CHECK( + [how to determine the number of pending output bytes on a stream], + ac_cv_sys_pending_output_n_bytes, + [ + for ac_expr in \ + \ + '# glibc2' \ + 'fp->_IO_write_ptr - fp->_IO_write_base' \ + \ + '# traditional Unix' \ + 'fp->_ptr - fp->_base' \ + \ + '# BSD' \ + 'fp->_p - fp->_bf._base' \ + \ + '# SCO, Unixware' \ + 'fp->__ptr - fp->__base' \ + \ + '# old glibc?' \ + 'fp->__bufp - fp->__buffer' \ + \ + '# old glibc iostream?' \ + 'fp->_pptr - fp->_pbase' \ + \ + '# VMS' \ + '(*fp)->_ptr - (*fp)->_base' \ + \ + '# e.g., DGUX R4.11; the info is not available' \ + 1 \ + ; do + + # Skip each embedded comment. + case "$ac_expr" in '#'*) continue;; esac + + AC_TRY_COMPILE( + [#include + ], + [FILE *fp = stdin; (void) ($ac_expr);], + fp_done=yes + ) + test "$fp_done" = yes && break + done + + ac_cv_sys_pending_output_n_bytes=$ac_expr + ] + ) + AC_DEFINE_UNQUOTED(PENDING_OUTPUT_N_BYTES, + $ac_cv_sys_pending_output_n_bytes, + [the number of pending output bytes on stream `fp']) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/fstypename.m4 b/src/apps/bin/coreutils-5.0/m4/fstypename.m4 new file mode 100644 index 0000000000..75723a14fb --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/fstypename.m4 @@ -0,0 +1,32 @@ +#serial 3 + +dnl From Jim Meyering. +dnl +dnl See if struct statfs has the f_fstypename member. +dnl If so, define HAVE_F_FSTYPENAME_IN_STATFS. +dnl + +AC_DEFUN([jm_FSTYPENAME], + [ + AC_CACHE_CHECK([for f_fstypename in struct statfs], + fu_cv_sys_f_fstypename_in_statfs, + [ + AC_TRY_COMPILE( + [ +#include +#include +#include + ], + [struct statfs s; int i = sizeof s.f_fstypename;], + fu_cv_sys_f_fstypename_in_statfs=yes, + fu_cv_sys_f_fstypename_in_statfs=no + ) + ] + ) + + if test $fu_cv_sys_f_fstypename_in_statfs = yes; then + AC_DEFINE(HAVE_F_FSTYPENAME_IN_STATFS, 1, + [Define if struct statfs has the f_fstypename member.]) + fi + ] +) diff --git a/src/apps/bin/coreutils-5.0/m4/fsusage.m4 b/src/apps/bin/coreutils-5.0/m4/fsusage.m4 new file mode 100644 index 0000000000..ad63154ac4 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/fsusage.m4 @@ -0,0 +1,198 @@ +#serial 9 + +# From fileutils/configure.in + +# Try to determine how a program can obtain filesystem usage information. +# If successful, define the appropriate symbol (see fsusage.c) and +# execute ACTION-IF-FOUND. Otherwise, execute ACTION-IF-NOT-FOUND. +# +# jm_FILE_SYSTEM_USAGE([ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]]) + +AC_DEFUN([jm_FILE_SYSTEM_USAGE], +[ + +echo "checking how to get filesystem space usage..." +ac_fsusage_space=no + +# Perform only the link test since it seems there are no variants of the +# statvfs function. This check is more than just AC_CHECK_FUNCS(statvfs) +# because that got a false positive on SCO OSR5. Adding the declaration +# of a `struct statvfs' causes this test to fail (as it should) on such +# systems. That system is reported to work fine with STAT_STATFS4 which +# is what it gets when this test fails. +if test $ac_fsusage_space = no; then + # SVR4 + AC_CACHE_CHECK([for statvfs function (SVR4)], fu_cv_sys_stat_statvfs, + [AC_TRY_LINK([#include +#ifdef __GLIBC__ +Do not use statvfs on systems with GNU libc, because that function stats +all preceding entries in /proc/mounts, and that makes df hang if even +one of the corresponding file systems is hard-mounted, but not available. +#endif +#include ], + [struct statvfs fsd; statvfs (0, &fsd);], + fu_cv_sys_stat_statvfs=yes, + fu_cv_sys_stat_statvfs=no)]) + if test $fu_cv_sys_stat_statvfs = yes; then + ac_fsusage_space=yes + AC_DEFINE(STAT_STATVFS, 1, + [ Define if there is a function named statvfs. (SVR4)]) + fi +fi + +if test $ac_fsusage_space = no; then + # DEC Alpha running OSF/1 + AC_MSG_CHECKING([for 3-argument statfs function (DEC OSF/1)]) + AC_CACHE_VAL(fu_cv_sys_stat_statfs3_osf1, + [AC_TRY_RUN([ +#include +#include +#include + main () + { + struct statfs fsd; + fsd.f_fsize = 0; + exit (statfs (".", &fsd, sizeof (struct statfs))); + }], + fu_cv_sys_stat_statfs3_osf1=yes, + fu_cv_sys_stat_statfs3_osf1=no, + fu_cv_sys_stat_statfs3_osf1=no)]) + AC_MSG_RESULT($fu_cv_sys_stat_statfs3_osf1) + if test $fu_cv_sys_stat_statfs3_osf1 = yes; then + ac_fsusage_space=yes + AC_DEFINE(STAT_STATFS3_OSF1, 1, + [ Define if statfs takes 3 args. (DEC Alpha running OSF/1)]) + fi +fi + +if test $ac_fsusage_space = no; then +# AIX + AC_MSG_CHECKING([for two-argument statfs with statfs.bsize dnl +member (AIX, 4.3BSD)]) + AC_CACHE_VAL(fu_cv_sys_stat_statfs2_bsize, + [AC_TRY_RUN([ +#ifdef HAVE_SYS_PARAM_H +#include +#endif +#ifdef HAVE_SYS_MOUNT_H +#include +#endif +#ifdef HAVE_SYS_VFS_H +#include +#endif + main () + { + struct statfs fsd; + fsd.f_bsize = 0; + exit (statfs (".", &fsd)); + }], + fu_cv_sys_stat_statfs2_bsize=yes, + fu_cv_sys_stat_statfs2_bsize=no, + fu_cv_sys_stat_statfs2_bsize=no)]) + AC_MSG_RESULT($fu_cv_sys_stat_statfs2_bsize) + if test $fu_cv_sys_stat_statfs2_bsize = yes; then + ac_fsusage_space=yes + AC_DEFINE(STAT_STATFS2_BSIZE, 1, +[ Define if statfs takes 2 args and struct statfs has a field named f_bsize. + (4.3BSD, SunOS 4, HP-UX, AIX PS/2)]) + fi +fi + +if test $ac_fsusage_space = no; then +# SVR3 + AC_MSG_CHECKING([for four-argument statfs (AIX-3.2.5, SVR3)]) + AC_CACHE_VAL(fu_cv_sys_stat_statfs4, + [AC_TRY_RUN([#include +#include + main () + { + struct statfs fsd; + exit (statfs (".", &fsd, sizeof fsd, 0)); + }], + fu_cv_sys_stat_statfs4=yes, + fu_cv_sys_stat_statfs4=no, + fu_cv_sys_stat_statfs4=no)]) + AC_MSG_RESULT($fu_cv_sys_stat_statfs4) + if test $fu_cv_sys_stat_statfs4 = yes; then + ac_fsusage_space=yes + AC_DEFINE(STAT_STATFS4, 1, + [ Define if statfs takes 4 args. (SVR3, Dynix, Irix, Dolphin)]) + fi +fi + +if test $ac_fsusage_space = no; then +# 4.4BSD and NetBSD + AC_MSG_CHECKING([for two-argument statfs with statfs.fsize dnl +member (4.4BSD and NetBSD)]) + AC_CACHE_VAL(fu_cv_sys_stat_statfs2_fsize, + [AC_TRY_RUN([#include +#ifdef HAVE_SYS_PARAM_H +#include +#endif +#ifdef HAVE_SYS_MOUNT_H +#include +#endif + main () + { + struct statfs fsd; + fsd.f_fsize = 0; + exit (statfs (".", &fsd)); + }], + fu_cv_sys_stat_statfs2_fsize=yes, + fu_cv_sys_stat_statfs2_fsize=no, + fu_cv_sys_stat_statfs2_fsize=no)]) + AC_MSG_RESULT($fu_cv_sys_stat_statfs2_fsize) + if test $fu_cv_sys_stat_statfs2_fsize = yes; then + ac_fsusage_space=yes + AC_DEFINE(STAT_STATFS2_FSIZE, 1, +[ Define if statfs takes 2 args and struct statfs has a field named f_fsize. + (4.4BSD, NetBSD)]) + fi +fi + +if test $ac_fsusage_space = no; then + # Ultrix + AC_MSG_CHECKING([for two-argument statfs with struct fs_data (Ultrix)]) + AC_CACHE_VAL(fu_cv_sys_stat_fs_data, + [AC_TRY_RUN([#include +#ifdef HAVE_SYS_PARAM_H +#include +#endif +#ifdef HAVE_SYS_MOUNT_H +#include +#endif +#ifdef HAVE_SYS_FS_TYPES_H +#include +#endif + main () + { + struct fs_data fsd; + /* Ultrix's statfs returns 1 for success, + 0 for not mounted, -1 for failure. */ + exit (statfs (".", &fsd) != 1); + }], + fu_cv_sys_stat_fs_data=yes, + fu_cv_sys_stat_fs_data=no, + fu_cv_sys_stat_fs_data=no)]) + AC_MSG_RESULT($fu_cv_sys_stat_fs_data) + if test $fu_cv_sys_stat_fs_data = yes; then + ac_fsusage_space=yes + AC_DEFINE(STAT_STATFS2_FS_DATA, 1, +[ Define if statfs takes 2 args and the second argument has + type struct fs_data. (Ultrix)]) + fi +fi + +if test $ac_fsusage_space = no; then + # SVR2 + AC_TRY_CPP([#include + ], + AC_DEFINE(STAT_READ_FILSYS, 1, + [Define if there is no specific function for reading filesystems usage + information and you have the header file. (SVR2)]) + ac_fsusage_space=yes) +fi + +AS_IF([test $ac_fsusage_space = yes], [$1], [$2]) + +]) diff --git a/src/apps/bin/coreutils-5.0/m4/ftruncate.m4 b/src/apps/bin/coreutils-5.0/m4/ftruncate.m4 new file mode 100644 index 0000000000..0397a000c2 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/ftruncate.m4 @@ -0,0 +1,14 @@ +#serial 4 + +# See if we need to emulate a missing ftruncate function using fcntl or chsize. + +AC_DEFUN([jm_FUNC_FTRUNCATE], +[ + AC_CHECK_FUNCS(ftruncate, , [ftruncate_missing=yes]) + + if test "$ftruncate_missing" = yes; then + AC_CHECK_HEADERS([unistd.h]) + AC_CHECK_FUNCS([chsize]) + AC_LIBOBJ(ftruncate) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/ftw.m4 b/src/apps/bin/coreutils-5.0/m4/ftw.m4 new file mode 100644 index 0000000000..9f693a4101 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/ftw.m4 @@ -0,0 +1,74 @@ +#serial 2 +# Use the replacement ftw.c if the one in the C library is inadequate or buggy. +# For now, we always use the code in lib/ because libc doesn't have the FTW_DCH +# or FTW_DCHP that we need. Arrange to use lib/ftw.h. And since that +# implementation uses tsearch.c/tdestroy, add tsearch.o to the list of +# objects and arrange to use lib/search.h if necessary. +# From Jim Meyering + +AC_DEFUN([AC_FUNC_FTW], +[ + # prerequisites + AC_REQUIRE([AC_HEADER_STAT]) + AC_REQUIRE([jm_FUNC_LSTAT]) + AC_REQUIRE([AC_HEADER_DIRENT]) + AC_CHECK_HEADERS(sys/param.h) + AC_CHECK_DECLS([stpcpy]) + + # In the event that we have to use the replacement ftw.c, + # see if we'll also need the replacement tsearch.c. + AC_CHECK_FUNC([tdestroy], , [need_tdestroy=1]) + + AC_CACHE_CHECK([for ftw/FTW_CHDIR that informs callback of failed chdir], + ac_cv_func_ftw_working, + [ + # The following test would fail prior to glibc-2.3.2, because `depth' + # would be 2 rather than 4. Of course, now that we require FTW_DCH + # and FTW_DCHP, this test fails even with GNU libc's fixed ftw. + mkdir -p conftest.dir/a/b/c + AC_RUN_IFELSE([AC_LANG_SOURCE([[ +#include +#include +#include + +static char *_f[] = { "conftest.dir", "conftest.dir/a", + "conftest.dir/a/b", "conftest.dir/a/b/c" }; +static char **p = _f; +static int depth; + +static int +cb (const char *file, const struct stat *sb, int file_type, struct FTW *info) +{ + if (strcmp (file, *p++) != 0) + exit (1); + ++depth; + return 0; +} + +int +main () +{ + /* Require these symbols, too. */ + int d1 = FTW_DCH; + int d2 = FTW_DCHP; + + int err = nftw ("conftest.dir", cb, 30, FTW_PHYS | FTW_MOUNT | FTW_CHDIR); + exit ((err == 0 && depth == 4) ? 0 : 1); +} +]])], + [ac_cv_func_ftw_working=yes], + [ac_cv_func_ftw_working=no], + [ac_cv_func_ftw_working=no])]) + rm -rf conftest.dir + if test $ac_cv_func_ftw_working = no; then + AC_LIBOBJ([ftw]) + AC_CONFIG_LINKS([$ac_config_libobj_dir/ftw.h:$ac_config_libobj_dir/ftw_.h]) + # Add tsearch.o IFF we have to use the replacement ftw.c. + if test -n "$need_tdestroy"; then + AC_LIBOBJ([tsearch]) + # Link search.h to search_.h if we use the replacement tsearch.c. + AC_CONFIG_LINKS( + [$ac_config_libobj_dir/search.h:$ac_config_libobj_dir/search_.h]) + fi + fi +])# AC_FUNC_FTW diff --git a/src/apps/bin/coreutils-5.0/m4/getcwd-path-max.m4 b/src/apps/bin/coreutils-5.0/m4/getcwd-path-max.m4 new file mode 100644 index 0000000000..9069969b32 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/getcwd-path-max.m4 @@ -0,0 +1,136 @@ +#serial 2 +# Check whether getcwd has the bug that it succeeds for a working directory +# longer than PATH_MAX, yet returns a truncated directory name. +# If so, arrange to compile the wrapper function. + +# This is necessary for at least GNU libc on linux-2.4.19 and 2.4.20. +# I've heard that this is due to a Linux kernel bug, and that it has +# been fixed between 2.4.21-pre3 and 2.4.21-pre4. */ + +# From Jim Meyering + +AC_DEFUN([GL_FUNC_GETCWD_PATH_MAX], +[ + AC_CACHE_CHECK([whether getcwd properly handles paths longer than PATH_MAX], + gl_cv_func_getcwd_vs_path_max, + [ + AC_CHECK_DECLS([getcwd]) + # Arrange for deletion of the temporary directory this test creates. + ac_clean_files="$ac_clean_files confdir3" + AC_RUN_IFELSE([AC_LANG_SOURCE([[ +#include +#include +#include +#include +#include +#include + +/* Don't get link errors because mkdir is redefined to rpl_mkdir. */ +#undef mkdir + +#ifndef CHAR_BIT +# define CHAR_BIT 8 +#endif + +/* The extra casts work around common compiler bugs. */ +#define TYPE_SIGNED(t) (! ((t) 0 < (t) -1)) +/* The outer cast is needed to work around a bug in Cray C 5.0.3.0. + It is necessary at least when t == time_t. */ +#define TYPE_MINIMUM(t) ((t) (TYPE_SIGNED (t) \ + ? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0)) +#define TYPE_MAXIMUM(t) ((t) (~ (t) 0 - TYPE_MINIMUM (t))) + +#ifndef INT_MAX +# define INT_MAX TYPE_MAXIMUM (int) +#endif + +#ifndef PATH_MAX +/* There might be a better way to handle this case, but note: + - the value shouldn't be anywhere near INT_MAX, and + - the value shouldn't be so big that the local declaration, below, + blows the stack. */ +# define PATH_MAX 40000 +#endif + +/* The length of this name must be 8. */ +#define DIR_NAME "confdir3" + +int +main () +{ + /* The '9' comes from strlen (DIR_NAME) + 1. */ +#if INT_MAX - 9 <= PATH_MAX + /* FIXME: Assuming there's a system for which this is true -- Hurd?, + this should be done in a compile test. */ + exit (0); +#else + char buf[PATH_MAX + 20]; + char *cwd = getcwd (buf, PATH_MAX); + size_t cwd_len; + int fail = 0; + size_t n_chdirs = 0; + + if (cwd == NULL) + exit (1); + + cwd_len = strlen (cwd); + + while (1) + { + char *c; + size_t len; + + cwd_len += 1 + strlen (DIR_NAME); + /* If mkdir or chdir fails, be pessimistic and consider that + as a failure, too. */ + if (mkdir (DIR_NAME, 0700) < 0 || chdir (DIR_NAME) < 0) + { + fail = 1; + break; + } + if ((c = getcwd (buf, PATH_MAX)) == NULL) + { + /* This allows any failure to indicate there is no bug. + FIXME: check errno? */ + break; + } + if ((len = strlen (c)) != cwd_len) + { + fail = 1; + break; + } + ++n_chdirs; + if (PATH_MAX < len) + break; + } + + /* Leaving behind such a deep directory is not polite. + So clean up here, right away, even though the driving + shell script would also clean up. */ + { + size_t i; + + /* Unlink first, in case the chdir failed. */ + unlink (DIR_NAME); + for (i = 0; i <= n_chdirs; i++) + { + if (chdir ("..") < 0) + break; + rmdir (DIR_NAME); + } + } + + exit (fail); +#endif +} + ]])], + [gl_cv_func_getcwd_vs_path_max=yes], + [gl_cv_func_getcwd_vs_path_max=no], + [gl_cv_func_getcwd_vs_path_max=no])]) + + if test $gl_cv_func_getcwd_vs_path_max = yes; then + AC_LIBOBJ(getcwd) + AC_DEFINE(getcwd, rpl_getcwd, + [Define to rpl_getcwd if the wrapper function should be used.]) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/getcwd.m4 b/src/apps/bin/coreutils-5.0/m4/getcwd.m4 new file mode 100644 index 0000000000..1e1b80efa4 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/getcwd.m4 @@ -0,0 +1,53 @@ +# getcwd.m4 - check whether getcwd (NULL, 0) allocates memory for result + +# Copyright 2001 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 2, 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, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + +# Written by Paul Eggert. + +AC_DEFUN([AC_FUNC_GETCWD_NULL], + [AC_CHECK_HEADERS(stdlib.h unistd.h) + AC_CACHE_CHECK([whether getcwd (NULL, 0) allocates memory for result], + [ac_cv_func_getcwd_null], + [AC_TRY_RUN( + [ +# ifdef HAVE_STDLIB_H +# include +# endif +# ifdef HAVE_UNISTD_H +# include +# endif +# ifndef getcwd + char *getcwd (); +# endif + int + main () + { + if (chdir ("/") != 0) + exit (1); + else + { + char *f = getcwd (NULL, 0); + exit (! (f && f[0] == '/' && !f[1])); + } + }], + [ac_cv_func_getcwd_null=yes], + [ac_cv_func_getcwd_null=no], + [ac_cv_func_getcwd_null=no])]) + if test $ac_cv_func_getcwd_null = yes; then + AC_DEFINE(HAVE_GETCWD_NULL, 1, + [Define if getcwd (NULL, 0) allocates memory for result.]) + fi]) diff --git a/src/apps/bin/coreutils-5.0/m4/getgroups.m4 b/src/apps/bin/coreutils-5.0/m4/getgroups.m4 new file mode 100644 index 0000000000..06213ae49a --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/getgroups.m4 @@ -0,0 +1,14 @@ +#serial 7 + +dnl From Jim Meyering. +dnl A wrapper around AC_FUNC_GETGROUPS. + +AC_DEFUN([jm_FUNC_GETGROUPS], +[AC_REQUIRE([AC_FUNC_GETGROUPS])dnl + if test $ac_cv_func_getgroups_works = no; then + AC_LIBOBJ(getgroups) + AC_DEFINE(getgroups, rpl_getgroups, + [Define as rpl_getgroups if getgroups doesn't work right.]) + fi + test -n "$GETGROUPS_LIB" && LIBS="$GETGROUPS_LIB $LIBS" +]) diff --git a/src/apps/bin/coreutils-5.0/m4/getline.m4 b/src/apps/bin/coreutils-5.0/m4/getline.m4 new file mode 100644 index 0000000000..d19e563867 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/getline.m4 @@ -0,0 +1,41 @@ +#serial 5 + +dnl See if there's a working, system-supplied version of the getline function. +dnl We can't just do AC_REPLACE_FUNCS(getline) because some systems +dnl have a function by that name in -linet that doesn't have anything +dnl to do with the function we need. +AC_DEFUN([AM_FUNC_GETLINE], +[dnl + am_getline_needs_run_time_check=no + AC_CHECK_FUNC(getline, + dnl Found it in some library. Verify that it works. + am_getline_needs_run_time_check=yes, + am_cv_func_working_getline=no) + if test $am_getline_needs_run_time_check = yes; then + AC_CACHE_CHECK([for working getline function], am_cv_func_working_getline, + [echo fooN |tr -d '\012'|tr N '\012' > conftest.data + AC_TRY_RUN([ +# include +# include +# include + int main () + { /* Based on a test program from Karl Heuer. */ + char *line = NULL; + size_t siz = 0; + int len; + FILE *in = fopen ("./conftest.data", "r"); + if (!in) + return 1; + len = getline (&line, &siz, in); + exit ((len == 4 && line && strcmp (line, "foo\n") == 0) ? 0 : 1); + } + ], am_cv_func_working_getline=yes dnl The library version works. + , am_cv_func_working_getline=no dnl The library version does NOT work. + , am_cv_func_working_getline=no dnl We're cross compiling. + )]) + fi + + if test $am_cv_func_working_getline = no; then + AC_LIBOBJ(getline) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/gettext.m4 b/src/apps/bin/coreutils-5.0/m4/gettext.m4 new file mode 100644 index 0000000000..5c545ef4f2 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/gettext.m4 @@ -0,0 +1,586 @@ +# gettext.m4 serial 17 (gettext-0.11.5) +dnl Copyright (C) 1995-2002 Free Software Foundation, Inc. +dnl This file is free software, distributed under the terms of the GNU +dnl General Public License. As a special exception to the GNU General +dnl Public License, this file may be distributed as part of a program +dnl that contains a configuration script generated by Autoconf, under +dnl the same distribution terms as the rest of that program. +dnl +dnl This file can can be used in projects which are not available under +dnl the GNU General Public License or the GNU Library General Public +dnl License but which still want to provide support for the GNU gettext +dnl functionality. +dnl Please note that the actual code of the GNU gettext library is covered +dnl by the GNU Library General Public License, and the rest of the GNU +dnl gettext package package is covered by the GNU General Public License. +dnl They are *not* in the public domain. + +dnl Authors: +dnl Ulrich Drepper , 1995-2000. +dnl Bruno Haible , 2000-2002. + +dnl Macro to add for using GNU gettext. + +dnl Usage: AM_GNU_GETTEXT([INTLSYMBOL], [NEEDSYMBOL], [INTLDIR]). +dnl INTLSYMBOL can be one of 'external', 'no-libtool', 'use-libtool'. The +dnl default (if it is not specified or empty) is 'no-libtool'. +dnl INTLSYMBOL should be 'external' for packages with no intl directory, +dnl and 'no-libtool' or 'use-libtool' for packages with an intl directory. +dnl If INTLSYMBOL is 'use-libtool', then a libtool library +dnl $(top_builddir)/intl/libintl.la will be created (shared and/or static, +dnl depending on --{enable,disable}-{shared,static} and on the presence of +dnl AM-DISABLE-SHARED). If INTLSYMBOL is 'no-libtool', a static library +dnl $(top_builddir)/intl/libintl.a will be created. +dnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext +dnl implementations (in libc or libintl) without the ngettext() function +dnl will be ignored. If NEEDSYMBOL is specified and is +dnl 'need-formatstring-macros', then GNU gettext implementations that don't +dnl support the ISO C 99 formatstring macros will be ignored. +dnl INTLDIR is used to find the intl libraries. If empty, +dnl the value `$(top_builddir)/intl/' is used. +dnl +dnl The result of the configuration is one of three cases: +dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled +dnl and used. +dnl Catalog format: GNU --> install in $(datadir) +dnl Catalog extension: .mo after installation, .gmo in source tree +dnl 2) GNU gettext has been found in the system's C library. +dnl Catalog format: GNU --> install in $(datadir) +dnl Catalog extension: .mo after installation, .gmo in source tree +dnl 3) No internationalization, always use English msgid. +dnl Catalog format: none +dnl Catalog extension: none +dnl If INTLSYMBOL is 'external', only cases 2 and 3 can occur. +dnl The use of .gmo is historical (it was needed to avoid overwriting the +dnl GNU format catalogs when building on a platform with an X/Open gettext), +dnl but we keep it in order not to force irrelevant filename changes on the +dnl maintainers. +dnl +AC_DEFUN([AM_GNU_GETTEXT], +[ + dnl Argument checking. + ifelse([$1], [], , [ifelse([$1], [external], , [ifelse([$1], [no-libtool], , [ifelse([$1], [use-libtool], , + [errprint([ERROR: invalid first argument to AM_GNU_GETTEXT +])])])])]) + ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], , + [errprint([ERROR: invalid second argument to AM_GNU_GETTEXT +])])])]) + define(gt_included_intl, ifelse([$1], [external], [no], [yes])) + define(gt_libtool_suffix_prefix, ifelse([$1], [use-libtool], [l], [])) + + AC_REQUIRE([AM_PO_SUBDIRS])dnl + ifelse(gt_included_intl, yes, [ + AC_REQUIRE([AM_INTL_SUBDIR])dnl + ]) + + dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. + AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) + AC_REQUIRE([AC_LIB_RPATH]) + + dnl Sometimes libintl requires libiconv, so first search for libiconv. + dnl Ideally we would do this search only after the + dnl if test "$USE_NLS" = "yes"; then + dnl if test "$gt_cv_func_gnugettext_libc" != "yes"; then + dnl tests. But if configure.in invokes AM_ICONV after AM_GNU_GETTEXT + dnl the configure script would need to contain the same shell code + dnl again, outside any 'if'. There are two solutions: + dnl - Invoke AM_ICONV_LINKFLAGS_BODY here, outside any 'if'. + dnl - Control the expansions in more detail using AC_PROVIDE_IFELSE. + dnl Since AC_PROVIDE_IFELSE is only in autoconf >= 2.52 and not + dnl documented, we avoid it. + ifelse(gt_included_intl, yes, , [ + AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) + ]) + + AC_MSG_CHECKING([whether NLS is requested]) + dnl Default is enabled NLS + AC_ARG_ENABLE(nls, + [ --disable-nls do not use Native Language Support], + USE_NLS=$enableval, USE_NLS=yes) + AC_MSG_RESULT($USE_NLS) + AC_SUBST(USE_NLS) + + ifelse(gt_included_intl, yes, [ + BUILD_INCLUDED_LIBINTL=no + USE_INCLUDED_LIBINTL=no + ]) + LIBINTL= + LTLIBINTL= + POSUB= + + dnl If we use NLS figure out what method + if test "$USE_NLS" = "yes"; then + gt_use_preinstalled_gnugettext=no + ifelse(gt_included_intl, yes, [ + AC_MSG_CHECKING([whether included gettext is requested]) + AC_ARG_WITH(included-gettext, + [ --with-included-gettext use the GNU gettext library included here], + nls_cv_force_use_gnu_gettext=$withval, + nls_cv_force_use_gnu_gettext=no) + AC_MSG_RESULT($nls_cv_force_use_gnu_gettext) + + nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" + if test "$nls_cv_force_use_gnu_gettext" != "yes"; then + ]) + dnl User does not insist on using GNU NLS library. Figure out what + dnl to use. If GNU gettext is available we use this. Else we have + dnl to fall back to GNU NLS library. + + dnl Add a version number to the cache macros. + define([gt_api_version], ifelse([$2], [need-formatstring-macros], 3, ifelse([$2], [need-ngettext], 2, 1))) + define([gt_cv_func_gnugettext_libc], [gt_cv_func_gnugettext]gt_api_version[_libc]) + define([gt_cv_func_gnugettext_libintl], [gt_cv_func_gnugettext]gt_api_version[_libintl]) + + AC_CACHE_CHECK([for GNU gettext in libc], gt_cv_func_gnugettext_libc, + [AC_TRY_LINK([#include +]ifelse([$2], [need-formatstring-macros], +[#ifndef __GNU_GETTEXT_SUPPORTED_REVISION +#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) +#endif +changequote(,)dnl +typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; +changequote([,])dnl +], [])[extern int _nl_msg_cat_cntr; +extern int *_nl_domain_bindings;], + [bindtextdomain ("", ""); +return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_domain_bindings], + gt_cv_func_gnugettext_libc=yes, + gt_cv_func_gnugettext_libc=no)]) + + if test "$gt_cv_func_gnugettext_libc" != "yes"; then + dnl Sometimes libintl requires libiconv, so first search for libiconv. + ifelse(gt_included_intl, yes, , [ + AM_ICONV_LINK + ]) + dnl Search for libintl and define LIBINTL, LTLIBINTL and INCINTL + dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv]) + dnl because that would add "-liconv" to LIBINTL and LTLIBINTL + dnl even if libiconv doesn't exist. + AC_LIB_LINKFLAGS_BODY([intl]) + AC_CACHE_CHECK([for GNU gettext in libintl], + gt_cv_func_gnugettext_libintl, + [gt_save_CPPFLAGS="$CPPFLAGS" + CPPFLAGS="$CPPFLAGS $INCINTL" + gt_save_LIBS="$LIBS" + LIBS="$LIBS $LIBINTL" + dnl Now see whether libintl exists and does not depend on libiconv. + AC_TRY_LINK([#include +]ifelse([$2], [need-formatstring-macros], +[#ifndef __GNU_GETTEXT_SUPPORTED_REVISION +#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) +#endif +changequote(,)dnl +typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; +changequote([,])dnl +], [])[extern int _nl_msg_cat_cntr; +extern +#ifdef __cplusplus +"C" +#endif +const char *_nl_expand_alias ();], + [bindtextdomain ("", ""); +return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_expand_alias (0)], + gt_cv_func_gnugettext_libintl=yes, + gt_cv_func_gnugettext_libintl=no) + dnl Now see whether libintl exists and depends on libiconv. + if test "$gt_cv_func_gnugettext_libintl" != yes && test -n "$LIBICONV"; then + LIBS="$LIBS $LIBICONV" + AC_TRY_LINK([#include +]ifelse([$2], [need-formatstring-macros], +[#ifndef __GNU_GETTEXT_SUPPORTED_REVISION +#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) +#endif +changequote(,)dnl +typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; +changequote([,])dnl +], [])[extern int _nl_msg_cat_cntr; +extern +#ifdef __cplusplus +"C" +#endif +const char *_nl_expand_alias ();], + [bindtextdomain ("", ""); +return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_expand_alias (0)], + [LIBINTL="$LIBINTL $LIBICONV" + LTLIBINTL="$LTLIBINTL $LTLIBICONV" + gt_cv_func_gnugettext_libintl=yes + ]) + fi + CPPFLAGS="$gt_save_CPPFLAGS" + LIBS="$gt_save_LIBS"]) + fi + + dnl If an already present or preinstalled GNU gettext() is found, + dnl use it. But if this macro is used in GNU gettext, and GNU + dnl gettext is already preinstalled in libintl, we update this + dnl libintl. (Cf. the install rule in intl/Makefile.in.) + if test "$gt_cv_func_gnugettext_libc" = "yes" \ + || { test "$gt_cv_func_gnugettext_libintl" = "yes" \ + && test "$PACKAGE" != gettext; }; then + gt_use_preinstalled_gnugettext=yes + else + dnl Reset the values set by searching for libintl. + LIBINTL= + LTLIBINTL= + INCINTL= + fi + + ifelse(gt_included_intl, yes, [ + if test "$gt_use_preinstalled_gnugettext" != "yes"; then + dnl GNU gettext is not found in the C library. + dnl Fall back on included GNU gettext library. + nls_cv_use_gnu_gettext=yes + fi + fi + + if test "$nls_cv_use_gnu_gettext" = "yes"; then + dnl Mark actions used to generate GNU NLS library. + INTLOBJS="\$(GETTOBJS)" + BUILD_INCLUDED_LIBINTL=yes + USE_INCLUDED_LIBINTL=yes + LIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LIBICONV" + LTLIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LTLIBICONV" + LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` + fi + + if test "$gt_use_preinstalled_gnugettext" = "yes" \ + || test "$nls_cv_use_gnu_gettext" = "yes"; then + dnl Mark actions to use GNU gettext tools. + CATOBJEXT=.gmo + fi + ]) + + if test "$gt_use_preinstalled_gnugettext" = "yes" \ + || test "$nls_cv_use_gnu_gettext" = "yes"; then + AC_DEFINE(ENABLE_NLS, 1, + [Define to 1 if translation of program messages to the user's native language + is requested.]) + else + USE_NLS=no + fi + fi + + if test "$USE_NLS" = "yes"; then + + if test "$gt_use_preinstalled_gnugettext" = "yes"; then + if test "$gt_cv_func_gnugettext_libintl" = "yes"; then + AC_MSG_CHECKING([how to link with libintl]) + AC_MSG_RESULT([$LIBINTL]) + AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCINTL]) + fi + + dnl For backward compatibility. Some packages may be using this. + AC_DEFINE(HAVE_GETTEXT, 1, + [Define if the GNU gettext() function is already present or preinstalled.]) + AC_DEFINE(HAVE_DCGETTEXT, 1, + [Define if the GNU dcgettext() function is already present or preinstalled.]) + fi + + dnl We need to process the po/ directory. + POSUB=po + fi + + ifelse(gt_included_intl, yes, [ + dnl If this is used in GNU gettext we have to set BUILD_INCLUDED_LIBINTL + dnl to 'yes' because some of the testsuite requires it. + if test "$PACKAGE" = gettext; then + BUILD_INCLUDED_LIBINTL=yes + fi + + dnl Make all variables we use known to autoconf. + AC_SUBST(BUILD_INCLUDED_LIBINTL) + AC_SUBST(USE_INCLUDED_LIBINTL) + AC_SUBST(CATOBJEXT) + AC_SUBST(INTLOBJS) + + dnl For backward compatibility. Some configure.ins may be using this. + nls_cv_header_intl= + nls_cv_header_libgt= + + dnl For backward compatibility. Some Makefiles may be using this. + DATADIRNAME=share + AC_SUBST(DATADIRNAME) + + dnl For backward compatibility. Some Makefiles may be using this. + INSTOBJEXT=.mo + AC_SUBST(INSTOBJEXT) + + dnl For backward compatibility. Some Makefiles may be using this. + GENCAT=gencat + AC_SUBST(GENCAT) + + dnl Enable libtool support if the surrounding package wishes it. + INTL_LIBTOOL_SUFFIX_PREFIX=gt_libtool_suffix_prefix + AC_SUBST(INTL_LIBTOOL_SUFFIX_PREFIX) + ]) + + dnl For backward compatibility. Some Makefiles may be using this. + INTLLIBS="$LIBINTL" + AC_SUBST(INTLLIBS) + + dnl Make all documented variables known to autoconf. + AC_SUBST(LIBINTL) + AC_SUBST(LTLIBINTL) + AC_SUBST(POSUB) +]) + + +dnl Checks for all prerequisites of the po subdirectory, +dnl except for USE_NLS. +AC_DEFUN([AM_PO_SUBDIRS], +[ + AC_REQUIRE([AC_PROG_MAKE_SET])dnl + AC_REQUIRE([AC_PROG_INSTALL])dnl + AC_REQUIRE([AM_MKINSTALLDIRS])dnl + + dnl Perform the following tests also if --disable-nls has been given, + dnl because they are needed for "make dist" to work. + + dnl Search for GNU msgfmt in the PATH. + dnl The first test excludes Solaris msgfmt and early GNU msgfmt versions. + dnl The second test excludes FreeBSD msgfmt. + AM_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, + [$ac_dir/$ac_word --statistics /dev/null >/dev/null 2>&1 && + (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], + :) + AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) + + dnl Search for GNU xgettext 0.11 or newer in the PATH. + dnl The first test excludes Solaris xgettext and early GNU xgettext versions. + dnl The second test excludes FreeBSD xgettext. + AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, + [$ac_dir/$ac_word --omit-header --copyright-holder= /dev/null >/dev/null 2>&1 && + (if $ac_dir/$ac_word --omit-header --copyright-holder= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], + :) + dnl Remove leftover from FreeBSD xgettext call. + rm -f messages.po + + dnl Search for GNU msgmerge 0.11 or newer in the PATH. + AM_PATH_PROG_WITH_TEST(MSGMERGE, msgmerge, + [$ac_dir/$ac_word --update -q /dev/null /dev/null >/dev/null 2>&1], :) + + dnl This could go away some day; the PATH_PROG_WITH_TEST already does it. + dnl Test whether we really found GNU msgfmt. + if test "$GMSGFMT" != ":"; then + dnl If it is no GNU msgfmt we define it as : so that the + dnl Makefiles still can work. + if $GMSGFMT --statistics /dev/null >/dev/null 2>&1 && + (if $GMSGFMT --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then + : ; + else + GMSGFMT=`echo "$GMSGFMT" | sed -e 's,^.*/,,'` + AC_MSG_RESULT( + [found $GMSGFMT program is not GNU msgfmt; ignore it]) + GMSGFMT=":" + fi + fi + + dnl This could go away some day; the PATH_PROG_WITH_TEST already does it. + dnl Test whether we really found GNU xgettext. + if test "$XGETTEXT" != ":"; then + dnl If it is no GNU xgettext we define it as : so that the + dnl Makefiles still can work. + if $XGETTEXT --omit-header --copyright-holder= /dev/null >/dev/null 2>&1 && + (if $XGETTEXT --omit-header --copyright-holder= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then + : ; + else + AC_MSG_RESULT( + [found xgettext program is not GNU xgettext; ignore it]) + XGETTEXT=":" + fi + dnl Remove leftover from FreeBSD xgettext call. + rm -f messages.po + fi + + AC_OUTPUT_COMMANDS([ + for ac_file in $CONFIG_FILES; do + # Support "outfile[:infile[:infile...]]" + case "$ac_file" in + *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; + esac + # PO directories have a Makefile.in generated from Makefile.in.in. + case "$ac_file" in */Makefile.in) + # Adjust a relative srcdir. + ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` + ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" + ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` + # In autoconf-2.13 it is called $ac_given_srcdir. + # In autoconf-2.50 it is called $srcdir. + test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" + case "$ac_given_srcdir" in + .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; + /*) top_srcdir="$ac_given_srcdir" ;; + *) top_srcdir="$ac_dots$ac_given_srcdir" ;; + esac + if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then + rm -f "$ac_dir/POTFILES" + test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" + cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" + # ALL_LINGUAS, POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES depend + # on $ac_dir but don't depend on user-specified configuration + # parameters. + if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then + # The LINGUAS file contains the set of available languages. + if test -n "$ALL_LINGUAS"; then + test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" + fi + ALL_LINGUAS_=`sed -e "/^#/d" "$ac_given_srcdir/$ac_dir/LINGUAS"` + # Hide the ALL_LINGUAS assigment from automake. + eval 'ALL_LINGUAS''=$ALL_LINGUAS_' + fi + case "$ac_given_srcdir" in + .) srcdirpre= ;; + *) srcdirpre='$(srcdir)/' ;; + esac + POFILES= + GMOFILES= + UPDATEPOFILES= + DUMMYPOFILES= + for lang in $ALL_LINGUAS; do + POFILES="$POFILES $srcdirpre$lang.po" + GMOFILES="$GMOFILES $srcdirpre$lang.gmo" + UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" + DUMMYPOFILES="$DUMMYPOFILES $lang.nop" + done + # CATALOGS depends on both $ac_dir and the user's LINGUAS + # environment variable. + INST_LINGUAS= + if test -n "$ALL_LINGUAS"; then + for presentlang in $ALL_LINGUAS; do + useit=no + if test "%UNSET%" != "$LINGUAS"; then + desiredlanguages="$LINGUAS" + else + desiredlanguages="$ALL_LINGUAS" + fi + for desiredlang in $desiredlanguages; do + # Use the presentlang catalog if desiredlang is + # a. equal to presentlang, or + # b. a variant of presentlang (because in this case, + # presentlang can be used as a fallback for messages + # which are not translated in the desiredlang catalog). + case "$desiredlang" in + "$presentlang"*) useit=yes;; + esac + done + if test $useit = yes; then + INST_LINGUAS="$INST_LINGUAS $presentlang" + fi + done + fi + CATALOGS= + if test -n "$INST_LINGUAS"; then + for lang in $INST_LINGUAS; do + CATALOGS="$CATALOGS $lang.gmo" + done + fi + test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" + sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" + for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do + if test -f "$f"; then + case "$f" in + *.orig | *.bak | *~) ;; + *) cat "$f" >> "$ac_dir/Makefile" ;; + esac + fi + done + fi + ;; + esac + done], + [# Capture the value of obsolete ALL_LINGUAS because we need it to compute + # POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES, CATALOGS. But hide it + # from automake. + eval 'ALL_LINGUAS''="$ALL_LINGUAS"' + # Capture the value of LINGUAS because we need it to compute CATALOGS. + LINGUAS="${LINGUAS-%UNSET%}" + ]) +]) + + +dnl Checks for all prerequisites of the intl subdirectory, +dnl except for INTL_LIBTOOL_SUFFIX_PREFIX (and possibly LIBTOOL), INTLOBJS, +dnl USE_INCLUDED_LIBINTL, BUILD_INCLUDED_LIBINTL. +AC_DEFUN([AM_INTL_SUBDIR], +[ + AC_REQUIRE([AC_PROG_INSTALL])dnl + AC_REQUIRE([AM_MKINSTALLDIRS])dnl + AC_REQUIRE([AC_PROG_CC])dnl + AC_REQUIRE([AC_CANONICAL_HOST])dnl + AC_REQUIRE([AC_PROG_RANLIB])dnl + AC_REQUIRE([AC_ISC_POSIX])dnl + AC_REQUIRE([AC_HEADER_STDC])dnl + AC_REQUIRE([AC_C_CONST])dnl + AC_REQUIRE([AC_C_INLINE])dnl + AC_REQUIRE([AC_TYPE_OFF_T])dnl + AC_REQUIRE([AC_TYPE_SIZE_T])dnl + AC_REQUIRE([AC_FUNC_ALLOCA])dnl + AC_REQUIRE([AC_FUNC_MMAP])dnl + AC_REQUIRE([jm_GLIBC21])dnl + AC_REQUIRE([gt_INTDIV0])dnl + AC_REQUIRE([jm_AC_TYPE_UINTMAX_T])dnl + AC_REQUIRE([gt_INTTYPES_PRI])dnl + + AC_CHECK_HEADERS([argz.h limits.h locale.h nl_types.h malloc.h stddef.h \ +stdlib.h string.h unistd.h sys/param.h]) + AC_CHECK_FUNCS([feof_unlocked fgets_unlocked getc_unlocked getcwd getegid \ +geteuid getgid getuid mempcpy munmap putenv setenv setlocale stpcpy \ +strcasecmp strdup strtoul tsearch __argz_count __argz_stringify __argz_next]) + + AM_ICONV + AM_LANGINFO_CODESET + if test $ac_cv_header_locale_h = yes; then + AM_LC_MESSAGES + fi + + dnl intl/plural.c is generated from intl/plural.y. It requires bison, + dnl because plural.y uses bison specific features. It requires at least + dnl bison-1.26 because earlier versions generate a plural.c that doesn't + dnl compile. + dnl bison is only needed for the maintainer (who touches plural.y). But in + dnl order to avoid separate Makefiles or --enable-maintainer-mode, we put + dnl the rule in general Makefile. Now, some people carelessly touch the + dnl files or have a broken "make" program, hence the plural.c rule will + dnl sometimes fire. To avoid an error, defines BISON to ":" if it is not + dnl present or too old. + AC_CHECK_PROGS([INTLBISON], [bison]) + if test -z "$INTLBISON"; then + ac_verc_fail=yes + else + dnl Found it, now check the version. + AC_MSG_CHECKING([version of bison]) +changequote(<<,>>)dnl + ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'` + case $ac_prog_version in + '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;; + 1.2[6-9]* | 1.[3-9][0-9]* | [2-9].*) +changequote([,])dnl + ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;; + *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;; + esac + AC_MSG_RESULT([$ac_prog_version]) + fi + if test $ac_verc_fail = yes; then + INTLBISON=: + fi +]) + + +AC_DEFUN([AM_MKINSTALLDIRS], +[ + dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly + dnl find the mkinstalldirs script in another subdir but $(top_srcdir). + dnl Try to locate is. + MKINSTALLDIRS= + if test -n "$ac_aux_dir"; then + MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" + fi + if test -z "$MKINSTALLDIRS"; then + MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" + fi + AC_SUBST(MKINSTALLDIRS) +]) + + +dnl Usage: AM_GNU_GETTEXT_VERSION([gettext-version]) +AC_DEFUN([AM_GNU_GETTEXT_VERSION], []) diff --git a/src/apps/bin/coreutils-5.0/m4/gettimeofday.m4 b/src/apps/bin/coreutils-5.0/m4/gettimeofday.m4 new file mode 100644 index 0000000000..19ed0bfa6b --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/gettimeofday.m4 @@ -0,0 +1,69 @@ +#serial 2 + +dnl From Jim Meyering. +dnl +dnl See if gettimeofday clobbers the static buffer that localtime uses +dnl for it's return value. The gettimeofday function from Mac OS X 10.0.4, +dnl i.e. Darwin 1.3.7 has this problem. +dnl +dnl If it does, then arrange to use gettimeofday and localtime only via +dnl the wrapper functions that work around the problem. + +AC_DEFUN([AC_FUNC_GETTIMEOFDAY_CLOBBER], +[ + AC_REQUIRE([AC_HEADER_TIME]) + AC_CHECK_HEADERS(string.h stdlib.h) + AC_CACHE_CHECK([whether gettimeofday clobbers localtime buffer], + jm_cv_func_gettimeofday_clobber, + [AC_TRY_RUN([ +#include +#if HAVE_STRING_H +# include +#endif + +#if TIME_WITH_SYS_TIME +# include +# include +#else +# if HAVE_SYS_TIME_H +# include +# else +# include +# endif +#endif + +#if HAVE_STDLIB_H +# include +#endif + +int +main () +{ + time_t t = 0; + struct tm *lt; + struct tm saved_lt; + struct timeval tv; + lt = localtime (&t); + saved_lt = *lt; + gettimeofday (&tv, NULL); + if (memcmp (lt, &saved_lt, sizeof (struct tm)) != 0) + exit (1); + + exit (0); +} + ], + jm_cv_func_gettimeofday_clobber=no, + jm_cv_func_gettimeofday_clobber=yes, + dnl When crosscompiling, assume it is broken. + jm_cv_func_gettimeofday_clobber=yes) + ]) + if test $jm_cv_func_gettimeofday_clobber = yes; then + AC_LIBOBJ(gettimeofday) + AC_DEFINE(localtime, rpl_localtime, + [Define to rpl_localtime if the replacement function should be used.]) + AC_DEFINE(gettimeofday, rpl_gettimeofday, + [Define to rpl_gettimeofday if the replacement function should be used.]) + AC_DEFINE(GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, 1, + [Define if gettimeofday clobbers localtime's static buffer.]) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/glibc.m4 b/src/apps/bin/coreutils-5.0/m4/glibc.m4 new file mode 100644 index 0000000000..687405768d --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/glibc.m4 @@ -0,0 +1,35 @@ +#serial 3 + +dnl From Gordon Matzigkeit. +dnl Test for the GNU C Library. +dnl FIXME: this should migrate into libit. + +AC_DEFUN([AM_GLIBC], + [ + AC_CACHE_CHECK(whether we are using the GNU C Library, + ac_cv_gnu_library, + [AC_EGREP_CPP([Thanks for using GNU], + [ +#include +#ifdef __GNU_LIBRARY__ + Thanks for using GNU +#endif + ], + ac_cv_gnu_library=yes, + ac_cv_gnu_library=no) + ] + ) + AC_CACHE_CHECK(for version 2 of the GNU C Library, + ac_cv_glibc, + [AC_EGREP_CPP([Thanks for using GNU too], + [ +#include +#ifdef __GLIBC__ + Thanks for using GNU too +#endif + ], + ac_cv_glibc=yes, ac_cv_glibc=no) + ] + ) + ] +) diff --git a/src/apps/bin/coreutils-5.0/m4/glibc21.m4 b/src/apps/bin/coreutils-5.0/m4/glibc21.m4 new file mode 100644 index 0000000000..9c9f3db303 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/glibc21.m4 @@ -0,0 +1,32 @@ +# glibc21.m4 serial 2 (fileutils-4.1.3, gettext-0.10.40) +dnl Copyright (C) 2000-2002 Free Software Foundation, Inc. +dnl This file is free software, distributed under the terms of the GNU +dnl General Public License. As a special exception to the GNU General +dnl Public License, this file may be distributed as part of a program +dnl that contains a configuration script generated by Autoconf, under +dnl the same distribution terms as the rest of that program. + +# Test for the GNU C Library, version 2.1 or newer. +# From Bruno Haible. + +AC_DEFUN([jm_GLIBC21], + [ + AC_CACHE_CHECK(whether we are using the GNU C Library 2.1 or newer, + ac_cv_gnu_library_2_1, + [AC_EGREP_CPP([Lucky GNU user], + [ +#include +#ifdef __GNU_LIBRARY__ + #if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2) + Lucky GNU user + #endif +#endif + ], + ac_cv_gnu_library_2_1=yes, + ac_cv_gnu_library_2_1=no) + ] + ) + AC_SUBST(GLIBC21) + GLIBC21="$ac_cv_gnu_library_2_1" + ] +) diff --git a/src/apps/bin/coreutils-5.0/m4/group-member.m4 b/src/apps/bin/coreutils-5.0/m4/group-member.m4 new file mode 100644 index 0000000000..2a8f0427e6 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/group-member.m4 @@ -0,0 +1,11 @@ +#serial 3 + +dnl Written by Jim Meyering + +AC_DEFUN([jm_FUNC_GROUP_MEMBER], + [ + dnl Do this replacement check manually because I want the hyphen + dnl (not the underscore) in the filename. + AC_CHECK_FUNC(group_member, , [AC_LIBOBJ(group-member)]) + ] +) diff --git a/src/apps/bin/coreutils-5.0/m4/host-os.m4 b/src/apps/bin/coreutils-5.0/m4/host-os.m4 new file mode 100644 index 0000000000..d2ed937f81 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/host-os.m4 @@ -0,0 +1,72 @@ +#serial 2 + +dnl From Paul Eggert. + +# Define HOST_OPERATING_SYSTEM to a name for the host operating system. +AC_DEFUN([UTILS_HOST_OS], +[ + AC_CACHE_CHECK([host operating system], + utils_cv_host_operating_system, + + [[case $host_os in + + # These operating system names do not use the default heuristic below. + # They are in reverse order, so that more-specific prefixes come first. + winnt*) os='Windows NT';; + vos*) os='VOS';; + sysv*) os='Unix System V';; + superux*) os='SUPER-UX';; + sunos*) os='SunOS';; + stop*) os='STOP';; + sco*) os='SCO Unix';; + riscos*) os='RISC OS';; + riscix*) os='RISCiX';; + qnx*) os='QNX';; + pw32*) os='PW32';; + ptx*) os='ptx';; + plan9*) os='Plan 9';; + osf*) os='Tru64';; + os2*) os='OS/2';; + openbsd*) os='OpenBSD';; + nsk*) os='NonStop Kernel';; + nonstopux*) os='NonStop-UX';; + netbsd*) os='NetBSD';; + msdosdjgpp*) os='DJGPP';; + mpeix*) os='MPE/iX';; + mint*) os='MiNT';; + mingw*) os='MinGW';; + lynxos*) os='LynxOS';; + linux*) os='GNU/Linux';; + hpux*) os='HP-UX';; + hiux*) os='HI-UX';; + gnu*) os='GNU';; + freebsd*-gnu*) os='GNU/FreeBSD';; + freebsd*) os='FreeBSD';; + dgux*) os='DG/UX';; + bsdi*) os='BSD/OS';; + bsd*) os='BSD';; + beos*) os='BeOS';; + aux*) os='A/UX';; + atheos*) os='AtheOS';; + amigaos*) os='Amiga OS';; + aix*) os='AIX';; + + # The default heuristic takes the initial alphabetic string + # from $host_os, but capitalizes its first letter. + [A-Za-z]*) + os=` + expr "X$host_os" : 'X\([A-Za-z]\)' | tr '[a-z]' '[A-Z]' + `` + expr "X$host_os" : 'X.\([A-Za-z]*\)' + ` + ;; + + # If $host_os does not start with an alphabetic string, use it unchanged. + *) + os=$host_os;; + esac + utils_cv_host_operating_system=$os]]) + AC_DEFINE_UNQUOTED(HOST_OPERATING_SYSTEM, + "$utils_cv_host_operating_system", + [The host operating system.]) +]) diff --git a/src/apps/bin/coreutils-5.0/m4/iconv.m4 b/src/apps/bin/coreutils-5.0/m4/iconv.m4 new file mode 100644 index 0000000000..c5f3579827 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/iconv.m4 @@ -0,0 +1,103 @@ +# iconv.m4 serial AM4 (gettext-0.11.3) +dnl Copyright (C) 2000-2002 Free Software Foundation, Inc. +dnl This file is free software, distributed under the terms of the GNU +dnl General Public License. As a special exception to the GNU General +dnl Public License, this file may be distributed as part of a program +dnl that contains a configuration script generated by Autoconf, under +dnl the same distribution terms as the rest of that program. + +dnl From Bruno Haible. + +AC_DEFUN([AM_ICONV_LINKFLAGS_BODY], +[ + dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. + AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) + AC_REQUIRE([AC_LIB_RPATH]) + + dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV + dnl accordingly. + AC_LIB_LINKFLAGS_BODY([iconv]) +]) + +AC_DEFUN([AM_ICONV_LINK], +[ + dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and + dnl those with the standalone portable GNU libiconv installed). + + dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV + dnl accordingly. + AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) + + dnl Add $INCICONV to CPPFLAGS before performing the following checks, + dnl because if the user has installed libiconv and not disabled its use + dnl via --without-libiconv-prefix, he wants to use it. The first + dnl AC_TRY_LINK will then fail, the second AC_TRY_LINK will succeed. + am_save_CPPFLAGS="$CPPFLAGS" + AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCICONV]) + + AC_CACHE_CHECK(for iconv, am_cv_func_iconv, [ + am_cv_func_iconv="no, consider installing GNU libiconv" + am_cv_lib_iconv=no + AC_TRY_LINK([#include +#include ], + [iconv_t cd = iconv_open("",""); + iconv(cd,NULL,NULL,NULL,NULL); + iconv_close(cd);], + am_cv_func_iconv=yes) + if test "$am_cv_func_iconv" != yes; then + am_save_LIBS="$LIBS" + LIBS="$LIBS $LIBICONV" + AC_TRY_LINK([#include +#include ], + [iconv_t cd = iconv_open("",""); + iconv(cd,NULL,NULL,NULL,NULL); + iconv_close(cd);], + am_cv_lib_iconv=yes + am_cv_func_iconv=yes) + LIBS="$am_save_LIBS" + fi + ]) + if test "$am_cv_func_iconv" = yes; then + AC_DEFINE(HAVE_ICONV, 1, [Define if you have the iconv() function.]) + fi + if test "$am_cv_lib_iconv" = yes; then + AC_MSG_CHECKING([how to link with libiconv]) + AC_MSG_RESULT([$LIBICONV]) + else + dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV + dnl either. + CPPFLAGS="$am_save_CPPFLAGS" + LIBICONV= + LTLIBICONV= + fi + AC_SUBST(LIBICONV) + AC_SUBST(LTLIBICONV) +]) + +AC_DEFUN([AM_ICONV], +[ + AM_ICONV_LINK + if test "$am_cv_func_iconv" = yes; then + AC_MSG_CHECKING([for iconv declaration]) + AC_CACHE_VAL(am_cv_proto_iconv, [ + AC_TRY_COMPILE([ +#include +#include +extern +#ifdef __cplusplus +"C" +#endif +#if defined(__STDC__) || defined(__cplusplus) +size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); +#else +size_t iconv(); +#endif +], [], am_cv_proto_iconv_arg1="", am_cv_proto_iconv_arg1="const") + am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"]) + am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` + AC_MSG_RESULT([$]{ac_t:- + }[$]am_cv_proto_iconv) + AC_DEFINE_UNQUOTED(ICONV_CONST, $am_cv_proto_iconv_arg1, + [Define as const if the declaration of iconv() needs const.]) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/intdiv0.m4 b/src/apps/bin/coreutils-5.0/m4/intdiv0.m4 new file mode 100644 index 0000000000..55dddcf1c2 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/intdiv0.m4 @@ -0,0 +1,72 @@ +# intdiv0.m4 serial 1 (gettext-0.11.3) +dnl Copyright (C) 2002 Free Software Foundation, Inc. +dnl This file is free software, distributed under the terms of the GNU +dnl General Public License. As a special exception to the GNU General +dnl Public License, this file may be distributed as part of a program +dnl that contains a configuration script generated by Autoconf, under +dnl the same distribution terms as the rest of that program. + +dnl From Bruno Haible. + +AC_DEFUN([gt_INTDIV0], +[ + AC_REQUIRE([AC_PROG_CC])dnl + AC_REQUIRE([AC_CANONICAL_HOST])dnl + + AC_CACHE_CHECK([whether integer division by zero raises SIGFPE], + gt_cv_int_divbyzero_sigfpe, + [ + AC_TRY_RUN([ +#include +#include + +static void +#ifdef __cplusplus +sigfpe_handler (int sig) +#else +sigfpe_handler (sig) int sig; +#endif +{ + /* Exit with code 0 if SIGFPE, with code 1 if any other signal. */ + exit (sig != SIGFPE); +} + +int x = 1; +int y = 0; +int z; +int nan; + +int main () +{ + signal (SIGFPE, sigfpe_handler); +/* IRIX and AIX (when "xlc -qcheck" is used) yield signal SIGTRAP. */ +#if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP) + signal (SIGTRAP, sigfpe_handler); +#endif +/* Linux/SPARC yields signal SIGILL. */ +#if defined (__sparc__) && defined (__linux__) + signal (SIGILL, sigfpe_handler); +#endif + + z = x / y; + nan = y / y; + exit (1); +} +], gt_cv_int_divbyzero_sigfpe=yes, gt_cv_int_divbyzero_sigfpe=no, + [ + # Guess based on the CPU. + case "$host_cpu" in + alpha* | i[34567]86 | m68k | s390*) + gt_cv_int_divbyzero_sigfpe="guessing yes";; + *) + gt_cv_int_divbyzero_sigfpe="guessing no";; + esac + ]) + ]) + case "$gt_cv_int_divbyzero_sigfpe" in + *yes) value=1;; + *) value=0;; + esac + AC_DEFINE_UNQUOTED(INTDIV0_RAISES_SIGFPE, $value, + [Define if integer division by zero raises signal SIGFPE.]) +]) diff --git a/src/apps/bin/coreutils-5.0/m4/inttypes-pri.m4 b/src/apps/bin/coreutils-5.0/m4/inttypes-pri.m4 new file mode 100644 index 0000000000..f931b00985 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/inttypes-pri.m4 @@ -0,0 +1,34 @@ +# inttypes-pri.m4 serial 1001 (based on gettext-0.11.4's `serial 1') +dnl Copyright (C) 1997-2002 Free Software Foundation, Inc. +dnl This file is free software, distributed under the terms of the GNU +dnl General Public License. As a special exception to the GNU General +dnl Public License, this file may be distributed as part of a program +dnl that contains a configuration script generated by Autoconf, under +dnl the same distribution terms as the rest of that program. + +dnl From Bruno Haible. + +# Define PRI_MACROS_BROKEN if exists and defines the PRI* +# macros to non-string values. This is the case on AIX 4.3.3. + +AC_DEFUN([gt_INTTYPES_PRI], +[ + # autoconf-2.52 has a proper check for inttypes.h. + AC_PREREQ(2.52) + + if test $ac_cv_header_inttypes_h = yes; then + AC_CACHE_CHECK([whether the inttypes.h PRIxNN macros are broken], + gt_cv_inttypes_pri_broken, + [ + AC_TRY_COMPILE([#include +#ifdef PRId32 +char *p = PRId32; +#endif +], [], gt_cv_inttypes_pri_broken=no, gt_cv_inttypes_pri_broken=yes) + ]) + fi + if test "$gt_cv_inttypes_pri_broken" = yes; then + AC_DEFINE_UNQUOTED(PRI_MACROS_BROKEN, 1, + [Define if exists and defines unusable PRI* macros.]) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/inttypes.m4 b/src/apps/bin/coreutils-5.0/m4/inttypes.m4 new file mode 100644 index 0000000000..9571814f53 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/inttypes.m4 @@ -0,0 +1,32 @@ +#serial 6 + +dnl From Paul Eggert. + +AC_PREREQ(2.52) + +# Define intmax_t to long or long long if doesn't define. + +AC_DEFUN([jm_AC_TYPE_INTMAX_T], +[ + AC_REQUIRE([jm_AC_TYPE_LONG_LONG]) + AC_CHECK_TYPE(intmax_t, , + [test $ac_cv_type_long_long = yes \ + && ac_type='long long' \ + || ac_type='long' + AC_DEFINE_UNQUOTED(intmax_t, $ac_type, + [Define to widest signed type if doesn't define.])]) +]) + +# Define uintmax_t to unsigned long or unsigned long long +# if doesn't define. + +AC_DEFUN([jm_AC_TYPE_UINTMAX_T], +[ + AC_REQUIRE([jm_AC_TYPE_UNSIGNED_LONG_LONG]) + AC_CHECK_TYPE(uintmax_t, , + [test $ac_cv_type_unsigned_long_long = yes \ + && ac_type='unsigned long long' \ + || ac_type='unsigned long' + AC_DEFINE_UNQUOTED(uintmax_t, $ac_type, + [Define to widest unsigned type if doesn't define.])]) +]) diff --git a/src/apps/bin/coreutils-5.0/m4/isc-posix.m4 b/src/apps/bin/coreutils-5.0/m4/isc-posix.m4 new file mode 100644 index 0000000000..1319dd1c70 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/isc-posix.m4 @@ -0,0 +1,26 @@ +# isc-posix.m4 serial 2 (gettext-0.11.2) +dnl Copyright (C) 1995-2002 Free Software Foundation, Inc. +dnl This file is free software, distributed under the terms of the GNU +dnl General Public License. As a special exception to the GNU General +dnl Public License, this file may be distributed as part of a program +dnl that contains a configuration script generated by Autoconf, under +dnl the same distribution terms as the rest of that program. + +# This file is not needed with autoconf-2.53 and newer. Remove it in 2005. + +# This test replaces the one in autoconf. +# Currently this macro should have the same name as the autoconf macro +# because gettext's gettext.m4 (distributed in the automake package) +# still uses it. Otherwise, the use in gettext.m4 makes autoheader +# give these diagnostics: +# configure.in:556: AC_TRY_COMPILE was called before AC_ISC_POSIX +# configure.in:556: AC_TRY_RUN was called before AC_ISC_POSIX + +undefine([AC_ISC_POSIX]) + +AC_DEFUN([AC_ISC_POSIX], + [ + dnl This test replaces the obsolescent AC_ISC_POSIX kludge. + AC_CHECK_LIB(cposix, strerror, [LIBS="$LIBS -lcposix"]) + ] +) diff --git a/src/apps/bin/coreutils-5.0/m4/jm-glibc-io.m4 b/src/apps/bin/coreutils-5.0/m4/jm-glibc-io.m4 new file mode 100644 index 0000000000..e8054f0bd2 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/jm-glibc-io.m4 @@ -0,0 +1,14 @@ +#serial 7 -*- autoconf -*- + +dnl From Jim Meyering. +dnl +dnl See if the glibc *_unlocked I/O macros are available. +dnl Use only those *_unlocked macros that are declared. +dnl + +AC_DEFUN([jm_FUNC_GLIBC_UNLOCKED_IO], + [AC_CHECK_DECLS( + [clearerr_unlocked, feof_unlocked, ferror_unlocked, + fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked, + fread_unlocked, fwrite_unlocked, getc_unlocked, + getchar_unlocked, putc_unlocked, putchar_unlocked])]) diff --git a/src/apps/bin/coreutils-5.0/m4/jm-macros.m4 b/src/apps/bin/coreutils-5.0/m4/jm-macros.m4 new file mode 100644 index 0000000000..f4143b1a3b --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/jm-macros.m4 @@ -0,0 +1,344 @@ +#serial 61 -*- autoconf -*- + +m4_undefine([AC_LANG_SOURCE(C)]) +dnl The following is identical to the definition in c.m4 +dnl from the autoconf cvs repository on 2003-03-07. +dnl FIXME: remove this code once we upgrade to autoconf-2.58. + +# We can't use '#line $LINENO "configure"' here, since +# Sun c89 (Sun WorkShop 6 update 2 C 5.3 Patch 111679-08 2002/05/09) +# rejects $LINENO greater than 32767, and some configure scripts +# are longer than 32767 lines. +m4_define([AC_LANG_SOURCE(C)], +[/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$1]) + + +dnl Misc type-related macros for fileutils, sh-utils, textutils. + +AC_DEFUN([jm_MACROS], +[ + AC_PREREQ(2.56) + + GNU_PACKAGE="GNU $PACKAGE" + AC_DEFINE_UNQUOTED(GNU_PACKAGE, "$GNU_PACKAGE", + [The concatenation of the strings `GNU ', and PACKAGE.]) + AC_SUBST(GNU_PACKAGE) + + AM_MISSING_PROG(HELP2MAN, help2man) + AC_SUBST(OPTIONAL_BIN_PROGS) + AC_SUBST(OPTIONAL_BIN_ZCRIPTS) + AC_SUBST(MAN) + AC_SUBST(DF_PROG) + + dnl This macro actually runs replacement code. See isc-posix.m4. + AC_REQUIRE([AC_ISC_POSIX])dnl + + jm_CHECK_ALL_TYPES + jm_INCLUDED_REGEX([lib/regex.c]) + + AC_REQUIRE([UTILS_HOST_OS]) + AC_REQUIRE([UTILS_FUNC_MKDIR_TRAILING_SLASH]) + AC_REQUIRE([jm_BISON]) + AC_REQUIRE([jm_ASSERT]) + AC_REQUIRE([jm_CHECK_TYPE_STRUCT_UTIMBUF]) + AC_REQUIRE([jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE]) + AC_REQUIRE([jm_CHECK_TYPE_STRUCT_DIRENT_D_INO]) + AC_REQUIRE([jm_CHECK_DECLS]) + + AC_REQUIRE([jm_PREREQ]) + + AC_REQUIRE([UTILS_FUNC_DIRFD]) + AC_REQUIRE([AC_FUNC_ACL]) + AC_REQUIRE([AC_FUNC_FTW]) + AC_REQUIRE([jm_FUNC_LCHOWN]) + AC_REQUIRE([fetish_FUNC_RMDIR_NOTEMPTY]) + AC_REQUIRE([jm_FUNC_CHOWN]) + AC_REQUIRE([jm_FUNC_MKTIME]) + AC_REQUIRE([jm_FUNC_LSTAT]) + AC_REQUIRE([AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK]) + AC_REQUIRE([jm_FUNC_STAT]) + AC_REQUIRE([AC_FUNC_REALLOC]) + AC_REQUIRE([AC_FUNC_MALLOC]) + AC_REQUIRE([AC_FUNC_STRERROR_R]) + AC_REQUIRE([jm_FUNC_NANOSLEEP]) + AC_REQUIRE([jm_FUNC_MEMCMP]) + AC_REQUIRE([jm_FUNC_GLIBC_UNLOCKED_IO]) + AC_REQUIRE([AC_FUNC_FNMATCH_GNU]) + AC_REQUIRE([jm_FUNC_GROUP_MEMBER]) + AC_REQUIRE([jm_FUNC_PUTENV]) + AC_REQUIRE([jm_AFS]) + AC_REQUIRE([jm_AC_PREREQ_XSTRTOUMAX]) + AC_REQUIRE([jm_AC_PREREQ_XSTRTOIMAX]) + AC_REQUIRE([jm_AC_FUNC_LINK_FOLLOWS_SYMLINK]) + AC_REQUIRE([AC_FUNC_ERROR_AT_LINE]) + AC_REQUIRE([jm_FUNC_GNU_STRFTIME]) + AC_REQUIRE([jm_FUNC_MKTIME]) + AC_REQUIRE([jm_FUNC_FPENDING]) + + # This is for od and stat, and any other program that + # uses the PRI.MAX macros from inttypes.h. + AC_REQUIRE([gt_INTTYPES_PRI]) + + AC_REQUIRE([jm_FUNC_GETGROUPS]) + + AC_REQUIRE([AC_FUNC_FSEEKO]) + AC_REQUIRE([AC_FUNC_VPRINTF]) + AC_REQUIRE([AC_FUNC_ALLOCA]) + + AC_CONFIG_LIBOBJ_DIR([lib]) + AC_FUNC_GETLOADAVG + + AC_REQUIRE([jm_SYS_PROC_UPTIME]) + AC_REQUIRE([jm_FUNC_FTRUNCATE]) + AC_REQUIRE([vb_FUNC_RENAME]) + + AC_REPLACE_FUNCS(strcasecmp strncasecmp) + AC_REPLACE_FUNCS(dup2) + AC_REPLACE_FUNCS(gethostname getusershell) + AC_REPLACE_FUNCS(sig2str) + AC_REPLACE_FUNCS(strcspn stpcpy strstr strtol strtoul) + AC_REPLACE_FUNCS(strpbrk) + AC_REPLACE_FUNCS(euidaccess memcmp rmdir rpmatch strndup strverscmp) + AC_REPLACE_FUNCS(atexit) + AC_REPLACE_FUNCS(getpass) + + # raise is used by at least sort and ls. + AC_REPLACE_FUNCS(raise) + + dnl used by e.g. intl/*domain.c and lib/canon-host.c + AC_REPLACE_FUNCS(strdup) + + AC_REPLACE_FUNCS(memchr memcpy memmove memrchr memset) + AC_CHECK_FUNCS(getpagesize) + + AC_REQUIRE([UTILS_FUNC_MKSTEMP]) + + # By default, argmatch should fail calling usage (1). + AC_DEFINE(ARGMATCH_DIE, [usage (1)], + [Define to the function xargmatch calls on failures.]) + AC_DEFINE(ARGMATCH_DIE_DECL, [extern void usage ()], + [Define to the declaration of the xargmatch failure function.]) + + dnl Used to define SETVBUF in sys2.h. + dnl This evokes the following warning from autoconf: + dnl ...: warning: AC_TRY_RUN called without default to allow cross compiling + AC_FUNC_SETVBUF_REVERSED + + # used by sleep and shred + # Solaris 2.5.1 needs -lposix4 to get the clock_gettime function. + # Solaris 7 prefers the library name -lrt to the obsolescent name -lposix4. + + # Save and restore LIBS so e.g., -lrt, isn't added to it. Otherwise, *all* + # programs in the package would end up linked with that potentially-shared + # library, inducing unnecessary run-time overhead. + fetish_saved_libs=$LIBS + AC_SEARCH_LIBS(clock_gettime, [rt posix4], + [LIB_CLOCK_GETTIME=$ac_cv_search_clock_gettime]) + AC_SUBST(LIB_CLOCK_GETTIME) + AC_CHECK_FUNCS(clock_gettime clock_settime) + LIBS=$fetish_saved_libs + AC_CHECK_FUNCS(gettimeofday) + AC_FUNC_GETTIMEOFDAY_CLOBBER + + AC_REQUIRE([AC_FUNC_CLOSEDIR_VOID]) + AC_REQUIRE([jm_FUNC_UTIME]) + + AC_CHECK_FUNCS( \ + bcopy \ + endgrent \ + endpwent \ + fchdir \ + fdatasync \ + ftime \ + ftruncate \ + getcwd \ + gethrtime \ + getmntinfo \ + hasmntopt \ + isascii \ + iswspace \ + lchown \ + listmntent \ + localeconv \ + memcpy \ + mempcpy \ + mkfifo \ + realpath \ + sethostname \ + strchr \ + strerror \ + strrchr \ + sysctl \ + sysinfo \ + wcrtomb \ + tzset \ + ) + + # for test.c + AC_CHECK_FUNCS(setreuid setregid) + + AM_FUNC_GETLINE + if test $am_cv_func_working_getline != yes; then + AC_CHECK_FUNCS(getdelim) + fi + AC_FUNC_OBSTACK + + AC_FUNC_STRTOD + AC_REQUIRE([UTILS_SYS_OPEN_MAX]) + AC_REQUIRE([GL_FUNC_GETCWD_PATH_MAX]) + + # See if linking `seq' requires -lm. + # It does on nearly every system. The single exception (so far) is + # BeOS which has all the math functions in the normal runtime library + # and doesn't have a separate math library. + + AC_SUBST(SEQ_LIBM) + ac_seq_body=' + static double x, y; + x = floor (x); + x = rint (x); + x = modf (x, &y);' + AC_TRY_LINK([#include ], $ac_seq_body, , + [ac_seq_save_LIBS="$LIBS" + LIBS="$LIBS -lm" + AC_TRY_LINK([#include ], $ac_seq_body, SEQ_LIBM=-lm) + LIBS="$ac_seq_save_LIBS" + ]) + + AM_LANGINFO_CODESET + jm_GLIBC21 + AM_ICONV + jm_FUNC_UNLINK_BUSY_TEXT + + # These tests are for df. + jm_LIST_MOUNTED_FILESYSTEMS([list_mounted_fs=yes], [list_mounted_fs=no]) + jm_FSTYPENAME + jm_FILE_SYSTEM_USAGE([space=yes], [space=no]) + if test $list_mounted_fs = yes && test $space = yes; then + DF_PROG='df$(EXEEXT)' + AC_LIBOBJ(fsusage) + AC_LIBOBJ(mountlist) + fi + AC_REQUIRE([jm_AC_DOS]) + AC_REQUIRE([AC_FUNC_CANONICALIZE_FILE_NAME]) + + # If any of these functions don't exist (e.g. DJGPP 2.03), + # use the corresponding stub. + AC_CHECK_FUNC([fchdir], , [AC_LIBOBJ(fchdir-stub)]) + AC_CHECK_FUNC([fchown], , [AC_LIBOBJ(fchown-stub)]) + AC_CHECK_FUNC([lstat], , [AC_LIBOBJ(lstat-stub)]) + AC_CHECK_FUNC([readlink], , [AC_LIBOBJ(readlink-stub)]) + +]) + +# These tests must be run before any use of AC_CHECK_TYPE, +# because that macro compiles code that tests e.g., HAVE_UNISTD_H. +# See the definition of ac_includes_default in `configure'. +AC_DEFUN([jm_CHECK_ALL_HEADERS], +[ + AC_CHECK_HEADERS( \ + errno.h \ + fcntl.h \ + float.h \ + hurd.h \ + limits.h \ + memory.h \ + mntent.h \ + mnttab.h \ + netdb.h \ + paths.h \ + stdlib.h \ + stddef.h \ + stdint.h \ + string.h \ + sys/filsys.h \ + sys/fs/s5param.h \ + sys/fs_types.h \ + sys/fstyp.h \ + sys/ioctl.h \ + sys/mntent.h \ + sys/mount.h \ + sys/param.h \ + sys/resource.h \ + sys/socket.h \ + sys/statfs.h \ + sys/statvfs.h \ + sys/sysctl.h \ + sys/systeminfo.h \ + sys/time.h \ + sys/timeb.h \ + sys/vfs.h \ + sys/wait.h \ + syslog.h \ + termios.h \ + unistd.h \ + utime.h \ + values.h \ + ) +]) + +# This macro must be invoked before any tests that run the compiler. +AC_DEFUN([jm_CHECK_ALL_TYPES], +[ + dnl This test must come as early as possible after the compiler configuration + dnl tests, because the choice of the file model can (in principle) affect + dnl whether functions and headers are available, whether they work, etc. + AC_REQUIRE([AC_SYS_LARGEFILE]) + + dnl This test must precede tests of compiler characteristics like + dnl that for the inline keyword, since it may change the degree to + dnl which the compiler supports such features. + AC_REQUIRE([AM_C_PROTOTYPES]) + + dnl Checks for typedefs, structures, and compiler characteristics. + AC_REQUIRE([AC_C_BIGENDIAN]) + AC_REQUIRE([AC_C_CONST]) + AC_REQUIRE([AC_C_VOLATILE]) + AC_REQUIRE([AC_C_INLINE]) + AC_REQUIRE([AC_C_LONG_DOUBLE]) + + AC_REQUIRE([jm_CHECK_ALL_HEADERS]) + AC_REQUIRE([AC_HEADER_DIRENT]) + AC_REQUIRE([AC_HEADER_STDC]) + AC_CHECK_MEMBERS( + [struct stat.st_author, + struct stat.st_blksize],,, + [$ac_includes_default +#include + ]) + AC_REQUIRE([AC_STRUCT_ST_BLOCKS]) + + AC_REQUIRE([AC_STRUCT_TM]) + AC_REQUIRE([AC_STRUCT_TIMEZONE]) + AC_REQUIRE([AC_HEADER_STAT]) + AC_REQUIRE([AC_STRUCT_ST_MTIM_NSEC]) + AC_REQUIRE([AC_STRUCT_ST_DM_MODE]) + AC_REQUIRE([jm_CHECK_TYPE_STRUCT_TIMESPEC]) + + AC_REQUIRE([AC_TYPE_GETGROUPS]) + AC_REQUIRE([AC_TYPE_MODE_T]) + AC_REQUIRE([AC_TYPE_OFF_T]) + AC_REQUIRE([AC_TYPE_PID_T]) + AC_REQUIRE([AC_TYPE_SIGNAL]) + AC_REQUIRE([AC_TYPE_SIZE_T]) + AC_REQUIRE([AC_TYPE_UID_T]) + AC_CHECK_TYPE(ino_t, unsigned long) + + dnl This relies on the fact that autoconf 2.14a's implementation of + dnl AC_CHECK_TYPE checks includes unistd.h. + AC_CHECK_TYPE(ssize_t, int) + AC_CHECK_TYPE(major_t, unsigned int) + AC_CHECK_TYPE(minor_t, unsigned int) + + AC_REQUIRE([jm_AC_TYPE_UINTMAX_T]) + AC_REQUIRE([jm_AC_TYPE_UNSIGNED_LONG_LONG]) + + AC_REQUIRE([AC_HEADER_MAJOR]) + AC_REQUIRE([AC_HEADER_DIRENT]) + +]) diff --git a/src/apps/bin/coreutils-5.0/m4/jm-mktime.m4 b/src/apps/bin/coreutils-5.0/m4/jm-mktime.m4 new file mode 100644 index 0000000000..d687c999a2 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/jm-mktime.m4 @@ -0,0 +1,16 @@ +#serial 8 + +dnl From Jim Meyering. +dnl A wrapper around AC_FUNC_MKTIME. + +AC_DEFUN([jm_FUNC_MKTIME], +[AC_REQUIRE([AC_FUNC_MKTIME])dnl + + dnl mktime.c uses localtime_r if it exists. Check for it. + AC_CHECK_FUNCS(localtime_r) + + if test $ac_cv_func_working_mktime = no; then + AC_DEFINE(mktime, rpl_mktime, + [Define to rpl_mktime if the replacement function should be used.]) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/jm-winsz1.m4 b/src/apps/bin/coreutils-5.0/m4/jm-winsz1.m4 new file mode 100644 index 0000000000..0fcb46c754 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/jm-winsz1.m4 @@ -0,0 +1,39 @@ +#serial 6 +dnl From Jim Meyering and Paul Eggert. +AC_DEFUN([jm_HEADER_TIOCGWINSZ_IN_TERMIOS_H], +[AC_REQUIRE([AC_SYS_POSIX_TERMIOS]) + AC_CACHE_CHECK([whether use of TIOCGWINSZ requires termios.h], + jm_cv_sys_tiocgwinsz_needs_termios_h, + [jm_cv_sys_tiocgwinsz_needs_termios_h=no + + if test $ac_cv_sys_posix_termios = yes; then + AC_EGREP_CPP([yes], + [#include +# include +# ifdef TIOCGWINSZ + yes +# endif + ], jm_cv_sys_tiocgwinsz_needs_termios_h=yes) + fi + ]) +]) + +AC_DEFUN([jm_WINSIZE_IN_PTEM], + [AC_REQUIRE([AC_SYS_POSIX_TERMIOS]) + AC_CACHE_CHECK([whether use of struct winsize requires sys/ptem.h], + jm_cv_sys_struct_winsize_needs_sys_ptem_h, + [jm_cv_sys_struct_winsize_needs_sys_ptem_h=yes + if test $ac_cv_sys_posix_termios = yes; then + AC_TRY_COMPILE([#include ] + [struct winsize x;], + [jm_cv_sys_struct_winsize_needs_sys_ptem_h=no]) + fi + if test $jm_cv_sys_struct_winsize_needs_sys_ptem_h = yes; then + AC_TRY_COMPILE([#include ], + [struct winsize x;], + [], [jm_cv_sys_struct_winsize_needs_sys_ptem_h=no]) + fi]) + if test $jm_cv_sys_struct_winsize_needs_sys_ptem_h = yes; then + AC_DEFINE([WINSIZE_IN_PTEM], 1, + [Define if sys/ptem.h is required for struct winsize.]) + fi]) diff --git a/src/apps/bin/coreutils-5.0/m4/jm-winsz2.m4 b/src/apps/bin/coreutils-5.0/m4/jm-winsz2.m4 new file mode 100644 index 0000000000..a7d929d04b --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/jm-winsz2.m4 @@ -0,0 +1,23 @@ +#serial 4 + +AC_DEFUN([jm_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL], +[AC_REQUIRE([jm_HEADER_TIOCGWINSZ_IN_TERMIOS_H]) + AC_CACHE_CHECK([whether use of TIOCGWINSZ requires sys/ioctl.h], + jm_cv_sys_tiocgwinsz_needs_sys_ioctl_h, + [jm_cv_sys_tiocgwinsz_needs_sys_ioctl_h=no + + if test $jm_cv_sys_tiocgwinsz_needs_termios_h = no; then + AC_EGREP_CPP([yes], + [#include +# include +# ifdef TIOCGWINSZ + yes +# endif + ], jm_cv_sys_tiocgwinsz_needs_sys_ioctl_h=yes) + fi + ]) + if test $jm_cv_sys_tiocgwinsz_needs_sys_ioctl_h = yes; then + AC_DEFINE(GWINSZ_IN_SYS_IOCTL, 1, + [Define if your system defines TIOCGWINSZ in sys/ioctl.h.]) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/lchown.m4 b/src/apps/bin/coreutils-5.0/m4/lchown.m4 new file mode 100644 index 0000000000..9e4fb6fc59 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/lchown.m4 @@ -0,0 +1,10 @@ +#serial 2 + +dnl From Jim Meyering. +dnl Provide lchown on systems that lack it. + +AC_DEFUN([jm_FUNC_LCHOWN], +[ + AC_REQUIRE([AC_TYPE_UID_T]) + AC_REPLACE_FUNCS(lchown) +]) diff --git a/src/apps/bin/coreutils-5.0/m4/lcmessage.m4 b/src/apps/bin/coreutils-5.0/m4/lcmessage.m4 new file mode 100644 index 0000000000..ffd4008b82 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/lcmessage.m4 @@ -0,0 +1,32 @@ +# lcmessage.m4 serial 3 (gettext-0.11.3) +dnl Copyright (C) 1995-2002 Free Software Foundation, Inc. +dnl This file is free software, distributed under the terms of the GNU +dnl General Public License. As a special exception to the GNU General +dnl Public License, this file may be distributed as part of a program +dnl that contains a configuration script generated by Autoconf, under +dnl the same distribution terms as the rest of that program. +dnl +dnl This file can can be used in projects which are not available under +dnl the GNU General Public License or the GNU Library General Public +dnl License but which still want to provide support for the GNU gettext +dnl functionality. +dnl Please note that the actual code of the GNU gettext library is covered +dnl by the GNU Library General Public License, and the rest of the GNU +dnl gettext package package is covered by the GNU General Public License. +dnl They are *not* in the public domain. + +dnl Authors: +dnl Ulrich Drepper , 1995. + +# Check whether LC_MESSAGES is available in . + +AC_DEFUN([AM_LC_MESSAGES], +[ + AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES, + [AC_TRY_LINK([#include ], [return LC_MESSAGES], + am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)]) + if test $am_cv_val_LC_MESSAGES = yes; then + AC_DEFINE(HAVE_LC_MESSAGES, 1, + [Define if your file defines LC_MESSAGES.]) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/lib-check.m4 b/src/apps/bin/coreutils-5.0/m4/lib-check.m4 new file mode 100644 index 0000000000..15ffe542d6 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/lib-check.m4 @@ -0,0 +1,63 @@ +#serial 5 + +dnl Misc lib-related macros for fileutils, sh-utils, textutils. + +AC_DEFUN([jm_LIB_CHECK], +[ + + # Check for libypsec.a on Dolphin M88K machines. + AC_CHECK_LIB(ypsec, main) + + # m88k running dgux 5.4 needs this + AC_CHECK_LIB(ldgc, main) + + # Some programs need to link with -lm. printf does if it uses + # lib/strtod.c which uses pow. And seq uses the math functions, + # floor, modf, rint. And factor uses sqrt. And sleep uses fesetround. + + # Save a copy of $LIBS and add $FLOOR_LIBM before these tests + # Check for these math functions used by seq. + ac_su_saved_lib="$LIBS" + LIBS="$LIBS -lm" + AC_CHECK_FUNCS(floor modf rint) + LIBS="$ac_su_saved_lib" + + AC_SUBST(SQRT_LIBM) + AC_CHECK_FUNCS(sqrt) + if test $ac_cv_func_sqrt = no; then + AC_CHECK_LIB(m, sqrt, [SQRT_LIBM=-lm]) + fi + + AC_SUBST(FESETROUND_LIBM) + AC_CHECK_FUNCS(fesetround) + if test $ac_cv_func_fesetround = no; then + AC_CHECK_LIB(m, fesetround, [FESETROUND_LIBM=-lm]) + fi + + # The -lsun library is required for YP support on Irix-4.0.5 systems. + # m88k/svr3 DolphinOS systems using YP need -lypsec for id. + AC_SEARCH_LIBS(yp_match, [sun ypsec]) + + # SysV needs -lsec, older versions of Linux need -lshadow for + # shadow passwords. UnixWare 7 needs -lgen. + AC_SEARCH_LIBS(getspnam, [shadow sec gen]) + + AC_CHECK_HEADERS(shadow.h) + + # Requirements for su.c. + shadow_includes="\ +$ac_includes_default +#if HAVE_SHADOW_H +# include +#endif +" + AC_CHECK_MEMBERS([struct spwd.sp_pwdp],,,[$shadow_includes]) + AC_CHECK_FUNCS(getspnam) + + # SCO-ODT-3.0 is reported to need -lufc for crypt. + # NetBSD needs -lcrypt for crypt. + ac_su_saved_lib="$LIBS" + AC_SEARCH_LIBS(crypt, [ufc crypt], [LIB_CRYPT="$ac_cv_search_crypt"]) + LIBS="$ac_su_saved_lib" + AC_SUBST(LIB_CRYPT) +]) diff --git a/src/apps/bin/coreutils-5.0/m4/lib-ld.m4 b/src/apps/bin/coreutils-5.0/m4/lib-ld.m4 new file mode 100644 index 0000000000..ddb573234c --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/lib-ld.m4 @@ -0,0 +1,97 @@ +# lib-ld.m4 serial 1 (gettext-0.11) +dnl Copyright (C) 1996-2002 Free Software Foundation, Inc. +dnl This file is free software, distributed under the terms of the GNU +dnl General Public License. As a special exception to the GNU General +dnl Public License, this file may be distributed as part of a program +dnl that contains a configuration script generated by Autoconf, under +dnl the same distribution terms as the rest of that program. + +dnl Subroutines of libtool.m4, +dnl with replacements s/AC_/AC_LIB/ and s/lt_cv/acl_cv/ to avoid collision +dnl with libtool.m4. + +dnl From libtool-1.4. Sets the variable with_gnu_ld to yes or no. +AC_DEFUN([AC_LIB_PROG_LD_GNU], +[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], acl_cv_prog_gnu_ld, +[# I'd rather use --version here, but apparently some GNU ld's only accept -v. +if $LD -v 2>&1 &5; then + acl_cv_prog_gnu_ld=yes +else + acl_cv_prog_gnu_ld=no +fi]) +with_gnu_ld=$acl_cv_prog_gnu_ld +]) + +dnl From libtool-1.4. Sets the variable LD. +AC_DEFUN([AC_LIB_PROG_LD], +[AC_ARG_WITH(gnu-ld, +[ --with-gnu-ld assume the C compiler uses GNU ld [default=no]], +test "$withval" = no || with_gnu_ld=yes, with_gnu_ld=no) +AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([AC_CANONICAL_HOST])dnl +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + AC_MSG_CHECKING([for ld used by GCC]) + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [[\\/]* | [A-Za-z]:[\\/]*)] + [re_direlt='/[^/][^/]*/\.\./'] + # Canonicalize the path of ld + ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'` + while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do + ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + AC_MSG_CHECKING([for GNU ld]) +else + AC_MSG_CHECKING([for non-GNU ld]) +fi +AC_CACHE_VAL(acl_cv_path_LD, +[if test -z "$LD"; then + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" + for ac_dir in $PATH; do + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + acl_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some GNU ld's only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + if "$acl_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then + test "$with_gnu_ld" != no && break + else + test "$with_gnu_ld" != yes && break + fi + fi + done + IFS="$ac_save_ifs" +else + acl_cv_path_LD="$LD" # Let the user override the test with a path. +fi]) +LD="$acl_cv_path_LD" +if test -n "$LD"; then + AC_MSG_RESULT($LD) +else + AC_MSG_RESULT(no) +fi +test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH]) +AC_LIB_PROG_LD_GNU +]) diff --git a/src/apps/bin/coreutils-5.0/m4/lib-link.m4 b/src/apps/bin/coreutils-5.0/m4/lib-link.m4 new file mode 100644 index 0000000000..6b94251052 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/lib-link.m4 @@ -0,0 +1,554 @@ +# lib-link.m4 serial 3 (gettext-0.11.3) +dnl Copyright (C) 2001-2002 Free Software Foundation, Inc. +dnl This file is free software, distributed under the terms of the GNU +dnl General Public License. As a special exception to the GNU General +dnl Public License, this file may be distributed as part of a program +dnl that contains a configuration script generated by Autoconf, under +dnl the same distribution terms as the rest of that program. + +dnl From Bruno Haible. + +dnl AC_LIB_LINKFLAGS(name [, dependencies]) searches for libname and +dnl the libraries corresponding to explicit and implicit dependencies. +dnl Sets and AC_SUBSTs the LIB${NAME} and LTLIB${NAME} variables and +dnl augments the CPPFLAGS variable. +AC_DEFUN([AC_LIB_LINKFLAGS], +[ + AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) + AC_REQUIRE([AC_LIB_RPATH]) + define([Name],[translit([$1],[./-], [___])]) + define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], + [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) + AC_CACHE_CHECK([how to link with lib[]$1], [ac_cv_lib[]Name[]_libs], [ + AC_LIB_LINKFLAGS_BODY([$1], [$2]) + ac_cv_lib[]Name[]_libs="$LIB[]NAME" + ac_cv_lib[]Name[]_ltlibs="$LTLIB[]NAME" + ac_cv_lib[]Name[]_cppflags="$INC[]NAME" + ]) + LIB[]NAME="$ac_cv_lib[]Name[]_libs" + LTLIB[]NAME="$ac_cv_lib[]Name[]_ltlibs" + INC[]NAME="$ac_cv_lib[]Name[]_cppflags" + AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) + AC_SUBST([LIB]NAME) + AC_SUBST([LTLIB]NAME) + dnl Also set HAVE_LIB[]NAME so that AC_LIB_HAVE_LINKFLAGS can reuse the + dnl results of this search when this library appears as a dependency. + HAVE_LIB[]NAME=yes + undefine([Name]) + undefine([NAME]) +]) + +dnl AC_LIB_HAVE_LINKFLAGS(name, dependencies, includes, testcode) +dnl searches for libname and the libraries corresponding to explicit and +dnl implicit dependencies, together with the specified include files and +dnl the ability to compile and link the specified testcode. If found, it +dnl sets and AC_SUBSTs HAVE_LIB${NAME}=yes and the LIB${NAME} and +dnl LTLIB${NAME} variables and augments the CPPFLAGS variable, and +dnl #defines HAVE_LIB${NAME} to 1. Otherwise, it sets and AC_SUBSTs +dnl HAVE_LIB${NAME}=no and LIB${NAME} and LTLIB${NAME} to empty. +AC_DEFUN([AC_LIB_HAVE_LINKFLAGS], +[ + AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) + AC_REQUIRE([AC_LIB_RPATH]) + define([Name],[translit([$1],[./-], [___])]) + define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], + [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) + + dnl Search for lib[]Name and define LIB[]NAME, LTLIB[]NAME and INC[]NAME + dnl accordingly. + AC_LIB_LINKFLAGS_BODY([$1], [$2]) + + dnl Add $INC[]NAME to CPPFLAGS before performing the following checks, + dnl because if the user has installed lib[]Name and not disabled its use + dnl via --without-lib[]Name-prefix, he wants to use it. + ac_save_CPPFLAGS="$CPPFLAGS" + AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) + + AC_CACHE_CHECK([for lib[]$1], [ac_cv_lib[]Name], [ + ac_save_LIBS="$LIBS" + LIBS="$LIBS $LIB[]NAME" + AC_TRY_LINK([$3], [$4], [ac_cv_lib[]Name=yes], [ac_cv_lib[]Name=no]) + LIBS="$ac_save_LIBS" + ]) + if test "$ac_cv_lib[]Name" = yes; then + HAVE_LIB[]NAME=yes + AC_DEFINE([HAVE_LIB]NAME, 1, [Define if you have the $1 library.]) + AC_MSG_CHECKING([how to link with lib[]$1]) + AC_MSG_RESULT([$LIB[]NAME]) + else + HAVE_LIB[]NAME=no + dnl If $LIB[]NAME didn't lead to a usable library, we don't need + dnl $INC[]NAME either. + CPPFLAGS="$ac_save_CPPFLAGS" + LIB[]NAME= + LTLIB[]NAME= + fi + AC_SUBST([HAVE_LIB]NAME) + AC_SUBST([LIB]NAME) + AC_SUBST([LTLIB]NAME) + undefine([Name]) + undefine([NAME]) +]) + +dnl Determine the platform dependent parameters needed to use rpath: +dnl libext, shlibext, hardcode_libdir_flag_spec, hardcode_libdir_separator, +dnl hardcode_direct, hardcode_minus_L, +dnl sys_lib_search_path_spec, sys_lib_dlsearch_path_spec. +AC_DEFUN([AC_LIB_RPATH], +[ + AC_REQUIRE([AC_PROG_CC]) dnl we use $CC, $GCC, $LDFLAGS + AC_REQUIRE([AC_LIB_PROG_LD]) dnl we use $LD, $with_gnu_ld + AC_REQUIRE([AC_CANONICAL_HOST]) dnl we use $host + AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT]) dnl we use $ac_aux_dir + AC_CACHE_CHECK([for shared library run path origin], acl_cv_rpath, [ + CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ + ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh + . ./conftest.sh + rm -f ./conftest.sh + acl_cv_rpath=done + ]) + wl="$acl_cv_wl" + libext="$acl_cv_libext" + shlibext="$acl_cv_shlibext" + hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" + hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" + hardcode_direct="$acl_cv_hardcode_direct" + hardcode_minus_L="$acl_cv_hardcode_minus_L" + sys_lib_search_path_spec="$acl_cv_sys_lib_search_path_spec" + sys_lib_dlsearch_path_spec="$acl_cv_sys_lib_dlsearch_path_spec" + dnl Determine whether the user wants rpath handling at all. + AC_ARG_ENABLE(rpath, + [ --disable-rpath do not hardcode runtime library paths], + :, enable_rpath=yes) +]) + +dnl AC_LIB_LINKFLAGS_BODY(name [, dependencies]) searches for libname and +dnl the libraries corresponding to explicit and implicit dependencies. +dnl Sets the LIB${NAME}, LTLIB${NAME} and INC${NAME} variables. +AC_DEFUN([AC_LIB_LINKFLAGS_BODY], +[ + define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], + [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) + dnl By default, look in $includedir and $libdir. + use_additional=yes + AC_LIB_WITH_FINAL_PREFIX([ + eval additional_includedir=\"$includedir\" + eval additional_libdir=\"$libdir\" + ]) + AC_ARG_WITH([lib$1-prefix], +[ --with-lib$1-prefix[=DIR] search for lib$1 in DIR/include and DIR/lib + --without-lib$1-prefix don't search for lib$1 in includedir and libdir], +[ + if test "X$withval" = "Xno"; then + use_additional=no + else + if test "X$withval" = "X"; then + AC_LIB_WITH_FINAL_PREFIX([ + eval additional_includedir=\"$includedir\" + eval additional_libdir=\"$libdir\" + ]) + else + additional_includedir="$withval/include" + additional_libdir="$withval/lib" + fi + fi +]) + dnl Search the library and its dependencies in $additional_libdir and + dnl $LDFLAGS. Using breadth-first-seach. + LIB[]NAME= + LTLIB[]NAME= + INC[]NAME= + rpathdirs= + ltrpathdirs= + names_already_handled= + names_next_round='$1 $2' + while test -n "$names_next_round"; do + names_this_round="$names_next_round" + names_next_round= + for name in $names_this_round; do + already_handled= + for n in $names_already_handled; do + if test "$n" = "$name"; then + already_handled=yes + break + fi + done + if test -z "$already_handled"; then + names_already_handled="$names_already_handled $name" + dnl See if it was already located by an earlier AC_LIB_LINKFLAGS + dnl or AC_LIB_HAVE_LINKFLAGS call. + uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` + eval value=\"\$HAVE_LIB$uppername\" + if test -n "$value"; then + if test "$value" = yes; then + eval value=\"\$LIB$uppername\" + test -z "$value" || LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$value" + eval value=\"\$LTLIB$uppername\" + test -z "$value" || LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$value" + else + dnl An earlier call to AC_LIB_HAVE_LINKFLAGS has determined + dnl that this library doesn't exist. So just drop it. + : + fi + else + dnl Search the library lib$name in $additional_libdir and $LDFLAGS + dnl and the already constructed $LIBNAME/$LTLIBNAME. + found_dir= + found_la= + found_so= + found_a= + if test $use_additional = yes; then + if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext"; then + found_dir="$additional_libdir" + found_so="$additional_libdir/lib$name.$shlibext" + if test -f "$additional_libdir/lib$name.la"; then + found_la="$additional_libdir/lib$name.la" + fi + else + if test -f "$additional_libdir/lib$name.$libext"; then + found_dir="$additional_libdir" + found_a="$additional_libdir/lib$name.$libext" + if test -f "$additional_libdir/lib$name.la"; then + found_la="$additional_libdir/lib$name.la" + fi + fi + fi + fi + if test "X$found_dir" = "X"; then + for x in $LDFLAGS $LTLIB[]NAME; do + AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) + case "$x" in + -L*) + dir=`echo "X$x" | sed -e 's/^X-L//'` + if test -n "$shlibext" && test -f "$dir/lib$name.$shlibext"; then + found_dir="$dir" + found_so="$dir/lib$name.$shlibext" + if test -f "$dir/lib$name.la"; then + found_la="$dir/lib$name.la" + fi + else + if test -f "$dir/lib$name.$libext"; then + found_dir="$dir" + found_a="$dir/lib$name.$libext" + if test -f "$dir/lib$name.la"; then + found_la="$dir/lib$name.la" + fi + fi + fi + ;; + esac + if test "X$found_dir" != "X"; then + break + fi + done + fi + if test "X$found_dir" != "X"; then + dnl Found the library. + LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$found_dir -l$name" + if test "X$found_so" != "X"; then + dnl Linking with a shared library. We attempt to hardcode its + dnl directory into the executable's runpath, unless it's the + dnl standard /usr/lib. + if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/lib"; then + dnl No hardcoding is needed. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" + else + dnl Use an explicit option to hardcode DIR into the resulting + dnl binary. + dnl Potentially add DIR to ltrpathdirs. + dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. + haveit= + for x in $ltrpathdirs; do + if test "X$x" = "X$found_dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + ltrpathdirs="$ltrpathdirs $found_dir" + fi + dnl The hardcoding into $LIBNAME is system dependent. + if test "$hardcode_direct" = yes; then + dnl Using DIR/libNAME.so during linking hardcodes DIR into the + dnl resulting binary. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" + else + if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then + dnl Use an explicit option to hardcode DIR into the resulting + dnl binary. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" + dnl Potentially add DIR to rpathdirs. + dnl The rpathdirs will be appended to $LIBNAME at the end. + haveit= + for x in $rpathdirs; do + if test "X$x" = "X$found_dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + rpathdirs="$rpathdirs $found_dir" + fi + else + dnl Rely on "-L$found_dir". + dnl But don't add it if it's already contained in the LDFLAGS + dnl or the already constructed $LIBNAME + haveit= + for x in $LDFLAGS $LIB[]NAME; do + AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) + if test "X$x" = "X-L$found_dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir" + fi + if test "$hardcode_minus_L" != no; then + dnl FIXME: Not sure whether we should use + dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" + dnl here. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" + else + dnl We cannot use $hardcode_runpath_var and LD_RUN_PATH + dnl here, because this doesn't fit in flags passed to the + dnl compiler. So give up. No hardcoding. This affects only + dnl very old systems. + dnl FIXME: Not sure whether we should use + dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" + dnl here. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" + fi + fi + fi + fi + else + if test "X$found_a" != "X"; then + dnl Linking with a static library. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_a" + else + dnl We shouldn't come here, but anyway it's good to have a + dnl fallback. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir -l$name" + fi + fi + dnl Assume the include files are nearby. + additional_includedir= + case "$found_dir" in + */lib | */lib/) + basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e 's,/lib/*$,,'` + additional_includedir="$basedir/include" + ;; + esac + if test "X$additional_includedir" != "X"; then + dnl Potentially add $additional_includedir to $INCNAME. + dnl But don't add it + dnl 1. if it's the standard /usr/include, + dnl 2. if it's /usr/local/include and we are using GCC on Linux, + dnl 3. if it's already present in $CPPFLAGS or the already + dnl constructed $INCNAME, + dnl 4. if it doesn't exist as a directory. + if test "X$additional_includedir" != "X/usr/include"; then + haveit= + if test "X$additional_includedir" = "X/usr/local/include"; then + if test -n "$GCC"; then + case $host_os in + linux*) haveit=yes;; + esac + fi + fi + if test -z "$haveit"; then + for x in $CPPFLAGS $INC[]NAME; do + AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) + if test "X$x" = "X-I$additional_includedir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test -d "$additional_includedir"; then + dnl Really add $additional_includedir to $INCNAME. + INC[]NAME="${INC[]NAME}${INC[]NAME:+ }-I$additional_includedir" + fi + fi + fi + fi + fi + dnl Look for dependencies. + if test -n "$found_la"; then + dnl Read the .la file. It defines the variables + dnl dlname, library_names, old_library, dependency_libs, current, + dnl age, revision, installed, dlopen, dlpreopen, libdir. + save_libdir="$libdir" + case "$found_la" in + */* | *\\*) . "$found_la" ;; + *) . "./$found_la" ;; + esac + libdir="$save_libdir" + dnl We use only dependency_libs. + for dep in $dependency_libs; do + case "$dep" in + -L*) + additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` + dnl Potentially add $additional_libdir to $LIBNAME and $LTLIBNAME. + dnl But don't add it + dnl 1. if it's the standard /usr/lib, + dnl 2. if it's /usr/local/lib and we are using GCC on Linux, + dnl 3. if it's already present in $LDFLAGS or the already + dnl constructed $LIBNAME, + dnl 4. if it doesn't exist as a directory. + if test "X$additional_libdir" != "X/usr/lib"; then + haveit= + if test "X$additional_libdir" = "X/usr/local/lib"; then + if test -n "$GCC"; then + case $host_os in + linux*) haveit=yes;; + esac + fi + fi + if test -z "$haveit"; then + haveit= + for x in $LDFLAGS $LIB[]NAME; do + AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) + if test "X$x" = "X-L$additional_libdir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test -d "$additional_libdir"; then + dnl Really add $additional_libdir to $LIBNAME. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$additional_libdir" + fi + fi + haveit= + for x in $LDFLAGS $LTLIB[]NAME; do + AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) + if test "X$x" = "X-L$additional_libdir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test -d "$additional_libdir"; then + dnl Really add $additional_libdir to $LTLIBNAME. + LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$additional_libdir" + fi + fi + fi + fi + ;; + -R*) + dir=`echo "X$dep" | sed -e 's/^X-R//'` + if test "$enable_rpath" != no; then + dnl Potentially add DIR to rpathdirs. + dnl The rpathdirs will be appended to $LIBNAME at the end. + haveit= + for x in $rpathdirs; do + if test "X$x" = "X$dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + rpathdirs="$rpathdirs $dir" + fi + dnl Potentially add DIR to ltrpathdirs. + dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. + haveit= + for x in $ltrpathdirs; do + if test "X$x" = "X$dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + ltrpathdirs="$ltrpathdirs $dir" + fi + fi + ;; + -l*) + dnl Handle this in the next round. + names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` + ;; + *.la) + dnl Handle this in the next round. Throw away the .la's + dnl directory; it is already contained in a preceding -L + dnl option. + names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` + ;; + *) + dnl Most likely an immediate library name. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$dep" + LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$dep" + ;; + esac + done + fi + else + dnl Didn't find the library; assume it is in the system directories + dnl known to the linker and runtime loader. (All the system + dnl directories known to the linker should also be known to the + dnl runtime loader, otherwise the system is severely misconfigured.) + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" + LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-l$name" + fi + fi + fi + done + done + if test "X$rpathdirs" != "X"; then + if test -n "$hardcode_libdir_separator"; then + dnl Weird platform: only the last -rpath option counts, the user must + dnl pass all path elements in one option. We can arrange that for a + dnl single library, but not when more than one $LIBNAMEs are used. + alldirs= + for found_dir in $rpathdirs; do + alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir" + done + dnl Note: hardcode_libdir_flag_spec uses $libdir and $wl. + acl_save_libdir="$libdir" + libdir="$alldirs" + eval flag=\"$hardcode_libdir_flag_spec\" + libdir="$acl_save_libdir" + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" + else + dnl The -rpath options are cumulative. + for found_dir in $rpathdirs; do + acl_save_libdir="$libdir" + libdir="$found_dir" + eval flag=\"$hardcode_libdir_flag_spec\" + libdir="$acl_save_libdir" + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" + done + fi + fi + if test "X$ltrpathdirs" != "X"; then + dnl When using libtool, the option that works for both libraries and + dnl executables is -R. The -R options are cumulative. + for found_dir in $ltrpathdirs; do + LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-R$found_dir" + done + fi +]) + +dnl AC_LIB_APPENDTOVAR(VAR, CONTENTS) appends the elements of CONTENTS to VAR, +dnl unless already present in VAR. +dnl Works only for CPPFLAGS, not for LIB* variables because that sometimes +dnl contains two or three consecutive elements that belong together. +AC_DEFUN([AC_LIB_APPENDTOVAR], +[ + for element in [$2]; do + haveit= + for x in $[$1]; do + AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) + if test "X$x" = "X$element"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + [$1]="${[$1]}${[$1]:+ }$element" + fi + done +]) diff --git a/src/apps/bin/coreutils-5.0/m4/lib-prefix.m4 b/src/apps/bin/coreutils-5.0/m4/lib-prefix.m4 new file mode 100644 index 0000000000..b8b79ab9ad --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/lib-prefix.m4 @@ -0,0 +1,148 @@ +# lib-prefix.m4 serial 1 (gettext-0.11) +dnl Copyright (C) 2001-2002 Free Software Foundation, Inc. +dnl This file is free software, distributed under the terms of the GNU +dnl General Public License. As a special exception to the GNU General +dnl Public License, this file may be distributed as part of a program +dnl that contains a configuration script generated by Autoconf, under +dnl the same distribution terms as the rest of that program. + +dnl From Bruno Haible. + +dnl AC_LIB_PREFIX adds to the CPPFLAGS and LDFLAGS the flags that are needed +dnl to access previously installed libraries. The basic assumption is that +dnl a user will want packages to use other packages he previously installed +dnl with the same --prefix option. +dnl This macro is not needed if only AC_LIB_LINKFLAGS is used to locate +dnl libraries, but is otherwise very convenient. +AC_DEFUN([AC_LIB_PREFIX], +[ + AC_BEFORE([$0], [AC_LIB_LINKFLAGS]) + AC_REQUIRE([AC_PROG_CC]) + AC_REQUIRE([AC_CANONICAL_HOST]) + AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) + dnl By default, look in $includedir and $libdir. + use_additional=yes + AC_LIB_WITH_FINAL_PREFIX([ + eval additional_includedir=\"$includedir\" + eval additional_libdir=\"$libdir\" + ]) + AC_ARG_WITH([lib-prefix], +[ --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib + --without-lib-prefix don't search for libraries in includedir and libdir], +[ + if test "X$withval" = "Xno"; then + use_additional=no + else + if test "X$withval" = "X"; then + AC_LIB_WITH_FINAL_PREFIX([ + eval additional_includedir=\"$includedir\" + eval additional_libdir=\"$libdir\" + ]) + else + additional_includedir="$withval/include" + additional_libdir="$withval/lib" + fi + fi +]) + if test $use_additional = yes; then + dnl Potentially add $additional_includedir to $CPPFLAGS. + dnl But don't add it + dnl 1. if it's the standard /usr/include, + dnl 2. if it's already present in $CPPFLAGS, + dnl 3. if it's /usr/local/include and we are using GCC on Linux, + dnl 4. if it doesn't exist as a directory. + if test "X$additional_includedir" != "X/usr/include"; then + haveit= + for x in $CPPFLAGS; do + AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) + if test "X$x" = "X-I$additional_includedir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test "X$additional_includedir" = "X/usr/local/include"; then + if test -n "$GCC"; then + case $host_os in + linux*) haveit=yes;; + esac + fi + fi + if test -z "$haveit"; then + if test -d "$additional_includedir"; then + dnl Really add $additional_includedir to $CPPFLAGS. + CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }-I$additional_includedir" + fi + fi + fi + fi + dnl Potentially add $additional_libdir to $LDFLAGS. + dnl But don't add it + dnl 1. if it's the standard /usr/lib, + dnl 2. if it's already present in $LDFLAGS, + dnl 3. if it's /usr/local/lib and we are using GCC on Linux, + dnl 4. if it doesn't exist as a directory. + if test "X$additional_libdir" != "X/usr/lib"; then + haveit= + for x in $LDFLAGS; do + AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) + if test "X$x" = "X-L$additional_libdir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test "X$additional_libdir" = "X/usr/local/lib"; then + if test -n "$GCC"; then + case $host_os in + linux*) haveit=yes;; + esac + fi + fi + if test -z "$haveit"; then + if test -d "$additional_libdir"; then + dnl Really add $additional_libdir to $LDFLAGS. + LDFLAGS="${LDFLAGS}${LDFLAGS:+ }-L$additional_libdir" + fi + fi + fi + fi + fi +]) + +dnl AC_LIB_PREPARE_PREFIX creates variables acl_final_prefix, +dnl acl_final_exec_prefix, containing the values to which $prefix and +dnl $exec_prefix will expand at the end of the configure script. +AC_DEFUN([AC_LIB_PREPARE_PREFIX], +[ + dnl Unfortunately, prefix and exec_prefix get only finally determined + dnl at the end of configure. + if test "X$prefix" = "XNONE"; then + acl_final_prefix="$ac_default_prefix" + else + acl_final_prefix="$prefix" + fi + if test "X$exec_prefix" = "XNONE"; then + acl_final_exec_prefix='${prefix}' + else + acl_final_exec_prefix="$exec_prefix" + fi + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" + prefix="$acl_save_prefix" +]) + +dnl AC_LIB_WITH_FINAL_PREFIX([statement]) evaluates statement, with the +dnl variables prefix and exec_prefix bound to the values they will have +dnl at the end of the configure script. +AC_DEFUN([AC_LIB_WITH_FINAL_PREFIX], +[ + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + $1 + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" +]) diff --git a/src/apps/bin/coreutils-5.0/m4/link-follow.m4 b/src/apps/bin/coreutils-5.0/m4/link-follow.m4 new file mode 100644 index 0000000000..6064ce74b4 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/link-follow.m4 @@ -0,0 +1,65 @@ +#serial 3 +dnl Run a program to determine whether whether link(2) follows symlinks. +dnl Set LINK_FOLLOWS_SYMLINKS accordingly. + +AC_DEFUN([jm_AC_FUNC_LINK_FOLLOWS_SYMLINK], +[dnl + AC_CACHE_CHECK( + [whether link(2) dereferences a symlink specified with a trailing slash], + jm_ac_cv_func_link_follows_symlink, + [ + dnl poor-man's AC_REQUIRE: FIXME: repair this once autoconf-3 provides + dnl the appropriate framework. + test -z "$ac_cv_header_unistd_h" \ + && AC_CHECK_HEADERS(unistd.h) + + # Create a regular file. + echo > conftest.file + AC_TRY_RUN( + [ +# include +# include +# ifdef HAVE_UNISTD_H +# include +# endif + +# define SAME_INODE(Stat_buf_1, Stat_buf_2) \ + ((Stat_buf_1).st_ino == (Stat_buf_2).st_ino \ + && (Stat_buf_1).st_dev == (Stat_buf_2).st_dev) + + int + main () + { + const char *file = "conftest.file"; + const char *sym = "conftest.sym"; + const char *hard = "conftest.hard"; + struct stat sb_file, sb_hard; + + /* Create a symlink to the regular file. */ + if (symlink (file, sym)) + abort (); + + /* Create a hard link to that symlink. */ + if (link (sym, hard)) + abort (); + + if (lstat (hard, &sb_hard)) + abort (); + if (lstat (file, &sb_file)) + abort (); + + /* If the dev/inode of hard and file are the same, then + the link call followed the symlink. */ + return SAME_INODE (sb_hard, sb_file) ? 0 : 1; + } + ], + jm_ac_cv_func_link_follows_symlink=yes, + jm_ac_cv_func_link_follows_symlink=no, + jm_ac_cv_func_link_follows_symlink=yes dnl We're cross compiling. + ) + ]) + if test $jm_ac_cv_func_link_follows_symlink = yes; then + AC_DEFINE(LINK_FOLLOWS_SYMLINKS, 1, + [Define if `link(2)' dereferences symbolic links.]) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/longlong.m4 b/src/apps/bin/coreutils-5.0/m4/longlong.m4 new file mode 100644 index 0000000000..daa95c0751 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/longlong.m4 @@ -0,0 +1,35 @@ +#serial 2 + +dnl From Paul Eggert. + +# Define HAVE_LONG_LONG if 'long long' works. + +AC_DEFUN([jm_AC_TYPE_LONG_LONG], +[ + AC_CACHE_CHECK([for long long], ac_cv_type_long_long, + [AC_TRY_LINK([long long ll = 1; int i = 63;], + [long long llmax = (long long) -1; + return ll << i | ll >> i | llmax / ll | llmax % ll;], + ac_cv_type_long_long=yes, + ac_cv_type_long_long=no)]) + if test $ac_cv_type_long_long = yes; then + AC_DEFINE(HAVE_LONG_LONG, 1, + [Define if you have the long long type.]) + fi +]) + +# Define HAVE_UNSIGNED_LONG_LONG if 'unsigned long long' works. + +AC_DEFUN([jm_AC_TYPE_UNSIGNED_LONG_LONG], +[ + AC_CACHE_CHECK([for unsigned long long], ac_cv_type_unsigned_long_long, + [AC_TRY_LINK([unsigned long long ull = 1; int i = 63;], + [unsigned long long ullmax = (unsigned long long) -1; + return ull << i | ull >> i | ullmax / ull | ullmax % ull;], + ac_cv_type_unsigned_long_long=yes, + ac_cv_type_unsigned_long_long=no)]) + if test $ac_cv_type_unsigned_long_long = yes; then + AC_DEFINE(HAVE_UNSIGNED_LONG_LONG, 1, + [Define if you have the unsigned long long type.]) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/ls-mntd-fs.m4 b/src/apps/bin/coreutils-5.0/m4/ls-mntd-fs.m4 new file mode 100644 index 0000000000..3ba42a315c --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/ls-mntd-fs.m4 @@ -0,0 +1,274 @@ +#serial 12 + +dnl From Jim Meyering. +dnl +dnl This is not pretty. I've just taken the autoconf code and wrapped +dnl it in an AC_DEFUN. +dnl + +# jm_LIST_MOUNTED_FILESYSTEMS([ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]]) +AC_DEFUN([jm_LIST_MOUNTED_FILESYSTEMS], + [ +AC_CHECK_FUNCS(listmntent getmntinfo) +AC_CHECK_HEADERS(mntent.h sys/param.h sys/ucred.h sys/mount.h sys/fs_types.h) + getfsstat_includes="\ +$ac_includes_default +#if HAVE_SYS_PARAM_H +# include /* needed by powerpc-apple-darwin1.3.7 */ +#endif +#if HAVE_SYS_UCRED_H +# include /* needed by powerpc-apple-darwin1.3.7 */ +#endif +#if HAVE_SYS_MOUNT_H +# include +#endif +#if HAVE_SYS_FS_TYPES_H +# include /* needed by powerpc-apple-darwin1.3.7 */ +#endif +" +AC_CHECK_MEMBERS([struct fsstat.f_fstypename],,,[$getfsstat_includes]) + +# Determine how to get the list of mounted filesystems. +ac_list_mounted_fs= + +# If the getmntent function is available but not in the standard library, +# make sure LIBS contains -lsun (on Irix4) or -lseq (on PTX). +AC_FUNC_GETMNTENT + +# This test must precede the ones for getmntent because Unicos-9 is +# reported to have the getmntent function, but its support is incompatible +# with other getmntent implementations. + +# NOTE: Normally, I wouldn't use a check for system type as I've done for +# `CRAY' below since that goes against the whole autoconf philosophy. But +# I think there is too great a chance that some non-Cray system has a +# function named listmntent to risk the false positive. + +if test -z "$ac_list_mounted_fs"; then + # Cray UNICOS 9 + AC_MSG_CHECKING([for listmntent of Cray/Unicos-9]) + AC_CACHE_VAL(fu_cv_sys_mounted_cray_listmntent, + [fu_cv_sys_mounted_cray_listmntent=no + AC_EGREP_CPP(yes, + [#ifdef _CRAY +yes +#endif + ], [test $ac_cv_func_listmntent = yes \ + && fu_cv_sys_mounted_cray_listmntent=yes] + ) + ] + ) + AC_MSG_RESULT($fu_cv_sys_mounted_cray_listmntent) + if test $fu_cv_sys_mounted_cray_listmntent = yes; then + ac_list_mounted_fs=found + AC_DEFINE(MOUNTED_LISTMNTENT, 1, + [Define if there is a function named listmntent that can be used to + list all mounted filesystems. (UNICOS)]) + fi +fi + +if test -z "$ac_list_mounted_fs"; then + # AIX. + AC_MSG_CHECKING([for mntctl function and struct vmount]) + AC_CACHE_VAL(fu_cv_sys_mounted_vmount, + [AC_TRY_CPP([#include ], + fu_cv_sys_mounted_vmount=yes, + fu_cv_sys_mounted_vmount=no)]) + AC_MSG_RESULT($fu_cv_sys_mounted_vmount) + if test $fu_cv_sys_mounted_vmount = yes; then + ac_list_mounted_fs=found + AC_DEFINE(MOUNTED_VMOUNT, 1, + [Define if there is a function named mntctl that can be used to read + the list of mounted filesystems, and there is a system header file + that declares `struct vmount.' (AIX)]) + fi +fi + +if test $ac_cv_func_getmntent = yes; then + + # This system has the getmntent function. + # Determine whether it's the one-argument variant or the two-argument one. + + if test -z "$ac_list_mounted_fs"; then + # 4.3BSD, SunOS, HP-UX, Dynix, Irix + AC_MSG_CHECKING([for one-argument getmntent function]) + AC_CACHE_VAL(fu_cv_sys_mounted_getmntent1, + [AC_TRY_COMPILE([ +/* SunOS 4.1.x /usr/include/mntent.h needs this for FILE */ +#include + +#include +#if !defined MOUNTED +# if defined _PATH_MOUNTED /* GNU libc */ +# define MOUNTED _PATH_MOUNTED +# endif +# if defined MNT_MNTTAB /* HP-UX. */ +# define MOUNTED MNT_MNTTAB +# endif +# if defined MNTTABNAME /* Dynix. */ +# define MOUNTED MNTTABNAME +# endif +#endif +], + [ struct mntent *mnt = 0; char *table = MOUNTED; ], + fu_cv_sys_mounted_getmntent1=yes, + fu_cv_sys_mounted_getmntent1=no)]) + AC_MSG_RESULT($fu_cv_sys_mounted_getmntent1) + if test $fu_cv_sys_mounted_getmntent1 = yes; then + ac_list_mounted_fs=found + AC_DEFINE(MOUNTED_GETMNTENT1, 1, + [Define if there is a function named getmntent for reading the list + of mounted filesystems, and that function takes a single argument. + (4.3BSD, SunOS, HP-UX, Dynix, Irix)]) + fi + fi + + if test -z "$ac_list_mounted_fs"; then + # SVR4 + AC_MSG_CHECKING([for two-argument getmntent function]) + AC_CACHE_VAL(fu_cv_sys_mounted_getmntent2, + [AC_EGREP_HEADER(getmntent, sys/mnttab.h, + fu_cv_sys_mounted_getmntent2=yes, + fu_cv_sys_mounted_getmntent2=no)]) + AC_MSG_RESULT($fu_cv_sys_mounted_getmntent2) + if test $fu_cv_sys_mounted_getmntent2 = yes; then + ac_list_mounted_fs=found + AC_DEFINE(MOUNTED_GETMNTENT2, 1, + [Define if there is a function named getmntent for reading the list of + mounted filesystems, and that function takes two arguments. (SVR4)]) + fi + fi + +fi + +if test -z "$ac_list_mounted_fs"; then + # DEC Alpha running OSF/1, and Apple Darwin 1.3. + # powerpc-apple-darwin1.3.7 needs sys/param.h sys/ucred.h sys/fs_types.h + + AC_MSG_CHECKING([for getfsstat function]) + AC_CACHE_VAL(fu_cv_sys_mounted_getfsstat, + [AC_TRY_LINK([ +#include +#if HAVE_STRUCT_FSSTAT_F_FSTYPENAME +# define FS_TYPE(Ent) ((Ent).f_fstypename) +#else +# define FS_TYPE(Ent) mnt_names[(Ent).f_type] +#endif +]$getfsstat_includes +, + [struct statfs *stats; + int numsys = getfsstat ((struct statfs *)0, 0L, MNT_WAIT); + char *t = FS_TYPE (*stats); ], + fu_cv_sys_mounted_getfsstat=yes, + fu_cv_sys_mounted_getfsstat=no)]) + AC_MSG_RESULT($fu_cv_sys_mounted_getfsstat) + if test $fu_cv_sys_mounted_getfsstat = yes; then + ac_list_mounted_fs=found + AC_DEFINE(MOUNTED_GETFSSTAT, 1, + [Define if there is a function named getfsstat for reading the + list of mounted filesystems. (DEC Alpha running OSF/1)]) + fi +fi + +if test -z "$ac_list_mounted_fs"; then + # SVR3 + AC_MSG_CHECKING([for FIXME existence of three headers]) + AC_CACHE_VAL(fu_cv_sys_mounted_fread_fstyp, + [AC_TRY_CPP([ +#include +#include +#include ], + fu_cv_sys_mounted_fread_fstyp=yes, + fu_cv_sys_mounted_fread_fstyp=no)]) + AC_MSG_RESULT($fu_cv_sys_mounted_fread_fstyp) + if test $fu_cv_sys_mounted_fread_fstyp = yes; then + ac_list_mounted_fs=found + AC_DEFINE(MOUNTED_FREAD_FSTYP, 1, +[Define if (like SVR2) there is no specific function for reading the + list of mounted filesystems, and your system has these header files: + and . (SVR3)]) + fi +fi + +if test -z "$ac_list_mounted_fs"; then + # 4.4BSD and DEC OSF/1. + AC_MSG_CHECKING([for getmntinfo function]) + AC_CACHE_VAL(fu_cv_sys_mounted_getmntinfo, + [ + test "$ac_cv_func_getmntinfo" = yes \ + && fu_cv_sys_mounted_getmntinfo=yes \ + || fu_cv_sys_mounted_getmntinfo=no + ]) + AC_MSG_RESULT($fu_cv_sys_mounted_getmntinfo) + if test $fu_cv_sys_mounted_getmntinfo = yes; then + ac_list_mounted_fs=found + AC_DEFINE(MOUNTED_GETMNTINFO, 1, + [Define if there is a function named getmntinfo for reading the + list of mounted filesystems. (4.4BSD, Darwin)]) + fi +fi + +if test -z "$ac_list_mounted_fs"; then + # Ultrix + AC_MSG_CHECKING([for getmnt function]) + AC_CACHE_VAL(fu_cv_sys_mounted_getmnt, + [AC_TRY_CPP([ +#include +#include ], + fu_cv_sys_mounted_getmnt=yes, + fu_cv_sys_mounted_getmnt=no)]) + AC_MSG_RESULT($fu_cv_sys_mounted_getmnt) + if test $fu_cv_sys_mounted_getmnt = yes; then + ac_list_mounted_fs=found + AC_DEFINE(MOUNTED_GETMNT, 1, + [Define if there is a function named getmnt for reading the list of + mounted filesystems. (Ultrix)]) + fi +fi + +if test -z "$ac_list_mounted_fs"; then + # BeOS + AC_CHECK_FUNCS(next_dev fs_stat_dev) + AC_CHECK_HEADERS(fs_info.h) + AC_MSG_CHECKING([for BEOS mounted file system support functions]) + if test $ac_cv_header_fs_info_h = yes \ + && test $ac_cv_func_next_dev = yes \ + && test $ac_cv_func_fs_stat_dev = yes; then + fu_result=yes + else + fu_result=no + fi + AC_MSG_RESULT($fu_result) + if test $fu_result = yes; then + ac_list_mounted_fs=found + AC_DEFINE(MOUNTED_FS_STAT_DEV, 1, + [Define if there are functions named next_dev and fs_stat_dev for + reading the list of mounted filesystems. (BeOS)]) + fi +fi + +if test -z "$ac_list_mounted_fs"; then + # SVR2 + AC_MSG_CHECKING([whether it is possible to resort to fread on /etc/mnttab]) + AC_CACHE_VAL(fu_cv_sys_mounted_fread, + [AC_TRY_CPP([#include ], + fu_cv_sys_mounted_fread=yes, + fu_cv_sys_mounted_fread=no)]) + AC_MSG_RESULT($fu_cv_sys_mounted_fread) + if test $fu_cv_sys_mounted_fread = yes; then + ac_list_mounted_fs=found + AC_DEFINE(MOUNTED_FREAD, 1, + [Define if there is no specific function for reading the list of + mounted filesystems. fread will be used to read /etc/mnttab. (SVR2) ]) + fi +fi + +if test -z "$ac_list_mounted_fs"; then + AC_MSG_ERROR([could not determine how to read list of mounted filesystems]) + # FIXME -- no need to abort building the whole package + # Can't build mountlist.c or anything that needs its functions +fi + +AS_IF([test $ac_list_mounted_fs = found], [$1], [$2]) + + ]) diff --git a/src/apps/bin/coreutils-5.0/m4/lstat.m4 b/src/apps/bin/coreutils-5.0/m4/lstat.m4 new file mode 100644 index 0000000000..8ef73b3220 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/lstat.m4 @@ -0,0 +1,40 @@ +#serial 7 + +dnl From Jim Meyering. +dnl Determine whether lstat has the bug that it succeeds when given the +dnl zero-length file name argument. The lstat from SunOS4.1.4 and the Hurd +dnl (as of 1998-11-01) do this. +dnl +dnl If it does, then define HAVE_LSTAT_EMPTY_STRING_BUG and arrange to +dnl compile the wrapper function. +dnl + +AC_DEFUN([jm_FUNC_LSTAT], +[ + AC_REQUIRE([AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK]) + AC_CACHE_CHECK([whether lstat accepts an empty string], + jm_cv_func_lstat_empty_string_bug, + [AC_TRY_RUN([ +# include +# include + + int + main () + { + struct stat sbuf; + exit (lstat ("", &sbuf) ? 1 : 0); + } + ], + jm_cv_func_lstat_empty_string_bug=yes, + jm_cv_func_lstat_empty_string_bug=no, + dnl When crosscompiling, assume lstat is broken. + jm_cv_func_lstat_empty_string_bug=yes) + ]) + if test $jm_cv_func_lstat_empty_string_bug = yes; then + AC_LIBOBJ(lstat) + AC_DEFINE(HAVE_LSTAT_EMPTY_STRING_BUG, 1, +[Define if lstat has the bug that it succeeds when given the zero-length + file name argument. The lstat from SunOS4.1.4 and the Hurd as of 1998-11-01) + do this. ]) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/mbrtowc.m4 b/src/apps/bin/coreutils-5.0/m4/mbrtowc.m4 new file mode 100644 index 0000000000..0379847633 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/mbrtowc.m4 @@ -0,0 +1,24 @@ +# mbrtowc.m4 serial 4 (fileutils-4.1.3) +dnl Copyright (C) 2001-2002 Free Software Foundation, Inc. +dnl This file is free software, distributed under the terms of the GNU +dnl General Public License. As a special exception to the GNU General +dnl Public License, this file may be distributed as part of a program +dnl that contains a configuration script generated by Autoconf, under +dnl the same distribution terms as the rest of that program. + +dnl From Paul Eggert + +AC_DEFUN([jm_FUNC_MBRTOWC], +[ + AC_CACHE_CHECK([whether mbrtowc and mbstate_t are properly declared], + jm_cv_func_mbrtowc, + [AC_TRY_LINK( + [#include ], + [mbstate_t state; return ! (sizeof state && mbrtowc);], + jm_cv_func_mbrtowc=yes, + jm_cv_func_mbrtowc=no)]) + if test $jm_cv_func_mbrtowc = yes; then + AC_DEFINE(HAVE_MBRTOWC, 1, + [Define to 1 if mbrtowc and mbstate_t are properly declared.]) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/mbswidth.m4 b/src/apps/bin/coreutils-5.0/m4/mbswidth.m4 new file mode 100644 index 0000000000..eaf552bf02 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/mbswidth.m4 @@ -0,0 +1,36 @@ +#serial 7 + +dnl autoconf tests required for use of mbswidth.c +dnl From Bruno Haible. + +AC_DEFUN([jm_PREREQ_MBSWIDTH], +[ + AC_REQUIRE([AC_HEADER_STDC]) + AC_CHECK_HEADERS(limits.h stdlib.h string.h wchar.h wctype.h) + AC_CHECK_FUNCS(isascii iswcntrl iswprint mbsinit wcwidth) + jm_FUNC_MBRTOWC + + AC_CACHE_CHECK([whether wcwidth is declared], ac_cv_have_decl_wcwidth, + [AC_TRY_COMPILE([ +/* AIX 3.2.5 declares wcwidth in . */ +#if HAVE_STRING_H +# include +#endif +#if HAVE_WCHAR_H +# include +#endif +], [ +#ifndef wcwidth + char *p = (char *) wcwidth; +#endif +], ac_cv_have_decl_wcwidth=yes, ac_cv_have_decl_wcwidth=no)]) + if test $ac_cv_have_decl_wcwidth = yes; then + ac_val=1 + else + ac_val=0 + fi + AC_DEFINE_UNQUOTED(HAVE_DECL_WCWIDTH, $ac_val, + [Define to 1 if you have the declaration of wcwidth(), and to 0 otherwise.]) + + AC_TYPE_MBSTATE_T +]) diff --git a/src/apps/bin/coreutils-5.0/m4/memcmp.m4 b/src/apps/bin/coreutils-5.0/m4/memcmp.m4 new file mode 100644 index 0000000000..1de340938b --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/memcmp.m4 @@ -0,0 +1,9 @@ +#serial 7 + +AC_DEFUN([jm_FUNC_MEMCMP], +[AC_REQUIRE([AC_FUNC_MEMCMP])dnl + if test $ac_cv_func_memcmp_working = no; then + AC_DEFINE(memcmp, rpl_memcmp, + [Define to rpl_memcmp if the replacement function should be used.]) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/mkdir-slash.m4 b/src/apps/bin/coreutils-5.0/m4/mkdir-slash.m4 new file mode 100644 index 0000000000..18f835a9df --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/mkdir-slash.m4 @@ -0,0 +1,35 @@ +#serial 1 + +# On some systems, mkdir ("foo/", 0700) fails because of the trailing slash. +# On such systems, arrange to use a wrapper function that removes any +# trailing slashes. +AC_DEFUN([UTILS_FUNC_MKDIR_TRAILING_SLASH], +[dnl + AC_CACHE_CHECK([whether mkdir fails due to a trailing slash], + utils_cv_func_mkdir_trailing_slash_bug, + [ + # Arrange for deletion of the temporary directory this test might create. + ac_clean_files="$ac_clean_files confdir-slash" + AC_TRY_RUN([ +# include +# include +# include + int main () + { + rmdir ("confdir-slash"); + exit (mkdir ("confdir-slash/", 0700)); + } + ], + utils_cv_func_mkdir_trailing_slash_bug=no, + utils_cv_func_mkdir_trailing_slash_bug=yes, + utils_cv_func_mkdir_trailing_slash_bug=yes + ) + ] + ) + + if test $utils_cv_func_mkdir_trailing_slash_bug = yes; then + AC_LIBOBJ(mkdir) + AC_DEFINE(mkdir, rpl_mkdir, + [Define to rpl_mkdir if the replacement function should be used.]) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/mkstemp.m4 b/src/apps/bin/coreutils-5.0/m4/mkstemp.m4 new file mode 100644 index 0000000000..a5efedebdc --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/mkstemp.m4 @@ -0,0 +1,46 @@ +#serial 1 + +# On some systems (e.g., HPUX-10.20, SunOS4.1.4, solaris2.5.1), mkstemp has the +# silly limit that it can create no more than 26 files from a given template. +# Other systems lack mkstemp altogether. On either type of system, arrange +# to use the replacement function. +AC_DEFUN([UTILS_FUNC_MKSTEMP], +[dnl + AC_REPLACE_FUNCS(mkstemp) + if test $ac_cv_func_mkstemp = no; then + utils_cv_func_mkstemp_limitations=yes + else + AC_CACHE_CHECK([for mkstemp limitations], + utils_cv_func_mkstemp_limitations, + [ + AC_TRY_RUN([ +# include + int main () + { + int i; + for (i = 0; i < 30; i++) + { + char template[] = "conftestXXXXXX"; + int fd = mkstemp (template); + if (fd == -1) + exit (1); + close (fd); + } + exit (0); + } + ], + utils_cv_func_mkstemp_limitations=no, + utils_cv_func_mkstemp_limitations=yes, + utils_cv_func_mkstemp_limitations=yes + ) + ] + ) + fi + + if test $utils_cv_func_mkstemp_limitations = yes; then + AC_LIBOBJ(mkstemp) + AC_LIBOBJ(tempname) + AC_DEFINE(mkstemp, rpl_mkstemp, + [Define to rpl_mkstemp if the replacement function should be used.]) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/nanosleep.m4 b/src/apps/bin/coreutils-5.0/m4/nanosleep.m4 new file mode 100644 index 0000000000..b431456c79 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/nanosleep.m4 @@ -0,0 +1,54 @@ +#serial 8 + +dnl From Jim Meyering. +dnl Check for the nanosleep function. +dnl If not found, use the supplied replacement. +dnl + +AC_DEFUN([jm_FUNC_NANOSLEEP], +[ + nanosleep_save_libs=$LIBS + + # Solaris 2.5.1 needs -lposix4 to get the nanosleep function. + # Solaris 7 prefers the library name -lrt to the obsolescent name -lposix4. + AC_SEARCH_LIBS(nanosleep, [rt posix4], [LIB_NANOSLEEP=$ac_cv_search_nanosleep]) + AC_SUBST(LIB_NANOSLEEP) + + AC_CACHE_CHECK([whether nanosleep works], + jm_cv_func_nanosleep_works, + [ + AC_REQUIRE([AC_HEADER_TIME]) + AC_TRY_RUN([ +# if TIME_WITH_SYS_TIME +# include +# include +# else +# if HAVE_SYS_TIME_H +# include +# else +# include +# endif +# endif + + int + main () + { + struct timespec ts_sleep, ts_remaining; + ts_sleep.tv_sec = 0; + ts_sleep.tv_nsec = 1; + exit (nanosleep (&ts_sleep, &ts_remaining) == 0 ? 0 : 1); + } + ], + jm_cv_func_nanosleep_works=yes, + jm_cv_func_nanosleep_works=no, + dnl When crosscompiling, assume the worst. + jm_cv_func_nanosleep_works=no) + ]) + if test $jm_cv_func_nanosleep_works = no; then + AC_LIBOBJ(nanosleep) + AC_DEFINE(nanosleep, rpl_nanosleep, + [Define to rpl_nanosleep if the replacement function should be used.]) + fi + + LIBS=$nanosleep_save_libs +]) diff --git a/src/apps/bin/coreutils-5.0/m4/onceonly.m4 b/src/apps/bin/coreutils-5.0/m4/onceonly.m4 new file mode 100644 index 0000000000..af56aa9448 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/onceonly.m4 @@ -0,0 +1,63 @@ +# onceonly.m4 serial 2 +dnl Copyright (C) 2002, 2003 Free Software Foundation, Inc. +dnl This file is free software, distributed under the terms of the GNU +dnl General Public License. As a special exception to the GNU General +dnl Public License, this file may be distributed as part of a program +dnl that contains a configuration script generated by Autoconf, under +dnl the same distribution terms as the rest of that program. + +dnl This file defines some "once only" variants of standard autoconf macros. +dnl AC_CHECK_HEADERS_ONCE like AC_CHECK_HEADERS +dnl AC_CHECK_FUNCS_ONCE like AC_CHECK_FUNCS +dnl AC_CHECK_DECLS_ONCE like AC_CHECK_DECLS +dnl AC_REQUIRE([AC_HEADER_STDC]) like AC_HEADER_STDC +dnl The advantage is that the check for each of the headers/functions/decls +dnl will be put only once into the 'configure' file. It keeps the size of +dnl the 'configure' file down, and avoids redundant output when 'configure' +dnl is run. +dnl The drawback is that the checks cannot be conditionalized. If you write +dnl if some_condition; then gl_CHECK_HEADERS(stdlib.h); fi +dnl inside an AC_DEFUNed function, the gl_CHECK_HEADERS macro call expands to +dnl empty, and the check will be inserted before the body of the AC_DEFUNed +dnl function. + +dnl Taken from Autoconf 2.50; can be removed once we assume 2.50 or later. +define([m4_quote], [[$*]]) + +# AC_CHECK_HEADERS_ONCE(HEADER1 HEADER2 ...) is a once-only variant of +# AC_CHECK_HEADERS(HEADER1 HEADER2 ...). +AC_DEFUN([AC_CHECK_HEADERS_ONCE], [ + : + AC_FOREACH([gl_HEADER_NAME], [$1], [ + AC_DEFUN([gl_CHECK_HEADER_]m4_quote(translit(defn([gl_HEADER_NAME]), + [-./], [___])), [ + AC_CHECK_HEADERS(gl_HEADER_NAME) + ]) + AC_REQUIRE([gl_CHECK_HEADER_]m4_quote(translit(gl_HEADER_NAME, + [-./], [___]))) + ]) +]) + +# AC_CHECK_FUNCS_ONCE(FUNC1 FUNC2 ...) is a once-only variant of +# AC_CHECK_FUNCS(FUNC1 FUNC2 ...). +AC_DEFUN([AC_CHECK_FUNCS_ONCE], [ + : + AC_FOREACH([gl_FUNC_NAME], [$1], [ + AC_DEFUN([gl_CHECK_FUNC_]defn([gl_FUNC_NAME]), [ + AC_CHECK_FUNCS(defn([gl_FUNC_NAME])) + ]) + AC_REQUIRE([gl_CHECK_FUNC_]defn([gl_FUNC_NAME])) + ]) +]) + +# AC_CHECK_DECLS_ONCE(DECL1 DECL2 ...) is a once-only variant of +# AC_CHECK_DECLS(DECL1, DECL2, ...). +AC_DEFUN([AC_CHECK_DECLS_ONCE], [ + : + AC_FOREACH([gl_DECL_NAME], [$1], [ + AC_DEFUN([gl_CHECK_DECL_]defn([gl_DECL_NAME]), [ + AC_CHECK_DECLS(defn([gl_DECL_NAME])) + ]) + AC_REQUIRE([gl_CHECK_DECL_]defn([gl_DECL_NAME])) + ]) +]) diff --git a/src/apps/bin/coreutils-5.0/m4/open-max.m4 b/src/apps/bin/coreutils-5.0/m4/open-max.m4 new file mode 100644 index 0000000000..557aded95f --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/open-max.m4 @@ -0,0 +1,41 @@ +#serial 1 +# Determine approximately how many files may be open simultaneously +# in one process. This is approximate, since while running this test, +# the configure script already has a few files open. +# From Jim Meyering + +AC_DEFUN([UTILS_SYS_OPEN_MAX], +[ + AC_CACHE_CHECK([determine how many files may be open simultaneously], + utils_cv_sys_open_max, + [ + AC_RUN_IFELSE([AC_LANG_SOURCE([[ +#include +#include +#include + int + main () + { + FILE *result = fopen ("conftest.omax", "w"); + int i = 1; + /* Impose an arbitrary limit, in case some system has no + effective limit on the number of simultaneously open files. */ + while (i < 30000) + { + FILE *s = fopen ("conftest.op", "w"); + if (!s) + break; + ++i; + } + fprintf (result, "%d\n", i); + exit (fclose (result) == EOF); + } + ]])], + [utils_cv_sys_open_max=`cat conftest.omax`], + [utils_cv_sys_open_max='internal error in open-max.m4'], + [utils_cv_sys_open_max='cross compiling run-test in open-max.m4'])]) + + AC_DEFINE_UNQUOTED([UTILS_OPEN_MAX], + $utils_cv_sys_open_max, + [the maximum number of simultaneously open files per process]) +]) diff --git a/src/apps/bin/coreutils-5.0/m4/perl.m4 b/src/apps/bin/coreutils-5.0/m4/perl.m4 new file mode 100644 index 0000000000..d5cda7748e --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/perl.m4 @@ -0,0 +1,41 @@ +#serial 5 + +dnl From Jim Meyering. +dnl Find a new-enough version of Perl. +dnl + +AC_DEFUN([jm_PERL], +[ + dnl FIXME: don't hard-code 5.003 + dnl FIXME: should we cache the result? + AC_MSG_CHECKING([for perl5.003 or newer]) + if test "${PERL+set}" = set; then + # `PERL' is set in the user's environment. + candidate_perl_names="$PERL" + perl_specified=yes + else + candidate_perl_names='perl perl5' + perl_specified=no + fi + + found=no + AC_SUBST(PERL) + PERL="$am_missing_run perl" + for perl in $candidate_perl_names; do + # Run test in a subshell; some versions of sh will print an error if + # an executable is not found, even if stderr is redirected. + if ( $perl -e 'require 5.003; use File::Compare' ) > /dev/null 2>&1; then + PERL=$perl + found=yes + break + fi + done + + AC_MSG_RESULT($found) + test $found = no && AC_MSG_WARN([ +WARNING: You don't seem to have perl5.003 or newer installed, or you lack + a usable version of the Perl File::Compare module. As a result, + you may be unable to run a few tests or to regenerate certain + files if you modify the sources from which they are derived. +] ) +]) diff --git a/src/apps/bin/coreutils-5.0/m4/prereq.m4 b/src/apps/bin/coreutils-5.0/m4/prereq.m4 new file mode 100644 index 0000000000..7abcc35a31 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/prereq.m4 @@ -0,0 +1,268 @@ +#serial 31 + +dnl We use jm_ for non Autoconf macros. +m4_pattern_forbid([^jm_[ABCDEFGHIJKLMNOPQRSTUVXYZ]])dnl +m4_pattern_forbid([^gl_[ABCDEFGHIJKLMNOPQRSTUVXYZ]])dnl + +# These are the prerequisite macros for files in the lib/ +# directory of the coreutils package. + +AC_DEFUN([jm_PREREQ], +[ + AC_REQUIRE([jm_PREREQ_ADDEXT]) + + # We don't yet use c-stack.c. + # AC_REQUIRE([jm_PREREQ_C_STACK]) + + AC_REQUIRE([jm_PREREQ_CANON_HOST]) + AC_REQUIRE([jm_PREREQ_DIRNAME]) + AC_REQUIRE([jm_PREREQ_ERROR]) + AC_REQUIRE([jm_PREREQ_EXCLUDE]) + AC_REQUIRE([jm_PREREQ_GETPAGESIZE]) + AC_REQUIRE([jm_PREREQ_HARD_LOCALE]) + AC_REQUIRE([jm_PREREQ_HASH]) + AC_REQUIRE([jm_PREREQ_HUMAN]) + AC_REQUIRE([jm_PREREQ_MBSWIDTH]) + AC_REQUIRE([jm_PREREQ_MEMCHR]) + AC_REQUIRE([jm_PREREQ_PHYSMEM]) + AC_REQUIRE([jm_PREREQ_POSIXVER]) + AC_REQUIRE([jm_PREREQ_QUOTEARG]) + AC_REQUIRE([jm_PREREQ_READUTMP]) + AC_REQUIRE([jm_PREREQ_STAT]) + AC_REQUIRE([jm_PREREQ_STRNLEN]) + AC_REQUIRE([jm_PREREQ_TEMPNAME]) # called by mkstemp + AC_REQUIRE([jm_PREREQ_XGETCWD]) + AC_REQUIRE([jm_PREREQ_XREADLINK]) +]) + +AC_DEFUN([jm_PREREQ_ADDEXT], +[ + dnl For addext.c. + AC_REQUIRE([AC_SYS_LONG_FILE_NAMES]) + AC_CHECK_FUNCS(pathconf) + AC_CHECK_HEADERS(limits.h string.h unistd.h) +]) + +AC_DEFUN([jm_PREREQ_CANON_HOST], +[ + dnl Add any libraries as early as possible. + dnl In particular, inet_ntoa needs -lnsl at least on Solaris5.5.1, + dnl so we have to add -lnsl to LIBS before checking for that function. + AC_SEARCH_LIBS(gethostbyname, [inet nsl]) + + dnl These come from -lnsl on Solaris5.5.1. + AC_CHECK_FUNCS(gethostbyname gethostbyaddr inet_ntoa) + + AC_CHECK_HEADERS(unistd.h string.h netdb.h sys/socket.h \ + netinet/in.h arpa/inet.h) +]) + +AC_DEFUN([jm_PREREQ_DIRNAME], +[ + AC_REQUIRE([AC_HEADER_STDC]) + AC_CHECK_HEADERS(string.h) +]) + +AC_DEFUN([jm_PREREQ_EXCLUDE], +[ + AC_REQUIRE([AC_FUNC_FNMATCH_GNU]) + AC_REQUIRE([AC_HEADER_STDBOOL]) +]) + +AC_DEFUN([jm_PREREQ_GETPAGESIZE], +[ + AC_CHECK_FUNCS(getpagesize) + AC_CHECK_HEADERS(OS.h unistd.h) +]) + +AC_DEFUN([jm_PREREQ_HARD_LOCALE], +[ + AC_CHECK_HEADERS(locale.h stdlib.h string.h) + AC_CHECK_FUNCS(setlocale) + AC_REQUIRE([AM_C_PROTOTYPES]) +]) + +AC_DEFUN([jm_PREREQ_HASH], +[ + AC_CHECK_HEADERS(stdlib.h) + AC_REQUIRE([AC_HEADER_STDBOOL]) + AC_REQUIRE([jm_CHECK_DECLS]) +]) + +# If you use human.c, you need the following files: +# inttypes.m4 longlong.m4 +AC_DEFUN([jm_PREREQ_HUMAN], +[ + AC_CHECK_HEADERS(locale.h) + AC_CHECK_DECLS([getenv]) + AC_CHECK_FUNCS(localeconv) + AC_REQUIRE([AC_HEADER_STDBOOL]) + AC_REQUIRE([jm_AC_TYPE_UINTMAX_T]) +]) + +AC_DEFUN([jm_PREREQ_MEMCHR], +[ + AC_CHECK_HEADERS(limits.h stdlib.h bp-sym.h) +]) + +# Check for the external symbol, _system_configuration, +# a struct with member `physmem'. +AC_DEFUN([gl_SYS__SYSTEM_CONFIGURATION], + [AC_CACHE_CHECK(for external symbol _system_configuration, + gl_cv_var__system_configuration, + [AC_LINK_IFELSE([AC_LANG_PROGRAM( + [[#include + ]], + [double x = _system_configuration.physmem;])], + [gl_cv_var__system_configuration=yes], + [gl_cv_var__system_configuration=no])]) + + if test $gl_cv_var__system_configuration = yes; then + AC_DEFINE(HAVE__SYSTEM_CONFIGURATION, 1, + [Define to 1 if you have the external variable, + _system_configuration with a member named physmem.]) + fi + ] +) + +AC_DEFUN([jm_PREREQ_PHYSMEM], +[ + AC_CHECK_HEADERS([unistd.h sys/pstat.h sys/sysmp.h sys/sysinfo.h \ + machine/hal_sysinfo.h sys/table.h sys/param.h sys/sysctl.h \ + sys/systemcfg.h]) + AC_CHECK_FUNCS(pstat_getstatic pstat_getdynamic sysmp getsysinfo sysctl table) + + AC_REQUIRE([gl_SYS__SYSTEM_CONFIGURATION]) +]) + +AC_DEFUN([jm_PREREQ_POSIXVER], +[ + AC_CHECK_HEADERS(unistd.h) + AC_CHECK_DECLS([getenv]) +]) + +AC_DEFUN([jm_PREREQ_QUOTEARG], +[ + AC_CHECK_FUNCS(isascii iswprint) + AC_REQUIRE([jm_FUNC_MBRTOWC]) + AC_REQUIRE([jm_FUNC_MEMCMP]) + AC_CHECK_HEADERS(limits.h stddef.h stdlib.h string.h wchar.h wctype.h) + AC_REQUIRE([AC_HEADER_STDC]) + AC_REQUIRE([AC_C_BACKSLASH_A]) + AC_REQUIRE([AC_TYPE_MBSTATE_T]) + AC_REQUIRE([AM_C_PROTOTYPES]) +]) + +AC_DEFUN([jm_PREREQ_READUTMP], +[ + AC_REQUIRE([AC_HEADER_STDC]) + AC_CHECK_HEADERS(string.h utmp.h utmpx.h sys/param.h) + AC_CHECK_FUNCS(utmpname) + AC_CHECK_FUNCS(utmpxname) + AC_REQUIRE([AM_C_PROTOTYPES]) + + if test $ac_cv_header_utmp_h = yes || test $ac_cv_header_utmpx_h = yes; then + utmp_includes="\ +$ac_includes_default +#ifdef HAVE_UTMPX_H +# include +#endif +#ifdef HAVE_UTMP_H +# include +#endif +" + AC_CHECK_MEMBERS([struct utmpx.ut_user],,,[$utmp_includes]) + AC_CHECK_MEMBERS([struct utmp.ut_user],,,[$utmp_includes]) + AC_CHECK_MEMBERS([struct utmpx.ut_name],,,[$utmp_includes]) + AC_CHECK_MEMBERS([struct utmp.ut_name],,,[$utmp_includes]) + AC_CHECK_MEMBERS([struct utmpx.ut_type],,,[$utmp_includes]) + AC_CHECK_MEMBERS([struct utmp.ut_type],,,[$utmp_includes]) + AC_CHECK_MEMBERS([struct utmpx.ut_pid],,,[$utmp_includes]) + AC_CHECK_MEMBERS([struct utmp.ut_pid],,,[$utmp_includes]) + AC_CHECK_MEMBERS([struct utmpx.ut_id],,,[$utmp_includes]) + AC_CHECK_MEMBERS([struct utmp.ut_id],,,[$utmp_includes]) + + AC_CHECK_MEMBERS([struct utmpx.ut_exit.ut_exit],,,[$utmp_includes]) + AC_CHECK_MEMBERS([struct utmp.ut_exit.ut_exit],,,[$utmp_includes]) + AC_CHECK_MEMBERS([struct utmpx.ut_exit.e_exit],,,[$utmp_includes]) + AC_CHECK_MEMBERS([struct utmp.ut_exit.e_exit],,,[$utmp_includes]) + + AC_CHECK_MEMBERS([struct utmpx.ut_exit.ut_termination],,,[$utmp_includes]) + AC_CHECK_MEMBERS([struct utmp.ut_exit.ut_termination],,,[$utmp_includes]) + AC_CHECK_MEMBERS([struct utmpx.ut_exit.e_termination],,,[$utmp_includes]) + AC_CHECK_MEMBERS([struct utmp.ut_exit.e_termination],,,[$utmp_includes]) + AC_LIBOBJ(readutmp) + fi +]) + +AC_DEFUN([jm_PREREQ_STAT], +[ + AC_CHECK_HEADERS(sys/sysmacros.h sys/statvfs.h sys/vfs.h inttypes.h) + AC_CHECK_HEADERS(sys/param.h sys/mount.h) + AC_CHECK_FUNCS(statvfs) + AC_REQUIRE([jm_AC_TYPE_LONG_LONG]) + + statxfs_includes="\ +$ac_includes_default +#if HAVE_SYS_STATVFS_H +# include +#endif +#if HAVE_SYS_VFS_H +# include +#endif +#if ( ! HAVE_SYS_STATVFS_H && ! HAVE_SYS_VFS_H && HAVE_SYS_MOUNT_H && HAVE_SYS_PARAM_H ) +/* NetBSD 1.5.2 needs these, for the declaration of struct statfs. */ +# include +# include +#endif +" + AC_CHECK_MEMBERS([struct statfs.f_basetype],,,[$statxfs_includes]) + AC_CHECK_MEMBERS([struct statvfs.f_basetype],,,[$statxfs_includes]) + AC_CHECK_MEMBERS([struct statfs.f_fstypename],,,[$statxfs_includes]) + AC_CHECK_MEMBERS([struct statfs.f_type],,,[$statxfs_includes]) + AC_CHECK_MEMBERS([struct statvfs.f_type],,,[$statxfs_includes]) + AC_CHECK_MEMBERS([struct statfs.f_fsid.__val],,,[$statxfs_includes]) + AC_CHECK_MEMBERS([struct statvfs.f_fsid.__val],,,[$statxfs_includes]) + AC_CHECK_MEMBERS([struct statfs.f_namemax],,,[$statxfs_includes]) + AC_CHECK_MEMBERS([struct statvfs.f_namemax],,,[$statxfs_includes]) + AC_CHECK_MEMBERS([struct statfs.f_namelen],,,[$statxfs_includes]) + AC_CHECK_MEMBERS([struct statvfs.f_namelen],,,[$statxfs_includes]) +]) + +AC_DEFUN([jm_PREREQ_STRNLEN], +[ + AC_REQUIRE([AC_FUNC_STRNLEN]) + AC_REQUIRE([AC_HEADER_STDC]) + AC_CHECK_HEADERS(memory.h) + AC_CHECK_DECLS([memchr]) + + # This is necessary because automake-1.6.1 doesn't understand + # that the above use of AC_FUNC_STRNLEN means we may have to use + # lib/strnlen.c. + test $ac_cv_func_strnlen_working = yes \ + && AC_LIBOBJ(strnlen) +]) + +AC_DEFUN([jm_PREREQ_TEMPNAME], +[ + AC_REQUIRE([AC_HEADER_STDC]) + AC_REQUIRE([AC_HEADER_STAT]) + AC_CHECK_HEADERS(fcntl.h sys/time.h stdint.h unistd.h) + AC_CHECK_FUNCS(__secure_getenv gettimeofday) + AC_CHECK_DECLS([getenv]) + AC_REQUIRE([jm_AC_TYPE_UINTMAX_T]) +]) + +AC_DEFUN([jm_PREREQ_XGETCWD], +[ + AC_REQUIRE([AC_C_PROTOTYPES]) + AC_CHECK_HEADERS(limits.h stdlib.h sys/param.h unistd.h) + AC_CHECK_FUNCS(getcwd) + AC_REQUIRE([AC_FUNC_GETCWD_NULL]) +]) + +AC_DEFUN([jm_PREREQ_XREADLINK], +[ + AC_REQUIRE([AC_C_PROTOTYPES]) + AC_CHECK_HEADERS(limits.h stdlib.h sys/types.h unistd.h) +]) diff --git a/src/apps/bin/coreutils-5.0/m4/progtest.m4 b/src/apps/bin/coreutils-5.0/m4/progtest.m4 new file mode 100644 index 0000000000..443c8e3063 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/progtest.m4 @@ -0,0 +1,59 @@ +# progtest.m4 serial 2 (gettext-0.10.40) +dnl Copyright (C) 1996-2002 Free Software Foundation, Inc. +dnl This file is free software, distributed under the terms of the GNU +dnl General Public License. As a special exception to the GNU General +dnl Public License, this file may be distributed as part of a program +dnl that contains a configuration script generated by Autoconf, under +dnl the same distribution terms as the rest of that program. +dnl +dnl This file can can be used in projects which are not available under +dnl the GNU General Public License or the GNU Library General Public +dnl License but which still want to provide support for the GNU gettext +dnl functionality. +dnl Please note that the actual code of the GNU gettext library is covered +dnl by the GNU Library General Public License, and the rest of the GNU +dnl gettext package package is covered by the GNU General Public License. +dnl They are *not* in the public domain. + +dnl Authors: +dnl Ulrich Drepper , 1996. + +# Search path for a program which passes the given test. + +dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, +dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) +AC_DEFUN([AM_PATH_PROG_WITH_TEST], +[# Extract the first word of "$2", so it can be a program name with args. +set dummy $2; ac_word=[$]2 +AC_MSG_CHECKING([for $ac_word]) +AC_CACHE_VAL(ac_cv_path_$1, +[case "[$]$1" in + /*) + ac_cv_path_$1="[$]$1" # Let the user override the test with a path. + ;; + *) + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" + for ac_dir in ifelse([$5], , $PATH, [$5]); do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + if [$3]; then + ac_cv_path_$1="$ac_dir/$ac_word" + break + fi + fi + done + IFS="$ac_save_ifs" +dnl If no 4th arg is given, leave the cache variable unset, +dnl so AC_PATH_PROGS will keep looking. +ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" +])dnl + ;; +esac])dnl +$1="$ac_cv_path_$1" +if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then + AC_MSG_RESULT([$]$1) +else + AC_MSG_RESULT(no) +fi +AC_SUBST($1)dnl +]) diff --git a/src/apps/bin/coreutils-5.0/m4/putenv.m4 b/src/apps/bin/coreutils-5.0/m4/putenv.m4 new file mode 100644 index 0000000000..39a6e7568b --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/putenv.m4 @@ -0,0 +1,40 @@ +#serial 5 + +dnl From Jim Meyering. +dnl +dnl Check whether putenv ("FOO") removes FOO from the environment. +dnl The putenv in libc on at least SunOS 4.1.4 does *not* do that. +dnl + +AC_DEFUN([jm_FUNC_PUTENV], +[AC_CACHE_CHECK([for SVID conformant putenv], jm_cv_func_svid_putenv, + [AC_TRY_RUN([ + int + main () + { + /* Put it in env. */ + if (putenv ("CONFTEST_putenv=val")) + exit (1); + + /* Try to remove it. */ + if (putenv ("CONFTEST_putenv")) + exit (1); + + /* Make sure it was deleted. */ + if (getenv ("CONFTEST_putenv") != 0) + exit (1); + + exit (0); + } + ], + jm_cv_func_svid_putenv=yes, + jm_cv_func_svid_putenv=no, + dnl When crosscompiling, assume putenv is broken. + jm_cv_func_svid_putenv=no) + ]) + if test $jm_cv_func_svid_putenv = no; then + AC_LIBOBJ(putenv) + AC_DEFINE(putenv, rpl_putenv, + [Define to rpl_putenv if the replacement function should be used.]) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/regex.m4 b/src/apps/bin/coreutils-5.0/m4/regex.m4 new file mode 100644 index 0000000000..e071223cd2 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/regex.m4 @@ -0,0 +1,114 @@ +#serial 15 + +dnl Initially derived from code in GNU grep. +dnl Mostly written by Jim Meyering. + +dnl Usage: jm_INCLUDED_REGEX([lib/regex.c]) +dnl +AC_DEFUN([jm_INCLUDED_REGEX], + [ + dnl Even packages that don't use regex.c can use this macro. + dnl Of course, for them it doesn't do anything. + + # Assume we'll default to using the included regex.c. + ac_use_included_regex=yes + + # However, if the system regex support is good enough that it passes the + # the following run test, then default to *not* using the included regex.c. + # If cross compiling, assume the test would fail and use the included + # regex.c. The first failing regular expression is from `Spencer ere + # test #75' in grep-2.3. + AC_CACHE_CHECK([for working re_compile_pattern], + jm_cv_func_working_re_compile_pattern, + AC_TRY_RUN( +[#include +#include +#include + int + main () + { + static struct re_pattern_buffer regex; + const char *s; + struct re_registers regs; + re_set_syntax (RE_SYNTAX_POSIX_EGREP); + memset (®ex, 0, sizeof (regex)); + [s = re_compile_pattern ("a[[:@:>@:]]b\n", 9, ®ex);] + /* This should fail with _Invalid character class name_ error. */ + if (!s) + exit (1); + + /* This should succeed, but doesn't for e.g. glibc-2.1.3. */ + memset (®ex, 0, sizeof (regex)); + s = re_compile_pattern ("{1", 2, ®ex); + + if (s) + exit (1); + + /* The following example is derived from a problem report + against gawk from Jorge Stolfi . */ + memset (®ex, 0, sizeof (regex)); + s = re_compile_pattern ("[[anù]]*n", 7, ®ex); + if (s) + exit (1); + + /* This should match, but doesn't for e.g. glibc-2.2.1. */ + if (re_match (®ex, "an", 2, 0, ®s) != 2) + exit (1); + + memset (®ex, 0, sizeof (regex)); + s = re_compile_pattern ("x", 1, ®ex); + if (s) + exit (1); + + /* The version of regex.c in e.g. GNU libc-2.2.93 didn't + work with a negative RANGE argument. */ + if (re_search (®ex, "wxy", 3, 2, -2, ®s) != 1) + exit (1); + + exit (0); + } + ], + jm_cv_func_working_re_compile_pattern=yes, + jm_cv_func_working_re_compile_pattern=no, + dnl When crosscompiling, assume it's broken. + jm_cv_func_working_re_compile_pattern=no)) + if test $jm_cv_func_working_re_compile_pattern = yes; then + ac_use_included_regex=no + fi + + test -n "$1" || AC_MSG_ERROR([missing argument]) + m4_syscmd([test -f $1]) + ifelse(m4_sysval, 0, + [ + AC_ARG_WITH(included-regex, + [ --without-included-regex don't compile regex; this is the default on + systems with version 2 of the GNU C library + (use with caution on other system)], + jm_with_regex=$withval, + jm_with_regex=$ac_use_included_regex) + if test "$jm_with_regex" = yes; then + AC_LIBOBJ(regex) + jm_PREREQ_REGEX + fi + ], + ) + ] +) + +# Prerequisites of lib/regex.c. +AC_DEFUN([jm_PREREQ_REGEX], +[ + dnl FIXME: Maybe provide a btowc replacement someday: solaris-2.5.1 lacks it. + dnl FIXME: Check for wctype and iswctype, and and add -lw if necessary + dnl to get them. + + dnl Persuade glibc to declare mempcpy(). + AC_REQUIRE([AC_GNU_SOURCE]) + + AC_REQUIRE([ACX_C_RESTRICT]) + AC_REQUIRE([AC_FUNC_ALLOCA]) + AC_REQUIRE([AC_HEADER_STDC]) + AC_CHECK_HEADERS_ONCE(limits.h string.h wchar.h wctype.h) + AC_CHECK_FUNCS_ONCE(isascii mempcpy) + AC_CHECK_FUNCS(btowc) +]) diff --git a/src/apps/bin/coreutils-5.0/m4/rename.m4 b/src/apps/bin/coreutils-5.0/m4/rename.m4 new file mode 100644 index 0000000000..4ce7f472d1 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/rename.m4 @@ -0,0 +1,40 @@ +#serial 3 + +dnl From Volker Borchert. +dnl Determine whether rename works for source paths with a trailing slash. +dnl The rename from SunOS 4.1.1_U1 doesn't. +dnl +dnl If it doesn't, then define RENAME_TRAILING_SLASH_BUG and arrange +dnl to compile the wrapper function. +dnl + +AC_DEFUN([vb_FUNC_RENAME], +[ + AC_CACHE_CHECK([whether rename is broken], + vb_cv_func_rename_trailing_slash_bug, + [ + rm -rf conftest.d1 conftest.d2 + mkdir conftest.d1 || + AC_MSG_ERROR([cannot create temporary directory]) + AC_TRY_RUN([ +# include + int + main () + { + exit (rename ("conftest.d1/", "conftest.d2") ? 1 : 0); + } + ], + vb_cv_func_rename_trailing_slash_bug=no, + vb_cv_func_rename_trailing_slash_bug=yes, + dnl When crosscompiling, assume rename is broken. + vb_cv_func_rename_trailing_slash_bug=yes) + + rm -rf conftest.d1 conftest.d2 + ]) + if test $vb_cv_func_rename_trailing_slash_bug = yes; then + AC_LIBOBJ(rename) + AC_DEFINE(RENAME_TRAILING_SLASH_BUG, 1, +[Define if rename does not work for source paths with a trailing slash, + like the one from SunOS 4.1.1_U1.]) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/restrict.m4 b/src/apps/bin/coreutils-5.0/m4/restrict.m4 new file mode 100644 index 0000000000..ca4f70f0bd --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/restrict.m4 @@ -0,0 +1,28 @@ +#serial 1001 +dnl based on acx_restrict.m4, from the GNU Autoconf Macro Archive at: +dnl http://www.gnu.org/software/ac-archive/htmldoc/acx_restrict.html + +# Determine whether the C/C++ compiler supports the "restrict" keyword +# introduced in ANSI C99, or an equivalent. Do nothing if the compiler +# accepts it. Otherwise, if the compiler supports an equivalent (like +# gcc's __restrict__) define "restrict" to be that. Otherwise, define +# "restrict" to be empty. + +AC_DEFUN([ACX_C_RESTRICT], +[AC_CACHE_CHECK([for C/C++ restrict keyword], acx_cv_c_restrict, + [acx_cv_c_restrict=no + # Try the official restrict keyword, then gcc's __restrict__. + for acx_kw in restrict __restrict__; do + AC_COMPILE_IFELSE([AC_LANG_SOURCE( + [float * $acx_kw x;])], + [acx_cv_c_restrict=$acx_kw; break]) + done + ]) + case $acx_cv_c_restrict in + restrict) ;; + no) AC_DEFINE(restrict,, + [Define to equivalent of C99 restrict keyword, or to nothing if this + is not supported. Do not define if restrict is supported directly.]) ;; + *) AC_DEFINE_UNQUOTED(restrict, $acx_cv_c_restrict) ;; + esac +]) diff --git a/src/apps/bin/coreutils-5.0/m4/rmdir-errno.m4 b/src/apps/bin/coreutils-5.0/m4/rmdir-errno.m4 new file mode 100644 index 0000000000..cb21d80260 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/rmdir-errno.m4 @@ -0,0 +1,43 @@ +#serial 3 + +# When rmdir fails because the specified directory is not empty, it sets +# errno to some value, usually ENOTEMPTY. However, on some AIX systems, +# ENOTEMPTY is mistakenly defined to be EEXIST. To work around this, and +# in general, to avoid depending on the use of any particular symbol, this +# test runs a test to determine the actual numeric value. +AC_DEFUN([fetish_FUNC_RMDIR_NOTEMPTY], +[dnl + AC_CACHE_CHECK([for rmdir-not-empty errno value], + fetish_cv_func_rmdir_errno_not_empty, + [ + # Arrange for deletion of the temporary directory this test creates. + ac_clean_files="$ac_clean_files confdir2" + mkdir confdir2; : > confdir2/file + AC_TRY_RUN([ +#include +#include +#ifndef errno +extern int errno; +#endif + int main () + { + FILE *s; + int val; + rmdir ("confdir2"); + val = errno; + s = fopen ("confdir2/errno", "w"); + fprintf (s, "%d\n", val); + exit (0); + } + ], + fetish_cv_func_rmdir_errno_not_empty=`cat confdir2/errno`, + fetish_cv_func_rmdir_errno_not_empty='configure error in rmdir-errno.m4', + fetish_cv_func_rmdir_errno_not_empty=ENOTEMPTY + ) + ] + ) + + AC_DEFINE_UNQUOTED([RMDIR_ERRNO_NOT_EMPTY], + $fetish_cv_func_rmdir_errno_not_empty, + [the value to which errno is set when rmdir fails on a nonempty directory]) +]) diff --git a/src/apps/bin/coreutils-5.0/m4/search-libs.m4 b/src/apps/bin/coreutils-5.0/m4/search-libs.m4 new file mode 100644 index 0000000000..41c1c04efa --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/search-libs.m4 @@ -0,0 +1,42 @@ +#serial 5 + +dnl A replacement for autoconf's macro by the same name. This version +dnl uses `ac_lib' rather than `i' for the loop variable, but more importantly +dnl moves the ACTION-IF-FOUND ([$]3) into the inner `if'-block so that it is +dnl run only if one of the listed libraries ends up being used (and not in +dnl the `none required' case. +dnl I hope it's only temporary while we wait for that version to be fixed. +undefine([AC_SEARCH_LIBS]) + +# AC_SEARCH_LIBS(FUNCTION, SEARCH-LIBS, +# [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND], +# [OTHER-LIBRARIES]) +# -------------------------------------------------------- +# Search for a library defining FUNC, if it's not already available. +AC_DEFUN([AC_SEARCH_LIBS], +[ + AC_CACHE_CHECK([for library containing $1], [ac_cv_search_$1], + [ + ac_func_search_save_LIBS=$LIBS + ac_cv_search_$1=no + AC_TRY_LINK_FUNC([$1], [ac_cv_search_$1='none required']) + if test "$ac_cv_search_$1" = no; then + for ac_lib in $2; do + LIBS="-l$ac_lib $5 $ac_func_search_save_LIBS" + AC_TRY_LINK_FUNC([$1], [ac_cv_search_$1="-l$ac_lib"; break]) + done + fi + LIBS=$ac_func_search_save_LIBS + ]) + + if test "$ac_cv_search_$1" = no; then : + $4 + else + if test "$ac_cv_search_$1" = 'none required'; then : + $4 + else + LIBS="$ac_cv_search_$1 $LIBS" + $3 + fi + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/st_dm_mode.m4 b/src/apps/bin/coreutils-5.0/m4/st_dm_mode.m4 new file mode 100644 index 0000000000..ef5232efff --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/st_dm_mode.m4 @@ -0,0 +1,17 @@ +#serial 3 + +# Define HAVE_ST_DM_MODE if struct stat has an st_dm_mode member. + +AC_DEFUN([AC_STRUCT_ST_DM_MODE], + [AC_CACHE_CHECK([for st_dm_mode in struct stat], ac_cv_struct_st_dm_mode, + [AC_TRY_COMPILE([#include +#include ], [struct stat s; s.st_dm_mode;], + ac_cv_struct_st_dm_mode=yes, + ac_cv_struct_st_dm_mode=no)]) + + if test $ac_cv_struct_st_dm_mode = yes; then + AC_DEFINE(HAVE_ST_DM_MODE, 1, + [Define if struct stat has an st_dm_mode member. ]) + fi + ] +) diff --git a/src/apps/bin/coreutils-5.0/m4/st_mtim.m4 b/src/apps/bin/coreutils-5.0/m4/st_mtim.m4 new file mode 100644 index 0000000000..e9342cfebf --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/st_mtim.m4 @@ -0,0 +1,32 @@ +#serial 5 + +dnl From Paul Eggert. + +# Define ST_MTIM_NSEC to be the nanoseconds member of struct stat's st_mtim, +# if it exists. + +AC_DEFUN([AC_STRUCT_ST_MTIM_NSEC], + [AC_CACHE_CHECK([for nanoseconds member of struct stat.st_mtim], + ac_cv_struct_st_mtim_nsec, + [ac_save_CPPFLAGS="$CPPFLAGS" + ac_cv_struct_st_mtim_nsec=no + # tv_nsec -- the usual case + # _tv_nsec -- Solaris 2.6, if + # (defined _XOPEN_SOURCE && _XOPEN_SOURCE_EXTENDED == 1 + # && !defined __EXTENSIONS__) + # st__tim.tv_nsec -- UnixWare 2.1.2 + for ac_val in tv_nsec _tv_nsec st__tim.tv_nsec; do + CPPFLAGS="$ac_save_CPPFLAGS -DST_MTIM_NSEC=$ac_val" + AC_TRY_COMPILE([#include +#include ], [struct stat s; s.st_mtim.ST_MTIM_NSEC;], + [ac_cv_struct_st_mtim_nsec=$ac_val; break]) + done + CPPFLAGS="$ac_save_CPPFLAGS"]) + + if test $ac_cv_struct_st_mtim_nsec != no; then + AC_DEFINE_UNQUOTED(ST_MTIM_NSEC, $ac_cv_struct_st_mtim_nsec, + [Define to be the nanoseconds member of struct stat's st_mtim, + if it exists.]) + fi + ] +) diff --git a/src/apps/bin/coreutils-5.0/m4/stat.m4 b/src/apps/bin/coreutils-5.0/m4/stat.m4 new file mode 100644 index 0000000000..1469ecf196 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/stat.m4 @@ -0,0 +1,40 @@ +#serial 7 + +dnl From Jim Meyering. +dnl Determine whether stat has the bug that it succeeds when given the +dnl zero-length file name argument. The stat from SunOS4.1.4 and the Hurd +dnl (as of 1998-11-01) do this. +dnl +dnl If it does, then define HAVE_STAT_EMPTY_STRING_BUG and arrange to +dnl compile the wrapper function. +dnl + +AC_DEFUN([jm_FUNC_STAT], +[ + AC_REQUIRE([AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK]) + AC_CACHE_CHECK([whether stat accepts an empty string], + jm_cv_func_stat_empty_string_bug, + [AC_TRY_RUN([ +# include +# include + + int + main () + { + struct stat sbuf; + exit (stat ("", &sbuf) ? 1 : 0); + } + ], + jm_cv_func_stat_empty_string_bug=yes, + jm_cv_func_stat_empty_string_bug=no, + dnl When crosscompiling, assume stat is broken. + jm_cv_func_stat_empty_string_bug=yes) + ]) + if test $jm_cv_func_stat_empty_string_bug = yes; then + AC_LIBOBJ(stat) + AC_DEFINE(HAVE_STAT_EMPTY_STRING_BUG, 1, +[Define if stat has the bug that it succeeds when given the zero-length + file name argument. The stat from SunOS4.1.4 and the Hurd as of 1998-11-01) + do this. ]) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/stdbool.m4 b/src/apps/bin/coreutils-5.0/m4/stdbool.m4 new file mode 100644 index 0000000000..14e5902945 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/stdbool.m4 @@ -0,0 +1,62 @@ +# Check for stdbool.h that conforms to C99. + +# Copyright (C) 2002 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 2, 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, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA +# 02111-1307, USA. + +AC_DEFUN([AC_HEADER_STDBOOL], + [AC_CACHE_CHECK([for stdbool.h that conforms to C99], + [ac_cv_header_stdbool_h], + [AC_TRY_COMPILE( + [ + #include + #ifndef bool + "error: bool is not defined" + #endif + #ifndef false + "error: false is not defined" + #endif + #if false + "error: false is not 0" + #endif + #ifndef true + "error: false is not defined" + #endif + #if true != 1 + "error: true is not 1" + #endif + #ifndef __bool_true_false_are_defined + "error: __bool_true_false_are_defined is not defined" + #endif + + struct s { _Bool s: 1; _Bool t; } s; + + char a[true == 1 ? 1 : -1]; + char b[false == 0 ? 1 : -1]; + char c[__bool_true_false_are_defined == 1 ? 1 : -1]; + char d[(bool) -0.5 == true ? 1 : -1]; + bool e = &s; + char f[(_Bool) -0.0 == false ? 1 : -1]; + char g[true]; + char h[sizeof (_Bool)]; + char i[sizeof s.t]; + ], + [ return !a + !b + !c + !d + !e + !f + !g + !h + !i; ], + [ac_cv_header_stdbool_h=yes], + [ac_cv_header_stdbool_h=no])]) + if test $ac_cv_header_stdbool_h = yes; then + AC_DEFINE(HAVE_STDBOOL_H, 1, [Define to 1 if stdbool.h conforms to C99.]) + fi]) diff --git a/src/apps/bin/coreutils-5.0/m4/strftime.m4 b/src/apps/bin/coreutils-5.0/m4/strftime.m4 new file mode 100644 index 0000000000..831faecac5 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/strftime.m4 @@ -0,0 +1,43 @@ +#serial 17 + +dnl This macro is intended to be used solely in this file. +dnl These are the prerequisite macros for GNU's strftime.c replacement. +AC_DEFUN([_jm_STRFTIME_PREREQS], +[ + dnl strftime.c uses localtime_r and the underyling system strftime + dnl if they exist. + AC_CHECK_FUNCS(localtime_r strftime) + + AC_CHECK_HEADERS(limits.h) + AC_CHECK_FUNCS(bcopy tzset mempcpy memcpy memset) + + # This defines (or not) HAVE_TZNAME and HAVE_TM_ZONE. + AC_STRUCT_TIMEZONE + + AC_CHECK_FUNCS(mblen mbrlen) + + AC_CHECK_MEMBER([struct tm.tm_gmtoff], + [AC_DEFINE(HAVE_TM_GMTOFF, 1, + [Define if struct tm has the tm_gmtoff member.])], + , + [#include ]) +]) + +dnl From Jim Meyering. +dnl +AC_DEFUN([jm_FUNC_GNU_STRFTIME], +[AC_REQUIRE([AC_HEADER_TIME])dnl + + _jm_STRFTIME_PREREQS + + AC_REQUIRE([AC_C_CONST])dnl + AC_REQUIRE([AC_HEADER_STDC])dnl + AC_CHECK_HEADERS(sys/time.h) + AC_DEFINE([my_strftime], [nstrftime], + [Define to the name of the strftime replacement function.]) +]) + +AC_DEFUN([jm_FUNC_STRFTIME], +[ + _jm_STRFTIME_PREREQS +]) diff --git a/src/apps/bin/coreutils-5.0/m4/timespec.m4 b/src/apps/bin/coreutils-5.0/m4/timespec.m4 new file mode 100644 index 0000000000..5edb554dbe --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/timespec.m4 @@ -0,0 +1,34 @@ +#serial 5 + +dnl From Jim Meyering + +dnl Define HAVE_STRUCT_TIMESPEC if `struct timespec' is declared +dnl in time.h or sys/time.h. + +AC_DEFUN([jm_CHECK_TYPE_STRUCT_TIMESPEC], +[ + AC_REQUIRE([AC_HEADER_TIME]) + AC_CACHE_CHECK([for struct timespec], fu_cv_sys_struct_timespec, + [AC_TRY_COMPILE( + [ +# if TIME_WITH_SYS_TIME +# include +# include +# else +# if HAVE_SYS_TIME_H +# include +# else +# include +# endif +# endif + ], + [static struct timespec x; x.tv_sec = x.tv_nsec;], + fu_cv_sys_struct_timespec=yes, + fu_cv_sys_struct_timespec=no) + ]) + + if test $fu_cv_sys_struct_timespec = yes; then + AC_DEFINE(HAVE_STRUCT_TIMESPEC, 1, + [Define if struct timespec is declared in . ]) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/unlink-busy.m4 b/src/apps/bin/coreutils-5.0/m4/unlink-busy.m4 new file mode 100644 index 0000000000..79152e9d53 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/unlink-busy.m4 @@ -0,0 +1,32 @@ +#serial 6 + +dnl From J. David Anglin. + +dnl HPUX and other systems can't unlink shared text that is being executed. + +AC_DEFUN([jm_FUNC_UNLINK_BUSY_TEXT], +[dnl + AC_CACHE_CHECK([whether a running program can be unlinked], + jm_cv_func_unlink_busy_text, + [ + AC_TRY_RUN([ + main (argc, argv) + int argc; + char **argv; + { + if (!argc) + exit (-1); + exit (unlink (argv[0])); + } + ], + jm_cv_func_unlink_busy_text=yes, + jm_cv_func_unlink_busy_text=no, + jm_cv_func_unlink_busy_text=no + ) + ] + ) + + if test $jm_cv_func_unlink_busy_text = no; then + INSTALL=$ac_install_sh + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/uptime.m4 b/src/apps/bin/coreutils-5.0/m4/uptime.m4 new file mode 100644 index 0000000000..c616eaa85d --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/uptime.m4 @@ -0,0 +1,18 @@ +#serial 5 + +AC_PREREQ(2.13) + +AC_DEFUN([jm_SYS_PROC_UPTIME], +[ dnl Require AC_PROG_CC to see if we're cross compiling. + AC_REQUIRE([AC_PROG_CC]) + AC_CACHE_CHECK([for /proc/uptime], jm_cv_have_proc_uptime, + [jm_cv_have_proc_uptime=no + test -f /proc/uptime \ + && test "$cross_compiling" = no \ + && cat < /proc/uptime >/dev/null 2>/dev/null \ + && jm_cv_have_proc_uptime=yes]) + if test $jm_cv_have_proc_uptime = yes; then + AC_DEFINE(HAVE_PROC_UPTIME, 1, + [ Define if your system has the /proc/uptime special file.]) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/utimbuf.m4 b/src/apps/bin/coreutils-5.0/m4/utimbuf.m4 new file mode 100644 index 0000000000..4ea49523e4 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/utimbuf.m4 @@ -0,0 +1,40 @@ +#serial 4 + +dnl From Jim Meyering + +dnl Define HAVE_STRUCT_UTIMBUF if `struct utimbuf' is declared -- +dnl usually in . +dnl Some systems have utime.h but don't declare the struct anywhere. + +AC_DEFUN([jm_CHECK_TYPE_STRUCT_UTIMBUF], +[ + AC_CHECK_HEADERS(utime.h) + AC_REQUIRE([AC_HEADER_TIME]) + AC_CACHE_CHECK([for struct utimbuf], fu_cv_sys_struct_utimbuf, + [AC_TRY_COMPILE( + [ +#ifdef TIME_WITH_SYS_TIME +# include +# include +#else +# ifdef HAVE_SYS_TIME_H +# include +# else +# include +# endif +#endif +#ifdef HAVE_UTIME_H +# include +#endif + ], + [static struct utimbuf x; x.actime = x.modtime;], + fu_cv_sys_struct_utimbuf=yes, + fu_cv_sys_struct_utimbuf=no) + ]) + + if test $fu_cv_sys_struct_utimbuf = yes; then + AC_DEFINE(HAVE_STRUCT_UTIMBUF, 1, +[Define if struct utimbuf is declared -- usually in . + Some systems have utime.h but don't declare the struct anywhere. ]) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/utime.m4 b/src/apps/bin/coreutils-5.0/m4/utime.m4 new file mode 100644 index 0000000000..34a0d1a1b9 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/utime.m4 @@ -0,0 +1,18 @@ +#serial 3 + +dnl From Jim Meyering +dnl Replace the utime function on systems that need it. + +dnl FIXME + +AC_DEFUN([jm_FUNC_UTIME], +[ + AC_CHECK_HEADERS(utime.h) + AC_REQUIRE([jm_CHECK_TYPE_STRUCT_UTIMBUF]) + AC_REQUIRE([AC_FUNC_UTIME_NULL]) + + if test $ac_cv_func_utime_null = no; then + jm_FUNC_UTIMES_NULL + AC_REPLACE_FUNCS(utime) + fi +]) diff --git a/src/apps/bin/coreutils-5.0/m4/utimes.m4 b/src/apps/bin/coreutils-5.0/m4/utimes.m4 new file mode 100644 index 0000000000..f7e7842c5a --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/utimes.m4 @@ -0,0 +1,32 @@ +#serial 4 + +dnl Shamelessly cloned from acspecific.m4's AC_FUNC_UTIME_NULL, +dnl then do case-insensitive s/utime/utimes/. + +AC_DEFUN([jm_FUNC_UTIMES_NULL], +[AC_CACHE_CHECK(whether utimes accepts a null argument, ac_cv_func_utimes_null, +[rm -f conftest.data; > conftest.data +AC_TRY_RUN([ +/* In case stat has been defined to rpl_stat, undef it here. */ +#undef stat +#include +#include +main() { +struct stat s, t; +exit(!(stat ("conftest.data", &s) == 0 + && utimes("conftest.data", (long *)0) == 0 + && stat("conftest.data", &t) == 0 + && t.st_mtime >= s.st_mtime + && t.st_mtime - s.st_mtime < 120)); +}], + ac_cv_func_utimes_null=yes, + ac_cv_func_utimes_null=no, + ac_cv_func_utimes_null=no) +rm -f core core.* *.core]) + + if test $ac_cv_func_utimes_null = yes; then + AC_DEFINE(HAVE_UTIMES_NULL, 1, + [Define if utimes accepts a null argument]) + fi + ] +) diff --git a/src/apps/bin/coreutils-5.0/m4/xstrtoimax.m4 b/src/apps/bin/coreutils-5.0/m4/xstrtoimax.m4 new file mode 100644 index 0000000000..438e8528d7 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/xstrtoimax.m4 @@ -0,0 +1,41 @@ +#serial 2 +dnl Cloned from xstrtoumax.m4. Keep these files in sync. + +# autoconf tests required for use of xstrtoimax.c + +AC_DEFUN([jm_AC_PREREQ_XSTRTOIMAX], +[ + AC_REQUIRE([jm_AC_TYPE_INTMAX_T]) + AC_REQUIRE([jm_AC_TYPE_UINTMAX_T]) + AC_REQUIRE([jm_AC_TYPE_LONG_LONG]) + AC_REQUIRE([jm_AC_TYPE_UNSIGNED_LONG_LONG]) + AC_CHECK_DECLS([strtol, strtoul, strtoll, strtoimax, strtoumax]) + AC_CHECK_HEADERS(limits.h stdlib.h inttypes.h) + + AC_CACHE_CHECK([whether defines strtoimax as a macro], + jm_cv_func_strtoimax_macro, + AC_EGREP_CPP([inttypes_h_defines_strtoimax], [#include +#ifdef strtoimax + inttypes_h_defines_strtoimax +#endif], + jm_cv_func_strtoimax_macro=yes, + jm_cv_func_strtoimax_macro=no)) + + if test "$jm_cv_func_strtoimax_macro" != yes; then + AC_REPLACE_FUNCS(strtoimax) + fi + + dnl Only the replacement strtoimax invokes strtol and strtoll, + dnl so we need the replacements only if strtoimax does not exist. + case "$jm_cv_func_strtoimax_macro,$ac_cv_func_strtoimax" in + no,no) + AC_REPLACE_FUNCS(strtol) + + dnl We don't need (and can't compile) the replacement strtoll + dnl unless the type `long long' exists. + if test "$ac_cv_type_long_long" = yes; then + AC_REPLACE_FUNCS(strtoll) + fi + ;; + esac +]) diff --git a/src/apps/bin/coreutils-5.0/m4/xstrtoumax.m4 b/src/apps/bin/coreutils-5.0/m4/xstrtoumax.m4 new file mode 100644 index 0000000000..9ab71ec6dd --- /dev/null +++ b/src/apps/bin/coreutils-5.0/m4/xstrtoumax.m4 @@ -0,0 +1,40 @@ +#serial 4 + +# autoconf tests required for use of xstrtoumax.c + +AC_DEFUN([jm_AC_PREREQ_XSTRTOUMAX], +[ + AC_REQUIRE([jm_AC_TYPE_INTMAX_T]) + AC_REQUIRE([jm_AC_TYPE_UINTMAX_T]) + AC_REQUIRE([jm_AC_TYPE_LONG_LONG]) + AC_REQUIRE([jm_AC_TYPE_UNSIGNED_LONG_LONG]) + AC_CHECK_DECLS([strtol, strtoul, strtoull, strtoimax, strtoumax]) + AC_CHECK_HEADERS(limits.h stdlib.h inttypes.h) + + AC_CACHE_CHECK([whether defines strtoumax as a macro], + jm_cv_func_strtoumax_macro, + AC_EGREP_CPP([inttypes_h_defines_strtoumax], [#include +#ifdef strtoumax + inttypes_h_defines_strtoumax +#endif], + jm_cv_func_strtoumax_macro=yes, + jm_cv_func_strtoumax_macro=no)) + + if test "$jm_cv_func_strtoumax_macro" != yes; then + AC_REPLACE_FUNCS(strtoumax) + fi + + dnl Only the replacement strtoumax invokes strtoul and strtoull, + dnl so we need the replacements only if strtoumax does not exist. + case "$jm_cv_func_strtoumax_macro,$ac_cv_func_strtoumax" in + no,no) + AC_REPLACE_FUNCS(strtoul) + + dnl We don't need (and can't compile) the replacement strtoull + dnl unless the type `unsigned long long' exists. + if test "$ac_cv_type_unsigned_long_long" = yes; then + AC_REPLACE_FUNCS(strtoull) + fi + ;; + esac +]) diff --git a/src/apps/bin/coreutils-5.0/man/Makefile b/src/apps/bin/coreutils-5.0/man/Makefile new file mode 100644 index 0000000000..f39514a894 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/Makefile @@ -0,0 +1,490 @@ +# Makefile.in generated by automake 1.7.3 from Makefile.am. +# man/Makefile. Generated from Makefile.in by configure. + +# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +# Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +srcdir = . +top_srcdir = .. + +pkgdatadir = $(datadir)/coreutils +pkglibdir = $(libdir)/coreutils +pkgincludedir = $(includedir)/coreutils +top_builddir = .. + +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +INSTALL = /bin/install -c +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +host_triplet = i586-pc-beos +ACLOCAL = ${SHELL} /boot/home/Development/current/src/apps/bin/coreutils-5.0/config/missing --run aclocal-1.7 +ALLOCA = +AMDEP_FALSE = # +AMDEP_TRUE = +AMTAR = ${SHELL} /boot/home/Development/current/src/apps/bin/coreutils-5.0/config/missing --run tar +AUTOCONF = ${SHELL} /boot/home/Development/current/src/apps/bin/coreutils-5.0/config/missing --run autoconf +AUTOHEADER = ${SHELL} /boot/home/Development/current/src/apps/bin/coreutils-5.0/config/missing --run autoheader +AUTOMAKE = ${SHELL} /boot/home/Development/current/src/apps/bin/coreutils-5.0/config/missing --run automake-1.7 +AWK = gawk +CC = gcc +CCDEPMODE = depmode=gcc +CFLAGS = -g -O2 +CPP = gcc -E +CPPFLAGS = +CYGPATH_W = echo +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DF_PROG = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = grep -E +EXEEXT = +FESETROUND_LIBM = +GETLOADAVG_LIBS = +GLIBC21 = no +GMSGFMT = : +GNU_PACKAGE = GNU coreutils +HELP2MAN = ${SHELL} /boot/home/Development/current/src/apps/bin/coreutils-5.0/config/missing --run help2man +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s +INTLLIBS = +KMEM_GROUP = +LDFLAGS = +LIBICONV = +LIBINTL = +LIBOBJS = fileblocks$U.o mkdir$U.o fnmatch$U.o strnlen$U.o ftw$U.o tsearch$U.o lchown$U.o chown$U.o mktime$U.o nanosleep$U.o group-member$U.o putenv$U.o error$U.o __fpending$U.o rename$U.o getcwd$U.o canonicalize$U.o regex$U.o getloadavg$U.o getusershell$U.o sig2str$U.o euidaccess$U.o rpmatch$U.o strndup$U.o strverscmp$U.o getpass$U.o memrchr$U.o fchdir-stub$U.o +LIBS = +LIB_CLOCK_GETTIME = +LIB_CRYPT = +LIB_NANOSLEEP = +LN_S = ln -s +LTLIBICONV = +LTLIBINTL = +LTLIBOBJS = fileblocks$U.lo mkdir$U.lo fnmatch$U.lo strnlen$U.lo ftw$U.lo tsearch$U.lo lchown$U.lo chown$U.lo mktime$U.lo nanosleep$U.lo group-member$U.lo putenv$U.lo error$U.lo __fpending$U.lo rename$U.lo getcwd$U.lo canonicalize$U.lo regex$U.lo getloadavg$U.lo getusershell$U.lo sig2str$U.lo euidaccess$U.lo rpmatch$U.lo strndup$U.lo strverscmp$U.lo getpass$U.lo memrchr$U.lo fchdir-stub$U.lo +MAKEINFO = ${SHELL} /boot/home/Development/current/src/apps/bin/coreutils-5.0/config/missing --run makeinfo +MAN = uname.1 stty.1 +MKINSTALLDIRS = config/mkinstalldirs +MSGFMT = : +MSGMERGE = : +NEED_SETGID = false +OBJEXT = o +OPTIONAL_BIN_PROGS = uname$(EXEEXT) stty$(EXEEXT) +OPTIONAL_BIN_ZCRIPTS = +PACKAGE = coreutils +PACKAGE_BUGREPORT = bug-coreutils@gnu.org +PACKAGE_NAME = GNU coreutils +PACKAGE_STRING = GNU coreutils 5.0 +PACKAGE_TARNAME = coreutils +PACKAGE_VERSION = 5.0 +PATH_SEPARATOR = : +PERL = perl +POSUB = +POW_LIB = +RANLIB = ranlib +SEQ_LIBM = +SET_MAKE = +SHELL = /bin/sh +SQRT_LIBM = +STRIP = +U = +USE_NLS = no +VERSION = 5.0 +XGETTEXT = : +YACC = bison -y +ac_ct_CC = gcc +ac_ct_RANLIB = ranlib +ac_ct_STRIP = +am__fastdepCC_FALSE = +am__fastdepCC_TRUE = # +am__include = include +am__leading_dot = . +am__quote = +bindir = ${exec_prefix}/bin +build = i586-pc-beos +build_alias = +build_cpu = i586 +build_os = beos +build_vendor = pc +datadir = ${prefix}/share +exec_prefix = ${prefix} +host = i586-pc-beos +host_alias = +host_cpu = i586 +host_os = beos +host_vendor = pc +includedir = ${prefix}/include +infodir = ${prefix}/info +install_sh = /boot/home/Development/current/src/apps/bin/coreutils-5.0/config/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localstatedir = ${prefix}/var +mandir = ${prefix}/man +oldincludedir = /usr/include +prefix = /usr/local +program_transform_name = s,x,x, +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +sysconfdir = ${prefix}/etc +target_alias = +dist_man_MANS = \ + basename.1 cat.1 chgrp.1 chmod.1 chown.1 chroot.1 cksum.1 comm.1 \ + cp.1 csplit.1 cut.1 date.1 dd.1 df.1 dir.1 dircolors.1 dirname.1 du.1 \ + echo.1 env.1 expand.1 expr.1 factor.1 false.1 fmt.1 fold.1 groups.1 \ + head.1 hostid.1 hostname.1 id.1 install.1 join.1 link.1 ln.1 logname.1 \ + ls.1 md5sum.1 mkdir.1 mkfifo.1 mknod.1 mv.1 nice.1 nl.1 nohup.1 od.1 \ + paste.1 pathchk.1 pinky.1 pr.1 printenv.1 printf.1 ptx.1 pwd.1 readlink.1 \ + rm.1 rmdir.1 seq.1 sha1sum.1 shred.1 sleep.1 sort.1 split.1 stat.1 stty.1 \ + su.1 sum.1 sync.1 tac.1 tail.1 tee.1 test.1 touch.1 tr.1 true.1 tsort.1 \ + tty.1 uname.1 unexpand.1 uniq.1 unlink.1 uptime.1 users.1 vdir.1 wc.1 \ + who.1 whoami.1 yes.1 + + +man_aux = $(dist_man_MANS:.1=.x) + +EXTRA_DIST = $(man_aux) +MAINTAINERCLEANFILES = $(man_MANS) + +# Depend on configure.ac to get version number changes. +common_dep = $(top_srcdir)/configure.ac + +SUFFIXES = .x .1 + +# Ensure that help2man runs the ../src/ginstall binary as +# `install' when creating install.1. +t = $*.td +mapped_name = `echo $*|sed 's/install/ginstall/'` +subdir = man +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +DIST_SOURCES = + +NROFF = nroff +MANS = $(dist_man_MANS) +DIST_COMMON = $(dist_man_MANS) Makefile.am Makefile.in +all: all-am + +.SUFFIXES: +.SUFFIXES: .x .1 +$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnits man/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +uninstall-info-am: + +man1dir = $(mandir)/man1 +install-man1: $(man1_MANS) $(man_MANS) + @$(NORMAL_INSTALL) + $(mkinstalldirs) $(DESTDIR)$(man1dir) + @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \ + l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ + for i in $$l2; do \ + case "$$i" in \ + *.1*) list="$$list $$i" ;; \ + esac; \ + done; \ + for i in $$list; do \ + if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \ + else file=$$i; fi; \ + ext=`echo $$i | sed -e 's/^.*\\.//'`; \ + case "$$ext" in \ + 1*) ;; \ + *) ext='1' ;; \ + esac; \ + inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ + inst=`echo $$inst | sed -e 's/^.*\///'`; \ + inst=`echo $$inst | sed '$(transform)'`.$$ext; \ + echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst"; \ + $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst; \ + done +uninstall-man1: + @$(NORMAL_UNINSTALL) + @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \ + l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ + for i in $$l2; do \ + case "$$i" in \ + *.1*) list="$$list $$i" ;; \ + esac; \ + done; \ + for i in $$list; do \ + ext=`echo $$i | sed -e 's/^.*\\.//'`; \ + case "$$ext" in \ + 1*) ;; \ + *) ext='1' ;; \ + esac; \ + inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ + inst=`echo $$inst | sed -e 's/^.*\///'`; \ + inst=`echo $$inst | sed '$(transform)'`.$$ext; \ + echo " rm -f $(DESTDIR)$(man1dir)/$$inst"; \ + rm -f $(DESTDIR)$(man1dir)/$$inst; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + +top_distdir = .. +distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkinstalldirs) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ + if test -d $$d/$$file; then \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(MANS) + +installdirs: + $(mkinstalldirs) $(DESTDIR)$(man1dir) + +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -rm -f Makefile $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." + -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +info: info-am + +info-am: + +install-data-am: install-man + +install-exec-am: + +install-info: install-info-am + +install-man: install-man1 + +installcheck-am: + +maintainer-clean: maintainer-clean-am + +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-info-am uninstall-man + +uninstall-man: uninstall-man1 + +.PHONY: all all-am check check-am check-local clean clean-generic \ + distclean distclean-generic distdir dvi dvi-am info info-am \ + install install-am install-data install-data-am install-exec \ + install-exec-am install-info install-info-am install-man \ + install-man1 install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \ + uninstall-am uninstall-info-am uninstall-man uninstall-man1 + + +basename.1: $(common_dep) $(srcdir)/basename.x ../src/basename.c +cat.1: $(common_dep) $(srcdir)/cat.x ../src/cat.c +chgrp.1: $(common_dep) $(srcdir)/chgrp.x ../src/chgrp.c +chmod.1: $(common_dep) $(srcdir)/chmod.x ../src/chmod.c +chown.1: $(common_dep) $(srcdir)/chown.x ../src/chown.c +chroot.1: $(common_dep) $(srcdir)/chroot.x ../src/chroot.c +cksum.1: $(common_dep) $(srcdir)/cksum.x ../src/cksum.c +comm.1: $(common_dep) $(srcdir)/comm.x ../src/comm.c +cp.1: $(common_dep) $(srcdir)/cp.x ../src/cp.c +csplit.1: $(common_dep) $(srcdir)/csplit.x ../src/csplit.c +cut.1: $(common_dep) $(srcdir)/cut.x ../src/cut.c +date.1: $(common_dep) $(srcdir)/date.x ../src/date.c +dd.1: $(common_dep) $(srcdir)/dd.x ../src/dd.c +df.1: $(common_dep) $(srcdir)/df.x ../src/df.c + +# Note that dir depends on ls.c, since that's where it's --help text is. +dir.1: $(common_dep) $(srcdir)/dir.x ../src/ls.c + +dircolors.1: $(common_dep) $(srcdir)/dircolors.x ../src/dircolors.c +dirname.1: $(common_dep) $(srcdir)/dirname.x ../src/dirname.c +du.1: $(common_dep) $(srcdir)/du.x ../src/du.c +echo.1: $(common_dep) $(srcdir)/echo.x ../src/echo.c +env.1: $(common_dep) $(srcdir)/env.x ../src/env.c +expand.1: $(common_dep) $(srcdir)/expand.x ../src/expand.c +expr.1: $(common_dep) $(srcdir)/expr.x ../src/expr.c +factor.1: $(common_dep) $(srcdir)/factor.x ../src/factor.c +false.1: $(common_dep) $(srcdir)/false.x ../src/false.c +fmt.1: $(common_dep) $(srcdir)/fmt.x ../src/fmt.c +fold.1: $(common_dep) $(srcdir)/fold.x ../src/fold.c +groups.1: $(common_dep) $(srcdir)/groups.x ../src/groups.sh +head.1: $(common_dep) $(srcdir)/head.x ../src/head.c +hostid.1: $(common_dep) $(srcdir)/hostid.x ../src/hostid.c +hostname.1: $(common_dep) $(srcdir)/hostname.x ../src/hostname.c +id.1: $(common_dep) $(srcdir)/id.x ../src/id.c +install.1: $(common_dep) $(srcdir)/install.x ../src/install.c +join.1: $(common_dep) $(srcdir)/join.x ../src/join.c +link.1: $(common_dep) $(srcdir)/link.x ../src/link.c +ln.1: $(common_dep) $(srcdir)/ln.x ../src/ln.c +logname.1: $(common_dep) $(srcdir)/logname.x ../src/logname.c +ls.1: $(common_dep) $(srcdir)/ls.x ../src/ls.c +md5sum.1: $(common_dep) $(srcdir)/md5sum.x ../src/md5sum.c +mkdir.1: $(common_dep) $(srcdir)/mkdir.x ../src/mkdir.c +mkfifo.1: $(common_dep) $(srcdir)/mkfifo.x ../src/mkfifo.c +mknod.1: $(common_dep) $(srcdir)/mknod.x ../src/mknod.c +mv.1: $(common_dep) $(srcdir)/mv.x ../src/mv.c +nice.1: $(common_dep) $(srcdir)/nice.x ../src/nice.c +nl.1: $(common_dep) $(srcdir)/nl.x ../src/nl.c +nohup.1: $(common_dep) $(srcdir)/nohup.x ../src/nohup.sh +od.1: $(common_dep) $(srcdir)/od.x ../src/od.c +paste.1: $(common_dep) $(srcdir)/paste.x ../src/paste.c +pathchk.1: $(common_dep) $(srcdir)/pathchk.x ../src/pathchk.c +pinky.1: $(common_dep) $(srcdir)/pinky.x ../src/pinky.c +pr.1: $(common_dep) $(srcdir)/pr.x ../src/pr.c +printenv.1: $(common_dep) $(srcdir)/printenv.x ../src/printenv.c +printf.1: $(common_dep) $(srcdir)/printf.x ../src/printf.c +ptx.1: $(common_dep) $(srcdir)/ptx.x ../src/ptx.c +pwd.1: $(common_dep) $(srcdir)/pwd.x ../src/pwd.c +readlink.1: $(common_dep) $(srcdir)/readlink.x ../src/readlink.c +rm.1: $(common_dep) $(srcdir)/rm.x ../src/rm.c +rmdir.1: $(common_dep) $(srcdir)/rmdir.x ../src/rmdir.c +seq.1: $(common_dep) $(srcdir)/seq.x ../src/seq.c +sha1sum.1: $(common_dep) $(srcdir)/sha1sum.x ../src/md5sum.c +shred.1: $(common_dep) $(srcdir)/shred.x ../src/shred.c +sleep.1: $(common_dep) $(srcdir)/sleep.x ../src/sleep.c +sort.1: $(common_dep) $(srcdir)/sort.x ../src/sort.c +split.1: $(common_dep) $(srcdir)/split.x ../src/split.c +stat.1: $(common_dep) $(srcdir)/stat.x ../src/stat.c +stty.1: $(common_dep) $(srcdir)/stty.x ../src/stty.c +su.1: $(common_dep) $(srcdir)/su.x ../src/su.c +sum.1: $(common_dep) $(srcdir)/sum.x ../src/sum.c +sync.1: $(common_dep) $(srcdir)/sync.x ../src/sync.c +tac.1: $(common_dep) $(srcdir)/tac.x ../src/tac.c +tail.1: $(common_dep) $(srcdir)/tail.x ../src/tail.c +tee.1: $(common_dep) $(srcdir)/tee.x ../src/tee.c +test.1: $(common_dep) $(srcdir)/test.x ../src/test.c +touch.1: $(common_dep) $(srcdir)/touch.x ../src/touch.c +tr.1: $(common_dep) $(srcdir)/tr.x ../src/tr.c +true.1: $(common_dep) $(srcdir)/true.x ../src/true.c +tsort.1: $(common_dep) $(srcdir)/tsort.x ../src/tsort.c +tty.1: $(common_dep) $(srcdir)/tty.x ../src/tty.c +uname.1: $(common_dep) $(srcdir)/uname.x ../src/uname.c +unexpand.1: $(common_dep) $(srcdir)/unexpand.x ../src/unexpand.c +uniq.1: $(common_dep) $(srcdir)/uniq.x ../src/uniq.c +unlink.1: $(common_dep) $(srcdir)/unlink.x ../src/unlink.c +uptime.1: $(common_dep) $(srcdir)/uptime.x ../src/uptime.c +users.1: $(common_dep) $(srcdir)/users.x ../src/users.c +vdir.1: $(common_dep) $(srcdir)/vdir.x ../src/ls.c +wc.1: $(common_dep) $(srcdir)/wc.x ../src/wc.c +who.1: $(common_dep) $(srcdir)/who.x ../src/who.c +whoami.1: $(common_dep) $(srcdir)/whoami.x ../src/whoami.c +yes.1: $(common_dep) $(srcdir)/yes.x ../src/yes.c + +# Note the use of $t/$*, rather than just `$*' as in other packages. +# That is necessary to avoid failures for programs that are also shell built-in +# functions like echo, false, printf, pwd. +.x.1: + @echo "Updating man page $@"; \ + mkdir $t; \ + (cd $t && $(LN_S) ../../src/$(mapped_name)$(EXEEXT) $*$(EXEEXT)); \ + $(HELP2MAN) \ + --include=$(srcdir)/$*.x \ + --output=$@ $t/$*$(EXEEXT); \ + rm -rf $t + +check-local: check-x-vs-1 + +# Ensure that for each .x file in this directory, there is a +# corresponding .1 file in the definition of $(dist_man_MANS) above. +.PHONY: check-x-vs-1 +check-x-vs-1: + PATH=../src:$$PATH; export PATH; \ + t=ls-files.$$$$; \ + (cd $(srcdir) && ls -1 *.x) | sed 's/\.x$$//' | sort > $$t; \ + echo $(dist_man_MANS) | fmt -w1 | sed 's/\.1$$//' | sort -u \ + | diff - $$t || { rm $$t; exit 1; }; \ + rm $$t +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/src/apps/bin/coreutils-5.0/man/Makefile.am b/src/apps/bin/coreutils-5.0/man/Makefile.am new file mode 100644 index 0000000000..194c5a9834 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/Makefile.am @@ -0,0 +1,144 @@ +## Process this file with automake to produce Makefile.in -*-Makefile-*- +dist_man_MANS = \ + basename.1 cat.1 chgrp.1 chmod.1 chown.1 chroot.1 cksum.1 comm.1 \ + cp.1 csplit.1 cut.1 date.1 dd.1 df.1 dir.1 dircolors.1 dirname.1 du.1 \ + echo.1 env.1 expand.1 expr.1 factor.1 false.1 fmt.1 fold.1 groups.1 \ + head.1 hostid.1 hostname.1 id.1 install.1 join.1 link.1 ln.1 logname.1 \ + ls.1 md5sum.1 mkdir.1 mkfifo.1 mknod.1 mv.1 nice.1 nl.1 nohup.1 od.1 \ + paste.1 pathchk.1 pinky.1 pr.1 printenv.1 printf.1 ptx.1 pwd.1 readlink.1 \ + rm.1 rmdir.1 seq.1 sha1sum.1 shred.1 sleep.1 sort.1 split.1 stat.1 stty.1 \ + su.1 sum.1 sync.1 tac.1 tail.1 tee.1 test.1 touch.1 tr.1 true.1 tsort.1 \ + tty.1 uname.1 unexpand.1 uniq.1 unlink.1 uptime.1 users.1 vdir.1 wc.1 \ + who.1 whoami.1 yes.1 + +man_aux = $(dist_man_MANS:.1=.x) + +EXTRA_DIST = $(man_aux) +MAINTAINERCLEANFILES = $(man_MANS) + +# Depend on configure.ac to get version number changes. +common_dep = $(top_srcdir)/configure.ac + +basename.1: $(common_dep) $(srcdir)/basename.x ../src/basename.c +cat.1: $(common_dep) $(srcdir)/cat.x ../src/cat.c +chgrp.1: $(common_dep) $(srcdir)/chgrp.x ../src/chgrp.c +chmod.1: $(common_dep) $(srcdir)/chmod.x ../src/chmod.c +chown.1: $(common_dep) $(srcdir)/chown.x ../src/chown.c +chroot.1: $(common_dep) $(srcdir)/chroot.x ../src/chroot.c +cksum.1: $(common_dep) $(srcdir)/cksum.x ../src/cksum.c +comm.1: $(common_dep) $(srcdir)/comm.x ../src/comm.c +cp.1: $(common_dep) $(srcdir)/cp.x ../src/cp.c +csplit.1: $(common_dep) $(srcdir)/csplit.x ../src/csplit.c +cut.1: $(common_dep) $(srcdir)/cut.x ../src/cut.c +date.1: $(common_dep) $(srcdir)/date.x ../src/date.c +dd.1: $(common_dep) $(srcdir)/dd.x ../src/dd.c +df.1: $(common_dep) $(srcdir)/df.x ../src/df.c + +# Note that dir depends on ls.c, since that's where it's --help text is. +dir.1: $(common_dep) $(srcdir)/dir.x ../src/ls.c + +dircolors.1: $(common_dep) $(srcdir)/dircolors.x ../src/dircolors.c +dirname.1: $(common_dep) $(srcdir)/dirname.x ../src/dirname.c +du.1: $(common_dep) $(srcdir)/du.x ../src/du.c +echo.1: $(common_dep) $(srcdir)/echo.x ../src/echo.c +env.1: $(common_dep) $(srcdir)/env.x ../src/env.c +expand.1: $(common_dep) $(srcdir)/expand.x ../src/expand.c +expr.1: $(common_dep) $(srcdir)/expr.x ../src/expr.c +factor.1: $(common_dep) $(srcdir)/factor.x ../src/factor.c +false.1: $(common_dep) $(srcdir)/false.x ../src/false.c +fmt.1: $(common_dep) $(srcdir)/fmt.x ../src/fmt.c +fold.1: $(common_dep) $(srcdir)/fold.x ../src/fold.c +groups.1: $(common_dep) $(srcdir)/groups.x ../src/groups.sh +head.1: $(common_dep) $(srcdir)/head.x ../src/head.c +hostid.1: $(common_dep) $(srcdir)/hostid.x ../src/hostid.c +hostname.1: $(common_dep) $(srcdir)/hostname.x ../src/hostname.c +id.1: $(common_dep) $(srcdir)/id.x ../src/id.c +install.1: $(common_dep) $(srcdir)/install.x ../src/install.c +join.1: $(common_dep) $(srcdir)/join.x ../src/join.c +link.1: $(common_dep) $(srcdir)/link.x ../src/link.c +ln.1: $(common_dep) $(srcdir)/ln.x ../src/ln.c +logname.1: $(common_dep) $(srcdir)/logname.x ../src/logname.c +ls.1: $(common_dep) $(srcdir)/ls.x ../src/ls.c +md5sum.1: $(common_dep) $(srcdir)/md5sum.x ../src/md5sum.c +mkdir.1: $(common_dep) $(srcdir)/mkdir.x ../src/mkdir.c +mkfifo.1: $(common_dep) $(srcdir)/mkfifo.x ../src/mkfifo.c +mknod.1: $(common_dep) $(srcdir)/mknod.x ../src/mknod.c +mv.1: $(common_dep) $(srcdir)/mv.x ../src/mv.c +nice.1: $(common_dep) $(srcdir)/nice.x ../src/nice.c +nl.1: $(common_dep) $(srcdir)/nl.x ../src/nl.c +nohup.1: $(common_dep) $(srcdir)/nohup.x ../src/nohup.sh +od.1: $(common_dep) $(srcdir)/od.x ../src/od.c +paste.1: $(common_dep) $(srcdir)/paste.x ../src/paste.c +pathchk.1: $(common_dep) $(srcdir)/pathchk.x ../src/pathchk.c +pinky.1: $(common_dep) $(srcdir)/pinky.x ../src/pinky.c +pr.1: $(common_dep) $(srcdir)/pr.x ../src/pr.c +printenv.1: $(common_dep) $(srcdir)/printenv.x ../src/printenv.c +printf.1: $(common_dep) $(srcdir)/printf.x ../src/printf.c +ptx.1: $(common_dep) $(srcdir)/ptx.x ../src/ptx.c +pwd.1: $(common_dep) $(srcdir)/pwd.x ../src/pwd.c +readlink.1: $(common_dep) $(srcdir)/readlink.x ../src/readlink.c +rm.1: $(common_dep) $(srcdir)/rm.x ../src/rm.c +rmdir.1: $(common_dep) $(srcdir)/rmdir.x ../src/rmdir.c +seq.1: $(common_dep) $(srcdir)/seq.x ../src/seq.c +sha1sum.1: $(common_dep) $(srcdir)/sha1sum.x ../src/md5sum.c +shred.1: $(common_dep) $(srcdir)/shred.x ../src/shred.c +sleep.1: $(common_dep) $(srcdir)/sleep.x ../src/sleep.c +sort.1: $(common_dep) $(srcdir)/sort.x ../src/sort.c +split.1: $(common_dep) $(srcdir)/split.x ../src/split.c +stat.1: $(common_dep) $(srcdir)/stat.x ../src/stat.c +stty.1: $(common_dep) $(srcdir)/stty.x ../src/stty.c +su.1: $(common_dep) $(srcdir)/su.x ../src/su.c +sum.1: $(common_dep) $(srcdir)/sum.x ../src/sum.c +sync.1: $(common_dep) $(srcdir)/sync.x ../src/sync.c +tac.1: $(common_dep) $(srcdir)/tac.x ../src/tac.c +tail.1: $(common_dep) $(srcdir)/tail.x ../src/tail.c +tee.1: $(common_dep) $(srcdir)/tee.x ../src/tee.c +test.1: $(common_dep) $(srcdir)/test.x ../src/test.c +touch.1: $(common_dep) $(srcdir)/touch.x ../src/touch.c +tr.1: $(common_dep) $(srcdir)/tr.x ../src/tr.c +true.1: $(common_dep) $(srcdir)/true.x ../src/true.c +tsort.1: $(common_dep) $(srcdir)/tsort.x ../src/tsort.c +tty.1: $(common_dep) $(srcdir)/tty.x ../src/tty.c +uname.1: $(common_dep) $(srcdir)/uname.x ../src/uname.c +unexpand.1: $(common_dep) $(srcdir)/unexpand.x ../src/unexpand.c +uniq.1: $(common_dep) $(srcdir)/uniq.x ../src/uniq.c +unlink.1: $(common_dep) $(srcdir)/unlink.x ../src/unlink.c +uptime.1: $(common_dep) $(srcdir)/uptime.x ../src/uptime.c +users.1: $(common_dep) $(srcdir)/users.x ../src/users.c +vdir.1: $(common_dep) $(srcdir)/vdir.x ../src/ls.c +wc.1: $(common_dep) $(srcdir)/wc.x ../src/wc.c +who.1: $(common_dep) $(srcdir)/who.x ../src/who.c +whoami.1: $(common_dep) $(srcdir)/whoami.x ../src/whoami.c +yes.1: $(common_dep) $(srcdir)/yes.x ../src/yes.c + +SUFFIXES = .x .1 + +# Ensure that help2man runs the ../src/ginstall binary as +# `install' when creating install.1. +t = $*.td +mapped_name = `echo $*|sed 's/install/ginstall/'` + +# Note the use of $t/$*, rather than just `$*' as in other packages. +# That is necessary to avoid failures for programs that are also shell built-in +# functions like echo, false, printf, pwd. +.x.1: + @echo "Updating man page $@"; \ + mkdir $t; \ + (cd $t && $(LN_S) ../../src/$(mapped_name)$(EXEEXT) $*$(EXEEXT)); \ + $(HELP2MAN) \ + --include=$(srcdir)/$*.x \ + --output=$@ $t/$*$(EXEEXT); \ + rm -rf $t + +check-local: check-x-vs-1 + +# Ensure that for each .x file in this directory, there is a +# corresponding .1 file in the definition of $(dist_man_MANS) above. +.PHONY: check-x-vs-1 +check-x-vs-1: + PATH=../src@PATH_SEPARATOR@$$PATH; export PATH; \ + t=ls-files.$$$$; \ + (cd $(srcdir) && ls -1 *.x) | sed 's/\.x$$//' | sort > $$t; \ + echo $(dist_man_MANS) | fmt -w1 | sed 's/\.1$$//' | sort -u \ + | diff - $$t || { rm $$t; exit 1; }; \ + rm $$t diff --git a/src/apps/bin/coreutils-5.0/man/Makefile.in b/src/apps/bin/coreutils-5.0/man/Makefile.in new file mode 100644 index 0000000000..c59a09f030 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/Makefile.in @@ -0,0 +1,490 @@ +# Makefile.in generated by automake 1.7.3 from Makefile.am. +# @configure_input@ + +# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +# Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +top_builddir = .. + +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +INSTALL = @INSTALL@ +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +host_triplet = @host@ +ACLOCAL = @ACLOCAL@ +ALLOCA = @ALLOCA@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DF_PROG = @DF_PROG@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FESETROUND_LIBM = @FESETROUND_LIBM@ +GETLOADAVG_LIBS = @GETLOADAVG_LIBS@ +GLIBC21 = @GLIBC21@ +GMSGFMT = @GMSGFMT@ +GNU_PACKAGE = @GNU_PACKAGE@ +HELP2MAN = @HELP2MAN@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INTLLIBS = @INTLLIBS@ +KMEM_GROUP = @KMEM_GROUP@ +LDFLAGS = @LDFLAGS@ +LIBICONV = @LIBICONV@ +LIBINTL = @LIBINTL@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIB_CLOCK_GETTIME = @LIB_CLOCK_GETTIME@ +LIB_CRYPT = @LIB_CRYPT@ +LIB_NANOSLEEP = @LIB_NANOSLEEP@ +LN_S = @LN_S@ +LTLIBICONV = @LTLIBICONV@ +LTLIBINTL = @LTLIBINTL@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MAN = @MAN@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGMERGE = @MSGMERGE@ +NEED_SETGID = @NEED_SETGID@ +OBJEXT = @OBJEXT@ +OPTIONAL_BIN_PROGS = @OPTIONAL_BIN_PROGS@ +OPTIONAL_BIN_ZCRIPTS = @OPTIONAL_BIN_ZCRIPTS@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PERL = @PERL@ +POSUB = @POSUB@ +POW_LIB = @POW_LIB@ +RANLIB = @RANLIB@ +SEQ_LIBM = @SEQ_LIBM@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +SQRT_LIBM = @SQRT_LIBM@ +STRIP = @STRIP@ +U = @U@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +YACC = @YACC@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_RANLIB = @ac_ct_RANLIB@ +ac_ct_STRIP = @ac_ct_STRIP@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +datadir = @datadir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +oldincludedir = @oldincludedir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +dist_man_MANS = \ + basename.1 cat.1 chgrp.1 chmod.1 chown.1 chroot.1 cksum.1 comm.1 \ + cp.1 csplit.1 cut.1 date.1 dd.1 df.1 dir.1 dircolors.1 dirname.1 du.1 \ + echo.1 env.1 expand.1 expr.1 factor.1 false.1 fmt.1 fold.1 groups.1 \ + head.1 hostid.1 hostname.1 id.1 install.1 join.1 link.1 ln.1 logname.1 \ + ls.1 md5sum.1 mkdir.1 mkfifo.1 mknod.1 mv.1 nice.1 nl.1 nohup.1 od.1 \ + paste.1 pathchk.1 pinky.1 pr.1 printenv.1 printf.1 ptx.1 pwd.1 readlink.1 \ + rm.1 rmdir.1 seq.1 sha1sum.1 shred.1 sleep.1 sort.1 split.1 stat.1 stty.1 \ + su.1 sum.1 sync.1 tac.1 tail.1 tee.1 test.1 touch.1 tr.1 true.1 tsort.1 \ + tty.1 uname.1 unexpand.1 uniq.1 unlink.1 uptime.1 users.1 vdir.1 wc.1 \ + who.1 whoami.1 yes.1 + + +man_aux = $(dist_man_MANS:.1=.x) + +EXTRA_DIST = $(man_aux) +MAINTAINERCLEANFILES = $(man_MANS) + +# Depend on configure.ac to get version number changes. +common_dep = $(top_srcdir)/configure.ac + +SUFFIXES = .x .1 + +# Ensure that help2man runs the ../src/ginstall binary as +# `install' when creating install.1. +t = $*.td +mapped_name = `echo $*|sed 's/install/ginstall/'` +subdir = man +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +DIST_SOURCES = + +NROFF = nroff +MANS = $(dist_man_MANS) +DIST_COMMON = $(dist_man_MANS) Makefile.am Makefile.in +all: all-am + +.SUFFIXES: +.SUFFIXES: .x .1 +$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnits man/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +uninstall-info-am: + +man1dir = $(mandir)/man1 +install-man1: $(man1_MANS) $(man_MANS) + @$(NORMAL_INSTALL) + $(mkinstalldirs) $(DESTDIR)$(man1dir) + @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \ + l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ + for i in $$l2; do \ + case "$$i" in \ + *.1*) list="$$list $$i" ;; \ + esac; \ + done; \ + for i in $$list; do \ + if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \ + else file=$$i; fi; \ + ext=`echo $$i | sed -e 's/^.*\\.//'`; \ + case "$$ext" in \ + 1*) ;; \ + *) ext='1' ;; \ + esac; \ + inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ + inst=`echo $$inst | sed -e 's/^.*\///'`; \ + inst=`echo $$inst | sed '$(transform)'`.$$ext; \ + echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst"; \ + $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst; \ + done +uninstall-man1: + @$(NORMAL_UNINSTALL) + @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \ + l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ + for i in $$l2; do \ + case "$$i" in \ + *.1*) list="$$list $$i" ;; \ + esac; \ + done; \ + for i in $$list; do \ + ext=`echo $$i | sed -e 's/^.*\\.//'`; \ + case "$$ext" in \ + 1*) ;; \ + *) ext='1' ;; \ + esac; \ + inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ + inst=`echo $$inst | sed -e 's/^.*\///'`; \ + inst=`echo $$inst | sed '$(transform)'`.$$ext; \ + echo " rm -f $(DESTDIR)$(man1dir)/$$inst"; \ + rm -f $(DESTDIR)$(man1dir)/$$inst; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + +top_distdir = .. +distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkinstalldirs) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ + if test -d $$d/$$file; then \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(MANS) + +installdirs: + $(mkinstalldirs) $(DESTDIR)$(man1dir) + +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -rm -f Makefile $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." + -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +info: info-am + +info-am: + +install-data-am: install-man + +install-exec-am: + +install-info: install-info-am + +install-man: install-man1 + +installcheck-am: + +maintainer-clean: maintainer-clean-am + +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-info-am uninstall-man + +uninstall-man: uninstall-man1 + +.PHONY: all all-am check check-am check-local clean clean-generic \ + distclean distclean-generic distdir dvi dvi-am info info-am \ + install install-am install-data install-data-am install-exec \ + install-exec-am install-info install-info-am install-man \ + install-man1 install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \ + uninstall-am uninstall-info-am uninstall-man uninstall-man1 + + +basename.1: $(common_dep) $(srcdir)/basename.x ../src/basename.c +cat.1: $(common_dep) $(srcdir)/cat.x ../src/cat.c +chgrp.1: $(common_dep) $(srcdir)/chgrp.x ../src/chgrp.c +chmod.1: $(common_dep) $(srcdir)/chmod.x ../src/chmod.c +chown.1: $(common_dep) $(srcdir)/chown.x ../src/chown.c +chroot.1: $(common_dep) $(srcdir)/chroot.x ../src/chroot.c +cksum.1: $(common_dep) $(srcdir)/cksum.x ../src/cksum.c +comm.1: $(common_dep) $(srcdir)/comm.x ../src/comm.c +cp.1: $(common_dep) $(srcdir)/cp.x ../src/cp.c +csplit.1: $(common_dep) $(srcdir)/csplit.x ../src/csplit.c +cut.1: $(common_dep) $(srcdir)/cut.x ../src/cut.c +date.1: $(common_dep) $(srcdir)/date.x ../src/date.c +dd.1: $(common_dep) $(srcdir)/dd.x ../src/dd.c +df.1: $(common_dep) $(srcdir)/df.x ../src/df.c + +# Note that dir depends on ls.c, since that's where it's --help text is. +dir.1: $(common_dep) $(srcdir)/dir.x ../src/ls.c + +dircolors.1: $(common_dep) $(srcdir)/dircolors.x ../src/dircolors.c +dirname.1: $(common_dep) $(srcdir)/dirname.x ../src/dirname.c +du.1: $(common_dep) $(srcdir)/du.x ../src/du.c +echo.1: $(common_dep) $(srcdir)/echo.x ../src/echo.c +env.1: $(common_dep) $(srcdir)/env.x ../src/env.c +expand.1: $(common_dep) $(srcdir)/expand.x ../src/expand.c +expr.1: $(common_dep) $(srcdir)/expr.x ../src/expr.c +factor.1: $(common_dep) $(srcdir)/factor.x ../src/factor.c +false.1: $(common_dep) $(srcdir)/false.x ../src/false.c +fmt.1: $(common_dep) $(srcdir)/fmt.x ../src/fmt.c +fold.1: $(common_dep) $(srcdir)/fold.x ../src/fold.c +groups.1: $(common_dep) $(srcdir)/groups.x ../src/groups.sh +head.1: $(common_dep) $(srcdir)/head.x ../src/head.c +hostid.1: $(common_dep) $(srcdir)/hostid.x ../src/hostid.c +hostname.1: $(common_dep) $(srcdir)/hostname.x ../src/hostname.c +id.1: $(common_dep) $(srcdir)/id.x ../src/id.c +install.1: $(common_dep) $(srcdir)/install.x ../src/install.c +join.1: $(common_dep) $(srcdir)/join.x ../src/join.c +link.1: $(common_dep) $(srcdir)/link.x ../src/link.c +ln.1: $(common_dep) $(srcdir)/ln.x ../src/ln.c +logname.1: $(common_dep) $(srcdir)/logname.x ../src/logname.c +ls.1: $(common_dep) $(srcdir)/ls.x ../src/ls.c +md5sum.1: $(common_dep) $(srcdir)/md5sum.x ../src/md5sum.c +mkdir.1: $(common_dep) $(srcdir)/mkdir.x ../src/mkdir.c +mkfifo.1: $(common_dep) $(srcdir)/mkfifo.x ../src/mkfifo.c +mknod.1: $(common_dep) $(srcdir)/mknod.x ../src/mknod.c +mv.1: $(common_dep) $(srcdir)/mv.x ../src/mv.c +nice.1: $(common_dep) $(srcdir)/nice.x ../src/nice.c +nl.1: $(common_dep) $(srcdir)/nl.x ../src/nl.c +nohup.1: $(common_dep) $(srcdir)/nohup.x ../src/nohup.sh +od.1: $(common_dep) $(srcdir)/od.x ../src/od.c +paste.1: $(common_dep) $(srcdir)/paste.x ../src/paste.c +pathchk.1: $(common_dep) $(srcdir)/pathchk.x ../src/pathchk.c +pinky.1: $(common_dep) $(srcdir)/pinky.x ../src/pinky.c +pr.1: $(common_dep) $(srcdir)/pr.x ../src/pr.c +printenv.1: $(common_dep) $(srcdir)/printenv.x ../src/printenv.c +printf.1: $(common_dep) $(srcdir)/printf.x ../src/printf.c +ptx.1: $(common_dep) $(srcdir)/ptx.x ../src/ptx.c +pwd.1: $(common_dep) $(srcdir)/pwd.x ../src/pwd.c +readlink.1: $(common_dep) $(srcdir)/readlink.x ../src/readlink.c +rm.1: $(common_dep) $(srcdir)/rm.x ../src/rm.c +rmdir.1: $(common_dep) $(srcdir)/rmdir.x ../src/rmdir.c +seq.1: $(common_dep) $(srcdir)/seq.x ../src/seq.c +sha1sum.1: $(common_dep) $(srcdir)/sha1sum.x ../src/md5sum.c +shred.1: $(common_dep) $(srcdir)/shred.x ../src/shred.c +sleep.1: $(common_dep) $(srcdir)/sleep.x ../src/sleep.c +sort.1: $(common_dep) $(srcdir)/sort.x ../src/sort.c +split.1: $(common_dep) $(srcdir)/split.x ../src/split.c +stat.1: $(common_dep) $(srcdir)/stat.x ../src/stat.c +stty.1: $(common_dep) $(srcdir)/stty.x ../src/stty.c +su.1: $(common_dep) $(srcdir)/su.x ../src/su.c +sum.1: $(common_dep) $(srcdir)/sum.x ../src/sum.c +sync.1: $(common_dep) $(srcdir)/sync.x ../src/sync.c +tac.1: $(common_dep) $(srcdir)/tac.x ../src/tac.c +tail.1: $(common_dep) $(srcdir)/tail.x ../src/tail.c +tee.1: $(common_dep) $(srcdir)/tee.x ../src/tee.c +test.1: $(common_dep) $(srcdir)/test.x ../src/test.c +touch.1: $(common_dep) $(srcdir)/touch.x ../src/touch.c +tr.1: $(common_dep) $(srcdir)/tr.x ../src/tr.c +true.1: $(common_dep) $(srcdir)/true.x ../src/true.c +tsort.1: $(common_dep) $(srcdir)/tsort.x ../src/tsort.c +tty.1: $(common_dep) $(srcdir)/tty.x ../src/tty.c +uname.1: $(common_dep) $(srcdir)/uname.x ../src/uname.c +unexpand.1: $(common_dep) $(srcdir)/unexpand.x ../src/unexpand.c +uniq.1: $(common_dep) $(srcdir)/uniq.x ../src/uniq.c +unlink.1: $(common_dep) $(srcdir)/unlink.x ../src/unlink.c +uptime.1: $(common_dep) $(srcdir)/uptime.x ../src/uptime.c +users.1: $(common_dep) $(srcdir)/users.x ../src/users.c +vdir.1: $(common_dep) $(srcdir)/vdir.x ../src/ls.c +wc.1: $(common_dep) $(srcdir)/wc.x ../src/wc.c +who.1: $(common_dep) $(srcdir)/who.x ../src/who.c +whoami.1: $(common_dep) $(srcdir)/whoami.x ../src/whoami.c +yes.1: $(common_dep) $(srcdir)/yes.x ../src/yes.c + +# Note the use of $t/$*, rather than just `$*' as in other packages. +# That is necessary to avoid failures for programs that are also shell built-in +# functions like echo, false, printf, pwd. +.x.1: + @echo "Updating man page $@"; \ + mkdir $t; \ + (cd $t && $(LN_S) ../../src/$(mapped_name)$(EXEEXT) $*$(EXEEXT)); \ + $(HELP2MAN) \ + --include=$(srcdir)/$*.x \ + --output=$@ $t/$*$(EXEEXT); \ + rm -rf $t + +check-local: check-x-vs-1 + +# Ensure that for each .x file in this directory, there is a +# corresponding .1 file in the definition of $(dist_man_MANS) above. +.PHONY: check-x-vs-1 +check-x-vs-1: + PATH=../src@PATH_SEPARATOR@$$PATH; export PATH; \ + t=ls-files.$$$$; \ + (cd $(srcdir) && ls -1 *.x) | sed 's/\.x$$//' | sort > $$t; \ + echo $(dist_man_MANS) | fmt -w1 | sed 's/\.1$$//' | sort -u \ + | diff - $$t || { rm $$t; exit 1; }; \ + rm $$t +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/src/apps/bin/coreutils-5.0/man/basename.1 b/src/apps/bin/coreutils-5.0/man/basename.1 new file mode 100644 index 0000000000..7ff4e3aaed --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/basename.1 @@ -0,0 +1,42 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH BASENAME "1" "March 2003" "basename 5.0" "User Commands" +.SH NAME +basename \- strip directory and suffix from filenames +.SH SYNOPSIS +.B basename +\fINAME \fR[\fISUFFIX\fR] +.br +.B basename +\fIOPTION\fR +.SH DESCRIPTION +.\" Add any additional description here +.PP +Print NAME with any leading directory components removed. +If specified, also remove a trailing SUFFIX. +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by FIXME unknown. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B basename +is maintained as a Texinfo manual. If the +.B info +and +.B basename +programs are properly installed at your site, the command +.IP +.B info basename +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/basename.x b/src/apps/bin/coreutils-5.0/man/basename.x new file mode 100644 index 0000000000..3f4e42a830 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/basename.x @@ -0,0 +1,4 @@ +[NAME] +basename \- strip directory and suffix from filenames +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/cat.1 b/src/apps/bin/coreutils-5.0/man/cat.1 new file mode 100644 index 0000000000..195d41e446 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/cat.1 @@ -0,0 +1,70 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH CAT "1" "March 2003" "cat (coreutils) 5.0" "User Commands" +.SH NAME +cat \- concatenate files and print on the standard output +.SH SYNOPSIS +.B cat +[\fIOPTION\fR] [\fIFILE\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Concatenate FILE(s), or standard input, to standard output. +.TP +\fB\-A\fR, \fB\-\-show\-all\fR +equivalent to \fB\-vET\fR +.TP +\fB\-b\fR, \fB\-\-number\-nonblank\fR +number nonblank output lines +.TP +\fB\-e\fR +equivalent to \fB\-vE\fR +.TP +\fB\-E\fR, \fB\-\-show\-ends\fR +display $ at end of each line +.TP +\fB\-n\fR, \fB\-\-number\fR +number all output lines +.TP +\fB\-s\fR, \fB\-\-squeeze\-blank\fR +never more than one single blank line +.TP +\fB\-t\fR +equivalent to \fB\-vT\fR +.TP +\fB\-T\fR, \fB\-\-show\-tabs\fR +display TAB characters as ^I +.TP +\fB\-u\fR +(ignored) +.TP +\fB\-v\fR, \fB\-\-show\-nonprinting\fR +use ^ and M- notation, except for LFD and TAB +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +With no FILE, or when FILE is -, read standard input. +.SH AUTHOR +Written by Torbjorn Granlund and Richard M. Stallman. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B cat +is maintained as a Texinfo manual. If the +.B info +and +.B cat +programs are properly installed at your site, the command +.IP +.B info cat +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/cat.x b/src/apps/bin/coreutils-5.0/man/cat.x new file mode 100644 index 0000000000..c2196786a8 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/cat.x @@ -0,0 +1,4 @@ +[NAME] +cat \- concatenate files and print on the standard output +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/chgrp.1 b/src/apps/bin/coreutils-5.0/man/chgrp.1 new file mode 100644 index 0000000000..b8afbc57a3 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/chgrp.1 @@ -0,0 +1,66 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH CHGRP "1" "March 2003" "chgrp (coreutils) 5.0" "User Commands" +.SH NAME +chgrp \- change group ownership +.SH SYNOPSIS +.B chgrp +[\fIOPTION\fR]... \fIGROUP FILE\fR... +.br +.B chgrp +[\fIOPTION\fR]... \fI--reference=RFILE FILE\fR... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Change the group membership of each FILE to GROUP. +.TP +\fB\-c\fR, \fB\-\-changes\fR +like verbose but report only when a change is made +.TP +\fB\-\-dereference\fR +affect the referent of each symbolic link, rather +than the symbolic link itself +.TP +\fB\-h\fR, \fB\-\-no\-dereference\fR +affect symbolic links instead of any referenced file +(available only on systems that can change the +ownership of a symlink) +.TP +\fB\-f\fR, \fB\-\-silent\fR, \fB\-\-quiet\fR +suppress most error messages +.TP +\fB\-\-reference\fR=\fIRFILE\fR +use RFILE's group rather than the specified +GROUP value +.TP +\fB\-R\fR, \fB\-\-recursive\fR +operate on files and directories recursively +.TP +\fB\-v\fR, \fB\-\-verbose\fR +output a diagnostic for every file processed +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B chgrp +is maintained as a Texinfo manual. If the +.B info +and +.B chgrp +programs are properly installed at your site, the command +.IP +.B info chgrp +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/chgrp.x b/src/apps/bin/coreutils-5.0/man/chgrp.x new file mode 100644 index 0000000000..1ceeafc3c2 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/chgrp.x @@ -0,0 +1,4 @@ +[NAME] +chgrp \- change group ownership +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/chmod.1 b/src/apps/bin/coreutils-5.0/man/chmod.1 new file mode 100644 index 0000000000..95624de1b0 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/chmod.1 @@ -0,0 +1,127 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH CHMOD "1" "March 2003" "chmod (coreutils) 5.0" "User Commands" +.SH NAME +chmod \- change file access permissions +.SH SYNOPSIS +.B chmod +[\fIOPTION\fR]... \fIMODE\fR[\fI,MODE\fR]... \fIFILE\fR... +.br +.B chmod +[\fIOPTION\fR]... \fIOCTAL-MODE FILE\fR... +.br +.B chmod +[\fIOPTION\fR]... \fI--reference=RFILE FILE\fR... +.SH DESCRIPTION +This manual page +documents the GNU version of +.BR chmod . +.B chmod +changes the permissions of each given file according to +.IR mode , +which can be either a symbolic representation of changes to make, or +an octal number representing the bit pattern for the new permissions. +.PP +The format of a symbolic mode is +`[ugoa...][[+-=][rwxXstugo...]...][,...]'. Multiple symbolic +operations can be given, separated by commas. +.PP +A combination of the letters `ugoa' controls which users' access to +the file will be changed: the user who owns it (u), other users in the +file's group (g), other users not in the file's group (o), or all +users (a). If none of these are given, the effect is as if `a' were +given, but bits that are set in the umask are not affected. +.PP +The operator `+' causes the permissions selected to be added to the +existing permissions of each file; `-' causes them to be removed; and +`=' causes them to be the only permissions that the file has. +.PP +The letters `rwxXstugo' select the new permissions for the affected +users: read (r), write (w), execute (or access for directories) (x), +execute only if the file is a directory or already has execute +permission for some user (X), set user or group ID on execution (s), +sticky (t), the permissions granted to the user who owns the file (u), +the permissions granted to other users who are members of the file's group (g), +and the permissions granted to users that are in neither of the two preceding +categories (o). +.PP +A numeric mode is from one to four octal digits (0-7), derived by +adding up the bits with values 4, 2, and 1. Any omitted digits are +assumed to be leading zeros. The first digit selects the set user ID +(4) and set group ID (2) and sticky (1) attributes. The second digit +selects permissions for the user who owns the file: read (4), write (2), +and execute (1); the third selects permissions for other users in the +file's group, with the same values; and the fourth for other users not +in the file's group, with the same values. +.PP +.B chmod +never changes the permissions of symbolic links; the +.B chmod +system call cannot change their permissions. This is not a problem +since the permissions of symbolic links are never used. +However, for each symbolic link listed on the command line, +.B chmod +changes the permissions of the pointed-to file. +In contrast, +.B chmod +ignores symbolic links encountered during recursive directory +traversals. +.SH STICKY FILES +On older Unix systems, the sticky bit caused executable files to be +hoarded in swap space. This feature is not useful on modern VM +systems, and the Linux kernel ignores the sticky bit on files. Other +kernels may use the sticky bit on files for system-defined purposes. +On some systems, only the superuser can set the sticky bit on files. +.SH STICKY DIRECTORIES +When the sticky bit is set on a directory, files in that directory may +be unlinked or renamed only by root or their owner. Without the +sticky bit, anyone able to write to the directory can delete or rename +files. The sticky bit is commonly found on directories, such as /tmp, +that are world-writable. +.SH OPTIONS +.PP +Change the mode of each FILE to MODE. +.TP +\fB\-c\fR, \fB\-\-changes\fR +like verbose but report only when a change is made +.TP +\fB\-f\fR, \fB\-\-silent\fR, \fB\-\-quiet\fR +suppress most error messages +.TP +\fB\-v\fR, \fB\-\-verbose\fR +output a diagnostic for every file processed +.TP +\fB\-\-reference\fR=\fIRFILE\fR +use RFILE's mode instead of MODE values +.TP +\fB\-R\fR, \fB\-\-recursive\fR +change files and directories recursively +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +Each MODE is one or more of the letters ugoa, one of the symbols +-= and +one or more of the letters rwxXstugo. +.SH AUTHOR +Written by David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B chmod +is maintained as a Texinfo manual. If the +.B info +and +.B chmod +programs are properly installed at your site, the command +.IP +.B info chmod +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/chmod.x b/src/apps/bin/coreutils-5.0/man/chmod.x new file mode 100644 index 0000000000..6b857b9fb0 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/chmod.x @@ -0,0 +1,69 @@ +[NAME] +chmod \- change file access permissions +[DESCRIPTION] +This manual page +documents the GNU version of +.BR chmod . +.B chmod +changes the permissions of each given file according to +.IR mode , +which can be either a symbolic representation of changes to make, or +an octal number representing the bit pattern for the new permissions. +.PP +The format of a symbolic mode is +`[ugoa...][[+-=][rwxXstugo...]...][,...]'. Multiple symbolic +operations can be given, separated by commas. +.PP +A combination of the letters `ugoa' controls which users' access to +the file will be changed: the user who owns it (u), other users in the +file's group (g), other users not in the file's group (o), or all +users (a). If none of these are given, the effect is as if `a' were +given, but bits that are set in the umask are not affected. +.PP +The operator `+' causes the permissions selected to be added to the +existing permissions of each file; `-' causes them to be removed; and +`=' causes them to be the only permissions that the file has. +.PP +The letters `rwxXstugo' select the new permissions for the affected +users: read (r), write (w), execute (or access for directories) (x), +execute only if the file is a directory or already has execute +permission for some user (X), set user or group ID on execution (s), +sticky (t), the permissions granted to the user who owns the file (u), +the permissions granted to other users who are members of the file's group (g), +and the permissions granted to users that are in neither of the two preceding +categories (o). +.PP +A numeric mode is from one to four octal digits (0-7), derived by +adding up the bits with values 4, 2, and 1. Any omitted digits are +assumed to be leading zeros. The first digit selects the set user ID +(4) and set group ID (2) and sticky (1) attributes. The second digit +selects permissions for the user who owns the file: read (4), write (2), +and execute (1); the third selects permissions for other users in the +file's group, with the same values; and the fourth for other users not +in the file's group, with the same values. +.PP +.B chmod +never changes the permissions of symbolic links; the +.B chmod +system call cannot change their permissions. This is not a problem +since the permissions of symbolic links are never used. +However, for each symbolic link listed on the command line, +.B chmod +changes the permissions of the pointed-to file. +In contrast, +.B chmod +ignores symbolic links encountered during recursive directory +traversals. +.SH STICKY FILES +On older Unix systems, the sticky bit caused executable files to be +hoarded in swap space. This feature is not useful on modern VM +systems, and the Linux kernel ignores the sticky bit on files. Other +kernels may use the sticky bit on files for system-defined purposes. +On some systems, only the superuser can set the sticky bit on files. +.SH STICKY DIRECTORIES +When the sticky bit is set on a directory, files in that directory may +be unlinked or renamed only by root or their owner. Without the +sticky bit, anyone able to write to the directory can delete or rename +files. The sticky bit is commonly found on directories, such as /tmp, +that are world-writable. +.SH OPTIONS diff --git a/src/apps/bin/coreutils-5.0/man/chown.1 b/src/apps/bin/coreutils-5.0/man/chown.1 new file mode 100644 index 0000000000..9cfcdfc8b8 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/chown.1 @@ -0,0 +1,97 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH CHOWN "1" "March 2003" "chown (coreutils) 5.0" "User Commands" +.SH NAME +chown \- change file owner and group +.SH SYNOPSIS +.B chown +[\fIOPTION\fR]... \fIOWNER\fR[\fI:\fR[\fIGROUP\fR]] \fIFILE\fR... +.br +.B chown +[\fIOPTION\fR]... \fI:GROUP FILE\fR... +.br +.B chown +[\fIOPTION\fR]... \fI--reference=RFILE FILE\fR... +.SH DESCRIPTION +This manual page +documents the GNU version of +.BR chown . +.B chown +changes the user and/or group ownership of each given file, according +to its first non-option argument, which is interpreted as follows. If +only a user name (or numeric user ID) is given, that user is made the +owner of each given file, and the files' group is not changed. If the +user name is followed by a colon or dot and a group name (or numeric group ID), +with no spaces between them, the group ownership of the files is +changed as well. If a colon or dot but no group name follows the user name, +that user is made the owner of the files and the group of the files is +changed to that user's login group. If the colon or dot and group are given, +but the user name is omitted, only the group of the files is changed; +in this case, +.B chown +performs the same function as +.BR chgrp . +.SH OPTIONS +.PP +Change the owner and/or group of each FILE to OWNER and/or GROUP. +.TP +\fB\-c\fR, \fB\-\-changes\fR +like verbose but report only when a change is made +.TP +\fB\-\-dereference\fR +affect the referent of each symbolic link, rather +than the symbolic link itself +.TP +\fB\-h\fR, \fB\-\-no\-dereference\fR +affect symbolic links instead of any referenced file +(available only on systems that can change the +ownership of a symlink) +.TP +\fB\-\-from\fR=\fICURRENT_OWNER\fR:CURRENT_GROUP +change the owner and/or group of each file only if +its current owner and/or group match those specified +here. Either may be omitted, in which case a match +is not required for the omitted attribute. +.TP +\fB\-f\fR, \fB\-\-silent\fR, \fB\-\-quiet\fR +suppress most error messages +.TP +\fB\-\-reference\fR=\fIRFILE\fR +use RFILE's owner and group rather than +the specified OWNER:GROUP values +.TP +\fB\-R\fR, \fB\-\-recursive\fR +operate on files and directories recursively +.TP +\fB\-v\fR, \fB\-\-verbose\fR +output a diagnostic for every file processed +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +Owner is unchanged if missing. Group is unchanged if missing, but changed +to login group if implied by a `:'. OWNER and GROUP may be numeric as well +as symbolic. +.SH AUTHOR +Written by David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B chown +is maintained as a Texinfo manual. If the +.B info +and +.B chown +programs are properly installed at your site, the command +.IP +.B info chown +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/chown.x b/src/apps/bin/coreutils-5.0/man/chown.x new file mode 100644 index 0000000000..7102f76f6e --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/chown.x @@ -0,0 +1,22 @@ +[NAME] +chown \- change file owner and group +[DESCRIPTION] +This manual page +documents the GNU version of +.BR chown . +.B chown +changes the user and/or group ownership of each given file, according +to its first non-option argument, which is interpreted as follows. If +only a user name (or numeric user ID) is given, that user is made the +owner of each given file, and the files' group is not changed. If the +user name is followed by a colon or dot and a group name (or numeric group ID), +with no spaces between them, the group ownership of the files is +changed as well. If a colon or dot but no group name follows the user name, +that user is made the owner of the files and the group of the files is +changed to that user's login group. If the colon or dot and group are given, +but the user name is omitted, only the group of the files is changed; +in this case, +.B chown +performs the same function as +.BR chgrp . +.SH OPTIONS diff --git a/src/apps/bin/coreutils-5.0/man/chroot.1 b/src/apps/bin/coreutils-5.0/man/chroot.1 new file mode 100644 index 0000000000..ac78378561 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/chroot.1 @@ -0,0 +1,43 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH CHROOT "1" "March 2003" "chroot 5.0" "User Commands" +.SH NAME +chroot \- run command or interactive shell with special root directory +.SH SYNOPSIS +.B chroot +\fINEWROOT \fR[\fICOMMAND\fR...] +.br +.B chroot +\fIOPTION\fR +.SH DESCRIPTION +.\" Add any additional description here +.PP +Run COMMAND with root directory set to NEWROOT. +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +If no command is given, run ``${SHELL} \fB\-i\fR'' (default: /bin/sh). +.SH AUTHOR +Written by Roland McGrath. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B chroot +is maintained as a Texinfo manual. If the +.B info +and +.B chroot +programs are properly installed at your site, the command +.IP +.B info chroot +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/chroot.x b/src/apps/bin/coreutils-5.0/man/chroot.x new file mode 100644 index 0000000000..b2afab8269 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/chroot.x @@ -0,0 +1,4 @@ +[NAME] +chroot \- run command or interactive shell with special root directory +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/cksum.1 b/src/apps/bin/coreutils-5.0/man/cksum.1 new file mode 100644 index 0000000000..7fc30fa21a --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/cksum.1 @@ -0,0 +1,41 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH CKSUM "1" "March 2003" "cksum (coreutils) 5.0" "User Commands" +.SH NAME +cksum \- checksum and count the bytes in a file +.SH SYNOPSIS +.B cksum +[\fIFILE\fR]... +.br +.B cksum +[\fIOPTION\fR] +.SH DESCRIPTION +.\" Add any additional description here +.PP +Print CRC checksum and byte counts of each FILE. +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by Q. Frank Xia. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B cksum +is maintained as a Texinfo manual. If the +.B info +and +.B cksum +programs are properly installed at your site, the command +.IP +.B info cksum +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/cksum.x b/src/apps/bin/coreutils-5.0/man/cksum.x new file mode 100644 index 0000000000..b70a5c46b8 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/cksum.x @@ -0,0 +1,4 @@ +[NAME] +cksum \- checksum and count the bytes in a file +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/comm.1 b/src/apps/bin/coreutils-5.0/man/comm.1 new file mode 100644 index 0000000000..c26c31edb5 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/comm.1 @@ -0,0 +1,47 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH COMM "1" "March 2003" "comm (coreutils) 5.0" "User Commands" +.SH NAME +comm \- compare two sorted files line by line +.SH SYNOPSIS +.B comm +[\fIOPTION\fR]... \fILEFT_FILE RIGHT_FILE\fR +.SH DESCRIPTION +.\" Add any additional description here +.PP +Compare sorted files LEFT_FILE and RIGHT_FILE line by line. +.TP +\fB\-1\fR +suppress lines unique to left file +.TP +\fB\-2\fR +suppress lines unique to right file +.TP +\fB\-3\fR +suppress lines that appear in both files +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by Richard Stallman and David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B comm +is maintained as a Texinfo manual. If the +.B info +and +.B comm +programs are properly installed at your site, the command +.IP +.B info comm +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/comm.x b/src/apps/bin/coreutils-5.0/man/comm.x new file mode 100644 index 0000000000..dfc84806e8 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/comm.x @@ -0,0 +1,4 @@ +[NAME] +comm \- compare two sorted files line by line +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/cp.1 b/src/apps/bin/coreutils-5.0/man/cp.1 new file mode 100644 index 0000000000..a98efac441 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/cp.1 @@ -0,0 +1,160 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH CP "1" "March 2003" "cp (coreutils) 5.0" "User Commands" +.SH NAME +cp \- copy files and directories +.SH SYNOPSIS +.B cp +[\fIOPTION\fR]... \fISOURCE DEST\fR +.br +.B cp +[\fIOPTION\fR]... \fISOURCE\fR... \fIDIRECTORY\fR +.br +.B cp +[\fIOPTION\fR]... \fI--target-directory=DIRECTORY SOURCE\fR... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-a\fR, \fB\-\-archive\fR +same as \fB\-dpR\fR +.TP +\fB\-\-backup\fR[=\fICONTROL\fR] +make a backup of each existing destination file +.TP +\fB\-b\fR +like \fB\-\-backup\fR but does not accept an argument +.TP +\fB\-\-copy\-contents\fR +copy contents of special files when recursive +.TP +\fB\-d\fR +same as \fB\-\-no\-dereference\fR \fB\-\-preserve\fR=\fIlink\fR +.TP +\fB\-\-no\-dereference\fR +never follow symbolic links +.TP +\fB\-f\fR, \fB\-\-force\fR +if an existing destination file cannot be +opened, remove it and try again +.TP +\fB\-i\fR, \fB\-\-interactive\fR +prompt before overwrite +.TP +\fB\-H\fR +follow command-line symbolic links +.TP +\fB\-l\fR, \fB\-\-link\fR +link files instead of copying +.TP +\fB\-L\fR, \fB\-\-dereference\fR +always follow symbolic links +.TP +\fB\-p\fR +same as \fB\-\-preserve\fR=\fImode\fR,ownership,timestamps +.TP +\fB\-\-preserve\fR[=\fIATTR_LIST\fR] +preserve the specified attributes (default: +mode,ownership,timestamps), if possible +additional attributes: links, all +.TP +\fB\-\-no\-preserve\fR=\fIATTR_LIST\fR +don't preserve the specified attributes +.TP +\fB\-\-parents\fR +append source path to DIRECTORY +.TP +\fB\-P\fR +same as `--no-dereference' +.TP +\fB\-R\fR, \fB\-r\fR, \fB\-\-recursive\fR +copy directories recursively +.TP +\fB\-\-remove\-destination\fR +remove each existing destination file before +attempting to open it (contrast with \fB\-\-force\fR) +.TP +\fB\-\-reply=\fR{yes,no,query} +specify how to handle the prompt about an +existing destination file +.TP +\fB\-\-sparse\fR=\fIWHEN\fR +control creation of sparse files +.TP +\fB\-\-strip\-trailing\-slashes\fR remove any trailing slashes from each SOURCE +argument +.TP +\fB\-s\fR, \fB\-\-symbolic\-link\fR +make symbolic links instead of copying +.TP +\fB\-S\fR, \fB\-\-suffix\fR=\fISUFFIX\fR +override the usual backup suffix +.TP +\fB\-\-target\-directory\fR=\fIDIRECTORY\fR +move all SOURCE arguments into DIRECTORY +.TP +\fB\-u\fR, \fB\-\-update\fR +copy only when the SOURCE file is newer +than the destination file or when the +destination file is missing +.TP +\fB\-v\fR, \fB\-\-verbose\fR +explain what is being done +.TP +\fB\-x\fR, \fB\-\-one\-file\-system\fR +stay on this file system +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +By default, sparse SOURCE files are detected by a crude heuristic and the +corresponding DEST file is made sparse as well. That is the behavior +selected by \fB\-\-sparse\fR=\fIauto\fR. Specify \fB\-\-sparse\fR=\fIalways\fR to create a sparse DEST +file whenever the SOURCE file contains a long enough sequence of zero bytes. +Use \fB\-\-sparse\fR=\fInever\fR to inhibit creation of sparse files. +.PP +The backup suffix is `~', unless set with \fB\-\-suffix\fR or SIMPLE_BACKUP_SUFFIX. +The version control method may be selected via the \fB\-\-backup\fR option or through +the VERSION_CONTROL environment variable. Here are the values: +.TP +none, off +never make backups (even if \fB\-\-backup\fR is given) +.TP +numbered, t +make numbered backups +.TP +existing, nil +numbered if numbered backups exist, simple otherwise +.TP +simple, never +always make simple backups +.PP +As a special case, cp makes a backup of SOURCE when the force and backup +options are given and SOURCE and DEST are the same name for an existing, +regular file. +.SH AUTHOR +Written by Torbjorn Granlund, David MacKenzie, and Jim Meyering. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B cp +is maintained as a Texinfo manual. If the +.B info +and +.B cp +programs are properly installed at your site, the command +.IP +.B info cp +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/cp.x b/src/apps/bin/coreutils-5.0/man/cp.x new file mode 100644 index 0000000000..b26225fc97 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/cp.x @@ -0,0 +1,4 @@ +[NAME] +cp \- copy files and directories +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/csplit.1 b/src/apps/bin/coreutils-5.0/man/csplit.1 new file mode 100644 index 0000000000..a87518f9cc --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/csplit.1 @@ -0,0 +1,77 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH CSPLIT "1" "March 2003" "csplit (coreutils) 5.0" "User Commands" +.SH NAME +csplit \- split a file into sections determined by context lines +.SH SYNOPSIS +.B csplit +[\fIOPTION\fR]... \fIFILE PATTERN\fR... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ..., +and output byte counts of each piece to standard output. +.PP +Mandatory arguments to long options are mandatory for short options too. +.HP +\fB\-b\fR, \fB\-\-suffix\-format\fR=\fIFORMAT\fR use sprintf FORMAT instead of %d +.TP +\fB\-f\fR, \fB\-\-prefix\fR=\fIPREFIX\fR +use PREFIX instead of `xx' +.TP +\fB\-k\fR, \fB\-\-keep\-files\fR +do not remove output files on errors +.TP +\fB\-n\fR, \fB\-\-digits\fR=\fIDIGITS\fR +use specified number of digits instead of 2 +.TP +\fB\-s\fR, \fB\-\-quiet\fR, \fB\-\-silent\fR +do not print counts of output file sizes +.TP +\fB\-z\fR, \fB\-\-elide\-empty\-files\fR +remove empty output files +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +Read standard input if FILE is -. Each PATTERN may be: +.TP +INTEGER +copy up to but not including specified line number +.TP +/REGEXP/[OFFSET] +copy up to but not including a matching line +.TP +%REGEXP%[OFFSET] +skip to, but not including a matching line +.TP +{INTEGER} +repeat the previous pattern specified number of times +.TP +{*} +repeat the previous pattern as many times as possible +.PP +A line OFFSET is a required `+' or `-' followed by a positive integer. +.SH AUTHOR +Written by Stuart Kemp and David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B csplit +is maintained as a Texinfo manual. If the +.B info +and +.B csplit +programs are properly installed at your site, the command +.IP +.B info csplit +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/csplit.x b/src/apps/bin/coreutils-5.0/man/csplit.x new file mode 100644 index 0000000000..dc19d89de5 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/csplit.x @@ -0,0 +1,4 @@ +[NAME] +csplit \- split a file into sections determined by context lines +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/cut.1 b/src/apps/bin/coreutils-5.0/man/cut.1 new file mode 100644 index 0000000000..76698428ed --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/cut.1 @@ -0,0 +1,81 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH CUT "1" "March 2003" "cut (coreutils) 5.0" "User Commands" +.SH NAME +cut \- remove sections from each line of files +.SH SYNOPSIS +.B cut +[\fIOPTION\fR]... [\fIFILE\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Print selected parts of lines from each FILE to standard output. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-b\fR, \fB\-\-bytes\fR=\fILIST\fR +output only these bytes +.TP +\fB\-c\fR, \fB\-\-characters\fR=\fILIST\fR +output only these characters +.TP +\fB\-d\fR, \fB\-\-delimiter\fR=\fIDELIM\fR +use DELIM instead of TAB for field delimiter +.TP +\fB\-f\fR, \fB\-\-fields\fR=\fILIST\fR +output only these fields; also print any line +that contains no delimiter character, unless +the \fB\-s\fR option is specified +.TP +\fB\-n\fR +(ignored) +.TP +\fB\-s\fR, \fB\-\-only\-delimited\fR +do not print lines not containing delimiters +.TP +\fB\-\-output\-delimiter\fR=\fISTRING\fR +use STRING as the output delimiter +the default is to use the input delimiter +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +Use one, and only one of \fB\-b\fR, \fB\-c\fR or \fB\-f\fR. Each LIST is made up of one +range, or many ranges separated by commas. Each range is one of: +.TP +N +N'th byte, character or field, counted from 1 +.TP +N- +from N'th byte, character or field, to end of line +.TP +N-M +from N'th to M'th (included) byte, character or field +.TP +\fB\-M\fR +from first to M'th (included) byte, character or field +.PP +With no FILE, or when FILE is -, read standard input. +.SH AUTHOR +Written by David Ihnat, David MacKenzie, and Jim Meyering. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B cut +is maintained as a Texinfo manual. If the +.B info +and +.B cut +programs are properly installed at your site, the command +.IP +.B info cut +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/cut.x b/src/apps/bin/coreutils-5.0/man/cut.x new file mode 100644 index 0000000000..fd09338326 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/cut.x @@ -0,0 +1,4 @@ +[NAME] +cut \- remove sections from each line of files +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/date.1 b/src/apps/bin/coreutils-5.0/man/date.1 new file mode 100644 index 0000000000..ebf044217e --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/date.1 @@ -0,0 +1,201 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH DATE "1" "March 2003" "date (coreutils) 5.0" "User Commands" +.SH NAME +date \- print or set the system date and time +.SH SYNOPSIS +.B date +[\fIOPTION\fR]... [\fI+FORMAT\fR] +.br +.B date +[\fI-u|--utc|--universal\fR] [\fIMMDDhhmm\fR[[\fICC\fR]\fIYY\fR][\fI.ss\fR]] +.SH DESCRIPTION +.\" Add any additional description here +.PP +Display the current time in the given FORMAT, or set the system date. +.TP +\fB\-d\fR, \fB\-\-date\fR=\fISTRING\fR +display time described by STRING, not `now' +.TP +\fB\-f\fR, \fB\-\-file\fR=\fIDATEFILE\fR +like \fB\-\-date\fR once for each line of DATEFILE +.TP +\fB\-ITIMESPEC\fR, \fB\-\-iso\-8601\fR[=\fITIMESPEC\fR] +output date/time in ISO 8601 format. +TIMESPEC=`date' for date only, +`hours', `minutes', or `seconds' for date and +time to the indicated precision. +\fB\-\-iso\-8601\fR without TIMESPEC defaults to `date'. +.TP +\fB\-r\fR, \fB\-\-reference\fR=\fIFILE\fR +display the last modification time of FILE +.TP +\fB\-R\fR, \fB\-\-rfc\-822\fR +output RFC-822 compliant date string +.TP +\fB\-s\fR, \fB\-\-set\fR=\fISTRING\fR +set time described by STRING +.TP +\fB\-u\fR, \fB\-\-utc\fR, \fB\-\-universal\fR +print or set Coordinated Universal Time +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +FORMAT controls the output. The only valid option for the second form +specifies Coordinated Universal Time. Interpreted sequences are: +.TP +%% +a literal % +.TP +%a +locale's abbreviated weekday name (Sun..Sat) +.TP +%A +locale's full weekday name, variable length (Sunday..Saturday) +.TP +%b +locale's abbreviated month name (Jan..Dec) +.TP +%B +locale's full month name, variable length (January..December) +.TP +%c +locale's date and time (Sat Nov 04 12:02:33 EST 1989) +.TP +%C +century (year divided by 100 and truncated to an integer) [00-99] +.TP +%d +day of month (01..31) +.TP +%D +date (mm/dd/yy) +.TP +%e +day of month, blank padded ( 1..31) +.TP +%F +same as %Y-%m-%d +.TP +%g +the 2-digit year corresponding to the %V week number +.TP +%G +the 4-digit year corresponding to the %V week number +.TP +%h +same as %b +.TP +%H +hour (00..23) +.TP +%I +hour (01..12) +.TP +%j +day of year (001..366) +.TP +%k +hour ( 0..23) +.TP +%l +hour ( 1..12) +.TP +%m +month (01..12) +.TP +%M +minute (00..59) +.TP +%n +a newline +.TP +%N +nanoseconds (000000000..999999999) +.TP +%p +locale's upper case AM or PM indicator (blank in many locales) +.TP +%P +locale's lower case am or pm indicator (blank in many locales) +.TP +%r +time, 12-hour (hh:mm:ss [AP]M) +.TP +%R +time, 24-hour (hh:mm) +.TP +%s +seconds since `00:00:00 1970-01-01 UTC' (a GNU extension) +.TP +%S +second (00..60); the 60 is necessary to accommodate a leap second +.TP +%t +a horizontal tab +.TP +%T +time, 24-hour (hh:mm:ss) +.TP +%u +day of week (1..7); 1 represents Monday +.TP +%U +week number of year with Sunday as first day of week (00..53) +.TP +%V +week number of year with Monday as first day of week (01..53) +.TP +%w +day of week (0..6); 0 represents Sunday +.TP +%W +week number of year with Monday as first day of week (00..53) +.TP +%x +locale's date representation (mm/dd/yy) +.TP +%X +locale's time representation (%H:%M:%S) +.TP +%y +last two digits of year (00..99) +.TP +%Y +year (1970...) +.TP +%z +RFC-822 style numeric timezone (-0500) (a nonstandard extension) +.TP +%Z +time zone (e.g., EDT), or nothing if no time zone is determinable +.PP +By default, date pads numeric fields with zeroes. GNU date recognizes +the following modifiers between `%' and a numeric directive. +.IP +`-' (hyphen) do not pad the field +`_' (underscore) pad the field with spaces +.SH AUTHOR +Written by David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B date +is maintained as a Texinfo manual. If the +.B info +and +.B date +programs are properly installed at your site, the command +.IP +.B info date +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/date.x b/src/apps/bin/coreutils-5.0/man/date.x new file mode 100644 index 0000000000..bae08ac98c --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/date.x @@ -0,0 +1,4 @@ +[NAME] +date \- print or set the system date and time +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/dd.1 b/src/apps/bin/coreutils-5.0/man/dd.1 new file mode 100644 index 0000000000..fbdee0fcae --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/dd.1 @@ -0,0 +1,108 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH DD "1" "March 2003" "dd (coreutils) 5.0" "User Commands" +.SH NAME +dd \- convert and copy a file +.SH SYNOPSIS +.B dd +[\fIOPTION\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Copy a file, converting and formatting according to the options. +.TP +bs=BYTES +force ibs=BYTES and obs=BYTES +.TP +cbs=BYTES +convert BYTES bytes at a time +.TP +conv=KEYWORDS +convert the file as per the comma separated keyword list +.TP +count=BLOCKS +copy only BLOCKS input blocks +.TP +ibs=BYTES +read BYTES bytes at a time +.TP +if=FILE +read from FILE instead of stdin +.TP +obs=BYTES +write BYTES bytes at a time +.TP +of=FILE +write to FILE instead of stdout +.TP +seek=BLOCKS +skip BLOCKS obs-sized blocks at start of output +.TP +skip=BLOCKS +skip BLOCKS ibs-sized blocks at start of input +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +BLOCKS and BYTES may be followed by the following multiplicative suffixes: +xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576, +GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y. +Each KEYWORD may be: +.TP +ascii +from EBCDIC to ASCII +.TP +ebcdic +from ASCII to EBCDIC +.TP +ibm +from ASCII to alternated EBCDIC +.TP +block +pad newline-terminated records with spaces to cbs-size +.TP +unblock +replace trailing spaces in cbs-size records with newline +.TP +lcase +change upper case to lower case +.TP +notrunc +do not truncate the output file +.TP +ucase +change lower case to upper case +.TP +swab +swap every pair of input bytes +.TP +noerror +continue after read errors +.TP +sync +pad every input block with NULs to ibs-size; when used +.IP +with block or unblock, pad with spaces rather than NULs +.SH AUTHOR +Written by Paul Rubin, David MacKenzie, and Stuart Kemp. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B dd +is maintained as a Texinfo manual. If the +.B info +and +.B dd +programs are properly installed at your site, the command +.IP +.B info dd +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/dd.x b/src/apps/bin/coreutils-5.0/man/dd.x new file mode 100644 index 0000000000..bc92af5751 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/dd.x @@ -0,0 +1,4 @@ +[NAME] +dd \- convert and copy a file +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/df.1 b/src/apps/bin/coreutils-5.0/man/df.1 new file mode 100644 index 0000000000..3d4ce9c3fa --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/df.1 @@ -0,0 +1,106 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH DF "1" "March 2003" "df (coreutils) 5.0" "User Commands" +.SH NAME +df \- report filesystem disk space usage +.SH SYNOPSIS +.B df +[\fIOPTION\fR]... [\fIFILE\fR]... +.SH DESCRIPTION +This manual page +documents the GNU version of +.BR df . +.B df +displays the amount of disk space available on the filesystem +containing each file name argument. If no file name is given, the +space available on all currently mounted filesystems is shown. Disk +space is shown in 1K blocks by default, unless the environment +variable POSIXLY_CORRECT is set, in which case 512-byte blocks are +used. +.PP +If an argument is the absolute file name of a disk device node containing a +mounted filesystem, +.B df +shows the space available on that filesystem rather than on the +filesystem containing the device node (which is always the root +filesystem). This version of +.B df +cannot show the space available on unmounted filesystems, because on +most kinds of systems doing so requires very nonportable intimate +knowledge of filesystem structures. +.SH OPTIONS +.PP +Show information about the filesystem on which each FILE resides, +or all filesystems by default. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-a\fR, \fB\-\-all\fR +include filesystems having 0 blocks +.HP +\fB\-B\fR, \fB\-\-block\-size\fR=\fISIZE\fR use SIZE-byte blocks +.TP +\fB\-h\fR, \fB\-\-human\-readable\fR +print sizes in human readable format (e.g., 1K 234M 2G) +.TP +\fB\-H\fR, \fB\-\-si\fR +likewise, but use powers of 1000 not 1024 +.TP +\fB\-i\fR, \fB\-\-inodes\fR +list inode information instead of block usage +.TP +\fB\-k\fR +like \fB\-\-block\-size\fR=\fI1K\fR +.TP +\fB\-l\fR, \fB\-\-local\fR +limit listing to local filesystems +.TP +\fB\-\-no\-sync\fR +do not invoke sync before getting usage info (default) +.TP +\fB\-P\fR, \fB\-\-portability\fR +use the POSIX output format +.TP +\fB\-\-sync\fR +invoke sync before getting usage info +.TP +\fB\-t\fR, \fB\-\-type\fR=\fITYPE\fR +limit listing to filesystems of type TYPE +.TP +\fB\-T\fR, \fB\-\-print\-type\fR +print filesystem type +.TP +\fB\-x\fR, \fB\-\-exclude\-type\fR=\fITYPE\fR +limit listing to filesystems not of type TYPE +.TP +\fB\-v\fR +(ignored) +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +SIZE may be (or may be an integer optionally followed by) one of following: +kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y. +.SH AUTHOR +Written by Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B df +is maintained as a Texinfo manual. If the +.B info +and +.B df +programs are properly installed at your site, the command +.IP +.B info df +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/df.x b/src/apps/bin/coreutils-5.0/man/df.x new file mode 100644 index 0000000000..766cfd7551 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/df.x @@ -0,0 +1,25 @@ +[NAME] +df \- report filesystem disk space usage +[DESCRIPTION] +This manual page +documents the GNU version of +.BR df . +.B df +displays the amount of disk space available on the filesystem +containing each file name argument. If no file name is given, the +space available on all currently mounted filesystems is shown. Disk +space is shown in 1K blocks by default, unless the environment +variable POSIXLY_CORRECT is set, in which case 512-byte blocks are +used. +.PP +If an argument is the absolute file name of a disk device node containing a +mounted filesystem, +.B df +shows the space available on that filesystem rather than on the +filesystem containing the device node (which is always the root +filesystem). This version of +.B df +cannot show the space available on unmounted filesystems, because on +most kinds of systems doing so requires very nonportable intimate +knowledge of filesystem structures. +.SH OPTIONS diff --git a/src/apps/bin/coreutils-5.0/man/dir.1 b/src/apps/bin/coreutils-5.0/man/dir.1 new file mode 100644 index 0000000000..d58059a549 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/dir.1 @@ -0,0 +1,233 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH DIR "1" "March 2003" "dir (coreutils) 5.0" "User Commands" +.SH NAME +dir \- list directory contents +.SH SYNOPSIS +.B dir +[\fIOPTION\fR]... [\fIFILE\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.PP +List information about the FILEs (the current directory by default). +Sort entries alphabetically if none of \fB\-cftuSUX\fR nor \fB\-\-sort\fR. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-a\fR, \fB\-\-all\fR +do not hide entries starting with . +.TP +\fB\-A\fR, \fB\-\-almost\-all\fR +do not list implied . and .. +.TP +\fB\-\-author\fR +print the author of each file +.TP +\fB\-b\fR, \fB\-\-escape\fR +print octal escapes for nongraphic characters +.TP +\fB\-\-block\-size\fR=\fISIZE\fR +use SIZE-byte blocks +.TP +\fB\-B\fR, \fB\-\-ignore\-backups\fR +do not list implied entries ending with ~ +.TP +\fB\-c\fR +with \fB\-lt\fR: sort by, and show, ctime (time of last +modification of file status information) +with \fB\-l\fR: show ctime and sort by name +otherwise: sort by ctime +.TP +\fB\-C\fR +list entries by columns +.TP +\fB\-\-color\fR[=\fIWHEN\fR] +control whether color is used to distinguish file +types. WHEN may be `never', `always', or `auto' +.TP +\fB\-d\fR, \fB\-\-directory\fR +list directory entries instead of contents, +and do not dereference symbolic links +.TP +\fB\-D\fR, \fB\-\-dired\fR +generate output designed for Emacs' dired mode +.TP +\fB\-f\fR +do not sort, enable \fB\-aU\fR, disable \fB\-lst\fR +.TP +\fB\-F\fR, \fB\-\-classify\fR +append indicator (one of */=@|) to entries +.TP +\fB\-\-format\fR=\fIWORD\fR +across \fB\-x\fR, commas \fB\-m\fR, horizontal \fB\-x\fR, long \fB\-l\fR, +single-column \fB\-1\fR, verbose \fB\-l\fR, vertical \fB\-C\fR +.TP +\fB\-\-full\-time\fR +like \fB\-l\fR \fB\-\-time\-style\fR=\fIfull\-iso\fR +.TP +\fB\-g\fR +like \fB\-l\fR, but do not list owner +.TP +\fB\-G\fR, \fB\-\-no\-group\fR +inhibit display of group information +.TP +\fB\-h\fR, \fB\-\-human\-readable\fR +print sizes in human readable format (e.g., 1K 234M 2G) +.TP +\fB\-\-si\fR +likewise, but use powers of 1000 not 1024 +.TP +\fB\-H\fR, \fB\-\-dereference\-command\-line\fR +follow symbolic links listed on the command line +.TP +\fB\-\-dereference\-command\-line\-symlink\-to\-dir\fR +follow each command line symbolic link +.IP +that points to a directory +.TP +\fB\-\-indicator\-style\fR=\fIWORD\fR append indicator with style WORD to entry names: +none (default), classify (-F), file-type (-p) +.TP +\fB\-i\fR, \fB\-\-inode\fR +print index number of each file +.TP +\fB\-I\fR, \fB\-\-ignore\fR=\fIPATTERN\fR +do not list implied entries matching shell PATTERN +.TP +\fB\-k\fR +like \fB\-\-block\-size\fR=\fI1K\fR +.TP +\fB\-l\fR +use a long listing format +.TP +\fB\-L\fR, \fB\-\-dereference\fR +when showing file information for a symbolic +link, show information for the file the link +references rather than for the link itself +.TP +\fB\-m\fR +fill width with a comma separated list of entries +.TP +\fB\-n\fR, \fB\-\-numeric\-uid\-gid\fR +like \fB\-l\fR, but list numeric UIDs and GIDs +.TP +\fB\-N\fR, \fB\-\-literal\fR +print raw entry names (don't treat e.g. control +characters specially) +.TP +\fB\-o\fR +like \fB\-l\fR, but do not list group information +.TP +\fB\-p\fR, \fB\-\-file\-type\fR +append indicator (one of /=@|) to entries +.TP +\fB\-q\fR, \fB\-\-hide\-control\-chars\fR +print ? instead of non graphic characters +.TP +\fB\-\-show\-control\-chars\fR +show non graphic characters as-is (default +unless program is `ls' and output is a terminal) +.TP +\fB\-Q\fR, \fB\-\-quote\-name\fR +enclose entry names in double quotes +.TP +\fB\-\-quoting\-style\fR=\fIWORD\fR +use quoting style WORD for entry names: +literal, locale, shell, shell-always, c, escape +.TP +\fB\-r\fR, \fB\-\-reverse\fR +reverse order while sorting +.TP +\fB\-R\fR, \fB\-\-recursive\fR +list subdirectories recursively +.TP +\fB\-s\fR, \fB\-\-size\fR +print size of each file, in blocks +.TP +\fB\-S\fR +sort by file size +.TP +\fB\-\-sort\fR=\fIWORD\fR +extension \fB\-X\fR, none \fB\-U\fR, size \fB\-S\fR, time \fB\-t\fR, +version \fB\-v\fR +.IP +status \fB\-c\fR, time \fB\-t\fR, atime \fB\-u\fR, access \fB\-u\fR, use \fB\-u\fR +.TP +\fB\-\-time\fR=\fIWORD\fR +show time as WORD instead of modification time: +atime, access, use, ctime or status; use +specified time as sort key if \fB\-\-sort\fR=\fItime\fR +.TP +\fB\-\-time\-style\fR=\fISTYLE\fR +show times using style STYLE: +full-iso, long-iso, iso, locale, +FORMAT +.IP +FORMAT is interpreted like `date'; if FORMAT is +FORMAT1FORMAT2, FORMAT1 applies to +non-recent files and FORMAT2 to recent files; +if STYLE is prefixed with `posix-', STYLE +takes effect only outside the POSIX locale +.TP +\fB\-t\fR +sort by modification time +.TP +\fB\-T\fR, \fB\-\-tabsize\fR=\fICOLS\fR +assume tab stops at each COLS instead of 8 +.TP +\fB\-u\fR +with \fB\-lt\fR: sort by, and show, access time +with \fB\-l\fR: show access time and sort by name +otherwise: sort by access time +.TP +\fB\-U\fR +do not sort; list entries in directory order +.TP +\fB\-v\fR +sort by version +.TP +\fB\-w\fR, \fB\-\-width\fR=\fICOLS\fR +assume screen width instead of current value +.TP +\fB\-x\fR +list entries by lines instead of by columns +.TP +\fB\-X\fR +sort alphabetically by entry extension +.TP +\fB\-1\fR +list one file per line +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +SIZE may be (or may be an integer optionally followed by) one of following: +kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y. +.PP +By default, color is not used to distinguish types of files. That is +equivalent to using \fB\-\-color\fR=\fInone\fR. Using the \fB\-\-color\fR option without the +optional WHEN argument is equivalent to using \fB\-\-color\fR=\fIalways\fR. With +\fB\-\-color\fR=\fIauto\fR, color codes are output only if standard output is connected +to a terminal (tty). +.SH AUTHOR +Written by Richard Stallman and David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B dir +is maintained as a Texinfo manual. If the +.B info +and +.B dir +programs are properly installed at your site, the command +.IP +.B info dir +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/dir.x b/src/apps/bin/coreutils-5.0/man/dir.x new file mode 100644 index 0000000000..9ba5e59973 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/dir.x @@ -0,0 +1,4 @@ +[NAME] +dir \- list directory contents +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/dircolors.1 b/src/apps/bin/coreutils-5.0/man/dircolors.1 new file mode 100644 index 0000000000..f2fdc50d15 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/dircolors.1 @@ -0,0 +1,52 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH DIRCOLORS "1" "March 2003" "dircolors (coreutils) 5.0" "User Commands" +.SH NAME +dircolors \- color setup for ls +.SH SYNOPSIS +.B dircolors +[\fIOPTION\fR]... [\fIFILE\fR] +.SH DESCRIPTION +.\" Add any additional description here +.PP +Output commands to set the LS_COLORS environment variable. +.SS "Determine format of output:" +.TP +\fB\-b\fR, \fB\-\-sh\fR, \fB\-\-bourne\-shell\fR +output Bourne shell code to set LS_COLORS +.TP +\fB\-c\fR, \fB\-\-csh\fR, \fB\-\-c\-shell\fR +output C shell code to set LS_COLORS +.TP +\fB\-p\fR, \fB\-\-print\-database\fR +output defaults +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +If FILE is specified, read it to determine which colors to use for which +file types and extensions. Otherwise, a precompiled database is used. +For details on the format of these files, run `dircolors \fB\-\-print\-database\fR'. +.SH AUTHOR +Written by H. Peter Anvin. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B dircolors +is maintained as a Texinfo manual. If the +.B info +and +.B dircolors +programs are properly installed at your site, the command +.IP +.B info dircolors +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/dircolors.x b/src/apps/bin/coreutils-5.0/man/dircolors.x new file mode 100644 index 0000000000..fa13247207 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/dircolors.x @@ -0,0 +1,4 @@ +[NAME] +dircolors \- color setup for ls +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/dirname.1 b/src/apps/bin/coreutils-5.0/man/dirname.1 new file mode 100644 index 0000000000..92b96a2426 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/dirname.1 @@ -0,0 +1,42 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH DIRNAME "1" "March 2003" "dirname 5.0" "User Commands" +.SH NAME +dirname \- strip non-directory suffix from file name +.SH SYNOPSIS +.B dirname +\fINAME\fR +.br +.B dirname +\fIOPTION\fR +.SH DESCRIPTION +.\" Add any additional description here +.PP +Print NAME with its trailing /component removed; if NAME contains no /'s, +output `.' (meaning the current directory). +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by David MacKenzie and Jim Meyering. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B dirname +is maintained as a Texinfo manual. If the +.B info +and +.B dirname +programs are properly installed at your site, the command +.IP +.B info dirname +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/dirname.x b/src/apps/bin/coreutils-5.0/man/dirname.x new file mode 100644 index 0000000000..5612ed2a5a --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/dirname.x @@ -0,0 +1,4 @@ +[NAME] +dirname \- strip non-directory suffix from file name +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/du.1 b/src/apps/bin/coreutils-5.0/man/du.1 new file mode 100644 index 0000000000..6c7172eb5a --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/du.1 @@ -0,0 +1,117 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH DU "1" "March 2003" "du (coreutils) 5.0" "User Commands" +.SH NAME +du \- estimate file space usage +.SH SYNOPSIS +.B du +[\fIOPTION\fR]... [\fIFILE\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Summarize disk usage of each FILE, recursively for directories. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-a\fR, \fB\-\-all\fR +write counts for all files, not just directories +.TP +\fB\-\-apparent\-size\fR +print apparent sizes, rather than disk usage; although +the apparent size is usually smaller, it may be +larger due to holes in (`sparse') files, internal +fragmentation, indirect blocks, and the like +.HP +\fB\-B\fR, \fB\-\-block\-size\fR=\fISIZE\fR use SIZE-byte blocks +.TP +\fB\-b\fR, \fB\-\-bytes\fR +equivalent to `--apparent-size \fB\-\-block\-size\fR=\fI1\fR' +.TP +\fB\-c\fR, \fB\-\-total\fR +produce a grand total +.TP +\fB\-D\fR, \fB\-\-dereference\-args\fR +dereference FILEs that are symbolic links +.TP +\fB\-h\fR, \fB\-\-human\-readable\fR +print sizes in human readable format (e.g., 1K 234M 2G) +.TP +\fB\-H\fR, \fB\-\-si\fR +likewise, but use powers of 1000 not 1024 +.TP +\fB\-k\fR +like \fB\-\-block\-size\fR=\fI1K\fR +.TP +\fB\-l\fR, \fB\-\-count\-links\fR +count sizes many times if hard linked +.TP +\fB\-L\fR, \fB\-\-dereference\fR +dereference all symbolic links +.TP +\fB\-S\fR, \fB\-\-separate\-dirs\fR +do not include size of subdirectories +.TP +\fB\-s\fR, \fB\-\-summarize\fR +display only a total for each argument +.TP +\fB\-x\fR, \fB\-\-one\-file\-system\fR +skip directories on different filesystems +.TP +\fB\-X\fR FILE, \fB\-\-exclude\-from\fR=\fIFILE\fR +Exclude files that match any pattern in FILE. +.HP +\fB\-\-exclude\fR=\fIPATTERN\fR Exclude files that match PATTERN. +.TP +\fB\-\-max\-depth\fR=\fIN\fR +print the total for a directory (or file, with \fB\-\-all\fR) +only if it is N or fewer levels below the command +line argument; \fB\-\-max\-depth\fR=\fI0\fR is the same as +\fB\-\-summarize\fR +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +SIZE may be (or may be an integer optionally followed by) one of following: +kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y. +.SH PATTERNS +PATTERN is a shell pattern (not a regular expression). The pattern +.BR ? +matches any one character, whereas +.BR * +matches any string (composed of zero, one or multiple characters). For +example, +.BR *.o +will match any files whose names end in +.BR .o . +Therefore, the command +.IP +.B du --exclude='*.o' +.PP +will skip all files and subdirectories ending in +.BR .o +(including the file +.BR .o +itself). +.SH AUTHOR +Written by Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim Meyering. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B du +is maintained as a Texinfo manual. If the +.B info +and +.B du +programs are properly installed at your site, the command +.IP +.B info du +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/du.x b/src/apps/bin/coreutils-5.0/man/du.x new file mode 100644 index 0000000000..8eeedaef70 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/du.x @@ -0,0 +1,23 @@ +[NAME] +du \- estimate file space usage +[DESCRIPTION] +.\" Add any additional description here +[PATTERNS] +PATTERN is a shell pattern (not a regular expression). The pattern +.BR ? +matches any one character, whereas +.BR * +matches any string (composed of zero, one or multiple characters). For +example, +.BR *.o +will match any files whose names end in +.BR .o . +Therefore, the command +.IP +.B du --exclude='*.o' +.PP +will skip all files and subdirectories ending in +.BR .o +(including the file +.BR .o +itself). diff --git a/src/apps/bin/coreutils-5.0/man/echo.1 b/src/apps/bin/coreutils-5.0/man/echo.1 new file mode 100644 index 0000000000..dd5e7dc392 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/echo.1 @@ -0,0 +1,82 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH ECHO "1" "March 2003" "echo 5.0" "User Commands" +.SH NAME +echo \- display a line of text +.SH SYNOPSIS +.B echo +[\fIOPTION\fR]... [\fISTRING\fR]... +.SH DESCRIPTION +NOTE: your shell may have its own version of echo which will supercede +the version described here. Please refer to your shell's documentation +for details about the options it supports. +.PP +Echo the STRING(s) to standard output. +.TP +\fB\-n\fR +do not output the trailing newline +.TP +\fB\-e\fR +enable interpretation of the backslash-escaped characters +listed below +.TP +\fB\-E\fR +disable interpretation of those sequences in STRINGs +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +Without \fB\-E\fR, the following sequences are recognized and interpolated: +.TP +\eNNN +the character whose ASCII code is NNN (octal) +.TP +\e\e +backslash +.TP +\ea +alert (BEL) +.TP +\eb +backspace +.TP +\ec +suppress trailing newline +.TP +\ef +form feed +.TP +\en +new line +.TP +\er +carriage return +.TP +\et +horizontal tab +.TP +\ev +vertical tab +.SH AUTHOR +Written by FIXME unknown. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B echo +is maintained as a Texinfo manual. If the +.B info +and +.B echo +programs are properly installed at your site, the command +.IP +.B info echo +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/echo.x b/src/apps/bin/coreutils-5.0/man/echo.x new file mode 100644 index 0000000000..9631e37801 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/echo.x @@ -0,0 +1,6 @@ +[NAME] +echo \- display a line of text +[DESCRIPTION] +NOTE: your shell may have its own version of echo which will supercede +the version described here. Please refer to your shell's documentation +for details about the options it supports. diff --git a/src/apps/bin/coreutils-5.0/man/env.1 b/src/apps/bin/coreutils-5.0/man/env.1 new file mode 100644 index 0000000000..d825ea43f9 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/env.1 @@ -0,0 +1,46 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH ENV "1" "March 2003" "env (coreutils) 5.0" "User Commands" +.SH NAME +env \- run a program in a modified environment +.SH SYNOPSIS +.B env +[\fIOPTION\fR]... [\fI-\fR] [\fINAME=VALUE\fR]... [\fICOMMAND \fR[\fIARG\fR]...] +.SH DESCRIPTION +.\" Add any additional description here +.PP +Set each NAME to VALUE in the environment and run COMMAND. +.TP +\fB\-i\fR, \fB\-\-ignore\-environment\fR +start with an empty environment +.TP +\fB\-u\fR, \fB\-\-unset\fR=\fINAME\fR +remove variable from the environment +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +A mere - implies \fB\-i\fR. If no COMMAND, print the resulting environment. +.SH AUTHOR +Written by Richard Mlynarik and David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B env +is maintained as a Texinfo manual. If the +.B info +and +.B env +programs are properly installed at your site, the command +.IP +.B info env +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/env.x b/src/apps/bin/coreutils-5.0/man/env.x new file mode 100644 index 0000000000..914fb9cdc4 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/env.x @@ -0,0 +1,4 @@ +[NAME] +env \- run a program in a modified environment +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/expand.1 b/src/apps/bin/coreutils-5.0/man/expand.1 new file mode 100644 index 0000000000..63d79b62d0 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/expand.1 @@ -0,0 +1,50 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH EXPAND "1" "March 2003" "expand (coreutils) 5.0" "User Commands" +.SH NAME +expand \- convert tabs to spaces +.SH SYNOPSIS +.B expand +[\fIOPTION\fR]... [\fIFILE\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Convert tabs in each FILE to spaces, writing to standard output. +With no FILE, or when FILE is -, read standard input. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-i\fR, \fB\-\-initial\fR +do not convert TABs after non whitespace +.TP +\fB\-t\fR, \fB\-\-tabs\fR=\fINUMBER\fR +have tabs NUMBER characters apart, not 8 +.TP +\fB\-t\fR, \fB\-\-tabs\fR=\fILIST\fR +use comma separated list of explicit tab positions +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B expand +is maintained as a Texinfo manual. If the +.B info +and +.B expand +programs are properly installed at your site, the command +.IP +.B info expand +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/expand.x b/src/apps/bin/coreutils-5.0/man/expand.x new file mode 100644 index 0000000000..95e5e3a7ec --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/expand.x @@ -0,0 +1,4 @@ +[NAME] +expand \- convert tabs to spaces +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/expr.1 b/src/apps/bin/coreutils-5.0/man/expr.1 new file mode 100644 index 0000000000..4224e0d03f --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/expr.1 @@ -0,0 +1,109 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH EXPR "1" "March 2003" "expr 5.0" "User Commands" +.SH NAME +expr \- evaluate expressions +.SH SYNOPSIS +.B expr +\fIEXPRESSION\fR +.br +.B expr +\fIOPTION\fR +.SH DESCRIPTION +.\" Add any additional description here +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +Print the value of EXPRESSION to standard output. A blank line below +separates increasing precedence groups. EXPRESSION may be: +.TP +ARG1 | ARG2 +ARG1 if it is neither null nor 0, otherwise ARG2 +.TP +ARG1 & ARG2 +ARG1 if neither argument is null or 0, otherwise 0 +.TP +ARG1 < ARG2 +ARG1 is less than ARG2 +.TP +ARG1 <= ARG2 +ARG1 is less than or equal to ARG2 +.TP +ARG1 = ARG2 +ARG1 is equal to ARG2 +.TP +ARG1 != ARG2 +ARG1 is unequal to ARG2 +.TP +ARG1 >= ARG2 +ARG1 is greater than or equal to ARG2 +.TP +ARG1 > ARG2 +ARG1 is greater than ARG2 +.TP +ARG1 + ARG2 +arithmetic sum of ARG1 and ARG2 +.TP +ARG1 - ARG2 +arithmetic difference of ARG1 and ARG2 +.TP +ARG1 * ARG2 +arithmetic product of ARG1 and ARG2 +.TP +ARG1 / ARG2 +arithmetic quotient of ARG1 divided by ARG2 +.TP +ARG1 % ARG2 +arithmetic remainder of ARG1 divided by ARG2 +.TP +STRING : REGEXP +anchored pattern match of REGEXP in STRING +.TP +match STRING REGEXP +same as STRING : REGEXP +.TP +substr STRING POS LENGTH +substring of STRING, POS counted from 1 +.TP +index STRING CHARS +index in STRING where any CHARS is found, or 0 +.TP +length STRING +length of STRING +.TP ++ TOKEN +interpret TOKEN as a string, even if it is a +.IP +keyword like `match' or an operator like `/' +.TP +( EXPRESSION ) +value of EXPRESSION +.PP +Beware that many operators need to be escaped or quoted for shells. +Comparisons are arithmetic if both ARGs are numbers, else lexicographical. +Pattern matches return the string matched between \e( and \e) or null; if +\e( and \e) are not used, they return the number of characters matched or 0. +.SH AUTHOR +Written by Mike Parker. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B expr +is maintained as a Texinfo manual. If the +.B info +and +.B expr +programs are properly installed at your site, the command +.IP +.B info expr +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/expr.x b/src/apps/bin/coreutils-5.0/man/expr.x new file mode 100644 index 0000000000..5700077117 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/expr.x @@ -0,0 +1,4 @@ +[NAME] +expr \- evaluate expressions +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/factor.1 b/src/apps/bin/coreutils-5.0/man/factor.1 new file mode 100644 index 0000000000..b7ee409ea6 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/factor.1 @@ -0,0 +1,46 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH FACTOR "1" "March 2003" "factor 5.0" "User Commands" +.SH NAME +factor \- factor numbers +.SH SYNOPSIS +.B factor +[\fINUMBER\fR]... +.br +.B factor +\fIOPTION\fR +.SH DESCRIPTION +.\" Add any additional description here +.PP +Print the prime factors of each NUMBER. +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.TP +Print the prime factors of all specified integer NUMBERs. +If no arguments +.IP +are specified on the command line, they are read from standard input. +.SH AUTHOR +Written by Paul Rubin. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B factor +is maintained as a Texinfo manual. If the +.B info +and +.B factor +programs are properly installed at your site, the command +.IP +.B info factor +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/factor.x b/src/apps/bin/coreutils-5.0/man/factor.x new file mode 100644 index 0000000000..5d6b6367bb --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/factor.x @@ -0,0 +1,4 @@ +[NAME] +factor \- factor numbers +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/false.1 b/src/apps/bin/coreutils-5.0/man/false.1 new file mode 100644 index 0000000000..f3f10e35d3 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/false.1 @@ -0,0 +1,43 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH FALSE "1" "April 2003" "false 5.0" "User Commands" +.SH NAME +false \- do nothing, unsuccessfully +.SH SYNOPSIS +.B false +[\fIignored command line arguments\fR] +.br +.B false +\fIOPTION\fR +.SH DESCRIPTION +.\" Add any additional description here +.PP +Exit with a status code indicating failure. +.PP +These option names may not be abbreviated. +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by Jim Meyering. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B false +is maintained as a Texinfo manual. If the +.B info +and +.B false +programs are properly installed at your site, the command +.IP +.B info false +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/false.x b/src/apps/bin/coreutils-5.0/man/false.x new file mode 100644 index 0000000000..3b3b35985b --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/false.x @@ -0,0 +1,4 @@ +[NAME] +false \- do nothing, unsuccessfully +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/fmt.1 b/src/apps/bin/coreutils-5.0/man/fmt.1 new file mode 100644 index 0000000000..edb9fdd97e --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/fmt.1 @@ -0,0 +1,61 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH FMT "1" "March 2003" "fmt (coreutils) 5.0" "User Commands" +.SH NAME +fmt \- simple optimal text formatter +.SH SYNOPSIS +.B fmt +[\fI-DIGITS\fR] [\fIOPTION\fR]... [\fIFILE\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Reformat each paragraph in the FILE(s), writing to standard output. +If no FILE or if FILE is `-', read standard input. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-c\fR, \fB\-\-crown\-margin\fR +preserve indentation of first two lines +.TP +\fB\-p\fR, \fB\-\-prefix\fR=\fISTRING\fR +combine only lines having STRING as prefix +.TP +\fB\-s\fR, \fB\-\-split\-only\fR +split long lines, but do not refill +.TP +\fB\-t\fR, \fB\-\-tagged\-paragraph\fR +indentation of first line different from second +.TP +\fB\-u\fR, \fB\-\-uniform\-spacing\fR +one space between words, two after sentences +.TP +\fB\-w\fR, \fB\-\-width\fR=\fINUMBER\fR +maximum line width (default of 75 columns) +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +In \fB\-wNUMBER\fR, the letter `w' may be omitted. +.SH AUTHOR +Written by Ross Paterson. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B fmt +is maintained as a Texinfo manual. If the +.B info +and +.B fmt +programs are properly installed at your site, the command +.IP +.B info fmt +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/fmt.x b/src/apps/bin/coreutils-5.0/man/fmt.x new file mode 100644 index 0000000000..c4abfeb020 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/fmt.x @@ -0,0 +1,4 @@ +[NAME] +fmt \- simple optimal text formatter +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/fold.1 b/src/apps/bin/coreutils-5.0/man/fold.1 new file mode 100644 index 0000000000..f367c568cb --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/fold.1 @@ -0,0 +1,50 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH FOLD "1" "March 2003" "fold (coreutils) 5.0" "User Commands" +.SH NAME +fold \- wrap each input line to fit in specified width +.SH SYNOPSIS +.B fold +[\fIOPTION\fR]... [\fIFILE\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Wrap input lines in each FILE (standard input by default), writing to +standard output. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-b\fR, \fB\-\-bytes\fR +count bytes rather than columns +.TP +\fB\-s\fR, \fB\-\-spaces\fR +break at spaces +.TP +\fB\-w\fR, \fB\-\-width\fR=\fIWIDTH\fR +use WIDTH columns instead of 80 +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B fold +is maintained as a Texinfo manual. If the +.B info +and +.B fold +programs are properly installed at your site, the command +.IP +.B info fold +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/fold.x b/src/apps/bin/coreutils-5.0/man/fold.x new file mode 100644 index 0000000000..5c7472c252 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/fold.x @@ -0,0 +1,4 @@ +[NAME] +fold \- wrap each input line to fit in specified width +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/groups.1 b/src/apps/bin/coreutils-5.0/man/groups.1 new file mode 100644 index 0000000000..f1380cff8f --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/groups.1 @@ -0,0 +1,31 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH GROUPS "1" "March 2003" "groups 5.0" "User Commands" +.SH NAME +groups \- print the groups a user is in +.SH SYNOPSIS +.B groups +[\fIOPTION\fR]... [\fIUSERNAME\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +Same as id \fB\-Gn\fR. If no USERNAME, use current process. +.SH "REPORTING BUGS" +Report bugs to . +.SH "SEE ALSO" +The full documentation for +.B groups +is maintained as a Texinfo manual. If the +.B info +and +.B groups +programs are properly installed at your site, the command +.IP +.B info groups +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/groups.x b/src/apps/bin/coreutils-5.0/man/groups.x new file mode 100644 index 0000000000..1e42fed300 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/groups.x @@ -0,0 +1,4 @@ +[NAME] +groups \- print the groups a user is in +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/head.1 b/src/apps/bin/coreutils-5.0/man/head.1 new file mode 100644 index 0000000000..95636799d6 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/head.1 @@ -0,0 +1,56 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH HEAD "1" "March 2003" "head (coreutils) 5.0" "User Commands" +.SH NAME +head \- output the first part of files +.SH SYNOPSIS +.B head +[\fIOPTION\fR]... [\fIFILE\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Print first 10 lines of each FILE to standard output. +With more than one FILE, precede each with a header giving the file name. +With no FILE, or when FILE is -, read standard input. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-c\fR, \fB\-\-bytes\fR=\fISIZE\fR +print first SIZE bytes +.TP +\fB\-n\fR, \fB\-\-lines\fR=\fINUMBER\fR +print first NUMBER lines instead of first 10 +.TP +\fB\-q\fR, \fB\-\-quiet\fR, \fB\-\-silent\fR +never print headers giving file names +.TP +\fB\-v\fR, \fB\-\-verbose\fR +always print headers giving file names +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg. +.SH AUTHOR +Written by David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B head +is maintained as a Texinfo manual. If the +.B info +and +.B head +programs are properly installed at your site, the command +.IP +.B info head +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/head.x b/src/apps/bin/coreutils-5.0/man/head.x new file mode 100644 index 0000000000..160d0fff2e --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/head.x @@ -0,0 +1,4 @@ +[NAME] +head \- output the first part of files +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/hostid.1 b/src/apps/bin/coreutils-5.0/man/hostid.1 new file mode 100644 index 0000000000..81c11caecc --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/hostid.1 @@ -0,0 +1,41 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH HOSTID "1" "March 2003" "hostid 5.0" "User Commands" +.SH NAME +hostid \- print the numeric identifier for the current host +.SH SYNOPSIS +.B hostid + +.br +.B hostid +\fIOPTION\fR +.SH DESCRIPTION +.\" Add any additional description here +.PP +Print the numeric identifier (in hexadecimal) for the current host. +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by Jim Meyering. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B hostid +is maintained as a Texinfo manual. If the +.B info +and +.B hostid +programs are properly installed at your site, the command +.IP +.B info hostid +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/hostid.x b/src/apps/bin/coreutils-5.0/man/hostid.x new file mode 100644 index 0000000000..1bba0a630d --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/hostid.x @@ -0,0 +1,4 @@ +[NAME] +hostid \- print the numeric identifier for the current host +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/hostname.1 b/src/apps/bin/coreutils-5.0/man/hostname.1 new file mode 100644 index 0000000000..17043dbfd0 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/hostname.1 @@ -0,0 +1,41 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH HOSTNAME "1" "March 2003" "hostname 5.0" "User Commands" +.SH NAME +hostname \- set or print the name of the current host system +.SH SYNOPSIS +.B hostname +[\fINAME\fR] +.br +.B hostname +\fIOPTION\fR +.SH DESCRIPTION +.\" Add any additional description here +.PP +Print or set the hostname of the current system. +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by Jim Meyering. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B hostname +is maintained as a Texinfo manual. If the +.B info +and +.B hostname +programs are properly installed at your site, the command +.IP +.B info hostname +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/hostname.x b/src/apps/bin/coreutils-5.0/man/hostname.x new file mode 100644 index 0000000000..4b4489c2a2 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/hostname.x @@ -0,0 +1,4 @@ +[NAME] +hostname \- set or print the name of the current host system +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/id.1 b/src/apps/bin/coreutils-5.0/man/id.1 new file mode 100644 index 0000000000..4ddad5614f --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/id.1 @@ -0,0 +1,58 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH ID "1" "March 2003" "id (coreutils) 5.0" "User Commands" +.SH NAME +id \- print real and effective UIDs and GIDs +.SH SYNOPSIS +.B id +[\fIOPTION\fR]... [\fIUSERNAME\fR] +.SH DESCRIPTION +.\" Add any additional description here +.PP +Print information for USERNAME, or the current user. +.TP +\fB\-a\fR +ignore, for compatibility with other versions +.TP +\fB\-g\fR, \fB\-\-group\fR +print only the effective group ID +.TP +\fB\-G\fR, \fB\-\-groups\fR +print all group IDs +.TP +\fB\-n\fR, \fB\-\-name\fR +print a name instead of a number, for \fB\-ugG\fR +.TP +\fB\-r\fR, \fB\-\-real\fR +print the real ID instead of the effective ID, with \fB\-ugG\fR +.TP +\fB\-u\fR, \fB\-\-user\fR +print only the effective user ID +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +Without any OPTION, print some useful set of identified information. +.SH AUTHOR +Written by Arnold Robbins and David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B id +is maintained as a Texinfo manual. If the +.B info +and +.B id +programs are properly installed at your site, the command +.IP +.B info id +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/id.x b/src/apps/bin/coreutils-5.0/man/id.x new file mode 100644 index 0000000000..ad0462e512 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/id.x @@ -0,0 +1,4 @@ +[NAME] +id \- print real and effective UIDs and GIDs +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/install.1 b/src/apps/bin/coreutils-5.0/man/install.1 new file mode 100644 index 0000000000..2febe54c49 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/install.1 @@ -0,0 +1,101 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH INSTALL "1" "March 2003" "install (coreutils) 5.0" "User Commands" +.SH NAME +ginstall \- copy files and set attributes +.SH SYNOPSIS +.B install +[\fIOPTION\fR]... \fISOURCE DEST (1st format)\fR +.br +.B install +[\fIOPTION\fR]... \fISOURCE\fR... \fIDIRECTORY (2nd format)\fR +.br +.B install +\fI-d \fR[\fIOPTION\fR]... \fIDIRECTORY\fR... \fI(3rd format)\fR +.SH DESCRIPTION +.\" Add any additional description here +.PP +In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to +the existing DIRECTORY, while setting permission modes and owner/group. +In the third format, create all components of the given DIRECTORY(ies). +.PP +Mandatory arguments to long options are mandatory for short options too. +.HP +\fB\-\-backup\fR[=\fICONTROL\fR] make a backup of each existing destination file +.TP +\fB\-b\fR +like \fB\-\-backup\fR but does not accept an argument +.TP +\fB\-c\fR +(ignored) +.TP +\fB\-d\fR, \fB\-\-directory\fR +treat all arguments as directory names; create all +components of the specified directories +.TP +\fB\-D\fR +create all leading components of DEST except the last, +then copy SOURCE to DEST; useful in the 1st format +.TP +\fB\-g\fR, \fB\-\-group\fR=\fIGROUP\fR +set group ownership, instead of process' current group +.TP +\fB\-m\fR, \fB\-\-mode\fR=\fIMODE\fR +set permission mode (as in chmod), instead of rwxr-xr-x +.TP +\fB\-o\fR, \fB\-\-owner\fR=\fIOWNER\fR +set ownership (super-user only) +.TP +\fB\-p\fR, \fB\-\-preserve\-timestamps\fR +apply access/modification times of SOURCE files +to corresponding destination files +.TP +\fB\-s\fR, \fB\-\-strip\fR +strip symbol tables, only for 1st and 2nd formats +.HP +\fB\-S\fR, \fB\-\-suffix\fR=\fISUFFIX\fR override the usual backup suffix +.TP +\fB\-v\fR, \fB\-\-verbose\fR +print the name of each directory as it is created +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +The backup suffix is `~', unless set with \fB\-\-suffix\fR or SIMPLE_BACKUP_SUFFIX. +The version control method may be selected via the \fB\-\-backup\fR option or through +the VERSION_CONTROL environment variable. Here are the values: +.TP +none, off +never make backups (even if \fB\-\-backup\fR is given) +.TP +numbered, t +make numbered backups +.TP +existing, nil +numbered if numbered backups exist, simple otherwise +.TP +simple, never +always make simple backups +.SH AUTHOR +Written by David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B install +is maintained as a Texinfo manual. If the +.B info +and +.B install +programs are properly installed at your site, the command +.IP +.B info install +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/install.x b/src/apps/bin/coreutils-5.0/man/install.x new file mode 100644 index 0000000000..d8c45c7416 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/install.x @@ -0,0 +1,4 @@ +[NAME] +ginstall \- copy files and set attributes +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/join.1 b/src/apps/bin/coreutils-5.0/man/join.1 new file mode 100644 index 0000000000..ea1c2c3cd1 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/join.1 @@ -0,0 +1,80 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH JOIN "1" "March 2003" "join (coreutils) 5.0" "User Commands" +.SH NAME +join \- join lines of two files on a common field +.SH SYNOPSIS +.B join +[\fIOPTION\fR]... \fIFILE1 FILE2\fR +.SH DESCRIPTION +.\" Add any additional description here +.PP +For each pair of input lines with identical join fields, write a line to +standard output. The default join field is the first, delimited +by whitespace. When FILE1 or FILE2 (not both) is -, read standard input. +.TP +\fB\-a\fR FILENUM +print unpairable lines coming from file FILENUM, where +FILENUM is 1 or 2, corresponding to FILE1 or FILE2 +.TP +\fB\-e\fR EMPTY +replace missing input fields with EMPTY +.HP +\fB\-i\fR, \fB\-\-ignore\-case\fR ignore differences in case when comparing fields +.TP +\fB\-j\fR FIELD +(obsolescent) equivalent to `-1 FIELD \fB\-2\fR FIELD' +.TP +\fB\-j1\fR FIELD +(obsolescent) equivalent to `-1 FIELD' +.TP +\fB\-j2\fR FIELD +(obsolescent) equivalent to `-2 FIELD' +.TP +\fB\-o\fR FORMAT +obey FORMAT while constructing output line +.TP +\fB\-t\fR CHAR +use CHAR as input and output field separator +.TP +\fB\-v\fR FILENUM +like \fB\-a\fR FILENUM, but suppress joined output lines +.TP +\fB\-1\fR FIELD +join on this FIELD of file 1 +.TP +\fB\-2\fR FIELD +join on this FIELD of file 2 +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +Unless \fB\-t\fR CHAR is given, leading blanks separate fields and are ignored, +else fields are separated by CHAR. Any FIELD is a field number counted +from 1. FORMAT is one or more comma or blank separated specifications, +each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field, +the remaining fields from FILE1, the remaining fields from FILE2, all +separated by CHAR. +.SH AUTHOR +Written by Mike Haertel. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B join +is maintained as a Texinfo manual. If the +.B info +and +.B join +programs are properly installed at your site, the command +.IP +.B info join +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/join.x b/src/apps/bin/coreutils-5.0/man/join.x new file mode 100644 index 0000000000..6f50791f26 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/join.x @@ -0,0 +1,4 @@ +[NAME] +join \- join lines of two files on a common field +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/link.1 b/src/apps/bin/coreutils-5.0/man/link.1 new file mode 100644 index 0000000000..33354b11db --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/link.1 @@ -0,0 +1,41 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH LINK "1" "March 2003" "link 5.0" "User Commands" +.SH NAME +link \- call the link function to create a link to a file +.SH SYNOPSIS +.B link +\fIFILE1 FILE2\fR +.br +.B link +\fIOPTION\fR +.SH DESCRIPTION +.\" Add any additional description here +.PP +Call the link function to create a link named FILE2 to an existing FILE1. +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by Michael Stone. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B link +is maintained as a Texinfo manual. If the +.B info +and +.B link +programs are properly installed at your site, the command +.IP +.B info link +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/link.x b/src/apps/bin/coreutils-5.0/man/link.x new file mode 100644 index 0000000000..374d6436eb --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/link.x @@ -0,0 +1,4 @@ +[NAME] +link \- call the link function to create a link to a file +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/ln.1 b/src/apps/bin/coreutils-5.0/man/ln.1 new file mode 100644 index 0000000000..fdaff129a2 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/ln.1 @@ -0,0 +1,99 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH LN "1" "March 2003" "ln (coreutils) 5.0" "User Commands" +.SH NAME +ln \- make links between files +.SH SYNOPSIS +.B ln +[\fIOPTION\fR]... \fITARGET \fR[\fILINK_NAME\fR] +.br +.B ln +[\fIOPTION\fR]... \fITARGET\fR... \fIDIRECTORY\fR +.br +.B ln +[\fIOPTION\fR]... \fI--target-directory=DIRECTORY TARGET\fR... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Create a link to the specified TARGET with optional LINK_NAME. +If LINK_NAME is omitted, a link with the same basename as the TARGET is +created in the current directory. When using the second form with more +than one TARGET, the last argument must be a directory; create links +in DIRECTORY to each TARGET. Create hard links by default, symbolic +links with \fB\-\-symbolic\fR. When creating hard links, each TARGET must exist. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-\-backup\fR[=\fICONTROL\fR] +make a backup of each existing destination file +.TP +\fB\-b\fR +like \fB\-\-backup\fR but does not accept an argument +.TP +\fB\-d\fR, \fB\-F\fR, \fB\-\-directory\fR +hard link directories (super-user only) +.TP +\fB\-f\fR, \fB\-\-force\fR +remove existing destination files +.TP +\fB\-n\fR, \fB\-\-no\-dereference\fR +treat destination that is a symlink to a +directory as if it were a normal file +.TP +\fB\-i\fR, \fB\-\-interactive\fR +prompt whether to remove destinations +.TP +\fB\-s\fR, \fB\-\-symbolic\fR +make symbolic links instead of hard links +.TP +\fB\-S\fR, \fB\-\-suffix\fR=\fISUFFIX\fR +override the usual backup suffix +.TP +\fB\-\-target\-directory\fR=\fIDIRECTORY\fR +specify the DIRECTORY in which to create +the links +.TP +\fB\-v\fR, \fB\-\-verbose\fR +print name of each file before linking +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +The backup suffix is `~', unless set with \fB\-\-suffix\fR or SIMPLE_BACKUP_SUFFIX. +The version control method may be selected via the \fB\-\-backup\fR option or through +the VERSION_CONTROL environment variable. Here are the values: +.TP +none, off +never make backups (even if \fB\-\-backup\fR is given) +.TP +numbered, t +make numbered backups +.TP +existing, nil +numbered if numbered backups exist, simple otherwise +.TP +simple, never +always make simple backups +.SH AUTHOR +Written by Mike Parker and David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B ln +is maintained as a Texinfo manual. If the +.B info +and +.B ln +programs are properly installed at your site, the command +.IP +.B info ln +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/ln.x b/src/apps/bin/coreutils-5.0/man/ln.x new file mode 100644 index 0000000000..875a8da960 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/ln.x @@ -0,0 +1,4 @@ +[NAME] +ln \- make links between files +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/logname.1 b/src/apps/bin/coreutils-5.0/man/logname.1 new file mode 100644 index 0000000000..5264169527 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/logname.1 @@ -0,0 +1,38 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH LOGNAME "1" "March 2003" "logname 5.0" "User Commands" +.SH NAME +logname \- print user\'s login name +.SH SYNOPSIS +.B logname +[\fIOPTION\fR] +.SH DESCRIPTION +.\" Add any additional description here +.PP +Print the name of the current user. +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by FIXME: unknown. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B logname +is maintained as a Texinfo manual. If the +.B info +and +.B logname +programs are properly installed at your site, the command +.IP +.B info logname +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/logname.x b/src/apps/bin/coreutils-5.0/man/logname.x new file mode 100644 index 0000000000..997a1b7bca --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/logname.x @@ -0,0 +1,4 @@ +[NAME] +logname \- print user\'s login name +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/ls.1 b/src/apps/bin/coreutils-5.0/man/ls.1 new file mode 100644 index 0000000000..f4ce3acca6 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/ls.1 @@ -0,0 +1,233 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH LS "1" "March 2003" "ls (coreutils) 5.0" "User Commands" +.SH NAME +ls \- list directory contents +.SH SYNOPSIS +.B ls +[\fIOPTION\fR]... [\fIFILE\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.PP +List information about the FILEs (the current directory by default). +Sort entries alphabetically if none of \fB\-cftuSUX\fR nor \fB\-\-sort\fR. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-a\fR, \fB\-\-all\fR +do not hide entries starting with . +.TP +\fB\-A\fR, \fB\-\-almost\-all\fR +do not list implied . and .. +.TP +\fB\-\-author\fR +print the author of each file +.TP +\fB\-b\fR, \fB\-\-escape\fR +print octal escapes for nongraphic characters +.TP +\fB\-\-block\-size\fR=\fISIZE\fR +use SIZE-byte blocks +.TP +\fB\-B\fR, \fB\-\-ignore\-backups\fR +do not list implied entries ending with ~ +.TP +\fB\-c\fR +with \fB\-lt\fR: sort by, and show, ctime (time of last +modification of file status information) +with \fB\-l\fR: show ctime and sort by name +otherwise: sort by ctime +.TP +\fB\-C\fR +list entries by columns +.TP +\fB\-\-color\fR[=\fIWHEN\fR] +control whether color is used to distinguish file +types. WHEN may be `never', `always', or `auto' +.TP +\fB\-d\fR, \fB\-\-directory\fR +list directory entries instead of contents, +and do not dereference symbolic links +.TP +\fB\-D\fR, \fB\-\-dired\fR +generate output designed for Emacs' dired mode +.TP +\fB\-f\fR +do not sort, enable \fB\-aU\fR, disable \fB\-lst\fR +.TP +\fB\-F\fR, \fB\-\-classify\fR +append indicator (one of */=@|) to entries +.TP +\fB\-\-format\fR=\fIWORD\fR +across \fB\-x\fR, commas \fB\-m\fR, horizontal \fB\-x\fR, long \fB\-l\fR, +single-column \fB\-1\fR, verbose \fB\-l\fR, vertical \fB\-C\fR +.TP +\fB\-\-full\-time\fR +like \fB\-l\fR \fB\-\-time\-style\fR=\fIfull\-iso\fR +.TP +\fB\-g\fR +like \fB\-l\fR, but do not list owner +.TP +\fB\-G\fR, \fB\-\-no\-group\fR +inhibit display of group information +.TP +\fB\-h\fR, \fB\-\-human\-readable\fR +print sizes in human readable format (e.g., 1K 234M 2G) +.TP +\fB\-\-si\fR +likewise, but use powers of 1000 not 1024 +.TP +\fB\-H\fR, \fB\-\-dereference\-command\-line\fR +follow symbolic links listed on the command line +.TP +\fB\-\-dereference\-command\-line\-symlink\-to\-dir\fR +follow each command line symbolic link +.IP +that points to a directory +.TP +\fB\-\-indicator\-style\fR=\fIWORD\fR append indicator with style WORD to entry names: +none (default), classify (-F), file-type (-p) +.TP +\fB\-i\fR, \fB\-\-inode\fR +print index number of each file +.TP +\fB\-I\fR, \fB\-\-ignore\fR=\fIPATTERN\fR +do not list implied entries matching shell PATTERN +.TP +\fB\-k\fR +like \fB\-\-block\-size\fR=\fI1K\fR +.TP +\fB\-l\fR +use a long listing format +.TP +\fB\-L\fR, \fB\-\-dereference\fR +when showing file information for a symbolic +link, show information for the file the link +references rather than for the link itself +.TP +\fB\-m\fR +fill width with a comma separated list of entries +.TP +\fB\-n\fR, \fB\-\-numeric\-uid\-gid\fR +like \fB\-l\fR, but list numeric UIDs and GIDs +.TP +\fB\-N\fR, \fB\-\-literal\fR +print raw entry names (don't treat e.g. control +characters specially) +.TP +\fB\-o\fR +like \fB\-l\fR, but do not list group information +.TP +\fB\-p\fR, \fB\-\-file\-type\fR +append indicator (one of /=@|) to entries +.TP +\fB\-q\fR, \fB\-\-hide\-control\-chars\fR +print ? instead of non graphic characters +.TP +\fB\-\-show\-control\-chars\fR +show non graphic characters as-is (default +unless program is `ls' and output is a terminal) +.TP +\fB\-Q\fR, \fB\-\-quote\-name\fR +enclose entry names in double quotes +.TP +\fB\-\-quoting\-style\fR=\fIWORD\fR +use quoting style WORD for entry names: +literal, locale, shell, shell-always, c, escape +.TP +\fB\-r\fR, \fB\-\-reverse\fR +reverse order while sorting +.TP +\fB\-R\fR, \fB\-\-recursive\fR +list subdirectories recursively +.TP +\fB\-s\fR, \fB\-\-size\fR +print size of each file, in blocks +.TP +\fB\-S\fR +sort by file size +.TP +\fB\-\-sort\fR=\fIWORD\fR +extension \fB\-X\fR, none \fB\-U\fR, size \fB\-S\fR, time \fB\-t\fR, +version \fB\-v\fR +.IP +status \fB\-c\fR, time \fB\-t\fR, atime \fB\-u\fR, access \fB\-u\fR, use \fB\-u\fR +.TP +\fB\-\-time\fR=\fIWORD\fR +show time as WORD instead of modification time: +atime, access, use, ctime or status; use +specified time as sort key if \fB\-\-sort\fR=\fItime\fR +.TP +\fB\-\-time\-style\fR=\fISTYLE\fR +show times using style STYLE: +full-iso, long-iso, iso, locale, +FORMAT +.IP +FORMAT is interpreted like `date'; if FORMAT is +FORMAT1FORMAT2, FORMAT1 applies to +non-recent files and FORMAT2 to recent files; +if STYLE is prefixed with `posix-', STYLE +takes effect only outside the POSIX locale +.TP +\fB\-t\fR +sort by modification time +.TP +\fB\-T\fR, \fB\-\-tabsize\fR=\fICOLS\fR +assume tab stops at each COLS instead of 8 +.TP +\fB\-u\fR +with \fB\-lt\fR: sort by, and show, access time +with \fB\-l\fR: show access time and sort by name +otherwise: sort by access time +.TP +\fB\-U\fR +do not sort; list entries in directory order +.TP +\fB\-v\fR +sort by version +.TP +\fB\-w\fR, \fB\-\-width\fR=\fICOLS\fR +assume screen width instead of current value +.TP +\fB\-x\fR +list entries by lines instead of by columns +.TP +\fB\-X\fR +sort alphabetically by entry extension +.TP +\fB\-1\fR +list one file per line +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +SIZE may be (or may be an integer optionally followed by) one of following: +kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y. +.PP +By default, color is not used to distinguish types of files. That is +equivalent to using \fB\-\-color\fR=\fInone\fR. Using the \fB\-\-color\fR option without the +optional WHEN argument is equivalent to using \fB\-\-color\fR=\fIalways\fR. With +\fB\-\-color\fR=\fIauto\fR, color codes are output only if standard output is connected +to a terminal (tty). +.SH AUTHOR +Written by Richard Stallman and David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B ls +is maintained as a Texinfo manual. If the +.B info +and +.B ls +programs are properly installed at your site, the command +.IP +.B info ls +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/ls.x b/src/apps/bin/coreutils-5.0/man/ls.x new file mode 100644 index 0000000000..4b7e3f46dc --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/ls.x @@ -0,0 +1,4 @@ +[NAME] +ls \- list directory contents +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/md5sum.1 b/src/apps/bin/coreutils-5.0/man/md5sum.1 new file mode 100644 index 0000000000..f78a1ff422 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/md5sum.1 @@ -0,0 +1,63 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH MD5SUM "1" "March 2003" "md5sum (coreutils) 5.0" "User Commands" +.SH NAME +md5sum \- compute and check MD5 message digest +.SH SYNOPSIS +.B md5sum +[\fIOPTION\fR] [\fIFILE\fR]... +.br +.B md5sum +[\fIOPTION\fR] \fI--check \fR[\fIFILE\fR] +.SH DESCRIPTION +.\" Add any additional description here +.PP +Print or check MD5 (128-bit) checksums. +With no FILE, or when FILE is -, read standard input. +.TP +\fB\-b\fR, \fB\-\-binary\fR +read files in binary mode (default on DOS/Windows) +.TP +\fB\-c\fR, \fB\-\-check\fR +check MD5 sums against given list +.TP +\fB\-t\fR, \fB\-\-text\fR +read files in text mode (default) +.SS "The following two options are useful only when verifying checksums:" +.TP +\fB\-\-status\fR +don't output anything, status code shows success +.TP +\fB\-w\fR, \fB\-\-warn\fR +warn about improperly formated checksum lines +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +The sums are computed as described in RFC 1321. When checking, the input +should be a former output of this program. The default mode is to print +a line with checksum, a character indicating type (`*' for binary, ` ' for +text), and name for each FILE. +.SH AUTHOR +Written by Ulrich Drepper and Scott Miller. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B md5sum +is maintained as a Texinfo manual. If the +.B info +and +.B md5sum +programs are properly installed at your site, the command +.IP +.B info md5sum +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/md5sum.x b/src/apps/bin/coreutils-5.0/man/md5sum.x new file mode 100644 index 0000000000..4a6547781f --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/md5sum.x @@ -0,0 +1,4 @@ +[NAME] +md5sum \- compute and check MD5 message digest +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/mkdir.1 b/src/apps/bin/coreutils-5.0/man/mkdir.1 new file mode 100644 index 0000000000..d161c392eb --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/mkdir.1 @@ -0,0 +1,49 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH MKDIR "1" "March 2003" "mkdir (coreutils) 5.0" "User Commands" +.SH NAME +mkdir \- make directories +.SH SYNOPSIS +.B mkdir +[\fIOPTION\fR] \fIDIRECTORY\fR... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Create the DIRECTORY(ies), if they do not already exist. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-m\fR, \fB\-\-mode\fR=\fIMODE\fR +set permission mode (as in chmod), not rwxrwxrwx - umask +.TP +\fB\-p\fR, \fB\-\-parents\fR +no error if existing, make parent directories as needed +.TP +\fB\-v\fR, \fB\-\-verbose\fR +print a message for each created directory +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B mkdir +is maintained as a Texinfo manual. If the +.B info +and +.B mkdir +programs are properly installed at your site, the command +.IP +.B info mkdir +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/mkdir.x b/src/apps/bin/coreutils-5.0/man/mkdir.x new file mode 100644 index 0000000000..99e9e17efd --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/mkdir.x @@ -0,0 +1,4 @@ +[NAME] +mkdir \- make directories +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/mkfifo.1 b/src/apps/bin/coreutils-5.0/man/mkfifo.1 new file mode 100644 index 0000000000..eb646f69cc --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/mkfifo.1 @@ -0,0 +1,43 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH MKFIFO "1" "March 2003" "mkfifo (coreutils) 5.0" "User Commands" +.SH NAME +mkfifo \- make FIFOs (named pipes) +.SH SYNOPSIS +.B mkfifo +[\fIOPTION\fR] \fINAME\fR... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Create named pipes (FIFOs) with the given NAMEs. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-m\fR, \fB\-\-mode\fR=\fIMODE\fR +set permission mode (as in chmod), not a=rw - umask +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B mkfifo +is maintained as a Texinfo manual. If the +.B info +and +.B mkfifo +programs are properly installed at your site, the command +.IP +.B info mkfifo +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/mkfifo.x b/src/apps/bin/coreutils-5.0/man/mkfifo.x new file mode 100644 index 0000000000..2a7c300633 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/mkfifo.x @@ -0,0 +1,4 @@ +[NAME] +mkfifo \- make FIFOs (named pipes) +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/mknod.1 b/src/apps/bin/coreutils-5.0/man/mknod.1 new file mode 100644 index 0000000000..571d963630 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/mknod.1 @@ -0,0 +1,57 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH MKNOD "1" "March 2003" "mknod (coreutils) 5.0" "User Commands" +.SH NAME +mknod \- make block or character special files +.SH SYNOPSIS +.B mknod +[\fIOPTION\fR]... \fINAME TYPE \fR[\fIMAJOR MINOR\fR] +.SH DESCRIPTION +.\" Add any additional description here +.PP +Create the special file NAME of the given TYPE. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-m\fR, \fB\-\-mode\fR=\fIMODE\fR +set permission mode (as in chmod), not a=rw - umask +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they +must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X, +it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal; +otherwise, as decimal. TYPE may be: +.TP +b +create a block (buffered) special file +.TP +c, u +create a character (unbuffered) special file +.TP +p +create a FIFO +.SH AUTHOR +Written by David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B mknod +is maintained as a Texinfo manual. If the +.B info +and +.B mknod +programs are properly installed at your site, the command +.IP +.B info mknod +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/mknod.x b/src/apps/bin/coreutils-5.0/man/mknod.x new file mode 100644 index 0000000000..42177a9949 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/mknod.x @@ -0,0 +1,4 @@ +[NAME] +mknod \- make block or character special files +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/mv.1 b/src/apps/bin/coreutils-5.0/man/mv.1 new file mode 100644 index 0000000000..0b77c866a1 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/mv.1 @@ -0,0 +1,97 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH MV "1" "March 2003" "mv (coreutils) 5.0" "User Commands" +.SH NAME +mv \- move (rename) files +.SH SYNOPSIS +.B mv +[\fIOPTION\fR]... \fISOURCE DEST\fR +.br +.B mv +[\fIOPTION\fR]... \fISOURCE\fR... \fIDIRECTORY\fR +.br +.B mv +[\fIOPTION\fR]... \fI--target-directory=DIRECTORY SOURCE\fR... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-\-backup\fR[=\fICONTROL\fR] +make a backup of each existing destination file +.TP +\fB\-b\fR +like \fB\-\-backup\fR but does not accept an argument +.TP +\fB\-f\fR, \fB\-\-force\fR +do not prompt before overwriting +equivalent to \fB\-\-reply\fR=\fIyes\fR +.TP +\fB\-i\fR, \fB\-\-interactive\fR +prompt before overwrite +equivalent to \fB\-\-reply\fR=\fIquery\fR +.TP +\fB\-\-reply=\fR{yes,no,query} +specify how to handle the prompt about an +existing destination file +.TP +\fB\-\-strip\-trailing\-slashes\fR remove any trailing slashes from each SOURCE +argument +.TP +\fB\-S\fR, \fB\-\-suffix\fR=\fISUFFIX\fR +override the usual backup suffix +.TP +\fB\-\-target\-directory\fR=\fIDIRECTORY\fR +move all SOURCE arguments into DIRECTORY +.TP +\fB\-u\fR, \fB\-\-update\fR +move only when the SOURCE file is newer +than the destination file or when the +destination file is missing +.TP +\fB\-v\fR, \fB\-\-verbose\fR +explain what is being done +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +The backup suffix is `~', unless set with \fB\-\-suffix\fR or SIMPLE_BACKUP_SUFFIX. +The version control method may be selected via the \fB\-\-backup\fR option or through +the VERSION_CONTROL environment variable. Here are the values: +.TP +none, off +never make backups (even if \fB\-\-backup\fR is given) +.TP +numbered, t +make numbered backups +.TP +existing, nil +numbered if numbered backups exist, simple otherwise +.TP +simple, never +always make simple backups +.SH AUTHOR +Written by Mike Parker, David MacKenzie, and Jim Meyering. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B mv +is maintained as a Texinfo manual. If the +.B info +and +.B mv +programs are properly installed at your site, the command +.IP +.B info mv +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/mv.x b/src/apps/bin/coreutils-5.0/man/mv.x new file mode 100644 index 0000000000..ac0a1905ba --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/mv.x @@ -0,0 +1,4 @@ +[NAME] +mv \- move (rename) files +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/nice.1 b/src/apps/bin/coreutils-5.0/man/nice.1 new file mode 100644 index 0000000000..fd01b2c62d --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/nice.1 @@ -0,0 +1,43 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH NICE "1" "March 2003" "nice 5.0" "User Commands" +.SH NAME +nice \- run a program with modified scheduling priority +.SH SYNOPSIS +.B nice +[\fIOPTION\fR] [\fICOMMAND \fR[\fIARG\fR]...] +.SH DESCRIPTION +.\" Add any additional description here +.PP +Run COMMAND with an adjusted scheduling priority. +With no COMMAND, print the current scheduling priority. ADJUST is 10 +by default. Range goes from \fB\-20\fR (highest priority) to 19 (lowest). +.TP +\fB\-n\fR, \fB\-\-adjustment\fR=\fIADJUST\fR +increment priority by ADJUST first +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B nice +is maintained as a Texinfo manual. If the +.B info +and +.B nice +programs are properly installed at your site, the command +.IP +.B info nice +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/nice.x b/src/apps/bin/coreutils-5.0/man/nice.x new file mode 100644 index 0000000000..25fb6330eb --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/nice.x @@ -0,0 +1,4 @@ +[NAME] +nice \- run a program with modified scheduling priority +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/nl.1 b/src/apps/bin/coreutils-5.0/man/nl.1 new file mode 100644 index 0000000000..59286c566d --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/nl.1 @@ -0,0 +1,101 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH NL "1" "March 2003" "nl (coreutils) 5.0" "User Commands" +.SH NAME +nl \- number lines of files +.SH SYNOPSIS +.B nl +[\fIOPTION\fR]... [\fIFILE\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Write each FILE to standard output, with line numbers added. +With no FILE, or when FILE is -, read standard input. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-b\fR, \fB\-\-body\-numbering\fR=\fISTYLE\fR +use STYLE for numbering body lines +.TP +\fB\-d\fR, \fB\-\-section\-delimiter\fR=\fICC\fR +use CC for separating logical pages +.TP +\fB\-f\fR, \fB\-\-footer\-numbering\fR=\fISTYLE\fR +use STYLE for numbering footer lines +.TP +\fB\-h\fR, \fB\-\-header\-numbering\fR=\fISTYLE\fR +use STYLE for numbering header lines +.TP +\fB\-i\fR, \fB\-\-page\-increment\fR=\fINUMBER\fR +line number increment at each line +.TP +\fB\-l\fR, \fB\-\-join\-blank\-lines\fR=\fINUMBER\fR +group of NUMBER empty lines counted as one +.TP +\fB\-n\fR, \fB\-\-number\-format\fR=\fIFORMAT\fR +insert line numbers according to FORMAT +.TP +\fB\-p\fR, \fB\-\-no\-renumber\fR +do not reset line numbers at logical pages +.TP +\fB\-s\fR, \fB\-\-number\-separator\fR=\fISTRING\fR +add STRING after (possible) line number +.TP +\fB\-v\fR, \fB\-\-first\-page\fR=\fINUMBER\fR +first line number on each logical page +.TP +\fB\-w\fR, \fB\-\-number\-width\fR=\fINUMBER\fR +use NUMBER columns for line numbers +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +By default, selects \fB\-v1\fR \fB\-i1\fR \fB\-l1\fR \fB\-sTAB\fR \fB\-w6\fR \fB\-nrn\fR \fB\-hn\fR \fB\-bt\fR \fB\-fn\fR. CC are +two delimiter characters for separating logical pages, a missing +second character implies :. Type \e\e for \e. STYLE is one of: +.TP +a +number all lines +.TP +t +number only nonempty lines +.TP +n +number no lines +.TP +pREGEXP +number only lines that contain a match for REGEXP +.PP +FORMAT is one of: +.TP +ln +left justified, no leading zeros +.TP +rn +right justified, no leading zeros +.TP +rz +right justified, leading zeros +.SH AUTHOR +Written by Scott Bartram and David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B nl +is maintained as a Texinfo manual. If the +.B info +and +.B nl +programs are properly installed at your site, the command +.IP +.B info nl +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/nl.x b/src/apps/bin/coreutils-5.0/man/nl.x new file mode 100644 index 0000000000..cf9b64867c --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/nl.x @@ -0,0 +1,4 @@ +[NAME] +nl \- number lines of files +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/nohup.1 b/src/apps/bin/coreutils-5.0/man/nohup.1 new file mode 100644 index 0000000000..f89f45edbb --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/nohup.1 @@ -0,0 +1,34 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH NOHUP "1" "March 2003" "nohup 5.0" "User Commands" +.SH NAME +nohup \- run a command immune to hangups, with output to a non-tty +.SH SYNOPSIS +.B nohup +\fICOMMAND \fR[\fIARG\fR]... +.br +.B nohup +\fIOPTION\fR +.SH DESCRIPTION +.\" Add any additional description here +.PP +Run COMMAND, ignoring hangup signals. +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH "REPORTING BUGS" +Report bugs to . +.SH "SEE ALSO" +The full documentation for +.B nohup +is maintained as a Texinfo manual. If the +.B info +and +.B nohup +programs are properly installed at your site, the command +.IP +.B info nohup +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/nohup.x b/src/apps/bin/coreutils-5.0/man/nohup.x new file mode 100644 index 0000000000..dbb8fb8f7a --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/nohup.x @@ -0,0 +1,4 @@ +[NAME] +nohup \- run a command immune to hangups, with output to a non-tty +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/od.1 b/src/apps/bin/coreutils-5.0/man/od.1 new file mode 100644 index 0000000000..c2d34f5c98 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/od.1 @@ -0,0 +1,141 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH OD "1" "March 2003" "od (coreutils) 5.0" "User Commands" +.SH NAME +od \- dump files in octal and other formats +.SH SYNOPSIS +.B od +[\fIOPTION\fR]... [\fIFILE\fR]... +.br +.B od +\fI--traditional \fR[\fIFILE\fR] [[\fI+\fR]\fIOFFSET \fR[[\fI+\fR]\fILABEL\fR]] +.SH DESCRIPTION +.\" Add any additional description here +.PP +Write an unambiguous representation, octal bytes by default, +of FILE to standard output. With more than one FILE argument, +concatenate them in the listed order to form the input. +With no FILE, or when FILE is -, read standard input. +.PP +All arguments to long options are mandatory for short options. +.TP +\fB\-A\fR, \fB\-\-address\-radix\fR=\fIRADIX\fR +decide how file offsets are printed +.TP +\fB\-j\fR, \fB\-\-skip\-bytes\fR=\fIBYTES\fR +skip BYTES input bytes first +.TP +\fB\-N\fR, \fB\-\-read\-bytes\fR=\fIBYTES\fR +limit dump to BYTES input bytes +.TP +\fB\-s\fR, \fB\-\-strings\fR[=\fIBYTES\fR] +output strings of at least BYTES graphic chars +.TP +\fB\-t\fR, \fB\-\-format\fR=\fITYPE\fR +select output format or formats +.TP +\fB\-v\fR, \fB\-\-output\-duplicates\fR +do not use * to mark line suppression +.TP +\fB\-w\fR, \fB\-\-width\fR[=\fIBYTES\fR] +output BYTES bytes per output line +.TP +\fB\-\-traditional\fR +accept arguments in traditional form +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SS "Traditional format specifications may be intermixed; they accumulate:" +.TP +\fB\-a\fR +same as \fB\-t\fR a, select named characters +.TP +\fB\-b\fR +same as \fB\-t\fR oC, select octal bytes +.TP +\fB\-c\fR +same as \fB\-t\fR c, select ASCII characters or backslash escapes +.TP +\fB\-d\fR +same as \fB\-t\fR u2, select unsigned decimal shorts +.TP +\fB\-f\fR +same as \fB\-t\fR fF, select floats +.TP +\fB\-h\fR +same as \fB\-t\fR x2, select hexadecimal shorts +.TP +\fB\-i\fR +same as \fB\-t\fR d2, select decimal shorts +.TP +\fB\-l\fR +same as \fB\-t\fR d4, select decimal longs +.TP +\fB\-o\fR +same as \fB\-t\fR o2, select octal shorts +.TP +\fB\-x\fR +same as \fB\-t\fR x2, select hexadecimal shorts +.PP +For older syntax (second call format), OFFSET means \fB\-j\fR OFFSET. LABEL +is the pseudo-address at first byte printed, incremented when dump is +progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates +hexadecimal, suffixes may be . for octal and b for multiply by 512. +.PP +TYPE is made up of one or more of these specifications: +.TP +a +named character +.TP +c +ASCII character or backslash escape +.TP +d[SIZE] +signed decimal, SIZE bytes per integer +.TP +f[SIZE] +floating point, SIZE bytes per integer +.TP +o[SIZE] +octal, SIZE bytes per integer +.TP +u[SIZE] +unsigned decimal, SIZE bytes per integer +.TP +x[SIZE] +hexadecimal, SIZE bytes per integer +.PP +SIZE is a number. For TYPE in doux, SIZE may also be C for +sizeof(char), S for sizeof(short), I for sizeof(int) or L for +sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D +for sizeof(double) or L for sizeof(long double). +.PP +RADIX is d for decimal, o for octal, x for hexadecimal or n for none. +BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512 +with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to +any type adds a display of printable characters to the end of each line +of output. \fB\-\-string\fR without a number implies 3. \fB\-\-width\fR without a number +implies 32. By default, od uses \fB\-A\fR o \fB\-t\fR d2 \fB\-w\fR 16. +.SH AUTHOR +Written by Jim Meyering. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B od +is maintained as a Texinfo manual. If the +.B info +and +.B od +programs are properly installed at your site, the command +.IP +.B info od +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/od.x b/src/apps/bin/coreutils-5.0/man/od.x new file mode 100644 index 0000000000..c913f8046f --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/od.x @@ -0,0 +1,4 @@ +[NAME] +od \- dump files in octal and other formats +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/paste.1 b/src/apps/bin/coreutils-5.0/man/paste.1 new file mode 100644 index 0000000000..fda664bea2 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/paste.1 @@ -0,0 +1,48 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH PASTE "1" "March 2003" "paste (coreutils) 5.0" "User Commands" +.SH NAME +paste \- merge lines of files +.SH SYNOPSIS +.B paste +[\fIOPTION\fR]... [\fIFILE\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Write lines consisting of the sequentially corresponding lines from +each FILE, separated by TABs, to standard output. +With no FILE, or when FILE is -, read standard input. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-d\fR, \fB\-\-delimiters\fR=\fILIST\fR +reuse characters from LIST instead of TABs +.TP +\fB\-s\fR, \fB\-\-serial\fR +paste one file at a time instead of in parallel +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by David M. Ihnat and David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B paste +is maintained as a Texinfo manual. If the +.B info +and +.B paste +programs are properly installed at your site, the command +.IP +.B info paste +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/paste.x b/src/apps/bin/coreutils-5.0/man/paste.x new file mode 100644 index 0000000000..0af980dbbf --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/paste.x @@ -0,0 +1,4 @@ +[NAME] +paste \- merge lines of files +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/pathchk.1 b/src/apps/bin/coreutils-5.0/man/pathchk.1 new file mode 100644 index 0000000000..0810daae87 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/pathchk.1 @@ -0,0 +1,41 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH PATHCHK "1" "March 2003" "pathchk 5.0" "User Commands" +.SH NAME +pathchk \- check whether file names are valid or portable +.SH SYNOPSIS +.B pathchk +[\fIOPTION\fR]... \fINAME\fR... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Diagnose unportable constructs in NAME. +.TP +\fB\-p\fR, \fB\-\-portability\fR +check for all POSIX systems, not only this one +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by David MacKenzie and Jim Meyering. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B pathchk +is maintained as a Texinfo manual. If the +.B info +and +.B pathchk +programs are properly installed at your site, the command +.IP +.B info pathchk +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/pathchk.x b/src/apps/bin/coreutils-5.0/man/pathchk.x new file mode 100644 index 0000000000..ad8f09f100 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/pathchk.x @@ -0,0 +1,4 @@ +[NAME] +pathchk \- check whether file names are valid or portable +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/pinky.1 b/src/apps/bin/coreutils-5.0/man/pinky.1 new file mode 100644 index 0000000000..33626895d7 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/pinky.1 @@ -0,0 +1,67 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH PINKY "1" "March 2003" "pinky (coreutils) 5.0" "User Commands" +.SH NAME +pinky \- lightweight finger +.SH SYNOPSIS +.B pinky +[\fIOPTION\fR]... [\fIUSER\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.TP +\fB\-l\fR +produce long format output for the specified USERs +.TP +\fB\-b\fR +omit the user's home directory and shell in long format +.TP +\fB\-h\fR +omit the user's project file in long format +.TP +\fB\-p\fR +omit the user's plan file in long format +.TP +\fB\-s\fR +do short format output, this is the default +.TP +\fB\-f\fR +omit the line of column headings in short format +.TP +\fB\-w\fR +omit the user's full name in short format +.TP +\fB\-i\fR +omit the user's full name and remote host in short format +.TP +\fB\-q\fR +omit the user's full name, remote host and idle time +in short format +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +A lightweight `finger' program; print user information. +The utmp file will be /var/run/utmp. +.SH AUTHOR +Written by Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B pinky +is maintained as a Texinfo manual. If the +.B info +and +.B pinky +programs are properly installed at your site, the command +.IP +.B info pinky +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/pinky.x b/src/apps/bin/coreutils-5.0/man/pinky.x new file mode 100644 index 0000000000..91cdb439f7 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/pinky.x @@ -0,0 +1,4 @@ +[NAME] +pinky \- lightweight finger +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/pr.1 b/src/apps/bin/coreutils-5.0/man/pr.1 new file mode 100644 index 0000000000..6ba4f66700 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/pr.1 @@ -0,0 +1,135 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH PR "1" "March 2003" "pr (coreutils) 5.0" "User Commands" +.SH NAME +pr \- convert text files for printing +.SH SYNOPSIS +.B pr +[\fIOPTION\fR]... [\fIFILE\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Paginate or columnate FILE(s) for printing. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP ++FIRST_PAGE[:LAST_PAGE], \fB\-\-pages\fR=\fIFIRST_PAGE[\fR:LAST_PAGE] +begin [stop] printing with page FIRST_[LAST_]PAGE +.TP +\fB\-COLUMN\fR, \fB\-\-columns\fR=\fICOLUMN\fR +output COLUMN columns and print columns down, +unless \fB\-a\fR is used. Balance number of lines in the +columns on each page. +.TP +\fB\-a\fR, \fB\-\-across\fR +print columns across rather than down, used together +with \fB\-COLUMN\fR +.TP +\fB\-c\fR, \fB\-\-show\-control\-chars\fR +use hat notation (^G) and octal backslash notation +.TP +\fB\-d\fR, \fB\-\-double\-space\fR +double space the output +.TP +\fB\-D\fR, \fB\-\-date\-format\fR=\fIFORMAT\fR +use FORMAT for the header date +.TP +\fB\-e[CHAR[WIDTH]]\fR, \fB\-\-expand\-tabs\fR[=\fICHAR[WIDTH]\fR] +expand input CHARs (TABs) to tab WIDTH (8) +.TP +\fB\-F\fR, \fB\-f\fR, \fB\-\-form\-feed\fR +use form feeds instead of newlines to separate pages +(by a 3-line page header with \fB\-F\fR or a 5-line header +and trailer without \fB\-F\fR) +.TP +\fB\-h\fR HEADER, \fB\-\-header\fR=\fIHEADER\fR +use a centered HEADER instead of filename in page header, +\fB\-h\fR "" prints a blank line, don't use \fB\-h\fR"" +.TP +\fB\-i[CHAR[WIDTH]]\fR, \fB\-\-output\-tabs\fR[=\fICHAR[WIDTH]\fR] +replace spaces with CHARs (TABs) to tab WIDTH (8) +.TP +\fB\-J\fR, \fB\-\-join\-lines\fR +merge full lines, turns off \fB\-W\fR line truncation, no column +alignment, \fB\-\-sep\-string\fR[=\fISTRING\fR] sets separators +.TP +\fB\-l\fR PAGE_LENGTH, \fB\-\-length\fR=\fIPAGE_LENGTH\fR +set the page length to PAGE_LENGTH (66) lines +(default number of lines of text 56, and with \fB\-F\fR 63) +.TP +\fB\-m\fR, \fB\-\-merge\fR +print all files in parallel, one in each column, +truncate lines, but join lines of full length with \fB\-J\fR +.TP +\fB\-n[SEP[DIGITS]]\fR, \fB\-\-number\-lines\fR[=\fISEP[DIGITS]\fR] +number lines, use DIGITS (5) digits, then SEP (TAB), +default counting starts with 1st line of input file +.TP +\fB\-N\fR NUMBER, \fB\-\-first\-line\-number\fR=\fINUMBER\fR +start counting with NUMBER at 1st line of first +page printed (see +FIRST_PAGE) +.TP +\fB\-o\fR MARGIN, \fB\-\-indent\fR=\fIMARGIN\fR +offset each line with MARGIN (zero) spaces, do not +affect \fB\-w\fR or \fB\-W\fR, MARGIN will be added to PAGE_WIDTH +.TP +\fB\-r\fR, \fB\-\-no\-file\-warnings\fR +omit warning when a file cannot be opened +.TP +\fB\-s[CHAR]\fR,--separator[=CHAR] +separate columns by a single character, default for CHAR +is the character without \fB\-w\fR and 'no char' with \fB\-w\fR +\fB\-s[CHAR]\fR turns off line truncation of all 3 column +options (-COLUMN|-a \fB\-COLUMN\fR|-m) except \fB\-w\fR is set +.TP +\fB\-SSTRING\fR, \fB\-\-sep\-string\fR[=\fISTRING\fR] +separate columns by STRING, +without \fB\-S\fR: Default separator with \fB\-J\fR and +otherwise (same as \fB\-S\fR" "), no effect on column options +.HP +\fB\-t\fR, \fB\-\-omit\-header\fR omit page headers and trailers +.TP +\fB\-T\fR, \fB\-\-omit\-pagination\fR +omit page headers and trailers, eliminate any pagination +by form feeds set in input files +.TP +\fB\-v\fR, \fB\-\-show\-nonprinting\fR +use octal backslash notation +.TP +\fB\-w\fR PAGE_WIDTH, \fB\-\-width\fR=\fIPAGE_WIDTH\fR +set page width to PAGE_WIDTH (72) characters for +multiple text-column output only, \fB\-s[char]\fR turns off (72) +.TP +\fB\-W\fR PAGE_WIDTH, \fB\-\-page\-width\fR=\fIPAGE_WIDTH\fR +set page width to PAGE_WIDTH (72) characters always, +truncate lines, except \fB\-J\fR option is set, no interference +with \fB\-S\fR or \fB\-s\fR +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +\fB\-T\fR implied by \fB\-l\fR nn when nn <= 10 or <= 3 with \fB\-F\fR. With no FILE, or when +FILE is -, read standard input. +.SH AUTHOR +Written by Pete TerMaat and Roland Huebner. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B pr +is maintained as a Texinfo manual. If the +.B info +and +.B pr +programs are properly installed at your site, the command +.IP +.B info pr +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/pr.x b/src/apps/bin/coreutils-5.0/man/pr.x new file mode 100644 index 0000000000..4dd836d07a --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/pr.x @@ -0,0 +1,4 @@ +[NAME] +pr \- convert text files for printing +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/printenv.1 b/src/apps/bin/coreutils-5.0/man/printenv.1 new file mode 100644 index 0000000000..5b4c03fc9a --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/printenv.1 @@ -0,0 +1,41 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH PRINTENV "1" "March 2003" "printenv 5.0" "User Commands" +.SH NAME +printenv \- print all or part of environment +.SH SYNOPSIS +.B printenv +[\fIVARIABLE\fR]... +.br +.B printenv +\fIOPTION\fR +.SH DESCRIPTION +.\" Add any additional description here +.PP +If no environment VARIABLE specified, print them all. +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by David MacKenzie and Richard Mlynarik. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B printenv +is maintained as a Texinfo manual. If the +.B info +and +.B printenv +programs are properly installed at your site, the command +.IP +.B info printenv +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/printenv.x b/src/apps/bin/coreutils-5.0/man/printenv.x new file mode 100644 index 0000000000..7445226ce2 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/printenv.x @@ -0,0 +1,4 @@ +[NAME] +printenv \- print all or part of environment +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/printf.1 b/src/apps/bin/coreutils-5.0/man/printf.1 new file mode 100644 index 0000000000..e5ec930592 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/printf.1 @@ -0,0 +1,96 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH PRINTF "1" "March 2003" "printf 5.0" "User Commands" +.SH NAME +printf \- format and print data +.SH SYNOPSIS +.B printf +\fIFORMAT \fR[\fIARGUMENT\fR]... +.br +.B printf +\fIOPTION\fR +.SH DESCRIPTION +NOTE: your shell may have its own version of printf which will supercede +the version described here. Please refer to your shell's documentation +for details about the options it supports. +.PP +Print ARGUMENT(s) according to FORMAT. +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +FORMAT controls the output as in C printf. Interpreted sequences are: +.TP +\e" +double quote +.TP +\e0NNN +character with octal value NNN (0 to 3 digits) +.TP +\e\e +backslash +.TP +\ea +alert (BEL) +.TP +\eb +backspace +.TP +\ec +produce no further output +.TP +\ef +form feed +.TP +\en +new line +.TP +\er +carriage return +.TP +\et +horizontal tab +.TP +\ev +vertical tab +.TP +\exNN +byte with hexadecimal value NN (1 to 2 digits) +.TP +\euNNNN +character with hexadecimal value NNNN (4 digits) +.TP +\eUNNNNNNNN +character with hexadecimal value NNNNNNNN (8 digits) +.TP +%% +a single % +.TP +%b +ARGUMENT as a string with `\e' escapes interpreted +.PP +and all C format specifications ending with one of diouxXfeEgGcs, with +ARGUMENTs converted to proper type first. Variable widths are handled. +.SH AUTHOR +Written by David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B printf +is maintained as a Texinfo manual. If the +.B info +and +.B printf +programs are properly installed at your site, the command +.IP +.B info printf +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/printf.x b/src/apps/bin/coreutils-5.0/man/printf.x new file mode 100644 index 0000000000..2e0ded368b --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/printf.x @@ -0,0 +1,7 @@ +[NAME] +printf \- format and print data +[DESCRIPTION] +NOTE: your shell may have its own version of printf which will supercede +the version described here. Please refer to your shell's documentation +for details about the options it supports. + diff --git a/src/apps/bin/coreutils-5.0/man/ptx.1 b/src/apps/bin/coreutils-5.0/man/ptx.1 new file mode 100644 index 0000000000..e6ddb03ef9 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/ptx.1 @@ -0,0 +1,96 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH PTX "1" "March 2003" "ptx (coreutils) 5.0" "User Commands" +.SH NAME +ptx \- produce a permuted index of file contents +.SH SYNOPSIS +.B ptx +[\fIOPTION\fR]... [\fIINPUT\fR]... \fI(without -G)\fR +.br +.B ptx +\fI-G \fR[\fIOPTION\fR]... [\fIINPUT \fR[\fIOUTPUT\fR]] +.SH DESCRIPTION +.\" Add any additional description here +.PP +Output a permuted index, including context, of the words in the input files. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-A\fR, \fB\-\-auto\-reference\fR +output automatically generated references +.TP +\fB\-C\fR, \fB\-\-copyright\fR +display Copyright and copying conditions +.TP +\fB\-G\fR, \fB\-\-traditional\fR +behave more like System V `ptx' +.TP +\fB\-F\fR, \fB\-\-flag\-truncation\fR=\fISTRING\fR +use STRING for flagging line truncations +.TP +\fB\-M\fR, \fB\-\-macro\-name\fR=\fISTRING\fR +macro name to use instead of `xx' +.TP +\fB\-O\fR, \fB\-\-format\fR=\fIroff\fR +generate output as roff directives +.TP +\fB\-R\fR, \fB\-\-right\-side\-refs\fR +put references at right, not counted in \fB\-w\fR +.TP +\fB\-S\fR, \fB\-\-sentence\-regexp\fR=\fIREGEXP\fR +for end of lines or end of sentences +.TP +\fB\-T\fR, \fB\-\-format\fR=\fItex\fR +generate output as TeX directives +.TP +\fB\-W\fR, \fB\-\-word\-regexp\fR=\fIREGEXP\fR +use REGEXP to match each keyword +.TP +\fB\-b\fR, \fB\-\-break\-file\fR=\fIFILE\fR +word break characters in this FILE +.TP +\fB\-f\fR, \fB\-\-ignore\-case\fR +fold lower case to upper case for sorting +.TP +\fB\-g\fR, \fB\-\-gap\-size\fR=\fINUMBER\fR +gap size in columns between output fields +.TP +\fB\-i\fR, \fB\-\-ignore\-file\fR=\fIFILE\fR +read ignore word list from FILE +.TP +\fB\-o\fR, \fB\-\-only\-file\fR=\fIFILE\fR +read only word list from this FILE +.TP +\fB\-r\fR, \fB\-\-references\fR +first field of each line is a reference +.HP +\fB\-t\fR, \fB\-\-typeset\-mode\fR - not implemented - +.TP +\fB\-w\fR, \fB\-\-width\fR=\fINUMBER\fR +output width in columns, reference excluded +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +With no FILE or if FILE is -, read Standard Input. `-F /' by default. +.SH AUTHOR +Written by François Pinard. +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B ptx +is maintained as a Texinfo manual. If the +.B info +and +.B ptx +programs are properly installed at your site, the command +.IP +.B info ptx +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/ptx.x b/src/apps/bin/coreutils-5.0/man/ptx.x new file mode 100644 index 0000000000..af37770f1e --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/ptx.x @@ -0,0 +1,4 @@ +[NAME] +ptx \- produce a permuted index of file contents +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/pwd.1 b/src/apps/bin/coreutils-5.0/man/pwd.1 new file mode 100644 index 0000000000..3091e2f2af --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/pwd.1 @@ -0,0 +1,40 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH PWD "1" "March 2003" "pwd 5.0" "User Commands" +.SH NAME +pwd \- print name of current/working directory +.SH SYNOPSIS +.B pwd +[\fIOPTION\fR] +.SH DESCRIPTION +NOTE: your shell may have its own version of pwd which will supercede +the version described here. Please refer to your shell's documentation +for details about the options it supports. +.PP +Print the full filename of the current working directory. +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by Jim Meyering. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B pwd +is maintained as a Texinfo manual. If the +.B info +and +.B pwd +programs are properly installed at your site, the command +.IP +.B info pwd +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/pwd.x b/src/apps/bin/coreutils-5.0/man/pwd.x new file mode 100644 index 0000000000..b8d3b16f09 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/pwd.x @@ -0,0 +1,6 @@ +[NAME] +pwd \- print name of current/working directory +[DESCRIPTION] +NOTE: your shell may have its own version of pwd which will supercede +the version described here. Please refer to your shell's documentation +for details about the options it supports. diff --git a/src/apps/bin/coreutils-5.0/man/readlink.1 b/src/apps/bin/coreutils-5.0/man/readlink.1 new file mode 100644 index 0000000000..8422a28a89 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/readlink.1 @@ -0,0 +1,53 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH READLINK "1" "March 2003" "readlink (coreutils) 5.0" "User Commands" +.SH NAME +readlink \- display value of a symbolic link +.SH SYNOPSIS +.B readlink +[\fIOPTION\fR]... \fIFILE\fR +.SH DESCRIPTION +.\" Add any additional description here +.PP +Display value of a symbolic link on standard output. +.TP +\fB\-f\fR, \fB\-\-canonicalize\fR +canonicalize by following every symlink in every +component of the given path recursively +.TP +\fB\-n\fR, \fB\-\-no\-newline\fR +do not output the trailing newline +.HP +\fB\-q\fR, \fB\-\-quiet\fR, +.TP +\fB\-s\fR, \fB\-\-silent\fR +suppress most error messages +.TP +\fB\-v\fR, \fB\-\-verbose\fR +report error messages +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by Dmitry V. Levin. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B readlink +is maintained as a Texinfo manual. If the +.B info +and +.B readlink +programs are properly installed at your site, the command +.IP +.B info readlink +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/readlink.x b/src/apps/bin/coreutils-5.0/man/readlink.x new file mode 100644 index 0000000000..2f33c43f24 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/readlink.x @@ -0,0 +1,4 @@ +[NAME] +readlink \- display value of a symbolic link +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/rm.1 b/src/apps/bin/coreutils-5.0/man/rm.1 new file mode 100644 index 0000000000..9538b1aaad --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/rm.1 @@ -0,0 +1,79 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH RM "1" "March 2003" "rm (coreutils) 5.0" "User Commands" +.SH NAME +rm \- remove files or directories +.SH SYNOPSIS +.B rm +[\fIOPTION\fR]... \fIFILE\fR... +.SH DESCRIPTION +This manual page +documents the GNU version of +.BR rm . +.B rm +removes each specified file. By default, it does not remove +directories. +.P +If a file is unwritable, the standard input is a tty, and +the \fI\-f\fR or \fI\-\-force\fR option is not given, +.B rm +prompts the user for whether to remove the file. If the response +does not begin with `y' or `Y', the file is skipped. +.SH OPTIONS +.PP +Remove (unlink) the FILE(s). +.TP +\fB\-d\fR, \fB\-\-directory\fR +unlink FILE, even if it is a non-empty directory +(super-user only) +.TP +\fB\-f\fR, \fB\-\-force\fR +ignore nonexistent files, never prompt +.TP +\fB\-i\fR, \fB\-\-interactive\fR +prompt before any removal +.TP +\fB\-r\fR, \fB\-R\fR, \fB\-\-recursive\fR +remove the contents of directories recursively +.TP +\fB\-v\fR, \fB\-\-verbose\fR +explain what is being done +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +To remove a file whose name starts with a `-', for example `-foo', +use one of these commands: +.IP +rm.td/rm \fB\-\-\fR \fB\-foo\fR +.IP +rm.td/rm ./-foo +.PP +Note that if you use rm to remove a file, it is usually possible to recover +the contents of that file. If you want more assurance that the contents are +truly unrecoverable, consider using shred. +.SH AUTHOR +Written by Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +shred(1) +.PP +The full documentation for +.B rm +is maintained as a Texinfo manual. If the +.B info +and +.B rm +programs are properly installed at your site, the command +.IP +.B info rm +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/rm.x b/src/apps/bin/coreutils-5.0/man/rm.x new file mode 100644 index 0000000000..fd93b3be6e --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/rm.x @@ -0,0 +1,18 @@ +[NAME] +rm \- remove files or directories +[DESCRIPTION] +This manual page +documents the GNU version of +.BR rm . +.B rm +removes each specified file. By default, it does not remove +directories. +.P +If a file is unwritable, the standard input is a tty, and +the \fI\-f\fR or \fI\-\-force\fR option is not given, +.B rm +prompts the user for whether to remove the file. If the response +does not begin with `y' or `Y', the file is skipped. +.SH OPTIONS +[SEE ALSO] +shred(1) diff --git a/src/apps/bin/coreutils-5.0/man/rmdir.1 b/src/apps/bin/coreutils-5.0/man/rmdir.1 new file mode 100644 index 0000000000..fbc939bde0 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/rmdir.1 @@ -0,0 +1,51 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH RMDIR "1" "March 2003" "rmdir (coreutils) 5.0" "User Commands" +.SH NAME +rmdir \- remove empty directories +.SH SYNOPSIS +.B rmdir +[\fIOPTION\fR]... \fIDIRECTORY\fR... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Remove the DIRECTORY(ies), if they are empty. +.HP +\fB\-\-ignore\-fail\-on\-non\-empty\fR +.IP +ignore each failure that is solely because a directory +is non-empty +.TP +\fB\-p\fR, \fB\-\-parents\fR +remove DIRECTORY, then try to remove each directory +component of that path name. E.g., `rmdir \fB\-p\fR a/b/c' is +similar to `rmdir a/b/c a/b a'. +.TP +\fB\-v\fR, \fB\-\-verbose\fR +output a diagnostic for every directory processed +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B rmdir +is maintained as a Texinfo manual. If the +.B info +and +.B rmdir +programs are properly installed at your site, the command +.IP +.B info rmdir +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/rmdir.x b/src/apps/bin/coreutils-5.0/man/rmdir.x new file mode 100644 index 0000000000..2e3ade6863 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/rmdir.x @@ -0,0 +1,4 @@ +[NAME] +rmdir \- remove empty directories +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/seq.1 b/src/apps/bin/coreutils-5.0/man/seq.1 new file mode 100644 index 0000000000..c3b1304091 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/seq.1 @@ -0,0 +1,59 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH SEQ "1" "March 2003" "seq (coreutils) 5.0" "User Commands" +.SH NAME +seq \- print a sequence of numbers +.SH SYNOPSIS +.B seq +[\fIOPTION\fR]... \fILAST\fR +.br +.B seq +[\fIOPTION\fR]... \fIFIRST LAST\fR +.br +.B seq +[\fIOPTION\fR]... \fIFIRST INCREMENT LAST\fR +.SH DESCRIPTION +.\" Add any additional description here +.PP +Print numbers from FIRST to LAST, in steps of INCREMENT. +.TP +\fB\-f\fR, \fB\-\-format\fR=\fIFORMAT\fR +use printf style floating-point FORMAT (default: %g) +.TP +\fB\-s\fR, \fB\-\-separator\fR=\fISTRING\fR +use STRING to separate numbers (default: \en) +.TP +\fB\-w\fR, \fB\-\-equal\-width\fR +equalize width by padding with leading zeroes +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +If FIRST or INCREMENT is omitted, it defaults to 1. +FIRST, INCREMENT, and LAST are interpreted as floating point values. +INCREMENT should be positive if FIRST is smaller than LAST, and negative +otherwise. When given, the FORMAT argument must contain exactly one of +the printf-style, floating point output formats %e, %f, %g +.SH AUTHOR +Written by Ulrich Drepper. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B seq +is maintained as a Texinfo manual. If the +.B info +and +.B seq +programs are properly installed at your site, the command +.IP +.B info seq +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/seq.x b/src/apps/bin/coreutils-5.0/man/seq.x new file mode 100644 index 0000000000..df7f98cba2 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/seq.x @@ -0,0 +1,4 @@ +[NAME] +seq \- print a sequence of numbers +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/sha1sum.1 b/src/apps/bin/coreutils-5.0/man/sha1sum.1 new file mode 100644 index 0000000000..5520b3c8be --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/sha1sum.1 @@ -0,0 +1,63 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH SHASUM "1" "March 2003" "shasum (coreutils) 5.0" "User Commands" +.SH NAME +shasum \- compute and check SHA1 message digest +.SH SYNOPSIS +.B sha1sum +[\fIOPTION\fR] [\fIFILE\fR]... +.br +.B sha1sum +[\fIOPTION\fR] \fI--check \fR[\fIFILE\fR] +.SH DESCRIPTION +.\" Add any additional description here +.PP +Print or check SHA1 (160-bit) checksums. +With no FILE, or when FILE is -, read standard input. +.TP +\fB\-b\fR, \fB\-\-binary\fR +read files in binary mode (default on DOS/Windows) +.TP +\fB\-c\fR, \fB\-\-check\fR +check SHA1 sums against given list +.TP +\fB\-t\fR, \fB\-\-text\fR +read files in text mode (default) +.SS "The following two options are useful only when verifying checksums:" +.TP +\fB\-\-status\fR +don't output anything, status code shows success +.TP +\fB\-w\fR, \fB\-\-warn\fR +warn about improperly formated checksum lines +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +The sums are computed as described in FIPS-180-1. When checking, the input +should be a former output of this program. The default mode is to print +a line with checksum, a character indicating type (`*' for binary, ` ' for +text), and name for each FILE. +.SH AUTHOR +Written by Ulrich Drepper and Scott Miller. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B shasum +is maintained as a Texinfo manual. If the +.B info +and +.B shasum +programs are properly installed at your site, the command +.IP +.B info shasum +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/sha1sum.x b/src/apps/bin/coreutils-5.0/man/sha1sum.x new file mode 100644 index 0000000000..0eeec2973f --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/sha1sum.x @@ -0,0 +1,4 @@ +[NAME] +shasum \- compute and check SHA1 message digest +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/shred.1 b/src/apps/bin/coreutils-5.0/man/shred.1 new file mode 100644 index 0000000000..d726577555 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/shred.1 @@ -0,0 +1,98 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH SHRED "1" "March 2003" "shred (coreutils) 5.0" "User Commands" +.SH NAME +shred \- delete a file securely, first overwriting it to hide its contents +.SH SYNOPSIS +.B shred +[\fIOPTIONS\fR] \fIFILE \fR[...] +.SH DESCRIPTION +.\" Add any additional description here +.PP +Overwrite the specified FILE(s) repeatedly, in order to make it harder +for even very expensive hardware probing to recover the data. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-f\fR, \fB\-\-force\fR +change permissions to allow writing if necessary +.TP +\fB\-n\fR, \fB\-\-iterations\fR=\fIN\fR +Overwrite N times instead of the default (25) +.TP +\fB\-s\fR, \fB\-\-size\fR=\fIN\fR +shred this many bytes (suffixes like K, M, G accepted) +.TP +\fB\-u\fR, \fB\-\-remove\fR +truncate and remove file after overwriting +.TP +\fB\-v\fR, \fB\-\-verbose\fR +show progress +.TP +\fB\-x\fR, \fB\-\-exact\fR +do not round file sizes up to the next full block; +.IP +this is the default for non-regular files +.TP +\fB\-z\fR, \fB\-\-zero\fR +add a final overwrite with zeros to hide shredding +.TP +- +shred standard output +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +Delete FILE(s) if \fB\-\-remove\fR (-u) is specified. The default is not to remove +the files because it is common to operate on device files like /dev/hda, +and those files usually should not be removed. When operating on regular +files, most people use the \fB\-\-remove\fR option. +.PP +CAUTION: Note that shred relies on a very important assumption: +that the filesystem overwrites data in place. This is the traditional +way to do things, but many modern filesystem designs do not satisfy this +assumption. The following are examples of filesystems on which shred is +not effective: +.PP +* log-structured or journaled filesystems, such as those supplied with +.IP +AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.) +.PP +* filesystems that write redundant data and carry on even if some writes +.IP +fail, such as RAID-based filesystems +.PP +* filesystems that make snapshots, such as Network Appliance's NFS server +.PP +* filesystems that cache in temporary locations, such as NFS +.IP +version 3 clients +.PP +* compressed filesystems +.PP +In addition, file system backups and remote mirrors may contain copies +of the file that cannot be removed, and that will allow a shredded file +to be recovered later. +.SH AUTHOR +Written by Colin Plumb. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B shred +is maintained as a Texinfo manual. If the +.B info +and +.B shred +programs are properly installed at your site, the command +.IP +.B info shred +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/shred.x b/src/apps/bin/coreutils-5.0/man/shred.x new file mode 100644 index 0000000000..415f286d28 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/shred.x @@ -0,0 +1,4 @@ +[NAME] +shred \- delete a file securely, first overwriting it to hide its contents +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/sleep.1 b/src/apps/bin/coreutils-5.0/man/sleep.1 new file mode 100644 index 0000000000..8644a65cc5 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/sleep.1 @@ -0,0 +1,44 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH SLEEP "1" "March 2003" "sleep 5.0" "User Commands" +.SH NAME +sleep \- delay for a specified amount of time +.SH SYNOPSIS +.B sleep +\fINUMBER\fR[\fISUFFIX\fR]... +.br +.B sleep +\fIOPTION\fR +.SH DESCRIPTION +.\" Add any additional description here +.PP +Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default), +`m' for minutes, `h' for hours or `d' for days. Unlike most implementations +that require NUMBER be an integer, here NUMBER may be an arbitrary floating +point number. +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by Jim Meyering and Paul Eggert. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B sleep +is maintained as a Texinfo manual. If the +.B info +and +.B sleep +programs are properly installed at your site, the command +.IP +.B info sleep +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/sleep.x b/src/apps/bin/coreutils-5.0/man/sleep.x new file mode 100644 index 0000000000..c239a5a5f9 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/sleep.x @@ -0,0 +1,4 @@ +[NAME] +sleep \- delay for a specified amount of time +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/sort.1 b/src/apps/bin/coreutils-5.0/man/sort.1 new file mode 100644 index 0000000000..12bc0b4a1f --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/sort.1 @@ -0,0 +1,113 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH SORT "1" "March 2003" "sort (coreutils) 5.0" "User Commands" +.SH NAME +sort \- sort lines of text files +.SH SYNOPSIS +.B sort +[\fIOPTION\fR]... [\fIFILE\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Write sorted concatenation of all FILE(s) to standard output. +.PP +Ordering options: +.PP +Mandatory arguments to long options are mandatory for short options too. +.HP +\fB\-b\fR, \fB\-\-ignore\-leading\-blanks\fR ignore leading blanks +.TP +\fB\-d\fR, \fB\-\-dictionary\-order\fR +consider only blanks and alphanumeric characters +.TP +\fB\-f\fR, \fB\-\-ignore\-case\fR +fold lower case to upper case characters +.TP +\fB\-g\fR, \fB\-\-general\-numeric\-sort\fR +compare according to general numerical value +.TP +\fB\-i\fR, \fB\-\-ignore\-nonprinting\fR +consider only printable characters +.TP +\fB\-M\fR, \fB\-\-month\-sort\fR +compare (unknown) < `JAN' < ... < `DEC' +.TP +\fB\-n\fR, \fB\-\-numeric\-sort\fR +compare according to string numerical value +.TP +\fB\-r\fR, \fB\-\-reverse\fR +reverse the result of comparisons +.PP +Other options: +.TP +\fB\-c\fR, \fB\-\-check\fR +check whether input is sorted; do not sort +.TP +\fB\-k\fR, \fB\-\-key\fR=\fIPOS1[\fR,POS2] +start a key at POS1, end it at POS 2 (origin 1) +.TP +\fB\-m\fR, \fB\-\-merge\fR +merge already sorted files; do not sort +.TP +\fB\-o\fR, \fB\-\-output\fR=\fIFILE\fR +write result to FILE instead of standard output +.TP +\fB\-s\fR, \fB\-\-stable\fR +stabilize sort by disabling last-resort comparison +.TP +\fB\-S\fR, \fB\-\-buffer\-size\fR=\fISIZE\fR +use SIZE for main memory buffer +.HP +\fB\-t\fR, \fB\-\-field\-separator\fR=\fISEP\fR use SEP instead of non- to whitespace transition +.TP +\fB\-T\fR, \fB\-\-temporary\-directory\fR=\fIDIR\fR +use DIR for temporaries, not $TMPDIR or /tmp +multiple options specify multiple directories +.TP +\fB\-u\fR, \fB\-\-unique\fR +with \fB\-c\fR: check for strict ordering +otherwise: output only the first of an equal run +.TP +\fB\-z\fR, \fB\-\-zero\-terminated\fR +end lines with 0 byte, not newline +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +POS is F[.C][OPTS], where F is the field number and C the character position +in the field. OPTS is one or more single-letter ordering options, which +override global ordering options for that key. If no key is given, use the +entire line as the key. +.PP +SIZE may be followed by the following multiplicative suffixes: +% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y. +.PP +With no FILE, or when FILE is -, read standard input. +.PP +*** WARNING *** +The locale specified by the environment affects sort order. +Set LC_ALL=C to get the traditional sort order that uses +native byte values. +.SH AUTHOR +Written by Mike Haertel and Paul Eggert. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B sort +is maintained as a Texinfo manual. If the +.B info +and +.B sort +programs are properly installed at your site, the command +.IP +.B info sort +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/sort.x b/src/apps/bin/coreutils-5.0/man/sort.x new file mode 100644 index 0000000000..5c171ddf2c --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/sort.x @@ -0,0 +1,4 @@ +[NAME] +sort \- sort lines of text files +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/split.1 b/src/apps/bin/coreutils-5.0/man/split.1 new file mode 100644 index 0000000000..9c3fa4836c --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/split.1 @@ -0,0 +1,59 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH SPLIT "1" "March 2003" "split (coreutils) 5.0" "User Commands" +.SH NAME +split \- split a file into pieces +.SH SYNOPSIS +.B split +[\fIOPTION\fR] [\fIINPUT \fR[\fIPREFIX\fR]] +.SH DESCRIPTION +.\" Add any additional description here +.PP +Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default +PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-a\fR, \fB\-\-suffix\-length\fR=\fIN\fR +use suffixes of length N (default 2) +.TP +\fB\-b\fR, \fB\-\-bytes\fR=\fISIZE\fR +put SIZE bytes per output file +.TP +\fB\-C\fR, \fB\-\-line\-bytes\fR=\fISIZE\fR +put at most SIZE bytes of lines per output file +.TP +\fB\-l\fR, \fB\-\-lines\fR=\fINUMBER\fR +put NUMBER lines per output file +.TP +\fB\-\-verbose\fR +print a diagnostic to standard error just +before each output file is opened +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg. +.SH AUTHOR +Written by Torbjorn Granlund and Richard M. Stallman. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B split +is maintained as a Texinfo manual. If the +.B info +and +.B split +programs are properly installed at your site, the command +.IP +.B info split +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/split.x b/src/apps/bin/coreutils-5.0/man/split.x new file mode 100644 index 0000000000..6e98e7f7bc --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/split.x @@ -0,0 +1,4 @@ +[NAME] +split \- split a file into pieces +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/stat.1 b/src/apps/bin/coreutils-5.0/man/stat.1 new file mode 100644 index 0000000000..c88404e3d7 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/stat.1 @@ -0,0 +1,165 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH STAT "1" "March 2003" "stat (coreutils) 5.0" "User Commands" +.SH NAME +stat \- display file or filesystem status +.SH SYNOPSIS +.B stat +[\fIOPTION\fR] \fIFILE\fR... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Display file or filesystem status. +.TP +\fB\-f\fR, \fB\-\-filesystem\fR +display filesystem status instead of file status +.TP +\fB\-c\fR \fB\-\-format\fR=\fIFORMAT\fR +use the specified FORMAT instead of the default +.TP +\fB\-L\fR, \fB\-\-dereference\fR +follow links +.TP +\fB\-t\fR, \fB\-\-terse\fR +print the information in terse form +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +The valid format sequences for files (without \fB\-\-filesystem\fR): +.TP +%A +Access rights in human readable form +.TP +%a +Access rights in octal +.TP +%B +The size in bytes of each block reported by `%b' +.TP +%b +Number of blocks allocated (see %B) +.TP +%D +Device number in hex +.TP +%d +Device number in decimal +.TP +%F +File type +.TP +%f +Raw mode in hex +.TP +%G +Group name of owner +.TP +%g +Group ID of owner +.TP +%h +Number of hard links +.TP +%i +Inode number +.TP +%N +Quoted File name with dereference if symbolic link +.TP +%n +File name +.TP +%o +IO block size +.TP +%s +Total size, in bytes +.TP +%T +Minor device type in hex +.TP +%t +Major device type in hex +.TP +%U +User name of owner +.TP +%u +User ID of owner +.TP +%X +Time of last access as seconds since Epoch +.TP +%x +Time of last access +.TP +%Y +Time of last modification as seconds since Epoch +.TP +%y +Time of last modification +.TP +%Z +Time of last change as seconds since Epoch +.TP +%z +Time of last change +.PP +Valid format sequences for file systems: +.TP +%a +Free blocks available to non-superuser +.TP +%b +Total data blocks in file system +.TP +%c +Total file nodes in file system +.TP +%d +Free file nodes in file system +.TP +%f +Free blocks in file system +.TP +%i +File System id in hex +.TP +%l +Maximum length of filenames +.TP +%n +File name +.TP +%s +Optimal transfer block size +.TP +%T +Type in human readable form +.TP +%t +Type in hex +.SH AUTHOR +Written by Michael Meskes. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B stat +is maintained as a Texinfo manual. If the +.B info +and +.B stat +programs are properly installed at your site, the command +.IP +.B info stat +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/stat.x b/src/apps/bin/coreutils-5.0/man/stat.x new file mode 100644 index 0000000000..86645a103d --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/stat.x @@ -0,0 +1,4 @@ +[NAME] +stat \- display file or filesystem status +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/stty.1 b/src/apps/bin/coreutils-5.0/man/stty.1 new file mode 100644 index 0000000000..419df45a5c --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/stty.1 @@ -0,0 +1,401 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH STTY "1" "March 2003" "stty 5.0" "User Commands" +.SH NAME +stty \- change and print terminal line settings +.SH SYNOPSIS +.B stty +[\fI-F DEVICE\fR] [\fI--file=DEVICE\fR] [\fISETTING\fR]... +.br +.B stty +[\fI-F DEVICE\fR] [\fI--file=DEVICE\fR] [\fI-a|--all\fR] +.br +.B stty +[\fI-F DEVICE\fR] [\fI--file=DEVICE\fR] [\fI-g|--save\fR] +.SH DESCRIPTION +.\" Add any additional description here +.PP +Print or change terminal characteristics. +.TP +\fB\-a\fR, \fB\-\-all\fR +print all current settings in human-readable form +.TP +\fB\-g\fR, \fB\-\-save\fR +print all current settings in a stty-readable form +.TP +\fB\-F\fR, \fB\-\-file\fR=\fIDEVICE\fR +open and use the specified DEVICE instead of stdin +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +Optional - before SETTING indicates negation. An * marks non-POSIX +settings. The underlying system defines which settings are available. +.SS "Special characters:" +.TP +* dsusp CHAR +CHAR will send a terminal stop signal once input flushed +.TP +eof CHAR +CHAR will send an end of file (terminate the input) +.TP +eol CHAR +CHAR will end the line +.TP +* eol2 CHAR +alternate CHAR for ending the line +.TP +erase CHAR +CHAR will erase the last character typed +.TP +intr CHAR +CHAR will send an interrupt signal +.TP +kill CHAR +CHAR will erase the current line +.TP +* lnext CHAR +CHAR will enter the next character quoted +.TP +quit CHAR +CHAR will send a quit signal +.TP +* rprnt CHAR +CHAR will redraw the current line +.TP +start CHAR +CHAR will restart the output after stopping it +.TP +stop CHAR +CHAR will stop the output +.TP +susp CHAR +CHAR will send a terminal stop signal +.TP +* swtch CHAR +CHAR will switch to a different shell layer +.TP +* werase CHAR +CHAR will erase the last word typed +.SS "Special settings:" +.TP +N +set the input and output speeds to N bauds +.TP +* cols N +tell the kernel that the terminal has N columns +.TP +* columns N +same as cols N +.TP +ispeed N +set the input speed to N +.TP +* line N +use line discipline N +.TP +min N +with \fB\-icanon\fR, set N characters minimum for a completed read +.TP +ospeed N +set the output speed to N +.TP +* rows N +tell the kernel that the terminal has N rows +.TP +* size +print the number of rows and columns according to the kernel +.TP +speed +print the terminal speed +.TP +time N +with \fB\-icanon\fR, set read timeout of N tenths of a second +.SS "Control settings:" +.TP +[-]clocal +disable modem control signals +.TP +[-]cread +allow input to be received +.TP +* [-]crtscts +enable RTS/CTS handshaking +.TP +csN +set character size to N bits, N in [5..8] +.TP +[-]cstopb +use two stop bits per character (one with `-') +.TP +[-]hup +send a hangup signal when the last process closes the tty +.TP +[-]hupcl +same as [-]hup +.TP +[-]parenb +generate parity bit in output and expect parity bit in input +.TP +[-]parodd +set odd parity (even with `-') +.SS "Input settings:" +.TP +[-]brkint +breaks cause an interrupt signal +.TP +[-]icrnl +translate carriage return to newline +.TP +[-]ignbrk +ignore break characters +.TP +[-]igncr +ignore carriage return +.TP +[-]ignpar +ignore characters with parity errors +.TP +* [-]imaxbel +beep and do not flush a full input buffer on a character +.TP +[-]inlcr +translate newline to carriage return +.TP +[-]inpck +enable input parity checking +.TP +[-]istrip +clear high (8th) bit of input characters +.TP +* [-]iuclc +translate uppercase characters to lowercase +.TP +* [-]ixany +let any character restart output, not only start character +.TP +[-]ixoff +enable sending of start/stop characters +.TP +[-]ixon +enable XON/XOFF flow control +.TP +[-]parmrk +mark parity errors (with a 255-0-character sequence) +.TP +[-]tandem +same as [-]ixoff +.SS "Output settings:" +.TP +* bsN +backspace delay style, N in [0..1] +.TP +* crN +carriage return delay style, N in [0..3] +.TP +* ffN +form feed delay style, N in [0..1] +.TP +* nlN +newline delay style, N in [0..1] +.TP +* [-]ocrnl +translate carriage return to newline +.TP +* [-]ofdel +use delete characters for fill instead of null characters +.TP +* [-]ofill +use fill (padding) characters instead of timing for delays +.TP +* [-]olcuc +translate lowercase characters to uppercase +.TP +* [-]onlcr +translate newline to carriage return-newline +.TP +* [-]onlret +newline performs a carriage return +.TP +* [-]onocr +do not print carriage returns in the first column +.TP +[-]opost +postprocess output +.TP +* tabN +horizontal tab delay style, N in [0..3] +.TP +* tabs +same as tab0 +.TP +* \fB\-tabs\fR +same as tab3 +.TP +* vtN +vertical tab delay style, N in [0..1] +.SS "Local settings:" +.TP +[-]crterase +echo erase characters as backspace-space-backspace +.TP +* crtkill +kill all line by obeying the echoprt and echoe settings +.TP +* \fB\-crtkill\fR +kill all line by obeying the echoctl and echok settings +.TP +* [-]ctlecho +echo control characters in hat notation (`^c') +.TP +[-]echo +echo input characters +.TP +* [-]echoctl +same as [-]ctlecho +.TP +[-]echoe +same as [-]crterase +.TP +[-]echok +echo a newline after a kill character +.TP +* [-]echoke +same as [-]crtkill +.TP +[-]echonl +echo newline even if not echoing other characters +.TP +* [-]echoprt +echo erased characters backward, between `\e' and '/' +.TP +[-]icanon +enable erase, kill, werase, and rprnt special characters +.TP +[-]iexten +enable non-POSIX special characters +.TP +[-]isig +enable interrupt, quit, and suspend special characters +.TP +[-]noflsh +disable flushing after interrupt and quit special characters +.TP +* [-]prterase +same as [-]echoprt +.TP +* [-]tostop +stop background jobs that try to write to the terminal +.TP +* [-]xcase +with icanon, escape with `\e' for uppercase characters +.SS "Combination settings:" +.TP +* [-]LCASE +same as [-]lcase +.TP +cbreak +same as \fB\-icanon\fR +.TP +\fB\-cbreak\fR +same as icanon +.TP +cooked +same as brkint ignpar istrip icrnl ixon opost isig +icanon, eof and eol characters to their default values +.TP +\fB\-cooked\fR +same as raw +.TP +crt +same as echoe echoctl echoke +.TP +dec +same as echoe echoctl echoke \fB\-ixany\fR intr ^c erase 0177 +kill ^u +.TP +* [-]decctlq +same as [-]ixany +.TP +ek +erase and kill characters to their default values +.TP +evenp +same as parenb \fB\-parodd\fR cs7 +.TP +\fB\-evenp\fR +same as \fB\-parenb\fR cs8 +.TP +* [-]lcase +same as xcase iuclc olcuc +.TP +litout +same as \fB\-parenb\fR \fB\-istrip\fR \fB\-opost\fR cs8 +.TP +\fB\-litout\fR +same as parenb istrip opost cs7 +.TP +nl +same as \fB\-icrnl\fR \fB\-onlcr\fR +.TP +\fB\-nl\fR +same as icrnl \fB\-inlcr\fR \fB\-igncr\fR onlcr \fB\-ocrnl\fR \fB\-onlret\fR +.TP +oddp +same as parenb parodd cs7 +.TP +\fB\-oddp\fR +same as \fB\-parenb\fR cs8 +.TP +[-]parity +same as [-]evenp +.TP +pass8 +same as \fB\-parenb\fR \fB\-istrip\fR cs8 +.TP +\fB\-pass8\fR +same as parenb istrip cs7 +.TP +raw +same as \fB\-ignbrk\fR \fB\-brkint\fR \fB\-ignpar\fR \fB\-parmrk\fR \fB\-inpck\fR \fB\-istrip\fR +\fB\-inlcr\fR \fB\-igncr\fR \fB\-icrnl\fR \fB\-ixon\fR \fB\-ixoff\fR \fB\-iuclc\fR \fB\-ixany\fR +\fB\-imaxbel\fR \fB\-opost\fR \fB\-isig\fR \fB\-icanon\fR \fB\-xcase\fR min 1 time 0 +.TP +\fB\-raw\fR +same as cooked +.TP +sane +same as cread \fB\-ignbrk\fR brkint \fB\-inlcr\fR \fB\-igncr\fR icrnl +\fB\-ixoff\fR \fB\-iuclc\fR \fB\-ixany\fR imaxbel opost \fB\-olcuc\fR \fB\-ocrnl\fR onlcr +\fB\-onocr\fR \fB\-onlret\fR \fB\-ofill\fR \fB\-ofdel\fR nl0 cr0 tab0 bs0 vt0 ff0 +isig icanon iexten echo echoe echok \fB\-echonl\fR \fB\-noflsh\fR +\fB\-xcase\fR \fB\-tostop\fR \fB\-echoprt\fR echoctl echoke, all special +characters to their default values. +.PP +Handle the tty line connected to standard input. Without arguments, +prints baud rate, line discipline, and deviations from stty sane. In +settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or +127; special values ^- or undef used to disable special characters. +.SH AUTHOR +Written by David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B stty +is maintained as a Texinfo manual. If the +.B info +and +.B stty +programs are properly installed at your site, the command +.IP +.B info stty +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/stty.x b/src/apps/bin/coreutils-5.0/man/stty.x new file mode 100644 index 0000000000..f3e1e1f0a5 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/stty.x @@ -0,0 +1,4 @@ +[NAME] +stty \- change and print terminal line settings +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/su.1 b/src/apps/bin/coreutils-5.0/man/su.1 new file mode 100644 index 0000000000..3f9f1b79cd --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/su.1 @@ -0,0 +1,58 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH SU "1" "March 2003" "su (coreutils) 5.0" "User Commands" +.SH NAME +su \- run a shell with substitute user and group IDs +.SH SYNOPSIS +.B su +[\fIOPTION\fR]... [\fI-\fR] [\fIUSER \fR[\fIARG\fR]...] +.SH DESCRIPTION +.\" Add any additional description here +.PP +Change the effective user id and group id to that of USER. +.TP +-, \fB\-l\fR, \fB\-\-login\fR +make the shell a login shell +.TP +\fB\-c\fR, \fB\-\-commmand\fR=\fICOMMAND\fR +pass a single COMMAND to the shell with \fB\-c\fR +.TP +\fB\-f\fR, \fB\-\-fast\fR +pass \fB\-f\fR to the shell (for csh or tcsh) +.TP +\fB\-m\fR, \fB\-\-preserve\-environment\fR +do not reset environment variables +.TP +\fB\-p\fR +same as \fB\-m\fR +.TP +\fB\-s\fR, \fB\-\-shell\fR=\fISHELL\fR +run SHELL if /etc/shells allows it +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +A mere - implies \fB\-l\fR. If USER not given, assume root. +.SH AUTHOR +Written by David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B su +is maintained as a Texinfo manual. If the +.B info +and +.B su +programs are properly installed at your site, the command +.IP +.B info su +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/su.x b/src/apps/bin/coreutils-5.0/man/su.x new file mode 100644 index 0000000000..b368dd6577 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/su.x @@ -0,0 +1,4 @@ +[NAME] +su \- run a shell with substitute user and group IDs +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/sum.1 b/src/apps/bin/coreutils-5.0/man/sum.1 new file mode 100644 index 0000000000..89a373cc07 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/sum.1 @@ -0,0 +1,46 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH SUM "1" "March 2003" "sum (coreutils) 5.0" "User Commands" +.SH NAME +sum \- checksum and count the blocks in a file +.SH SYNOPSIS +.B sum +[\fIOPTION\fR]... [\fIFILE\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Print checksum and block counts for each FILE. +.TP +\fB\-r\fR +defeat \fB\-s\fR, use BSD sum algorithm, use 1K blocks +.TP +\fB\-s\fR, \fB\-\-sysv\fR +use System V sum algorithm, use 512 bytes blocks +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +With no FILE, or when FILE is -, read standard input. +.SH AUTHOR +Written by Kayvan Aghaiepour and David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B sum +is maintained as a Texinfo manual. If the +.B info +and +.B sum +programs are properly installed at your site, the command +.IP +.B info sum +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/sum.x b/src/apps/bin/coreutils-5.0/man/sum.x new file mode 100644 index 0000000000..a03b9cc5d0 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/sum.x @@ -0,0 +1,4 @@ +[NAME] +sum \- checksum and count the blocks in a file +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/sync.1 b/src/apps/bin/coreutils-5.0/man/sync.1 new file mode 100644 index 0000000000..aa245f7cd2 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/sync.1 @@ -0,0 +1,38 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH SYNC "1" "March 2003" "sync (coreutils) 5.0" "User Commands" +.SH NAME +sync \- flush filesystem buffers +.SH SYNOPSIS +.B sync +[\fIOPTION\fR] +.SH DESCRIPTION +.\" Add any additional description here +.PP +Force changed blocks to disk, update the super block. +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by Jim Meyering. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B sync +is maintained as a Texinfo manual. If the +.B info +and +.B sync +programs are properly installed at your site, the command +.IP +.B info sync +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/sync.x b/src/apps/bin/coreutils-5.0/man/sync.x new file mode 100644 index 0000000000..e6b38de1a4 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/sync.x @@ -0,0 +1,4 @@ +[NAME] +sync \- flush filesystem buffers +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/tac.1 b/src/apps/bin/coreutils-5.0/man/tac.1 new file mode 100644 index 0000000000..21fcd01809 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/tac.1 @@ -0,0 +1,50 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH TAC "1" "March 2003" "tac (coreutils) 5.0" "User Commands" +.SH NAME +tac \- concatenate and print files in reverse +.SH SYNOPSIS +.B tac +[\fIOPTION\fR]... [\fIFILE\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Write each FILE to standard output, last line first. +With no FILE, or when FILE is -, read standard input. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-b\fR, \fB\-\-before\fR +attach the separator before instead of after +.TP +\fB\-r\fR, \fB\-\-regex\fR +interpret the separator as a regular expression +.TP +\fB\-s\fR, \fB\-\-separator\fR=\fISTRING\fR +use STRING as the separator instead of newline +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by Jay Lepreau and David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B tac +is maintained as a Texinfo manual. If the +.B info +and +.B tac +programs are properly installed at your site, the command +.IP +.B info tac +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/tac.x b/src/apps/bin/coreutils-5.0/man/tac.x new file mode 100644 index 0000000000..d943afaa53 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/tac.x @@ -0,0 +1,4 @@ +[NAME] +tac \- concatenate and print files in reverse +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/tail.1 b/src/apps/bin/coreutils-5.0/man/tail.1 new file mode 100644 index 0000000000..c126dc4ad5 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/tail.1 @@ -0,0 +1,93 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH TAIL "1" "March 2003" "tail (coreutils) 5.0" "User Commands" +.SH NAME +tail \- output the last part of files +.SH SYNOPSIS +.B tail +[\fIOPTION\fR]... [\fIFILE\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Print the last 10 lines of each FILE to standard output. +With more than one FILE, precede each with a header giving the file name. +With no FILE, or when FILE is -, read standard input. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-\-retry\fR +keep trying to open a file even if it is +inaccessible when tail starts or if it becomes +inaccessible later \fB\-\-\fR useful only with \fB\-f\fR +.TP +\fB\-c\fR, \fB\-\-bytes\fR=\fIN\fR +output the last N bytes +.TP +\fB\-f\fR, \fB\-\-follow[=\fR{name|descriptor}] +output appended data as the file grows; +\fB\-f\fR, \fB\-\-follow\fR, and \fB\-\-follow\fR=\fIdescriptor\fR are +equivalent +.TP +\fB\-F\fR +same as \fB\-\-follow\fR=\fIname\fR \fB\-\-retry\fR +.TP +\fB\-n\fR, \fB\-\-lines\fR=\fIN\fR +output the last N lines, instead of the last 10 +.TP +\fB\-\-max\-unchanged\-stats\fR=\fIN\fR +with \fB\-\-follow\fR=\fIname\fR, reopen a FILE which has not +changed size after N (default 5) iterations +to see if it has been unlinked or renamed +(this is the usual case of rotated log files) +.TP +\fB\-\-pid\fR=\fIPID\fR +with \fB\-f\fR, terminate after process ID, PID dies +.TP +\fB\-q\fR, \fB\-\-quiet\fR, \fB\-\-silent\fR +never output headers giving file names +.TP +\fB\-s\fR, \fB\-\-sleep\-interval\fR=\fIS\fR +with \fB\-f\fR, sleep for approximately S seconds +(default 1.0) between iterations. +.TP +\fB\-v\fR, \fB\-\-verbose\fR +always output headers giving file names +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +If the first character of N (the number of bytes or lines) is a `+', +print beginning with the Nth item from the start of each file, otherwise, +print the last N items in the file. N may have a multiplier suffix: +b for 512, k for 1024, m for 1048576 (1 Meg). +.PP +With \fB\-\-follow\fR (-f), tail defaults to following the file descriptor, which +means that even if a tail'ed file is renamed, tail will continue to track +its end. This default behavior is not desirable when you really want to +track the actual name of the file, not the file descriptor (e.g., log +rotation). Use \fB\-\-follow\fR=\fIname\fR in that case. That causes tail to track the +named file by reopening it periodically to see if it has been removed and +recreated by some other program. +.SH AUTHOR +Written by Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B tail +is maintained as a Texinfo manual. If the +.B info +and +.B tail +programs are properly installed at your site, the command +.IP +.B info tail +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/tail.x b/src/apps/bin/coreutils-5.0/man/tail.x new file mode 100644 index 0000000000..2ede04c829 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/tail.x @@ -0,0 +1,4 @@ +[NAME] +tail \- output the last part of files +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/tee.1 b/src/apps/bin/coreutils-5.0/man/tee.1 new file mode 100644 index 0000000000..aa7267cbe1 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/tee.1 @@ -0,0 +1,44 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH TEE "1" "March 2003" "tee (coreutils) 5.0" "User Commands" +.SH NAME +tee \- read from standard input and write to standard output and files +.SH SYNOPSIS +.B tee +[\fIOPTION\fR]... [\fIFILE\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Copy standard input to each FILE, and also to standard output. +.TP +\fB\-a\fR, \fB\-\-append\fR +append to the given FILEs, do not overwrite +.TP +\fB\-i\fR, \fB\-\-ignore\-interrupts\fR +ignore interrupt signals +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by Mike Parker, Richard M. Stallman, and David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B tee +is maintained as a Texinfo manual. If the +.B info +and +.B tee +programs are properly installed at your site, the command +.IP +.B info tee +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/tee.x b/src/apps/bin/coreutils-5.0/man/tee.x new file mode 100644 index 0000000000..e5854cff45 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/tee.x @@ -0,0 +1,4 @@ +[NAME] +tee \- read from standard input and write to standard output and files +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/test.1 b/src/apps/bin/coreutils-5.0/man/test.1 new file mode 100644 index 0000000000..2a58ecad9a --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/test.1 @@ -0,0 +1,157 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH TEST "1" "March 2003" "test 5.0" "User Commands" +.SH NAME +test \- check file types and compare values +.SH SYNOPSIS +.B test +\fIEXPRESSION\fR +.br +.B [ +\fIEXPRESSION \fR] +.br +.B test +\fIOPTION\fR +.SH DESCRIPTION +.\" Add any additional description here +.PP +Exit with the status determined by EXPRESSION. +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +EXPRESSION is true or false and sets exit status. It is one of: +.TP +( EXPRESSION ) +EXPRESSION is true +.TP +! EXPRESSION +EXPRESSION is false +.TP +EXPRESSION1 \fB\-a\fR EXPRESSION2 +both EXPRESSION1 and EXPRESSION2 are true +.TP +EXPRESSION1 \fB\-o\fR EXPRESSION2 +either EXPRESSION1 or EXPRESSION2 is true +.TP +[-n] STRING +the length of STRING is nonzero +.TP +\fB\-z\fR STRING +the length of STRING is zero +.TP +STRING1 = STRING2 +the strings are equal +.TP +STRING1 != STRING2 +the strings are not equal +.TP +INTEGER1 \fB\-eq\fR INTEGER2 +INTEGER1 is equal to INTEGER2 +.TP +INTEGER1 \fB\-ge\fR INTEGER2 +INTEGER1 is greater than or equal to INTEGER2 +.TP +INTEGER1 \fB\-gt\fR INTEGER2 +INTEGER1 is greater than INTEGER2 +.TP +INTEGER1 \fB\-le\fR INTEGER2 +INTEGER1 is less than or equal to INTEGER2 +.TP +INTEGER1 \fB\-lt\fR INTEGER2 +INTEGER1 is less than INTEGER2 +.TP +INTEGER1 \fB\-ne\fR INTEGER2 +INTEGER1 is not equal to INTEGER2 +.TP +FILE1 \fB\-ef\fR FILE2 +FILE1 and FILE2 have the same device and inode numbers +.TP +FILE1 \fB\-nt\fR FILE2 +FILE1 is newer (modification date) than FILE2 +.TP +FILE1 \fB\-ot\fR FILE2 +FILE1 is older than FILE2 +.TP +\fB\-b\fR FILE +FILE exists and is block special +.TP +\fB\-c\fR FILE +FILE exists and is character special +.TP +\fB\-d\fR FILE +FILE exists and is a directory +.TP +\fB\-e\fR FILE +FILE exists +.TP +\fB\-f\fR FILE +FILE exists and is a regular file +.TP +\fB\-g\fR FILE +FILE exists and is set-group-ID +.TP +\fB\-h\fR FILE +FILE exists and is a symbolic link (same as \fB\-L\fR) +.TP +\fB\-G\fR FILE +FILE exists and is owned by the effective group ID +.TP +\fB\-k\fR FILE +FILE exists and has its sticky bit set +.TP +\fB\-L\fR FILE +FILE exists and is a symbolic link (same as \fB\-h\fR) +.TP +\fB\-O\fR FILE +FILE exists and is owned by the effective user ID +.TP +\fB\-p\fR FILE +FILE exists and is a named pipe +.TP +\fB\-r\fR FILE +FILE exists and is readable +.TP +\fB\-s\fR FILE +FILE exists and has a size greater than zero +.TP +\fB\-S\fR FILE +FILE exists and is a socket +.TP +\fB\-t\fR [FD] +file descriptor FD (stdout by default) is opened on a terminal +.TP +\fB\-u\fR FILE +FILE exists and its set-user-ID bit is set +.TP +\fB\-w\fR FILE +FILE exists and is writable +.TP +\fB\-x\fR FILE +FILE exists and is executable +.PP +Beware that parentheses need to be escaped (e.g., by backslashes) for shells. +INTEGER may also be \fB\-l\fR STRING, which evaluates to the length of STRING. +.SH AUTHOR +Written by FIXME: ksb and mjb. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B test +is maintained as a Texinfo manual. If the +.B info +and +.B test +programs are properly installed at your site, the command +.IP +.B info test +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/test.x b/src/apps/bin/coreutils-5.0/man/test.x new file mode 100644 index 0000000000..8d5bcff526 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/test.x @@ -0,0 +1,4 @@ +[NAME] +test \- check file types and compare values +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/touch.1 b/src/apps/bin/coreutils-5.0/man/touch.1 new file mode 100644 index 0000000000..9f4e85f7bb --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/touch.1 @@ -0,0 +1,67 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH TOUCH "1" "March 2003" "touch (coreutils) 5.0" "User Commands" +.SH NAME +touch \- change file timestamps +.SH SYNOPSIS +.B touch +[\fIOPTION\fR]... \fIFILE\fR... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Update the access and modification times of each FILE to the current time. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-a\fR +change only the access time +.TP +\fB\-c\fR, \fB\-\-no\-create\fR +do not create any files +.TP +\fB\-d\fR, \fB\-\-date\fR=\fISTRING\fR +parse STRING and use it instead of current time +.TP +\fB\-f\fR +(ignored) +.TP +\fB\-m\fR +change only the modification time +.TP +\fB\-r\fR, \fB\-\-reference\fR=\fIFILE\fR +use this file's times instead of current time +.TP +\fB\-t\fR STAMP +use [[CC]YY]MMDDhhmm[.ss] instead of current time +.TP +\fB\-\-time\fR=\fIWORD\fR +set time given by WORD: access atime use (same as \fB\-a\fR) +modify mtime (same as \fB\-m\fR) +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +Note that the \fB\-d\fR and \fB\-t\fR options accept different time-date formats. +.SH AUTHOR +Written by Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B touch +is maintained as a Texinfo manual. If the +.B info +and +.B touch +programs are properly installed at your site, the command +.IP +.B info touch +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/touch.x b/src/apps/bin/coreutils-5.0/man/touch.x new file mode 100644 index 0000000000..64b99dfa1c --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/touch.x @@ -0,0 +1,4 @@ +[NAME] +touch \- change file timestamps +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/tr.1 b/src/apps/bin/coreutils-5.0/man/tr.1 new file mode 100644 index 0000000000..6a73b9be9b --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/tr.1 @@ -0,0 +1,140 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH TR "1" "March 2003" "tr (coreutils) 5.0" "User Commands" +.SH NAME +tr \- translate or delete characters +.SH SYNOPSIS +.B tr +[\fIOPTION\fR]... \fISET1 \fR[\fISET2\fR] +.SH DESCRIPTION +.\" Add any additional description here +.PP +Translate, squeeze, and/or delete characters from standard input, +writing to standard output. +.TP +\fB\-c\fR, \fB\-\-complement\fR +first complement SET1 +.TP +\fB\-d\fR, \fB\-\-delete\fR +delete characters in SET1, do not translate +.TP +\fB\-s\fR, \fB\-\-squeeze\-repeats\fR +replace each input sequence of a repeated character +that is listed in SET1 with a single occurrence +of that character +.TP +\fB\-t\fR, \fB\-\-truncate\-set1\fR +first truncate SET1 to length of SET2 +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +SETs are specified as strings of characters. Most represent themselves. +Interpreted sequences are: +.TP +\eNNN +character with octal value NNN (1 to 3 octal digits) +.TP +\e\e +backslash +.TP +\ea +audible BEL +.TP +\eb +backspace +.TP +\ef +form feed +.TP +\en +new line +.TP +\er +return +.TP +\et +horizontal tab +.TP +\ev +vertical tab +.TP +CHAR1-CHAR2 +all characters from CHAR1 to CHAR2 in ascending order +.TP +[CHAR*] +in SET2, copies of CHAR until length of SET1 +.TP +[CHAR*REPEAT] +REPEAT copies of CHAR, REPEAT octal if starting with 0 +.TP +[:alnum:] +all letters and digits +.TP +[:alpha:] +all letters +.TP +[:blank:] +all horizontal whitespace +.TP +[:cntrl:] +all control characters +.TP +[:digit:] +all digits +.TP +[:graph:] +all printable characters, not including space +.TP +[:lower:] +all lower case letters +.TP +[:print:] +all printable characters, including space +.TP +[:punct:] +all punctuation characters +.TP +[:space:] +all horizontal or vertical whitespace +.TP +[:upper:] +all upper case letters +.TP +[:xdigit:] +all hexadecimal digits +.TP +[=CHAR=] +all characters which are equivalent to CHAR +.PP +Translation occurs if \fB\-d\fR is not given and both SET1 and SET2 appear. +\fB\-t\fR may be used only when translating. SET2 is extended to length of +SET1 by repeating its last character as necessary. Excess characters +of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to +expand in ascending order; used in SET2 while translating, they may +only be used in pairs to specify case conversion. \fB\-s\fR uses SET1 if not +translating nor deleting; else squeezing uses SET2 and occurs after +translation or deletion. +.SH AUTHOR +Written by Jim Meyering. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B tr +is maintained as a Texinfo manual. If the +.B info +and +.B tr +programs are properly installed at your site, the command +.IP +.B info tr +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/tr.x b/src/apps/bin/coreutils-5.0/man/tr.x new file mode 100644 index 0000000000..f28f1b0d61 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/tr.x @@ -0,0 +1,4 @@ +[NAME] +tr \- translate or delete characters +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/true.1 b/src/apps/bin/coreutils-5.0/man/true.1 new file mode 100644 index 0000000000..87033ca8a7 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/true.1 @@ -0,0 +1,43 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH TRUE "1" "March 2003" "true 5.0" "User Commands" +.SH NAME +true \- do nothing, successfully +.SH SYNOPSIS +.B true +[\fIignored command line arguments\fR] +.br +.B true +\fIOPTION\fR +.SH DESCRIPTION +.\" Add any additional description here +.PP +Exit with a status code indicating success. +.PP +These option names may not be abbreviated. +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by Jim Meyering. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B true +is maintained as a Texinfo manual. If the +.B info +and +.B true +programs are properly installed at your site, the command +.IP +.B info true +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/true.x b/src/apps/bin/coreutils-5.0/man/true.x new file mode 100644 index 0000000000..8eb4151382 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/true.x @@ -0,0 +1,4 @@ +[NAME] +true \- do nothing, successfully +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/tsort.1 b/src/apps/bin/coreutils-5.0/man/tsort.1 new file mode 100644 index 0000000000..39ff0f37bb --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/tsort.1 @@ -0,0 +1,39 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH TSORT "1" "March 2003" "tsort (coreutils) 5.0" "User Commands" +.SH NAME +tsort \- perform topological sort +.SH SYNOPSIS +.B tsort +[\fIOPTION\fR] [\fIFILE\fR] +.SH DESCRIPTION +.\" Add any additional description here +.PP +Write totally ordered list consistent with the partial ordering in FILE. +With no FILE, or when FILE is -, read standard input. +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by Mark Kettenis. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B tsort +is maintained as a Texinfo manual. If the +.B info +and +.B tsort +programs are properly installed at your site, the command +.IP +.B info tsort +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/tsort.x b/src/apps/bin/coreutils-5.0/man/tsort.x new file mode 100644 index 0000000000..8ed3de9c92 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/tsort.x @@ -0,0 +1,4 @@ +[NAME] +tsort \- perform topological sort +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/tty.1 b/src/apps/bin/coreutils-5.0/man/tty.1 new file mode 100644 index 0000000000..ab9e07ceef --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/tty.1 @@ -0,0 +1,41 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH TTY "1" "March 2003" "tty (coreutils) 5.0" "User Commands" +.SH NAME +tty \- print the file name of the terminal connected to standard input +.SH SYNOPSIS +.B tty +[\fIOPTION\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Print the file name of the terminal connected to standard input. +.TP +\fB\-s\fR, \fB\-\-silent\fR, \fB\-\-quiet\fR +print nothing, only return an exit status +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B tty +is maintained as a Texinfo manual. If the +.B info +and +.B tty +programs are properly installed at your site, the command +.IP +.B info tty +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/tty.x b/src/apps/bin/coreutils-5.0/man/tty.x new file mode 100644 index 0000000000..7f0996f724 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/tty.x @@ -0,0 +1,4 @@ +[NAME] +tty \- print the file name of the terminal connected to standard input +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/uname.1 b/src/apps/bin/coreutils-5.0/man/uname.1 new file mode 100644 index 0000000000..cf18c38a5d --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/uname.1 @@ -0,0 +1,65 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH UNAME "1" "March 2003" "uname (coreutils) 5.0" "User Commands" +.SH NAME +uname \- print system information +.SH SYNOPSIS +.B uname +[\fIOPTION\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Print certain system information. With no OPTION, same as \fB\-s\fR. +.TP +\fB\-a\fR, \fB\-\-all\fR +print all information, in the following order: +.TP +\fB\-s\fR, \fB\-\-kernel\-name\fR +print the kernel name +.TP +\fB\-n\fR, \fB\-\-nodename\fR +print the network node hostname +.TP +\fB\-r\fR, \fB\-\-kernel\-release\fR +print the kernel release +.TP +\fB\-v\fR, \fB\-\-kernel\-version\fR +print the kernel version +.TP +\fB\-m\fR, \fB\-\-machine\fR +print the machine hardware name +.TP +\fB\-p\fR, \fB\-\-processor\fR +print the processor type +.TP +\fB\-i\fR, \fB\-\-hardware\-platform\fR +print the hardware platform +.TP +\fB\-o\fR, \fB\-\-operating\-system\fR +print the operating system +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B uname +is maintained as a Texinfo manual. If the +.B info +and +.B uname +programs are properly installed at your site, the command +.IP +.B info uname +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/uname.x b/src/apps/bin/coreutils-5.0/man/uname.x new file mode 100644 index 0000000000..ec38625f83 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/uname.x @@ -0,0 +1,4 @@ +[NAME] +uname \- print system information +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/unexpand.1 b/src/apps/bin/coreutils-5.0/man/unexpand.1 new file mode 100644 index 0000000000..645eaff336 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/unexpand.1 @@ -0,0 +1,52 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH UNEXPAND "1" "March 2003" "unexpand (coreutils) 5.0" "User Commands" +.SH NAME +unexpand \- convert spaces to tabs +.SH SYNOPSIS +.B unexpand +[\fIOPTION\fR]... [\fIFILE\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Convert spaces in each FILE to tabs, writing to standard output. +With no FILE, or when FILE is -, read standard input. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-a\fR, \fB\-\-all\fR +convert all whitespace, instead of just initial whitespace +.HP +\fB\-\-first\-only\fR convert only leading sequences of whitespace (overrides \fB\-a\fR) +.TP +\fB\-t\fR, \fB\-\-tabs\fR=\fIN\fR +have tabs N characters apart instead of 8 (enables \fB\-a\fR) +.TP +\fB\-t\fR, \fB\-\-tabs\fR=\fILIST\fR +use comma separated LIST of tab positions (enables \fB\-a\fR) +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B unexpand +is maintained as a Texinfo manual. If the +.B info +and +.B unexpand +programs are properly installed at your site, the command +.IP +.B info unexpand +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/unexpand.x b/src/apps/bin/coreutils-5.0/man/unexpand.x new file mode 100644 index 0000000000..ac74ed8814 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/unexpand.x @@ -0,0 +1,4 @@ +[NAME] +unexpand \- convert spaces to tabs +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/uniq.1 b/src/apps/bin/coreutils-5.0/man/uniq.1 new file mode 100644 index 0000000000..8cb6b21010 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/uniq.1 @@ -0,0 +1,69 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH UNIQ "1" "March 2003" "uniq (coreutils) 5.0" "User Commands" +.SH NAME +uniq \- remove duplicate lines from a sorted file +.SH SYNOPSIS +.B uniq +[\fIOPTION\fR]... [\fIINPUT \fR[\fIOUTPUT\fR]] +.SH DESCRIPTION +.\" Add any additional description here +.PP +Discard all but one of successive identical lines from INPUT (or +standard input), writing to OUTPUT (or standard output). +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-c\fR, \fB\-\-count\fR +prefix lines by the number of occurrences +.TP +\fB\-d\fR, \fB\-\-repeated\fR +only print duplicate lines +.TP +\fB\-D\fR, \fB\-\-all\-repeated\fR[=\fIdelimit\-method\fR] print all duplicate lines +delimit-method={none(default),prepend,separate} +Delimiting is done with blank lines. +.TP +\fB\-f\fR, \fB\-\-skip\-fields\fR=\fIN\fR +avoid comparing the first N fields +.TP +\fB\-i\fR, \fB\-\-ignore\-case\fR +ignore differences in case when comparing +.TP +\fB\-s\fR, \fB\-\-skip\-chars\fR=\fIN\fR +avoid comparing the first N characters +.TP +\fB\-u\fR, \fB\-\-unique\fR +only print unique lines +.TP +\fB\-w\fR, \fB\-\-check\-chars\fR=\fIN\fR +compare no more than N characters in lines +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +A field is a run of whitespace, then non-whitespace characters. +Fields are skipped before chars. +.SH AUTHOR +Written by Richard Stallman and David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B uniq +is maintained as a Texinfo manual. If the +.B info +and +.B uniq +programs are properly installed at your site, the command +.IP +.B info uniq +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/uniq.x b/src/apps/bin/coreutils-5.0/man/uniq.x new file mode 100644 index 0000000000..73723c8066 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/uniq.x @@ -0,0 +1,4 @@ +[NAME] +uniq \- remove duplicate lines from a sorted file +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/unlink.1 b/src/apps/bin/coreutils-5.0/man/unlink.1 new file mode 100644 index 0000000000..96afb94df8 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/unlink.1 @@ -0,0 +1,41 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH UNLINK "1" "March 2003" "unlink 5.0" "User Commands" +.SH NAME +unlink \- call the unlink function to remove the specified file +.SH SYNOPSIS +.B unlink +\fIFILE\fR +.br +.B unlink +\fIOPTION\fR +.SH DESCRIPTION +.\" Add any additional description here +.PP +Call the unlink function to remove the specified FILE. +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by Michael Stone. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B unlink +is maintained as a Texinfo manual. If the +.B info +and +.B unlink +programs are properly installed at your site, the command +.IP +.B info unlink +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/unlink.x b/src/apps/bin/coreutils-5.0/man/unlink.x new file mode 100644 index 0000000000..30366279b2 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/unlink.x @@ -0,0 +1,4 @@ +[NAME] +unlink \- call the unlink function to remove the specified file +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/uptime.1 b/src/apps/bin/coreutils-5.0/man/uptime.1 new file mode 100644 index 0000000000..85f75d6297 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/uptime.1 @@ -0,0 +1,41 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH UPTIME "1" "March 2003" "uptime 5.0" "User Commands" +.SH NAME +uptime \- tell how long the system has been running +.SH SYNOPSIS +.B uptime +[\fIOPTION\fR]... [ \fIFILE \fR] +.SH DESCRIPTION +.\" Add any additional description here +.PP +Print the current time, the length of time the system has been up, +the number of users on the system, and the average number of jobs +in the run queue over the last 1, 5 and 15 minutes. +If FILE is not specified, use /var/run/utmp. /var/log/wtmp as FILE is common. +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B uptime +is maintained as a Texinfo manual. If the +.B info +and +.B uptime +programs are properly installed at your site, the command +.IP +.B info uptime +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/uptime.x b/src/apps/bin/coreutils-5.0/man/uptime.x new file mode 100644 index 0000000000..5a86581d0d --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/uptime.x @@ -0,0 +1,4 @@ +[NAME] +uptime \- tell how long the system has been running +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/users.1 b/src/apps/bin/coreutils-5.0/man/users.1 new file mode 100644 index 0000000000..8f66a8089d --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/users.1 @@ -0,0 +1,39 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH USERS "1" "March 2003" "users 5.0" "User Commands" +.SH NAME +users \- print the user names of users currently logged in to the current host +.SH SYNOPSIS +.B users +[\fIOPTION\fR]... [ \fIFILE \fR] +.SH DESCRIPTION +.\" Add any additional description here +.PP +Output who is currently logged in according to FILE. +If FILE is not specified, use /var/run/utmp. /var/log/wtmp as FILE is common. +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by Joseph Arceneaux and David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B users +is maintained as a Texinfo manual. If the +.B info +and +.B users +programs are properly installed at your site, the command +.IP +.B info users +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/users.x b/src/apps/bin/coreutils-5.0/man/users.x new file mode 100644 index 0000000000..ca0f9ca12c --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/users.x @@ -0,0 +1,4 @@ +[NAME] +users \- print the user names of users currently logged in to the current host +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/vdir.1 b/src/apps/bin/coreutils-5.0/man/vdir.1 new file mode 100644 index 0000000000..778ec20080 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/vdir.1 @@ -0,0 +1,233 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH VDIR "1" "March 2003" "vdir (coreutils) 5.0" "User Commands" +.SH NAME +vdir \- list directory contents +.SH SYNOPSIS +.B vdir +[\fIOPTION\fR]... [\fIFILE\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.PP +List information about the FILEs (the current directory by default). +Sort entries alphabetically if none of \fB\-cftuSUX\fR nor \fB\-\-sort\fR. +.PP +Mandatory arguments to long options are mandatory for short options too. +.TP +\fB\-a\fR, \fB\-\-all\fR +do not hide entries starting with . +.TP +\fB\-A\fR, \fB\-\-almost\-all\fR +do not list implied . and .. +.TP +\fB\-\-author\fR +print the author of each file +.TP +\fB\-b\fR, \fB\-\-escape\fR +print octal escapes for nongraphic characters +.TP +\fB\-\-block\-size\fR=\fISIZE\fR +use SIZE-byte blocks +.TP +\fB\-B\fR, \fB\-\-ignore\-backups\fR +do not list implied entries ending with ~ +.TP +\fB\-c\fR +with \fB\-lt\fR: sort by, and show, ctime (time of last +modification of file status information) +with \fB\-l\fR: show ctime and sort by name +otherwise: sort by ctime +.TP +\fB\-C\fR +list entries by columns +.TP +\fB\-\-color\fR[=\fIWHEN\fR] +control whether color is used to distinguish file +types. WHEN may be `never', `always', or `auto' +.TP +\fB\-d\fR, \fB\-\-directory\fR +list directory entries instead of contents, +and do not dereference symbolic links +.TP +\fB\-D\fR, \fB\-\-dired\fR +generate output designed for Emacs' dired mode +.TP +\fB\-f\fR +do not sort, enable \fB\-aU\fR, disable \fB\-lst\fR +.TP +\fB\-F\fR, \fB\-\-classify\fR +append indicator (one of */=@|) to entries +.TP +\fB\-\-format\fR=\fIWORD\fR +across \fB\-x\fR, commas \fB\-m\fR, horizontal \fB\-x\fR, long \fB\-l\fR, +single-column \fB\-1\fR, verbose \fB\-l\fR, vertical \fB\-C\fR +.TP +\fB\-\-full\-time\fR +like \fB\-l\fR \fB\-\-time\-style\fR=\fIfull\-iso\fR +.TP +\fB\-g\fR +like \fB\-l\fR, but do not list owner +.TP +\fB\-G\fR, \fB\-\-no\-group\fR +inhibit display of group information +.TP +\fB\-h\fR, \fB\-\-human\-readable\fR +print sizes in human readable format (e.g., 1K 234M 2G) +.TP +\fB\-\-si\fR +likewise, but use powers of 1000 not 1024 +.TP +\fB\-H\fR, \fB\-\-dereference\-command\-line\fR +follow symbolic links listed on the command line +.TP +\fB\-\-dereference\-command\-line\-symlink\-to\-dir\fR +follow each command line symbolic link +.IP +that points to a directory +.TP +\fB\-\-indicator\-style\fR=\fIWORD\fR append indicator with style WORD to entry names: +none (default), classify (-F), file-type (-p) +.TP +\fB\-i\fR, \fB\-\-inode\fR +print index number of each file +.TP +\fB\-I\fR, \fB\-\-ignore\fR=\fIPATTERN\fR +do not list implied entries matching shell PATTERN +.TP +\fB\-k\fR +like \fB\-\-block\-size\fR=\fI1K\fR +.TP +\fB\-l\fR +use a long listing format +.TP +\fB\-L\fR, \fB\-\-dereference\fR +when showing file information for a symbolic +link, show information for the file the link +references rather than for the link itself +.TP +\fB\-m\fR +fill width with a comma separated list of entries +.TP +\fB\-n\fR, \fB\-\-numeric\-uid\-gid\fR +like \fB\-l\fR, but list numeric UIDs and GIDs +.TP +\fB\-N\fR, \fB\-\-literal\fR +print raw entry names (don't treat e.g. control +characters specially) +.TP +\fB\-o\fR +like \fB\-l\fR, but do not list group information +.TP +\fB\-p\fR, \fB\-\-file\-type\fR +append indicator (one of /=@|) to entries +.TP +\fB\-q\fR, \fB\-\-hide\-control\-chars\fR +print ? instead of non graphic characters +.TP +\fB\-\-show\-control\-chars\fR +show non graphic characters as-is (default +unless program is `ls' and output is a terminal) +.TP +\fB\-Q\fR, \fB\-\-quote\-name\fR +enclose entry names in double quotes +.TP +\fB\-\-quoting\-style\fR=\fIWORD\fR +use quoting style WORD for entry names: +literal, locale, shell, shell-always, c, escape +.TP +\fB\-r\fR, \fB\-\-reverse\fR +reverse order while sorting +.TP +\fB\-R\fR, \fB\-\-recursive\fR +list subdirectories recursively +.TP +\fB\-s\fR, \fB\-\-size\fR +print size of each file, in blocks +.TP +\fB\-S\fR +sort by file size +.TP +\fB\-\-sort\fR=\fIWORD\fR +extension \fB\-X\fR, none \fB\-U\fR, size \fB\-S\fR, time \fB\-t\fR, +version \fB\-v\fR +.IP +status \fB\-c\fR, time \fB\-t\fR, atime \fB\-u\fR, access \fB\-u\fR, use \fB\-u\fR +.TP +\fB\-\-time\fR=\fIWORD\fR +show time as WORD instead of modification time: +atime, access, use, ctime or status; use +specified time as sort key if \fB\-\-sort\fR=\fItime\fR +.TP +\fB\-\-time\-style\fR=\fISTYLE\fR +show times using style STYLE: +full-iso, long-iso, iso, locale, +FORMAT +.IP +FORMAT is interpreted like `date'; if FORMAT is +FORMAT1FORMAT2, FORMAT1 applies to +non-recent files and FORMAT2 to recent files; +if STYLE is prefixed with `posix-', STYLE +takes effect only outside the POSIX locale +.TP +\fB\-t\fR +sort by modification time +.TP +\fB\-T\fR, \fB\-\-tabsize\fR=\fICOLS\fR +assume tab stops at each COLS instead of 8 +.TP +\fB\-u\fR +with \fB\-lt\fR: sort by, and show, access time +with \fB\-l\fR: show access time and sort by name +otherwise: sort by access time +.TP +\fB\-U\fR +do not sort; list entries in directory order +.TP +\fB\-v\fR +sort by version +.TP +\fB\-w\fR, \fB\-\-width\fR=\fICOLS\fR +assume screen width instead of current value +.TP +\fB\-x\fR +list entries by lines instead of by columns +.TP +\fB\-X\fR +sort alphabetically by entry extension +.TP +\fB\-1\fR +list one file per line +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +SIZE may be (or may be an integer optionally followed by) one of following: +kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y. +.PP +By default, color is not used to distinguish types of files. That is +equivalent to using \fB\-\-color\fR=\fInone\fR. Using the \fB\-\-color\fR option without the +optional WHEN argument is equivalent to using \fB\-\-color\fR=\fIalways\fR. With +\fB\-\-color\fR=\fIauto\fR, color codes are output only if standard output is connected +to a terminal (tty). +.SH AUTHOR +Written by Richard Stallman and David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B vdir +is maintained as a Texinfo manual. If the +.B info +and +.B vdir +programs are properly installed at your site, the command +.IP +.B info vdir +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/vdir.x b/src/apps/bin/coreutils-5.0/man/vdir.x new file mode 100644 index 0000000000..60c02b7d1a --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/vdir.x @@ -0,0 +1,4 @@ +[NAME] +vdir \- list directory contents +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/wc.1 b/src/apps/bin/coreutils-5.0/man/wc.1 new file mode 100644 index 0000000000..84e118c980 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/wc.1 @@ -0,0 +1,55 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH WC "1" "March 2003" "wc (coreutils) 5.0" "User Commands" +.SH NAME +wc \- print the number of bytes, words, and lines in files +.SH SYNOPSIS +.B wc +[\fIOPTION\fR]... [\fIFILE\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Print byte, word, and newline counts for each FILE, and a total line if +more than one FILE is specified. With no FILE, or when FILE is -, +read standard input. +.TP +\fB\-c\fR, \fB\-\-bytes\fR +print the byte counts +.TP +\fB\-m\fR, \fB\-\-chars\fR +print the character counts +.TP +\fB\-l\fR, \fB\-\-lines\fR +print the newline counts +.TP +\fB\-L\fR, \fB\-\-max\-line\-length\fR +print the length of the longest line +.TP +\fB\-w\fR, \fB\-\-words\fR +print the word counts +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by Paul Rubin and David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B wc +is maintained as a Texinfo manual. If the +.B info +and +.B wc +programs are properly installed at your site, the command +.IP +.B info wc +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/wc.x b/src/apps/bin/coreutils-5.0/man/wc.x new file mode 100644 index 0000000000..01519c305f --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/wc.x @@ -0,0 +1,4 @@ +[NAME] +wc \- print the number of bytes, words, and lines in files +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/who.1 b/src/apps/bin/coreutils-5.0/man/who.1 new file mode 100644 index 0000000000..3199317d4f --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/who.1 @@ -0,0 +1,93 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH WHO "1" "March 2003" "who (coreutils) 5.0" "User Commands" +.SH NAME +who \- show who is logged on +.SH SYNOPSIS +.B who +[\fIOPTION\fR]... [ \fIFILE | ARG1 ARG2 \fR] +.SH DESCRIPTION +.\" Add any additional description here +.TP +\fB\-a\fR, \fB\-\-all\fR +same as \fB\-b\fR \fB\-d\fR \fB\-\-login\fR \fB\-p\fR \fB\-r\fR \fB\-t\fR \fB\-T\fR \fB\-u\fR +.TP +\fB\-b\fR, \fB\-\-boot\fR +time of last system boot +.TP +\fB\-d\fR, \fB\-\-dead\fR +print dead processes +.TP +\fB\-H\fR, \fB\-\-heading\fR +print line of column headings +.TP +\fB\-i\fR, \fB\-\-idle\fR +add idle time as HOURS:MINUTES, . or old +(deprecated, use \fB\-u\fR) +.TP +\fB\-\-login\fR +print system login processes +(equivalent to SUS \fB\-l\fR) +.TP +\fB\-l\fR, \fB\-\-lookup\fR +attempt to canonicalize hostnames via DNS +(-l is deprecated, use \fB\-\-lookup\fR) +.TP +\fB\-m\fR +only hostname and user associated with stdin +.TP +\fB\-p\fR, \fB\-\-process\fR +print active processes spawned by init +.TP +\fB\-q\fR, \fB\-\-count\fR +all login names and number of users logged on +.TP +\fB\-r\fR, \fB\-\-runlevel\fR +print current runlevel +.TP +\fB\-s\fR, \fB\-\-short\fR +print only name, line, and time (default) +.TP +\fB\-t\fR, \fB\-\-time\fR +print last system clock change +.TP +\fB\-T\fR, \fB\-w\fR, \fB\-\-mesg\fR +add user's message status as +, - or ? +.TP +\fB\-u\fR, \fB\-\-users\fR +list users logged in +.TP +\fB\-\-message\fR +same as \fB\-T\fR +.TP +\fB\-\-writable\fR +same as \fB\-T\fR +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.PP +If FILE is not specified, use /var/run/utmp. /var/log/wtmp as FILE is common. +If ARG1 ARG2 given, \fB\-m\fR presumed: `am i' or `mom likes' are usual. +.SH AUTHOR +Written by Joseph Arceneaux, David MacKenzie, and Michael Stone. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B who +is maintained as a Texinfo manual. If the +.B info +and +.B who +programs are properly installed at your site, the command +.IP +.B info who +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/who.x b/src/apps/bin/coreutils-5.0/man/who.x new file mode 100644 index 0000000000..02b039ed5f --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/who.x @@ -0,0 +1,4 @@ +[NAME] +who \- show who is logged on +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/whoami.1 b/src/apps/bin/coreutils-5.0/man/whoami.1 new file mode 100644 index 0000000000..fc3caea3c1 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/whoami.1 @@ -0,0 +1,39 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH WHOAMI "1" "March 2003" "whoami 5.0" "User Commands" +.SH NAME +whoami \- print effective userid +.SH SYNOPSIS +.B whoami +[\fIOPTION\fR]... +.SH DESCRIPTION +.\" Add any additional description here +.PP +Print the user name associated with the current effective user id. +Same as id \fB\-un\fR. +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by Richard Mlynarik. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B whoami +is maintained as a Texinfo manual. If the +.B info +and +.B whoami +programs are properly installed at your site, the command +.IP +.B info whoami +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/whoami.x b/src/apps/bin/coreutils-5.0/man/whoami.x new file mode 100644 index 0000000000..7ee371a3de --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/whoami.x @@ -0,0 +1,4 @@ +[NAME] +whoami \- print effective userid +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/man/yes.1 b/src/apps/bin/coreutils-5.0/man/yes.1 new file mode 100644 index 0000000000..72941894f2 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/yes.1 @@ -0,0 +1,41 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH YES "1" "March 2003" "yes 5.0" "User Commands" +.SH NAME +yes \- output a string repeatedly until killed +.SH SYNOPSIS +.B yes +[\fISTRING\fR]... +.br +.B yes +\fIOPTION\fR +.SH DESCRIPTION +.\" Add any additional description here +.PP +Repeatedly output a line with all specified STRING(s), or `y'. +.TP +\fB\-\-help\fR +display this help and exit +.TP +\fB\-\-version\fR +output version information and exit +.SH AUTHOR +Written by David MacKenzie. +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2003 Free Software Foundation, Inc. +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B yes +is maintained as a Texinfo manual. If the +.B info +and +.B yes +programs are properly installed at your site, the command +.IP +.B info yes +.PP +should give you access to the complete manual. diff --git a/src/apps/bin/coreutils-5.0/man/yes.x b/src/apps/bin/coreutils-5.0/man/yes.x new file mode 100644 index 0000000000..ff0a9e3f96 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/man/yes.x @@ -0,0 +1,4 @@ +[NAME] +yes \- output a string repeatedly until killed +[DESCRIPTION] +.\" Add any additional description here diff --git a/src/apps/bin/coreutils-5.0/po/ChangeLog b/src/apps/bin/coreutils-5.0/po/ChangeLog new file mode 100644 index 0000000000..83504a76b8 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/ChangeLog @@ -0,0 +1,37 @@ +2003-03-18 Jim Meyering + + * POTFILES.in: Remove lib/c-stack.c. + +2003-02-16 Jim Meyering + + * LINGUAS: Add Finnish (fi). + +2003-01-11 Jim Meyering + + * POTFILES.in: Add src/readlink.c. + +2002-11-21 Jim Meyering + + * LINGUAS: Add ms (Malay). + +2002-11-14 Jim Meyering + + * POTFILES.in: Remove lib/long-options.c and lib/same.c. + Although each defines `_', neither actually used it. + +2002-11-09 Jim Meyering + + * Makevars (EXTRA_LOCALE_CATEGORIES): Add LC_TIME. + Patch by Tim Waugh for Red Hat bug #73669. + +2002-09-25 gettextize + + * Makefile.in.in: Upgrade to gettext-0.11.5. + +2002-09-16 Jim Meyering + + * LINGUAS: Add be (Belarusian). + +2002-09-02 Jim Meyering + + * LINGUAS: Add lg (Luganda). diff --git a/src/apps/bin/coreutils-5.0/po/LINGUAS b/src/apps/bin/coreutils-5.0/po/LINGUAS new file mode 100644 index 0000000000..6abd50aa39 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/LINGUAS @@ -0,0 +1,30 @@ +be +ca +cs +da +de +el +es +et +fi +fr +gl +hu +it +ja +ko +lg +ms +nb +nl +no +pl +pt +pt_BR +ru +sk +sl +sv +tr +zh_CN +zh_TW diff --git a/src/apps/bin/coreutils-5.0/po/Makefile b/src/apps/bin/coreutils-5.0/po/Makefile new file mode 100644 index 0000000000..09d5287024 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/Makefile @@ -0,0 +1,488 @@ +# Makefile for PO directory in any package using GNU gettext. +# Copyright (C) 1995-1997, 2000-2002 by Ulrich Drepper +# +# This file can be copied and used freely without restrictions. It can +# be used in projects which are not available under the GNU General Public +# License but which still want to provide support for the GNU gettext +# functionality. +# Please note that the actual code of GNU gettext is covered by the GNU +# General Public License and is *not* in the public domain. + +PACKAGE = coreutils +VERSION = 5.0 + +SHELL = /bin/sh + + +srcdir = . +top_srcdir = .. + + +prefix = /usr/local +exec_prefix = ${prefix} +datadir = ${prefix}/share +localedir = $(datadir)/locale +gettextsrcdir = $(datadir)/gettext/po + +INSTALL = /bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +MKINSTALLDIRS = config/mkinstalldirs +mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac` + +GMSGFMT = : +MSGFMT = : +XGETTEXT = : +MSGMERGE = msgmerge +MSGMERGE_UPDATE = : --update +MSGINIT = msginit +MSGCONV = msgconv +MSGFILTER = msgfilter + +POFILES = be.po ca.po cs.po da.po de.po el.po es.po et.po fi.po fr.po gl.po hu.po it.po ja.po ko.po lg.po ms.po nb.po nl.po no.po pl.po pt.po pt_BR.po ru.po sk.po sl.po sv.po tr.po zh_CN.po zh_TW.po +GMOFILES = be.gmo ca.gmo cs.gmo da.gmo de.gmo el.gmo es.gmo et.gmo fi.gmo fr.gmo gl.gmo hu.gmo it.gmo ja.gmo ko.gmo lg.gmo ms.gmo nb.gmo nl.gmo no.gmo pl.gmo pt.gmo pt_BR.gmo ru.gmo sk.gmo sl.gmo sv.gmo tr.gmo zh_CN.gmo zh_TW.gmo +UPDATEPOFILES = be.po-update ca.po-update cs.po-update da.po-update de.po-update el.po-update es.po-update et.po-update fi.po-update fr.po-update gl.po-update hu.po-update it.po-update ja.po-update ko.po-update lg.po-update ms.po-update nb.po-update nl.po-update no.po-update pl.po-update pt.po-update pt_BR.po-update ru.po-update sk.po-update sl.po-update sv.po-update tr.po-update zh_CN.po-update zh_TW.po-update +DUMMYPOFILES = be.nop ca.nop cs.nop da.nop de.nop el.nop es.nop et.nop fi.nop fr.nop gl.nop hu.nop it.nop ja.nop ko.nop lg.nop ms.nop nb.nop nl.nop no.nop pl.nop pt.nop pt_BR.nop ru.nop sk.nop sl.nop sv.nop tr.nop zh_CN.nop zh_TW.nop +DISTFILES.common = Makefile.in.in Makevars remove-potcdate.sin \ +$(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3) +DISTFILES = $(DISTFILES.common) POTFILES.in $(DOMAIN).pot \ +$(POFILES) $(GMOFILES) \ +$(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3) + +POTFILES = \ + ../lib/argmatch.c \ + ../lib/closeout.c \ + ../lib/error.c \ + ../lib/file-type.c \ + ../lib/getopt.c \ + ../lib/human.c \ + ../lib/makepath.c \ + ../lib/obstack.c \ + ../lib/quotearg.c \ + ../lib/rpmatch.c \ + ../lib/unicodeio.c \ + ../lib/userspec.c \ + ../lib/version-etc.c \ + ../lib/xmalloc.c \ + ../lib/xmemcoll.c \ + ../src/basename.c \ + ../src/cat.c \ + ../src/chgrp.c \ + ../src/chmod.c \ + ../src/chown-core.c \ + ../src/chown.c \ + ../src/chroot.c \ + ../src/cksum.c \ + ../src/comm.c \ + ../src/copy.c \ + ../src/cp.c \ + ../src/csplit.c \ + ../src/cut.c \ + ../src/date.c \ + ../src/dd.c \ + ../src/df.c \ + ../src/dircolors.c \ + ../src/dirname.c \ + ../src/du.c \ + ../src/echo.c \ + ../src/env.c \ + ../src/expand.c \ + ../src/expr.c \ + ../src/factor.c \ + ../src/false.c \ + ../src/fmt.c \ + ../src/fold.c \ + ../src/head.c \ + ../src/hostid.c \ + ../src/hostname.c \ + ../src/id.c \ + ../src/install.c \ + ../src/join.c \ + ../src/kill.c \ + ../src/link.c \ + ../src/ln.c \ + ../src/logname.c \ + ../src/ls.c \ + ../src/md5sum.c \ + ../src/mkdir.c \ + ../src/mkfifo.c \ + ../src/mknod.c \ + ../src/mv.c \ + ../src/nice.c \ + ../src/nl.c \ + ../src/od.c \ + ../src/paste.c \ + ../src/pathchk.c \ + ../src/pinky.c \ + ../src/pr.c \ + ../src/printenv.c \ + ../src/printf.c \ + ../src/ptx.c \ + ../src/pwd.c \ + ../src/readlink.c \ + ../src/remove.c \ + ../src/rm.c \ + ../src/rmdir.c \ + ../src/seq.c \ + ../src/shred.c \ + ../src/sleep.c \ + ../src/sort.c \ + ../src/split.c \ + ../src/stat.c \ + ../src/stty.c \ + ../src/su.c \ + ../src/sum.c \ + ../src/sync.c \ + ../src/sys2.h \ + ../src/tac-pipe.c \ + ../src/tac.c \ + ../src/tail.c \ + ../src/tee.c \ + ../src/test.c \ + ../src/touch.c \ + ../src/tr.c \ + ../src/true.c \ + ../src/tsort.c \ + ../src/tty.c \ + ../src/uname.c \ + ../src/unexpand.c \ + ../src/uniq.c \ + ../src/unlink.c \ + ../src/uptime.c \ + ../src/users.c \ + ../src/wc.c \ + ../src/who.c \ + ../src/whoami.c \ + ../src/yes.c + +CATALOGS = be.gmo ca.gmo cs.gmo da.gmo de.gmo el.gmo es.gmo et.gmo fi.gmo fr.gmo gl.gmo hu.gmo it.gmo ja.gmo ko.gmo lg.gmo ms.gmo nb.gmo nl.gmo no.gmo pl.gmo pt.gmo pt_BR.gmo ru.gmo sk.gmo sl.gmo sv.gmo tr.gmo zh_CN.gmo zh_TW.gmo + +# Makevars gets inserted here. (Don't remove this line!) +# Makefile variables for PO directory in any package using GNU gettext. + +# Usually the message domain is the same as the package name. +DOMAIN = $(PACKAGE) + +# These two variables depend on the location of this directory. +subdir = po +top_builddir = .. + +# These options get passed to xgettext. +XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ + +# This is the copyright holder that gets inserted into the header of the +# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding +# package. (Note that the msgstr strings, extracted from the package's +# sources, belong to the copyright holder of the package.) Translators are +# expected to transfer the copyright for their translations to this person +# or entity, or to disclaim their copyright. The empty string stands for +# the public domain; in this case the translators are expected to disclaim +# their copyright. +COPYRIGHT_HOLDER = Free Software Foundation, Inc. + +# This is the list of locale categories, beyond LC_MESSAGES, for which the +# message catalogs shall be used. It is usually empty. +EXTRA_LOCALE_CATEGORIES = LC_TIME + +.SUFFIXES: +.SUFFIXES: .po .gmo .mo .sed .sin .nop .po-update + +.po.mo: + @echo "$(MSGFMT) -c -o $@ $<"; \ + $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@ + +.po.gmo: + @lang=`echo $* | sed -e 's,.*/,,'`; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o $${lang}.gmo $${lang}.po"; \ + cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo + +.sin.sed: + sed -e '/^#/d' $< > t-$@ + mv t-$@ $@ + + +all: all-no + +all-yes: $(CATALOGS) +all-no: + +# Note: Target 'all' must not depend on target '$(DOMAIN).pot-update', +# otherwise packages like GCC can not be built if only parts of the source +# have been downloaded. + +$(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed + $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ + --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \ + --files-from=$(srcdir)/POTFILES.in \ + --copyright-holder='$(COPYRIGHT_HOLDER)' + test ! -f $(DOMAIN).po || { \ + if test -f $(srcdir)/$(DOMAIN).pot; then \ + sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ + sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ + if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ + else \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + else \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + } + +$(srcdir)/$(DOMAIN).pot: + $(MAKE) $(DOMAIN).pot-update + +$(POFILES): $(srcdir)/$(DOMAIN).pot + @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot"; \ + cd $(srcdir) && $(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot + + +install: install-exec install-data +install-exec: +install-data: install-data-no + if test "$(PACKAGE)" = "gettext"; then \ + $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ + for file in $(DISTFILES.common); do \ + $(INSTALL_DATA) $(srcdir)/$$file \ + $(DESTDIR)$(gettextsrcdir)/$$file; \ + done; \ + else \ + : ; \ + fi +install-data-no: all +install-data-yes: all + $(mkinstalldirs) $(DESTDIR)$(datadir) + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(mkinstalldirs) $(DESTDIR)$$dir; \ + if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ + $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ + echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ + for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ + if test -n "$$lc"; then \ + if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ + link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ + mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ + for file in *; do \ + if test -f $$file; then \ + ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ + fi; \ + done); \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + else \ + if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ + :; \ + else \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + fi; \ + fi; \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ + ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ + cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ + fi; \ + done; \ + done + +install-strip: install + +installdirs: installdirs-exec installdirs-data +installdirs-exec: +installdirs-data: installdirs-data-no + if test "$(PACKAGE)" = "gettext"; then \ + $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ + else \ + : ; \ + fi +installdirs-data-no: +installdirs-data-yes: + $(mkinstalldirs) $(DESTDIR)$(datadir) + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(mkinstalldirs) $(DESTDIR)$$dir; \ + for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ + if test -n "$$lc"; then \ + if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ + link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ + mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ + for file in *; do \ + if test -f $$file; then \ + ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ + fi; \ + done); \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + else \ + if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ + :; \ + else \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + fi; \ + fi; \ + fi; \ + done; \ + done + +# Define this as empty until I found a useful application. +installcheck: + +uninstall: uninstall-exec uninstall-data +uninstall-exec: +uninstall-data: uninstall-data-no + if test "$(PACKAGE)" = "gettext"; then \ + for file in $(DISTFILES.common); do \ + rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ + done; \ + else \ + : ; \ + fi +uninstall-data-no: +uninstall-data-yes: + catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + done; \ + done + +check: all + +dvi info tags TAGS ID: + +mostlyclean: + rm -f remove-potcdate.sed + rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po + rm -fr *.o + +clean: mostlyclean + +distclean: clean + rm -f Makefile Makefile.in POTFILES *.mo + +maintainer-clean: distclean + @echo "This command is intended for maintainers to use;" + @echo "it deletes files that may require special tools to rebuild." + rm -f $(GMOFILES) + +distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) +dist distdir: + $(MAKE) update-po + @$(MAKE) dist2 +# This is a separate target because 'update-po' must be executed before. +dist2: $(DISTFILES) + dists="$(DISTFILES)"; \ + if test -f $(srcdir)/ChangeLog; then dists="$$dists ChangeLog"; fi; \ + if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \ + for file in $$dists; do \ + if test -f $$file; then \ + cp -p $$file $(distdir); \ + else \ + cp -p $(srcdir)/$$file $(distdir); \ + fi; \ + done + +update-po: Makefile + $(MAKE) $(DOMAIN).pot-update + $(MAKE) $(UPDATEPOFILES) + $(MAKE) update-gmo + +# General rule for updating PO files. + +.nop.po-update: + @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ + if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; fi; \ + tmpdir=`pwd`; \ + echo "$$lang:"; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ + cd $(srcdir); \ + if $(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$tmpdir/$$lang.new.po; then \ + if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ + rm -f $$tmpdir/$$lang.new.po; \ + else \ + if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ + :; \ + else \ + echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ + exit 1; \ + fi; \ + fi; \ + else \ + echo "msgmerge for $$lang.po failed!" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + fi + +$(DUMMYPOFILES): + +update-gmo: Makefile $(GMOFILES) + @: + +Makefile: Makefile.in.in $(top_builddir)/config.status POTFILES.in LINGUAS + cd $(top_builddir) \ + && CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \ + $(SHELL) ./config.status + +force: + +# Tell versions [3.59,3.63) of GNU make not to export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: +# Special Makefile rules for English message catalogs with quotation marks. + +DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot + +.SUFFIXES: .insert-header .po-update-en + +en@quot.po-update: en@quot.po-update-en +en@boldquot.po-update: en@boldquot.po-update-en + +.insert-header.po-update-en: + @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \ + if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \ + tmpdir=`pwd`; \ + echo "$$lang:"; \ + ll=`echo $$lang | sed -e 's/@.*//'`; \ + LC_ALL=C; export LC_ALL; \ + cd $(srcdir); \ + if $(MSGINIT) -i $(DOMAIN).pot --no-translator -l $$ll -o - 2>/dev/null | sed -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | $(MSGFILTER) sed -f `echo $$lang | sed -e 's/.*@//'`.sed 2>/dev/null > $$tmpdir/$$lang.new.po; then \ + if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ + rm -f $$tmpdir/$$lang.new.po; \ + else \ + if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ + :; \ + else \ + echo "creation of $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ + exit 1; \ + fi; \ + fi; \ + else \ + echo "creation of $$lang.po failed!" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + fi + +en@quot.insert-header: insert-header.sin + sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header + +en@boldquot.insert-header: insert-header.sin + sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' $(srcdir)/insert-header.sin > en@boldquot.insert-header + +mostlyclean: mostlyclean-quot +mostlyclean-quot: + rm -f *.insert-header diff --git a/src/apps/bin/coreutils-5.0/po/Makefile.in b/src/apps/bin/coreutils-5.0/po/Makefile.in new file mode 100644 index 0000000000..2e31e6c67c --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/Makefile.in @@ -0,0 +1,317 @@ +# Makefile for PO directory in any package using GNU gettext. +# Copyright (C) 1995-1997, 2000-2002 by Ulrich Drepper +# +# This file can be copied and used freely without restrictions. It can +# be used in projects which are not available under the GNU General Public +# License but which still want to provide support for the GNU gettext +# functionality. +# Please note that the actual code of GNU gettext is covered by the GNU +# General Public License and is *not* in the public domain. + +PACKAGE = coreutils +VERSION = 5.0 + +SHELL = /bin/sh + + +srcdir = . +top_srcdir = .. + + +prefix = /usr/local +exec_prefix = ${prefix} +datadir = ${prefix}/share +localedir = $(datadir)/locale +gettextsrcdir = $(datadir)/gettext/po + +INSTALL = /bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +MKINSTALLDIRS = config/mkinstalldirs +mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac` + +GMSGFMT = : +MSGFMT = : +XGETTEXT = : +MSGMERGE = msgmerge +MSGMERGE_UPDATE = : --update +MSGINIT = msginit +MSGCONV = msgconv +MSGFILTER = msgfilter + +POFILES = @POFILES@ +GMOFILES = @GMOFILES@ +UPDATEPOFILES = @UPDATEPOFILES@ +DUMMYPOFILES = @DUMMYPOFILES@ +DISTFILES.common = Makefile.in.in Makevars remove-potcdate.sin \ +$(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3) +DISTFILES = $(DISTFILES.common) POTFILES.in $(DOMAIN).pot \ +$(POFILES) $(GMOFILES) \ +$(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3) + +POTFILES = \ + +CATALOGS = @CATALOGS@ + +# Makevars gets inserted here. (Don't remove this line!) + +.SUFFIXES: +.SUFFIXES: .po .gmo .mo .sed .sin .nop .po-update + +.po.mo: + @echo "$(MSGFMT) -c -o $@ $<"; \ + $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@ + +.po.gmo: + @lang=`echo $* | sed -e 's,.*/,,'`; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o $${lang}.gmo $${lang}.po"; \ + cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo + +.sin.sed: + sed -e '/^#/d' $< > t-$@ + mv t-$@ $@ + + +all: all-no + +all-yes: $(CATALOGS) +all-no: + +# Note: Target 'all' must not depend on target '$(DOMAIN).pot-update', +# otherwise packages like GCC can not be built if only parts of the source +# have been downloaded. + +$(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed + $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ + --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \ + --files-from=$(srcdir)/POTFILES.in \ + --copyright-holder='$(COPYRIGHT_HOLDER)' + test ! -f $(DOMAIN).po || { \ + if test -f $(srcdir)/$(DOMAIN).pot; then \ + sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ + sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ + if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ + else \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + else \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + } + +$(srcdir)/$(DOMAIN).pot: + $(MAKE) $(DOMAIN).pot-update + +$(POFILES): $(srcdir)/$(DOMAIN).pot + @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot"; \ + cd $(srcdir) && $(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot + + +install: install-exec install-data +install-exec: +install-data: install-data-no + if test "$(PACKAGE)" = "gettext"; then \ + $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ + for file in $(DISTFILES.common); do \ + $(INSTALL_DATA) $(srcdir)/$$file \ + $(DESTDIR)$(gettextsrcdir)/$$file; \ + done; \ + else \ + : ; \ + fi +install-data-no: all +install-data-yes: all + $(mkinstalldirs) $(DESTDIR)$(datadir) + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(mkinstalldirs) $(DESTDIR)$$dir; \ + if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ + $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ + echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ + for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ + if test -n "$$lc"; then \ + if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ + link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ + mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ + for file in *; do \ + if test -f $$file; then \ + ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ + fi; \ + done); \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + else \ + if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ + :; \ + else \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + fi; \ + fi; \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ + ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ + cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ + fi; \ + done; \ + done + +install-strip: install + +installdirs: installdirs-exec installdirs-data +installdirs-exec: +installdirs-data: installdirs-data-no + if test "$(PACKAGE)" = "gettext"; then \ + $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ + else \ + : ; \ + fi +installdirs-data-no: +installdirs-data-yes: + $(mkinstalldirs) $(DESTDIR)$(datadir) + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(mkinstalldirs) $(DESTDIR)$$dir; \ + for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ + if test -n "$$lc"; then \ + if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ + link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ + mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ + for file in *; do \ + if test -f $$file; then \ + ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ + fi; \ + done); \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + else \ + if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ + :; \ + else \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + fi; \ + fi; \ + fi; \ + done; \ + done + +# Define this as empty until I found a useful application. +installcheck: + +uninstall: uninstall-exec uninstall-data +uninstall-exec: +uninstall-data: uninstall-data-no + if test "$(PACKAGE)" = "gettext"; then \ + for file in $(DISTFILES.common); do \ + rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ + done; \ + else \ + : ; \ + fi +uninstall-data-no: +uninstall-data-yes: + catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + done; \ + done + +check: all + +dvi info tags TAGS ID: + +mostlyclean: + rm -f remove-potcdate.sed + rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po + rm -fr *.o + +clean: mostlyclean + +distclean: clean + rm -f Makefile Makefile.in POTFILES *.mo + +maintainer-clean: distclean + @echo "This command is intended for maintainers to use;" + @echo "it deletes files that may require special tools to rebuild." + rm -f $(GMOFILES) + +distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) +dist distdir: + $(MAKE) update-po + @$(MAKE) dist2 +# This is a separate target because 'update-po' must be executed before. +dist2: $(DISTFILES) + dists="$(DISTFILES)"; \ + if test -f $(srcdir)/ChangeLog; then dists="$$dists ChangeLog"; fi; \ + if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \ + for file in $$dists; do \ + if test -f $$file; then \ + cp -p $$file $(distdir); \ + else \ + cp -p $(srcdir)/$$file $(distdir); \ + fi; \ + done + +update-po: Makefile + $(MAKE) $(DOMAIN).pot-update + $(MAKE) $(UPDATEPOFILES) + $(MAKE) update-gmo + +# General rule for updating PO files. + +.nop.po-update: + @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ + if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; fi; \ + tmpdir=`pwd`; \ + echo "$$lang:"; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ + cd $(srcdir); \ + if $(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$tmpdir/$$lang.new.po; then \ + if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ + rm -f $$tmpdir/$$lang.new.po; \ + else \ + if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ + :; \ + else \ + echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ + exit 1; \ + fi; \ + fi; \ + else \ + echo "msgmerge for $$lang.po failed!" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + fi + +$(DUMMYPOFILES): + +update-gmo: Makefile $(GMOFILES) + @: + +Makefile: Makefile.in.in $(top_builddir)/config.status POTFILES.in LINGUAS + cd $(top_builddir) \ + && CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \ + $(SHELL) ./config.status + +force: + +# Tell versions [3.59,3.63) of GNU make not to export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/src/apps/bin/coreutils-5.0/po/Makefile.in.in b/src/apps/bin/coreutils-5.0/po/Makefile.in.in new file mode 100644 index 0000000000..49c018d572 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/Makefile.in.in @@ -0,0 +1,317 @@ +# Makefile for PO directory in any package using GNU gettext. +# Copyright (C) 1995-1997, 2000-2002 by Ulrich Drepper +# +# This file can be copied and used freely without restrictions. It can +# be used in projects which are not available under the GNU General Public +# License but which still want to provide support for the GNU gettext +# functionality. +# Please note that the actual code of GNU gettext is covered by the GNU +# General Public License and is *not* in the public domain. + +PACKAGE = @PACKAGE@ +VERSION = @VERSION@ + +SHELL = /bin/sh +@SET_MAKE@ + +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +VPATH = @srcdir@ + +prefix = @prefix@ +exec_prefix = @exec_prefix@ +datadir = @datadir@ +localedir = $(datadir)/locale +gettextsrcdir = $(datadir)/gettext/po + +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac` + +GMSGFMT = @GMSGFMT@ +MSGFMT = @MSGFMT@ +XGETTEXT = @XGETTEXT@ +MSGMERGE = msgmerge +MSGMERGE_UPDATE = @MSGMERGE@ --update +MSGINIT = msginit +MSGCONV = msgconv +MSGFILTER = msgfilter + +POFILES = @POFILES@ +GMOFILES = @GMOFILES@ +UPDATEPOFILES = @UPDATEPOFILES@ +DUMMYPOFILES = @DUMMYPOFILES@ +DISTFILES.common = Makefile.in.in Makevars remove-potcdate.sin \ +$(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3) +DISTFILES = $(DISTFILES.common) POTFILES.in $(DOMAIN).pot \ +$(POFILES) $(GMOFILES) \ +$(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3) + +POTFILES = \ + +CATALOGS = @CATALOGS@ + +# Makevars gets inserted here. (Don't remove this line!) + +.SUFFIXES: +.SUFFIXES: .po .gmo .mo .sed .sin .nop .po-update + +.po.mo: + @echo "$(MSGFMT) -c -o $@ $<"; \ + $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@ + +.po.gmo: + @lang=`echo $* | sed -e 's,.*/,,'`; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o $${lang}.gmo $${lang}.po"; \ + cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo + +.sin.sed: + sed -e '/^#/d' $< > t-$@ + mv t-$@ $@ + + +all: all-@USE_NLS@ + +all-yes: $(CATALOGS) +all-no: + +# Note: Target 'all' must not depend on target '$(DOMAIN).pot-update', +# otherwise packages like GCC can not be built if only parts of the source +# have been downloaded. + +$(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed + $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ + --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \ + --files-from=$(srcdir)/POTFILES.in \ + --copyright-holder='$(COPYRIGHT_HOLDER)' + test ! -f $(DOMAIN).po || { \ + if test -f $(srcdir)/$(DOMAIN).pot; then \ + sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ + sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ + if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ + else \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + else \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + } + +$(srcdir)/$(DOMAIN).pot: + $(MAKE) $(DOMAIN).pot-update + +$(POFILES): $(srcdir)/$(DOMAIN).pot + @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot"; \ + cd $(srcdir) && $(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot + + +install: install-exec install-data +install-exec: +install-data: install-data-@USE_NLS@ + if test "$(PACKAGE)" = "gettext"; then \ + $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ + for file in $(DISTFILES.common); do \ + $(INSTALL_DATA) $(srcdir)/$$file \ + $(DESTDIR)$(gettextsrcdir)/$$file; \ + done; \ + else \ + : ; \ + fi +install-data-no: all +install-data-yes: all + $(mkinstalldirs) $(DESTDIR)$(datadir) + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(mkinstalldirs) $(DESTDIR)$$dir; \ + if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ + $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ + echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ + for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ + if test -n "$$lc"; then \ + if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ + link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ + mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ + for file in *; do \ + if test -f $$file; then \ + ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ + fi; \ + done); \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + else \ + if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ + :; \ + else \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + fi; \ + fi; \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ + ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ + cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ + fi; \ + done; \ + done + +install-strip: install + +installdirs: installdirs-exec installdirs-data +installdirs-exec: +installdirs-data: installdirs-data-@USE_NLS@ + if test "$(PACKAGE)" = "gettext"; then \ + $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ + else \ + : ; \ + fi +installdirs-data-no: +installdirs-data-yes: + $(mkinstalldirs) $(DESTDIR)$(datadir) + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(mkinstalldirs) $(DESTDIR)$$dir; \ + for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ + if test -n "$$lc"; then \ + if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ + link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ + mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ + for file in *; do \ + if test -f $$file; then \ + ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ + fi; \ + done); \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + else \ + if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ + :; \ + else \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + fi; \ + fi; \ + fi; \ + done; \ + done + +# Define this as empty until I found a useful application. +installcheck: + +uninstall: uninstall-exec uninstall-data +uninstall-exec: +uninstall-data: uninstall-data-@USE_NLS@ + if test "$(PACKAGE)" = "gettext"; then \ + for file in $(DISTFILES.common); do \ + rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ + done; \ + else \ + : ; \ + fi +uninstall-data-no: +uninstall-data-yes: + catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + done; \ + done + +check: all + +dvi info tags TAGS ID: + +mostlyclean: + rm -f remove-potcdate.sed + rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po + rm -fr *.o + +clean: mostlyclean + +distclean: clean + rm -f Makefile Makefile.in POTFILES *.mo + +maintainer-clean: distclean + @echo "This command is intended for maintainers to use;" + @echo "it deletes files that may require special tools to rebuild." + rm -f $(GMOFILES) + +distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) +dist distdir: + $(MAKE) update-po + @$(MAKE) dist2 +# This is a separate target because 'update-po' must be executed before. +dist2: $(DISTFILES) + dists="$(DISTFILES)"; \ + if test -f $(srcdir)/ChangeLog; then dists="$$dists ChangeLog"; fi; \ + if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \ + for file in $$dists; do \ + if test -f $$file; then \ + cp -p $$file $(distdir); \ + else \ + cp -p $(srcdir)/$$file $(distdir); \ + fi; \ + done + +update-po: Makefile + $(MAKE) $(DOMAIN).pot-update + $(MAKE) $(UPDATEPOFILES) + $(MAKE) update-gmo + +# General rule for updating PO files. + +.nop.po-update: + @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ + if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; fi; \ + tmpdir=`pwd`; \ + echo "$$lang:"; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ + cd $(srcdir); \ + if $(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$tmpdir/$$lang.new.po; then \ + if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ + rm -f $$tmpdir/$$lang.new.po; \ + else \ + if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ + :; \ + else \ + echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ + exit 1; \ + fi; \ + fi; \ + else \ + echo "msgmerge for $$lang.po failed!" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + fi + +$(DUMMYPOFILES): + +update-gmo: Makefile $(GMOFILES) + @: + +Makefile: Makefile.in.in $(top_builddir)/config.status POTFILES.in LINGUAS + cd $(top_builddir) \ + && CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \ + $(SHELL) ./config.status + +force: + +# Tell versions [3.59,3.63) of GNU make not to export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/src/apps/bin/coreutils-5.0/po/Makevars b/src/apps/bin/coreutils-5.0/po/Makevars new file mode 100644 index 0000000000..f5404faa7b --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/Makevars @@ -0,0 +1,25 @@ +# Makefile variables for PO directory in any package using GNU gettext. + +# Usually the message domain is the same as the package name. +DOMAIN = $(PACKAGE) + +# These two variables depend on the location of this directory. +subdir = po +top_builddir = .. + +# These options get passed to xgettext. +XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ + +# This is the copyright holder that gets inserted into the header of the +# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding +# package. (Note that the msgstr strings, extracted from the package's +# sources, belong to the copyright holder of the package.) Translators are +# expected to transfer the copyright for their translations to this person +# or entity, or to disclaim their copyright. The empty string stands for +# the public domain; in this case the translators are expected to disclaim +# their copyright. +COPYRIGHT_HOLDER = Free Software Foundation, Inc. + +# This is the list of locale categories, beyond LC_MESSAGES, for which the +# message catalogs shall be used. It is usually empty. +EXTRA_LOCALE_CATEGORIES = LC_TIME diff --git a/src/apps/bin/coreutils-5.0/po/POTFILES b/src/apps/bin/coreutils-5.0/po/POTFILES new file mode 100644 index 0000000000..d1fcb4082e --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/POTFILES @@ -0,0 +1,104 @@ + ../lib/argmatch.c \ + ../lib/closeout.c \ + ../lib/error.c \ + ../lib/file-type.c \ + ../lib/getopt.c \ + ../lib/human.c \ + ../lib/makepath.c \ + ../lib/obstack.c \ + ../lib/quotearg.c \ + ../lib/rpmatch.c \ + ../lib/unicodeio.c \ + ../lib/userspec.c \ + ../lib/version-etc.c \ + ../lib/xmalloc.c \ + ../lib/xmemcoll.c \ + ../src/basename.c \ + ../src/cat.c \ + ../src/chgrp.c \ + ../src/chmod.c \ + ../src/chown-core.c \ + ../src/chown.c \ + ../src/chroot.c \ + ../src/cksum.c \ + ../src/comm.c \ + ../src/copy.c \ + ../src/cp.c \ + ../src/csplit.c \ + ../src/cut.c \ + ../src/date.c \ + ../src/dd.c \ + ../src/df.c \ + ../src/dircolors.c \ + ../src/dirname.c \ + ../src/du.c \ + ../src/echo.c \ + ../src/env.c \ + ../src/expand.c \ + ../src/expr.c \ + ../src/factor.c \ + ../src/false.c \ + ../src/fmt.c \ + ../src/fold.c \ + ../src/head.c \ + ../src/hostid.c \ + ../src/hostname.c \ + ../src/id.c \ + ../src/install.c \ + ../src/join.c \ + ../src/kill.c \ + ../src/link.c \ + ../src/ln.c \ + ../src/logname.c \ + ../src/ls.c \ + ../src/md5sum.c \ + ../src/mkdir.c \ + ../src/mkfifo.c \ + ../src/mknod.c \ + ../src/mv.c \ + ../src/nice.c \ + ../src/nl.c \ + ../src/od.c \ + ../src/paste.c \ + ../src/pathchk.c \ + ../src/pinky.c \ + ../src/pr.c \ + ../src/printenv.c \ + ../src/printf.c \ + ../src/ptx.c \ + ../src/pwd.c \ + ../src/readlink.c \ + ../src/remove.c \ + ../src/rm.c \ + ../src/rmdir.c \ + ../src/seq.c \ + ../src/shred.c \ + ../src/sleep.c \ + ../src/sort.c \ + ../src/split.c \ + ../src/stat.c \ + ../src/stty.c \ + ../src/su.c \ + ../src/sum.c \ + ../src/sync.c \ + ../src/sys2.h \ + ../src/tac-pipe.c \ + ../src/tac.c \ + ../src/tail.c \ + ../src/tee.c \ + ../src/test.c \ + ../src/touch.c \ + ../src/tr.c \ + ../src/true.c \ + ../src/tsort.c \ + ../src/tty.c \ + ../src/uname.c \ + ../src/unexpand.c \ + ../src/uniq.c \ + ../src/unlink.c \ + ../src/uptime.c \ + ../src/users.c \ + ../src/wc.c \ + ../src/who.c \ + ../src/whoami.c \ + ../src/yes.c diff --git a/src/apps/bin/coreutils-5.0/po/POTFILES.in b/src/apps/bin/coreutils-5.0/po/POTFILES.in new file mode 100644 index 0000000000..26101c2a2d --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/POTFILES.in @@ -0,0 +1,111 @@ +# List of files which contain translatable strings. +# Copyright (C) 1996-2003 Free Software Foundation, Inc. + +# These are nominally temporary... +lib/argmatch.c +lib/closeout.c +lib/error.c +lib/file-type.c +lib/getopt.c +lib/human.c +lib/makepath.c +lib/obstack.c +lib/quotearg.c +lib/rpmatch.c +lib/unicodeio.c +lib/userspec.c +lib/version-etc.c +lib/xmalloc.c +lib/xmemcoll.c + +# Package source files + +src/basename.c +src/cat.c +src/chgrp.c +src/chmod.c +src/chown-core.c +src/chown.c +src/chroot.c +src/cksum.c +src/comm.c +src/copy.c +src/cp.c +src/csplit.c +src/cut.c +src/date.c +src/dd.c +src/df.c +src/dircolors.c +src/dirname.c +src/du.c +src/echo.c +src/env.c +src/expand.c +src/expr.c +src/factor.c +src/false.c +src/fmt.c +src/fold.c +src/head.c +src/hostid.c +src/hostname.c +src/id.c +src/install.c +src/join.c +src/kill.c +src/link.c +src/ln.c +src/logname.c +src/ls.c +src/md5sum.c +src/mkdir.c +src/mkfifo.c +src/mknod.c +src/mv.c +src/nice.c +src/nl.c +src/od.c +src/paste.c +src/pathchk.c +src/pinky.c +src/pr.c +src/printenv.c +src/printf.c +src/ptx.c +src/pwd.c +src/readlink.c +src/remove.c +src/rm.c +src/rmdir.c +src/seq.c +src/shred.c +src/sleep.c +src/sort.c +src/split.c +src/stat.c +src/stty.c +src/su.c +src/sum.c +src/sync.c +src/sys2.h +src/tac-pipe.c +src/tac.c +src/tail.c +src/tee.c +src/test.c +src/touch.c +src/tr.c +src/true.c +src/tsort.c +src/tty.c +src/uname.c +src/unexpand.c +src/uniq.c +src/unlink.c +src/uptime.c +src/users.c +src/wc.c +src/who.c +src/whoami.c +src/yes.c diff --git a/src/apps/bin/coreutils-5.0/po/Rules-quot b/src/apps/bin/coreutils-5.0/po/Rules-quot new file mode 100644 index 0000000000..5f46d237d2 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/Rules-quot @@ -0,0 +1,42 @@ +# Special Makefile rules for English message catalogs with quotation marks. + +DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot + +.SUFFIXES: .insert-header .po-update-en + +en@quot.po-update: en@quot.po-update-en +en@boldquot.po-update: en@boldquot.po-update-en + +.insert-header.po-update-en: + @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \ + if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \ + tmpdir=`pwd`; \ + echo "$$lang:"; \ + ll=`echo $$lang | sed -e 's/@.*//'`; \ + LC_ALL=C; export LC_ALL; \ + cd $(srcdir); \ + if $(MSGINIT) -i $(DOMAIN).pot --no-translator -l $$ll -o - 2>/dev/null | sed -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | $(MSGFILTER) sed -f `echo $$lang | sed -e 's/.*@//'`.sed 2>/dev/null > $$tmpdir/$$lang.new.po; then \ + if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ + rm -f $$tmpdir/$$lang.new.po; \ + else \ + if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ + :; \ + else \ + echo "creation of $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ + exit 1; \ + fi; \ + fi; \ + else \ + echo "creation of $$lang.po failed!" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + fi + +en@quot.insert-header: insert-header.sin + sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header + +en@boldquot.insert-header: insert-header.sin + sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' $(srcdir)/insert-header.sin > en@boldquot.insert-header + +mostlyclean: mostlyclean-quot +mostlyclean-quot: + rm -f *.insert-header diff --git a/src/apps/bin/coreutils-5.0/po/be.gmo b/src/apps/bin/coreutils-5.0/po/be.gmo new file mode 100644 index 0000000000..c2b804d150 Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/be.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/be.po b/src/apps/bin/coreutils-5.0/po/be.po new file mode 100644 index 0000000000..6918112f56 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/be.po @@ -0,0 +1,6854 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright © 2002, 2003 Free Software Foundation, Inc. +# This file is distributed under the same license as the coreutils package. +# Ales Nyakhaychyk , 2002-2003. +# +msgid "" +msgstr "" +"Project-Id-Version: coreutils 4.5.8\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2003-02-26 21:26+0200\n" +"Last-Translator: Ales Nyakhaychyk \n" +"Language-Team: Belarusian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: KBabel 0.9.6\n" + +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "незразумелы довад %s Ð´Ð»Ñ %s" + +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "неадназначны довад %s Ð´Ð»Ñ %s" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "РÑчаіÑÐ½Ñ‹Ñ Ð´Ð¾Ð²Ð°Ð´Ñ‹:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "памылка запіÑу" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "ÐевÑÐ´Ð¾Ð¼Ð°Ñ ÑÑ‹ÑÑ‚ÑÐ¼Ð½Ð°Ñ Ð¿Ð°Ð¼Ñ‹Ð»ÐºÐ°" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "звычайны парожні файл" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "звычайны файл" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "Ñ‚Ñчка" + +#: lib/file-type.c:48 +msgid "block special file" +msgstr "аÑаблівы кавалкавы файл" + +#: lib/file-type.c:51 +msgid "character special file" +msgstr "аÑаблівы знакавы файл" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "fifo" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "знакавае лучыва" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "socket" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "чарга паведамленьнÑÑž" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "ÑÑмафор" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "абьект з агульнай памÑцьцю" + +#: lib/file-type.c:71 +msgid "weird file" +msgstr "лёÑавы файл" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: выбар `%s' неадназначны\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: выбар `--%s' не дазвалÑе довад\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: выбар `%c%s' не дазвалÑе довад\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: выбар `%s' патрабуе довад\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: нераÑпазнаны выбар `--%s'\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: нераÑпазнаны выбар `%c%s'\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: недапушчальны выраб -- %c\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: нерÑчаіÑны выбар -- %c\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: выбар патрабуе довад -- %c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: выбар `-W %s' неадназначыны\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: выбар `-W %s' не дазвалÑе довад\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "памер кавалку" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "немагчыма Ñтварыць Ñ‚Ñчку %s" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%s Ñ–Ñнуе, але гÑта Ð½Ñ Ñ‚Ñчка" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "немагчыма зьмÑніць уладальніка й/ці групу %s" + +#: lib/makepath.c:338 +#, c-format +msgid "cannot chdir to directory %s" +msgstr "немагчыма перайÑьці да Ñ‚Ñчкі %s" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "немагчыма зьмÑніць правы %s" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "памÑць вычарпана" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "`" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "'" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[тТ]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[нÐ]" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "Ñ„ÑƒÐ½ÐºÑ†Ñ‹Ñ iconv непрыгодна Ð´Ð»Ñ Ð²Ñ‹ÐºÐ°Ñ€Ñ‹ÑтаньнÑ" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "недаÑтупна Ñ„ÑƒÐ½ÐºÑ†Ñ‹Ñ iconv" + +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "знак па за дапушчальнымі межамі" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "немагчыма пераўтварыць U+%04X у мÑÑцовы набор знакаў" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "немагчыма пераўтварыць U+%04X у мÑÑцовы набор знакаў: %s" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "нерÑчаіÑны карыÑтальнік" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "нерÑчаіÑÐ½Ð°Ñ Ð³Ñ€ÑƒÐ¿Ð°" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "немагчыма атрымаць уліковую групу лічбавага UID" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "немагчыма абмінуць разам карыÑтальніка й групу" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "Стваральнік %s.\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +"ГÑты вольнае праграмнае забеÑьпÑчÑньне; глÑдзіце зыходны Ñ‚ÑкÑÑ‚ Ð´Ð»Ñ " +"пагадненьнÑ\n" +"аб раÑпаўÑюджваньні. Ðе йÑнуе ÐІЯКÐЙ гарантыі, нават аб магчымаÑьці " +"выкарыÑÑ‚Ð°Ð½ÑŒÐ½Ñ Ð·ÑŒ Ñкой небудзь мÑтай .\n" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "памылка Ð¿Ð°Ñ€Ð°ÑžÐ½Ð°Ð½ÑŒÐ½Ñ Ñ€Ð°Ð´ÐºÑƒ" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "УÑталюйце LC_ALL='C' каб працаваць без пытаньнÑÑž." + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "Радкі былі параўнаны тут %s Ñ– тут %s." + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "ПаÑпрабуйце `%s --help' Ð´Ð»Ñ Ð±Ð¾Ð»ÑŒÑˆ падрабÑзных зьвеÑтак.\n" + +#: src/basename.c:54 +#, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"ВыкарыÑтаньне: %s ÐÐЗВР[УСТÐЎКÐ]\n" +" ці: %s ВЫБÐР\n" + +#: src/basename.c:59 +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" +"Друкуе ÐÐЗВу без уÑÑлÑкіх папÑÑ€Ñдніх чаÑтак(Ñ‚Ñчак).\n" +"Калі пазначака, так Ñама вікідае й УСТÐЎКу.\n" +"\n" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"ПаведамлÑйце аб памылках на <%s>.\n" + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "нехапае довадаў" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "вельмі шмат довадаў" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "Torbjorn Granlund Ñ– Richard M. Stallman" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐР] [ФÐЙЛ]...\n" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" +"ЗьвÑзвае ФÐЙЛ(Ñ‹), ці Ñтандартны ўвод Ñа Ñтандартным вывадам.\n" +"\n" +" -A, --show-all раўназначна -vET\n" +" -b, --number-nonblank колькаÑьць непарожніх радкоў вываду\n" +" -e раўназначна -vE\n" +" -E, --show-ends адлюÑтроўвае $ на праканцы кожнага радка\n" +" -n, --number нумараваць уÑе радкі вываду\n" +" -s, --squeeze-blank Ð½Ñ Ð±Ð¾Ð»ÑŒÑˆ за адзін парожні радок\n" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" +" -t раўназначна -vT\n" +" -T, --show-tabs адлюÑтроўвае знак TAB Ñк ^I\n" +" -u (адхілена)\n" +" -v, --show-nonprinting выарыÑтоўвае ^ Ñ– M- запіÑ, за выключÑньнем\n" +" LFD Ñ– TAB\n" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"БÑз ФÐЙЛу, ці калі ФÐЙЛ гÑта знак працÑжніку -, чытае звычайны ўвод.\n" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" +"\n" +" -B, --binary выкарыÑтоўвае дваічны Ð·Ð°Ð¿Ñ–Ñ Ñƒ прыладу канÑолі.\n" +"\n" + +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "немагчыма выканаць ioctl на `%s'" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "Ñтандартны вывад" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s: файл уводу зьÑўлÑецца й файлам вываду" + +#: src/cat.c:858 +msgid "closing standard input" +msgstr "зачыненьне Ñтандартнага уводу" + +#: src/cat.c:861 +msgid "closing standard output" +msgstr "зачыненьне Ñтандартнага вываду" + +#: src/chgrp.c:93 +msgid "cannot change to null group" +msgstr "немагчыма зьмÑніць на нулÑвую групу" + +#: src/chgrp.c:102 +#, c-format +msgid "invalid group name %s" +msgstr "нерÑчаіÑÐ½Ð°Ñ Ð½Ð°Ð·Ð²Ð° групы %s" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "нумар групы" + +#: src/chgrp.c:109 +#, c-format +msgid "invalid group number %s" +msgstr "нерÑчаіÑны нумар групы %s" + +#: src/chgrp.c:126 +#, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"ВыкарыÑтаньне: %s [ВЫБÐР]... ГРУПРФÐЙЛ...\n" +" or: %s [ВЫБÐР]... --reference=RФÐЙЛ ФÐЙЛ...\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"ЗьмÑнÑе прыналежнаÑьць да групы кожнага ФÐЛЙУ на ГРУПу.\n" +"\n" +" -c, --changes Ñк verbose, але паведамлÑе калі зьмÑненьне " +"зроблена\n" +" --dereference зьмÑнÑе файл, на Ñкі ÑпаÑылаецца лучыва\n" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" +" -h, --no-dereference зьмÑнÑе лучыва, замеÑÑ‚ зьмÑÐ½ÐµÐ½ÑŒÐ½Ñ Ñ„Ð°Ð¹Ð»Ñƒ на Ñкі Ñно\n" +" ÑпаÑылаецца (даÑтупна толькі на тых ÑÑ‹ÑÑ‚Ñмах, ÑкіÑ\n" +" могуць зьмÑнÑць уладальніка лучыва).\n" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet не адлюÑтроўваць аÑÐ½Ð¾ÑžÐ½Ñ‹Ñ Ð¿Ð°Ð²ÐµÐ´Ð°Ð¼Ð»ÐµÐ½ÑŒÐ½Ñ– аб " +"памылках\n" +" --reference=RФÐЙЛ выкарыÑтоўвае групу RФÐЙЛу замеÑÑ‚ зададзенай у\n" +" значÑньні ГРУПÐ\n" +" -R, --recursive апрацоўвае файлы й Ñ‚Ñчкі Ñ€ÑкурÑыўна\n" +" -v, --verbose выводзіць праверку Ð´Ð»Ñ ÐºÐ¾Ð¶Ð½Ð°Ð³Ð° апрацаванага файлу\n" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, c-format +msgid "failed to get attributes of %s" +msgstr "немагчыма атрымаць атрыбуты %s" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "атрыманьне новых атрыбутаў %s" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "Ñ€Ñжым %s зьменены на %04lo (%s)\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "немагчыма зьмÑніць Ñ€Ñжым %s на %04lo (%s)\n" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "Ñ€Ñжым %s утрыманы Ñк %04lo (%s)\n" + +#: src/chmod.c:179 +#, c-format +msgid "changing permissions of %s" +msgstr "зьмÑненьне правоў %s" + +#: src/chmod.c:242 +#, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"ВыкарыÑтаньне: %s [ВЫБÐР]... РЭЖЫМ[,РЭЖЫМ]... ФÐЙЛ...\n" +" ці: %s [ВЫБÐР]... Ð’ÐСЬМЯРЫЧÐЫ_РЭЖЫМ ФÐЙЛ...\n" +" ці: %s [ВЫБÐР]... --reference=RФÐЙЛ ФÐЙЛ...\n" + +#: src/chmod.c:248 +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"ЗьмÑнÑе правы кожнага ФÐЙЛу на РЭЖЫМ.\n" +"\n" +" -c, --changes Ñк verbose, але паведамлÑе калі зьмÑненьне " +"зроблена\n" +" -f, --silent, --quiet не адлюÑтроўваць аÑÐ½Ð¾ÑžÐ½Ñ‹Ñ Ð¿Ð°Ð²ÐµÐ´Ð°Ð¼Ð»ÐµÐ½ÑŒÐ½Ñ– аб " +"памылках\n" +" -v, --verbose выводзіць праверку Ð´Ð»Ñ ÐºÐ¾Ð¶Ð½Ð°Ð³Ð° апрацаванага файлу\n" +" --reference=RFILE выкарыÑтоўвае групу RФÐЙЛу замеÑÑ‚ значÑÐ½ÑŒÐ½Ñ " +"РЭЖЫМу\n" +" -R, --recursive апрацоўвае файлы й Ñ‚Ñчкі Ñ€ÑкурÑыўна\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" +"\n" +"Кожны РЭЖЫМ гÑта адна ці больш літар ugoa, адзін ці больш знакаў +-= Ñ–\n" +"адна ці больш літар rwxXstugo.\n" + +#: src/chmod.c:320 +#, c-format +msgid "invalid character %s in mode string %s" +msgstr "нерÑчаіÑны знак %s у радку Ñ€Ñжыму %s" + +#: src/chmod.c:361 +#, c-format +msgid "invalid mode string: %s" +msgstr "нерÑчаіÑны радок Ñ€Ñжыму: %s" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "" +"ні знакавае лучува %s ні файл, на Ñкі Ñно ÑпаÑылаецца, не былі зьменены\n" + +#: src/chown-core.c:143 +#, c-format +msgid "changed ownership of %s to %s\n" +msgstr "зьменен уладальнік %s на %s\n" + +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "зьменена група %s на %s\n" + +#: src/chown-core.c:148 +#, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "немагчыма зьмÑніць уладальніка %s на %s\n" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "немагчыма зьмÑніць групу %s на %s\n" + +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "уладальнік %s захаваны Ñк %s\n" + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "група %s захавана Ñк %s\n" + +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "зьмÑнÑецца ўладальнік %s" + +#: src/chown-core.c:327 +#, c-format +msgid "changing group of %s" +msgstr "зьмÑнÑецца група %s" + +#: src/chown-core.c:345 +#, c-format +msgid "unable to restore permissions of %s" +msgstr "немагчыма ваÑтанавіць правы %s" + +#: src/chown.c:99 +#, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"ВыкарыÑтаньне: %s [ВЫБÐР]... УЛÐДÐЛЬÐІК[:[ГРУПÐ]] ФÐЙЛ...\n" +" ці: %s [ВЫБÐР]... :ГРУПРФÐЙЛ...\n" +" ці: %s [ВЫБÐР]... --reference=R_ФÐЙЛ ФÐЙЛ...\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"ЗьмÑнÑе ўладальніка й/ці групу кожнага ФÐЙЛу на УЛÐДÐЛЬÐІК Ñ–/ці ГРУПÐ.\n" +"\n" +" -c, --changes Ñк verbose, але паведамлÑе калі зьмÑненьне " +"зроблена\n" +" --dereference зьмÑнÑе файл, на Ñкі ÑпаÑылаецца лучыва\n" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" +" --from=БЯГУЧЫ_ЎЛÐДÐЛЬÐІК:БЯГУЧÐЯ_ГРУПÐ\n" +" зьмÑнÑе ўладальніка й/ці групу кожнага файла " +"толькі\n" +" калі Ñго бÑгучы ўладальнік Ñ–/ці група Ñупадаюць з\n" +" зададзенымі тутака. Як група так Ñ– ўладальнік " +"могуць\n" +" быць не зададзены, у гÑтым выпадку Ñупадзеньне " +"гÑтага\n" +" атрыбуту неабавÑзкова.\n" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet не адлюÑтроўваць аÑÐ½Ð¾ÑžÐ½Ñ‹Ñ Ð¿Ð°Ð²ÐµÐ´Ð°Ð¼Ð»ÐµÐ½ÑŒÐ½Ñ– аб " +"памылках\n" +" --reference=RФÐЙЛ выкарыÑтоўвае ўладальніка й групу RФÐЙЛу замеÑÑ‚\n" +" зададзеных значÑньнÑÑž УЛÐДÐЛЬÐІК:ГРУПÐ\n" +" -R, --recursive апрацоўвае файлы й Ñ‚Ñчкі Ñ€ÑкурÑыўна\n" +" -v, --verbose выводзіць праверку Ð´Ð»Ñ ÐºÐ¾Ð¶Ð½Ð°Ð³Ð° апрацаванага файлу\n" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" +"\n" +"Калі ўладальнік прапушчаны, ён не зьмÑнÑецца. Калі група прапушчана, Ñна\n" +"не зьмÑнÑецца, але ж зьмÑнÑецца на Ñ€ÑгіÑтрацыйную групу калі зададзен " +"толькі\n" +"уладальнік з `:'. УЛÐДÐЛЬÐІК Ñ– ГРУПРмогуць быць зададзены Ñк лічбамі, так " +"Ñ–\n" +"мÑнушкамі Ð´Ð»Ñ Ð»Ñ–Ñ‡Ð±Ð°Ð²Ñ‹Ñ… значÑньнÑÑž.\n" + +#: src/chroot.c:45 +#, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"ВыкарыÑтаньне: %s ÐОВЫ_ROOT [ЗÐГÐД...]\n" +" ці: %s ВЫБÐР\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" +"ЗапуÑкае ЗÐГÐД з новай каранёвай Ñ‚Ñчкай.\n" +"\n" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" +"\n" +"Калі не атрыман загад, выконвае ``${SHELL} -i'' (дапомна: /bin/sh).\n" + +#: src/chroot.c:84 +#, c-format +msgid "cannot change root directory to %s" +msgstr "немагчыма зьмÑніць каранёвую Ñ‚Ñчку на %s" + +#: src/chroot.c:87 +msgid "cannot chdir to root directory" +msgstr "немачыма перайÑьці да каранёвае Ñ‚Ñчкі" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "%s: файл занадта вÑлікі" + +#: src/cksum.c:282 +#, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"ВыкарыÑтаньне: %s [ФÐЙЛ]...\n" +" ці: %s [ВЫБÐР]\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" +"Друкуе CRC падлік Ñ– колькаÑьць байтаў кожнага ФÐЙЛу.\n" +"\n" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "Richard Stallman Ñ– David MacKenzie" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐР]... ЛЕВЫ_ФÐЙЛ ПРÐВЫ_ФÐЙЛ\n" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" +"Парановае ÑƒÐ¿Ð°Ñ€Ð°Ð´ÐºÐ°Ð²Ð°Ð½Ñ‹Ñ Ñ„Ð°Ð¹Ð»Ñ‹ ЛЕВЫ_ФÐЙЛ Ñ– ПРÐВЫ_ФÐЙЛ радок за радком.\n" +"\n" +" -1 не адлюÑтроўваць радкі, ÑÐºÑ–Ñ Ñ‘Ñьць толькі Ñž левым файле\n" +" -2 не адлюÑтроўваць радкі, ÑÐºÑ–Ñ Ñ‘Ñьць толькі Ñž правым файле\n" +" -3 неадлюÑтроўваць радкі, ÑÐºÑ–Ñ Ñ‘Ñьць у абодвух файлах\n" + +#: src/copy.c:162 src/du.c:332 +#, c-format +msgid "cannot access %s" +msgstr "немагчыма атрымаць доÑтуп да %s" + +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "немагыма адчыніць %s Ð´Ð»Ñ Ñ‡Ñ‹Ñ‚Ð°Ð½ÑŒÐ½Ñ" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, c-format +msgid "cannot fstat %s" +msgstr "немагчыма выканаць fstat %s" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "файл %s мінаецца, таму што ён быў заменены пад Ñ‡Ð°Ñ ÐºÐ°Ð¿Ñ–ÑваньнÑ" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, c-format +msgid "cannot remove %s" +msgstr "немагчыма выдаліць %s" + +#: src/copy.c:277 +#, c-format +msgid "cannot create regular file %s" +msgstr "немагчыма Ñтварыць звычайны файл %s" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, c-format +msgid "reading %s" +msgstr "чытаецца %s" + +#: src/copy.c:362 +#, c-format +msgid "cannot lseek %s" +msgstr "немагчыма зрабіць lseek %s" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, c-format +msgid "writing %s" +msgstr "пішацца %s" + +#: src/copy.c:409 src/copy.c:415 +#, c-format +msgid "closing %s" +msgstr "зачынÑецца %s" + +#: src/copy.c:610 +#, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: перазапіÑаць %s, Ñ€Ñжым перазапіÑу %04lo? " + +#: src/copy.c:616 +#, c-format +msgid "%s: overwrite %s? " +msgstr "%s: перазапіÑаць %s? " + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, c-format +msgid "cannot stat %s" +msgstr "немагчыма зрабіць stat %s" + +#: src/copy.c:820 +#, c-format +msgid "omitting directory %s" +msgstr "мінаецца Ñ‚Ñчка %s" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "увага: зыходны файл %s зададзены больш за адзін раз" + +#: src/copy.c:866 src/ln.c:237 +#, c-format +msgid "%s and %s are the same file" +msgstr "%s Ñ– %s адзін Ñ– той жа ж файл" + +#: src/copy.c:876 +#, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "немагчыма перазапіÑаць Ð½Ñ Ñ‚Ñчку %s Ñ‚Ñчкай %s" + +#: src/copy.c:893 +#, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "толькі што Ñтвораны %s з %s Ð½Ñ Ð±ÑƒÐ´Ð·Ðµ перазапіÑаны" + +#: src/copy.c:904 +#, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "немагчыма перазапіÑаць Ñ‚Ñчку %s Ð½Ñ Ñ‚Ñчкай" + +#: src/copy.c:965 +#, c-format +msgid "cannot overwrite directory %s" +msgstr "немагчыма перазапіÑаць Ñ‚Ñчку %s" + +#: src/copy.c:974 +#, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "немагчыма перамÑÑьціць Ñ‚Ñчку Ñž Ð½Ñ Ñ‚Ñчку: %s -> %s" + +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "ÑтварÑньне запаÑной копіі %s зьнішчыць крыніцу; %s не перанеÑен" + +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "ÑтварÑньне запаÑной копіі %s зьнішчыць крыніцу; %s не ÑкапіÑван" + +#: src/copy.c:1013 src/ln.c:273 +#, c-format +msgid "cannot backup %s" +msgstr "немагчыма Ñтварыць запаÑную копію %s" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr " (запаÑны: %s)" + +#: src/copy.c:1099 +#, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "немагчыма ÑкапіÑваць Ñ‚Ñчку, %s, Ñаму Ñž ÑÑбе, %s" + +#: src/copy.c:1106 +#, c-format +msgid "will not create hard link %s to directory %s" +msgstr "жорÑткае лучыва %s на Ñ‚Ñчку %s Ð½Ñ Ð±ÑƒÐ´Ð·Ðµ Ñтворана" + +#: src/copy.c:1132 +#, c-format +msgid "cannot create hard link %s to %s" +msgstr "немагчыма Ñтварыць жорÑткае лучыва %s на %s" + +#: src/copy.c:1186 +#, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "немагчыма перамÑÑьціць %s ва ўлаÑную падтÑчку, %s" + +#: src/copy.c:1229 +#, c-format +msgid "cannot move %s to %s" +msgstr "немагчыма перамÑÑьціць %s у %s" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "збой міжпрыладнага перамÑшчÑньнÑ: %s у %s; немагчыма выдаліць мÑту" + +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "немагчыма ÑкапіÑваць цыклічнае знакавае лучыва %s" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "%s: можа Ñтварыць адноÑнае знакавае лучыва толькі Ñž бÑгучае Ñ‚Ñчцы" + +#: src/copy.c:1353 +#, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "немагчыма Ñтварыць знакавае лучыва %s на %s" + +#: src/copy.c:1364 +#, c-format +msgid "cannot create link %s" +msgstr "немагчыма Ñтварыць лучыва %s" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, c-format +msgid "cannot create fifo %s" +msgstr "немагчыма Ñтварыць fifo %s" + +#: src/copy.c:1403 +#, c-format +msgid "cannot create special file %s" +msgstr "немагчыма Ñтварыць аÑаблівы файл %s" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, c-format +msgid "cannot read symbolic link %s" +msgstr "немагчыма прачытаць знакавае лучыва %s" + +#: src/copy.c:1440 +#, c-format +msgid "cannot create symbolic link %s" +msgstr "немагчыма Ñтварыць знакавае лучыва %s" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, c-format +msgid "failed to preserve ownership for %s" +msgstr "памылка пры захаваньні ўладальніку Ð´Ð»Ñ %s" + +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "%s мае невÑдомы від файлу" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "захоўвае Ñ‡Ð°Ñ Ð´Ð»Ñ %s" + +#: src/copy.c:1531 +#, c-format +msgid "failed to preserve authorship for %s" +msgstr "збой пры захаваньні аўтарÑтва Ð´Ð»Ñ %s" + +#: src/copy.c:1549 +#, c-format +msgid "setting permissions for %s" +msgstr "уÑталÑваньне правоў Ð´Ð»Ñ %s" + +#: src/copy.c:1571 src/ln.c:326 +#, c-format +msgid "cannot un-backup %s" +msgstr "немагчыма ваÑтанавіць %s з запаÑное копіі" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s -> %s (ваÑтанаўленьне)\n" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "Torbjorn Granlund, David MacKenzie, Ñ– Jim Meyering" + +#: src/cp.c:164 src/mv.c:311 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"ВыкарыÑтаньне: %s [ВЫБÐР]... ÐДКУЛЬ КУДЫ\n" +" ці: %s [ВЫБÐР]... ÐДКУЛЬ... ТЭЧКÐ\n" +" ці: %s [ВЫБÐР]... --target-directory=ТЭЧКРÐДКУЛЬ...\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Капуе КРЫÐІЦу Ñž ПРЫЗÐÐЧЭÐЬÐЕ; ці ÑˆÐ¼Ð°Ñ‚Ð»Ñ–ÐºÑ–Ñ ÐšÐ Ð«ÐІЦ(Ñ‹) у ТЭЧКу.\n" +"\n" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "Довады, абавÑÐ·ÐºÐ¾Ð²Ñ‹Ñ Ð´Ð»Ñ Ð´Ð¾ÑžÐ³Ñ–Ñ… выбараў, абавÑÐ·ÐºÐ¾Ð²Ñ‹Ñ Ð¹ Ð´Ð»Ñ ÐºÐ°Ñ€Ð¾Ñ‚ÐºÑ–Ñ….\n" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" +" -a, --archive тое што й -dpR\n" +" --backup[=CONTROL] Ñтварае запаÑную копію кожнага Ñ–Ñнуючага " +"файлу\n" +" прызначÑньнÑ\n" +" -b Ñк --backup але не прымае довад\n" +" --copy-contents капуе зьмеÑÑ‚ аÑабіÑтых файлаў, у выпадку\n" +" Ñ€ÑкурÑыі\n" +" -d тое ж, што й --no-dereference --" +"preserve=link\n" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" +" --no-dereference ніколі Ð½Ñ Ñледаваць за знакавымі лучывамі\n" +" -f, --force калі Ñ–Ñнуючы файл прызначÑÐ½ÑŒÐ½Ñ Ð½Ñ Ð¼Ð¾Ð¶Ð° " +"быць\n" +" адчынены, выдаліць Ñго й паÑпрабаваць " +"нанава\n" +" -i, --interactive паведаміць перад перазапіÑам\n" +" -H Ñ–Ñьці за знакавымі лучывамі Ñž загадным радку\n" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" +" -l, --link злучае файлы замеÑÑ‚ капіÑваньнÑ\n" +" -L, --dereference заўÑёды йÑьці за знакавымі лучывамі\n" +" -p Ñк Ñ– --preserve=mode,ownership,timestamps\n" +" --preserve[=СЬПІС_ÐТРЫБУТÐÐŽ]\n" +" захоўвае Ð¿Ð°Ð·Ð½Ð°Ñ‡Ð°Ð½Ñ‹Ñ Ð°Ñ‚Ñ€Ñ‹Ð±ÑƒÑ‚Ñ‹ (дапомныÑ:\n" +" mode,ownership,timestamps), калі магчыма,\n" +" Ð´Ð°Ð´Ð°Ñ‚ÐºÐ¾Ð²Ñ‹Ñ Ð°Ñ‚Ñ€Ñ‹Ð±ÑƒÑ‚Ñ‹: links, all\n" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" +" --no-preserve=СЬПІС_ÐТРЫБУТÐÐŽ\n" +" не захоўваць Ð¿Ð°Ð·Ð½Ð°Ñ‡Ð°Ð½Ñ‹Ñ Ð°Ñ‚Ñ€Ñ‹Ð±ÑƒÑ‚Ñ‹\n" +" --parents дадаць зыходны шлÑÑ… да ТЭЧКі\n" +" -P Ñк Ñ– `--no-dereference'\n" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" +" -R, -r, --recursive Ñ€ÑкурÑыўна капіÑваць Ñ‚Ñчкі\n" +" --remove-destination выдаліць кожны Ñ–Ñнуючы файл прызначÑньнÑ\n" +" перад тым Ñк адчыніць Ñго (у разрÑз з --" +"force)\n" + +#: src/cp.c:209 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +" --reply={yes,no,query} вызначае Ñк апрацоўваць паведамленьне пра\n" +" Ñ–Ñнуючы файл прызначÑньнÑ\n" +" --sparse=WHEN кантралюе ÑтварÑньне разрÑджаных файлаў\n" +" --strip-trailing-slashes выдалÑе ÑžÑе цÑгнучыеÑÑ ÑкоÑÑ‹ з кожнага " +"доваду\n" +" КРЫÐІЦы\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" +" -s, --symbolic-link Ñтварае Ð·Ð½Ð°ÐºÐ°Ð²Ñ‹Ñ Ð»ÑƒÑ‡Ñ‹Ð²Ñ‹ замеÑÑ‚ капіÑваньнÑ\n" +" -S, --suffix=КÐÐЧÐТÐК перазапіÑвае звычайны канчатак запаÑу\n" +" --target-directory=ТЭЧКРперамÑшчае ÑžÑе довады КРЫÐІЦы Ñž ТЭЧКу\n" + +#: src/cp.c:221 +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +" -u, --update капуе толькі калі файл КРЫÐІЦРнавешы за " +"файл\n" +" прызначÑньнÑ, ці файл прызначÑньне " +"прапушчаны\n" +" -v, --verbose пведамлÑе што ўжо зроблена\n" +" -x, --one-file-system не пакідаць межы гÑтае файлавае ÑÑ‹ÑÑ‚Ñмы\n" + +#: src/cp.c:230 +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +"\n" +" Дапомна, \"sparse\" файлы з КРЫÐІЦы раÑпазнаецца непрадуманай ÑўрыÑтыкай " +"Ñ–\n" +"ÑуадноÑна гÑтаму, Ñтвараецца \"sparse\" файл ПРЫЗÐÐЧЭÐЬÐÑ. ГÑтак ж " +"паводзіць\n" +"ÑÑбе выбар --sparse=auto. Заданьне --sparse=always прымушае Ñтвараць файл\n" +"ПРЫЗÐÐЧЭÐЬÐÑ Ð·Ð°ÑžÑёды, нават калі КРЫÐІЦРўтрымлівае за шмат " +"паÑлÑдоўнаÑьцей.\n" +"нулÑвых байтаў. ВыкарыÑтоўвайце--sparse=never Ð´Ð»Ñ Ð·Ð°Ð±Ð°Ñ€Ð¾Ð½Ñ‹ ÑтварÑньнÑ\n" +"\"sparse\" файлаў.\n" + +#: src/cp.c:239 +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +" Канчаткам запаÑных файлаў зьÑўлÑецца `~', калі не пераназначаецца\n" +"выбарам --suffix ці пераменнай аÑÑÑ€Ð¾Ð´Ð·ÑŒÐ´Ð·Ñ SIMPLE_BACKUP_SUFFIX.\n" +"ШлÑÑ… кантралÑÐ²Ð°Ð½ÑŒÐ½Ñ Ð²ÑÑ€Ñый можа быць абраны выбарам --backup, ці праз\n" +"пераменную аÑÑÑ€Ð¾Ð´Ð·ÑŒÐ´Ð·Ñ VERSION_CONTROL. ÐœÐ°Ð³Ñ‡Ñ‹Ð¼Ð°Ñ Ð·Ð½Ð°Ñ‡Ñньні:\n" +"\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +" none, off ніколі не запаÑіць (нават калі зададзены --backup)\n" +" numbered, t Ñтвараць Ð½ÑƒÐ¼Ð°Ñ€Ð°Ð²Ð°Ð½Ñ‹Ñ Ð·Ð°Ð¿Ð°ÑÑ‹\n" +" existing, nil нумараваць, калі йÑнуе нумараваны, інакш не нумараваць\n" +" simple, never заўÑёды Ñтвараць ненумараваныÑ\n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +" Загад cp запаÑіць КРЫÐІЦы калі зададзены выбары -f Ñ– -b, Ñ– калі\n" +"КРЫÐІЦРй ПРЫЗÐÐЧЭÐЬÐЕ адна й Ñ‚Ð°Ñ Ð¶ назва Ñ–Ñнуючага звычанага файлу.\n" + +#: src/cp.c:325 +#, c-format +msgid "failed to preserve times for %s" +msgstr "збой пры захаваньні чаÑу Ð´Ð»Ñ %s" + +#: src/cp.c:349 +#, c-format +msgid "failed to preserve permissions for %s" +msgstr "збой пры захаваньні правоў Ð´Ð»Ñ %s" + +#: src/cp.c:434 +#, c-format +msgid "cannot make directory %s" +msgstr "немагчыма Ñтварыць Ñ‚Ñчку %s" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +msgid "missing file argument" +msgstr "прапушчан файлавы довад" + +#: src/cp.c:498 +msgid "missing destination file" +msgstr "прапушчан файл прызначÑньнÑ" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "доÑтуп да %s" + +#: src/cp.c:546 +#, c-format +msgid "%s: specified target is not a directory" +msgstr "%s: Ð·Ð°Ð´Ð°Ð´Ð·ÐµÐ½Ð°Ñ Ð¼Ñта не зьÑўлÑецца Ñ‚Ñчкай" + +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "робіцца ÐºÐ¾Ð¿Ñ–Ñ Ð½ÐµÐºÐ°Ð»ÑŒÐºÑ–Ñ… файлаў, але апошні довад %s - гÑта Ð½Ñ Ñ‚Ñчка" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "калі захоўваюцца шлÑÑ…Ñ–, павінна быць прызначана Ñ‚Ñчка" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"увага: --version-control (-V) ÑаÑтарÑÑž; Ñго падтрымка будзе Ñпынена Ñž\n" +"будучым выпуÑку. ВыкарыÑтоўвайце замеÑÑ‚ Ñго --backup=%s." + +#: src/cp.c:972 src/ln.c:464 +msgid "symbolic links are not supported on this system" +msgstr "Ð·Ð½Ð°ÐºÐ°Ð²Ñ‹Ñ Ð»ÑƒÑ‡Ñ‹Ð²Ñ‹ не падтрымліваюцца гÑтае ÑÑ‹ÑÑ‚Ñмай" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "немагчыма Ñтварыць ні жорÑткае, ні знакавае лучыва" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "від запаÑной копіі" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "Stuart Kemp Ñ– David MacKenzie" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "памылка чытаньнÑ" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "увод недаÑтупны" + +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s: нумар радку за дапушчальнымі межамі" + +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: `%s': нумар радку за дапушчальнымі межамі" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr " на паўтарÑньні %d\n" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s: `%s': Ñупадзеньне не адшукана" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "памылка Ñž пошуку звычайнага выразу" + +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "памылка запіÑу Ð´Ð»Ñ `%s'" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "%s: `+' ці `-' чакаюцца паÑÑŒÐ»Ñ Ð¿Ð°Ð´Ð·ÑлÑльніку" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s: цÑлы чакаецца паÑÑŒÐ»Ñ `%c'" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "%s: `}' патрабуецца Ð´Ð»Ñ Ð¿Ð°Ð´Ð»Ñ–ÐºÑƒ паўтораў" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "%s}: цÑлы патрабуецца паміж `{' Ñ– `}'" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s: зачынÑючы падзÑлÑльнік `%c' прапушчан" + +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: нерÑчаіÑны звычайны выраз: %s" + +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "%s: нерÑчаіÑны прыклад" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s: нумар радку павінен быць большым за нуль." + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "нумар радку `%s' меньшы за папÑÑ€Ñдні нумар радку, %s" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "Увага! Ðумар радку `%s' Ñупадае з папÑÑ€Ñднім нумарам радку." + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "прапушчан вызначальнік пераўтварÑÐ½ÑŒÐ½Ñ Ð²Ð° ÑžÑтаўцы" + +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "нерÑчаіÑны вызначальнік пераўтварÑÐ½ÑŒÐ½Ñ Ð²Ð° ÑžÑтаўцы: %c" + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "нерÑчаіÑны вызначальнік пераўтварÑÐ½ÑŒÐ½Ñ Ð²Ð° ÑžÑтаўцы: \\%.3o" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "ва ÑžÑтаўцы прапушчан %% вызначальнік пераўтварÑньнÑ" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "за шмат ва ÑžÑтаўцы %% вызначальнікаў пераўтварÑньнÑ" + +#: src/csplit.c:1441 +#, c-format +msgid "%s: invalid number" +msgstr "%s: нерÑчаіÑны нумар" + +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐР]... ФÐЙЛ ПРЫКЛÐД...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" +"Выводзіць кавалкі ФÐЙЛу Ð¿Ð°Ð´Ð·ÐµÐ»ÐµÐ½Ñ‹Ñ Ð¿Ð° ПРЫКЛÐД(у) у файлы `xx01', " +"`xx02', ...,\n" +"так Ñама выводзіць на Ñтандартны вывад колькаÑьць байтаў у кожным кавалку.\n" +"\n" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" +" -b, --suffix-format=ФÐРМÐТ ВыкарыÑтоўваць sprintf ФÐРМÐТ замеÑÑ‚ %d\n" +" -f, --prefix=ПРЫСТÐЎКРВыкарыÑтоўваць ПРЫСТÐЎКу замеÑÑ‚ `xx'\n" +" -k, --keep-files Ðе выдалÑць файлы вываду пры памылках\n" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" +" -n, --digits=РÐЗРÐДЫ ВыкарыÑтоўваць зададзеную колькаÑьць " +"разрадаў,\n" +" замеÑÑ‚ звычайных двух.\n" +" -s, --quiet, --silent Ðе друкаваць падлікі памераў файлаў вываду.\n" +" -z, --elide-empty-files ВыдалÑць Ð¿Ð°Ñ€Ð¾Ð¶Ð½Ñ–Ñ Ñ„Ð°Ð¹Ð»Ñ‹ вываду.\n" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" +"\n" +"Чытае Ñтандартны ўвод, калі ФÐЙЛ гÑта -. Кожны ПРЫКЛÐД можа быць:\n" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie й Jim Meyering" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐР]... [ФÐЙЛ]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" +"Друкуе Ð°Ð±Ñ€Ð°Ð½Ñ‹Ñ Ñ‡Ð°Ñкі радкоў з кожнага ФÐЙЛу Ñž Ñтандартны вывад.\n" +"\n" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" +" -b, --bytes=СЬПІС Выводзіць тольі гÑÑ‚Ñ‹Ñ Ð±Ð°Ð¹Ñ‚Ñ‹.\n" +" -c, --characters=СЬПІС Выводзіць толькі гÑÑ‚Ñ‹Ñ Ð·Ð½Ð°ÐºÑ–.\n" +" -d, --delimiter=ПÐДЗЯЛЯЛЬÐІК\n" +" ВыкарыÑтоўваць ПÐДЗЯЛЯЛЬÐІК Ð´Ð»Ñ " +"адмежаваньнÑ\n" +" палёў, замеÑÑ‚ TAB.\n" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" +" -s, --only-delimited Ðе друкуе радкі без падзÑлÑльніку.\n" +" --output-delimiter=РÐДОК ВыкарыÑтоўвае РÐДОК Ñк падзÑлÑльнік " +"вывада,\n" +" дапомна выкарыÑтоўвае падзÑлÑльнік уводу.\n" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "нерÑчаіÑны байт ці ÑÑŒÐ¿Ñ–Ñ Ð¿Ð¾Ð»Ñ" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "толькі адзін від ÑьпіÑу можа быць зададзены" + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "прапушчан ÑÑŒÐ¿Ñ–Ñ Ñтановішчаў" + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "прапушчан ÑÑŒÐ¿Ñ–Ñ Ð¿Ð°Ð»Ñ‘Ñž" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "падзÑлÑльнік паінен быць адным знакам" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "вы павінны пазначыць ÑÑŒÐ¿Ñ–Ñ Ð±Ð°Ð¹Ñ‚Ð°Ñž, знакаў ці палёў" + +#: src/cut.c:720 +msgid "an input delimiter may be specified only when operating on fields" +msgstr "падзÑлÑльнік уводу можа быць зададзены толькі Ð´Ð»Ñ Ð´Ð·ÐµÑньнÑÑž над палÑмі" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" + +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" +"ВыкарыÑтаньне: %s [ВЫБÐР]... [+ФÐРМÐТ]\n" +" ці: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" +" -r, --reference=ФÐЙЛ ÐдлюÑтроўвае Ñ‡Ð°Ñ Ð°Ð¿Ð¾ÑˆÐ½Ñга зьмÑÐ½ÐµÐ½ÑŒÐ½Ñ Ð¤ÐЙЛа.\n" +" -R, --rfc-822 Выдае радок чаÑу ўзгодна з RFC-822.\n" +" -s, --set=РÐДОК УÑталёвае чаÑ, Ñкі апіÑваецца Ñž РÐДке.\n" +" -u, --utc, --universal Друкуе УнівÑÑ€Ñальны Ñкаардынаваны чаÑ.\n" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" +" %A ÐŸÐ¾ÑžÐ½Ð°Ñ Ð¼ÑÑÑ†Ð¾Ð²Ð°Ñ Ð½Ð°Ð·Ð²Ð° днÑ; Ð¿ÐµÑ€Ð°Ð¼ÐµÐ½Ð½Ð°Ñ Ð´Ð°ÑžÐ¶Ñ‹Ð½Ñ (ПÑнÑдзелак...Серада).\n" +" %b Ð¡ÐºÐ°Ñ€Ð¾Ñ‡Ð°Ð½Ð°Ñ Ð¼ÑÑÑ†Ð¾Ð²Ð°Ñ Ð½Ð°Ð·Ð²Ð° меÑÑца (Стд..Снж).\n" +" %B ÐŸÐ¾ÑžÐ½Ð°Ñ Ð¼ÑÑÑ†Ð¾Ð²Ð°Ñ Ð½Ð°Ð·Ð²Ð° меÑÑца пераменнае даўжыні (Студзень..." +"Сьнежань).\n" +" %c МÑÑÑ†Ð¾Ð²Ñ‹Ñ Ð´Ð°Ñ‚Ð° й Ñ‡Ð°Ñ (Чцв Ð›Ñ–Ñ 18 06:06:06 MSK 1982).\n" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" +" %C Стагоддзе (год, падзелены на 100 Ñ– абрÑзаны да цÑлага) [00-99].\n" +" %d Дзень меÑÑца (01..31).\n" +" %D Дата (мм/дздз/гг).\n" +" %e Дзень меÑÑца, бÑз 0 ( 1..31).\n" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" +" %h Ñк Ñ– %b\n" +" %H гадзіна (00..23)\n" +" %I гадзіна (01..12)\n" +" %j дзень года (001..366)\n" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" +" %k гадзіна ( 0..23)\n" +" %l гадзіна ( 1..12)\n" +" %m меÑÑц (01..12)\n" +" %M хвіліна (00..59)\n" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" +" %n новы радок\n" +" %N нанаÑÑкунды (000000000..999999999)\n" +" %p мÑÑцовы паказчык AM ці PM вÑлікімі літарамі (шмат дзе нÑма)\n" +" %P мÑÑцовы паказчык am ці pm маленькімі літарамі (шмат дзе нÑма)\n" +" %r чаÑ, 12-гадзінны (гг:хвхв:ÑÑ [AP]M)\n" +" %R чаÑ, 24-гадзінны (гг:хвхв)\n" +" %s ÑÑкундаў з \"00:00:00 1970-01-01 UTC\" (пашырÑньне ад GNU)\n" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" +" %U Ðумар Ñ‚Ñ‹Ð´Ð½Ñ Ð³Ð¾Ð´Ð°, дзе першы дзень Ñ‚Ñ‹Ð´Ð½Ñ - нÑÐ´Ð·ÐµÐ»Ñ (00..53).\n" +" %V Ðумар Ñ‚Ñ‹Ð´Ð½Ñ Ð³Ð¾Ð´Ð°, дзе першы дзень Ñ‚Ñ‹Ð´Ð½Ñ - панÑдзелак (01..53).\n" +" %w Дзень Ñ‚Ñ‹Ð´Ð½Ñ (0..6); дзе 0 - гÑта нÑдзелÑ.\n" +" %W Ðумар Ñ‚Ñ‹Ð´Ð½Ñ Ð³Ð¾Ð´Ð°, дзе першы дзень Ñ‚Ñ‹Ð´Ð½Ñ - панÑдзелак (00..53).\n" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" +" %x мÑÑцовы выглÑд даты (мм/дздз/гг)\n" +" %X мÑÑцовы выглÑд чаÑу (%Г:%Хв:%С)\n" +" %y дзьве Ð°Ð¿Ð¾ÑˆÐ½Ñ–Ñ Ð»Ñ–Ñ‡Ð±Ñ‹ году (00..99)\n" +" %Y год (1970...)\n" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "Ñтандартны ўвод" + +#: src/date.c:268 src/date.c:460 +#, c-format +msgid "invalid date `%s'" +msgstr "нерÑчаіÑÐ½Ð°Ñ Ð´Ð°Ñ‚Ð° \"%s\"" + +#: src/date.c:364 +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "выбары, што вызначаюць дату Ð´Ð»Ñ Ð´Ñ€ÑƒÐºÑƒ ўзаема выключныÑ" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "выбары Ð´Ð»Ñ ÑžÑталÑÐ²Ð°Ð½ÑŒÐ½Ñ Ð¹ друку чаÑу нельга ўжываць разам" + +#: src/date.c:377 +#, c-format +msgid "too many non-option arguments: %s%s" +msgstr "вельмі шмат довадаў, што не датычацца выбара: %s%s" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" + +#: src/date.c:397 +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "" +"радок фармату можа быць не заданы, калі прыÑутнічае выбар --rfc-822 (-R)" + +#: src/date.c:433 +msgid "undefined" +msgstr "нÑвызначана" + +#: src/date.c:435 +msgid "cannot get time of day" +msgstr "немагчыма атрымаць Ñ‡Ð°Ñ Ð´Ð½Ñ" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "немагчыма ÑžÑталÑваць дату" + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "Поль Рубін, ДÑвід МакКінзі й Стуарт КÑмп" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐР]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "%s+%s запіÑаў прачытана.\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "%s+%s запіÑаў запіÑана.\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "абрÑзаны запіÑ" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "абрÑÐ·Ð°Ð½Ñ‹Ñ Ð·Ð°Ð¿Ñ–ÑÑ‹" + +#: src/dd.c:382 +#, c-format +msgid "closing input file %s" +msgstr "зачынÑецца файл уводу %s" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "закрываецца файл вываду %s" + +#: src/dd.c:469 +#, c-format +msgid "writing to %s" +msgstr "ідзе Ð·Ð°Ð¿Ñ–Ñ Ñƒ %s" + +#: src/dd.c:501 +#, c-format +msgid "invalid conversion: %s" +msgstr "нерÑчаіÑнае пераўтварÑньне: %s" + +#: src/dd.c:557 +#, c-format +msgid "unrecognized option %s" +msgstr "нераÑпазнаны выбар %s" + +#: src/dd.c:610 +#, c-format +msgid "unrecognized option %s=%s" +msgstr "нераÑпазнаны выбар %s=%s" + +#: src/dd.c:616 +#, c-format +msgid "invalid number %s" +msgstr "нерÑчаіÑны нумар %s" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"толькі адно пераўтварÑньне Ñž {ascii,ebcdic,ibm}, {lcase,ucase}, {block," +"unblock}, {unblock,sync}" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" + +#: src/dd.c:1170 src/dd.c:1188 +#, c-format +msgid "opening %s" +msgstr "адкрываецца %s" + +#: src/dd.c:1196 +msgid "file offset out of range" +msgstr "водÑтуп у файле па-за дапушчальнымі межамі" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "" + +#: src/df.c:49 +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "" + +#: src/df.c:153 +#, fuzzy +msgid "Filesystem Type" +msgstr "Ð¤Ð°Ð¹Ð»Ð°Ð²Ð°Ñ ÑÑ‹ÑÑ‚Ñма" + +#: src/df.c:155 +#, fuzzy +msgid "Filesystem " +msgstr "Ð¤Ð°Ð¹Ð»Ð°Ð²Ð°Ñ ÑÑ‹ÑÑ‚Ñма" + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr "" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr "" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr "" + +#: src/df.c:167 +#, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr "" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr "" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr " Змацавана на\n" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" + +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "" + +#: src/df.c:903 +msgid "Warning: " +msgstr "Увага!" + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "%s немагчыма прачытаць табліцу замацаваных файлавых ÑÑ‹ÑÑ‚Ñм" + +#: src/dircolors.c:103 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐР]... [ФÐЙЛ]\n" + +#: src/dircolors.c:104 +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" + +#: src/dircolors.c:299 +#, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s:%lu: нерÑчаіÑны радок; прапушчана Ð´Ñ€ÑƒÐ³Ð°Ñ Ñ‡Ð°Ñтка" + +#: src/dircolors.c:371 +#, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s:%lu: нераÑпазнанае ключавое Ñлова %s" + +#: src/dircolors.c:372 +msgid "" +msgstr "<унутраны>" + +#: src/dircolors.c:467 +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "" + +#: src/dirname.c:33 src/pathchk.c:59 +msgid "David MacKenzie and Jim Meyering" +msgstr "ДÑвід МакКінзі й Джым Міерынг" + +#: src/dirname.c:46 +#, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"ВыкарыÑтаньне: %s ÐÐЗВÐ\n" +" ці: %s ВЫБÐР\n" + +#: src/dirname.c:51 +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" + +#: src/du.c:49 +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" + +#: src/du.c:337 +#, c-format +msgid "cannot change to parent of directory %s" +msgstr "немагчыма перайÑьці да бацькоўÑкае Ñ‚Ñчкі %s" + +#: src/du.c:345 +#, c-format +msgid "cannot change to directory %s" +msgstr "немагчыма перайÑьці Ñž Ñ‚Ñчку %s" + +#: src/du.c:352 +#, c-format +msgid "cannot read directory %s" +msgstr "немагчыма прачытаць Ñ‚Ñчку %s" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "уÑÑго" + +#: src/du.c:641 +#, c-format +msgid "invalid maximum depth %s" +msgstr "Ð½ÐµÐ·Ñ€Ð°Ð·ÑƒÐ¼ÐµÐ»Ð°Ñ Ð½Ð°Ð¹Ð±Ð¾Ð»ÑŒÑˆÐ°Ñ Ð³Ð»Ñ‹Ð±Ñ–Ð½Ñ %s" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "" + +#: src/echo.c:77 +#, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐР]... [РÐДОК]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/env.c:93 +msgid "Richard Mlynarik and David MacKenzie" +msgstr "Рычард Млінарык Ñ– ДÑвід МакКінзі" + +#: src/env.c:119 +#, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "" +"ВыкарыÑтаньне: %s [ВЫБÐР]... [-] [ПЕРÐМЕÐÐÐЯ=ЗÐÐЧЭÐЬÐЕ]... [ЗÐГÐД " +"[ДОВÐД]...]\n" + +#: src/env.c:122 +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "памер табулÑцыі зьмÑшчае нерÑчаіÑны знак" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "памер табулÑцыі Ð½Ñ Ð¼Ð¾Ð¶Ð° быць нулÑвым" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "" + +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "выбар \"-LIST\" ÑаÑтарÑÑž, выкарыÑтоўвайце \"-t LIST\"" + +#: src/expr.c:90 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"ВыкарыÑтаньне: %s ВЫРÐЗ\n" +" ці: %s ВЫБÐР\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +msgid "syntax error" +msgstr "ÑынтакÑÑ–Ñ‡Ð½Ð°Ñ Ð¿Ð°Ð¼Ñ‹Ð»ÐºÐ°" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" + +#: src/expr.c:586 src/expr.c:625 +msgid "non-numeric argument" +msgstr "Ð½Ñ Ð»Ñ–Ñ‡Ð±Ð°Ð²Ñ‹ довад" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "дзÑленьне на нуль" + +#: src/factor.c:74 +#, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"ВыкарыÑтаньне: %s [ÐУМÐР]...\n" +" ці: %s ВЫБÐР\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" + +#: src/factor.c:85 +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "\"%s\" - гÑта Ñтаноўчы цÑлы лік" + +#: src/false.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" + +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" + +#: src/fmt.c:345 +#, c-format +msgid "invalid width option: `%s'" +msgstr "незразумелы выбар, што вызначае шырыню: \"%s\"" + +#: src/fmt.c:385 +#, c-format +msgid "invalid width: `%s'" +msgstr "незразумела шырынÑ: \"%s\"" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" + +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "выбар \"%s\" ÑаÑтарÑлы, выкарыÑтоўвайце \"%s\"" + +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "Ð½ÐµÐ·Ñ€Ð°Ð·ÑƒÐ¼ÐµÐ»Ð°Ñ ÐºÐ¾Ð»ÑŒÐºÐ°Ñьць Ñлупкоў: \"%s\"" + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" + +#: src/head.c:190 +#, c-format +msgid "cannot reposition file pointer for %s" +msgstr "" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "" + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "колькаÑьць радкоў" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "колькаÑьць байт" + +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "Ð½ÐµÐ·Ñ€Ð°Ð·ÑƒÐ¼ÐµÐ»Ð°Ñ ÐºÐ¾Ð»ÑŒÐºÐ°Ñьць радкоў" + +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "Ð½ÐµÐ·Ñ€Ð°Ð·ÑƒÐ¼ÐµÐ»Ð°Ñ ÐºÐ¾Ð»ÑŒÐºÐ°Ñьць байт" + +#: src/head.c:341 +#, c-format +msgid "unrecognized option `-%c'" +msgstr "нераÑпазнаны выбар `-%c'" + +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "" + +#: src/hostid.c:48 +#, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" + +#: src/hostname.c:67 +#, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" + +#: src/hostname.c:104 +#, c-format +msgid "cannot set hostname to `%s'" +msgstr "" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "" + +#: src/id.c:36 +msgid "Arnold Robbins and David MacKenzie" +msgstr "" + +#: src/id.c:87 +#, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "" + +#: src/id.c:88 +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" + +#: src/id.c:162 +msgid "cannot print only user and only group" +msgstr "" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "" + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "" + +#: src/id.c:235 +#, c-format +msgid "cannot find name for group ID %u" +msgstr "" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "" + +#: src/id.c:385 +msgid " groups=" +msgstr "" + +#: src/install.c:269 +msgid "the strip option may not be used when installing a directory" +msgstr "" + +#: src/install.c:292 src/mkdir.c:140 +#, c-format +msgid "invalid mode %s" +msgstr "" + +#: src/install.c:307 src/install.c:371 +#, c-format +msgid "creating directory %s" +msgstr "" + +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "" + +#: src/install.c:435 +#, c-format +msgid "%s is a directory" +msgstr "" + +#: src/install.c:495 +#, c-format +msgid "cannot obtain time stamps for %s" +msgstr "" + +#: src/install.c:507 +#, c-format +msgid "cannot set time stamps for %s" +msgstr "" + +#: src/install.c:528 +msgid "fork system call failed" +msgstr "" + +#: src/install.c:532 +msgid "cannot run strip" +msgstr "" + +#: src/install.c:539 +msgid "strip failed" +msgstr "" + +#: src/install.c:560 +#, c-format +msgid "invalid user %s" +msgstr "" + +#: src/install.c:578 +#, c-format +msgid "invalid group %s" +msgstr "" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "" + +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" + +#: src/join.c:165 +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" + +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" + +#: src/join.c:645 +#, c-format +msgid "invalid field specifier: `%s'" +msgstr "" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, c-format +msgid "invalid field number: `%s'" +msgstr "" + +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "" + +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "" + +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "" + +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "" + +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" +"ВыкарыÑтаньне: %s [-s СЫГÐÐЛ | -СЫГÐÐЛ] PID...\n" +" ці: %s -l [СЫГÐÐЛ]...\n" +" ці: %s -t [СЫГÐÐЛ]...\n" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" +" ДаÑылае Ñыгналы працÑÑам альбо ÑÑŒÐ¿Ñ–Ñ Ñыгналаў.\n" +"\n" + +#: src/kill.c:106 +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" + +#: src/kill.c:163 +#, c-format +msgid "%s: invalid signal" +msgstr "%s: незразумелы Ñыгнал" + +#: src/kill.c:262 +#, c-format +msgid "missing operand after `%s'" +msgstr "" + +#: src/kill.c:274 +#, c-format +msgid "%s: invalid process id" +msgstr "%s: незразумелы id-працÑÑа" + +#: src/kill.c:327 +#, c-format +msgid "invalid option -- %c" +msgstr "незразумелы выбар -- %c" + +#: src/kill.c:336 +#, c-format +msgid "%s: multiple signals specified" +msgstr "" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "" + +#: src/link.c:51 +#, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"ВыкарыÑтаньне: %s ФÐЙЛ1 ФÐЙЛ2\n" +" ці: %s ВЫБÐР\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" + +#: src/link.c:98 +#, c-format +msgid "cannot create link %s to %s" +msgstr "немагчыма Ñтварыць ÑпаÑылку %s на %s" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "Майк Паркер Ñ– ДÑвід МакКінзі" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "" + +#: src/ln.c:174 +#, c-format +msgid "%s: hard link not allowed for directory" +msgstr "%s: жорÑÑ‚ÐºÑ–Ñ ÑпаÑылкі Ð´Ð»Ñ Ñ‚Ñчак не дазволены" + +#: src/ln.c:246 +#, c-format +msgid "%s: cannot overwrite directory" +msgstr "%s: немагчыма перазапіÑаць Ñ‚Ñчку" + +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "%s: замÑніць %s? " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: файл Ñ–Ñнуе" + +#: src/ln.c:304 +#, c-format +msgid "create symbolic link %s to %s" +msgstr "Ñтварыць знакавую ÑпаÑылку %s на %s" + +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "Ñтварыць жорÑткую ÑпаÑылку %s на %s" + +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "Ñтвараецца Ð·Ð½Ð°ÐºÐ°Ð²Ð°Ñ ÑпаÑылка %s на %s" + +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "Ñтвараецца жоÑÑ‚ÐºÐ°Ñ ÑпаÑылка %s на %s" + +#: src/ln.c:339 +#, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" + +#: src/ln.c:521 +#, c-format +msgid "%s: specified target directory is not a directory" +msgstr "" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐР]\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" +" Друкуе Ñ–Ð¼Ñ (ÑÑ‹ÑÑ‚Ñмнае) бÑгучага карыÑтальніка.\n" +"\n" + +#: src/logname.c:99 +#, c-format +msgid "%s: no login name\n" +msgstr "" + +#: src/ls.c:673 +msgid "%b %e %Y" +msgstr "" + +#: src/ls.c:681 +msgid "%b %e %H:%M" +msgstr "" + +#: src/ls.c:1307 +#, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "" +"незаўважае незразумелы памер табулÑцыі Ñž пераменнай аÑÑÑ€Ð¾Ð´Ð·ÑŒÐ´Ð·Ñ TABSIZE: %s" + +#: src/ls.c:1482 +#, c-format +msgid "invalid line width: %s" +msgstr "Ð½ÐµÐ·Ñ€Ð°Ð·ÑƒÐ¼ÐµÐ»Ð°Ñ ÑˆÑ‹Ñ€Ñ‹Ð½Ñ Ñ€Ð°Ð´ÐºÐ°: %s" + +#: src/ls.c:1556 +#, c-format +msgid "invalid tab size: %s" +msgstr "незразумелы памер табулÑцыі: %s" + +#: src/ls.c:1722 +#, c-format +msgid "invalid time style format %s" +msgstr "незразумелы фармат Ñтылю чаÑу %s" + +#: src/ls.c:2054 +#, c-format +msgid "unrecognized prefix: %s" +msgstr "нераÑÐ¿Ð°Ð·Ð½Ð°Ð½Ð°Ñ Ð¿Ñ€Ñ‹Ñтаўка: %s" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "" + +#: src/ls.c:2145 +#, c-format +msgid "cannot determine device and inode of %s" +msgstr "" + +#: src/ls.c:2155 +#, c-format +msgid "not listing already-listed directory: %s" +msgstr "" + +#: src/ls.c:2208 src/remove.c:929 +#, c-format +msgid "reading directory %s" +msgstr "чытаецца Ñ‚Ñчка %s" + +#: src/ls.c:2603 +#, c-format +msgid "cannot compare file names %s and %s" +msgstr "" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" + +#: src/ls.c:3784 +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" + +#: src/ls.c:3799 +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" + +#: src/ls.c:3831 +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "Ульрых ДрыпÑÑ€ Ñ– Скот Мілер" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"ВыкарыÑтаньне: %s [ВЫБÐР] [ФÐЙЛ]...\n" +" ці: %s [ВЫБÐР] --check [ФÐЙЛ]\n" +"Друкуе ці правÑрае %s (%d-бітную) кантрольную Ñуму.\n" +"Калі нÑма ФÐЙЛа, ці калі ФÐЙЛ гÑта -, чытае Ñтандартны ўвод.\n" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" +"\n" +" -b, --binary Чытае файлы Ñž дваічным Ñ€Ñжыме (дапомна на\n" +" DOS/Windows ÑÑ‹ÑÑ‚Ñмах).\n" +" -c, --check ПравÑрае %s Ñумы па атрыманым ÑьпіÑе.\n" +" -t, --text Чытае файлы Ñž Ñ‚ÑкÑтавым Ñ€Ñжыме (дапомна).\n" +"\n" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "%s: %lu: неправільна Ñкладзены %s радок з кантрольнай Ñумай" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "%s: немагчыма прачытаць файл\n" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "ПÐМЫЛКÐ" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "ДОБРÐ" + +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%s: памылка чытаньнÑ" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "" + +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "УВÐГÐ! %d з %d пералічаных %s немагчыма прачытаць" + +#: src/md5sum.c:473 +msgid "file" +msgstr "файл" + +#: src/md5sum.c:473 +msgid "files" +msgstr "файлы" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "УВÐГÐ! %d з %d вылічаных %s ÐЕ СУПÐДÐЕ" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "ÐºÐ°Ð½Ñ‚Ñ€Ð¾Ð»ÑŒÐ½Ð°Ñ Ñума" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "ÐºÐ°Ð½Ñ‚Ñ€Ð¾Ð»ÑŒÐ½Ñ‹Ñ Ñумы" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "выбары --string Ñ– --check узаема выключныÑ" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "" + +#: src/mkdir.c:61 +#, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐР] ТЭЧКР...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" +"Стварае ТЭЧКу(Ñ–), калі Ñны ÑˆÑ‡Ñ Ð½Ðµ Ñ–Ñнуюць.\n" +"\n" + +#: src/mkdir.c:69 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" + +#: src/mkdir.c:113 +#, c-format +msgid "created directory %s" +msgstr "" + +#: src/mkdir.c:190 +#, c-format +msgid "cannot set permissions of directory %s" +msgstr "" + +#: src/mkfifo.c:55 +#, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐР] ÐÐЗВÐ...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" + +#: src/mkfifo.c:63 src/mknod.c:64 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "fifo файлы непадтрымліваюцца" + +#: src/mkfifo.c:123 src/mknod.c:127 +msgid "invalid mode" +msgstr "нерÑчаіÑны Ñ€Ñжым" + +#: src/mkfifo.c:142 +#, c-format +msgid "cannot set permissions of fifo %s" +msgstr "немагчыма ÑžÑталÑваць правы fifo %s" + +#: src/mknod.c:55 +#, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐР]... ÐÐЗВРТЫП [МÐЖОР МІÐОР]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" + +#: src/mknod.c:76 +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" + +#: src/mknod.c:141 +msgid "wrong number of arguments" +msgstr "Ð¿Ð°Ð¼Ñ‹Ð»ÐºÐ°Ð¾Ð²Ð°Ñ ÐºÐ¾Ð»ÑŒÐºÐ°Ñьць довадаў" + +#: src/mknod.c:153 +msgid "block special files not supported" +msgstr "ÑпÑцыÑÐ»ÑŒÐ½Ñ‹Ñ Ð±Ð»Ñ‘Ñ‡Ð½Ñ‹Ñ Ñ„Ð°Ð¹Ð»Ñ‹ непадтрымліваюцца" + +#: src/mknod.c:162 +msgid "character special files not supported" +msgstr "ÑпÑцыÑÐ»ÑŒÐ½Ñ‹Ñ Ð·Ð½Ð°ÐºÐ°Ð²Ñ‹Ñ Ñ„Ð°Ð¹Ð»Ñ‹ непадтрымліваюцца" + +#: src/mknod.c:171 +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" + +#: src/mknod.c:186 +#, c-format +msgid "invalid major device number %s" +msgstr "нерÑчаіÑны мажорны нумар прылады %s" + +#: src/mknod.c:191 +#, c-format +msgid "invalid minor device number %s" +msgstr "нерÑчаіÑны мінорны нумар прылады %s" + +#: src/mknod.c:196 +#, c-format +msgid "invalid device %s %s" +msgstr "нерÑчаіÑÐ½Ð°Ñ Ð¿Ñ€Ñ‹Ð»Ð°Ð´Ð° %s %s" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "" + +#: src/mknod.c:231 +#, c-format +msgid "cannot set permissions of %s" +msgstr "немагчыма ÑžÑталÑваць правы %s" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "Майк Паркер, ДÑвід МакКінзі й Джым Міерынг" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Пераназывае КРЫÐІЦу Ñž ПРЫЗÐÐЧЭÐЬÐЕ, ці перамÑшчае КРЫÐІЦу(Ñ‹) Ñž ТЭЧКУ.\n" +"\n" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" + +#: src/mv.c:339 +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" + +#: src/mv.c:467 +#, c-format +msgid "specified target, %s is not a directory" +msgstr "" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "" + +#: src/nice.c:67 +#, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐР] [ЗÐГÐД [ДОВÐД(Ñ‹)]...]\n" + +#: src/nice.c:68 +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" + +#: src/nice.c:109 src/nice.c:122 +#, c-format +msgid "invalid option `%s'" +msgstr "нерÑчаіÑны выбар \"%s\"" + +#: src/nice.c:147 +#, c-format +msgid "invalid priority `%s'" +msgstr "нерÑчаіÑны прыÑрытÑÑ‚ \"%s\"" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "" + +#: src/nice.c:178 src/nice.c:187 +msgid "cannot get priority" +msgstr "немагчыма атрымаць прыÑрытÑÑ‚" + +#: src/nice.c:192 +msgid "cannot set priority" +msgstr "немагчыма уÑталÑваць прыÑрытÑÑ‚" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "Скот Бартман Ñ– ДÑвід МакКінзі" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" + +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "нерÑчаіÑны пачатковы нумар радка: \"%s\"" + +#: src/nl.c:514 +#, c-format +msgid "invalid line number increment: `%s'" +msgstr "нерÑчаіÑнае значÑньне павелічÑÐ½ÑŒÐ½Ñ Ñ€Ð°Ð´ÐºÐ°: \"%s\"" + +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "нерÑчаіÑÐ½Ð°Ñ ÐºÐ¾Ð»ÑŒÐºÐ°Ñьць парожніх радокоў: \"%s\"" + +#: src/nl.c:541 +#, c-format +msgid "invalid line number field width: `%s'" +msgstr "" + +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"ВыкарыÑтаньне: %s [ВЫБÐР]... [ФÐЙЛ]...\n" +" ці: %s --traditional [ФÐЙЛ] [[+]ВОДСТУП [[+]ÐДМЕЦІÐÐ]]\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "УÑе довады Ð´Ð»Ñ Ð´Ð¾ÑžÐ³Ñ–Ñ… выбараў абавÑзковы й Ð´Ð»Ñ ÐºÐ°Ñ€Ð¾Ñ‚ÐºÑ–Ñ….\n" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" + +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "нерÑчаіÑны від радка \"%s\"" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" +"нерÑчаіÑны від радка \"%s\";\n" +"ÑÑ‹ÑÑ‚Ñма не прадаÑтаўлÑе %lu-байтны цÑлы тып" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" + +#: src/od.c:917 +#, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "" + +#: src/od.c:1717 +msgid "skip argument" +msgstr "" + +#: src/od.c:1725 +msgid "limit argument" +msgstr "" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "Ð½Ð°Ð¹Ð¼ÐµÐ½ÑŒÑˆÐ°Ñ Ð´Ð°ÑžÐ¶Ñ‹Ð½Ñ Ñ€Ð°Ð´ÐºÐ°" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "%s занадта вÑлікі" + +#: src/od.c:1804 +msgid "width specification" +msgstr "" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "Увага! ÐерÑчаіÑÐ½Ð°Ñ ÑˆÑ‹Ñ€Ñ‹Ð½Ñ %lu; выкарыÑтоўвайце %d замеÑÑ‚ Ñе" + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "ДÑвід М. Ігнат Ñ– ДÑвід МакКінзі" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "Ñтандартны вывад зачынены" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" + +#: src/pathchk.c:146 +#, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐР]... ÐÐЗВÐ...\n" + +#: src/pathchk.c:147 +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" + +#: src/pathchk.c:237 +#, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "" + +#: src/pathchk.c:257 +#, c-format +msgid "`%s' is not a directory" +msgstr "\"%s\" - не зьÑўлÑецца Ñ‚Ñчкай" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "" + +#: src/pathchk.c:355 +#, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "" + +#: src/pathchk.c:381 +#, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "Уліковае імÑ:" + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "У ÑапраўднаÑьці:" + +#: src/pinky.c:298 +msgid "???\n" +msgstr "???\n" + +#: src/pinky.c:318 +msgid "Directory: " +msgstr "ТÑчка: " + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "Ðбалонка:" + +#: src/pinky.c:341 +msgid "Project: " +msgstr "ПражÑкт:" + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "ПлÑн:\n" + +#: src/pinky.c:386 +msgid "Login" +msgstr "ІмÑ" + +#: src/pinky.c:388 +msgid "Name" +msgstr "Ðазва" + +#: src/pinky.c:389 +msgid " TTY" +msgstr " ТÑрмінал" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "ДарÑмна" + +#: src/pinky.c:392 +msgid "When" +msgstr "Калі" + +#: src/pinky.c:395 +msgid "Where" +msgstr "Дзе" + +#: src/pinky.c:469 +#, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐР]... [КÐРЫСТÐЛЬÐІК]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" + +#: src/pinky.c:574 +msgid "no username specified; at least one must be specified when using -l" +msgstr "" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "" + +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "" + +#: src/pr.c:829 +#, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "" + +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "" + +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "" + +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "" + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "" + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "Старонка %d" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr "" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" + +#: src/printenv.c:43 +msgid "David MacKenzie and Richard Mlynarik" +msgstr "ДÑвід МакКінзі й Рычард Млынарык" + +#: src/printenv.c:63 +#, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" +"ВыкарыÑтаньне: %s [ПЕРÐМЕÐÐÐЯ]...\n" +" ці: %s ВЫБÐР\n" +"Калі ПЕРÐМЕÐÐÐЯ незададзена, друкуе Ñ–Ñ… уÑе.\n" +"\n" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "" + +#: src/printf.c:100 +#, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"ВыкарыÑтаньне: %s ФÐРМÐТ [ДОВÐД]...\n" +" ці: %s ВЫБÐР\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" +"Друкуе ДОВÐД(Ñ‹) ÑуадноÑна ФÐРМÐТу.\n" +"\n" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "%s: чакаецца лічбавае значÑньне" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "" + +#: src/printf.c:292 +#, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "" + +#: src/printf.c:472 +#, fuzzy, c-format +msgid "invalid field width: %s" +msgstr "Ð½ÐµÐ·Ñ€Ð°Ð·ÑƒÐ¼ÐµÐ»Ð°Ñ ÑˆÑ‹Ñ€Ñ‹Ð½Ñ Ñ€Ð°Ð´ÐºÐ°: %s" + +#: src/printf.c:498 +#, fuzzy, c-format +msgid "invalid precision: %s" +msgstr "нерÑчаіÑнае пераўтварÑньне: %s" + +#: src/printf.c:519 +#, c-format +msgid "%%%c: invalid directive" +msgstr "" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "ВыкарыÑтаньне: %s фармат [довад...]\n" + +#: src/printf.c:594 +#, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"ВыкарыÑтаньне: %s [ВЫБÐР]... [УВОД]... (без -G)\n" +" ці: %s -G [ВЫБÐР]... [УВОД [ВЫВÐД]]\n" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" +"Друкуе поўную назву бÑгучае Ñ‚Ñчкі.\n" +"\n" + +#: src/pwd.c:74 +msgid "ignoring non-option arguments" +msgstr "" + +#: src/pwd.c:78 +msgid "cannot get current directory" +msgstr "немагчыма атрымаць бÑгучую Ñ‚Ñчку" + +#: src/readlink.c:69 +#, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐР]... ФÐЙЛ\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" +"ÐдлюÑтроўвае значÑньне знакавага лучыва Ñž Ñтандартны вывад.\n" +"\n" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" + +#: src/remove.c:394 +#, c-format +msgid "cannot chdir from %s to .." +msgstr "немагчыма зьмÑніць Ñ‚Ñчку з %s на .." + +#: src/remove.c:407 src/remove.c:488 +#, c-format +msgid "cannot lstat `.' in %s" +msgstr "" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, c-format +msgid "cannot lstat %s" +msgstr "" + +#: src/remove.c:603 +#, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "" + +#: src/remove.c:604 +#, c-format +msgid "%s: descend into directory %s? " +msgstr "" + +#: src/remove.c:614 +#, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: выдаліць абаронены ад запіÑу %s %s? " + +#: src/remove.c:615 +#, c-format +msgid "%s: remove %s %s? " +msgstr "%s: выдаліць %s %s? " + +#: src/remove.c:639 +#, c-format +msgid "removed %s\n" +msgstr "выдален %s\n" + +#: src/remove.c:654 src/remove.c:1059 +#, c-format +msgid "removed directory: %s\n" +msgstr "Ñ‚Ñчка выдалена: %s\n" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, c-format +msgid "cannot remove directory %s" +msgstr "немагчыма выдаліць Ñ‚Ñчку %s" + +#: src/remove.c:815 +#, c-format +msgid "cannot open directory %s" +msgstr "немагчыма адчыніць Ñ‚Ñчку %s" + +#: src/remove.c:896 src/remove.c:1002 +#, c-format +msgid "cannot chdir from %s to %s" +msgstr "немагчыма перайÑьці з %s у %s" + +#: src/remove.c:904 +#, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "немагчыма выдаліць `.' ці `..'" + +#: src/rm.c:60 +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "Поль Рубін, ДÑвід МакКінзі, Рычард Столман Ñ– Джым Міерынг" + +#: src/rm.c:99 src/touch.c:244 +#, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐР]... ФÐЙЛ...\n" + +#: src/rm.c:100 +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"ВыдалÑе (адлучае) ФÐЙЛ(Ñ‹).\n" +"\n" +" -d, --directory Ðдлучае ФÐЙЛ, нават калі гÑта непарожнÑÑ " +"Ñ‚Ñчка\n" +" (толькі Ð´Ð»Ñ ÑупÑÑ€-карыÑтальніка)\n" +" -f, --force Ðе зьвÑртае ўвагі на неіÑÐ½ÑƒÑŽÑ‡Ñ‹Ñ Ñ„Ð°Ð¹Ð»Ñ‹,\n" +" ніколі не паведамлÑе.\n" +" -i, --interactive Выводзіць паведамленьне да кожнага " +"выдаленьнÑ.\n" +" -r, -R, --recursive РÑкурÑыўна выдалÑе зьмеÑÑ‚ Ñ‚Ñчкі.\n" +" -v, --verbose Тлумачыць кожнае дзеÑньне.\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" +"\n" +"ВыдалÑе файлы, ÑÐºÑ–Ñ Ð¿Ð°Ñ‡Ñ‹Ð½Ð°ÑŽÑ†Ñ†Ð° з `-', напраклад `-foo', выкарыÑтоўвайце\n" +"адзін з наÑтупных загадаў:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" +"\n" +" Ðдзначце, што калі Ð’Ñ‹ выкарыÑтоўваеце rm Ð´Ð»Ñ Ð²Ñ‹Ð´Ð°Ð»ÐµÐ½ÑŒÐ½Ñ Ñ„Ð°Ð¹Ð»Ð°, звычайна " +"Ñ–Ñнуе магчымаÑьць аднавіць зьмеÑÑ‚ гÑтага файла. Калі Ð’Ñ‹ жадаеце большае\n" +"ўпÑўненаÑьці, што зьмеÑÑ‚ фала нельга аднавіць, разгледзьце выкарыÑтаньне " +"shred.\n" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, c-format +msgid "removing directory, %s" +msgstr "выдалÑецца Ñ‚Ñчка, %s" + +#: src/rmdir.c:146 +#, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐР]... ТЭЧКР...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" + +#: src/rmdir.c:154 +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" + +#: src/seq.c:82 +#, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"ВыкарыÑтаньне: %s [ВЫБÐР]... ÐПОШÐІ\n" +" ці: %s [ВЫБÐР]... ПЕРШЫ ÐПОШÐІ\n" +" ці: %s [ВЫБÐР]... ПЕРШЫ ПРЫРОСТ ÐПОШÐІ\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" + +#: src/seq.c:96 +#, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" + +#: src/seq.c:119 +#, c-format +msgid "invalid floating point argument: %s" +msgstr "" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" + +#: src/seq.c:423 +#, c-format +msgid "invalid format string: `%s'" +msgstr "нерÑчаіÑны радок фармату: \"%s\"" + +#: src/seq.c:445 +msgid "format string may not be specified when printing equal width strings" +msgstr "" + +#: src/shred.c:160 +#, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐРЫ] ФÐЙЛ [...]\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" + +#: src/shred.c:174 +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" + +#: src/shred.c:808 +#, c-format +msgid "%s: cannot rewind" +msgstr "" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "%s: праход %lu/%lu (%s)..." + +#: src/shred.c:868 +#, c-format +msgid "%s: error writing at offset %s" +msgstr "%s: памылка запіÑу Ð»Ñ Ð²Ð¾Ð´Ñтупа %s" + +#: src/shred.c:897 +#, c-format +msgid "%s: file too large" +msgstr "%s: файл занадта вÑлікі" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "%s: праход %lu/%lu (%s)...%s" + +#: src/shred.c:936 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "" + +#: src/shred.c:1195 +#, c-format +msgid "%s: invalid file type" +msgstr "%s: нерÑчаіÑны від файла" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s: файл мае адмоўны памер" + +#: src/shred.c:1265 +#, c-format +msgid "%s: error truncating" +msgstr "%s: памылка абрÑзаньнÑ" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "%s: выдаленьне" + +#: src/shred.c:1412 +#, c-format +msgid "%s: renamed to %s" +msgstr "%s: перайменаваны Ñž %s" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s: выдален" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "%s: немагчыма выдаліць" + +#: src/shred.c:1551 +#, c-format +msgid "%s: invalid number of passes" +msgstr "%s: Ð½ÐµÐ·Ñ€Ð°Ð·ÑƒÐ¼ÐµÐ»Ð°Ñ ÐºÐ¾Ð»ÑŒÐºÐ°Ñьць праходаў" + +#: src/shred.c:1568 +#, c-format +msgid "%s: invalid file size" +msgstr "%s: нерÑчаіÑны памер файла" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "Джым Міерынг Ñ– Поль Эгерт" + +#: src/sleep.c:52 +#, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" + +#: src/sleep.c:155 +#, c-format +msgid "invalid time interval `%s'" +msgstr "нерÑчаіÑны кавалак чаÑу \"%s\"" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "немагчыма прачытаць гадзіньнік Ñ€Ñальнага чаÑу" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "Майк ХітÑл Ñ– Поль Эгерт" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" +" ЗапіÑвае ўпарадкаваную зьвÑзку ÑžÑÑ–Ñ… ФÐЙЛ(аў) у Ñтандартны вывад.\n" +"\n" +"Выбары чаргі:\n" +"\n" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" +" -z, --zero-terminated ЗавÑршаць радкі байтам 0, а Ð½Ñ Ð½Ð¾Ð²Ñ‹Ð¼ радком.\n" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" + +#: src/sort.c:444 +msgid "cannot create temporary file" +msgstr "немагчыма Ñтварыць чаÑовы файл" + +#: src/sort.c:467 +msgid "open failed" +msgstr "памылка адкрыцьцÑ" + +#: src/sort.c:487 src/sort.c:2496 +msgid "close failed" +msgstr "памылка закрыцьцÑ" + +#: src/sort.c:495 +msgid "write failed" +msgstr "памылка запіÑу" + +#: src/sort.c:641 +msgid "sort size" +msgstr "" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "збой пачатку" + +#: src/sort.c:972 +msgid "read failed" +msgstr "памылка чытаньнÑ" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "%s: %s:%s: бÑзладдзе: " + +#: src/sort.c:1574 +msgid "standard error" +msgstr "Ñтандартны вывад памылак" + +#: src/sort.c:2032 +#, c-format +msgid "%s: invalid field specification `%s'" +msgstr "%s: нерÑчаіÑÐ½Ð°Ñ ÑпÑÑ†Ñ‹Ñ„Ñ–ÐºÐ°Ñ†Ñ‹Ñ Ð¿Ð¾Ð»Ñ \"%s\"" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "" + +#: src/sort.c:2064 +#, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "" + +#: src/sort.c:2298 +msgid "invalid number after `-'" +msgstr "нерÑчаіÑÐ½Ð°Ñ Ð»Ñ–Ñ‡Ð±Ð° паÑÑŒÐ»Ñ \"-\"" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +msgid "invalid number after `.'" +msgstr "нерÑчаіÑÐ½Ð°Ñ Ð»Ñ–Ñ‡Ð±Ð° паÑÑŒÐ»Ñ \".\"" + +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "" + +#: src/sort.c:2338 +msgid "invalid number at field start" +msgstr "" + +#: src/sort.c:2342 src/sort.c:2370 +msgid "field number is zero" +msgstr "" + +#: src/sort.c:2351 +msgid "character offset is zero" +msgstr "" + +#: src/sort.c:2366 +msgid "invalid number after `,'" +msgstr "нерÑчаіÑÐ½Ð°Ñ Ð»Ñ–Ñ‡Ð±Ð° паÑÑŒÐ»Ñ \",\"" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "" + +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐР] [УВОД [ПРЫСТÐЎКÐ]]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" + +#: src/split.c:108 +#, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "" + +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "Ñтвараецца файл \"%s\"\n" + +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "" + +#: src/split.c:394 +#, c-format +msgid "%s: invalid suffix length" +msgstr "" + +#: src/split.c:408 src/split.c:434 +#, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: нерÑчаіÑÐ½Ð°Ñ ÐºÐ¾Ð»ÑŒÐºÐ°Ñьць байтаў" + +#: src/split.c:421 +#, c-format +msgid "%s: invalid number of lines" +msgstr "%s: нерÑчаіÑÐ½Ð°Ñ ÐºÐ¾Ð»ÑŒÐºÐ°Ñьць радкоў" + +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "\"-%d\" выбар ÑаÑтарÑÑž, выкарыÑтоўвайце \"-l %d\"" + +#: src/split.c:483 +msgid "invalid number" +msgstr "нерÑчаіÑны нумар" + +#: src/stat.c:326 +msgid "*** invalid date/time ***" +msgstr "*** нерÑчаіÑÐ½Ð°Ñ Ð´Ð°Ñ‚Ð°/Ñ‡Ð°Ñ ***" + +#: src/stat.c:608 +#, c-format +msgid "cannot read file system information for %s" +msgstr "немагчыма прачытаць зьвеÑткі файлавае ÑÑ‹ÑÑ‚Ñмы Ð´Ð»Ñ %s" + +#: src/stat.c:684 +#, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐР] ФÐЙЛ...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" +"ÐдлюÑтроўвае Ñтан файла ці файлавае ÑÑ‹ÑÑ‚Ñмы.\n" +"\n" +" -f, --filesystem ÐдлюÑтроўвае Ñтан файлавае ÑÑ‹ÑÑ‚Ñмы.\n" +" -c --format=ФÐРМÐТ ВыкарыÑтоўвае заданы ФÐРМÐТ замеÑÑ‚ " +"дапомнага.\n" +" -L, --dereference Ідзе за лучывамі.\n" +" -t, --terse Друкуе зьвеÑткі Ñž ÑьціÑнутым выглÑдзе.\n" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" + +#: src/stty.c:504 +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" + +#: src/stty.c:570 +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:608 +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" + +#: src/stty.c:787 +msgid "only one device may be specified" +msgstr "толькі адна прылада можа быць пазначана" + +#: src/stty.c:882 +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "" + +#: src/stty.c:957 src/stty.c:1064 +#, c-format +msgid "invalid argument `%s'" +msgstr "нерÑчаіÑны довад \"%s\"" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, c-format +msgid "missing argument to `%s'" +msgstr "прапушчаны довад Ð´Ð»Ñ \"%s\"" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "new_mode: Ñ€Ñжым\n" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "%s: нÑма зьвеÑтак пра памеры Ð´Ð»Ñ Ð³Ñтае прылады" + +#: src/stty.c:1944 +#, c-format +msgid "invalid integer argument `%s'" +msgstr "нерÑчаіÑны цÑлалікавы довад \"%s\"" + +#: src/su.c:289 +msgid "Password:" +msgstr "Пароль:" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "getpass: немагчыма адчыніць /dev/tty" + +#: src/su.c:350 +msgid "cannot set groups" +msgstr "немагчыма ÑžÑталÑваць групы" + +#: src/su.c:354 +msgid "cannot set group id" +msgstr "немагчыма ÑžÑталÑваць id групы" + +#: src/su.c:356 +msgid "cannot set user id" +msgstr "немагчыма ÑžÑталÑваць id карыÑтальніка" + +#: src/su.c:437 +#, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐР]... [-] [КÐРЫСТÐЛЬÐІК [ДОВÐД]...]\n" + +#: src/su.c:438 +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "карыÑтальнік %s не Ñ–Ñнуе" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "нерÑчаіÑны пароль" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "" + +#: src/su.c:580 +#, c-format +msgid "warning: cannot change directory to %s" +msgstr "Увага! Ðемагчыма перайÑьці да Ñ‚Ñчкі %s" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "" + +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" + +#: src/sync.c:70 src/tty.c:112 +msgid "ignoring all arguments" +msgstr "на ÑžÑе довады не зьвÑртаецца ўвага" + +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr "" +" --help ÐдлюÑтроўвае гÑтую дапамогу й выходзіць.\n" + +#: src/sys2.h:494 +msgid " --version output version information and exit\n" +msgstr "" +" --version Выводзіць зьвеÑткі аб вÑÑ€Ñыі й выходзіць.\n" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tac.c:139 +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "stdin: памылка чытаньнÑ" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "падзÑлÑльнік павінен нешта ўтрымліваьц" + +#: src/tail.c:49 +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" + +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "закрываецца %s (fd=%d)" + +#: src/tail.c:391 +#, c-format +msgid "%s: cannot seek to offset %s" +msgstr "%s: немагчыма перамÑÑьціцца да зруха %s" + +#: src/tail.c:395 +#, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "%s: немагчыма перамÑÑьціцца да адноÑнага зруха %s" + +#: src/tail.c:400 +#, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "" + +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "%s: файл абрÑзаны" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "" + +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" + +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "" + +#: src/tail.c:1534 +#, c-format +msgid "%s: invalid PID" +msgstr "%s: нерÑчаіÑны PID" + +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: нерÑчаіÑÐ½Ð°Ñ ÐºÐ¾Ð»ÑŒÐºÐ°Ñьць ÑÑкундаў" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "" + +#: src/tee.c:33 +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "Майк Паркер, Рычард М. Столман Ñ– ДÑвід МакКінзі" + +#: src/tee.c:64 +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" +"ПерапіÑвае Ñтандартны ўвод у кожны ФÐЙЛ, а такÑама Ñž Ñтандартны вывад.\n" +"\n" +" -a, --append Дадае да ФÐЙЛаў (не перазапіÑвае Ñ–Ñ…).\n" +" -i, --ignore-interrupts Ðе зьвÑртае ўвагі на Ñыгнал ÑпыненьнÑ.\n" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "чакаецца довад\n" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "чакаецца цÑлалікавы выраз %s\n" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "')' чакаецца\n" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "')' чакаецца, знойдзен %s\n" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "%s: чакаецца ўнарны апÑратар\n" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "%s: чакаецца бінарны апÑратар\n" + +#: src/test.c:424 +msgid "before -lt" +msgstr "перад -lt" + +#: src/test.c:432 +msgid "after -lt" +msgstr "паÑÑŒÐ»Ñ -lt" + +#: src/test.c:446 +msgid "before -le" +msgstr "перад -le" + +#: src/test.c:453 +msgid "after -le" +msgstr "паÑÑŒÐ»Ñ -le" + +#: src/test.c:469 +msgid "before -gt" +msgstr "перад -gt" + +#: src/test.c:476 +msgid "after -gt" +msgstr "паÑÑŒÐ»Ñ -gt" + +#: src/test.c:490 +msgid "before -ge" +msgstr "перад -ge" + +#: src/test.c:497 +msgid "after -ge" +msgstr "паÑÑŒÐ»Ñ -ge" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "" + +#: src/test.c:526 +msgid "before -ne" +msgstr "перад -ne" + +#: src/test.c:533 +msgid "after -ne" +msgstr "паÑÑŒÐ»Ñ -ne" + +#: src/test.c:549 +msgid "before -eq" +msgstr "перад -eq" + +#: src/test.c:556 +msgid "after -eq" +msgstr "паÑÑŒÐ»Ñ -eq" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "" + +#: src/test.c:586 +msgid "-ot does not accept -l\n" +msgstr "" + +#: src/test.c:593 +msgid "unknown binary operator" +msgstr "невÑдомы дваічны апÑратар" + +#: src/test.c:781 +msgid "after -t" +msgstr "паÑÑŒÐ»Ñ -t" + +#: src/test.c:979 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"ВыкарыÑтаньне: %s ВЫРÐЗ\n" +" ці: [ ВЫРÐЗ ]\n" +" ці: %s ВЫБÐР\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" + +#: src/test.c:1009 +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "прапушчана \"]\"\n" + +#: src/test.c:1125 +msgid "too many arguments\n" +msgstr "зашмат довадаў\n" + +#: src/touch.c:39 +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "Поль Рубін, Ðрнольд РобінÑ, Джым Кінгдан, ДÑвід МакКінзі й РÑндзі Сміт" + +#: src/touch.c:164 src/touch.c:179 +#, c-format +msgid "creating %s" +msgstr "Ñтвараецца %s" + +#: src/touch.c:222 +#, c-format +msgid "cannot touch %s" +msgstr "немагчыма дакрануцца да %s" + +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "уÑталÑваньне чаÑу %s" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" +" ÐбнаўлÑе Ñ‡Ð°Ñ Ð´Ð¾Ñтупу й зьмÑÐ½ÐµÐ½ÑŒÐ½Ñ ÐºÐ¾Ð¶Ð½Ð°Ð³Ð° ФÐЙЛа да бÑгучага чаÑу.\n" +"\n" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" +" -a ЗьмÑніць толькі Ñ‡Ð°Ñ Ð´Ð¾Ñтупу.\n" +" -c, --no-create Ðе Ñтвараць ніÑкіх файлаў.\n" +" -d, --date=РÐДОК СкарыÑтаць РÐДОК у ÑкаÑьці бÑгучага чаÑу.\n" +" -f (не заўважаецца)\n" +" -m ЗьмÑнÑць толькі Ñ‡Ð°Ñ Ð·ÑŒÐ¼ÑненьнÑ.\n" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" +"\n" +" Увага! Выбары -t Ñ– -d уÑпрымаюць Ñ€Ð¾Ð·Ð½Ñ‹Ñ Ñ„Ð°Ñ€Ð¼Ð°Ñ‚Ñ‹ даты/чаÑу.\n" + +#: src/touch.c:311 src/touch.c:331 +#, c-format +msgid "invalid date format %s" +msgstr "нерÑчаіÑны фармат даты %s" + +#: src/touch.c:355 +msgid "cannot specify times from more than one source" +msgstr "немагчыма вызначыць Ñ‡Ð°Ñ Ð±Ð¾Ð»ÑŒÑˆ чым з адной крыніцы" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "" +"Увага! \"touch %s\" - ÑаÑтарÑÑž; выкарыÑтоўвайце \"touch -t %04d%02d%02d%02d%" +"02d.%02d\"" + +#: src/touch.c:399 +msgid "file arguments missing" +msgstr "прапушчаны файлавы довад" + +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐР]... МÐОСТВÐ1 [МÐОСТВÐ2]\n" + +#: src/tr.c:331 +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" + +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" + +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "" + +#: src/tr.c:1025 +#, c-format +msgid "invalid character class `%s'" +msgstr "" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" + +#: src/true.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "толькі адзін довад можа быць пазначаны" + +#: src/tty.c:63 +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "не tty" + +#: src/uname.c:111 +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" + +#: src/uname.c:226 +msgid "cannot get system name" +msgstr "немагчыма атрымаць назву ÑÑ‹ÑÑ‚Ñмы" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" + +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "" + +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐР]... [УВОД [ВЫВÐД]]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr "" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" + +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "памылка Ñ‡Ñ‹Ñ‚Ð°Ð½ÑŒÐ½Ñ %s" + +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "памылка запіÑу %s" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "" + +#: src/uniq.c:473 src/uniq.c:498 +msgid "invalid number of fields to skip" +msgstr "" + +#: src/uniq.c:507 +msgid "invalid number of bytes to skip" +msgstr "" + +#: src/uniq.c:516 +msgid "invalid number of bytes to compare" +msgstr "" + +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "" + +#: src/unlink.c:51 +#, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"ВыкарыÑтаньне: %s ФÐЙЛ\n" +" ці: %s ВЫБÐР\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" +"Выклікае функцыю unlink Ð´Ð»Ñ Ð²Ñ‹Ð´Ð°Ð»ÐµÐ½ÑŒÐ½Ñ Ð¿Ð°Ð·Ð½Ð°Ñ‡Ð°Ð½Ð°Ð³Ð° ФÐЙЛа.\n" +"\n" + +#: src/unlink.c:99 +#, c-format +msgid "cannot unlink %s" +msgstr "немагчыма unlink %s" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr " %2d:%02d%s працуе " + +#: src/uptime.c:140 +msgid "am" +msgstr "am" + +#: src/uptime.c:140 +msgid "pm" +msgstr "pm" + +#: src/uptime.c:142 +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d дзень" +msgstr[1] "%d дні" +msgstr[2] "%d дзён" + +#: src/uptime.c:144 +#, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "%d карыÑтальнік" +msgstr[1] "%d карыÑтальніка" +msgstr[2] "%d карыÑтальнікаў" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr ", ÑÑÑ€ÑднÑÑ Ð·Ð°Ð³Ñ€ÑƒÐ·ÐºÐ°: %.2f" + +#: src/uptime.c:191 src/users.c:118 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐР]... [ ФÐЙЛ ]\n" + +#: src/uptime.c:192 +#, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" + +#: src/users.c:35 +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "Joseph Arceneaux Ñ– David MacKenzie" + +#: src/users.c:119 +#, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "Поль Рубін Ñ– ДÑвід МакКінзі" + +#: src/wc.c:129 +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "" + +#: src/who.c:223 +msgid " old " +msgstr "" + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "id=" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "Ñ‚Ñрмінал=" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "" + +#: src/who.c:446 +msgid "clock change" +msgstr "" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" + +#: src/who.c:498 +msgid "NAME" +msgstr "ÐÐЗВÐ" + +#: src/who.c:498 +msgid "LINE" +msgstr "РÐДОК" + +#: src/who.c:498 +msgid "TIME" +msgstr "ЧÐС" + +#: src/who.c:498 +msgid "IDLE" +msgstr "" + +#: src/who.c:498 +msgid "PID" +msgstr "PID" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "КÐМЭÐТÐР" + +#: src/who.c:499 +msgid "EXIT" +msgstr "ВЫХÐД" + +#: src/who.c:574 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "ВыкарыÑтаньне: %s [ВЫБÐР]... [ ФÐЙЛ | ДОВÐД1 ДОВÐД2 ]\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "" +"Увага! Выбар -i будзе выдалены Ñž будучым; выкарыÑтоўвайце -u замеÑÑ‚ Ñго." + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "Увага! ЗначÑньне '-l' будзе зьменена Ñž будучым, каб адпавÑдаць POSIX." + +#: src/whoami.c:53 +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" +"Друкуе ўліковае Ñ–Ð¼Ñ ÐºÐ°Ñ€Ñ‹Ñтальніка, зьвÑзане зь бÑгучым ÑÑ„Ñктўным\n" +"id карыÑтальніка. Тое Ñамае, што й id -un.\n" +"\n" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "%s: немагчыма адшукаць Ñ–Ð¼Ñ ÐºÐ°Ñ€Ñ‹Ñтальніка Ð´Ð»Ñ UID %u\n" + +#: src/yes.c:49 +#, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"ВыкарыÑтаньне: %s [РÐДОК]...\n" +" ці: %s ВЫБÐР\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" +"БеÑперапынна выводзіць РÐДОК(Ñ–), ці знак `y'.\n" +"\n" + +#~ msgid "program error" +#~ msgstr "памылка праграмы" + +#~ msgid "stack overflow" +#~ msgstr "перапаўненьне ÑÑ‚Ñку" + +#~ msgid "warning: unable to use large stack" +#~ msgstr "Увага! Ðемагчыма выкарыÑтоўваць вÑлігі ÑÑ‚Ñк" + +#~ msgid " Type" +#~ msgstr " Від" + +#~ msgid "missing file arguments" +#~ msgstr "прапушчаны Ñ„Ð°Ð¹Ð»Ð°Ð²Ñ‹Ñ Ð´Ð¾Ð²Ð°Ð´Ñ‹" diff --git a/src/apps/bin/coreutils-5.0/po/boldquot.sed b/src/apps/bin/coreutils-5.0/po/boldquot.sed new file mode 100644 index 0000000000..4b937aa517 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/boldquot.sed @@ -0,0 +1,10 @@ +s/"\([^"]*\)"/“\1â€/g +s/`\([^`']*\)'/‘\1’/g +s/ '\([^`']*\)' / ‘\1’ /g +s/ '\([^`']*\)'$/ ‘\1’/g +s/^'\([^`']*\)' /‘\1’ /g +s/“â€/""/g +s/“/“/g +s/â€/â€/g +s/‘/‘/g +s/’/’/g diff --git a/src/apps/bin/coreutils-5.0/po/ca.gmo b/src/apps/bin/coreutils-5.0/po/ca.gmo new file mode 100644 index 0000000000..c2462471d1 Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/ca.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/ca.po b/src/apps/bin/coreutils-5.0/po/ca.po new file mode 100644 index 0000000000..997101a591 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/ca.po @@ -0,0 +1,9097 @@ +# Catalan messages for GNU coreutils. +# Copyright (C) 1999, 2001, 2002 Free Software Foundation, Inc. +# Ivan Vilata i Balaguer , 1999, 2002, 2003. +# Jordi Mallach , 2001, 2002. +# Ernest Adrogué Calveras , 2002. +# +# No em decideixo entre destí i destinació. jm +# Destí és correcte i més curt, ho passe tot a destí. ivb +# +# Sóc Ivan, aquestes són les convencions que adopte per la 4.5.1: +# * Use 2 espais després d'un punt. +# * Missatges d'ajuda: +# * Forma d'ús: ... +# o bé: ... +# * ARGUMENT_COMPOST, però ARGCOMP +# * FILE(s) -> cada FITXER (si és possible) +# * Cada línia de descripció d'una opció comença en la columna 24, i +# sempre es manté com a mínim a 4 espais del nom de l'opció. Quan +# l'opció arriba a la columna 24, la descripció comença en la línia +# inferior. Les descripcions que no caben en una línia es parteixen i +# continuen en la columna 24 de la línia següent. +# * Les descripcions d'ítems que no són opcions es mantenen alineades a +# 4 espais de l'ítem més llarg del bloc. Les que no caben en una línia +# es parteixen i continuen en la mateixa columna on comencen. +# o Excepció: ajudes de «pr», quin format vos agrada més? +# * Errors i avisos: +# * no és igual «no es pot obrir» que «no s'ha pogut obrir» +# * no és igual «s'està obrint X» que «en obrir X» (error) +# * «avís:» comença amb minúscula, la cadena següent també +# * sempre van en una sola línia, a no ser que els retorns importen; en +# aquest cas, les noves línies comencen amb un caràcter de tabulació +# * VARIABLE_ENTORN, però «valor de variable» +# * Noms de funció: printf() +# * Noms de fitxer: «fitxer» +# * Noms d'opcions: «--opció=ARGUMENT» +# * El text com a molt arriba a la columna 78, amb el caràcter de nova línia +# en la 79. Les línies es parteixen de forma automàtica (no per que quede +# bonic, excepte quan quede realment horrend o porte a confusió). +msgid "" +msgstr "" +"Project-Id-Version: coreutils 4.5.10\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2003-03-17 23:15+0100\n" +"Last-Translator: Ivan Vilata i Balaguer \n" +"Language-Team: Catalan \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +# Usa quote() en els 2 args. ivb +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "l'argument %s no és vàlid per %s" + +# Usa quote() en els 2 args. ivb +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "l'argument %s és ambigu per %s" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "Els arguments vàlids són:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "error d'escriptura" + +# Amb el mateix format que els errors de la libc. ivb +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "Error desconegut del sistema" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "fitxer ordinari buit" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "fitxer ordinari" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "directori" + +#: lib/file-type.c:48 +msgid "block special file" +msgstr "fitxer especial de blocs" + +#: lib/file-type.c:51 +msgid "character special file" +msgstr "fitxer especial de caràcters" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "cua FIFO" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "enllaç simbòlic" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "connector" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "cua de missatges" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "semàfor" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "objecte de memòria compartida" + +#: lib/file-type.c:71 +msgid "weird file" +msgstr "fitxer estrany" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: l'opció «%s» és ambigua\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: l'opció «--%s» no admet arguments\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: l'opció «%c%s» no admet arguments\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: l'opció «%s» necessita un argument\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: l'opció «--%s» no és reconeguda\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: l'opció «%c%s» no és reconeguda\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: no es permet l'opció «%c»\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: l'opció «%c» no és vàlida\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: l'opció «%c» necessita un argument\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: l'opció «-W %s» és ambigua\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: l'opció «-W %s» no admet arguments\n" + +# FIXME: xmalloc.h: _STRTOL_ERROR lacks i18n. ivb +# Açò quedarà com «invalid tamany de bloc `TAMANY'» mentre no ho facen. ivb +#: lib/human.c:519 +msgid "block size" +msgstr "tamany de bloc" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "no s'ha pogut tornar al directori inicial de treball" + +# Els 3 usen quote(). ivb +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "no s'ha pogut crear el directori %s" + +# Els 4 usen quote(). ivb +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%s existeix però no és un directori" + +# Els 3 usen quote(). ivb +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "no s'ha pogut canviar el propietari o grup de %s" + +# Usa quote(). ivb +#: lib/makepath.c:338 +#, c-format +msgid "cannot chdir to directory %s" +msgstr "no s'ha pogut canviar al directori %s" + +# Els 2 usen quote(). ivb +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "no s'han pogut canviar els permisos de %s" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "la memòria s'ha exhaurit" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "«" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "»" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[sS]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[nN]" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "la funció iconv() no és útil" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "la funció iconv() no es troba disponible" + +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "el caràcter es troba fora del rang" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "no s'ha pogut convertir U+%04X al joc de caràcters local" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "no s'ha pogut convertir U+%04X al joc de caràcters local: %s" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "l'usuari no és vàlid" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "el grup no és vàlid" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "no s'ha pogut obtenir el grup d'entrada d'un UID numèric" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "no es poden ometre l'usuari i el grup alhora" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "Escrit per %s.\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +"Aquest és programari lliure; vegeu el codi font per les condicions de " +"còpia.\n" +"No hi ha CAP garantia; ni tan sols de COMERCIABILITAT o ADEQUACIÓ PER UN\n" +"PROPÃ’SIT PARTICULAR.\n" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "ha fallat la comparació de cadenes" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "Establiu la variable LC_ALL a «C» per evitar el problema." + +# Usa quote() en les 2. ivb +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "Les cadenes comparades eren %s i %s." + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Proveu «%s --help» per obtenir més informació.\n" + +#: src/basename.c:54 +#, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"Forma d'ús: %s NOM [SUFIX]\n" +" o bé: %s OPCIÓ\n" + +#: src/basename.c:59 +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" +"Mostra NOM eliminant qualsevol component directori que tinga al davant. Si\n" +"s'especifica, també s'elimina el SUFIX del darrere.\n" +"\n" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"Informeu dels errors a <%s>.\n" + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "manquen arguments" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "sobren arguments" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "Torbjorn Granlund i Richard M. Stallman" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "Forma d'ús: %s [OPCIÓ] [FITXER]...\n" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" +"Concatena els FITXERs o l'entrada estàndard, i escriu el resultat en la\n" +"sortida estàndard.\n" +"\n" +" -A, --show-all Equival a «-vET».\n" +" -b, --number-nonblank Enumera les línies que no estan en blanc.\n" +" -e, Equival a «-vE».\n" +" -E, --show-ends Escriu un caràcter «$» al final de cada línia.\n" +" -n, --number Enumera totes les línies.\n" +" -s, --squeeze-blank No mostra més d'una línia en blanc seguida.\n" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" +" -t Equival a «-vT».\n" +" -T, --show-tabs Mostra els caràcters de tabulació com a «^I».\n" +" -u (No es té en compte.)\n" +" -v, --show-nonprinting\n" +" Usa la notació «^» i «M-», excepte pels caràcters de\n" +" nova línia i per les tabulacions.\n" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"Sense cap FITXER, o quan FITXER és «-», llegeix l'entrada estàndard.\n" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" +"\n" +" -B, --binary Usa escriptura binària al dispositiu de consola.\n" +"\n" + +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "ha fallat ioctl() sobre «%s»" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "eixida estàndard" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s: el fitxer d'entrada i el de sortida són el mateix" + +# Indica la situació d'un missatge d'error. ivb +#: src/cat.c:858 +msgid "closing standard input" +msgstr "en tancar l'entrada estàndard" + +# Indica la situació d'un missatge d'error. ivb +#: src/cat.c:861 +msgid "closing standard output" +msgstr "en tancar l'eixida estàndard" + +#: src/chgrp.c:93 +msgid "cannot change to null group" +msgstr "no es pot canviar al grup nul" + +# Usa quote(). ivb +#: src/chgrp.c:102 +#, c-format +msgid "invalid group name %s" +msgstr "el nom de grup %s no és vàlid" + +# FIXME: xmalloc.h: _STRTOL_ERROR lacks i18n. ivb +# Açò quedarà com «invalid número de grup `NÚMERO'» mentre no ho facen. ivb +#: src/chgrp.c:106 +msgid "group number" +msgstr "número de grup" + +# Usa quote(). ivb +#: src/chgrp.c:109 +#, c-format +msgid "invalid group number %s" +msgstr "el número de grup %s no és vàlid" + +#: src/chgrp.c:126 +#, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Forma d'ús: %s [OPCIÓ]... GRUP FITXER...\n" +" o bé: %s [OPCIÓ]... --reference=FITXREF FITXER...\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Canvia la pertinença de grup de cada FITXER a GRUP.\n" +"\n" +" -c, --changes Com «--verbose», però només informa quan es fa un\n" +" canvi.\n" +" --dereference Afecta el fitxer apuntat per cada enllaç simbòlic, " +"en\n" +" comptes del propi enllaç simbòlic.\n" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" +" -h, --no-dereference Afecta els enllaços simbòlics en comptes dels\n" +" fitxers apuntats (disponible només en sistemes que\n" +" puguen canviar el propietari d'un enllaç simbòlic).\n" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet No mostra la majoria de missatges d'error.\n" +" --reference=FITXREF\n" +" Usa el grup del fitxer FITXREF en comptes del valor\n" +" especificat de GRUP.\n" +" -R, --recursive Opera recursivament sobre fitxers i directoris.\n" +" -v, --verbose Mostra un missatge per cada fitxer processat.\n" + +# Els 9 usen quote(). ivb +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, c-format +msgid "failed to get attributes of %s" +msgstr "no s'han pogut obtindre els atributs de %s" + +# Usa quote(). ivb +# Indica situació d'error. ivb +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "en obtenir els nous atributs de %s" + +# Usa quote() en el 1r arg. El 3r és un mode «rwxrwxrwx». ivb +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "s'ha canviat el mode de %s a %04lo (%s)\n" + +# Usa quote() en el 1r arg. El 3r és un mode «rwxrwxrwx». ivb +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "no s'ha pogut canviar el mode de %s a %04lo (%s)\n" + +# Usa quote() en el 1r arg. El 3r és un mode «rwxrwxrwx». ivb +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "el mode de %s es manté en %04lo (%s)\n" + +# Usa quote(). ivb +# Indica una condició d'error. ivb +#: src/chmod.c:179 +#, c-format +msgid "changing permissions of %s" +msgstr "en canviar els permissos de %s" + +#: src/chmod.c:242 +#, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Forma d'ús: %s [OPCIÓ]... MODE[,MODE]... FITXER...\n" +" o bé: %s [OPCIÓ]... MODE_OCTAL FITXER...\n" +" o bé: %s [OPCIÓ]... --reference=FITXREF FITXER...\n" + +#: src/chmod.c:248 +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"Canvia el mode de cada FITXER a MODE.\n" +"\n" +" -c, --changes Com «--verbose», però només informa quan es produeix " +"un\n" +" canvi.\n" +" -f, --silent, --quiet No mostra la majoria dels missatges d'error.\n" +" -v, --verbose Mostra un missatge per cada fitxer processat.\n" +" --reference=FITXREF\n" +" Usa el mode de FITXREF en comptes dels valors de " +"MODE.\n" +" -R, --recursive Canvia recursivament fitxers i directoris.\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" +"\n" +"Cada MODE és una o més de les lletres «ugoa», un dels símbols «+-=» i una o\n" +"més de les lletres «rwxXstugo».\n" + +# Usa quote() en els 2. ivb +#: src/chmod.c:320 +#, c-format +msgid "invalid character %s in mode string %s" +msgstr "el caràcter %s de la cadena de mode %s no és vàlid" + +# Usa quote(). ivb +#: src/chmod.c:361 +#, c-format +msgid "invalid mode string: %s" +msgstr "la cadena de mode no és vàlida: %s" + +# Usa quote(). ivb +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "no s'han canviat ni l'enllaç simbòlic %s ni el fitxer apuntat\n" + +# Usa quote() en el 1r arg. ivb +#: src/chown-core.c:143 +#, c-format +msgid "changed ownership of %s to %s\n" +msgstr "s'ha canviat el propietari de %s a «%s»\n" + +# Usa quote en el 1r arg. ivb +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "s'ha canviat el grup de %s a «%s»\n" + +# Usa quote() en el 1r arg. ivb +#: src/chown-core.c:148 +#, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "no s'ha pogut canviar el propietari de %s a «%s»\n" + +# Usa quote() en el 1r arg. ivb +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "no s'ha pogut canviar el grup de %s a «%s»\n" + +# Usa quote() en el 1r arg. ivb +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "el propietari de %s es manté en «%s»\n" + +# Usa quote() en el 1r arg. ivb +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "el grup de %s es manté en «%s»\n" + +# Usa quote(). ivb +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "s'està canviant el propietari de %s" + +# Usa quote(). ivb +#: src/chown-core.c:327 +#, c-format +msgid "changing group of %s" +msgstr "s'està canviant el grup de %s" + +# Usa quote(). ivb +#: src/chown-core.c:345 +#, c-format +msgid "unable to restore permissions of %s" +msgstr "no s'han pogut restaurar els permissos de %s" + +#: src/chown.c:99 +#, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Forma d'ús: %s [OPCIÓ]... PROPIETARI[:[GRUP]] FITXER...\n" +" o bé: %s [OPCIÓ]... :[GRUP] FITXER...\n" +" o bé: %s [OPCIÓ]... --reference=FITXREF FITXER...\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Canvia el propietari o grup de cada FITXER a PROPIETARI o GRUP.\n" +"\n" +" -c, --changes Com «--verbose», però només informa quan es fa un\n" +" canvi.\n" +" --dereference Afecta el fitxer apuntat per cada enllaç simbòlic, " +"en\n" +" comptes del propi enllaç simbòlic.\n" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" +" --from=PROPIETARI_ACTUAL:GRUP_ACTUAL\n" +" Canvia el propietari o grup de cada fitxer només si " +"el\n" +" seu propietari o grup actual coincideixen amb " +"aquests.\n" +" Es pot ometre qualsevol dels dos; en aqueix cas no\n" +" caldrà que hi haja coincidència amb l'atribut omés.\n" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet No mostra la majoria de missatges d'error.\n" +" --reference=FITXREF\n" +" Usa el propietari i grup del fitxer FITXERF en " +"comptes\n" +" dels valors especificats de PROPIETARI:GRUP.\n" +" -R, --recursive Opera recursivament sobre fitxers i directoris.\n" +" -v, --verbose Mostra un missatge per cada fitxer processat.\n" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" +"\n" +"El propietari es manté si no s'especifica. El grup també es manté si no\n" +"s'especifica, però es canvia al grup d'entrada si s'especifica «:». El\n" +"PROPIETARI i GRUP poden ser tant numèrics com simbòlics.\n" + +#: src/chroot.c:45 +#, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"Forma d'ús: %s NOU_ARREL [ORDRE...]\n" +" o bé: %s OPCIÓ\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" +"Executa l'ORDRE establint-hi el directori arrel a NOU_ARREL.\n" +"\n" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" +"\n" +"Si no s'especifica cap ordre s'executa «${SHELL} -i» (per defecte: /bin/" +"sh).\n" + +# No usa quote(). ivb +#: src/chroot.c:84 +#, c-format +msgid "cannot change root directory to %s" +msgstr "no s'ha pogut canviar el directori arrel a «%s»" + +#: src/chroot.c:87 +msgid "cannot chdir to root directory" +msgstr "no s'ha pogut canviar al directori arrel" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "%s: el fitxer és massa gran" + +#: src/cksum.c:282 +#, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"Forma d'ús: %s [FITXER]...\n" +" o bé: %s [OPCIÓ]\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" +"Mostra la suma CRC i el tamany en octets de cada FITXER.\n" +"\n" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "Richard Stallman i David MacKenzie" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "Forma d'ús: %s [OPCIÓ]... FITXER1 FITXER2\n" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" +"Compara els fitxers ordenats FITXER1 i FITXER2 línia per línia.\n" +"\n" +" -1 Elimina aquelles línies que només apareixen en el\n" +" FITXER1.\n" +" -2 Elimina aquelles línies que només apareixen en el\n" +" FITXER2.\n" +" -3 Elimina aquelles línies que apareixen en ambdós\n" +" fitxers.\n" + +# Usa quote(). ivb +#: src/copy.c:162 src/du.c:332 +#, c-format +msgid "cannot access %s" +msgstr "no s'ha pogut accedir a %s" + +# Usa quote(). ivb +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "no s'ha pogut obrir %s per llegir" + +# Els 4 usen quote(). ivb +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, c-format +msgid "cannot fstat %s" +msgstr "ha fallat fstat() sobre %s" + +# Usa quote(). ivb +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "es salta el fitxer %s, que va ser reemplaçat en ser copiat" + +# Els 6 usen quote(). ivb +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, c-format +msgid "cannot remove %s" +msgstr "no s'ha pogut eliminar %s" + +# Usa quote(). ivb +#: src/copy.c:277 +#, c-format +msgid "cannot create regular file %s" +msgstr "no s'ha pogut crear el fitxer ordinari %s" + +# Els 3 usen quote(). ivb +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, c-format +msgid "reading %s" +msgstr "s'està llegint %s" + +# Usa quote(). ivb +#: src/copy.c:362 +#, c-format +msgid "cannot lseek %s" +msgstr "ha fallat lseek() sobre %s" + +# Els 4 usen quote(). ivb +# En els 4 indica condició d'error. ivb +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, c-format +msgid "writing %s" +msgstr "en escriure %s" + +# Els 2 usen quote(). ivb +# En els 2 indica condició d'error. ivb +#: src/copy.c:409 src/copy.c:415 +#, c-format +msgid "closing %s" +msgstr "en tancar %s" + +# Ací tinc un diff de la Debian 2.0 on insisteix bastant en posar «(s/n)» +# al final d'aquestes qüestions (un diff d'es.po) iv +# Creus que fa falta ficar (s/n)? De moment ho he llevat, però torna +# a ficar-ho si vols. Quin luser contestaria «a» vegades, i no «s» o «n»? +# (nota per a la posteritat) Debian 3.0 ja fa 2 mesos que "ja està +# a punt" :) I encara no tindrà fileutils traduït... jm +# Aiii senyor, com passa el temps, ja ni hi ha fileutils (2003-1). ivb +# Usa quote() en el 1r arg. ivb +#: src/copy.c:610 +#, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: voleu sobreescriure %s, reemplaçant el mode %04lo? " + +# Usa quote(). ivb +#: src/copy.c:616 +#, c-format +msgid "%s: overwrite %s? " +msgstr "%s: voleu sobreescriure %s? " + +# Els 3 usen quote(). ivb +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, c-format +msgid "cannot stat %s" +msgstr "ha fallat stat() sobre %s" + +# Usa quote(). ivb +#: src/copy.c:820 +#, c-format +msgid "omitting directory %s" +msgstr "es descarta el directori %s" + +# Usa quote(). ivb +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "avís: s'ha especificat el fitxer origen %s més d'una vegada" + +# Els 2 usen quote() en els 2 args. ivb +#: src/copy.c:866 src/ln.c:237 +#, c-format +msgid "%s and %s are the same file" +msgstr "%s i %s són el mateix fitxer" + +# Usa quote() en els 2 args. ivb +#: src/copy.c:876 +#, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "no es pot sobreescriure el no-directori %s amb el directori %s" + +# Usa quote() en els 2 args. ivb +#: src/copy.c:893 +#, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "no es sobreescriurà %s, tot just creat, amb %s" + +# Usa quote(). ivb +#: src/copy.c:904 +#, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "no es pot sobreescriure el directori %s amb un no-directori" + +# Usa quote(). ivb +#: src/copy.c:965 +#, c-format +msgid "cannot overwrite directory %s" +msgstr "no es pot sobreescriure el directori %s" + +# Usa quote() en els 2 args. ivb +#: src/copy.c:974 +#, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "no es pot moure un directori sobre un no-directori: %s -> %s" + +# Usa quote() en els 2 args. ivb +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "una còpia de seguretat de %s destruiria el fitxer origen; no es mou %s" + +# Usa quote() en els 2 args. ivb +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "" +"una còpia de seguretat de %s destruiria el fitxer origen; no es còpia %s" + +# Els 2 usen quote(). ivb +#: src/copy.c:1013 src/ln.c:273 +#, c-format +msgid "cannot backup %s" +msgstr "no sha pogut crear una còpia de seguretat de %s" + +# Usa quote(). ivb +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr " (còpia de seguretat: %s)" + +# Usa quote() en els 2 args. ivb +#: src/copy.c:1099 +#, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "no es pot copiar un directori, %s, dins d'ell mateix, %s" + +# Un quote() en els 2 args. ivb +#: src/copy.c:1106 +#, c-format +msgid "will not create hard link %s to directory %s" +msgstr "no es crearà l'enllaç fort %s cap al directori %s" + +# Usa quote() en els 2 args. ivb +#: src/copy.c:1132 +#, c-format +msgid "cannot create hard link %s to %s" +msgstr "no s'ha pogut crear l'enllaç fort %s cap a %s" + +# Usa quote() en els 2 args. ivb +#: src/copy.c:1186 +#, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "no es pot moure %s a un subdirectori d'ell mateix, %s" + +# Usa quote() en els dos args. ivb +#: src/copy.c:1229 +#, c-format +msgid "cannot move %s to %s" +msgstr "no s'ha pogut moure %s a %s" + +# Usa quote() en es 2 args. ivb +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "" +"no s'ha pogut moure entre dispositius: %s a %s; no s'ha pogut eliminar el " +"destí" + +# Usa quote(). ivb +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "no es pot copiar l'enllaç simbòlic cíclic %s" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "" +"%s: només es poden fer enllaços simbòlics relatius en el directori actual" + +# Usa quote() en els 2 arguments. ivb +#: src/copy.c:1353 +#, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "no s'ha pogut crear l'enllaç simbòlic %s cap a %s" + +# Usa quote(). ivb +#: src/copy.c:1364 +#, c-format +msgid "cannot create link %s" +msgstr "no s'ha pogut crear l'enllaç %s" + +# Els 2 usen quote(). ivb +#: src/copy.c:1389 src/mkfifo.c:133 +#, c-format +msgid "cannot create fifo %s" +msgstr "no s'ha pogut crear la cua FIFO %s" + +# Usa quote(). ivb +#: src/copy.c:1403 +#, c-format +msgid "cannot create special file %s" +msgstr "no s'ha pogut crear el fitxer especial %s" + +# Els 3 usen quote(). ivb +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, c-format +msgid "cannot read symbolic link %s" +msgstr "no s'ha pogut llegir l'enllaç simbòlic %s" + +# Usa quote(). ivb +#: src/copy.c:1440 +#, c-format +msgid "cannot create symbolic link %s" +msgstr "no s'ha pogut crear l'enllaç simbòlic %s" + +# Els 3 usen quote(). ivb +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, c-format +msgid "failed to preserve ownership for %s" +msgstr "no s'ha pogut preservar el propietari de %s" + +# Usa quote(). ivb +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "%s és d'un tipus de fitxer desconegut" + +# Usa quote(). ivb +# Indica condició d'error. ivb +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "en preservar les dates de %s" + +# Usa quote(). ivb +#: src/copy.c:1531 +#, c-format +msgid "failed to preserve authorship for %s" +msgstr "no s'ha pogut preservar l'autoria de %s" + +# Usa quote(). ivb +# Indica condició d'error. ivb +#: src/copy.c:1549 +#, c-format +msgid "setting permissions for %s" +msgstr "en establir els permissos de %s" + +# Els 2 usen quote(). ivb +# L'argument és el nom original. ivb +#: src/copy.c:1571 src/ln.c:326 +#, c-format +msgid "cannot un-backup %s" +msgstr "no s'ha pogut recuperar la còpia de seguretat de %s" + +# Usa quote() en els 2 args. ivb +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s -> %s (recuperació de la còpia de seguretat)\n" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "Torbjorn Granlund, David MacKenzie i Jim Meyering" + +#: src/cp.c:164 src/mv.c:311 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"Forma d'ús: %s [OPCIÓ]... ORIGEN DESTÃ\n" +" o bé: %s [OPCIÓ]... ORIGEN... DIRECTORI\n" +" o bé: %s [OPCIÓ]... --target-directory=DIRECTORI ORIGEN...\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Còpia ORIGEN a DESTÃ, o múltiples ORIGENs a un DIRECTORI.\n" +"\n" + +# Agafat més o menys de libc. ivb +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" +"Els arguments obligatoris per les opcions llargues també ho són per les\n" +"opcions curtes corresponents.\n" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" +" -a, --archive Equival a «-dpR».\n" +" --backup[=CONTROL]\n" +" Crea una còpia de seguretat de cada fitxer destí\n" +" existent.\n" +" -b Com «--backup», però no accepta cap argument.\n" +" --copy-contents Còpia el contingut dels fitxers especials quan " +"actua\n" +" recursivament.\n" +" -d Equival a «--no-dereference --preserve=link».\n" + +# FIXME: Ugly description of -f: you need to know how cp works internally! ivb +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" +" --no-dereference No segueix mai els enllaços simbòlics.\n" +" -f, --force Si no es pot obrir un fitxer destí existent, " +"l'esborra\n" +" i torna a provar.\n" +" -i, --interactive Pregunta abans de sobreescriure.\n" +" -H Segueix els enllaços simbòlics que es troben en la\n" +" línia d'ordres.\n" + +# No sé si en --preserve volen dir açò, però crec que queda clar. ivb +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" +" -l, --link Enllaça els fitxers en comptes de copiar-los.\n" +" -L, --dereference Segueix sempre els enllaços simbòlics.\n" +" -p Equival a «--preserve=mode,ownership,timestamps».\n" +" --preserve[=LLISTA_ATRS]\n" +" Preserva els atributs indicats, si es pot\n" +" (per defecte: «mode,ownership,timestamps»;\n" +" atributs addicionals: links, all;\n" +" significats: mode=permissos, ownership=propietari i\n" +" grup, timestamps=dates, links=enllaços, all=tots).\n" + +# FIXME: Why isn't -P next to --no-dereference? ivb +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" +" --no-preserve=LLISTA_ATRS\n" +" No preserva els atributs indicats.\n" +" --parents Afig el camí dels fitxers origen al DIRECTORI.\n" +" -P Equival a «--no-dereference».\n" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" +" -R, -r, --recursive Còpia recursivament els directoris.\n" +" --remove-destination\n" +" Elimina cada fitxer destí existent abans d'intentar\n" +" obrir-lo (no després, com fa «--force»).\n" + +#: src/cp.c:209 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +" --reply={yes,no,query}\n" +" Especifica una resposta a les preguntes sobre " +"fitxers\n" +" destí existents (sí, no, preguntar).\n" +" --sparse=QUAN Controla la creació de fitxers dispersos.\n" +" --strip-trailing-slashes\n" +" Elimina la barra final (si n'hi ha) de cada argument\n" +" ORIGEN.\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" +" -s, --symbolic-link Crea enllaços simbòlics en comptes de copiar.\n" +" -S, --suffix=SUFIX Reemplaça el sufix habitual de les còpies de\n" +" seguretat.\n" +" --target-directory=DIRECTORI\n" +" Mou tots els arguments ORIGEN al DIRECTORI.\n" + +#: src/cp.c:221 +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +" -u, --update Només còpia quan el fitxer ORIGEN és més nou que el\n" +" fitxer destí o quan aquest últim no existeix.\n" +" -v, --verbose Explica què s'està fent.\n" +" -x, --one-file-system Es manté dins d'aquest sistema de fitxers.\n" + +# ivb: +# «Sparse» són fitxers amb blocs seguits de caràcters nuls. Com es pareix +# molt al concepte de «matriu dispersa» he aprofitat la traducció (que a més +# és la que dóna el diccionari). Mireu «perforate(1)». +#: src/cp.c:230 +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +"\n" +"Per defecte, els fitxers ORIGEN dispersos es detecten amb una heurística\n" +"simple i els fitxers DESTà corresponents són creats dispersos. Aquest és " +"el\n" +"comportament indicat per «--sparse=auto». Amb «--sparse=always» es crearà " +"un\n" +"fitxer DESTà dispers sempre que el fitxer ORIGEN continga una seqüència\n" +"suficientment llarga d'octets zero. Useu «--sparse=never» per evitar la\n" +"creació de fitxers dispersos.\n" +"\n" + +#: src/cp.c:239 +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"El sufix de còpia de seguretat és «~», si no s'estableix amb «--suffix» o " +"amb\n" +"la variable SIMPLE_BACKUP_SUFFIX. El mètode de control de versions es pot\n" +"establir amb l'opció «--backup» o fent servir la variable d'entorn\n" +"VERSION_CONTROL. Es poden usar aquests valors:\n" +"\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +" none, off Mai fa còpies de seguretat (ni especificant «--backup»).\n" +" numbered, t Fa còpies de seguretat numerades.\n" +" existing, nil Fa còpies de seguretat numerades si ja n'existeixen, les " +"fa\n" +" simples en cas contrari.\n" +" simple, never Fa còpies de seguretat simples sempre.\n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +"Com a cas especial, «cp» fa una còpia de seguretat d'ORIGEN quan les " +"opcions\n" +"«--force» i «--backup» són actives i ORIGEN i DESTà són el mateix nom d'un\n" +"fitxer ordinari existent.\n" + +# Usa quote(). ivb +#: src/cp.c:325 +#, c-format +msgid "failed to preserve times for %s" +msgstr "no s'han pogut preservar les dates de %s" + +# Usa quote(). ivb +#: src/cp.c:349 +#, c-format +msgid "failed to preserve permissions for %s" +msgstr "no s'han pogut preservar els permissos de %s" + +# Usa quote(). ivb +#: src/cp.c:434 +#, c-format +msgid "cannot make directory %s" +msgstr "no s'ha pogut crear el directori %s" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +msgid "missing file argument" +msgstr "manca un argument fitxer" + +#: src/cp.c:498 +msgid "missing destination file" +msgstr "manca el fitxer destí" + +# Els 5 usen quote(). ivb +# Indica condició d'error. ivb +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "en accedir a %s" + +# Cal ficar el mateix que en TARGET d'un text d'ajuda per ahí. jm +#: src/cp.c:546 +#, c-format +msgid "%s: specified target is not a directory" +msgstr "%s: el destí especificat no és un directori" + +# Usa quote(). ivb +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "" +"es còpien múltiples fitxers, però l'últim argument %s no és un directori" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "quan es mantinguen els camins, el destí ha de ser un directori" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"avís: «--version-control», (-V) és obsoleta; es retirarà el suport d'aquesta " +"opció en una versió futura. Useu «--backup=%s» en el seu lloc." + +#: src/cp.c:972 src/ln.c:464 +msgid "symbolic links are not supported on this system" +msgstr "aquest sistema no suporta enllaços simbòlcs" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "no es poden fer enllaços forts i simbòlics alhora" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "tipus de còpia de seguretat" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "Stuart Kemp i David MacKenzie" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "error de lectura" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "l'entrada ha desaparegut" + +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s: el número de línia està fora de rang" + +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: `%s': el número de línia està fora de rang" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr " en la %da repetició\n" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s: `%s': no s'ha trobat cap coincidència" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "error en la recerca de l'expressió regular" + +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "error en escriure «%s»" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "%s: s'esperava «+» o «-» després del delimitador" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s: s'esperava un número enter després de «%c»" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "%s: cal «}» en el nombre de repeticions" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "%s}: cal especificar un nombre enter entre «{» i «}»" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s: manca el delimitador «%c» de tancament" + +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: l'expressió regular no és vàlida: %s" + +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "%s: el patró no és vàlid" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s: el número de línia ha de ser major que zero" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "el número de línia «%s» és menor que el número anterior, «%s»" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "avís: el número de línia «%s» és el mateix que el número anterior" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "manca l'especificació de conversió en el sufix" + +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "l'especificació de conversió en el sufix no és vàlida: %c" + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "l'especificació de conversió en el sufix no és vàlida: \\%.3o" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "manca l'especificació de conversió «%%» en el sufix" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "sobren especificacions de conversió «%%» en el sufix" + +#: src/csplit.c:1441 +#, c-format +msgid "%s: invalid number" +msgstr "%s: el número no és vàlid" + +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "Forma d'ús: %s [OPCIÓ]... FITXER PATRÓ...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" +"Divideix el FITXER en fragments separats pels patrons (PATRÓ) indicats, i\n" +"escriu els fragments en fitxers anomenats «xx01», «xx02»... indicant en\n" +"l'eixida estàndard el tamany en octets de cadascun d'ells.\n" +"\n" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" +" -b, --suffix-format=FORMAT\n" +" Usa aquest FORMAT d'sprintf() en lloc de «%d».\n" +" -f, --prefix=PREFIX Usa aquest PREFIX en lloc de «xx».\n" +" -k, --keep-files No esborra els fitxer generats, en cas d'error.\n" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" +" -n, --digits=DIGITS Usa el nombre de dígits especificat en lloc de 2.\n" +" -s, --quite, --silent No mostra el tamany dels fitxers resultants.\n" +" -z, --elide-empty-files\n" +" Esborra els fitxers resultants que estan buits.\n" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" +"\n" +"Si FITXER és «-», llegeix l'entrada estàndard. Cada PATRÓ pot ser:\n" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" +"\n" +" ENTER Copia fins (però sense incloure) la línia " +"especificada.\n" +" /EXPREG/[DESPL] Copia fins (però sense incloure) la línia coincident.\n" +" %EXPREG%[DESPL] Salta fins (però sense incloure) la línia coincident.\n" +" {ENTER} Repeteix el patró anterior el nombre de vegades\n" +" especificat.\n" +" {*} Repeteix el patró anterior tants cops com sigui " +"possible.\n" +"\n" +"Un desplaçament de línia (DESPL) és un «+» o «-» seguit d'un número enter\n" +"positiu.\n" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie i Jim Meyering" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "Forma d'ús: %s [OPCIÓ]... [FITXER]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" +"Escriu parts seleccionades de les línies de cada FITXER en la sortida\n" +"estàndard.\n" +"\n" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" +" -b, --bytes=LLISTA Només escriu aquests octets.\n" +" -c, --characters=LLISTA\n" +" Només escriu aquests caràcters.\n" +" -d, --delimiter=DELIM Usa DELIM en lloc de la tabulació com a " +"delimitador\n" +" de camp.\n" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" +" -f, --fields=LLISTA Només escriu aquests camps; també escriu totes les\n" +" línies que no continguen el caràcter delimitador, " +"tret\n" +" que s'especifique l'opció «-s».\n" +" -n (No es té en compte.)\n" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" +" -s, --only-delimited No escriu les línies que no continguen el " +"caràcter\n" +" delimitador.\n" +" --output-delimiter=CADENA\n" +" Usa la CADENA com a delimitador de sortida; per " +"defecte\n" +" s'utilitza el delimitador d'entrada.\n" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"No utilitzeu les opcions «-b», «-c» o «-f» conjuntament. Cada LLISTA " +"consta\n" +"d'un interval, o de diversos intervals separats per comes. Cada interval " +"pot\n" +"ser:\n" +"\n" +" N L'octet, caràcter o camp N, comptant des de 1.\n" +" N- Des de l'octet, caràcter o camp N fins el final de la línia.\n" +" N-M Des de l'octet, caràcter o camp N fins l'M (inclòs).\n" +" -M Des del principi fins a l'octet, caràcter o camp M (inclòs).\n" +"\n" +"Sense FITXER, o quan FITXER és «-», llegeix l'entrada estàndard.\n" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "la llista d'octets o camps no és vàlida" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "només es pot especificar un únic tipus de llista" + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "manca la llista de posicions" + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "manca la llista de camps" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "el delimitador ha de ser un únic caràcter" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "cal especificar una llista d'octets, caràcters o camps" + +#: src/cut.c:720 +msgid "an input delimiter may be specified only when operating on fields" +msgstr "" +"només es pot especificar un delimitador d'entrada quan s'opere amb camps" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" +"eliminar les línies no delimitades només té sentit quan s'opera amb camps" + +# CC és de «century», així que S de «segle»... iv +# Nopes, la centúria és el segle menys 1 (com hauria de ser!). ivb +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" +"Forma d'ús: %s [OPCIÓ]... [+FORMAT]\n" +" o bé: %s [-u|--utc|--universal] [MMDDhhmm[[CC]AA][.ss]]\n" + +# Sembla que date no accepta «ara»... No anirà al locale... iv +# No, en efecte, és cosa de getdate.y, que no té i18 iv +# Hm. Ivan, revisa -I. Cal traduir les coses entrecomillades? jm +# No, són arguments literals de -I, i no tenen traducció. ivb +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" +"Mostra la data actual en el FORMAT indicat, o estableix la data del " +"sistema.\n" +"\n" +" -d, --date=CADENA Mostra la data descrita en la CADENA en comptes de " +"la\n" +" data actual («now», ara).\n" +" -f, --file=FITXERDATES\n" +" Com aplicar «--date» una volta per cada línia de\n" +" FITXERDATES.\n" +" -IPRECISIÓ, --iso-8601[=PRECISIÓ]\n" +" Mostra una cadena de data/hora conforme amb el " +"format\n" +" ISO 8601. PRECISIÓ=«date» només mostra la data;\n" +" «hours», «minutes», o «seconds» mostren la data i " +"hora\n" +" amb la precisió indicada. «--iso-8601» sense " +"PRECISIÓ\n" +" mostra «date» per defecte.\n" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" +" -r, --reference=FITXER\n" +" Mostra la data de l'última modificació del FITXER.\n" +" -R, --rfc-822 Mostra la data conforme a l'RFC-822.\n" +" -s, --set=CADENA Estableix la data descrita en la CADENA.\n" +" -u, --utc, --universal\n" +" Mostra o estableix el Temps Universal Coordinat.\n" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" +"\n" +"FORMAT controla l'eixida. L'única opció vàlida en la segona forma " +"especifica\n" +"el Temps Universal Coordinat. Les seqüències interpretades són:\n" +"\n" +" %% Un % literal.\n" +" %a Dia de la setmana abreujat del locale (dl..dg).\n" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" +" %A Dia de la setmana complet del locale, de longitud variable\n" +" (dilluns..diumenge).\n" +" %b Dia del mes abreujat del locale (gen..des).\n" +" %B Dia del mes complet del locale, de longitud variable\n" +" (gener..desembre).\n" +" %c Data i hora del locale (ds 04 nov 1989 12:02:33 EST).\n" + +# No pose «segle» pq no ho és exactament, així llegiran l'explicació. ivb +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" +" %C Centúria (l'any dividit entre 100 i truncat a un enter) [00-99].\n" +" %d Dia del mes (01..31).\n" +" %D Data (mm/dd/aa).\n" +" %e Dia del mes, replenat amb blancs ( 1..31).\n" + +# Ja sé que sona estrany però és el que vol dir. info date. ivb +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" +" %F Equival a «%Y-%m-%d».\n" +" %g Any de 2 dígits que correspon al número de setmana donat per «%V».\n" +" %G Any de 4 dígits que correspon al número de setmana donat per «%V».\n" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" +" %h Equival a «%b».\n" +" %H Hora (00..23).\n" +" %I Hora (01..12).\n" +" %j Dia de l'any (001..366).\n" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" +" %k Hora ( 0..23).\n" +" %l Hora ( 1..12).\n" +" %m Mes (01..12).\n" +" %M Minut (00..59).\n" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" +" %n Un caràcter de nova línia.\n" +" %N Nanosegons (000000000..999999999).\n" +" %p Indicador AM o PM en majúscules del locale (buit en molts locales).\n" +" %P Indicador am o pm en minúscules del locale (buit en molts locales).\n" +" %r Hora, format de 12 hores (hh:mm:ss [AP]M).\n" +" %R Hora, format de 24 hores (hh:mm).\n" +" %s Segons des de l'1 de gener de 1970 a les 00:00:00 (extensió de " +"GNU).\n" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" +" %S Segon (00..60); el 60 és necessari per acomodar un segon " +"intercalar.\n" +" %t Una tabulació horitzontal.\n" +" %T Hora, format de 24 hores (hh:mm:ss).\n" +" %u Dia de la setmana (1..7), on 1 representa el dilluns.\n" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" +" %U Número de la setmana dins l'any amb el diumenge com a primer dia de " +"la\n" +" setmana (00..53).\n" +" %V Número de la setmana dins l'any amb el dilluns com a primer dia de " +"la\n" +" setmana (01..53).\n" +" %w Dia de la setmana (0..6), on 0 representa el diumenge.\n" +" %W Número de la setmana dins l'any amb el dilluns com a primer dia de " +"la\n" +" setmana (00..53).\n" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" +" %x Representació de la data del locale (dd/mm/aa).\n" +" %X Representació de l'hora del locale (%H:%M:%S).\n" +" %y Últims dos dígits de l'any (00..99).\n" +" %Y Any (1970...).\n" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" +" %z Zona horària a l'estil RFC-822 (+0100) (extensió no estàndard).\n" +" %Z Zona horària (per exemple, «EDT»), o no res si no és determinable.\n" +"\n" +"Per defecte, «date» replena els camps numèrics amb zeros. El «date» de GNU\n" +"reconeix els modificadors següents entre «%» i una directiva numèrica:\n" +"\n" +" «-» (guió) No replena el camp.\n" +" «_» (guió baix) Replena el camp amb espais.\n" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "entrada estàndard" + +#: src/date.c:268 src/date.c:460 +#, c-format +msgid "invalid date `%s'" +msgstr "la data «%s» no és vàlida" + +#: src/date.c:364 +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "les opcions per especificar dates a mostrar són mútuament excloents" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "no es pot usar alhora les opcions per mostrar i per establir dates" + +#: src/date.c:377 +#, c-format +msgid "too many non-option arguments: %s%s" +msgstr "sobren arguments no-opció: %s%s" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" +"manca un «+» al davant de l'argument «%s»; Quan useu una opció per " +"especificar dates, cal que qualsevol argument no-opció siga una cadena de " +"format que comence per «+»." + +#: src/date.c:397 +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "" +"no es pot especificar una cadena de format en usar l'opció «--rfc-822» (-R)" + +# Es refereix a una data. ivb +#: src/date.c:433 +msgid "undefined" +msgstr "indefinida" + +#: src/date.c:435 +msgid "cannot get time of day" +msgstr "no s'ha pogut obtenir l'hora del dia" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "no s'ha pogut establir la data" + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "Paul Rubin, David MacKenzie i Stuart Kemp" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "Forma d'ús: %s [OPCIÓ]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" +"Còpia un fitxer, convertint i formatant les dades d'acord amb les opcions.\n" +"\n" +" bs=OCTETS Fa que «ibs=OCTETS» i «obs=OCTETS».\n" +" cbs=OCTETS Converteix aquest nombre d'OCTETS alhora.\n" +" conv=CLAUS Converteix el fitxer d'acord amb la llista de\n" +" paraules clau separades per comes.\n" +" count=BLOCS Només còpia aquest nombre de BLOCS de " +"l'entrada.\n" +" ibs=OCTETS Llig aquest nombre d'OCTETS alhora.\n" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" +" if=FITXER Llig del FITXER en comptes de fer-ho de " +"l'entrada\n" +" estàndard.\n" +" obs=OCTETS Escriu aquest nombre d'OCTETS alhora.\n" +" of=FITXER Escriu al FITXER en comptes de fer-ho a " +"l'eixida\n" +" estàndard.\n" +" seek=BLOCS Salta aquest nombre de BLOCS de tamany «obs» " +"al\n" +" principi de l'eixida.\n" +" skip=BLOCS Salta aquest nombre de BLOCS de tamany «ibs» " +"al\n" +" principi de l'entrada.\n" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" +"\n" +"BLOCS i OCTETS poden estar seguits dels sufixos multiplicatius següents\n" +"(prefix valor): xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1.000.000,\n" +"M 1.048.576, GB 1.000.000.000, G 1.073.741.824, i així per T, P, E, Z, Y.\n" +"Cada CLAU pot ser:\n" +"\n" + +# Les més llargues són unblock, notrunc, noerror. ivb +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" +" ascii D'EBCDIC a ASCII.\n" +" ebcdic D'ASCII a EBCDIC.\n" +" ibm D'ASCII a EBCDIC alternat.\n" +" block Emplena amb espais cada registre terminat en nova línia fins " +"que\n" +" tinga el tamany «cbs».\n" +" unblock Substitueix els espais del final de cada registre de tamany " +"«cbs»\n" +" per un caràcter de nova línia.\n" +" lcase Transforma les majúscules en minúscules.\n" + +# Les més llargues són unblock, notrunc, noerror. ivb +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" +" notrunc No trunca el fitxer d'eixida.\n" +" ucase Transforma les minúscules en majúscules.\n" +" swab Intercanvia cada parell d'octets de l'entrada.\n" +" noerror Continua després d'un error de lectura.\n" +" sync Emplena cada bloc d'entrada amb NULs fins el tamany «ibs»; " +"quan\n" +" s'usa amb «block» o «unblock», emplena els blocs amb espais en\n" +" comptes de NULs.\n" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "%s+%s registres llegits\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "%s+%s registres escrits\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "registre truncat" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "registres truncats" + +# Usa quote(). ivb +# Condició d'error. ivb +#: src/dd.c:382 +#, c-format +msgid "closing input file %s" +msgstr "en tancar el fitxer d'entrada %s" + +# Usa quote(). ivb +# Condició d'error. ivb +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "en tancar el fitxer d'eixida %s" + +# Usa quote(). ivb +# Condició d'error. ivb +#: src/dd.c:469 +#, c-format +msgid "writing to %s" +msgstr "en escriure %s" + +#: src/dd.c:501 +#, c-format +msgid "invalid conversion: %s" +msgstr "la conversió no és vàlida: %s" + +# Usa quote(). ivb +#: src/dd.c:557 +#, c-format +msgid "unrecognized option %s" +msgstr "l'opció %s no és reconeguda" + +# Usa quote(). ivb +#: src/dd.c:610 +#, c-format +msgid "unrecognized option %s=%s" +msgstr "l'opció %s=%s no és reconeguda" + +# Usa quote(). ivb +#: src/dd.c:616 +#, c-format +msgid "invalid number %s" +msgstr "el número %s no és vàlid" + +# És clar que «conv» és «conversió», però ho deixe així perquè «conv» és +# precisament el nom de l'opció. iv +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"només es pot usar un «conv» de cada grup: {ascii,ebcdic,ibm}, {lcase,ucase}, " +"{block,unblock}, {unblock,sync}" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" +"avís: s'evita un error del nucli en lseek() pel fitxer «%s» de tipus " +"mt_type=0x%0lx -- vegeu per la llista de tipus" + +# Usa quote(). ivb +# Condició d'error. ivb +#: src/dd.c:1170 src/dd.c:1188 +#, c-format +msgid "opening %s" +msgstr "en obrir %s" + +#: src/dd.c:1196 +msgid "file offset out of range" +msgstr "el desplaçament del fitxer està fora de rang" + +# A aquesta frase no li veig el sentit. jm +# Usa quote(). ivb +# Condició d'error. ivb +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "en avançar més enllà de %s octets en el fitxer d'eixida %s" + +#: src/df.c:49 +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "Torbjorn Granlund, David MacKenzie, Larry McVoy i Paul Eggert" + +# FIXME: This arrangement is extremely language-dependent. ivb +# Ehemmm... AARGHHFSSS!! ivb +#: src/df.c:153 +msgid "Filesystem Type" +msgstr "S. fitxers Tipus" + +#: src/df.c:155 +msgid "Filesystem " +msgstr "S. fitxers " + +# Informació sobre inodes. ivb +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr " Nodes-i Usats Lliures %%Ús" + +# Format humà 2. ivb +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Tamany En ús Lliure %%Ús" + +# Format humà 1. ivb +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Tamany En ús Lliure %%Ús" + +# Format portable 1. ivb +#: src/df.c:167 +#, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr " Blocs %4s Usats Lliures Cabuda" + +# Format habitual. ivb +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr " Blocs %4s Usats Lliures %%Ús" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr " Muntat en\n" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" +"Mostra informació sobre el sistema de fitxers on resideix cada FITXER, o " +"(per\n" +"defecte) informació sobre tots els sistemes de fitxers.\n" +"\n" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" +" -a, --all Inclou els sistemes de fitxers amb 0 blocs.\n" +" -B, --block-size=TAMANY\n" +" Usa blocs de TAMANY octets.\n" +" -h, --human-readable Mostra els tamanys en un format llegible pels " +"humans\n" +" (per exemple: 1K 234M 2G).\n" +" -H, --si El mateix, però fa servir potències de 1000, no de\n" +" 1024.\n" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" +" -i, --inodes Llista informació sobre els nodes índex en comptes " +"de\n" +" sobre l'ús de blocs.\n" +" -k Equival a «--block-size=1K».\n" +" --no-sync No invoca sync() abans d'obtenir la informació sobre\n" +" l'ús (per defecte).\n" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" +" -P, --portability Usa el format d'eixida POSIX.\n" +" --sync Invoca sync() abans d'obtenir la informació sobre " +"l'ús.\n" +" -t, --type=TIPUS Limita el llistat als sistemes de fitxers del TIPUS\n" +" especificat.\n" +" -T, --print-type Mostra el tipus de sistema de fitxers.\n" +" -x, --exclude-type=TIPUS\n" +" Limita el llistat als sistemes de fitxers que no " +"siguen\n" +" del TIPUS especificat.\n" +" -v (No es té en compte.)\n" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" +"\n" +"TAMANY pot ser un dels següents: kB 1000, K 1024, MB 1.000.000, M 1.048.576, " +"i\n" +"així per G, T, P, E, Z, Y. També poden anar precedits d'un número enter.\n" + +# Usa quote(). ivb +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "s'ha seleccionat i exclós alhora el tipus de sistema de fitxers %s" + +#: src/df.c:903 +msgid "Warning: " +msgstr "avís: " + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "%sno es pot llegir la taula de sistemes de fitxers muntats" + +#: src/dircolors.c:103 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "Foma d'ús: %s [OPCIÓ]... [FITXER]\n" + +#: src/dircolors.c:104 +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"Produeix ordres per establir la variable d'entorn LS_COLORS.\n" +"\n" +"Opcions per determinar el format de l'eixida:\n" +" -b, --sh, --bourne-shell\n" +" Produeix codi destinat a l'intèrpret Bourne per\n" +" establir LS_COLORS.\n" +" -c, --csh, --c-shell Produeix codi destinat a l'intèrpret C per\n" +" establir LS_COLORS.\n" +" -p, --print-database Mostra els valors per defecte.\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" +"\n" +"Si s'especifica un FITXER, aquest es llig per determinar quins colors usar\n" +"per quins tipus de fitxer i extensions. Altrament, s'usa una base de dades\n" +"precompilada. Proveu «dircolors --print-database» per obtenir detalls " +"sobre\n" +"el format d'aquests fitxers.\n" + +#: src/dircolors.c:299 +#, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s:%lu: la línia no és vàlida; manca el segon component" + +#: src/dircolors.c:371 +#, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s:%lu: la paraula clau «%s» no és reconeguda" + +# Es refereix a la base de dades interna de dircolors. ivb +#: src/dircolors.c:372 +msgid "" +msgstr "" + +#: src/dircolors.c:467 +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" +"l'opció que mostra la base de dades interna de «dircolors» i la que " +"selecciona una sintaxi d'intèrpret són mútuament excloents" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" +"no es poden usar arguments FITXER quan s'usa l'opció que mostra la base de " +"dades interna de «dircolors»" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "" +"no hi ha variable d'entorn SHELL ni s'ha indicat cap opció de tipus " +"d'intèrpret" + +#: src/dirname.c:33 src/pathchk.c:59 +msgid "David MacKenzie and Jim Meyering" +msgstr "David MacKenzie i Jim Meyering" + +#: src/dirname.c:46 +#, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"Forma d'ús: %s NOM\n" +" o bé: %s OPCIÓ\n" + +# FIXME: This is not true: `dirname foo/' prints `.'. ivb +#: src/dirname.c:51 +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" +"Mostra el NOM sense el «/component» final; si el NOM no conté cap «/», " +"mostra\n" +"«.» (indicant així el directori actual).\n" +"\n" + +#: src/du.c:49 +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert i Jim Meyering" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" +"Resumeix l'ús de disc de cada FITXER, de forma recursiva pels directoris.\n" +"\n" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" +" -a, --all Mostra recomptes per tots els fitxers, no només pels\n" +" directoris.\n" +" --apparent-size Mostra els tamanys aparents en comptes de l'ús de\n" +" disc; tot i que el tamany aparent sol ser menor, pot\n" +" ser major pels forats dels fitxers dispersos, per\n" +" fragmentació interna, blocs indirectes...\n" +" -B, --block-size=TAMANY\n" +" Usa blocs de TAMANY octets.\n" +" -b, --bytes Equival a «--apparent-size --block-size=1».\n" +" -c, --total Produeix un recompte total.\n" +" -D, --dereference-args\n" +" Segueix cada FITXER que siga un enllaç simbòlic.\n" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" +" -h, --human-readable Mostra els tamanys en un format llegible pels " +"humans\n" +" (per exemple: 1K 234M 2G).\n" +" -H, --si El mateix, però fa servir potències de 1000, no de\n" +" 1024.\n" +" -k Equival a «--block-size=1K».\n" +" -l, --count-links Compta els tamanys més d'una volta en el cas " +"d'enllaços\n" +" forts.\n" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" +" -L, --dereference Segueix tots els enllaços simbòlics.\n" +" -S, --separate-dirs No inclou el tamany dels subdirectoris.\n" +" -s, --summarize Només mostra un total per cada argument.\n" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" +" -x, --one-file-system Exclou els directoris que es troben en altres\n" +" sistemes de fitxers diferents.\n" +" -X FITXER, --exclude-from=FITXER\n" +" Exclou aquells fitxers que concorden amb algun dels\n" +" patrons continguts en el FITXER.\n" +" --exclude=PATRÓ Exclou aquells fitxers que concorden amb el PATRÓ.\n" +" --max-depth=N Només mostra el total d'un directori (o fitxer, amb\n" +" «--all») si es troba N nivells o menys per sota de\n" +" l'argument de la línia d'ordres; «--max-depth=0»\n" +" equival a «--summarize».\n" + +# Usa quote(). ivb +#: src/du.c:337 +#, c-format +msgid "cannot change to parent of directory %s" +msgstr "no s'ha pogut canviar al pare del directori %s" + +#: src/du.c:345 +#, c-format +msgid "cannot change to directory %s" +msgstr "no s'ha pogut canviar al directori %s" + +# Usa quote(). ivb +#: src/du.c:352 +#, c-format +msgid "cannot read directory %s" +msgstr "no s'ha pogut llegir el directori %s" + +# Els 3 fan el mateix ús. ivb +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "total" + +# Usa quote(). ivb +#: src/du.c:641 +#, c-format +msgid "invalid maximum depth %s" +msgstr "la profunditat màxima %s no és vàlida" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "no es pot resumir les entrades i mostrar-ne els continguts alhora" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "avís: resumir equival a utilitzar «--max-depth=0»" + +# conflicts -> no compatible? jm +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "avís: resumir no és compatible amb «--max-depth=%d»" + +#: src/echo.c:77 +#, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "Forma d'ús: %s [OPCIÓ]... [CADENA]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" +"Fa eco de cada CADENA a l'eixida estàndard.\n" +"\n" +" -n No genera el caràcter final de nova línia.\n" +" -e Habilita la interpretació dels caràcters escapats " +"amb\n" +" una barra invertida llistats a sota.\n" +" -E Inhabilita la interpretació d'aquestes seqüències en " +"la\n" +" CADENA.\n" + +# \NNN és l'entrada més llarga. ivb +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" +"\n" +"Si no s'especifica «-E» es reconeixen i interpreten les seqüències " +"següents:\n" +"\n" +" \\NNN El caràcter el codi ASCII del qual és NNN (en octal).\n" +" \\\\ Barra invertida.\n" +" \\a Alarma (BEL).\n" +" \\b Retrocés.\n" + +# \NNN és l'entrada més llarga. ivb +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\c Elimina el caràcter final de nova línia.\n" +" \\f Salt de pàgina.\n" +" \\n Nova línia.\n" +" \\r Retorn de carro.\n" +" \\t Tabulació horitzontal.\n" +" \\v Tabulació vertical.\n" + +#: src/env.c:93 +msgid "Richard Mlynarik and David MacKenzie" +msgstr "Richard Mlynarik i David MacKenzie" + +#: src/env.c:119 +#, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "Forma d'ús: %s [OPCIÓ]... [-] [NOM=VALOR]... [ORDRE [ARG]...]\n" + +#: src/env.c:122 +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" +"Estableix cada NOM a VALOR en l'entorn i executa l'ORDRE.\n" +"\n" +" -i, --ignore-environment\n" +" Parteix d'un entorn buit.\n" +" -u, --unset=NOM Elimina la variable NOM de l'entorn.\n" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" +"\n" +"Un «-» a soles implica «-i». Si no s'indica l'ORDRE, mostra l'entorn\n" +"resultant.\n" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Converteix els caràcters de tabulació de cada FITXER a espais, i escriu el\n" +"resultat a la sortida estàndard. Sense FITXER, o quan FITXER és «-», " +"llegeix\n" +"l'entrada estàndard.\n" +"\n" + +# Hau! ivb +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" +" -i, --initial Només converteix les tabulacions que es troben a\n" +" prinicipi de línia.\n" +" -t, --tabs=NÚMERO Tabula a una distància de NÚMERO caràcters, en lloc\n" +" de 8.\n" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" +" -t, --tabs=LLISTA Especifica una llista de posicions explícites per " +"cada\n" +" tabulació, separades per comes.\n" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "la distància de tabulació conté un caràcter no vàlid" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "la distància de tabulació no pot ser 0" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "les distàncies de tabulació han de ser ascendents" + +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "l'opció «-LLISTA» és obsoleta; useu «-t LLISTA»" + +#: src/expr.c:90 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"Forma d'ús: %s EXPRESSIÓ\n" +" o bé: %s OPCIÓ\n" + +# El més llarg és «substr CADENA POS LONGITUD». ivb +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" +"\n" +"Mostra el valor de l'EXPRESSIÓ en l'eixida estàndard. A sota, una línia en\n" +"blanc separa grups amb precedència creixent. L'EXPRESSIÓ pot ser:\n" +"\n" +" ARG1 | ARG2 ARG1 si no és nul ni 0, ARG2 altrament.\n" +"\n" +" ARG1 & ARG2 ARG1 si cap argument és nul ni 0, 0 " +"altrament.\n" + +# El més llarg és «substr CADENA POS LONGITUD». ivb +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" +"\n" +" ARG1 < ARG2 ARG1 és menor que ARG2.\n" +" ARG1 <= ARG2 ARG1 és menor que o igual a ARG2.\n" +" ARG1 = ARG2 ARG1 és igual a ARG2.\n" +" ARG1 != ARG2 ARG1 no és igual a ARG2.\n" +" ARG1 >= ARG2 ARG1 és major que o igual a ARG2.\n" +" ARG1 > ARG2 ARG1 és major que ARG2.\n" + +# El més llarg és «substr CADENA POS LONGITUD». ivb +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" +"\n" +" ARG1 + ARG2 Suma aritmètica d'ARG1 i ARG2.\n" +" ARG1 - ARG2 Resta aritmètica d'ARG1 i ARG2.\n" + +# El més llarg és «substr CADENA POS LONGITUD». ivb +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" +"\n" +" ARG1 * ARG2 Producte aritmètic d'ARG1 i ARG2.\n" +" ARG1 / ARG2 Quocient aritmètic d'ARG1 entre ARG2.\n" +" ARG1 % ARG2 Residu aritmètic d'ARG1 entre ARG2.\n" + +# El més llarg és «substr CADENA POS LONGITUD». ivb +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" +"\n" +" CADENA : EXPREG Resultat d'aplicar l'expressió regular " +"EXPREG\n" +" sobre la CADENA.\n" +"\n" +" match CADENA EXPREG Equival a «CADENA : EXPREG».\n" +" substr CADENA POS LONGITUD Sub-cadena de CADENA, comptant POS des d'1.\n" +" index CADENA CARÀCTERS Ãndex de CADENA on hi ha algun CARÀCTER, o " +"0.\n" +" length STRING Longitud de la CADENA.\n" + +# El més llarg és «substr CADENA POS LONGITUD». ivb +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" +" + ELEMENT Interpreta l'ELEMENT com a una cadena, " +"encara\n" +" que siga una paraula clau com «match» o un\n" +" operador com «/».\n" +" ( EXPRESSIÓ ) Valor de l'EXPRESSIÓ.\n" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" +"\n" +"Teniu en compte que molts operadors han de ser escapats o entrecometats en " +"els\n" +"intèrprets d'ordres. Les comparacions són aritmètiques entre números,\n" +"lexicogràfiques en altre cas. Les comparacions amb patrons retornen la " +"cadena\n" +"coincident entre «\\(» i «\\)» o la cadena buida; si no s'usa «\\(» i " +"«\\)»,\n" +"retornen el nombre de caràcters coincidents o 0.\n" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +msgid "syntax error" +msgstr "error de sintaxi" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" +"avís: l'expressió «%s» no és portable: usar «^» com a primer caràcter d'una " +"expressió regular bàsica no és portable; es descarta" + +# És un missatge d'error (expr a + 3). ivb +#: src/expr.c:586 src/expr.c:625 +msgid "non-numeric argument" +msgstr "l'argument no és numèric" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "divisió entre zero" + +#: src/factor.c:74 +#, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"Forma d'ús: %s [NÚMERO]...\n" +" o bé: %s OPCIÓ\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" +"Mostra els factors primers de cada NÚMERO.\n" +"\n" + +#: src/factor.c:85 +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" +"\n" +"Mostra els factors primers de cada NÚMERO enter especificat. Si no " +"s'indica\n" +"cap argument en la línia d'ordres, es llegiran de l'entrada estàndard.\n" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "«%s» no és un número enter positiu vàlid" + +# no estic molt content amb aquesta. jm +# Retoque un poc la forma d'ús, queda un poc més clar. ivb +# Un retoc més i ja pareix més un nom d'opció. ivb +#: src/false.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Forma d'ús: %s [arguments de la línia d'ordres que seran descartats]\n" +" o bé: %s OPCIÓ\n" +"Ix amb un codi d'estat que indica error.\n" +"\n" +"Aquests noms d'opcions no es poden abreviar:\n" +"\n" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "Forma d'ús: %s [-DÃGITS] [OPCIÓ]... [FITXER]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" +"Reformata els paràgrafs de cada FITXER, i escriu en la sortida estàndard.\n" +"Sense FITXER, o si el FITXER és «-», llegeix l'entrada estàndard.\n" +"\n" + +# buscar una traducció per refill +# Així queda prou clar, d'acord amb l'info. ivb +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" +" -c, --crown-margin Preserva la indentació de les dues primeres línies.\n" +" -p, --prefix=CADENA Només combina les línies que tenen la CADENA com a\n" +" prefix.\n" +" -s, --split-only Només separa les línies llargues, no combina les " +"línies\n" +" curtes.\n" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" +" -t, --tagged-paragraph\n" +" La indentació de la primera línia és diferent de la " +"de\n" +" la segona.\n" +" -u, --uniform-spacing Un espai entre paraules, dos entre frases.\n" +" -w, --width=NOMBRE Indica el NOMBRE màxim de caràcters per línia (per\n" +" defecte 75 columnes).\n" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" +"\n" +"En «-wNOMBRE» es pot ometre la lletra «w».\n" + +#: src/fmt.c:345 +#, c-format +msgid "invalid width option: `%s'" +msgstr "l'opció d'amplada no és vàlida: `%s'" + +#: src/fmt.c:385 +#, c-format +msgid "invalid width: `%s'" +msgstr "l'amplada no és vàlida: `%s'" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" +"Ajusta les línies de cada FITXER (per defecte l'entrada estàndard), i " +"escriu\n" +"en la sortida estàndard.\n" +"\n" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" +" -b, --bytes Compta octets, i no columnes.\n" +" -s, --spaces Només parteix les línies en els espais.\n" +" -w, --width=AMPLADA Indica el nombre de columnes, en lloc de 80.\n" + +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "l'opció «%s» és obsoleta; useu «%s»" + +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "el nombre de columnes no és vàlid: `%s'" + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Escriu les 10 primeres línies de cada FITXER en la sortida estàndard. Amb " +"més\n" +"d'un fitxer, els precedeix amb una capçalera amb el nom del fitxer. Sense " +"cap\n" +"FITXER, o quan FITXER és «-», llegeix l'entrada estàndard.\n" +"\n" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" +" -c, --bytes=TAMANY Escriu els primers TAMANY octets.\n" +" -n, --lines=NÚMERO Escriu les primeres NÚMERO línies, en lloc de 10.\n" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" +" -q, --quiet, --silent Omet les capçaleres amb els noms dels fitxers.\n" +" -v, --verbose Sempre escriu les capçaleres amb els noms dels " +"fitxers.\n" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" +"\n" +"TAMANY pot tenir un sufix multiplicador: «b» per 512 octets, «k» per 1 K,\n" +"«m» per 1 M.\n" + +# No usa quote(). ivb +#: src/head.c:190 +#, c-format +msgid "cannot reposition file pointer for %s" +msgstr "no s'ha pogut recol·locar el punter del fitxer de «%s»" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "%s: %s és tan gran que no es pot representar" + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "el nombre de línies" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "el nombre d'octets" + +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "el nombre de línies no és vàlid" + +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "el nombre d'octets no és vàlid" + +#: src/head.c:341 +#, c-format +msgid "unrecognized option `-%c'" +msgstr "l'opció «-%c» no és reconeguda" + +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "l'opció «-%s» és obsoleta; useu «-%c %.*s%.*s%s»" + +#: src/hostid.c:48 +#, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" +"Forma d'ús: %s\n" +" o bé: %s OPCIÓ\n" +"Mostra l'identificador numèric (en hexadecimal) de l'estació actual.\n" +"\n" + +#: src/hostname.c:67 +#, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" +"Forma d'ús: %s [NOM]\n" +" o bé: %s OPCIÓ\n" +"Mostra o estableix el nom d'estació del sistema actual.\n" +"\n" + +#: src/hostname.c:104 +#, c-format +msgid "cannot set hostname to `%s'" +msgstr "no s'ha pogut establir el nom d'estació a «%s»" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "no es pot establir el nom d'estació; el sistema no ho suporta" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "no s'ha pogut determinar el nom d'estació" + +#: src/id.c:36 +msgid "Arnold Robbins and David MacKenzie" +msgstr "Arnold Robbins i David MacKenzie" + +#: src/id.c:87 +#, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "Forma d'ús: %s [OPCIÓ]... [NOM_USUARI]\n" + +#: src/id.c:88 +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" +"Mostra informació sobre NOM_USUARI, o sobre la usuària o usuari actual.\n" +"\n" +" -a No es té en compte, s'accepta per compatibilitat amb\n" +" altres versions.\n" +" -g, --group Només mostra l'identificador efectiu de grup.\n" +" -G, --groups Mostra tots els identificadors de grup.\n" +" -n, --name Mostra un nom en comptes d'un número, per «-ugG».\n" +" -r, --real Mostra l'identificador real en comptes de l'efectiu,\n" +" per «-ugG».\n" +" -u, --user Només mostra l'identificador efectiu d'usuari.\n" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" +"\n" +"Sense cap OPCIÓ, mostra un conjunt útil d'informació d'identificació.\n" + +#: src/id.c:162 +msgid "cannot print only user and only group" +msgstr "no es pot mostrar només l'usuari i només el grup" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "no es pot mostrar només noms o ID reals en el format per defecte" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "%s: l'usuari no existeix" + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "no s'ha pogut trobar el nom de l'ID d'usuari %u" + +#: src/id.c:235 +#, c-format +msgid "cannot find name for group ID %u" +msgstr "no s'ha pogut trobar el nom de l'ID de grup %u" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "no s'ha pogut obtenir la llista de grups suplementaris" + +#: src/id.c:385 +msgid " groups=" +msgstr " grups=" + +#: src/install.c:269 +msgid "the strip option may not be used when installing a directory" +msgstr "no es pot usar l'opció «--strip» en instal·lar un directori" + +# Els 2 usen quote(). ivb +#: src/install.c:292 src/mkdir.c:140 +#, c-format +msgid "invalid mode %s" +msgstr "el mode %s no és vàlid" + +# Els 2 usen quote(). ivb +# És un missatge informatiu. ivb +#: src/install.c:307 src/install.c:371 +#, c-format +msgid "creating directory %s" +msgstr "s'està creant el directori %s" + +# Usa quote(). ivb +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "" +"s'instal·len múltiples fitxers però l'últim argument, %s, no és un directori" + +# Usa quote(). ivb +#: src/install.c:435 +#, c-format +msgid "%s is a directory" +msgstr "%s és un directori" + +# Usa quote(). ivb +#: src/install.c:495 +#, c-format +msgid "cannot obtain time stamps for %s" +msgstr "no s'han pogut obtenir les dates de %s" + +# Usa quote(). ivb +#: src/install.c:507 +#, c-format +msgid "cannot set time stamps for %s" +msgstr "no s'han pogut establir les dates de %s" + +#: src/install.c:528 +msgid "fork system call failed" +msgstr "ha fallat la crida al sistema fork()" + +#: src/install.c:532 +msgid "cannot run strip" +msgstr "no s'ha pogut executar «strip»" + +#: src/install.c:539 +msgid "strip failed" +msgstr "ha fallat el programa «strip»" + +# Usa quote(). ivb +#: src/install.c:560 +#, c-format +msgid "invalid user %s" +msgstr "l'usuari %s no és vàlid" + +# Usa quote(). ivb +#: src/install.c:578 +#, c-format +msgid "invalid group %s" +msgstr "el grup %s no és vàlid" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"Forma d'ús: %s [OPCIÓ]... ORIGEN DESTà (1r format)\n" +" o bé: %s [OPCIÓ]... ORIGEN... DIRECTORI (2n format)\n" +" o bé: %s -d [OPCIÓ]... DIRECTORI... (3r format)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" +"En els dos primers formats es còpia un ORIGEN a un DESTà o diversos ORIGENs " +"al\n" +"DIRECTORI existent, i se n'estableixen els permissos i el propietari o " +"grup.\n" +"En el tercer format es creen tots els components de cada DIRECTORI indicat.\n" +"\n" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" +" --backup[=CONTROL]\n" +" Crea una còpia de seguretat de cada fitxer destí\n" +" existent.\n" +" -b Com «--backup», però no accepta cap argument.\n" +" -c (No es té en compte.)\n" +" -d, --directory Tracta tots els arguments com a noms de directori; " +"crea\n" +" tots els components de cada directori especificat.\n" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" +" -D Crea tots els components que porten al DESTà excepte\n" +" l'últim, i còpia ORIGEN a DESTÃ; és útil en el 1r\n" +" format.\n" +" -g, --group=GRUP Estableix la propietat de grup a GRUP, en comptes\n" +" d'usar el grup actual del procés.\n" +" -m, --mode=MODE Estableix els permissos a MODE (com fa «chmod»), en\n" +" comptes d'usar «rwxr-xr-x».\n" +" -o, --owner=OWNER Estableix el propietari (només pel superusuari).\n" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" +" -p, --preserve-timestamps\n" +" Aplica les dates d'accés i modificació dels fitxers\n" +" ORIGEN als fitxers destí corresponents.\n" +" -s, --strip Elimina les taules de símbols, només pels formats 1r\n" +" i 2n.\n" +" -S, --suffix=SUFIX Reemplaça el sufix habitual de les còpies de\n" +" seguretat.\n" +" -v, --verbose Mostra el nom de cada directori segons es van " +"creant.\n" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"\n" +"El sufix de còpia de seguretat és «~», si no s'estableix amb «--suffix» o " +"amb\n" +"la variable SIMPLE_BACKUP_SUFFIX. El mètode de control de versions es pot\n" +"establir amb l'opció «--backup» o fent servir la variable d'entorn\n" +"VERSION_CONTROL. Es poden usar aquests valors:\n" +"\n" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "Forma d'ús: %s [OPCIÓ]... FITXER1 FITXER2\n" + +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" +"Escriu una línia en la sortida estàndard per cada parell de línies de\n" +"l'entrada que continguin idèntics camps d'unió. El camp per defecte és el\n" +"primer, delimitat per espais en blanc. Si o FITXER1 o FITXER2 (no els dos) " +"és\n" +"«-», llegeix l'entrada estàndard.\n" +"\n" +" -a NUMFITXER Escriu les línies desaparellades del fitxer " +"NUMFITXER,\n" +" «1» pel FITXER1 o «2» pel FITXER2.\n" +" -e CADENA Reemplaça els camps que manquen amb CADENA.\n" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" +" -i, --ignore-case No té en compte les majúscules i minúscules en " +"comparar\n" +" els camps.\n" +" -j CAMP (En desús.) Equival a «-1 CAMP -2 CAMP».\n" +" -j1 CAMP (En desús.) Equival a «-1 CAMP».\n" +" -j2 CAMP (En desús.) Equival a «-2 CAMP».\n" +" -o FORMAT Usa el FORMAT per construir la línia de sortida.\n" +" -t CARÀCTER Usa el CARÀCTER com a separador dels camps d'entrada " +"i\n" +" de sortida.\n" + +#: src/join.c:165 +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" +" -v NUMFITXER Com «-a NUMFITXER», però elimina les línies\n" +" emparellades.\n" +" -1 CAMP Uneix respecte aquest CAMP del fitxer 1.\n" +" -2 CAMP Uneix respecte aquest CAMP del fitxer 2.\n" + +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" +"\n" +"Tret que especifiqueu «-t CARÀCTER», els separadors de camp són espais en\n" +"blanc i són descartats; si no el separador és el CARÀCTER. Cada CAMP\n" +"s'identifica amb un número, comptant des de 1. FORMAT és una especifiació, " +"o\n" +"diverses separades per espais o comes, del tipus «NUMFITXER.CAMP» o «0». " +"El\n" +"FORMAT per defecte escriu el camp d'unió, els camps restants del FITXER1 i " +"els\n" +"camps restants del FITXER2, tots separats pel CARÀCTER.\n" + +#: src/join.c:645 +#, c-format +msgid "invalid field specifier: `%s'" +msgstr "l'especificació de camp «%s» no és vàlida" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, c-format +msgid "invalid field number: `%s'" +msgstr "el número de camp «%s» no és vàlid" + +# No ho pose al davant pq tb hi apareix el número de camp. ivb +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "el número de fitxer en l'especificació de camp no és vàlid: «%s»" + +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "el número de camp «%s» del fitxer 1 no és vàlid" + +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "el número de camp «%s» del fitxer 2 no és vàlid" + +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "sobren arguments no-opció" + +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "manquen arguments no-opció" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "ambdós fitxers no poden ser l'entrada estàndard" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" +"Forma d'ús: %s [-s SENYAL | -SENYAL] PID...\n" +" o bé: %s -l [SENYAL]...\n" +" o bé: %s -t [SENYAL]...\n" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" +"Envia senyals als processos, o llista els senyals.\n" +"\n" + +#: src/kill.c:106 +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" +" -s, --signal=SENYAL, -SENYAL\n" +" Especifica el nom o número del senyal a enviar.\n" +" -l, --list Llista els noms dels senyals, o converteix els noms " +"de\n" +" senyals a números i a la inversa.\n" +" -t, --table Mostra una taula amb informació sobre els senyals.\n" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" +"\n" +"SENYAL pot ser un nom de senyal com «HUP», un número de senyal com «1», o\n" +"l'estat d'eixida d'un procés terminat per un senyal. PID és un número " +"enter;\n" +"si és negatiu identifica un grup de processos.\n" + +#: src/kill.c:163 +#, c-format +msgid "%s: invalid signal" +msgstr "%s: el senyal no és vàlid" + +#: src/kill.c:262 +#, c-format +msgid "missing operand after `%s'" +msgstr "manca un argument després de «%s»" + +#: src/kill.c:274 +#, c-format +msgid "%s: invalid process id" +msgstr "%s: l'identificador de procés no és vàlid" + +#: src/kill.c:327 +#, c-format +msgid "invalid option -- %c" +msgstr "l'opció «%c» no és vàlida" + +#: src/kill.c:336 +#, c-format +msgid "%s: multiple signals specified" +msgstr "%s: s'han especificat múltiples senyals" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "s'han especificat múltiples opcions «-l» o «-t»" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "no es pot combinar un senyal amb «-l» o «-t»" + +#: src/link.c:51 +#, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"Forma d'ús: %s FITXER1 FITXER2\n" +" o bé: %s OPCIÓ\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" +"Crida la funció link() per crear un enllaç anomenat FITXER2 que apunte cap " +"a\n" +"un FITXER1 existent.\n" +"\n" + +# Usa quote() en els 2 args. ivb +#: src/link.c:98 +#, c-format +msgid "cannot create link %s to %s" +msgstr "no s'ha pogut crear l'enllaç %s cap a %s" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "Mike Parker i David MacKenzie" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "%s: avís: fer un enllaç fort cap a un enllaç simbòlic no és portable" + +#: src/ln.c:174 +#, c-format +msgid "%s: hard link not allowed for directory" +msgstr "%s: no es permet l'enllaç fort cap al directori" + +#: src/ln.c:246 +#, c-format +msgid "%s: cannot overwrite directory" +msgstr "%s: no es pot sobreescriure un directori" + +# Usa quote(). ivb +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "%s: voleu reemplaçar %s? " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: el fitxer ja existeix" + +#: src/ln.c:304 +#, c-format +msgid "create symbolic link %s to %s" +msgstr "es crea l'enllaç simbòlic %s cap a %s" + +# Usa quote() en els 2 args. ivb +# És un missatge de progrés. ivb +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "es crea un l'enllaç fort %s cap a %s" + +# Usa quote() en els 2 args. ivb +# És un missatge de progrés. ivb +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "s'està creant l'enllaç simbòlic %s a %s" + +# Usa quote() en els 2 args. ivb +# Indica condició d'error. ivb +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "s'està creant l'enllaç fort %s a %s" + +#: src/ln.c:339 +#, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"Forma d'ús: %s [OPCIÓ]... OBJECTIU [NOM_ENLLAÇ]\n" +" o bé: %s [OPCIÓ]... OBJECTIU... DIRECTORI\n" +" o bé: %s [OPCIÓ]... --target-directory=DIRECTORI OBJECTIU...\n" + +# Txúpate esa! ivb +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" +"Crea un enllaç (amb un NOM_ENLLAÇ opcional) que apunta cap a l'OBJECTIU\n" +"especificat. Si s'omet el NOM_ENLLAÇ, es crea en el directori actual un\n" +"enllaç amb el mateix nom base que l'OBJECTIU. Per usar la segona forma amb\n" +"més d'un OBJECTIU, l'últim argument ha de ser un directori; es crearan en " +"el\n" +"directori enllaços a cada OBJECTIU. Per defecte es creen enllaços forts; " +"es\n" +"creen simbòlics fent servir «--symbolic». En crear enllaços forts, cal que\n" +"existesca cadascun dels fitxers OBJECTIU.\n" +"\n" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" +" --backup[=CONTROL]\n" +" Crea una còpia de seguretat de cada fitxer destí\n" +" existent.\n" +" -b Com «--backup», però no accepta cap argument.\n" +" -d, -F, --directory Crea enllaços forts cap als directoris (només pel\n" +" superusuari).\n" +" -f, --force Elimina els fitxers destí existents.\n" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" +" -n, --no-dereference Tracta un destí que siga un enllaç simbòlic a un\n" +" directori com si fóra un fitxer normal.\n" +" -i, --interactive Pregunta si cal eliminar algun destí.\n" +" -s, --symbolic Crea enllaços simbòlics en comptes de forts.\n" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" +" -S, --suffix=SUFIX Reemplaça el sufix habitual de les còpies de\n" +" seguretat.\n" +" --target-directory=DIRECTORI\n" +" Especifica el DIRECTORI on crear els enllaços.\n" +" -v, --verbose Mostra els noms de cada fitxer enllaçat.\n" + +#: src/ln.c:521 +#, c-format +msgid "%s: specified target directory is not a directory" +msgstr "%s: el directori de destí especificat no és un directori" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "" +"quan es creen múltiples enllaços, l'últim argument ha de ser un directori" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "Forma d'ús: %s [OPCIÓ]\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" +"Mostra el nom de la usuària o usuari actual.\n" +"\n" + +#: src/logname.c:99 +#, c-format +msgid "%s: no login name\n" +msgstr "%s: no hi ha nom d'entrada\n" + +# Data de fitxers antics (p.ex. «15 gen 2003»). Ocupa igual que l'altra. ivb +#: src/ls.c:673 +msgid "%b %e %Y" +msgstr "%e %b %Y" + +# Data de fitxers nous (p.ex. «15 gen 11:53»). Ocupa igual que l'altra. ivb +#: src/ls.c:681 +msgid "%b %e %H:%M" +msgstr "%e %b %H:%M" + +#: src/ls.c:1307 +#, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "" +"es descarta el valor no vàlid de la variable d'entorn QUOTING_STYLE: %s" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "es descarta l'amplària no vàlida en la variable d'entorn COLUMNS: %s" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "" +"es descarta l'amplària no vàlida de tabulació en la variable d'entorn " +"TABSIZE: %s" + +#: src/ls.c:1482 +#, c-format +msgid "invalid line width: %s" +msgstr "l'amplària de línia no és vàlida: %s" + +#: src/ls.c:1556 +#, c-format +msgid "invalid tab size: %s" +msgstr "l'amplària de tabulació no és vàlida: %s" + +#: src/ls.c:1722 +#, c-format +msgid "invalid time style format %s" +msgstr "l'estil de data «%s» no és vàlid" + +#: src/ls.c:2054 +#, c-format +msgid "unrecognized prefix: %s" +msgstr "el prefix no és reconegut: %s" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "el valor de la variable d'entorn LS_COLORS no és interpretable" + +# Usa quote(). ivb +#: src/ls.c:2145 +#, c-format +msgid "cannot determine device and inode of %s" +msgstr "no es poden determinar el dispositiu i node índex de %s" + +# Usa quote(). ivb +#: src/ls.c:2155 +#, c-format +msgid "not listing already-listed directory: %s" +msgstr "no es llista el directori ja llistat: %s" + +# Els 2 usen quote(). ivb +# Indica condició d'error. ivb +#: src/ls.c:2208 src/remove.c:929 +#, c-format +msgid "reading directory %s" +msgstr "en llegir el directori %s" + +# Usa quote() en els 2 args. ivb +#: src/ls.c:2603 +#, c-format +msgid "cannot compare file names %s and %s" +msgstr "no es poden comparar els noms de fitxer %s i %s" + +# Traduint tot açò s'entenen tres coses: +# 1.- Què significa que l'ls pateix el «second system effect» +# 2.- Com és d'important el principi KISS +# 3.- Com és de _vital_ el moviment cap enrere de la pantalla de text +# (Déu els compila i ells s'enllacen!) ivb +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" +"Llista informació sobre els cada FITXER (per defecte sobre el directori\n" +"actual). Ordena les entrades alfabèticament si no s'indica cap de les " +"opcions\n" +"«-cftuSUX» o «--sort».\n" +"\n" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" +" -a, --all No amaga les entrades que comencen amb «.».\n" +" -A, --almost-all No llista els directoris «.» i «..».\n" +" --author Mostra l'autor de cada fitxer.\n" +" -b, --escape Mostra seqüències d'escapada octals pels caràcters " +"no\n" +" gràfics.\n" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" +" -B, --ignore-backups No mostra les entrades acabades en «~».\n" +" -c Amb «-lt»: ordena per, i mostra, la data de canvi\n" +" (moment de l'última modificació de la informació\n" +" d'estat del fitxer).\n" +" Amb «-l»: mostra la data de canvi i ordena pel nom.\n" +" Altrament: ordena per la data de canvi.\n" + +#: src/ls.c:3784 +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" +" -C Llista les entrades en columnes.\n" +" --color[=QUAN] Controla quan s'usen colors per distingir tipus de\n" +" fitxers. QUAN pot ser «never», «always» o «auto».\n" +" -d, --directory Llista les entrades dels directoris en comptes de " +"llurs\n" +" continguts, i no segueix els enllaços simbòlics.\n" +" -D, --dired Genera eixida preparada pel mode «dired» d'Emacs.\n" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" +" -f No ordena, activa «-aU» i desactiva «-lst».\n" +" -F, --classify Afig un caràcter identificador del tipus d'entrada " +"(un\n" +" de «*/=@|»).\n" +" --format=PARAULA Cada PARAULA equival a l'(opció): across (-x),\n" +" commas (-m), horizontal (-x), long (-l),\n" +" single-column (-1), verbose (-l), vertical (-C).\n" +" --full-time Equival a «-l --time-style=full-iso».\n" + +# «--dereference-command-line-symlink-to-dir» /**/ ivb +#: src/ls.c:3799 +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" +" -g Com «-l», però no mostra el propietari.\n" +" -G, --no-group No mostra la informació del grup.\n" +" -h, --human-readable Mostra els tamanys en un format llegible pels " +"humans\n" +" (per exemple: 1K 234M 2G).\n" +" --si El mateix, però fa servir potències de 1000, no de\n" +" 1024.\n" +" -H, --dereference-command-line\n" +" Segueix els enllaços simbòlics que es troben en la\n" +" línia d'ordres.\n" +" --dereference-command-line-symlink-to-dir\n" +" Segueix els enllaços simbòlics que es troben en la\n" +" línia d'ordres i apunten cap a un directori.\n" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" +" --indicator-style=PARAULA\n" +" Afegeix un indicador amb l'estil PARAULA als noms de\n" +" les entrades: none (per defecte), classify (-F),\n" +" file-type (-p).\n" +" -i, --inode Mostra el número de node índex de cada fitxer.\n" +" -I, --ignore=PATRÓ No llista les entrades que coincideixen amb el " +"PATRÓ\n" +" d'intèrpret indicat.\n" +" -k, --kilobytes Equival a «--block-size=1K».\n" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" +" -l Usa un format de llistat llarg.\n" +" -L, --dereference En mostrar la informació de fitxer d'un enllaç\n" +" simbòlic, mostra la informació del fitxer referit en\n" +" comptes de la del propi fitxer.\n" +" -m Plena a l'ample amb una llista d'entrades separades " +"per\n" +" comes.\n" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" +" -n, --numeric-uid-gid Com «-l», però llista els UID i GID " +"numèricament.\n" +" -N, --literal Mostra els noms de les entrades en brut (per " +"exemple,\n" +" sense tractar especialment els caràcters de " +"control).\n" +" -o Com «-l», però no mostra la informació de grup.\n" +" -p Afig un caràcter identificador del tipus d'entrada " +"(un\n" +" de «/=@|»).\n" + +#: src/ls.c:3831 +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -q, --hide-control-chars\n" +" Mostra «?» en comptes dels caràcters no gràfics.\n" +" --show-control-chars\n" +" Mostra els caràcters no gràfics tal qual (per " +"defecte,\n" +" a no ser que el programa siga «ls» i l'eixida siga " +"un\n" +" terminal).\n" +" -Q, --quote-name Tanca els noms de les entrades entre cometes dobles.\n" +" --quote-style=ESTIL\n" +" Usa l'ESTIL indicat per citar les paraules: literal,\n" +" locale, shell, shell-always, c, escape.\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" +" -r, --reverse Inverteix l'ordre.\n" +" -R, --recursive Llista recursivament els subdirectoris.\n" +" -s, --size Mostra el tamany en blocs de cada fitxer.\n" + +# FIXME: time is repeated. ivb +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" +" -S Ordena les entrades pel seu tamany.\n" +" --sort=ORDRE Cada ORDRE equival a l'(opció): none (-U),\n" +" extension (-X), version (-v), size (-S), time (-t),\n" +" status (-c), atime (-u), access (-u), use (-u).\n" +" --time=DATA Mostra la DATA indicada en comptes de la de\n" +" modificació: atime, access, use, ctime o status; amb\n" +" «--sort=time» s'ordenarà en base a aquesta data.\n" + +# ls, your next programming language for the shell... ivb +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" +" --time-style=ESTIL\n" +" Mostra les dates usant l'ESTIL indicat: full-iso,\n" +" long-iso, iso, locale, +FORMAT; FORMAT s'interpreta " +"com\n" +" en «date»; si FORMAT és «FORMAT1FORMAT2»,\n" +" FORMAT1 s'aplica als fitxers no recents i FORMAT2 " +"als\n" +" recents; si es prefixa l'ESTIL amb «posix-», només\n" +" s'usa l'ESTIL si el locale POSIX no es troba actiu.\n" +" -t Ordena per la data de modificació.\n" +" -T, --tabsize=COLUMNES\n" +" Indica les COLUMNES entre tabulacions, en comptes de " +"8.\n" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" +" -u Amb «-lt»: ordena per, i mostra, la data d'accés.\n" +" Amb «-l»: mostra la data d'accés i ordena pel nom.\n" +" Altrament: ordena per la data d'accés.\n" +" -U No ordena, mostra les entrades en l'ordre en què es\n" +" troben en el directori.\n" +" -v Ordena per la versió.\n" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" +" -w, --width=COLS Assumeix un altre ample de pantalla en comptes del\n" +" valor actual.\n" +" -x Llista les entrades en línies en comptes d'en " +"columnes.\n" +" -X Ordena alfabèticament segons l'extensió de cada\n" +" entrada.\n" +" -1 Llista un fitxer per línia.\n" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" +"\n" +"Per defecte no s'usen colors per distingir tipus de fitxers. Açò equival a\n" +"usar «--color=none» (cap). Usar l'opció «--color» sense l'argument " +"opcional\n" +"QUAN equival a usar «--color=always» (sempre). Amb «--color=auto», només " +"es\n" +"generen codis de color si l'eixida està connectada amb un terminal (tty).\n" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "Ulrich Drepper i Scott Miller" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"Forma d'ús: %s [OPCIÓ] [FITXER]...\n" +" o bé: %s [OPCIÓ] --check [FITXER]\n" +"Escriu o comprova sumes de verificació %s (de %d bits).\n" +"Sense FITXER, o quan FITXER és «-», llegeix l'entrada estàndard.\n" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" +"\n" +" -b, --binary Llegeix els fitxers en mode binari.\n" +" -c, --check Comprova les sumes %s de la llista especificada.\n" +" -t, --text Llegeix els fitxers en mode text (per defecte).\n" +"\n" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" +"Les dues opcions següents només són útils per la comprovació de sumes:\n" +" --status No escriu res, el codi d'estat indica el resultat.\n" +" -w, --warn Avisa de les línies de suma amb un format " +"incorrecte.\n" +"\n" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" +"\n" +"El càlcul de les sumes es realitza com es descriu en el document %s.\n" +"En les comprovacions, l'entrada hauria de ser una sortida anterior d'aquest\n" +"mateix programa. Per defecte escriu una línia amb la suma de verificació, " +"un\n" +"caràcter indicant el tipus («*» per binari, « » per text), i el nom de cada\n" +"FITXER.\n" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "%s: %lu: la línia de suma %s està mal formatada" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "%s: no s'ha pogut obrir o llegir\n" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "INCORRECTE" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "CORRECTE" + +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%s: error de lectura" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "%s: no s'ha trobat cap línia de suma %s ben formatada" + +# considerar la possibilitat d'eliminar els () +# Si no és tot en plural, no pot ser! ivb +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "avís: %d de %d %s llistats no s'han pogut llegir" + +# Això, tot en plural. ivb +#: src/md5sum.c:473 +msgid "file" +msgstr "fitxers" + +#: src/md5sum.c:473 +msgid "files" +msgstr "fitxers" + +# ho deixo tot en plural +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "avís: %d de %d %s calculades NO coincideixen" + +# Això, tot en plural. ivb +#: src/md5sum.c:482 +msgid "checksum" +msgstr "sumes" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "sumes" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" +"les opcions «--binary» i «--text» no tenen sentit en la comprovació de sumes" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "les opcions «--string» i «--check» són mútuament excloents" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "l'opció «--status» només té sentit en la comprovació sumes" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "l'opció «--warn» només té sentit en la comprovació de sumes" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "no es pot especificar cap fitxer en usar l'opció «--string»" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "només es pot especificar un sol argument en usar l'opció «--check»" + +#: src/mkdir.c:61 +#, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "Forma d'ús: %s [OPCIÓ] DIRECTORI...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" +"Crea cada DIRECTORI indicat, si no existeix ja.\n" +"\n" + +#: src/mkdir.c:69 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +" -m, --mode=MODE Estableix els permissos (com fa «chmod», no com\n" +" rwxrwxrwx - umask).\n" +" -p, --parents Crea els directoris pare necessaris, sense mostrar\n" +" errors si aquests ja existeixen.\n" +" --verbose Mostra un missatge per cada directori creat.\n" + +# Usa quote(). ivb +#: src/mkdir.c:113 +#, c-format +msgid "created directory %s" +msgstr "s'ha creat el directori %s" + +# Usa quote(). ivb +#: src/mkdir.c:190 +#, c-format +msgid "cannot set permissions of directory %s" +msgstr "no s'han pogut els permissos del directori %s" + +#: src/mkfifo.c:55 +#, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "Forma d'ús: %s [OPCIÓ] NOM...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" +"Crea les canonades amb nom (FIFO) indicades pels seus NOMs.\n" +"\n" + +#: src/mkfifo.c:63 src/mknod.c:64 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" +" -m, --mode=MODE Estableix els permissos (com fa «chmod», no com\n" +" a=rw - umask).\n" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "els fitxers FIFO no són suportats" + +#: src/mkfifo.c:123 src/mknod.c:127 +msgid "invalid mode" +msgstr "el mode no és vàlid" + +# Usa quote(). ivb +#: src/mkfifo.c:142 +#, c-format +msgid "cannot set permissions of fifo %s" +msgstr "no s'han pogut establir els permissos de la cua FIFO «%s»" + +#: src/mknod.c:55 +#, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "Forma d'ús: %s [OPCIÓ]... NOM TIPUS [MAJOR MENOR]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" +"Crea el fitxer especial NOM, del TIPUS especificat.\n" +"\n" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" +"\n" +"Cal especificar MAJOR i MENOR quan el TIPUS siga «b», «c» o «u»; cal " +"ometre'ls\n" +"quan aquest siga «p». Si MAJOR o MENOR comença per «0x» o «0X», " +"s'interpreta\n" +"com a hexadecimal; si comença per «0», com a octal; altrament s'interpreta " +"com\n" +"a decimal. El TIPUS pot ser:\n" + +#: src/mknod.c:76 +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"\n" +" b Crea un fitxer especial de blocs (amb memòria intermèdia).\n" +" c, u Crea un fitxer especial de caràcters (sense memòria intermèdia).\n" +" p Crea una cua FIFO.\n" + +#: src/mknod.c:141 +msgid "wrong number of arguments" +msgstr "el nombre d'arguments no és correcte" + +#: src/mknod.c:153 +msgid "block special files not supported" +msgstr "els fitxers especials de blocs no són suportats" + +#: src/mknod.c:162 +msgid "character special files not supported" +msgstr "els fitxers especials de caràcters no són suportats" + +#: src/mknod.c:171 +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" +"cal especificar els números major i menor de dispositiu en crear fitxers " +"especials" + +# Usa quote(). ivb +#: src/mknod.c:186 +#, c-format +msgid "invalid major device number %s" +msgstr "el número major de dispositiu %s no és vàlid" + +# Usa quote(). ivb +#: src/mknod.c:191 +#, c-format +msgid "invalid minor device number %s" +msgstr "el número menor de dispositiu %s no és vàlid" + +# No crec que calguen cometes. ivb +#: src/mknod.c:196 +#, c-format +msgid "invalid device %s %s" +msgstr "el dispositiu %s %s no és vàlid" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "" +"no s'han d'especificar números major i menor de dispositiu per les cues FIFO" + +# Usa quote(). ivb +#: src/mknod.c:231 +#, c-format +msgid "cannot set permissions of %s" +msgstr "no s'han pogut establir els permissos de %s" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "Mike Parker, David MacKenzie i Jim Meyering" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Canvia el nom d'ORIGEN a DESTÃ, o mou cada ORIGEN al DIRECTORI.\n" +"\n" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" +" --backup[=CONTROL]\n" +" Crea una còpia de seguretat de cada fitxer destí\n" +" existent.\n" +" -b Com «--backup», però no accepta cap argument.\n" +" -f, --force No pregunta abans de sobreescriure; equival a\n" +" «--reply=yes».\n" +" -i, --interactive Pregunta abans de sobreescriure; equival a\n" +" «--reply=query».\n" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" +" --reply={yes,no,query}\n" +" Especifica una resposta a les preguntes sobre " +"fitxers\n" +" destí existents (sí, no, preguntar).\n" +" --strip-trailing-slashes\n" +" Elimina la barra final (si n'hi ha) de cada argument\n" +" ORIGEN.\n" +" -S, --suffix=SUFIX Reemplaça el sufix habitual de les còpies de\n" +" seguretat.\n" + +#: src/mv.c:339 +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +" --target-directory=DIRECTORI\n" +" Mou cada argument ORIGEN al DIRECTORI.\n" +" -u, --update Només mou quan el fitxer ORIGEN és més nou que el\n" +" fitxer destí o quan el fitxer destí no hi és.\n" +" -v, --verbose Explica què s'està fent.\n" + +# Usa quote(). ivb +#: src/mv.c:467 +#, c-format +msgid "specified target, %s is not a directory" +msgstr "el destí especificat %s no és un directori" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "en moure múltiples fitxers, cal que l'últim argument siga un directori" + +#: src/nice.c:67 +#, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "Forma d'ús: %s [OPCIÓ] [ORDRE [ARG]...]\n" + +#: src/nice.c:68 +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" +"Executa l'ORDRE amb una prioritat de planificació ajustada. Sense l'ORDRE,\n" +"mostra la prioritat de planificació actual. AJUSTAMENT és 10 per defecte, " +"i\n" +"pot variar entre -20 (la prioritat major) i 19 (la menor).\n" +"\n" +" -n, --adjustment=AJUSTAMENT\n" +" Incrementa la prioritat en AJUSTAMENT unitats abans\n" +" d'executar l'ORDRE.\n" + +#: src/nice.c:109 src/nice.c:122 +#, c-format +msgid "invalid option `%s'" +msgstr "l'opció «%s» no és vàlida" + +#: src/nice.c:147 +#, c-format +msgid "invalid priority `%s'" +msgstr "la prioritat «%s» no és vàlida" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "cal que especifiqueu una ordre juntament amb l'ajustament" + +#: src/nice.c:178 src/nice.c:187 +msgid "cannot get priority" +msgstr "no s'ha pogut obtenir la prioritat" + +#: src/nice.c:192 +msgid "cannot set priority" +msgstr "no s'ha pogut establir la prioritat" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "Scott Bartram i David MacKenzie" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Escriu cada FITXER en la sortida estàndard, amb les línies numerades.\n" +"Sense FITXER, o quan fitxer és «-», llegeix l'entrada estàndard.\n" +"\n" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" +" -b, --body-numbering=ESTIL\n" +" Enumera les línies del cos segons l'ESTIL.\n" +" -d, --section-delimiter=CC\n" +" Usa CC per separar les pàgines lògiques.\n" +" -f, --footer-numbering=ESTIL\n" +" Enumera les línies del peu segons ESTIL.\n" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" +" -h, --header-numbering=ESTIL\n" +" Enumera les línies de la capçalera segons l'ESTIL.\n" +" -i, --page-increment=NÚMERO\n" +" Increment que es produeix per cada línia en el " +"compte\n" +" de línies.\n" +" -l, --join-blank-lines=NÚMERO\n" +" Compta NÚMERO línies en blanc com a una.\n" +" -n, --number-format=FORMAT\n" +" Inserta els números de línia segons el FORMAT.\n" +" -p, --no-renumber No reinicia el compte en cada pàgina lògica.\n" +" -s, --number-separator=CADENA\n" +" Escriu la CADENA al darrere del possible número de\n" +" línia.\n" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" +" -v, --first-page=NÚMERO\n" +" Primer NÚMERO de línia de cada pàgina lògica.\n" +" -w, --number-width=NÚMERO\n" +" Usa NÚMERO columnes per cada número de línia.\n" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" +"\n" +"Les opcions per defecte són «-v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn». CC " +"són\n" +"dos caràcters delimitadors per separar les pàgines lògiques, on l'absència " +"del\n" +"segon caràcter implica «:». Escriviu «\\\\» per «\\». ESTIL pot ser:\n" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" +"\n" +" a Numera totes les línies.\n" +" t Numera totes les línies que no estan en blanc.\n" +" n No numera cap línia.\n" +" pEXPREG Només numera les línies que contenen una ocurrència d'EXPREG.\n" +"\n" +"El FORMAT pot ser:\n" +"\n" +" ln Alineat a l'esquerra, sense zeros de replé.\n" +" rn Alineat a la dreta, sense zeros de replé.\n" +" rz Alineat a la dreta, replenat amb zeros.\n" + +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "el número inicial de línia no és vàlid: «%s»" + +#: src/nl.c:514 +#, c-format +msgid "invalid line number increment: `%s'" +msgstr "l'increment del número de línia no és vàlid: «%s»" + +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "el número de línies en blanc no és vàlid: «%s»" + +#: src/nl.c:541 +#, c-format +msgid "invalid line number field width: `%s'" +msgstr "l'amplada del camp de números de línia no és vàlida: «%s»" + +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"Forma d'ús: %s [OPCIÓ]... [FITXER]...\n" +" o bé: %s --traditional [FITXER] [[+]DESPLAÇAMENT [[+]ETIQUETA]]\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"\n" +"Escriu una representació inequívoca, d'octets en octal per defecte, del " +"FITXER\n" +"en la sortida estàndard. Amb diversos arguments FITXER, els concatena en\n" +"l'ordre especificat per formar l'entrada. Sense FITXER, o quan FITXER és " +"«-»,\n" +"llegeix l'entrada estàndard.\n" +"\n" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "" +"Els arguments obligatoris per les opcions llargues també ho són per les\n" +"opcions curtes corresponents.\n" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" +" -A, --address-radix=BASE\n" +" Indica la BASE amb què es mostraran els " +"desplaçaments.\n" +" -j, --skip-bytes=OCTETS\n" +" Salta aquest nombre d'OCTETS al principi de " +"l'entrada.\n" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" +" -N, --read-bytes=OCTETS\n" +" Limita la transcripció a aquest nombre d'OCTETS\n" +" d'entrada.\n" +" -s, --strings[=OCTETS]\n" +" Escriu aquelles constants cadena d'almenys OCTETS\n" +" caràcters gràfics.\n" +" -t, --format=TIPUS Especifica el format (o formats) de sortida.\n" +" -v, --output-duplicates\n" +" No usa «*» per marcar la supressió de línies.\n" +" -w, --width[=OCTETS] Escriu aquest nombre d'OCTETS per línia.\n" +" --traditional Accepta arguments en la forma tradicional.\n" + +# buscar una traducció per `named characters' i `shorts' +# Crec que així va bé. ivb +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" +"\n" +"Les especificacions en format tradicional poden estar mesclades, acumulant-" +"se;\n" +"són les següents:\n" +" -a Equival a «-t a», nom dels caràcters.\n" +" -b Equival a «-t oC», octets en octal.\n" +" -c Equival a «-t c», caràcters ASCII o seqüències d'escapada.\n" +" -d Equival a «-t u2», enters curts («short») sense signe en decimal.\n" + +# buscar traduccions pels diferents tipus +# Crec que així va bé. ivb +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" +" -f Equival a «-t fF», números reals en coma flotant.\n" +" -h Equival a «-t x2», enters curts («short») en hexadecimal.\n" +" -i Equival a «-t d2», enters curts («short») en decimal.\n" +" -l Equival a «-t d4», enters llargs («long») en decimal.\n" +" -o Equival a «-t o2», enters curts («short») en octal.\n" +" -x Equival a «-t x2», enters curts («short») en hexadecimal.\n" + +# El més llarg és «x[MIDA]». ivb +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" +"\n" +"En la sintaxi antiga, DESPLAÇAMENT significa «-j DESPLAÇAMENT». ETIQUETA " +"és\n" +"la pseudoadreça del primer octet escrit, que s'incrementa a mesura que va\n" +"progressant la transcripció. En DESPLAÇAMENT i ETIQUETA, un prefix «0x» o\n" +"«0X» indica hexadecimal. Els sufixs poden ser «.» per octal i «b» com a\n" +"multiplicació per 512.\n" +"\n" +"TIPUS està format per una o diverses de les següents especificacions:\n" +"\n" +" a Nom del caràcter.\n" +" c Caràcter ASCII o seqüència d'escapada amb barra invertida.\n" + +# El més llarg és «x[MIDA]». ivb +# «SIZE bytes per integer»->«tindira MIDA octets si fóra un enter», crec. ivb +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" +" d[MIDA] Decimal amb signe, de MIDA octets com a enter.\n" +" f[MIDA] Número real en coma flotant, de MIDA octets com a enter.\n" +" o[MIDA] Octal, de MIDA octets com a enter.\n" +" u[MIDA] Decimal sense signe, de MIDA octets com a enter.\n" +" x[MIDA] Hexadecimal, de MIDA bytes com a enter.\n" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" +"\n" +"MIDA és un número. En els TIPUS «doux», MIDA també pot ser «C» per\n" +"«sizeof(char)», «S» per «sizeof(short)», «I» per «sizeof(int)» o «L» per\n" +"«sizeof(long)». Si TIPUS és «f», MIDA pot ser també «F» per «sizeof" +"(float)»,\n" +"«D» per «sizeof(double)» o bé «L» per «sizeof(long double)».\n" + +# Aquesta cadena continua. ivb +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" +"\n" +"BASE és «d» per decimal, «o» per octal, «x» per hexadecimal, o bé «n» per " +"cap.\n" +"OCTETS és hexadecimal si té el prefix «0x» o «0X», i es multiplica per 512 " +"amb\n" +"el sufix «b», per 1024 amb «k» i per 1048576 amb «m». Afegint el sufix «z» " +"a\n" +"qualsevol dels tipus, mostra també els caràcters imprimibles al final de " +"cada\n" +"línia d'eixida. " + +# aquesta entrada va junta amb l'anterior +# Queda en el mateix punt per coincidència. ivb +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" +"«--string» sense número implica 3. «--width» sense número\n" +"implica 32. Per defecte, s'utilitzen les opcions «-A o -t d2 -w 16».\n" + +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "la cadena de tipus no és vàlida: «%s»" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" +"la cadena de tipus no és vàlida: «%s»; aquest sistema no suporta un tipus " +"enter de %lu octets" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" +"la cadena de tipus no és vàlida: «%s»; aquest sistema no suporta un tipus de " +"coma flotant de %lu octets" + +#: src/od.c:917 +#, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "el caràcter «%c» de la cadena de tipus «%s» no és vàlid" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "no es pot saltar més enllà del final de l'entrada combinada" + +# FIXME: xmalloc.h: _STRTOL_ERROR lacks i18n. ivb +# Açò quedarà com «invalid desplaçament a l'estil antic `DESPL'» mentre no ho facen. ivb +#: src/od.c:1397 +msgid "old-style offset" +msgstr "desplaçament a l'estil antic" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "" +"la base «%c» del desplaçament no és vàlida; ha de ser un caràcter de [doxn]" + +# FIXME: xmalloc.h: _STRTOL_ERROR lacks i18n. ivb +# Açò quedarà com «invalid argument de salt `ARG'» mentre no ho facen. ivb +#: src/od.c:1717 +msgid "skip argument" +msgstr "argument de salt" + +# FIXME: xmalloc.h: _STRTOL_ERROR lacks i18n. ivb +# Açò quedarà com «invalid argument de límit `ARG'» mentre no ho facen. ivb +#: src/od.c:1725 +msgid "limit argument" +msgstr "argument de límit" + +# FIXME: xmalloc.h: _STRTOL_ERROR lacks i18n. ivb +# Açò quedarà com «invalid longitud mínima de cadena `ARG'» mentre no ho facen. ivb +#: src/od.c:1735 +msgid "minimum string length" +msgstr "longitud mínima de cadena" + +# És un enter correcte però massa gran. ivb +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "%s és massa gran" + +# FIXME: xmalloc.h: _STRTOL_ERROR lacks i18n. ivb +# Açò quedarà com «invalid especificació d'amplada `ARG'» mentre no ho facen. ivb +#: src/od.c:1804 +msgid "width specification" +msgstr "especificació d'amplada" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "no es pot especificar cap tipus quan es transcriuen cadenes" + +# És l'operand, no el mode. ivb +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "el segon operand «%s» no és vàlid en el mode de compatibilitat" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "" +"en mode de compatibilitat els dos últims arguments han de ser desplaçaments" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "el mode de compatibilitat permet com a màxim tres arguments" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "atenció: l'amplada %lu no és vàlida; s'usarà %d" + +# És una cadena de depuració. ivb +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "%d: fmt=\"%s\" amplada=%d\n" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "David M. Ihnat i David MacKenzie" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "l'entrada estàndard està tancada" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Escriu línies consistents en les línies corresponents seqüencialment de " +"cada\n" +"FITXER, separades per caràcters de tabulació, en la sortida estàndard. " +"Sense\n" +"FITXER, o quan FITXER és «-», llegeix l'entrada estàndard.\n" +"\n" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" +" -d, --delimiters=LLISTA\n" +" Usa els caràcters de la LLISTA, en lloc de " +"tabulacions.\n" +" -s, --serial Processa cada fitxer de cop, i no en paral·lel.\n" + +#: src/pathchk.c:146 +#, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "Forma d'ús: %s [OPCIÓ]... NOM...\n" + +#: src/pathchk.c:147 +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" +"Comprova si hi ha construccions no portables en el NOM.\n" +"\n" +" -p, --portability Prova amb tots els sistemes POSIX, no només amb " +"aquest.\n" + +#: src/pathchk.c:237 +#, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "el camí «%s» conté un caràcter no portable, «%c»" + +#: src/pathchk.c:257 +#, c-format +msgid "`%s' is not a directory" +msgstr "«%s» no és un directori" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "el directori «%s» no és navegable" + +#: src/pathchk.c:355 +#, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "el nom «%s» té longitud %ld; excedeix el límit de %ld" + +#: src/pathchk.c:381 +#, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "el camí «%s» té longitud %d; excedeix el límit de %ld" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "Joseph Arceneaux, David MacKenzie i Kaveh Ghazi" + +# FIXME: This way of arranging output is language dependent. ivb +#: src/pinky.c:292 +msgid "Login name: " +msgstr "Nom d'entrada: " + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "En la vida real: " + +# Un nom real desconegut. ivb +#: src/pinky.c:298 +msgid "???\n" +msgstr "???\n" + +#: src/pinky.c:318 +msgid "Directory: " +msgstr "Directori: " + +# Compensa els 3 caràcters que «Nom d'entrada» desplaça «En la vida real». ivb +#: src/pinky.c:320 +msgid "Shell: " +msgstr " Intèrpret d'ordres: " + +#: src/pinky.c:341 +msgid "Project: " +msgstr "Projecte: " + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "Pla:\n" + +# FIXME: This way of arranging output is language dependent. ivb +# No es passa de 8, ok. ivb +#: src/pinky.c:386 +msgid "Login" +msgstr "Entrada" + +#: src/pinky.c:388 +msgid "Name" +msgstr "Nom" + +#: src/pinky.c:389 +msgid " TTY" +msgstr " TTY" + +# Hauria de ser «Inactiu», però té més de 6 caràcters. ivb +#: src/pinky.c:391 +msgid "Idle" +msgstr "Ociós" + +#: src/pinky.c:392 +msgid "When" +msgstr "Quan" + +#: src/pinky.c:395 +msgid "Where" +msgstr "On" + +#: src/pinky.c:469 +#, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "Forma d'ús: %s [OPCIÓ]... [USUARI]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" +"\n" +" -l Genera una eixida amb format llarg per cada USUARI.\n" +" -b Omet el directori personal i intèrpret de la usuària " +"o\n" +" usuari en el format llarg.\n" +" -h Omet el fitxer de projecte de la usuària o usuari en " +"el\n" +" format llarg.\n" +" -p Omet el fitxer de pla de la usuària o usuari en el\n" +" format llarg.\n" +" -s Genera una eixida amb format curt (per defecte).\n" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" +" -f Omet la línia de capçaleres de columna en el format\n" +" curt.\n" +" -w Omet el nom complet de la usuària o usuari en el " +"format\n" +" curt.\n" +" -i Omet el nom complet i l'estació remota de la usuària " +"o\n" +" usuari en el format curt.\n" +" -q Omet el nom complet, l'estació remota i el temps\n" +" d'inactivitat (ociós) en el format curt.\n" + +# No usa quote(). ivb +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" +"\n" +"Un programa de «finger» lleuger; mostra informació sobre les usuàries i\n" +"usuaris. El fitxer «utmp» serà «%s».\n" + +#: src/pinky.c:574 +msgid "no username specified; at least one must be specified when using -l" +msgstr "" +"no s'ha indicat cap nom d'usuari; n'heu d'indicar almenys un si useu «-l»" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "Pete TerMaat i Roland Huebner" + +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "--pages: l'interval de números de pàgina no és vàlid: «%s»" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "--pages: el número inicial de pàgina no és vàlid: «%s»" + +#: src/pr.c:829 +#, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "--pages: el número final de pàgina no és vàlid: «%s»" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "--pages: el número inicial de pàgina és major que el final" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "--pages=PRIM_PÀG[:ÚLT_PÀG]: manca un argument" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "--columns=COLUMNES: el nombre de columnes no és vàlid: «%s»" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "-l LLARG_PÀG: el nombre de línies no és vàlid: «%s»" + +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "-N NÚMERO: el número inicial de línia no és vàlid: «%s»" + +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "-o MARGE: el desplaçament de línia no és vàlid: «%s»" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "-w AMPLE_PÀG: el nombre de caràcters no és vàlid: «%s»" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "-W AMPLE_PÀG: el nombre de caràcters no és vàlid: «%s»" + +# dia mes any hora:minut +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "%e %b %Y %H:%M" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "" +"no es pot especificar el nombre de columnes quan s'imprimeix en paral·lel" + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "no es pot especificar impressió en paral·lel i de través alhora" + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "-%c: sobren caràcters o el número de l'argument no és vàlid: «%s»" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "l'amplada de pàgina és insuficient" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "" +"el número inicial de pàgina és major que el nombre total de pàgines: «%d»" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "Pàgina %d" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" +"Arranja el(s) FITXER(s) en pàgines o columnes per imprimir.\n" +"\n" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" +" +PRIM_PÀG[:ÚLT_PÀG], --pages=PRIM_PÀG[:ÚLT_PÀG] \n" +" Comença [i acaba] la paginació en PRIM_PÀG [i " +"ÚLT_PÀG].\n" +" -COLUMNES, --columns=COLUMNES\n" +" Disposa el text en les COLUMNES indicades i les " +"escriu\n" +" en vertical, tret que especifiqueu «-a». Iguala el\n" +" nombre de línies de les columnes de cada pàgina.\n" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" +" -a, --across Escriu les columnes de través en comptes de\n" +" verticalment, usat juntament amb -COLUMNES.\n" +" -c, --show-control-chars\n" +" Usa la notació «^G» i la notació d'escapada en octal\n" +" amb barra invertida.\n" +" -d, --double-space Escriu el text amb espaiat doble.\n" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" +" -D, --date-format=FORMAT\n" +" Formata la data de la capçalera usant aquest FORMAT.\n" +" -e[CARÀCTER[NÚMERO]], --expand-tabs[=CARÀCTER[NÚMERO]]\n" +" Converteix cada CARÀCTER de l'entrada en NÚMERO " +"espais\n" +" en l'eixida (per defecte CARÀCTER és la tabulació i\n" +" NÚMERO és 8).\n" +" -F, -f, --form-feed Usa un salt de pàgina, en lloc de salts de línia, " +"per\n" +" separar cada pàgina (es separen amb una capçalera de " +"3\n" +" línies amb l'opció «-F»; amb 5 línies de capçalera i " +"5\n" +" de cua sense «-F»).\n" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" +" -h CAPÇALERA, --header=CAPÇALERA\n" +" Escriu una CAPÇALERA centrada de pàgina, en lloc del\n" +" nom del fitxer; «-h \"\"» escriu una línia en blanc, " +"no\n" +" useu «-h\"\"».\n" +" -i[CARÀCTER[NÚMERO], --output-tabs[=CARÀCTER[NÚMERO]]\n" +" Converteix cada grup de NÚMERO espais consecutius de\n" +" l'entrada en un CARÀCTER en l'eixida (per defecte\n" +" CARÀCTER és la tabulació i NÚMERO és 8).\n" +" -J, --join-lines Ajunta les línies senceres, inhabilita el truncament " +"de\n" +" línies de l'opció «-W», no hi ha alineament de " +"columna,\n" +" i «--sep-string[=CADENA]» defineix els separadors.\n" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" +" -l LLARG_PÀG, --length=LLARG_PÀG\n" +" Defineix la llargada de pàgina en LLARG_PÀG (66) " +"línies\n" +" (per defecte hi ha 56 línies de text, 63 amb «-F»).\n" +" -m, --merge Escriu els fitxers en paral·lel, un en cada columna,\n" +" amb truncament de línies, però ajuntant les que " +"ocupen\n" +" una línia sencera si s'usa l'opció «-J».\n" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" +" -n[SEPARADOR[DÃGITS]], --number-lines[=SEPARADOR[DÃGITS]]\n" +" Numera les línies usant DÃGITS dígits i un SEPARADOR " +"a\n" +" continuació, comptant per defecte des de la 1a línia\n" +" del text (per defecte SEPARADOR és la tabulació i\n" +" DÃGITS és 5).\n" +" -N NÚMERO, --first-line-number=NÚMERO\n" +" Comença la numeració amb NÚMERO en la 1a línia de la\n" +" primera pàgina escrita (vegeu «+PRIM_PÀG»).\n" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" +" -o MARGE, --indent=MARGE\n" +" Desplaça cada línia MARGE espais, sense afectar les\n" +" opcions «-w» o «-W» en ús; el MARGE s'afegeix a\n" +" AMPLE_PÀG (per defecte MARGE és 0).\n" +" -r, --no-file-warnings\n" +" No avisa quan un fitxer no es pot obrir.\n" + +# Aaalaaa, ni punts ni res! ivb +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" +" -s[CARÀCTER], --separator[=CARÀCTER]\n" +" Separa les columnes amb un únic CARÀCTER; aquest és " +"per\n" +" defecte una tabulació si no s'usa «-w» i cap " +"caràcter\n" +" quan s'usa «-w». «-s[CARÀCTER]» inhabilita el\n" +" truncament de línia de totes les opcions de columna\n" +" («-COLUMNES», «-a -COLUMNES» i «-m») tret que\n" +" especifiqueu «-w».\n" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr " -SCADENA, --sep-string[=CADENA]\n" + +# Eeeeinnn?? Beneït info! ivb +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" +" Separa les columnes amb aquesta CADENA; si no s'usa\n" +" «-S» i sí s'usa «-J» el separador per defecte és la\n" +" tabulació, altrament és l'espai (equival a «-S" +"\"\"»).\n" +" Aquesta opció no té efecte en les opcions de " +"columna.\n" +" -t, --omit-header Omet les capçaleres i cues de pàgina.\n" + +# FIXME: suggest using `just take a look at info, man!' for some option descriptions. ivb +# revisar l'opció -w +# Hau! ivb +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" +" -T, --omit-pagination Omet les capçaleres i cues de pàgina, i elimina\n" +" tota paginació amb salts de pàgina que es trobe en " +"els\n" +" fitxers de l'entrada.\n" +" -v, --show-nonprinting\n" +" Usa la notació d'escapada en octal amb barra " +"invertida.\n" +" -w AMPLE_PÀG, --width=AMPLE_PÀG\n" +" Defineix l'amplada de pàgina a AMPLE_PÀG caràcters\n" +" només per la paginació per columnes (per defecte\n" +" AMPLE_PÀG és 72); l'opció «-s[CARÀCTER]» inhabilita\n" +" l'amplada de pàgina per defecte.\n" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" +" -W AMPLE_PÀG, --page-width=AMPLE_PÀG\n" +" Defineix l'amplada de pàgina a AMPLE_PÀG caràcters\n" +" sempre, truncant les línies excepte si useu l'opció\n" +" «-J»; no interfereix amb les opcions «-S» o «-s».\n" + +# Termina pr i encara estic viu! Vaig a prendre una aspirina... ivb +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" +"\n" +"L'opció «-T» és implícita quan s'especifica «-l LLARG_PÀG» i LLARG_PÀG és\n" +"menor o igual que 10, o menor o igual que 3 quan s'usa l'opció «-F». Sense\n" +"FITXER, o quan FITXER és «-», llegeix l'entrada estàndard.\n" + +#: src/printenv.c:43 +msgid "David MacKenzie and Richard Mlynarik" +msgstr "David MacKenzie i Richard Mlynarik" + +#: src/printenv.c:63 +#, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" +"Forma d'ús: %s [VARIABLE]...\n" +" o bé: %s OPCIÓ\n" +"Si no s'especifica cap VARIABLE d'entorn, les mostra totes.\n" +"\n" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "" +"avís: %s: s'han descartat els caràcters que segueixen la constant caràcter" + +#: src/printf.c:100 +#, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"Forma d'ús: %s FORMAT [ARGUMENT]...\n" +" o bé: %s OPCIÓ\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" +"Mostra cada ARGUMENT seguint el FORMAT indicat.\n" +"\n" + +# El més llarg és «UNNNNNNNN». ivb +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" +"\n" +"FORMAT controla l'eixida com fa printf() en C. S'interpreten les " +"seqüències:\n" +"\n" +" \\\" Cometes dobles.\n" +" \\0NNN Caràcter amb valor octal NNN (de 0 a 3 dígits).\n" +" \\\\ Barra invertida.\n" + +# El més llarg és «UNNNNNNNN». ivb +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" +" \\a Alarma (BEL).\n" +" \\b Retrocés.\n" +" \\c No produeix més eixida.\n" +" \\f Salt de pàgina.\n" + +# El més llarg és «UNNNNNNNN». ivb +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\n Nova línia.\n" +" \\r Retorn de carro.\n" +" \\t Tabulació horitzontal.\n" +" \\v Tabulació vertical.\n" + +# El més llarg és «UNNNNNNNN». ivb +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" +" \\xNN Octet amb valor hexadecimal NN (d'1 a 2 dígits).\n" +" \\uNNNN Caràcter amb valor hexadecimal NNNN (4 dígits).\n" +" \\uNNNNNNNN Caràcter amb valor hexadecimal NNNNNNNN (8 dígits).\n" + +# El més llarg és «UNNNNNNNN». ivb +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" +" %% Un sol «%».\n" +" %b L'ARGUMENT com a una cadena amb escapades «\\» " +"interpretades.\n" +"\n" +"i totes les especificacions de format C que acaben en un dels caràcters\n" +"«diouxXfeEgGcs», on cada ARGUMENT serà convertit al tipus adequat. Es\n" +"suporten les amplàries variables.\n" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "%s: cal un valor numèric" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "%s: no s'ha convertit completament el valor" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "manca un número hexadecimal en la seqüència d'escapada" + +#: src/printf.c:292 +#, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "el nom de caràcter universal «\\%c%0*x» no és vàlid" + +#: src/printf.c:472 +#, c-format +msgid "invalid field width: %s" +msgstr "l'amplària de camp no és vàlida: %s" + +#: src/printf.c:498 +#, c-format +msgid "invalid precision: %s" +msgstr "la precisió no és vàlida: %s" + +#: src/printf.c:519 +#, c-format +msgid "%%%c: invalid directive" +msgstr "%%%c: la directiva no és vàlida" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "Forma d'ús: %s format [ARGUMENT...]\n" + +#: src/printf.c:594 +#, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "avís: es descarten els arguments sobrants, començant per «%s»" + +# El primer arg. és un missatge d'error. ivb +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "%s (en l'expressió regular «%s»)" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"Forma d'ús: %s [OPCIÓ]... [ENTRADA]... (sense «-G»)\n" +" o bé: %s -G [OPCIÓ]... [ENTRADA [SORTIDA]]\n" + +# Escriu les paraules del text seguides, començant cada colta per una. ivb +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" +"Escriu un índex permutat, incloent el context, amb les paraules dels " +"fitxers\n" +"que formen l'entrada.\n" +"\n" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" +" -A, --auto-reference Escriu les referències generades automàticament.\n" +" -C, --copyright Mostra el Copyright i les condicions de còpia.\n" +" -G, --traditional Es comporta com el «ptx» de System V.\n" +" -F, --flag-truncation=CADENA\n" +" Usa la CADENA per senyalar els truncaments de línia.\n" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" +" -M, --macro-name=CADENA\n" +" Nom del macro a usar en lloc de «xx».\n" +" -O, --format=roff Genera la sortida com a directives de «roff».\n" +" -R, --right-side-refs Posa les referències a la dreta, i «-w» no les " +"té\n" +" en compte.\n" +" -S, --sentence-regexp=EXPREG\n" +" Identifica els finals de línia o de frase fent " +"servir\n" +" l'expressió regular indicada.\n" +" -T, --format=tex Genera la sortida com a directives de TeX.\n" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" +" -W, --word-regexp=EXPREG\n" +" Identifica les paraules clau fent servir l'expressió\n" +" regular idicada.\n" +" -b, --break-file=FITXER\n" +" El FITXER conté els caràcters separadors de les\n" +" paraules clau.\n" +" -f, --ignore-case Passa a majúscules per ordenar.\n" +" -g, --gap-size=NÚMERO Tamany (en columnes) de la separació entre els\n" +" camps de la sortida.\n" +" -i, --ignore-file=FITXER\n" +" El FITXER conté una llista de paraules que mai seran\n" +" preses com a paraules clau.\n" +" -o, --only-file=FITXER\n" +" El FITXER conté una llista de les úniques paraules " +"que\n" +" seran preses com a paraules clau.\n" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" +" -r, --references Pren el primer camp de cada línia com a una " +"referència.\n" +" -t, --typeset-mode (No es troba implementada.)\n" +" -w, --width=NÚMERO Amplada (en columnes) de la sortida (excloent-ne la\n" +" referència).\n" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" +"\n" +"Sense cap FITXER o si FITXER és «-», llegeix l'entrada estàndard. Per " +"defecte\n" +"s'usa «-F /».\n" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" +"Aquest és programari lliure; podeu redistribuir-lo i/o modificar-lo sota " +"els\n" +"termes de la Llicència Pública General GNU tal i com ha estat publicada per " +"la\n" +"Free Software Foundation; bé sota la versió 2 de la Llicència o bé (si ho\n" +"preferiu) sota qualsevol versió posterior.\n" +"\n" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" +"Aquest programa es distribueix amb l'expectativa de que serà útil, però " +"SENSE\n" +"CAP GARANTIA; ni tan sols la garantia implícita de COMERCIABILITAT o " +"ADEQUACIÓ\n" +"PER UN PROPÃ’SIT PARTICULAR. Vegeu la Llicència Pública General GNU per\n" +"obtenir-ne més detalls.\n" +"\n" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" +"Hauríeu d'haver rebut una còpia de la Llicència Pública General GNU " +"juntament\n" +"amb aquest programa; en cas contrari, escriviu a la Free Software " +"Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.\n" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" +"Mostra el nom de fitxer complet del directori de treball actual.\n" +"\n" + +#: src/pwd.c:74 +msgid "ignoring non-option arguments" +msgstr "es descarten els arguments no-opció" + +#: src/pwd.c:78 +msgid "cannot get current directory" +msgstr "no s'ha pogut obtenir el directori actual" + +#: src/readlink.c:69 +#, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "Foma d'ús: %s [OPCIÓ]... FITXER\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" +"Mostra el valor d'un enllaç simbòlic en l'eixida estàndard.\n" +"\n" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" +" -f, --canonicalize Prova de trobar el nom canònic, seguint " +"recursivament\n" +" cada enllaç simbòlic de cada component del camí\n" +" indicat.\n" +" -n, --no-newline No escriu un salt de línia al final.\n" +" -q, --quiet,\n" +" -s, --silent No mostra la majoria de missatges d'error.\n" +" -v, --verbose Mostra els missatges d'error.\n" + +# Usa quote(). ivb +#: src/remove.c:394 +#, c-format +msgid "cannot chdir from %s to .." +msgstr "no s'ha pogut canviar del directori %s a «..»" + +# Hmm... queda bé? jm +# Els 2 usen quote(). ivb +# En sintonia amb libc... ivb +#: src/remove.c:407 src/remove.c:488 +#, c-format +msgid "cannot lstat `.' in %s" +msgstr "ha fallat lstat() sobre «.» en %s" + +# Els 2 usen quote(). ivb +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "%s ha canviat de dispositiu o node-i" + +# Els 4 usen quote(). ivb +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, c-format +msgid "cannot lstat %s" +msgstr "ha fallat lstat() sobre %s" + +# Usa quote(9. ivb +#: src/remove.c:603 +#, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "%s: voleu descendir al directori protegit contra escriptura %s? " + +# Usa quote(). ivb +#: src/remove.c:604 +#, c-format +msgid "%s: descend into directory %s? " +msgstr "%s: voleu descendir al directori %s? " + +# FIXME: Language-dependent. ivb +# Usa quote() en els 2 args. ivb +#: src/remove.c:614 +#, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: voleu eliminar el %s protegit contra escriptura %s? " + +# FIXME: Language-dependent. ivb +# Usa quote() en els 2 args. ivb +#: src/remove.c:615 +#, c-format +msgid "%s: remove %s %s? " +msgstr "%s: voleu eliminar el %s %s? " + +# Usa quote(). ivb +# Missatge informatiu. ivb +#: src/remove.c:639 +#, c-format +msgid "removed %s\n" +msgstr "s'ha eliminat %s\n" + +# Els 2 usen quote(). ivb +# Missatge informatiu. ivb +#: src/remove.c:654 src/remove.c:1059 +#, c-format +msgid "removed directory: %s\n" +msgstr "s'ha eliminat el directori: %s\n" + +# Els 2 usen quote(). ivb +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, c-format +msgid "cannot remove directory %s" +msgstr "no s'ha pogut eliminar el directori %s" + +# Usa quote(). ivb +#: src/remove.c:815 +#, c-format +msgid "cannot open directory %s" +msgstr "no s'ha pogut obrir el directori %s" + +# Els 2 usen quote() en els 2 args. ivb +#: src/remove.c:896 src/remove.c:1002 +#, c-format +msgid "cannot chdir from %s to %s" +msgstr "no s'ha pogut canviar del directori %s a %s" + +# Usa quote(). ivb +#: src/remove.c:904 +#, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +"avís: Estructura de directoris circular.\n" +"\tAçò indica quasi amb certesa que el sistema de fitxers és corrupte.\n" +"\tAVISEU L'ADMINISTRADOR DEL SISTEMA.\n" +"\tEl següent directori és part del cicle:\n" +"\t %s\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "no es pot eliminar «.» ni «..»" + +#: src/rm.c:60 +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "Paul Rubin, David MacKenzie, Richard Stallman i Jim Meyering" + +#: src/rm.c:99 src/touch.c:244 +#, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "Forma d'ús: %s [OPCIÓ]... FITXER...\n" + +#: src/rm.c:100 +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Elimina (o deslliga) cada FITXER.\n" +"\n" +" -d, --directory Deslliga el FITXER, encara que siga un directori no\n" +" buit (només pel superusuari).\n" +" -f, --force No té en compte els fitxers inexistents, i mai no\n" +" pregunta.\n" +" -i, --interactive Pregunta abans d'esborrar.\n" +" -r, -R, --recursive Elimina recursivament els continguts dels " +"directoris.\n" +" -v, --verbose Explica què s'està fent.\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" +"\n" +"Per esborrar un fitxer amb un nom que comence per «-», per exemple «-mec»,\n" +"useu una d'aquestes ordres:\n" +" %s -- -mec\n" +"\n" +" %s ./-mec\n" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" +"\n" +"Tingueu en compte que si useu «rm» per eliminar un fitxer, normalment és\n" +"possible recuperar-ne els continguts. Si voleu estar més segurs de que els\n" +"continguts esdevinguen realment irrecuperables, considereu usar «shred».\n" + +# Cap dels 2 usa quote(). ivb +# Missatge informatiu. ivb +#: src/rmdir.c:116 src/rmdir.c:217 +#, c-format +msgid "removing directory, %s" +msgstr "s'està eliminant el directori «%s»" + +#: src/rmdir.c:146 +#, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "Forma d'ús: %s [OPCIÓ]... DIRECTORI...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" +"Elimina cada DIRECTORI, si es troba buit.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" No té en compte els errors originats només perquè un\n" +" directori no es troba buit.\n" + +#: src/rmdir.c:154 +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +" -p, --parents Elimina el DIRECTORI, i després prova d'eliminar " +"cada\n" +" component del seu nom de camí. Per exemple,\n" +" «rmdir -p a/b/c» és similar a «rmdir a/b/c a/b a».\n" +" -v, --verbose Mostra un missatge per cada directori processat.\n" + +#: src/seq.c:82 +#, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"Forma d'ús: %s [OPCIÓ]... ÚLTIM\n" +" o bé: %s [OPCIÓ]... PRIMER ÚLTIM\n" +" o bé: %s [OPCIÓ]... PRIMER INCREMENT ÚLTIM\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" +"Mostra els números del PRIMER a l'ÚLTIM, amb pas INCREMENT.\n" +"\n" +" -f, --format=FORMAT Usa el FORMAT indicat de coma flotat d'estil printf" +"()\n" +" (per defecte «%g»).\n" +" -s, --separator=CADENA Usa aquesta CADENA per separar els números (per\n" +" defecte «\\n»).\n" +" -w, --equal-width Iguala l'amplària replenant amb zeros al davant.\n" + +#: src/seq.c:96 +#, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" +"\n" +"Si s'omet PRIMER o INCREMENT, es pren 1 per defecte. PRIMER, INCREMENT i\n" +"ÚLTIM s'interpreten com a valors reals en coma flotant. INCREMENT ha de " +"ser\n" +"positiu si PRIMER és menor que ÚLTIM, i negatiu en altre cas. Si s'indica " +"un\n" +"argument FORMAT, aquest ha de contenir exactament un dels formats de printf" +"()\n" +"d'eixida de flotants: «%e», «%f» o «%g».\n" + +#: src/seq.c:119 +#, c-format +msgid "invalid floating point argument: %s" +msgstr "l'argument de coma flotant no és vàlid: «%s»" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" +"quan el valor de començament és major que el límit, l'increment ha de ser " +"negatiu" + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" +"quan el valor de començament és menor que el límit, l'increment ha de ser " +"positiu" + +#: src/seq.c:423 +#, c-format +msgid "invalid format string: `%s'" +msgstr "la cadena de format no és vàlida: «%s»" + +#: src/seq.c:445 +msgid "format string may not be specified when printing equal width strings" +msgstr "no s'ha d'indicar una cadena de format quan s'usen amplàries igualades" + +#: src/shred.c:160 +#, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "Forma d'ús: %s [OPCIONS] FITXER [...]\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" +"Sobreescriu cada FITER repetidament, per tal de fer més difícil recuperar " +"les\n" +"dades, fins i tot per sondejos de maquinari molt cars.\n" +"\n" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" +" -f, --force Canvia, si cal, els permissos per permetre\n" +" l'escriptura.\n" +" -n, --iterations=N Sobreescriu N voltes en comptes del nombre per " +"defecte\n" +" (%d).\n" +" -s, --size=N Sobreescriu aquest nombre d'octets (s'accepten " +"sufixos\n" +" com «K», «M» i «G»).\n" + +#: src/shred.c:174 +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" +" -u, --remove Trunca i elimina el fitxer després de " +"sobreescriure'l.\n" +" -v, --verbose Mostra com progressa el procés.\n" +" -x, --exact No arrodoneix els tamanys de fitxer al següent bloc\n" +" complet; aquest és el comportament per defecte pels\n" +" fitxers no ordinaris.\n" +" -z, --zero Afegeix una passada final de sobreescriptura amb " +"zeros\n" +" per amagar la destrucció de les dades.\n" +" - Sobreescriu l'eixida estàndard.\n" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" +"\n" +"Si s'especifica «--remove» (-u) s'eliminen els FITXERs. Per defecte no\n" +"s'eliminen aquests perquè és comú operar sobre fitxers dispositiu com\n" +"«/dev/hda», i normalment aquests fitxers no s'haurien d'eliminar. Quan\n" +"s'opera sobre fitxers ordinaris molta gent usa l'opció «--remove».\n" +"\n" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" +"COMPTE: Teniu en compte que «shred» confia en una assumpció molt important:\n" +"que el sistema de fitxers sobreescriu les dades en el mateix lloc. Aquesta " +"és\n" +"la foma tradicional de fer les coses, però molts sistemes de fitxers " +"moderns\n" +"no satisfan aquesta assumpció. Aquests són exemples de sistemes de fitxers\n" +"sobre els quals «shred» NO és efectiu:\n" +"\n" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" +"* Sistemes de fitxers transaccionals o que usen diari, com els que es " +"troben\n" +" en AIX i Solaris (i JFS, ReiserFS, XFS, Ext3, etc.).\n" +"\n" +"* Sistemes de fitxers que escriuen dades redundants i continuen fins i tot " +"en\n" +" fallar algunes escriptures, com els sistemes de fitxers basats en RAID.\n" +"\n" +"* Sistemes de fitxers que creen instantànies, com el servidor NFS de " +"Network\n" +" Appliances.\n" +"\n" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" +"* Sistemes de fitxers que usen ubicacions temporals com a memòria cau " +"(cache),\n" +" com els clients d'NFS versió 3.\n" +"\n" +"* Sistemes de fitxers comprimits.\n" +"\n" +"A més a més, les còpies de seguretat i les rèpliques remotes dels sistemes " +"de\n" +"fitxers poden contenir còpies del fitxer que no poden ser eliminades, i que\n" +"podrien permetre recuperar més endavant el fitxer destruït.\n" + +#: src/shred.c:808 +#, c-format +msgid "%s: cannot rewind" +msgstr "%s: no s'ha pogut rebobinar" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "%s: passada %lu/%lu (%s)..." + +#: src/shred.c:868 +#, c-format +msgid "%s: error writing at offset %s" +msgstr "%s: error en escriure en el desplaçament %s" + +#: src/shred.c:897 +#, c-format +msgid "%s: file too large" +msgstr "%s: el fitxer és massa gran" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "%s: passada %lu/%lu (%s)...%s" + +#: src/shred.c:936 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "%s: passada %lu/%lu (%s)...%s/%s %d%%" + +#: src/shred.c:1195 +#, c-format +msgid "%s: invalid file type" +msgstr "%s: el tipus del fitxer no és vàlid" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s: el fitxer té un tamany negatiu" + +#: src/shred.c:1265 +#, c-format +msgid "%s: error truncating" +msgstr "%s: error en truncar" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "" +"%s: no es pot destruir el fitxer d'un descriptor obert només per afegir" + +# Missatge informatiu, es refereix al nom, no a les dades. ivb +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "%s: inici de l'eliminació" + +# No usa quote(). ivb +#: src/shred.c:1412 +#, c-format +msgid "%s: renamed to %s" +msgstr "%s: s'ha reanomenat a «%s»" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s: ha estat eliminat" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "%s: no s'ha pogut eliminar" + +#: src/shred.c:1551 +#, c-format +msgid "%s: invalid number of passes" +msgstr "%s: el nombre de passades no és vàlid" + +#: src/shred.c:1568 +#, c-format +msgid "%s: invalid file size" +msgstr "%s: el tamany del fitxer no és vàlid" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "Jim Meyering i Paul Eggert" + +#: src/sleep.c:52 +#, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" +"Forma d'ús: %s NÚMERO[SUFIX]...\n" +" o bé: %s OPCIÓ\n" +"Fa una pausa per NÚMERO segons. SUFIX pot ser «s» per segons (per " +"defecte),\n" +"«m» per minuts, «h» per hores o «d» per dies. Al contrari que la majoria " +"de\n" +"les implementacions, que requereixen que NÚMERO siga un enter, ací NÚMERO " +"pot\n" +"ser un número real en coma flotant qualsevol.\n" +"\n" + +#: src/sleep.c:155 +#, c-format +msgid "invalid time interval `%s'" +msgstr "l'interval de temps «%s» no és vàlid" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "no s'ha pogut llegir el rellotge de temps real" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "Mike Haertel i Paul Eggert" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" +"Escriu la concatenació ordenada de tots els FITXERs en la sortida " +"estàndard.\n" +"\n" +"Opcions d'ordenació:\n" +"\n" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" +" -b, --ignore-leading-blanks\n" +" No té en compte els espais en blanc inicials.\n" +" -d, --dictionary-order\n" +" Només té en compte els espais en blanc i els " +"caràcters\n" +" alfanumèrics.\n" +" -f, --ignore-case Converteix a majúscules.\n" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" +" -g, --general-numeric-sort\n" +" Ordena segons el valor numèric general.\n" +" -i, --ignore-nonprinting\n" +" Només té en compte els caràcters imprimibles.\n" +" -M, --month-sort Ordena per mesos: (desconegut) < GEN < ... < DES.\n" +" -n, --numeric-sort Ordena segons el valor numèric de la cadena.\n" +" -r, --reverse Inverteix el resultat de l'ordenació.\n" +"\n" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" +"Altres opcions:\n" +"\n" +" -c, --check Comprova si l'entrada està ordenada; no ordena.\n" +" -k, --key=POS1[,POS2] Defineix com a clau d'ordenació allò que es " +"troba\n" +" entre POS1 i POS2 (començant per 1).\n" +" -m, --merge Mescla fitxers prèviament ordenats; no ordena.\n" +" -o, --output=FITXER Escriu el resultat en el FITXER.\n" +" -s, --stable Dóna per acabada cada ordenació sense passar per la\n" +" comparació usada com a últim recurs.\n" +" -S, --buffer-size=TAMANY\n" +" Defineix el TAMANY de l'avantmemòria principal.\n" + +# No usa quote(). ivb +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" +" -t, --field-separator=SEP\n" +" Usa SEP com a separador de camp, en lloc de la\n" +" transició de caràcter no-blanc a blanc.\n" +" -T, --temporary-directory=DIR\n" +" Usa DIR com a directori temporal (se'n poden indicar\n" +" més repetint l'opció), en lloc de $TMPDIR o «%s».\n" +" -u, --unique Amb «-c» comprova que l'ordenació és estricta, en " +"cas\n" +" contrari només escriu la primera d'aquelles entrades\n" +" que resulten iguals.\n" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" +" -z, --zero-terminated Escriu un octet 0 en lloc de cada caràcter de " +"nova\n" +" línia.\n" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" +"\n" +"POS és F[.C][OPCS], on F és el número del camp i C la posició del caràcter " +"en\n" +"el camp. OPCS és una més opcions d'ordenació, d'una única lletra, que " +"tenen\n" +"preferència sobre les opcions globals d'ordenació per aquesta clau. Si no\n" +"s'especifica cap clau, s'usa la línia sencera com a clau.\n" +"\n" +"El TAMANY pot anar seguit dels següent sufixs multiplicadors:\n" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" +"% 1% de memòria, b 1, K 1024 (per defecte), i així per M, G, T, P, E, Z, Y.\n" +"\n" +"Sense FITXER, o quan FITXER és «-», llegeix l'entrada estàndard.\n" +"\n" +"*** AVÃS ***\n" +"El locale especificat en l'entorn afecta l'ordenació. Establiu LC_ALL a " +"«C»\n" +"per obtenir l'ordenació tradicional que usa el valor numèric dels " +"caràcters.\n" + +# Va seguit del nom del fitxer. ivb +#: src/sort.c:444 +msgid "cannot create temporary file" +msgstr "no s'ha pogut crear el fitxer temporal" + +#: src/sort.c:467 +msgid "open failed" +msgstr "no s'ha pogut obrir" + +#: src/sort.c:487 src/sort.c:2496 +msgid "close failed" +msgstr "no s'ha pogut tancar" + +#: src/sort.c:495 +msgid "write failed" +msgstr "no s'ha pogut escriure" + +# FIXME: xmalloc.h: _STRTOL_ERROR lacks i18n. ivb +# Açò quedarà com «invalid tamany d'ordenació `TAM'» mentre no ho facen. ivb +#: src/sort.c:641 +msgid "sort size" +msgstr "tamany d'ordenació" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "ha fallat stat()" + +#: src/sort.c:972 +msgid "read failed" +msgstr "no s'ha pogut llegir" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "%s: %s:%s: fora d'ordre: " + +#: src/sort.c:1574 +msgid "standard error" +msgstr "error estàndard" + +#: src/sort.c:2032 +#, c-format +msgid "%s: invalid field specification `%s'" +msgstr "%s: l'especifiació de camp no és vàlida: «%s»" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "%s: el comptador «%.*s» és massa gran" + +#: src/sort.c:2064 +#, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "%s: el comptador a l'inici de «%s» no és vàlid" + +#: src/sort.c:2298 +msgid "invalid number after `-'" +msgstr "el número després de «-» no és vàlid" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +msgid "invalid number after `.'" +msgstr "el número després de «.» no és vàlid" + +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "l'especificació de camp conté un caràcter extraviat" + +#: src/sort.c:2338 +msgid "invalid number at field start" +msgstr "el número a l'inici del camp no és vàlid" + +#: src/sort.c:2342 src/sort.c:2370 +msgid "field number is zero" +msgstr "el número de camp és zero" + +#: src/sort.c:2351 +msgid "character offset is zero" +msgstr "el desplaçament de caràcter és zero" + +#: src/sort.c:2366 +msgid "invalid number after `,'" +msgstr "el número després de «,» no és vàlid" + +# No és necessàriament una tabulació, ho diu info. ivb +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "«%s» és un separador multicaràcter" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "no es permet l'operand extra «%s» en usar l'opció «-c»" + +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "Forma d'ús: %s [OPCIÓ] [ENTRADA [PREFIX]]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" +"Escriu fragments de tamany fix de l'ENTRADA en fitxers «PREFIXaa», " +"«PREFIXab»,\n" +"...; el PREFIX per defecte és «x». Sense ENTRADA, o quan ENTRADA és «-»,\n" +"llegeix l'entrada estàndard.\n" +"\n" + +# corregir l'opció -C +#: src/split.c:108 +#, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" +" -a, --suffix-length=N Usa sufixs de longitud N (per defecte %d).\n" +" -b, --bytes=TAMANY Escriu TAMANY octets per fitxer.\n" +" -C, --line-bytes=TAMANY\n" +" Escriu com a molt TAMANY octets de línies senceres " +"per\n" +" cada fitxer d'eixida.\n" +" -l, --lines=NOMBRE Escriu aquest NOMBRE de línies per fitxer.\n" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" +" --verbose Mostra un missatge en la sortida estàndard d'errors\n" +" abans d'obrir cada fitxer de sortida.\n" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "s'han esgotat els sufixs pels fitxers de sortida" + +# Missatge informatiu. ivb +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "s'està creant el fitxer «%s»\n" + +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "només es pot partir el fitxer d'una manera" + +#: src/split.c:394 +#, c-format +msgid "%s: invalid suffix length" +msgstr "%s: la longitud del sufix no és vàlida" + +#: src/split.c:408 src/split.c:434 +#, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: el nombre d'octets no és vàlid" + +#: src/split.c:421 +#, c-format +msgid "%s: invalid number of lines" +msgstr "%s: el nombre de línies no és vàlid" + +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "l'opció «-%d» és obsoleta; useu «-l %d»" + +#: src/split.c:483 +msgid "invalid number" +msgstr "el número no és vàlid" + +#: src/stat.c:326 +msgid "*** invalid date/time ***" +msgstr "*** l'hora o data no és vàlida ***" + +# Usa quote(). ivb +#: src/stat.c:608 +#, c-format +msgid "cannot read file system information for %s" +msgstr "no s'ha pogut llegir la informació de sistema de fitxers de %s" + +#: src/stat.c:684 +#, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "Forma d'ús: %s [OPCIÓ] FITXER...\n" + +# FIXME: -c lacks comma. ivb +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" +"Mostra l'estat d'un fitxer o sistema de fitxers.\n" +"\n" +" -f, --filesystem Mostra l'estat del sistema de fitxers en lloc de\n" +" l'estat del fitxer.\n" +" -c, --format=FORMAT Usa el FORMAT especificat en lloc de l'usat per\n" +" defecte.\n" +" -L, --dereference Segueix els enllaços simbòlics.\n" +" -t, --terse Mostra la informació de forma pelada.\n" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" +"\n" +"Seqüències de format vàlides pels fitxers (és a dir, sense «--filesystem»):\n" +"\n" +" %A Permisos d'accés en un format llegible pels humans.\n" +" %a Permisos d'accés en octal.\n" +" %B Tamany en octets de cada bloc mostrat per «%b».\n" +" %b Nombre de blocs reservats (vegeu «%B»).\n" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" +" %D Número del dispositiu en hexadecimal.\n" +" %d Número del dispositiu en decimal.\n" +" %F Tipus del fitxer.\n" +" %f Mode en brut, en hexadecimal.\n" +" %G Nom del grup del propietari.\n" +" %g Identificador del grup del propietari.\n" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" +" %h Nombre d'enllaços forts.\n" +" %i Número del node índex.\n" +" %N Nom entrecometat del fitxer, o del fitxer apuntat en el cas d'un\n" +" enllaç simbòlic.\n" +" %n Nom del fitxer.\n" +" %o Tamany del bloc d'E/S.\n" +" %s Tamany total, en octets.\n" +" %T Número menor de dispositiu, en hexadecimal.\n" +" %t Número major de dispositiu, en hexadecimal.\n" + +# Indique «de les dades» i «del node índex», queda més clar. ivb +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" +" %U Nom d'usuari del propietari.\n" +" %u Identificador d'usuari del propietari.\n" +" %X Data de l'últim accés, en segons des de l'Època.\n" +" %x Data de l'últim accés.\n" +" %Y Data de l'última modificació de les dades, en segons des de " +"l'Època.\n" +" %y Data de l'última modificació de les dades.\n" +" %Z Data de l'últim canvi en el node índex, en segons des de l'Època.\n" +" %z Data de l'últim canvi en el node índex.\n" +"\n" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" +"Seqüències de format vàlides pels sistemes de fitxers:\n" +"\n" +" %a Nombre de blocs lliures disponibles pels usuaris normals.\n" +" %b Nombre total de blocs de dades del sistema de fitxers.\n" +" %c Nombre total de nodes índex del sistema de fitxers.\n" +" %d Nombre de nodes índex lliures del sistema de fitxers.\n" +" %f Nombre de blocs de dades lliures del sistema de fitxers.\n" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" +" %i Identificador del sistema de fitxers en hexadecimal.\n" +" %l Longitud màxima dels noms de fitxer.\n" +" %n Nom del fitxer.\n" +" %s Tamany òptim del bloc de transferència.\n" +" %T Tipus del sistema de fitxers en un format llegible pels humans.\n" +" %t Tipus del sistema de fitxers en hexadecimal.\n" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" +"Forma d'ús: %s [-F DISPOSITIU] [--file=DISPOSITIU] [PROPIETAT]...\n" +" o bé: %s [-F DISPOSITIU] [--file=DISPOSITIU] [-a|--all]\n" +" o bé: %s [-F DISPOSITIU] [--file=DISPOSITIU] [-g|--save]\n" + +#: src/stty.c:504 +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" +"Mostra o canvia les característiques del terminal.\n" +"\n" +" -a, --all Mostra totes les propietats actuals de forma " +"llegible\n" +" pels humans.\n" +" -g, --save Mostra totes les propietats actuals de forma " +"llegible\n" +" per «stty».\n" +" -F, --file=DISPOSITIU Obre i usa el DISPOSITIU especificat en comptes " +"de\n" +" l'entrada estàndard.\n" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" +"\n" +"Un «-» opcional davant d'una PROPIETAT la nega. Un «*» marca les " +"propietats\n" +"no-POSIX. Les propietats disponibles venen determinades pel sistema " +"subjaent.\n" + +# El més llarg és «werase CAR». ivb +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" +"\n" +"Caràcters especials:\n" +" * dsusp CAR El caràcter CAR enviarà un senyal de parada de terminal " +"una\n" +" volta s'haja buidat l'entrada.\n" +" eof CAR CAR enviarà un final de fitxer (que termina l'entrada).\n" +" eol CAR CAR terminarà la línia.\n" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" +" * eol2 CAR CAR indica un caràcter alternatiu de terminació de línia.\n" +" erase CAR CAR esborrarà l'últim caràcter escrit.\n" +" intr CAR CAR enviarà un senyal d'interrupció.\n" +" kill CAR CAR esborrarà la línia actual.\n" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" +" * lnext CAR CAR entrarà el caràcter següent entrecometat.\n" +" quit CAR CAR enviarà un senyal d'eixir.\n" +" * rprnt CAR CAR redibuixarà la línia actual.\n" +" start CAR CAR reiniciarà l'eixida després d'haver-la parat.\n" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" +" stop CAR CAR pararà l'eixida.\n" +" susp CAR CAR enviarà un senyal de parada de terminal.\n" +" * swtch CAR CAR canviarà a una capa d'intèrpret diferent.\n" +" * werase CAR CAR esborrarà l'última paraula escrita.\n" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" +"\n" +"Propietats especials:\n" +" N Estableix la velocitat d'entrada i eixida a N bauds.\n" +" * cols N Anuncia al nucli que el terminal té N columnes.\n" +" * columns N Equival a «cols N».\n" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" +" ispeed N Estableix la velocitat d'entrada a N bauds.\n" +" * line N Usa la disciplina de línia N.\n" +" min N Amb «-icanon», caldran almenys N caràcters per fer una\n" +" lectura completa.\n" +" ospeed N Estableix la velocitat d'eixida a N bauds.\n" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" +" * rows N Anucia al nucli que el terminal té N files.\n" +" * size Mostra el nombre de files i columnes d'acord amb el nucli.\n" +" speed Mostra la velocitat del terminal.\n" +" time N Amb «-icanon», l'expiració de la lectura esdevé d'N " +"dècimes\n" +" de segon.\n" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" +"\n" +"Propietats de control:\n" +" [-]clocal Inhabilita els senyals de control del mòdem.\n" +" [-]cread Permet rebre entrada.\n" +" * [-]crtscts Habilita l'establiment de connexió amb RTS/CTS.\n" +" csN Estableix el tamany de caràcter a N bits [5..8].\n" + +#: src/stty.c:570 +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" +" [-]cstopb Usa dos bits de parada per caràcter (només un amb «-»).\n" +" [-]hup S'envia un senyal de penjat quan l'últim procés tanque el\n" +" terminal.\n" +" [-]hupcl Equival a «[-]hup».\n" +" [-]parenb Genera un bit de paritat a l'eixida i n'espera un a\n" +" l'entrada.\n" +" [-]parodd Usa paritat senar (parella amb «-»).\n" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" +"\n" +"Propietats de l'entrada:\n" +" [-]brkint Fa que les interrupcions de teclat generen senyals\n" +" d'interrupció.\n" +" [-]icrnl Tradueix els retorns de carro a noves línies.\n" +" [-]ignbrk Descarta els caràcters d'interrupció.\n" +" [-]igncr Descarta els retorns de carro.\n" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" +" [-]ignpar Descarta els caràcters amb error de paritat.\n" +" * [-]imaxbel Xiula i no buida un bloc de memòria intermèdia d'entrada " +"ple\n" +" quan arriba un caràcter.\n" +" [-]inlcr Tradueix les noves línies en retorns de carro.\n" +" [-]inpck Habilita la comprovació de paritat de l'entrada.\n" +" [-]istrip Posa a zero el bit alt (8é) dels caràcters d'entrada.\n" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" +" * [-]iuclc Tradueix els caràcters en majúscula a minúscula.\n" +" * [-]ixany Permet que qualsevol caràcter reinicie l'eixida, no només " +"el\n" +" caràcter definit amb «start».\n" +" [-]ixoff Habilita l'enviament de caràcters d'inici/parada.\n" +" [-]ixon Habilita el control de flux amb XON/XOFF.\n" +" [-]parmrk Marca els errors de paritat (amb la seqüència de caràcters\n" +" 255 - 0 - caràcter).\n" +" [-]tandem Equival a «[-]ixoff»\n" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" +"\n" +"Propietats de l'eixida:\n" +" * bsN Estil del retard del retrocés, N en [0..1].\n" +" * crN Estil del retard del retorn de carro, N en [0..3].\n" +" * ffN Estil del retard del salt de pàgina, N en [0..1].\n" +" * nlN Estil del retard de la nova línia, N en [0..1].\n" + +#: src/stty.c:608 +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" +" * [-]ocrnl Tradueix els retorns de carro a noves línies.\n" +" * [-]ofdel Usa per replenar caràcters d'esborrat en comptes de nuls.\n" +" * [-]ofill Replena amb caràcters en comptes d'esperar en els retards.\n" +" * [-]olcuc Tradueix els caràcters en minúscula a majúscula.\n" +" * [-]onlcr Tradueix les noves línies a retorn de carro - nova línia.\n" +" * [-]onlret Fa que la nova línia provoque un retorn de carro.\n" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" +" * [-]onocr No imprimeix retorns de carro en la primera columna.\n" +" [-]opost Postprocessa l'eixida.\n" +" * tabN Estil del retard de la tabulació horitzontal, N en [0..3].\n" +" * tabs Equival a «tab0».\n" +" * -tabs Equival a «tab3».\n" +" * vtN Estil del retard de la tabulació vertical, N en [0..1].\n" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" +"\n" +"Propietats locals:\n" +" [-]crterase Mostra els caràcters de retrocés com a retrocés - espai -\n" +" retrocés.\n" +" * crtkill Esborra totes les línies d'acord amb «echoprt» i «echoe».\n" +" * -crtkill Esborra totes les línies d'acord amb «echoctl» i «echok».\n" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" +" * [-]ctlecho Mostra els caràcters de control amb notació d'accent\n" +" circumflex («^c»).\n" +" [-]echo Mostra els caràcters de l'entrada.\n" +" * [-]echoctl Equival a «[-]ctlecho».\n" +" [-]echoe Equival a «[-]crterase».\n" +" [-]echok Mostra una nova línia després del caràcter d'esborrar " +"línia.\n" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" +" * [-]echoke Equival a «[-]crtkill».\n" +" [-]echonl Mostra les noves línies encara que no es mostren la resta\n" +" dels caràcters.\n" +" * [-]echoprt Mostra entre «\\\\» i «/» els caràcters esborrats amb el\n" +" retrocés.\n" +" [-]icanon Habilita els caràcters especials d'esborrar, esborrar " +"línia,\n" +" esborrar paraula i redibuixar.\n" +" [-]iexten Habilita els caràcters especials no-POSIX.\n" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" +" [-]isig Habilita els caràcters especials d'interrupció, eixida i\n" +" parada de terminal.\n" +" [-]noflsh Inhabilita el buidat després d'haver rebut els caràcters\n" +" especials d'interrupció i eixida.\n" +" * [-]prterase Equival a «[-]echoprt».\n" +" * [-]tostop Para els processos de fons que intenten escriure en el\n" +" terminal.\n" +" * [-]xcase Amb «icanon», escapa amb «\\\\» les majúscules.\n" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" +"\n" +"Propietats combinades:\n" +" * [-]LCASE Equival a «[-]lcase».\n" +" cbreak Equival a «-icanon».\n" +" -cbreak Equival a «icanon».\n" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" +" cooked Posa a llurs valors per defecte els caràcters: brkint " +"ignpar\n" +" istrip icrnl ixon opost isig icanon eof eol.\n" +" -cooked Equival a «raw».\n" +" crt Equival a «echoe echoctl echoke».\n" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" +" dec Equival a «echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u».\n" +" * [-]decctlq Equival a «[-]ixany».\n" +" ek Posa a llurs valors per defecte els caràcters «kill» i\n" +" «erase».\n" +" evenp Equival a «parenb -parodd cs7».\n" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" +" -evenp Equival a «-parenb cs8».\n" +" * [-]lcase Equival a «xcase iuclc olcuc».\n" +" litout Equival a «-parenb -istrip -opost cs8».\n" +" -litout Equival a «parenb istrip opost cs7».\n" +" nl Equival a «-icrnl -onlcr».\n" +" -nl Equival a «icrnl -inlcr -igncr onlcr -ocrnl -onlret».\n" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" +" oddp Equival a «parenb parodd cs7».\n" +" -oddp Equival a «-parenb cs8».\n" +" [-]parity Equival a «[-]evenp».\n" +" pass8 Equival a «-parenb -istrip cs8».\n" +" -pass8 Equival a «parenb istrip cs7».\n" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" +" raw Equival a «-ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany -imaxbel\n" +" -opost -isig -icanon -xcase min 1 time 0»\n" +" -raw Equival a «cooked».\n" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" +" sane Equival a «cread -ignbrk brkint -inlcr -igncr icrnl -ixoff\n" +" -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr -onocr\n" +" -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0 isig icanon\n" +" iexten echo echoe echok -echonl -noflsh -xcase -tostop\n" +" -echoprt echoctl echoke», posant tots els caràcters " +"especials\n" +" a llurs valors per defecte.\n" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" +"\n" +"Controla la línia tty connectada a l'entrada estàndard. Sense arguments,\n" +"mostra la velocitat en bauds, la disciplina de línia i les diferències amb\n" +"«stty sane». En indicar propietats, el caràcter CAR ha de ser literal, o\n" +"codificat com «^c», «0x37», «0177» o «127»; els valors especials «^-» i\n" +"«undef» s'usen per inhabilitar caràcters especials.\n" + +#: src/stty.c:787 +msgid "only one device may be specified" +msgstr "només es pot especificar un dispositiu" + +#: src/stty.c:882 +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "" +"les opcions per mostrar les propietats de forma llegible per humans i per " +"stty són mútuament excloents" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "no es poden establir modes en especificar un estil d'eixida" + +# Realment el desactiva, no reinicia. ivb +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "%s: no s'ha pogut desactivar el mode no blocador" + +#: src/stty.c:957 src/stty.c:1064 +#, c-format +msgid "invalid argument `%s'" +msgstr "l'argument «%s» no és vàlid" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, c-format +msgid "missing argument to `%s'" +msgstr "manca un argument per «%s»" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "%s: no s'han pogut realitzar totes les operacions requerides" + +# Missatge de depuració. ivb +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "new_mode: mode\n" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "%s: aquest dispositiu no té informació de tamany" + +#: src/stty.c:1944 +#, c-format +msgid "invalid integer argument `%s'" +msgstr "l'argument enter «%s» no és vàlid" + +#: src/su.c:289 +msgid "Password:" +msgstr "Contrasenya:" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "getpass: no s'ha pogut obrir «/dev/tty»" + +#: src/su.c:350 +msgid "cannot set groups" +msgstr "no s'han pogut establir els grups" + +#: src/su.c:354 +msgid "cannot set group id" +msgstr "no s'ha pogut establir l'identificador de grup" + +#: src/su.c:356 +msgid "cannot set user id" +msgstr "no s'ha pogut establir l'identificador d'usuari" + +#: src/su.c:437 +#, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "Forma d'ús: %s [OPCIÓ]... [-] [USUARI [ARG]...]\n" + +#: src/su.c:438 +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" +"Canvia els identificadors efectius d'usuari i grup als de l'USUARI.\n" +"\n" +" -, -l, --login Fa servir un intèrpret d'entrada.\n" +" -c, --command=ORDRE Passa una ORDRE a l'intèrpret amb «-c».\n" +" -f, --fast Passa «-f» a l'intèrpret (per «csh» o «tcsh»).\n" +" -m, --preserve-environment\n" +" No reinicia les variables d'entorn.\n" +" -p Equival a «-m».\n" +" -s, --shell=INTÈRPRET Executa l'INTÈRPRET si ho permet «/etc/shells».\n" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" +"\n" +"Un «-» simple implica «-l». Si no s'indica cap USUARI, s'assumeix «root».\n" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "l'usuari «%s» no existeix" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "la contrasenya no és correcta" + +# No usa quote(). ivb +# Missatge informatiu. ivb +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "s'usa l'intèrpret restringit «%s»" + +# No usa quote(). ivb +#: src/su.c:580 +#, c-format +msgid "warning: cannot change directory to %s" +msgstr "avís: no s'ha pogut canviar al directori «%s»" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "Kayvan Aghaiepour i David MacKenzie" + +# Això de «defeat» és que l'últim té preferència. ivb +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" +"Mostra la suma de verificació i el nombre de blocs de cada FITXER.\n" +"\n" +" -r Usa l'algorisme de suma de BSD, amb blocs de 1 kB.\n" +" -s, --sysv Usa l'algorisme de suma de System V, amb blocs de " +"512\n" +" octets.\n" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" +"Bolca els blocs modificats al disc i actualitza el superbloc.\n" +"\n" + +#: src/sync.c:70 src/tty.c:112 +msgid "ignoring all arguments" +msgstr "es descarten tots els arguments" + +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr " --help Mostra aquesta ajuda i surt.\n" + +#: src/sys2.h:494 +msgid " --version output version information and exit\n" +msgstr " --version Mostra informació sobre la versió i surt.\n" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "Jay Lepreau i David MacKenzie" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Escriu cada FITXER en la sortida estàndard, invertint l'ordre de les " +"línies.\n" +"Sense cap FITXER, o quan FITXER és «-», llegeix l'entrada estàndard.\n" +"\n" + +#: src/tac.c:139 +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" +" -b, --before Posa el separador abans, i no després.\n" +" -r, --regexp Interpreta el separador com a una expressió regular.\n" +" -s, --separator=CADENA\n" +" Usa la CADENA com a separador en lloc del salt de\n" +" línia.\n" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "stdin: error de lectura" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "el separador no pot ser buit" + +#: src/tail.c:49 +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "Paul Rubin, David MacKenzie, Ian Lance Taylor i Jim Meyering" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Escriu les últimes %d línies de cada FITXER en la sortida estàndard. Amb " +"més\n" +"d'un FITXER, les precedeix amb una capçalera amb el nom del fitxer. Sense " +"cap\n" +"FITXER, o quan FITXER és «-», llegeix l'entrada estàndard.\n" +"\n" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" +" --retry Continua intentant obrir un fitxer fins i tot si és\n" +" inaccessible al principi, o si després es torna\n" +" inaccessible; només és útil amb «-f».\n" +" -c, --bytes=N Escriu els últims N octets.\n" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" +" -f, --folow[={NOM|DESCRIPTOR}]\n" +" Escriu les dades a mesura que el fitxer creix; «-f»,\n" +" «--follow», i «--follow=DESCRIPTOR» són equivalents.\n" +" -F Equival a «--follow=NOM --retry».\n" + +# «-n» cap pq per defecte és 10. ivb +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" +" -n, --lines=N Escriu les últimes N línies, i no les últimes %d.\n" +" --max-unchanged-stats=N\n" +" Amb «--follow=NOM», reobre el FITXER que no ha " +"canviat\n" +" de mida després de N iteracions (per defecte %d), " +"per\n" +" veure si ha estat esborrat o reanomenat (com és el " +"cas\n" +" habitual dels fitxers de registre en ser rotats).\n" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" +" --pid=PID Amb «-f», acaba després que el procés identificat " +"per\n" +" aquest PID mori.\n" +" -q, --quiet, --silent Omet les capçaleres amb els noms dels fitxers.\n" +" -s, --sleep-interval=S\n" +" Amb «-f», cada iteració dura aproximadament S segons\n" +" (per defecte 1.0).\n" +" -v, --verbose Sempre escriu els noms dels fitxers.\n" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" +"\n" +"Si el primer caràcter d'N (nombre d'octets o línies) és un «+», escriu cada\n" +"fitxer començant pel seu Nè element, comptant des de l'inici; en altre cas,\n" +"escriu els últims N elements del fitxer. N pot tenir un sufix " +"multiplicador:\n" +"«b» per 512, «k» per 1024, «m» per 1048576 (1 Mega).\n" +"\n" + +# atenció: dues entrades seguides +# Xanxullo horrend perquè la traducció acaba amb la línia! ivb +# El xanxullo inclou canviar el dialecte d'un verb! Aargh! XP ivb +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" +"Amb «--follow» (-f), es segueix per defecte el descriptor de fitxer, de " +"manera\n" +"que encara que el fitxer siga reanomenat, es continuarà seguint el seu final." + +# aquesta entrada va junta amb l'anterior +# Xanxullo horrend perquè la traducció comença amb la línia! ivb +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" +" \n" +"Aquest comportament no és desitjable si el que voleu realment és seguir el\n" +"nom del fitxer, i no el seu descriptor (per exemple, durant la rotació d'un\n" +"registre). Useu «--follow=NOM» en aquest cas. Això fa que s'òbriga\n" +"periòdicament el fitxer en qüestió per veure si ha estat esborrat i recreat\n" +"per algun altre programa.\n" + +# No usa quote(). ivb +# Missatge d'error. ivb +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "en tancar «%s» (fd=%d)" + +#: src/tail.c:391 +#, c-format +msgid "%s: cannot seek to offset %s" +msgstr "%s: no s'ha pogut moure fins el desplaçament %s" + +#: src/tail.c:395 +#, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "%s: no s'ha pogut moure dins el desplaçament relatiu %s" + +#: src/tail.c:400 +#, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "%s: no s'ha pogut moure fins el desplaçament relatiu al final %s" + +# FIXME: pretty_name() lacks i18n. ivb +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "«%s» ha esdevingut inaccessible" + +# tailable = cuable? ;) +# FIXME: pretty_name() lacks i18n. ivb +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "" +"«%s» ha estat substituït per un fitxer no seguible; s'abandona la pista " +"d'aquest nom" + +# FIXME: pretty_name() lacks i18n. ivb +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "«%s» ha esdevingut accessible" + +# FIXME: pretty_name() lacks i18n. ivb +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "«%s» ha aparegut; es segueix el final del nou fitxer" + +# FIXME: pretty_name() lacks i18n. ivb +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "«%s» ha estat substituït; es segueix el final del nou fitxer" + +# FIXME: pretty_name() lacks i18n. ivb +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "%s: el fitxer ha estat truncat" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "no resta cap fitxer" + +# FIXME: pretty_name() lacks i18n. ivb +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "" +"%s: no es pot seguir el final d'aquest tipus de fitxer; s'abandona la pista " +"d'aquest nom" + +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "%c: el sufix no és vàlid en la forma obsoleta d'opció" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"sobren arguments; Quan useu la sintaxi d'opcions obsoleta (%s) no hi pot " +"haver més d'un argument fitxer. Useu les opcions equivalents «-n» o «-c»." + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"avís: l'ús de dos o més arguments fitxer amb la sintaxi d'opcions obsoleta (%" +"s) no és portable. Useu les opcions equivalents «-n» o «-c»." + +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "l'opció «%s» és obsoleta; useu «%s-%c %.*s»" + +# L'argument és un número vàlid sense espais. ivb +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "%s és més gran que el tamany màxim de fitxer d'aquest sistema" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "" +"%s: el nombre màxim d'iteracions sense alteracions entre obertures no és " +"vàlid" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "%s: el nombre màxim de canvis de tamany consecutius no és vàlid" + +#: src/tail.c:1534 +#, c-format +msgid "%s: invalid PID" +msgstr "%s: el PID no és vàlid" + +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: el nombre de segons no és vàlid" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "avís: «--retry» només és útil quan es segueix la pista d'un nom" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "avís: es descarta el PID; «--pid=PID» només és útil en fer seguiments" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "avís: aquest sistema no soporta l'opció «--pid=PID»" + +#: src/tee.c:33 +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "Mike Parker, Richard M. Stallman i David MacKenzie" + +#: src/tee.c:64 +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" +"Còpia l'entrada estàndard a cada FITXER, i també a l'eixida estàndard.\n" +"\n" +" -a, --append Afegeix a cada FITXER indicat, no el sobreescriu.\n" +" -i, --ignore-interrupts\n" +" Descarta els senyals d'interrupció.\n" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "cal un argument\n" + +# L'argument és una cadena de "després d'«-lt»" i companyia. ivb +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "cal una expressió entera %s\n" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "cal «)»\n" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "cal «)», s'ha trobat «%s»\n" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "%s: cal un operador unari\n" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "%s: cal un operador binari\n" + +#: src/test.c:424 +msgid "before -lt" +msgstr "abans de «-lt»" + +#: src/test.c:432 +msgid "after -lt" +msgstr "després de «-lt»" + +#: src/test.c:446 +msgid "before -le" +msgstr "abans de «-le»" + +#: src/test.c:453 +msgid "after -le" +msgstr "després de «-le»" + +#: src/test.c:469 +msgid "before -gt" +msgstr "abans de «-gt»" + +#: src/test.c:476 +msgid "after -gt" +msgstr "després de «-gt»" + +#: src/test.c:490 +msgid "before -ge" +msgstr "abans de «-ge»" + +#: src/test.c:497 +msgid "after -ge" +msgstr "després de «-ge»" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "«-nt» no admet «-l»\n" + +#: src/test.c:526 +msgid "before -ne" +msgstr "abans de «-ne»" + +#: src/test.c:533 +msgid "after -ne" +msgstr "després de «-ne»" + +#: src/test.c:549 +msgid "before -eq" +msgstr "abans de «-eq»" + +#: src/test.c:556 +msgid "after -eq" +msgstr "després de «-eq»" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "«-ef» no admet «-l»\n" + +#: src/test.c:586 +msgid "-ot does not accept -l\n" +msgstr "«-ot» no admet «-l»\n" + +#: src/test.c:593 +msgid "unknown binary operator" +msgstr "l'operador binari no és conegut" + +#: src/test.c:781 +msgid "after -t" +msgstr "després de «-t»" + +#: src/test.c:979 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"Forma d'ús: %s EXPRESSIÓ\n" +" o bé: [ EXPRESSIÓ ]\n" +" o bé: %s OPCIÓ\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" +"Ix amb un estat determinat per l'EXPRESSIÓ.\n" +"\n" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" +"\n" +"L'EXPRESSIÓ és certa o falsa i estableix l'estat d'eixida. És una de:\n" + +# El més llarg és «EXPRESSIÓ1 -a EXPRESSIÓ2». ivb +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" +"\n" +" ( EXPRESSIÓ ) L'EXPRESSIÓ és certa.\n" +" ! EXPRESSIÓ L'EXPRESSIÓ és falsa.\n" +" EXPRESSIÓ1 -a EXPRESSIÓ2 L'EXPRESSIÓ1 i l'EXPRESSIÓ2 són certes.\n" +" EXPRESSIÓ1 -o EXPRESSIÓ2 L'EXPRESSIÓ1 o l'EXPRESSIÓ2 és certa.\n" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" +"\n" +" [-n] CADENA La longitud de la CADENA no és zero.\n" +" -z CADENA La longitud de la CADENA és zero.\n" +" CADENA1 = CADENA2 Les cadenes són iguals.\n" +" CADENA1 != CADENA2 Les cadenes no són iguals.\n" + +#: src/test.c:1009 +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" +"\n" +" ENTER1 -eq ENTER2 L'ENTER1 és igual a l'ENTER2.\n" +" ENTER1 -ge ENTER2 L'ENTER1 és major o igual que l'ENTER2.\n" +" ENTER1 -gt ENTER2 L'ENTER1 és major que l'ENTER2.\n" +" ENTER1 -le ENTER2 L'ENTER1 és menor o igual que l'ENTER2.\n" +" ENTER1 -lt ENTER2 L'ENTER1 és menor que l'ENTER2.\n" +" ENTER1 -ne ENTER2 L'ENTER1 no és igual que l'ENTER2.\n" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" +"\n" +" FITXER1 -ef FITXER2 El FITXER1 i el FITXER2 tenen els mateixos\n" +" números de dispositiu i node índex.\n" +" FITXER1 -nt FITXER2 El FITXER1 és més nou (data de modificació) " +"que\n" +" el FITXER2.\n" +" FITXER1 -ot FITXER2 El FITXER1 és més antic que el FITXER2.\n" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" +"\n" +" -b FITXER El FITXER existeix i és un dispositiu de " +"blocs.\n" +" -c FITXER El FITXER existeix i és un dispositiu de\n" +" caràcters.\n" +" -d FITXER El FITXER existeix i és un directori.\n" +" -e FITXER El FITXER existeix.\n" + +# En «-G» no és necessari posar «ID». ivb +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" +" -f FITXER El FITXER existeix i és un fitxer ordinari.\n" +" -g FITXER El FITXER existeix i té activat el bit\n" +" d'establiment de l'ID de grup.\n" +" -h FITXER El FITXER existeix i és un enllaç simbòlic\n" +" (equival a «-L»).\n" +" -G FITXER El FITXER existeix i pertany al grup efectiu.\n" +" -k FITXER El FITXER existeix i té activat el bit de\n" +" permanença.\n" + +# En «-O» no és necessari posar ID. ivb +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" +" -L FITXER El FITXER existeix i és un enllaç simbòlic\n" +" (equival a «-h»).\n" +" -O FITXER El FITXER existeix i pertany a l'usuari " +"efectiu.\n" +" -p FITXER El FITXER existeix i és una canonada amb nom.\n" +" -r FITXER El FITXER existeix i és llegible.\n" +" -s FITXER El FITXER existeix i el seu tamany és major " +"que\n" +" zero.\n" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" +" -S FITXER El FITXER existeix i és un connector.\n" +" -t [DF] El descriptor de fitxer DF (per defecte " +"l'eixida\n" +" estàndard) és obert en un terminal.\n" +" -u FITXER El FITXER existeix i té activat el bit\n" +" d'establiment de l'ID d'usuari.\n" +" -w FITXER El FITXER existeix i pot ser escrit.\n" +" -x FITXER El FITXER existeix i és executable.\n" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" +"\n" +"Teniu en compte que cal que els parèntesis siguen ser escapats (per " +"exemple,\n" +"amb barres invertides) en els intèrprets d'ordres. ENTER també pot ser\n" +"«-l CADENA», que s'avalua a la longitud de la CADENA.\n" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "ARREGLA'M: ksb i mjb" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "manca «]»\n" + +#: src/test.c:1125 +msgid "too many arguments\n" +msgstr "sobren arguments\n" + +#: src/touch.c:39 +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie i Randy Smith" + +# Els 3 usen quote(). ivb +# Condició d'error. ivb +#: src/touch.c:164 src/touch.c:179 +#, c-format +msgid "creating %s" +msgstr "en crear %s" + +# Usa quote(). ivb +# En el codi font diu que no val la pena distingir el tipus d'error. ivb +#: src/touch.c:222 +#, c-format +msgid "cannot touch %s" +msgstr "no s'han pogut canviar les dates de %s" + +# Usa quote(). ivb +# Condició d'error. ivb +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "en establir les dates de %s" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" +"Actualitza les dates d'accés i modificació de cada FITXER a la data actual.\n" +"\n" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" +" -a Només canvia la data d'accés.\n" +" -c, --no-create No crea cap fitxer.\n" +" -d, --date=CADENA Interpreta la CADENA i l'usa en comptes de la data\n" +" actual.\n" +" -f (No es té en compte.)\n" +" -m Només canvia la data de modificació de les dades.\n" + +# Què té aquesta gent en contra de les cometes? ivb +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" +" -r, --reference=FITXER\n" +" Usa les dates d'aquest FITXER en comptes de la data\n" +" actual.\n" +" -t DATA Usa la data [[CC]AA]MMDDhhmm[.ss] en comptes de la " +"data\n" +" actual.\n" +" --time=PARAULA Modifica la data indicada per la PARAULA: la " +"d'accés\n" +" amb «access», «atime» o «use» (equivalen a «-a»); la " +"de\n" +" modificació amb «modify» o «mtime» (equivalen a «-" +"m»).\n" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" +"\n" +"Teniu en compte que les opcions «-d» i «-t» accepten formats de data i hora\n" +"distints.\n" + +#: src/touch.c:311 src/touch.c:331 +#, c-format +msgid "invalid date format %s" +msgstr "el format de data «%s» no és vàlid" + +#: src/touch.c:355 +msgid "cannot specify times from more than one source" +msgstr "no es poden especificar dates de més d'un origen" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "" +"avís: «touch %s» és obsoleta; useu «touch -t %04d%02d%02d%02d%02d.%02d»" + +#: src/touch.c:399 +msgid "file arguments missing" +msgstr "manquen arguments fitxer" + +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "Forma d'ús: %s [OPCIÓ]... JOC1 [JOC2]\n" + +#: src/tr.c:331 +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" +"Tradueix, redueix, o suprimeix caràcters de l'entrada estàndard, i escriu " +"el\n" +"resultat en la sortida estàndard.\n" +"\n" +" -c, --complement Complementa primer el JOC1.\n" +" -d, --delete Suprimeix els caràcters del JOC1, no tradueix.\n" +" -s, --squeeze-repeats Substitueix cada seqüència de caràcters de JOC1\n" +" repetits per una única ocurrència del caràcter.\n" +" -t, --truncate-set1 Trunca primer el JOC1 a la llargada del JOC2.\n" + +# El més llag és «[:xdigit:]». ivb +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" +"\n" +"Cada JOC s'especifica com a una cadena de caràcters. La majoria d'ells es\n" +"representen literalment. Les seqüències que s'interpreten són:\n" +"\n" +" \\NNN Caràcter amb valor octal NNN (d'1 a 3 dígits octals).\n" +" \\\\ Barra invertida.\n" +" \\a Alarma (BEL).\n" +" \\b Retrocés.\n" +" \\f Salt de pàgina.\n" +" \\n Nova línia.\n" +" \\r Retorn de carro.\n" +" \\t Tabulació horitzontal.\n" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" +" \\v Tabulació vertical.\n" +" CAR1-CAR2 Tots els caràcters en ordre ascendent entre CAR1 i CAR2.\n" +" [CAR*] En el JOC2, còpies de CAR fins arribar a la llargada de " +"JOC1.\n" +" [CAR*REP] REP còpies de CAR; REP és octal si comença amb 0.\n" +" [:alnum:] Totes les lletres i dígits.\n" +" [:alpha:] Totes les lletres.\n" +" [:blank:] Tots els espais en blanc horitzontals.\n" +" [:cntrl:] Tots els caràcters de control.\n" +" [:digit:] Tots els dígits.\n" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" +" [:graph:] Tots els caràcters imprimibles, excepte l'espai.\n" +" [:lower:] Totes les lletres minúscules.\n" +" [:print:] Tots els caràcters imprimibles, incloent l'espai.\n" +" [:punct:] Tots els caràcters de puntuació.\n" +" [:space:] Tots els espais en blanc verticals o horitzontals.\n" +" [:upper:] Totes les lletres majúscules.\n" +" [:xdigit:] Tots els dígits hexadecimals.\n" +" [=CAR=] Tots els caràcters equivalents a CAR.\n" + +# Les tres següents entrades van juntes !! +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" +"\n" +"La traducció es produeix si no s'indica «-d» i ambdós JOC1 i JOC2 " +"apareixen.\n" +"Només es pot usar «-t» quan es tradueix. El JOC2 s'expandeix a la llargada " +"de\n" +"JOC1 repetint l'últim caràcter tant com sigui necessari. " + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" +"Els caràcters\n" +"sobrants del JOC2 es descarten. Només s'assegura una expansió ascendent " +"per\n" +"les seqüències «[:lower:]» i «[:upper:]»; quan s'usen en JOC2 i s'estiga\n" +"traduint, només es poden utilitzar en parelles respecte JOC1, especificant\n" +"conversió de majúscules a minúscules (o a la inversa). " + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" +"«-s» usa el JOC1 si no\n" +"s'està traduint ni suprimint; en la reducció s'usa el JOC2 i aquesta es\n" +"produeix després de traduïr o suprimir.\n" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" +"avís: la seqüència ambígua d'escapada en octal «\\%c%c%c» s'interpreta com " +"la seqüència de 2 octets «\\0%c%c» «%c»" + +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "la barra d'escapada al final de la cadena no és vàlida" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "la seqüència d'escapada «\\%c» no és vàlida" + +# que coi significa `cotejar'??? +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "els extrems del rang «%s-%s» es troben en ordre invers" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "el nombre de repeticions «%s» de la construcció «[c*n]» no és vàlid" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "manca el nom de la classe de caràcters: «[::]»" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "manca el caràcter de la classe d'equivalència: «[==]»" + +#: src/tr.c:1025 +#, c-format +msgid "invalid character class `%s'" +msgstr "la classe de caràcters «%s» no és vàlida" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "%s: l'operand de la classe d'equivalència ha de ser un únic caràcter" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "" +"la construcció de repetició «[c*]» no pot aparèixer en la primera cadena" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "" +"només pot aparèixer una construcció de repetició «[c*]» en la segona cadena" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "" +"quan es tradueix, les expressions «[=c=]» no poden aparèixer en la segona " +"cadena" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "si no es trunca el primer joc, la segona cadena no pot ser nul·la" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" +"quan es tradueix amb classes de caràcters complementàries, la segona cadena " +"ha d'assignar tots els caràcters del domini a un de sol" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" +"quan es tradueix, les úniques classes de caràcters que poden aparèixer en la " +"segona cadena són «upper» i «lower»" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "" +"quan es tradueix, la construcció «[c*]» només pot aparèxier en la segona " +"cadena" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "quan es tradueix, cal especificar les dues cadenes" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "" +"quan s'elimina i es redueixen repeticions, cal especificar les dues cadenes" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" +"quan s'elimina sense reduir repeticions, només es pot especificar una cadena" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "" +"quan es redueixen les repeticions, cal especificar com a mínim una cadena" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "la construcció «[:upper:]» o «[:lower:]» està desalineada" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" +"l'assignació d'identitat no és vàlida; quan es tradueix, cada construcció «[:" +"lower:]» o «[:upper:]» de la primera cadena ha d'estar alineada amb la " +"corresponent construcció («[:upper:]» o «[:lower:]», respectivament) de la " +"segona cadena" + +#: src/true.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Forma d'ús: %s [arguments de la línia d'ordres que seran descartats]\n" +" o bé: %s OPCIÓ\n" +"Ix amb un codi d'estat que indica èxit.\n" +"\n" +"Aquests noms d'opcions no es poden abreviar:\n" +"\n" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Forma d'ús: %s [OPCIÓ] [FITXER]\n" +"Escriu una llista totalment ordenada d'acord amb l'ordenació parcial " +"descrita\n" +"en FITXER. Sense FITXER, o quan FITXER és «-», llegeix l'entrada " +"estàndard.\n" +"\n" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "%s: l'entrada conté un cicle:" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "només es pot especificar un argument" + +#: src/tty.c:63 +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" +"Mostra el nom de fitxer del terminal connectat a l'entrada estàndard.\n" +"\n" +" -s, --silent, --quiet No mostra res, només retorna un estat d'eixida.\n" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "no és un tty" + +# On deia «sistema operatiu» en una traducció antiga ara diu «nucli» ;) ivb +#: src/uname.c:111 +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" +"Mostra alguna informació sobre el sistema. Si no s'indica cap OPCIÓ, fa el\n" +"mateix que amb «-s».\n" +"\n" +" -a, --all Mostra tota la informació, en l'ordre següent:\n" +" -s, --kernel-name Mostra el nom del nucli.\n" +" -n, --nodename Mostra el nom de l'estació en la xarxa.\n" +" -r, --kernel-release Mostra el llançament del nucli.\n" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" +" -v, --kernel-version Mostra la versió del nucli.\n" +" -m, --machine Mostra el tipus del maquinari.\n" +" -p, --processor Mostra el tipus del processador.\n" +" -i, --hardware-platform\n" +" Mostra la plataforma del maquinari.\n" +" -o, --operating-system\n" +" Mostra el sistema operatiu.\n" + +#: src/uname.c:226 +msgid "cannot get system name" +msgstr "no s'ha pogut obtenir el nom del sistema" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Converteix els espais a tabulacions per cada FITXER, i escriu en la sortida\n" +"estàndard. Sense FITXER, o quan FITXER és «-», llegeix l'entrada " +"estàndard.\n" +"\n" + +# mirar la traducció del expand +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" +" -a, --all Converteix tots els espais en blanc, no només els " +"que\n" +" es troben a principi de línia.\n" +" --first-only Només converteix les seqüències d'espais en blanc " +"que\n" +" es troben a principi de la línia (inhabilita «-a»).\n" +" -t, --tabs=NÚMERO Tabula a una distància de NÚMERO caràcters, en lloc " +"de\n" +" 8 (habilita «-a»).\n" +" -t, --tabs=LLISTA Especifica una llista de posicions explícites per " +"cada\n" +" tabulació, separades per comes (habilita «-a»).\n" + +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "l'opció «-LLISTA» és obsoleta; useu «--first-only -t LLISTA»" + +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "Forma d'ús: %s [OPCIÓ]... [ENTRADA [SORTIDA]]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" +"Descarta totes tret d'una de successives línies idèntiques de l'ENTRADA (o " +"de\n" +"l'entrada estàndard) i escriu en la SORTIDA (o en la sortida estàndard).\n" +"\n" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" +" -c, --count Prefixa cada línia amb el nombre d'ocurrències.\n" +" -d, --repeated Només escriu les línies duplicades.\n" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" +" -D, --all-repeated[=MÈTODE_DELIMITACIÓ]\n" +" Escriu totes les línies duplicades, delimitant els\n" +" grups segons el MÈTODE: «none» (per defecte) no els\n" +" separa; «prepend» els prefixa i «separate» els " +"separa\n" +" amb una línia buida.\n" +" -f, --skip-fields=N Evita la comparació dels primers N camps.\n" +" -i, --ignore-case No té en compte les diferències entre majúscules i\n" +" minúscules.\n" +" -s, --skip-chars=N Evita la comparació dels primers N caràcters.\n" +" -u, --unique Només escriu les línies que són úniques.\n" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr " -w, --check-chars=N No compara més de N caràcters per línia.\n" + +# Hau! ivb +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" +"\n" +"Un camp és una sèrie d'espais en blanc, seguit de caràcters no en blanc.\n" +"En usar «--skip-fields» i «--skip-chars», primer es salten els camps i " +"després\n" +"els caràcters.\n" + +# No usa quote(). ivb +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "error en llegir «%s»" + +# No usa quote(). ivb +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "error en escriure «%s»" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "sobra l'operand «%s»" + +#: src/uniq.c:473 src/uniq.c:498 +msgid "invalid number of fields to skip" +msgstr "el nombre de camps a saltar no és vàlid" + +#: src/uniq.c:507 +msgid "invalid number of bytes to skip" +msgstr "el nombre d'octets a saltar no és vàlid" + +#: src/uniq.c:516 +msgid "invalid number of bytes to compare" +msgstr "el nombre d'octets a comparar no és vàlid" + +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "l'opció «-%lu» és obsoleta; useu «-f %lu»" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "" +"escriure totes les línies duplicades i el nombre de repeticions és absurd" + +#: src/unlink.c:51 +#, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"Forma d'ús: %s FITXER\n" +" o bé: %s OPCIÓ\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" +"Crida la funció unlink() per eliminar el FITXER especificat.\n" +"\n" + +# Usa quote(). ivb +#: src/unlink.c:99 +#, c-format +msgid "cannot unlink %s" +msgstr "no s'ha pogut deslligar %s" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "no s'ha pogut obtenir l'hora d'arrancada" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr " %2d:%02d%s en marxa " + +#: src/uptime.c:140 +msgid "am" +msgstr "am" + +#: src/uptime.c:140 +msgid "pm" +msgstr "pm" + +#: src/uptime.c:142 +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d dia" +msgstr[1] "%d dies" + +#: src/uptime.c:144 +#, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "%d usuari" +msgstr[1] "%d usuaris" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr ", càrrega mitjana: %.2f" + +#: src/uptime.c:191 src/users.c:118 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "Forma d'ús: %s [OPCIÓ]... [FITXER]\n" + +# Dubte sobre lo de uptime. jm +# Ein? ivb +# No usa quote() en cap dels 2 args. ivb +#: src/uptime.c:192 +#, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Mostra l'hora actual, quant temps ha estat el sistema en marxa, el nombre\n" +"d'usuaris en el sistema i la mitjana de treballs en la cua d'execució " +"durant\n" +"els últims 1, 5 i 15 minuts. Si no s'indica el FITXER, s'usa «%s».\n" +"És comú usar «%s» com a FITXER.\n" +"\n" + +#: src/users.c:35 +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "Joseph Arceneaux i David MacKenzie" + +# No usa quote() en cap dels dos args. ivb +#: src/users.c:119 +#, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Mostra qui està connectat actualment, d'acord amb el contingut del FITXER. " +"Si\n" +"no s'indica el FITXER, s'usa «%s». És comú usar «%s»\n" +"com a FITXER.\n" +"\n" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "Paul Rubin i David MacKenzie" + +# afegir una línia en blanc entre la descripció i les opcions +#: src/wc.c:129 +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" +"Escriu el nombre de salts de línia, paraules i octets de cada FITXER, i una\n" +"línia de totals si especifiqueu més d'un FITXER. Sense FITXER, o quan " +"FITXER\n" +"és «-», llegeix l'entrada estàndard.\n" +" -c, --bytes Escriu el nombre d'octets.\n" +" -m, --chars Escriu el nombre de caràcters.\n" +" -l, --lines Escriu el nombre de salts de línia.\n" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" +" -L, --max-line-length Escriu la longitud de la línia més llarga.\n" +" -w, --words Escriu el nombre de paraules.\n" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "Joseph Arceneaux, David MacKenzie i Michael Stone" + +# Ull, usar el mateix terme d'«antic» que baix. ivb +# XXX: S'entén com a sessió i és femení? ivb +# 6 caràcters. ivb +#: src/who.c:223 +msgid " old " +msgstr "antic" + +# FIXME: xmalloc() may leak with a longer translated string. ivb +# Identificador d'una tasca d'init. ivb +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "id=" + +# FIXME: xmalloc() may leak with a longer translated string. ivb +# Codi de terminació. ivb +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "term=" + +# FIXME: xmalloc() may leak with a longer translated string. ivb +# Codi d'eixida. ivb +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "eixida=" + +# 12 caràcters. ivb +#: src/who.c:446 +msgid "clock change" +msgstr "canvi rlltge" + +# FIXME: xmalloc() may leak with a longer translated string. ivb +# 10 caràcters. ivb +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "nivll exec" + +# FIXME: xmalloc() may leak with a longer translated string. ivb +# Últim nivell d'execució. ivb +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "últim=" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" +"\n" +"nombre d'usuaris=%u\n" + +# FIXME: This arrangement is language-dependent because of width. ivb +# Nom d'un usuari del sistema. ivb +#: src/who.c:498 +msgid "NAME" +msgstr "NOM" + +#: src/who.c:498 +msgid "LINE" +msgstr "LÃNIA" + +# Hora d'entrada d'un usuari al sistema. ivb +#: src/who.c:498 +msgid "TIME" +msgstr "HORA" + +# Temps ociós d'un usuari. ivb +#: src/who.c:498 +msgid "IDLE" +msgstr "OCIÓS" + +#: src/who.c:498 +msgid "PID" +msgstr "PID" + +# 8 caràcters. ivb +#: src/who.c:499 +msgid "COMMENT" +msgstr "COMENT." + +# Codis de terminació i eixida del procés. ivb +#: src/who.c:499 +msgid "EXIT" +msgstr "EIXIDA" + +#: src/who.c:574 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "Forma d'ús: %s [OPCIÓ]... [FITXER | ARG1 ARG2]\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" +"\n" +" -a, --all Equival a «-b -d --login -p -r -t -T -u».\n" +" -b, --boo Moment de l'última arrencada del sistema.\n" +" -d, --dea Mostra els processos morts.\n" +" -H, --heading Mostra una línia de capçaleres de columna.\n" + +# Ull, usar el mateix terme d'«antic» que dalt. ivb +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" +" -i, --idle Inclou el temps ociós com a «HORES:MINUTS», «.» o\n" +" «antic» (opció desaprovada, useu «-u»).\n" +" --login Mostra els processos d'entrada al sistema (equival a\n" +" «-l» en l'especificació SUS).\n" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" +" -l, --lookup Prova de fer canònics els noms d'estació via DNS («-" +"l»\n" +" està desaprovada, useu «--lookup»).\n" +" -m Només mostra el nom d'estació i usuari associats amb\n" +" l'entrada estàndard.\n" +" -p, --process Mostra els processos actius llançats per «init».\n" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" +" -q, --count Mostra els noms i el nombre total d'usuàries i " +"usuaris\n" +" connectats.\n" +" -r, --runlevel Mostra el nivell d'execució actual.\n" +" -s, --short Només mostra el nom, línia i hora (per defecte).\n" +" -t, --time Mostra el moment de l'últim canvi del rellotge del\n" +" sistema.\n" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" +" -T, -w, --mesg Inclou l'estat de missatges dels usuaris com a «+», " +"«-»\n" +" o «?».\n" +" -u, --users Llista les usuàries i usuaris connectats.\n" +" --message Equival a «-T».\n" +" --writable Equival a «-T».\n" + +# No usa quote() en cap dels 2 args. ivb +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" +"\n" +"Si no s'indica el FITXER, s'usa «%s». És comú usar «%s»\n" +"com a FITXER. Si s'especifiquen ARG1 i ARG2, és com usar «-m»: és habitual\n" +"usar «am i» o «és genial».\n" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "avís: s'eliminarà «-i» en una versió futura; useu «-u» en el seu lloc" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" +"avís: «-l» canviarà de significat en una versió futura per ajustar-se a POSIX" + +#: src/whoami.c:53 +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" +"Mostra el nom de la usuària o usuari associat amb l'identificador d'usuari\n" +"efectiu actualment. Equival a «id -un».\n" +"\n" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "%s: no s'ha pogut trobar el nom d'usuari per l'UID %u\n" + +#: src/yes.c:49 +#, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"Forma d'ús: %s [CADENA]...\n" +" o bé: %s OPCIÓ\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" +"Mostra repetidament una línia amb totes les cadenes indicades, o «y».\n" +"\n" + +#~ msgid "\\%c: invalid escape" +#~ msgstr "\\%c: la seqüència d'escapada no és vàlida" + +#~ msgid "program error" +#~ msgstr "error del programa" + +#~ msgid "stack overflow" +#~ msgstr "desbordament de pila" diff --git a/src/apps/bin/coreutils-5.0/po/coreutils.pot b/src/apps/bin/coreutils-5.0/po/coreutils.pot new file mode 100644 index 0000000000..237184003d --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/coreutils.pot @@ -0,0 +1,6463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "" + +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "" + +#: lib/file-type.c:48 +msgid "block special file" +msgstr "" + +#: lib/file-type.c:51 +msgid "character special file" +msgstr "" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "" + +#: lib/file-type.c:71 +msgid "weird file" +msgstr "" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "" + +#: lib/human.c:519 +msgid "block size" +msgstr "" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "" + +#: lib/makepath.c:338 +#, c-format +msgid "cannot chdir to directory %s" +msgstr "" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "" + +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "" + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "" + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "" + +#: src/basename.c:54 +#, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" + +#: src/basename.c:59 +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" + +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "" + +#: src/cat.c:858 +msgid "closing standard input" +msgstr "" + +#: src/cat.c:861 +msgid "closing standard output" +msgstr "" + +#: src/chgrp.c:93 +msgid "cannot change to null group" +msgstr "" + +#: src/chgrp.c:102 +#, c-format +msgid "invalid group name %s" +msgstr "" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "" + +#: src/chgrp.c:109 +#, c-format +msgid "invalid group number %s" +msgstr "" + +#: src/chgrp.c:126 +#, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, c-format +msgid "failed to get attributes of %s" +msgstr "" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "" + +#: src/chmod.c:179 +#, c-format +msgid "changing permissions of %s" +msgstr "" + +#: src/chmod.c:242 +#, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" + +#: src/chmod.c:248 +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" + +#: src/chmod.c:320 +#, c-format +msgid "invalid character %s in mode string %s" +msgstr "" + +#: src/chmod.c:361 +#, c-format +msgid "invalid mode string: %s" +msgstr "" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "" + +#: src/chown-core.c:143 +#, c-format +msgid "changed ownership of %s to %s\n" +msgstr "" + +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "" + +#: src/chown-core.c:148 +#, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "" + +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "" + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "" + +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "" + +#: src/chown-core.c:327 +#, c-format +msgid "changing group of %s" +msgstr "" + +#: src/chown-core.c:345 +#, c-format +msgid "unable to restore permissions of %s" +msgstr "" + +#: src/chown.c:99 +#, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" + +#: src/chroot.c:45 +#, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" + +#: src/chroot.c:84 +#, c-format +msgid "cannot change root directory to %s" +msgstr "" + +#: src/chroot.c:87 +msgid "cannot chdir to root directory" +msgstr "" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "" + +#: src/cksum.c:282 +#, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" + +#: src/copy.c:162 src/du.c:332 +#, c-format +msgid "cannot access %s" +msgstr "" + +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, c-format +msgid "cannot fstat %s" +msgstr "" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, c-format +msgid "cannot remove %s" +msgstr "" + +#: src/copy.c:277 +#, c-format +msgid "cannot create regular file %s" +msgstr "" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, c-format +msgid "reading %s" +msgstr "" + +#: src/copy.c:362 +#, c-format +msgid "cannot lseek %s" +msgstr "" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, c-format +msgid "writing %s" +msgstr "" + +#: src/copy.c:409 src/copy.c:415 +#, c-format +msgid "closing %s" +msgstr "" + +#: src/copy.c:610 +#, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "" + +#: src/copy.c:616 +#, c-format +msgid "%s: overwrite %s? " +msgstr "" + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, c-format +msgid "cannot stat %s" +msgstr "" + +#: src/copy.c:820 +#, c-format +msgid "omitting directory %s" +msgstr "" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "" + +#: src/copy.c:866 src/ln.c:237 +#, c-format +msgid "%s and %s are the same file" +msgstr "" + +#: src/copy.c:876 +#, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "" + +#: src/copy.c:893 +#, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "" + +#: src/copy.c:904 +#, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "" + +#: src/copy.c:965 +#, c-format +msgid "cannot overwrite directory %s" +msgstr "" + +#: src/copy.c:974 +#, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "" + +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "" + +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "" + +#: src/copy.c:1013 src/ln.c:273 +#, c-format +msgid "cannot backup %s" +msgstr "" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr "" + +#: src/copy.c:1099 +#, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "" + +#: src/copy.c:1106 +#, c-format +msgid "will not create hard link %s to directory %s" +msgstr "" + +#: src/copy.c:1132 +#, c-format +msgid "cannot create hard link %s to %s" +msgstr "" + +#: src/copy.c:1186 +#, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "" + +#: src/copy.c:1229 +#, c-format +msgid "cannot move %s to %s" +msgstr "" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "" + +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "" + +#: src/copy.c:1353 +#, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "" + +#: src/copy.c:1364 +#, c-format +msgid "cannot create link %s" +msgstr "" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, c-format +msgid "cannot create fifo %s" +msgstr "" + +#: src/copy.c:1403 +#, c-format +msgid "cannot create special file %s" +msgstr "" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, c-format +msgid "cannot read symbolic link %s" +msgstr "" + +#: src/copy.c:1440 +#, c-format +msgid "cannot create symbolic link %s" +msgstr "" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, c-format +msgid "failed to preserve ownership for %s" +msgstr "" + +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "" + +#: src/copy.c:1531 +#, c-format +msgid "failed to preserve authorship for %s" +msgstr "" + +#: src/copy.c:1549 +#, c-format +msgid "setting permissions for %s" +msgstr "" + +#: src/copy.c:1571 src/ln.c:326 +#, c-format +msgid "cannot un-backup %s" +msgstr "" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/cp.c:164 src/mv.c:311 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" + +#: src/cp.c:209 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" + +#: src/cp.c:221 +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" + +#: src/cp.c:230 +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" + +#: src/cp.c:239 +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" + +#: src/cp.c:325 +#, c-format +msgid "failed to preserve times for %s" +msgstr "" + +#: src/cp.c:349 +#, c-format +msgid "failed to preserve permissions for %s" +msgstr "" + +#: src/cp.c:434 +#, c-format +msgid "cannot make directory %s" +msgstr "" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +msgid "missing file argument" +msgstr "" + +#: src/cp.c:498 +msgid "missing destination file" +msgstr "" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "" + +#: src/cp.c:546 +#, c-format +msgid "%s: specified target is not a directory" +msgstr "" + +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" + +#: src/cp.c:972 src/ln.c:464 +msgid "symbolic links are not supported on this system" +msgstr "" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "" + +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "" + +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr "" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "" + +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "" + +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "" + +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "" + +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "" + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "" + +#: src/csplit.c:1441 +#, c-format +msgid "%s: invalid number" +msgstr "" + +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "" + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "" + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "" + +#: src/cut.c:720 +msgid "an input delimiter may be specified only when operating on fields" +msgstr "" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" + +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "" + +#: src/date.c:268 src/date.c:460 +#, c-format +msgid "invalid date `%s'" +msgstr "" + +#: src/date.c:364 +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "" + +#: src/date.c:377 +#, c-format +msgid "too many non-option arguments: %s%s" +msgstr "" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" + +#: src/date.c:397 +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "" + +#: src/date.c:433 +msgid "undefined" +msgstr "" + +#: src/date.c:435 +msgid "cannot get time of day" +msgstr "" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "" + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "" + +#: src/dd.c:382 +#, c-format +msgid "closing input file %s" +msgstr "" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "" + +#: src/dd.c:469 +#, c-format +msgid "writing to %s" +msgstr "" + +#: src/dd.c:501 +#, c-format +msgid "invalid conversion: %s" +msgstr "" + +#: src/dd.c:557 +#, c-format +msgid "unrecognized option %s" +msgstr "" + +#: src/dd.c:610 +#, c-format +msgid "unrecognized option %s=%s" +msgstr "" + +#: src/dd.c:616 +#, c-format +msgid "invalid number %s" +msgstr "" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" + +#: src/dd.c:1170 src/dd.c:1188 +#, c-format +msgid "opening %s" +msgstr "" + +#: src/dd.c:1196 +msgid "file offset out of range" +msgstr "" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "" + +#: src/df.c:49 +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "" + +#: src/df.c:153 +msgid "Filesystem Type" +msgstr "" + +#: src/df.c:155 +msgid "Filesystem " +msgstr "" + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr "" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr "" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr "" + +#: src/df.c:167 +#, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr "" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr "" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr "" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" + +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "" + +#: src/df.c:903 +msgid "Warning: " +msgstr "" + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "" + +#: src/dircolors.c:103 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "" + +#: src/dircolors.c:104 +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" + +#: src/dircolors.c:299 +#, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "" + +#: src/dircolors.c:371 +#, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "" + +#: src/dircolors.c:372 +msgid "" +msgstr "" + +#: src/dircolors.c:467 +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "" + +#: src/dirname.c:33 src/pathchk.c:59 +msgid "David MacKenzie and Jim Meyering" +msgstr "" + +#: src/dirname.c:46 +#, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" + +#: src/dirname.c:51 +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" + +#: src/du.c:49 +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" + +#: src/du.c:337 +#, c-format +msgid "cannot change to parent of directory %s" +msgstr "" + +#: src/du.c:345 +#, c-format +msgid "cannot change to directory %s" +msgstr "" + +#: src/du.c:352 +#, c-format +msgid "cannot read directory %s" +msgstr "" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "" + +#: src/du.c:641 +#, c-format +msgid "invalid maximum depth %s" +msgstr "" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "" + +#: src/echo.c:77 +#, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/env.c:93 +msgid "Richard Mlynarik and David MacKenzie" +msgstr "" + +#: src/env.c:119 +#, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "" + +#: src/env.c:122 +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "" + +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "" + +#: src/expr.c:90 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +msgid "syntax error" +msgstr "" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" + +#: src/expr.c:586 src/expr.c:625 +msgid "non-numeric argument" +msgstr "" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "" + +#: src/factor.c:74 +#, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" + +#: src/factor.c:85 +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "" + +#: src/false.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" + +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" + +#: src/fmt.c:345 +#, c-format +msgid "invalid width option: `%s'" +msgstr "" + +#: src/fmt.c:385 +#, c-format +msgid "invalid width: `%s'" +msgstr "" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" + +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "" + +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "" + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" + +#: src/head.c:190 +#, c-format +msgid "cannot reposition file pointer for %s" +msgstr "" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "" + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "" + +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "" + +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "" + +#: src/head.c:341 +#, c-format +msgid "unrecognized option `-%c'" +msgstr "" + +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "" + +#: src/hostid.c:48 +#, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" + +#: src/hostname.c:67 +#, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" + +#: src/hostname.c:104 +#, c-format +msgid "cannot set hostname to `%s'" +msgstr "" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "" + +#: src/id.c:36 +msgid "Arnold Robbins and David MacKenzie" +msgstr "" + +#: src/id.c:87 +#, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "" + +#: src/id.c:88 +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" + +#: src/id.c:162 +msgid "cannot print only user and only group" +msgstr "" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "" + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "" + +#: src/id.c:235 +#, c-format +msgid "cannot find name for group ID %u" +msgstr "" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "" + +#: src/id.c:385 +msgid " groups=" +msgstr "" + +#: src/install.c:269 +msgid "the strip option may not be used when installing a directory" +msgstr "" + +#: src/install.c:292 src/mkdir.c:140 +#, c-format +msgid "invalid mode %s" +msgstr "" + +#: src/install.c:307 src/install.c:371 +#, c-format +msgid "creating directory %s" +msgstr "" + +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "" + +#: src/install.c:435 +#, c-format +msgid "%s is a directory" +msgstr "" + +#: src/install.c:495 +#, c-format +msgid "cannot obtain time stamps for %s" +msgstr "" + +#: src/install.c:507 +#, c-format +msgid "cannot set time stamps for %s" +msgstr "" + +#: src/install.c:528 +msgid "fork system call failed" +msgstr "" + +#: src/install.c:532 +msgid "cannot run strip" +msgstr "" + +#: src/install.c:539 +msgid "strip failed" +msgstr "" + +#: src/install.c:560 +#, c-format +msgid "invalid user %s" +msgstr "" + +#: src/install.c:578 +#, c-format +msgid "invalid group %s" +msgstr "" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "" + +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" + +#: src/join.c:165 +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" + +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" + +#: src/join.c:645 +#, c-format +msgid "invalid field specifier: `%s'" +msgstr "" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, c-format +msgid "invalid field number: `%s'" +msgstr "" + +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "" + +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "" + +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "" + +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "" + +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" + +#: src/kill.c:106 +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" + +#: src/kill.c:163 +#, c-format +msgid "%s: invalid signal" +msgstr "" + +#: src/kill.c:262 +#, c-format +msgid "missing operand after `%s'" +msgstr "" + +#: src/kill.c:274 +#, c-format +msgid "%s: invalid process id" +msgstr "" + +#: src/kill.c:327 +#, c-format +msgid "invalid option -- %c" +msgstr "" + +#: src/kill.c:336 +#, c-format +msgid "%s: multiple signals specified" +msgstr "" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "" + +#: src/link.c:51 +#, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" + +#: src/link.c:98 +#, c-format +msgid "cannot create link %s to %s" +msgstr "" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "" + +#: src/ln.c:174 +#, c-format +msgid "%s: hard link not allowed for directory" +msgstr "" + +#: src/ln.c:246 +#, c-format +msgid "%s: cannot overwrite directory" +msgstr "" + +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "" + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "" + +#: src/ln.c:304 +#, c-format +msgid "create symbolic link %s to %s" +msgstr "" + +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "" + +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "" + +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "" + +#: src/ln.c:339 +#, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" + +#: src/ln.c:521 +#, c-format +msgid "%s: specified target directory is not a directory" +msgstr "" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" + +#: src/logname.c:99 +#, c-format +msgid "%s: no login name\n" +msgstr "" + +#: src/ls.c:673 +msgid "%b %e %Y" +msgstr "" + +#: src/ls.c:681 +msgid "%b %e %H:%M" +msgstr "" + +#: src/ls.c:1307 +#, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "" + +#: src/ls.c:1482 +#, c-format +msgid "invalid line width: %s" +msgstr "" + +#: src/ls.c:1556 +#, c-format +msgid "invalid tab size: %s" +msgstr "" + +#: src/ls.c:1722 +#, c-format +msgid "invalid time style format %s" +msgstr "" + +#: src/ls.c:2054 +#, c-format +msgid "unrecognized prefix: %s" +msgstr "" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "" + +#: src/ls.c:2145 +#, c-format +msgid "cannot determine device and inode of %s" +msgstr "" + +#: src/ls.c:2155 +#, c-format +msgid "not listing already-listed directory: %s" +msgstr "" + +#: src/ls.c:2208 src/remove.c:929 +#, c-format +msgid "reading directory %s" +msgstr "" + +#: src/ls.c:2603 +#, c-format +msgid "cannot compare file names %s and %s" +msgstr "" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" + +#: src/ls.c:3784 +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" + +#: src/ls.c:3799 +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" + +#: src/ls.c:3831 +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "" + +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "" + +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "" + +#: src/md5sum.c:473 +msgid "file" +msgstr "" + +#: src/md5sum.c:473 +msgid "files" +msgstr "" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "" + +#: src/mkdir.c:61 +#, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" + +#: src/mkdir.c:69 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" + +#: src/mkdir.c:113 +#, c-format +msgid "created directory %s" +msgstr "" + +#: src/mkdir.c:190 +#, c-format +msgid "cannot set permissions of directory %s" +msgstr "" + +#: src/mkfifo.c:55 +#, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" + +#: src/mkfifo.c:63 src/mknod.c:64 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "" + +#: src/mkfifo.c:123 src/mknod.c:127 +msgid "invalid mode" +msgstr "" + +#: src/mkfifo.c:142 +#, c-format +msgid "cannot set permissions of fifo %s" +msgstr "" + +#: src/mknod.c:55 +#, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" + +#: src/mknod.c:76 +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" + +#: src/mknod.c:141 +msgid "wrong number of arguments" +msgstr "" + +#: src/mknod.c:153 +msgid "block special files not supported" +msgstr "" + +#: src/mknod.c:162 +msgid "character special files not supported" +msgstr "" + +#: src/mknod.c:171 +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" + +#: src/mknod.c:186 +#, c-format +msgid "invalid major device number %s" +msgstr "" + +#: src/mknod.c:191 +#, c-format +msgid "invalid minor device number %s" +msgstr "" + +#: src/mknod.c:196 +#, c-format +msgid "invalid device %s %s" +msgstr "" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "" + +#: src/mknod.c:231 +#, c-format +msgid "cannot set permissions of %s" +msgstr "" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" + +#: src/mv.c:339 +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" + +#: src/mv.c:467 +#, c-format +msgid "specified target, %s is not a directory" +msgstr "" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "" + +#: src/nice.c:67 +#, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "" + +#: src/nice.c:68 +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" + +#: src/nice.c:109 src/nice.c:122 +#, c-format +msgid "invalid option `%s'" +msgstr "" + +#: src/nice.c:147 +#, c-format +msgid "invalid priority `%s'" +msgstr "" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "" + +#: src/nice.c:178 src/nice.c:187 +msgid "cannot get priority" +msgstr "" + +#: src/nice.c:192 +msgid "cannot set priority" +msgstr "" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" + +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "" + +#: src/nl.c:514 +#, c-format +msgid "invalid line number increment: `%s'" +msgstr "" + +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "" + +#: src/nl.c:541 +#, c-format +msgid "invalid line number field width: `%s'" +msgstr "" + +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" + +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" + +#: src/od.c:917 +#, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "" + +#: src/od.c:1717 +msgid "skip argument" +msgstr "" + +#: src/od.c:1725 +msgid "limit argument" +msgstr "" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "" + +#: src/od.c:1804 +msgid "width specification" +msgstr "" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "" + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" + +#: src/pathchk.c:146 +#, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "" + +#: src/pathchk.c:147 +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" + +#: src/pathchk.c:237 +#, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "" + +#: src/pathchk.c:257 +#, c-format +msgid "`%s' is not a directory" +msgstr "" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "" + +#: src/pathchk.c:355 +#, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "" + +#: src/pathchk.c:381 +#, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "" + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "" + +#: src/pinky.c:298 +msgid "???\n" +msgstr "" + +#: src/pinky.c:318 +msgid "Directory: " +msgstr "" + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "" + +#: src/pinky.c:341 +msgid "Project: " +msgstr "" + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "" + +#: src/pinky.c:386 +msgid "Login" +msgstr "" + +#: src/pinky.c:388 +msgid "Name" +msgstr "" + +#: src/pinky.c:389 +msgid " TTY" +msgstr "" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "" + +#: src/pinky.c:392 +msgid "When" +msgstr "" + +#: src/pinky.c:395 +msgid "Where" +msgstr "" + +#: src/pinky.c:469 +#, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" + +#: src/pinky.c:574 +msgid "no username specified; at least one must be specified when using -l" +msgstr "" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "" + +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "" + +#: src/pr.c:829 +#, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "" + +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "" + +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "" + +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "" + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "" + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr "" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" + +#: src/printenv.c:43 +msgid "David MacKenzie and Richard Mlynarik" +msgstr "" + +#: src/printenv.c:63 +#, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "" + +#: src/printf.c:100 +#, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "" + +#: src/printf.c:292 +#, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "" + +#: src/printf.c:472 +#, c-format +msgid "invalid field width: %s" +msgstr "" + +#: src/printf.c:498 +#, c-format +msgid "invalid precision: %s" +msgstr "" + +#: src/printf.c:519 +#, c-format +msgid "%%%c: invalid directive" +msgstr "" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "" + +#: src/printf.c:594 +#, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" + +#: src/pwd.c:74 +msgid "ignoring non-option arguments" +msgstr "" + +#: src/pwd.c:78 +msgid "cannot get current directory" +msgstr "" + +#: src/readlink.c:69 +#, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" + +#: src/remove.c:394 +#, c-format +msgid "cannot chdir from %s to .." +msgstr "" + +#: src/remove.c:407 src/remove.c:488 +#, c-format +msgid "cannot lstat `.' in %s" +msgstr "" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, c-format +msgid "cannot lstat %s" +msgstr "" + +#: src/remove.c:603 +#, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "" + +#: src/remove.c:604 +#, c-format +msgid "%s: descend into directory %s? " +msgstr "" + +#: src/remove.c:614 +#, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "" + +#: src/remove.c:615 +#, c-format +msgid "%s: remove %s %s? " +msgstr "" + +#: src/remove.c:639 +#, c-format +msgid "removed %s\n" +msgstr "" + +#: src/remove.c:654 src/remove.c:1059 +#, c-format +msgid "removed directory: %s\n" +msgstr "" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, c-format +msgid "cannot remove directory %s" +msgstr "" + +#: src/remove.c:815 +#, c-format +msgid "cannot open directory %s" +msgstr "" + +#: src/remove.c:896 src/remove.c:1002 +#, c-format +msgid "cannot chdir from %s to %s" +msgstr "" + +#: src/remove.c:904 +#, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "" + +#: src/rm.c:60 +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "" + +#: src/rm.c:99 src/touch.c:244 +#, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "" + +#: src/rm.c:100 +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, c-format +msgid "removing directory, %s" +msgstr "" + +#: src/rmdir.c:146 +#, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" + +#: src/rmdir.c:154 +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" + +#: src/seq.c:82 +#, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" + +#: src/seq.c:96 +#, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" + +#: src/seq.c:119 +#, c-format +msgid "invalid floating point argument: %s" +msgstr "" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" + +#: src/seq.c:423 +#, c-format +msgid "invalid format string: `%s'" +msgstr "" + +#: src/seq.c:445 +msgid "format string may not be specified when printing equal width strings" +msgstr "" + +#: src/shred.c:160 +#, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" + +#: src/shred.c:174 +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" + +#: src/shred.c:808 +#, c-format +msgid "%s: cannot rewind" +msgstr "" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "" + +#: src/shred.c:868 +#, c-format +msgid "%s: error writing at offset %s" +msgstr "" + +#: src/shred.c:897 +#, c-format +msgid "%s: file too large" +msgstr "" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "" + +#: src/shred.c:936 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "" + +#: src/shred.c:1195 +#, c-format +msgid "%s: invalid file type" +msgstr "" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "" + +#: src/shred.c:1265 +#, c-format +msgid "%s: error truncating" +msgstr "" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "" + +#: src/shred.c:1412 +#, c-format +msgid "%s: renamed to %s" +msgstr "" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "" + +#: src/shred.c:1551 +#, c-format +msgid "%s: invalid number of passes" +msgstr "" + +#: src/shred.c:1568 +#, c-format +msgid "%s: invalid file size" +msgstr "" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "" + +#: src/sleep.c:52 +#, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" + +#: src/sleep.c:155 +#, c-format +msgid "invalid time interval `%s'" +msgstr "" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" + +#: src/sort.c:444 +msgid "cannot create temporary file" +msgstr "" + +#: src/sort.c:467 +msgid "open failed" +msgstr "" + +#: src/sort.c:487 src/sort.c:2496 +msgid "close failed" +msgstr "" + +#: src/sort.c:495 +msgid "write failed" +msgstr "" + +#: src/sort.c:641 +msgid "sort size" +msgstr "" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "" + +#: src/sort.c:972 +msgid "read failed" +msgstr "" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "" + +#: src/sort.c:1574 +msgid "standard error" +msgstr "" + +#: src/sort.c:2032 +#, c-format +msgid "%s: invalid field specification `%s'" +msgstr "" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "" + +#: src/sort.c:2064 +#, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "" + +#: src/sort.c:2298 +msgid "invalid number after `-'" +msgstr "" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +msgid "invalid number after `.'" +msgstr "" + +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "" + +#: src/sort.c:2338 +msgid "invalid number at field start" +msgstr "" + +#: src/sort.c:2342 src/sort.c:2370 +msgid "field number is zero" +msgstr "" + +#: src/sort.c:2351 +msgid "character offset is zero" +msgstr "" + +#: src/sort.c:2366 +msgid "invalid number after `,'" +msgstr "" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "" + +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" + +#: src/split.c:108 +#, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "" + +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "" + +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "" + +#: src/split.c:394 +#, c-format +msgid "%s: invalid suffix length" +msgstr "" + +#: src/split.c:408 src/split.c:434 +#, c-format +msgid "%s: invalid number of bytes" +msgstr "" + +#: src/split.c:421 +#, c-format +msgid "%s: invalid number of lines" +msgstr "" + +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "" + +#: src/split.c:483 +msgid "invalid number" +msgstr "" + +#: src/stat.c:326 +msgid "*** invalid date/time ***" +msgstr "" + +#: src/stat.c:608 +#, c-format +msgid "cannot read file system information for %s" +msgstr "" + +#: src/stat.c:684 +#, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" + +#: src/stty.c:504 +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" + +#: src/stty.c:570 +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:608 +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" + +#: src/stty.c:787 +msgid "only one device may be specified" +msgstr "" + +#: src/stty.c:882 +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "" + +#: src/stty.c:957 src/stty.c:1064 +#, c-format +msgid "invalid argument `%s'" +msgstr "" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, c-format +msgid "missing argument to `%s'" +msgstr "" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "" + +#: src/stty.c:1944 +#, c-format +msgid "invalid integer argument `%s'" +msgstr "" + +#: src/su.c:289 +msgid "Password:" +msgstr "" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "" + +#: src/su.c:350 +msgid "cannot set groups" +msgstr "" + +#: src/su.c:354 +msgid "cannot set group id" +msgstr "" + +#: src/su.c:356 +msgid "cannot set user id" +msgstr "" + +#: src/su.c:437 +#, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "" + +#: src/su.c:438 +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "" + +#: src/su.c:580 +#, c-format +msgid "warning: cannot change directory to %s" +msgstr "" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "" + +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" + +#: src/sync.c:70 src/tty.c:112 +msgid "ignoring all arguments" +msgstr "" + +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr "" + +#: src/sys2.h:494 +msgid " --version output version information and exit\n" +msgstr "" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tac.c:139 +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "" + +#: src/tail.c:49 +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" + +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "" + +#: src/tail.c:391 +#, c-format +msgid "%s: cannot seek to offset %s" +msgstr "" + +#: src/tail.c:395 +#, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "" + +#: src/tail.c:400 +#, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "" + +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "" + +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" + +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "" + +#: src/tail.c:1534 +#, c-format +msgid "%s: invalid PID" +msgstr "" + +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "" + +#: src/tee.c:33 +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "" + +#: src/tee.c:64 +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "" + +#: src/test.c:424 +msgid "before -lt" +msgstr "" + +#: src/test.c:432 +msgid "after -lt" +msgstr "" + +#: src/test.c:446 +msgid "before -le" +msgstr "" + +#: src/test.c:453 +msgid "after -le" +msgstr "" + +#: src/test.c:469 +msgid "before -gt" +msgstr "" + +#: src/test.c:476 +msgid "after -gt" +msgstr "" + +#: src/test.c:490 +msgid "before -ge" +msgstr "" + +#: src/test.c:497 +msgid "after -ge" +msgstr "" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "" + +#: src/test.c:526 +msgid "before -ne" +msgstr "" + +#: src/test.c:533 +msgid "after -ne" +msgstr "" + +#: src/test.c:549 +msgid "before -eq" +msgstr "" + +#: src/test.c:556 +msgid "after -eq" +msgstr "" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "" + +#: src/test.c:586 +msgid "-ot does not accept -l\n" +msgstr "" + +#: src/test.c:593 +msgid "unknown binary operator" +msgstr "" + +#: src/test.c:781 +msgid "after -t" +msgstr "" + +#: src/test.c:979 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" + +#: src/test.c:1009 +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "" + +#: src/test.c:1125 +msgid "too many arguments\n" +msgstr "" + +#: src/touch.c:39 +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "" + +#: src/touch.c:164 src/touch.c:179 +#, c-format +msgid "creating %s" +msgstr "" + +#: src/touch.c:222 +#, c-format +msgid "cannot touch %s" +msgstr "" + +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" + +#: src/touch.c:311 src/touch.c:331 +#, c-format +msgid "invalid date format %s" +msgstr "" + +#: src/touch.c:355 +msgid "cannot specify times from more than one source" +msgstr "" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "" + +#: src/touch.c:399 +msgid "file arguments missing" +msgstr "" + +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "" + +#: src/tr.c:331 +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" + +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" + +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "" + +#: src/tr.c:1025 +#, c-format +msgid "invalid character class `%s'" +msgstr "" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" + +#: src/true.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "" + +#: src/tty.c:63 +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "" + +#: src/uname.c:111 +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" + +#: src/uname.c:226 +msgid "cannot get system name" +msgstr "" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" + +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "" + +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr "" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" + +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "" + +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "" + +#: src/uniq.c:473 src/uniq.c:498 +msgid "invalid number of fields to skip" +msgstr "" + +#: src/uniq.c:507 +msgid "invalid number of bytes to skip" +msgstr "" + +#: src/uniq.c:516 +msgid "invalid number of bytes to compare" +msgstr "" + +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "" + +#: src/unlink.c:51 +#, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" + +#: src/unlink.c:99 +#, c-format +msgid "cannot unlink %s" +msgstr "" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr "" + +#: src/uptime.c:140 +msgid "am" +msgstr "" + +#: src/uptime.c:140 +msgid "pm" +msgstr "" + +#: src/uptime.c:142 +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#: src/uptime.c:144 +#, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "" +msgstr[1] "" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr "" + +#: src/uptime.c:191 src/users.c:118 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "" + +#: src/uptime.c:192 +#, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" + +#: src/users.c:35 +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "" + +#: src/users.c:119 +#, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "" + +#: src/wc.c:129 +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "" + +#: src/who.c:223 +msgid " old " +msgstr "" + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "" + +#: src/who.c:446 +msgid "clock change" +msgstr "" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" + +#: src/who.c:498 +msgid "NAME" +msgstr "" + +#: src/who.c:498 +msgid "LINE" +msgstr "" + +#: src/who.c:498 +msgid "TIME" +msgstr "" + +#: src/who.c:498 +msgid "IDLE" +msgstr "" + +#: src/who.c:498 +msgid "PID" +msgstr "" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "" + +#: src/who.c:499 +msgid "EXIT" +msgstr "" + +#: src/who.c:574 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" + +#: src/whoami.c:53 +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "" + +#: src/yes.c:49 +#, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" diff --git a/src/apps/bin/coreutils-5.0/po/cs.gmo b/src/apps/bin/coreutils-5.0/po/cs.gmo new file mode 100644 index 0000000000..da68d64471 Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/cs.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/cs.po b/src/apps/bin/coreutils-5.0/po/cs.po new file mode 100644 index 0000000000..53321e3df9 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/cs.po @@ -0,0 +1,10860 @@ +# Czech translations for GNU textutils +# Copyright (C) 1996 Free Software Foundation, Inc. +# Vladimir Michl , 1996. +# +msgid "" +msgstr "" +"Project-Id-Version: textutils 2.0.14\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2001-08-18 15:01+0200\n" +"Last-Translator: Vladimir Michl \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8-bit\n" + +#: lib/argmatch.c:135 +#, fuzzy, c-format +msgid "invalid argument %s for %s" +msgstr "argument %s je pro `%s' neplatný" + +#: lib/argmatch.c:136 +#, fuzzy, c-format +msgid "ambiguous argument %s for %s" +msgstr "argument %s je pro `%s' nejednoznaèný" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "Platné argumenty jsou:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "chyba pøi zápisu" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "Neznámá chyba systému" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "" + +#: lib/file-type.c:42 +#, fuzzy +msgid "regular file" +msgstr "ètení ze souboru se nezdaøilo" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "" + +#: lib/file-type.c:48 +#, fuzzy +msgid "block special file" +msgstr "velikost bloku" + +#: lib/file-type.c:51 +#, fuzzy +msgid "character special file" +msgstr "posun znaku je nula" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "" + +#: lib/file-type.c:71 +#, fuzzy +msgid "weird file" +msgstr "ètení ze souboru se nezdaøilo" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: pøepínaè `%s' není jednoznaèný\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: pøepínaè `--%s' musí být zadán bez argumentu\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: pøepínaè `%c%s' musí být zadán bez argumentu\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: pøepínaè `%s' vy¾aduje argument\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: neznámý pøepínaè `--%s'\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: neznámý pøepínaè `%c%s'\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: neznámý pøepínaè -- %c\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: neznámý pøepínaè -- %c\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: pøepínaè vy¾aduje argument -- %c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: pøepínaè `-W %s' není jednoznaèný\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: pøepínaè `-W %s' musí být zadán bez argumentu\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "velikost bloku" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "adresáø %s nelze vytvoøit" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%s exituje, ale není adresáøem" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "vlastníka a/nebo skupinu %s nelze zmìnit" + +#: lib/makepath.c:338 +#, fuzzy, c-format +msgid "cannot chdir to directory %s" +msgstr "do adresáøe `%s' nelze vejít" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "práva %s nelze zmìnit" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "pamì» vyèerpána" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "`" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "'" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[aAyY]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[nN]" + +#: lib/unicodeio.c:155 +#, fuzzy +msgid "iconv function not usable" +msgstr "znak U+%04X nelze vypsat: funkce iconv není pou¾itelná" + +#: lib/unicodeio.c:157 +#, fuzzy +msgid "iconv function not available" +msgstr "znak U+%04X nelze vypsat: funkce iconv není dostupná" + +#: lib/unicodeio.c:164 +#, fuzzy +msgid "character out of range" +msgstr "U+%04X: znak je mimo rozsah" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "znak U+%04X nelze pøevést do lokální znakové sady" + +#: lib/unicodeio.c:229 +#, fuzzy, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "znak U+%04X nelze pøevést do lokální znakové sady" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "neplatný u¾ivatel" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "neplatná skupina" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "k UID nelze zjistit pøihla¹ovací skupinu" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "nemù¾ete vynechat jak u¾ivatele tak skupinu" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "Autoøi: %s\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +" Toto je volné programové vybavení; podmínky pro kopírování a roz¹iøování\n" +"naleznete ve zdrojových textech. Toto programové vybavení je zcela BEZ " +"ZÁRUKY,\n" +"a to i bez záruky PRODEJNOSTI nebo VHODNOSTI PRO NÌJAKÝ KONKRÉTNÍ ÚÈEL.\n" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "" + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "" + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Více informací získáte pøíkazem `%s --help'.\n" + +#: src/basename.c:54 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"Pou¾ití: %s [SOUBOR]...\n" +" nebo: %s [PØEPÍNAÈ]\n" + +#: src/basename.c:59 +#, fuzzy +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" +" Vypí¹e JMÉNO bez úvodních adresáøù. Pokud je zadáno, také odstraní " +"koncovou\n" +"PØÍPONU.\n" +"\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, fuzzy, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +" Chyby v programu oznamujte na adrese (pouze\n" +"anglicky), pøipomínky k pøekladu zasílejte na adresu (èesky)." + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "pøíli¹ málo argumentù" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "pøíli¹ mnoho argumentù" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ] [SOUBOR]...\n" + +#: src/cat.c:96 +#, fuzzy +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" +" Vypisuje SOUBOR(Y) na standardní výstup. Je-li uvedeno více souborù,\n" +"vypisuje je postupnì. Toho se dá vyu¾ít na spojení více souborù do jednoho.\n" +"\n" +" -A, --show-all stejné jako -vET\n" +" -b, --number-nonblank èísluje neprázdné výstupní øádky\n" +" -e stejné jako -vE\n" +" -E, --show-ends vypí¹e $ na konci ka¾dého øádku\n" +" -n, --number èísluje v¹echny výstupní øádky\n" +" -s, --squeeze-blank prázdné øádky jdoucí po sobì redukuje na jediný\n" +" -t stejné jako -vT\n" +" -T, --show-tabs vypisuje znak TAB jako ^I\n" +" -u (ignorováno)\n" +" -v, --show-nonprinting pou¾ije zápisu ^ a M-, kromì znakù LF a TAB\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" +"Jestli¾e SOUBOR nebude zadán nebo bude -, pak bude èten standardní vstup.\n" + +#: src/cat.c:106 +#, fuzzy +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" +" Vypisuje SOUBOR(Y) na standardní výstup. Je-li uvedeno více souborù,\n" +"vypisuje je postupnì. Toho se dá vyu¾ít na spojení více souborù do jednoho.\n" +"\n" +" -A, --show-all stejné jako -vET\n" +" -b, --number-nonblank èísluje neprázdné výstupní øádky\n" +" -e stejné jako -vE\n" +" -E, --show-ends vypí¹e $ na konci ka¾dého øádku\n" +" -n, --number èísluje v¹echny výstupní øádky\n" +" -s, --squeeze-blank prázdné øádky jdoucí po sobì redukuje na jediný\n" +" -t stejné jako -vT\n" +" -T, --show-tabs vypisuje znak TAB jako ^I\n" +" -u (ignorováno)\n" +" -v, --show-nonprinting pou¾ije zápisu ^ a M-, kromì znakù LF a TAB\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" +"Jestli¾e SOUBOR nebude zadán nebo bude -, pak bude èten standardní vstup.\n" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" +"\n" +" -B, --binary pou¾ije mód binárního zápisu na zaøízení konzoly\n" +"\n" + +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "ioctl na `%s' není mo¾né vykonat" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "standardní výstup" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s: vstupní soubor je zároveò výstupním" + +#: src/cat.c:858 +#, fuzzy +msgid "closing standard input" +msgstr "standardní vstup" + +#: src/cat.c:861 +#, fuzzy +msgid "closing standard output" +msgstr "standardní výstup" + +#: src/chgrp.c:93 +#, fuzzy +msgid "cannot change to null group" +msgstr "vlastníka a/nebo skupinu %s nelze zmìnit" + +#: src/chgrp.c:102 +#, fuzzy, c-format +msgid "invalid group name %s" +msgstr "neplatná skupina" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "èíslo skupiny" + +#: src/chgrp.c:109 +#, fuzzy, c-format +msgid "invalid group number %s" +msgstr "neplatné èíslo" + +#: src/chgrp.c:126 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Pou¾ití: %s [PØEPÍNAÈ]... [SOUBOR]...\n" +" nebo: %s --traditional [SOUBOR] [[+]POSUN [[+]NÁVÌ©TÍ]]\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, fuzzy, c-format +msgid "failed to get attributes of %s" +msgstr "nastavení práv souboru %s" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "práva souboru %s zmìnìna na %04lo (%s)\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "práva souboru %s se nepodaøila zmìnit na %04lo (%s)\n" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "práva souboru %s zùstala %04lo (%s)\n" + +#: src/chmod.c:179 +#, fuzzy, c-format +msgid "changing permissions of %s" +msgstr "práva %s nelze zmìnit" + +#: src/chmod.c:242 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Pou¾ití: %s [PØEPÍNAÈ]... POSLEDNÍ\n" +" nebo: %s [PØEPÍNAÈ]... PRVNÍ POSLEDNÍ\n" +" nebo: %s [PØEPÍNAÈ]... PRVNÍ PØÍRÙSTEK POSLEDNÍ\n" + +#: src/chmod.c:248 +#, fuzzy +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"Zmìna práv zadaných SOUBORù na PRÁVA.\n" +"\n" +" -c, --changes vypisuje pouze soubory, jejich¾ práva byla " +"zmìnìna\n" +" -f, --silent, --quiet potlaèí vìt¹inu chybových zpráv\n" +" -v, --verbose vypisuje informaci o ka¾dém zpracovaném souboru\n" +" --reference=RSOUBOR místo hodnoty PRÁVA pou¾ije práva souboru RSOUBOR\n" +" -R, --recursive pracuje i se soubory a adresáøi v podadresáøích\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" +" Ka¾dá PRÁVA jsou slo¾ena z jednoho nebo více písmen z 'ugoa' " +"následovaného\n" +"jedním ze symbolù '+-=' a jedním nebo více písmeny z 'rwxXstugo'.\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" + +#: src/chmod.c:320 +#, fuzzy, c-format +msgid "invalid character %s in mode string %s" +msgstr "znak `%c' v øetìzci typu `%s' je chybný" + +#: src/chmod.c:361 +#, fuzzy, c-format +msgid "invalid mode string: %s" +msgstr "chybný typ øetìzce `%s'" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "symbolický odkaz %s ani soubor na nìj¾ se odkazuje nebyly zmìnìny\n" + +#: src/chown-core.c:143 +#, fuzzy, c-format +msgid "changed ownership of %s to %s\n" +msgstr "vlastníka souboru %s se nepodaøilo zmìnit na " + +#: src/chown-core.c:144 +#, fuzzy, c-format +msgid "changed group of %s to %s\n" +msgstr "skupinu souboru %s se nepodaøilo zmìnit na %s\n" + +#: src/chown-core.c:148 +#, fuzzy, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "práva %s nelze zmìnit" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "skupinu souboru %s se nepodaøilo zmìnit na %s\n" + +#: src/chown-core.c:153 +#, fuzzy, c-format +msgid "ownership of %s retained as %s\n" +msgstr "vlastníkem souboru %s zùstal " + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "skupina souboru %s zùstala %s\n" + +#: src/chown-core.c:326 +#, fuzzy, c-format +msgid "changing ownership of %s" +msgstr "zachování vlastnictví souboru %s" + +#: src/chown-core.c:327 +#, fuzzy, c-format +msgid "changing group of %s" +msgstr "vlastníka a/nebo skupinu %s nelze zmìnit" + +#: src/chown-core.c:345 +#, fuzzy, c-format +msgid "unable to restore permissions of %s" +msgstr "práva %s nelze zmìnit" + +#: src/chown.c:99 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Pou¾ití: %s [PØEPÍNAÈ]... POSLEDNÍ\n" +" nebo: %s [PØEPÍNAÈ]... PRVNÍ POSLEDNÍ\n" +" nebo: %s [PØEPÍNAÈ]... PRVNÍ PØÍRÙSTEK POSLEDNÍ\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" + +#: src/chroot.c:45 +#, fuzzy, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"Pou¾ití: %s [SOUBOR]...\n" +" nebo: %s [PØEPÍNAÈ]\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" + +#: src/chroot.c:84 +#, fuzzy, c-format +msgid "cannot change root directory to %s" +msgstr "do adresáøe `%s' nelze vejít" + +#: src/chroot.c:87 +#, fuzzy +msgid "cannot chdir to root directory" +msgstr "do adresáøe `%s' nelze vejít" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "%s: soubor je pøíli¹ dlouhý" + +#: src/cksum.c:282 +#, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"Pou¾ití: %s [SOUBOR]...\n" +" nebo: %s [PØEPÍNAÈ]\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ]... LEVÝ_SOUBOR PRAVÝ_SOUBOR\n" + +#: src/comm.c:77 +#, fuzzy +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" +" Porovnává soubory LEVÝ_SOUBOR a PRAVÝ_SOUBOR, jejich¾ øádky jsou " +"uspoøádány\n" +"podle nìjakého klíèe, øádek po øádku. Výstupem jsou tøi sloupce, øádky " +"obsa¾ené\n" +"pouze v levém souboru, øádky obsa¾ené pouze v pravém souboru, øádky " +"spoleèné\n" +"obìma souborùm.\n" +"\n" +" -1 neukazuje øádky obsa¾ené pouze v levém souboru\n" +" -2 neukazuje øádky obsa¾ené pouze v pravém souboru\n" +" -3 neukazuje øádky spoleèné obìma souborùm\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/copy.c:162 src/du.c:332 +#, fuzzy, c-format +msgid "cannot access %s" +msgstr "%s nelze provést" + +#: src/copy.c:226 +#, fuzzy, c-format +msgid "cannot open %s for reading" +msgstr "`%s' nelze do `%s' pøemístit" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, fuzzy, c-format +msgid "cannot fstat %s" +msgstr "datum nelze nastavit" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, fuzzy, c-format +msgid "cannot remove %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/copy.c:277 +#, fuzzy, c-format +msgid "cannot create regular file %s" +msgstr "nelze vytvoøit doèasný soubor" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, fuzzy, c-format +msgid "reading %s" +msgstr "chyba pøi ètení %s" + +#: src/copy.c:362 +#, fuzzy, c-format +msgid "cannot lseek %s" +msgstr "%s nelze provést" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, fuzzy, c-format +msgid "writing %s" +msgstr "chyba pøi zápisu %s" + +#: src/copy.c:409 src/copy.c:415 +#, fuzzy, c-format +msgid "closing %s" +msgstr "uzavírání %s (fd=%d)" + +#: src/copy.c:610 +#, fuzzy, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: pøepsat `%s', pøehlédnout práva %04lo? " + +#: src/copy.c:616 +#, fuzzy, c-format +msgid "%s: overwrite %s? " +msgstr "%s: pøepsat `%s'? " + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, fuzzy, c-format +msgid "cannot stat %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/copy.c:820 +#, fuzzy, c-format +msgid "omitting directory %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "" + +#: src/copy.c:866 src/ln.c:237 +#, fuzzy, c-format +msgid "%s and %s are the same file" +msgstr "`%s' a `%s' jsou jeden a tentý¾ soubor" + +#: src/copy.c:876 +#, fuzzy, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "do adresáøe `%s' nelze vejít" + +#: src/copy.c:893 +#, fuzzy, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "%s: adresáø nelze pøepsat souborem, který není adresáøem" + +#: src/copy.c:904 +#, fuzzy, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "adresáø %s nelze vytvoøit" + +#: src/copy.c:965 +#, fuzzy, c-format +msgid "cannot overwrite directory %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/copy.c:974 +#, fuzzy, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "do adresáøe `%s' nelze vejít" + +#: src/copy.c:997 +#, fuzzy, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "vytvoøení zálohy souboru `%s' mù¾e znièit zdroj; `%s' nepøejmenován" + +#: src/copy.c:998 +#, fuzzy, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "vytvoøení zálohy souboru `%s' mù¾e znièit zdroj; `%s' nekopírován" + +#: src/copy.c:1013 src/ln.c:273 +#, fuzzy, c-format +msgid "cannot backup %s" +msgstr "pøíkaz %s nelze provést" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr " (záloha: %s)" + +#: src/copy.c:1099 +#, fuzzy, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/copy.c:1106 +#, fuzzy, c-format +msgid "will not create hard link %s to directory %s" +msgstr "do adresáøe `%s' nelze vejít" + +#: src/copy.c:1132 +#, fuzzy, c-format +msgid "cannot create hard link %s to %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/copy.c:1186 +#, fuzzy, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "do adresáøe `%s' nelze vejít" + +#: src/copy.c:1229 +#, fuzzy, c-format +msgid "cannot move %s to %s" +msgstr "ioctl na `%s' není mo¾né vykonat" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "" + +#: src/copy.c:1269 +#, fuzzy, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "%s: zacyklené symbolické odkazy nelze kopírovat" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "%s: relativní symbolický odkaz lze vytvoøit pouze v aktuálním adresáøi" + +#: src/copy.c:1353 +#, fuzzy, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/copy.c:1364 +#, fuzzy, c-format +msgid "cannot create link %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, fuzzy, c-format +msgid "cannot create fifo %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/copy.c:1403 +#, fuzzy, c-format +msgid "cannot create special file %s" +msgstr "posun znaku je nula" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, fuzzy, c-format +msgid "cannot read symbolic link %s" +msgstr "ioctl na `%s' není mo¾né vykonat" + +#: src/copy.c:1440 +#, fuzzy, c-format +msgid "cannot create symbolic link %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, fuzzy, c-format +msgid "failed to preserve ownership for %s" +msgstr "zachování vlastnictví souboru %s" + +#: src/copy.c:1471 +#, fuzzy, c-format +msgid "%s has unknown file type" +msgstr "%s: neznámý typ souboru" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "zachování èasù souboru %s" + +#: src/copy.c:1531 +#, fuzzy, c-format +msgid "failed to preserve authorship for %s" +msgstr "zachování vlastnictví souboru %s" + +#: src/copy.c:1549 +#, fuzzy, c-format +msgid "setting permissions for %s" +msgstr "práva %s nelze zmìnit" + +#: src/copy.c:1571 src/ln.c:326 +#, fuzzy, c-format +msgid "cannot un-backup %s" +msgstr "pøíkaz %s nelze provést" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s -> %s (obnoven ze zálohy)\n" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/cp.c:164 src/mv.c:311 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"Pou¾ití: %s [PØEPÍNAÈ]... POSLEDNÍ\n" +" nebo: %s [PØEPÍNAÈ]... PRVNÍ POSLEDNÍ\n" +" nebo: %s [PØEPÍNAÈ]... PRVNÍ PØÍRÙSTEK POSLEDNÍ\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" + +#: src/cp.c:209 +#, fuzzy +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +"Kopíruje ZDROJ do CÍLe nebo více ZDROJù do ADRESÁØe.\n" +"\n" +" -a, --archive stejné jako pou¾ití pøepínaèù '-dpR'\n" +" --backup=[TYP] vytvoøí zálo¾ní kopie pøepisovaných souborù\n" +" -b jako --backup, ale bez argumentu\n" +" -d, --no-dereference zachovává symbolické odkazy\n" +" -f, --force bude mazat existující cíle bez optání\n" +" -i, --interactive ptá se pøed pøepsáním\n" +" -l, --link tvoøí odkazy místo kopírování\n" +" -p, --preserve zachovává práva a èasy souborù, je-li to " +"mo¾né\n" +" -P, --parents pøidává zdrojovou cestu do cílového ADRESÁØe\n" +" -r kopíruje rekurzivnì, co není adresáøem " +"kopíruje\n" +" jako by to byl soubor.\n" +" POZOR: Pokud budete kopírovat speciální " +"soubory\n" +" jako tøeba roury nebo /dev/zero, pak radìji\n" +" pou¾ijte -R\n" +" --sparse=KDY øídí tvorbu souborù s dírami\n" +" -R, --recursive kopíruje adresáøe rekurzivnì\n" +" --strip-trailing-slashes odstraòuje lomítka na konci názvù v¹ech " +"ZDROJù\n" +" -s, --symbolic-link tvoøí symbolické odkazy místo kopírování\n" +" -S, --suffix=PØÍPONA zmìní obvyklou pøíponu zálo¾ních souborù\n" +" na PØÍPONU\n" +" -u, --update kopíruje pouze, kdy¾ zdrojový soubor je\n" +" novìj¹í ne¾ cílový, nebo kdy¾ cílový soubor\n" +" neexistuje\n" +" -v, --verbose vypisuje bli¾¹í informace o vykonávání " +"pøíkazu\n" +" -x, --one-file-system zùstane v jednom souborovém systému\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" +" Implicitnì, jsou ZDROJové soubory s dírami detekovány a odpovídající " +"CÍLový\n" +"soubor je vytvoøen stejnì `dìravý'. Toto je voleno pøepínaèem --" +"sparse=auto.\n" +"Pøepínaèem --sparse=always øíkáme, ¾e v CÍLových souborech se mají tvoøit\n" +"díry, jakmile ZDROJový soubor obsahuje dostateènì dlouhé sekvence nulových\n" +"bajtù. Pøepínaèem --sparse=never tvorbì souborù s dírami zabráníme.\n" +"\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" + +#: src/cp.c:221 +#, fuzzy +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +"Pøejmenování ZDROJe na CÍL nebo pøemístìní ZDROJe(ù) do ADRESÁØe.\n" +"\n" +" --backup=[TYP] vytvoøí zálo¾ní kopii ka¾dého existujícího\n" +" cílového souboru\n" +" -b jako --backup, ale bez argumentu\n" +" -f, --force ma¾e existující cíle, neptá se\n" +" -i, --interactive pøed pøepsáním souboru se zeptá\n" +" --strip-trailing-slashes odstraní v¹echna lomítka z konce ZDROJe(ù)\n" +" -S, --suffix=PØÍPONA pøípona zálo¾ních souborù\n" +" --target-directory=ADRESÁØ pøemístí v¹echny ZDROJe do ADRESÁØe\n" +" -u, --update pøemístí pouze star¹í a úplnì nové soubory\n" +" -v, --verbose vypisuje co se dìje\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" + +#: src/cp.c:230 +#, fuzzy +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +"Kopíruje ZDROJ do CÍLe nebo více ZDROJù do ADRESÁØe.\n" +"\n" +" -a, --archive stejné jako pou¾ití pøepínaèù '-dpR'\n" +" --backup=[TYP] vytvoøí zálo¾ní kopie pøepisovaných souborù\n" +" -b jako --backup, ale bez argumentu\n" +" -d, --no-dereference zachovává symbolické odkazy\n" +" -f, --force bude mazat existující cíle bez optání\n" +" -i, --interactive ptá se pøed pøepsáním\n" +" -l, --link tvoøí odkazy místo kopírování\n" +" -p, --preserve zachovává práva a èasy souborù, je-li to " +"mo¾né\n" +" -P, --parents pøidává zdrojovou cestu do cílového ADRESÁØe\n" +" -r kopíruje rekurzivnì, co není adresáøem " +"kopíruje\n" +" jako by to byl soubor.\n" +" POZOR: Pokud budete kopírovat speciální " +"soubory\n" +" jako tøeba roury nebo /dev/zero, pak radìji\n" +" pou¾ijte -R\n" +" --sparse=KDY øídí tvorbu souborù s dírami\n" +" -R, --recursive kopíruje adresáøe rekurzivnì\n" +" --strip-trailing-slashes odstraòuje lomítka na konci názvù v¹ech " +"ZDROJù\n" +" -s, --symbolic-link tvoøí symbolické odkazy místo kopírování\n" +" -S, --suffix=PØÍPONA zmìní obvyklou pøíponu zálo¾ních souborù\n" +" na PØÍPONU\n" +" -u, --update kopíruje pouze, kdy¾ zdrojový soubor je\n" +" novìj¹í ne¾ cílový, nebo kdy¾ cílový soubor\n" +" neexistuje\n" +" -v, --verbose vypisuje bli¾¹í informace o vykonávání " +"pøíkazu\n" +" -x, --one-file-system zùstane v jednom souborovém systému\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" +" Implicitnì, jsou ZDROJové soubory s dírami detekovány a odpovídající " +"CÍLový\n" +"soubor je vytvoøen stejnì `dìravý'. Toto je voleno pøepínaèem --" +"sparse=auto.\n" +"Pøepínaèem --sparse=always øíkáme, ¾e v CÍLových souborech se mají tvoøit\n" +"díry, jakmile ZDROJový soubor obsahuje dostateènì dlouhé sekvence nulových\n" +"bajtù. Pøepínaèem --sparse=never tvorbì souborù s dírami zabráníme.\n" +"\n" + +#: src/cp.c:239 +#, fuzzy +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +" Pokud není pøípona zálo¾ních souborù nastavena pøepínaèem --suffix nebo \n" +"promìnnou SIMPLE_BACKUP_SUFFIX, je pou¾ívána pøípona `~'. Zpùsob vytváøení\n" +"zálo¾ních souborù lze ovlivnit nastavením promìnné VERSION_CONTROL, hodnoty\n" +"mohou být:\n" +"\n" +" none, off zálo¾ní kopie nevytváøet (i kdy¾ je zadán pøepínaè --" +"backup)\n" +" numbered, t èíslované zálo¾ní kopie\n" +" existing, nil èíslované, jestli¾e ji¾ èíslovaná zálo¾ní kopie existuje,\n" +" jinak jednoduché\n" +" simple, never jednoduché zálo¾ní kopie\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +#, fuzzy +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +" Pokud není pøípona zálo¾ních souborù nastavena pøepínaèem --suffix nebo \n" +"promìnnou SIMPLE_BACKUP_SUFFIX, je pou¾ívána pøípona `~'. Zpùsob vytváøení\n" +"zálo¾ních souborù lze ovlivnit nastavením promìnné VERSION_CONTROL, hodnoty\n" +"mohou být:\n" +"\n" +" none, off zálo¾ní kopie nevytváøet (i kdy¾ je zadán pøepínaè --" +"backup)\n" +" numbered, t èíslované zálo¾ní kopie\n" +" existing, nil èíslované, jestli¾e ji¾ èíslovaná zálo¾ní kopie existuje,\n" +" jinak jednoduché\n" +" simple, never jednoduché zálo¾ní kopie\n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +" Speciálním pøípadem je, má-li má cp tvoøit zálo¾ní kopii ZDROJe, kdy¾ " +"jsou\n" +"zadány pøepínaèe --force a --backup, a ZDROJ a CÍL jsou stejného jména " +"jednoho\n" +"obyèejného souboru.\n" + +#: src/cp.c:325 +#, fuzzy, c-format +msgid "failed to preserve times for %s" +msgstr "zachování èasù souboru %s" + +#: src/cp.c:349 +#, fuzzy, c-format +msgid "failed to preserve permissions for %s" +msgstr "práva %s nelze zmìnit" + +#: src/cp.c:434 +#, fuzzy, c-format +msgid "cannot make directory %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +#, fuzzy +msgid "missing file argument" +msgstr "pøeskakuji argument" + +#: src/cp.c:498 +#, fuzzy +msgid "missing destination file" +msgstr "chybí seznam polo¾ek" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "" + +#: src/cp.c:546 +#, fuzzy, c-format +msgid "%s: specified target is not a directory" +msgstr "%s exituje, ale není adresáøem" + +#: src/cp.c:554 +#, fuzzy, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "pøi kopírování více souborù, musí být poslední argument (%s) adresáø" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "jestli¾e mají být zachovány cesty, cílem musí být adresáø" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"varování: --version-control (-V) je zastaralý; podpora pøepínaèe bude\n" +"v nìkteré z dal¹ích verzí odstranìna. Radìji pou¾ijte --backup=%s." + +#: src/cp.c:972 src/ln.c:464 +#, fuzzy +msgid "symbolic links are not supported on this system" +msgstr "varování: --pid=PID není na tomto systému podporován" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "symbolický a pevný odkaz nelze vytvoøit zároveò" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "typ zálohy" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "chyba pøi ètení" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "vstup se ztratil" + +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s: èíslo øádku je mimo rozsah" + +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: `%s': èíslo øádku je mimo rozsah" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr " v %d. opakování\n" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s: `%s': nenalezeno" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "chyba pøi vyhledávání pomocí regulárního výrazu" + +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "chyba pøi zápisu do `%s'" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "%s: po oddìlovaèi je oèekáváno `+' nebo `-'" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s: po `%c' je oèekáváno celé èíslo" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "%s: '}' je po¾adována v poèítadle opakování" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "%s}: mezi `{' a `}' musí být celé èíslo" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s: postrádán koncový oddìlovaè `%c'" + +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: chybný regulární výraz: %s" + +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "%s: chybný vzorek" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s: èíslo øádku musí být vìt¹í ne¾ nula" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "èíslo øádku `%s' je men¹í ne¾ èíslo pøedcházejícího øádku, %s" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "varování: èíslo øádku `%s' je stejné s èíslem pøedcházejícího øádku" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "v parametru pøepínaèe chybí urèení typu konverze" + +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "chybnì zadaný typ konverze v parametru pøepínaèe: %c" + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "chybnì zadaný typ konverze v parametru pøepínaèe: \\%.3o" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "v parametru pøepínaèe chybí zadání typu konverze pomocí %%" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "pøíli¹ mnoho typù konverze %% v parametru pøepínaèe" + +#: src/csplit.c:1441 +#, c-format +msgid "%s: invalid number" +msgstr "%s: chybné èíslo" + +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ]... SOUBOR VZOREK...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ]... [SOUBOR]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" + +#: src/cut.c:185 +#, fuzzy +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" +" Zalamuje vstupní øádky ka¾dého SOUBORu (implicitnì standardního vstupu),\n" +"zapisujíce výstup na standardní výstup.\n" +"\n" +" -b, --bytes pro zalamování poèítá bajty na øádku místo sloupcù\n" +" -s, --spaces zalamuje øádky v mezerách\n" +" -w, --width=©ÍØKA pou¾ívá ©ÍØKA sloupcù místo 80\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" +"Ve sloupcích nejsou zahrnuty kontrolní znaky narozdíl od bajtù.\n" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "chybný seznam bajtù nebo polo¾ek" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "pouze jeden typ seznamu mù¾e být zadán" + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "chybí seznam pozicí" + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "chybí seznam polo¾ek" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "oddìlovaè musí být jediný znak" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "musíte zadat seznam bajtù, znakù nebo polo¾ek" + +#: src/cut.c:720 +#, fuzzy +msgid "an input delimiter may be specified only when operating on fields" +msgstr "oddìlovaè mù¾e být zadán pouze pøi práci s polo¾kami" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" +"potlaèení øádkù neobsahujících oddìlovaè, má význam pouze\n" +"pøi pou¾ití pøepínaèe -f" + +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" +"Pou¾ití: %s [PØEPÍNAÈ]... [+FORMÁT]\n" +" nebo: %s [-u|--utc|--universal] [MMDDhhmm[[CC]RR][.ss]]\n" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "standardní vstup" + +#: src/date.c:268 src/date.c:460 +#, fuzzy, c-format +msgid "invalid date `%s'" +msgstr "chybné èíslo polo¾ky: `%s'" + +#: src/date.c:364 +#, fuzzy +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "pøepínaèe --string a --check se vzájemnì vyluèují" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "pøepínaèe pro výpis a nastavení èasu nemohou být u¾ity souèasnì" + +#: src/date.c:377 +#, fuzzy, c-format +msgid "too many non-option arguments: %s%s" +msgstr "pøíli¹ mnoho argumentù, které nejsou pøepínaèi" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" +"argument `%s' potøebuje úvodní `+';\n" +"kdy¾ je pou¾it pøepínaè pro zadání data, kterýkoli argument (který není\n" +"pøepínaèem) musí být formátovací øetìzec uvozený '+'" + +#: src/date.c:397 +#, fuzzy +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "pøi pou¾ití pøepínaèe --string nemohou být zadány soubory" + +#: src/date.c:433 +msgid "undefined" +msgstr "nedefinováno" + +#: src/date.c:435 +#, fuzzy +msgid "cannot get time of day" +msgstr "soubor nelze rozdìlit více zpùsoby" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "datum nelze nastavit" + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ] [SOUBOR]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "%s+%s vstoupiv¹ích záznamù\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "%s+%s vystoupiv¹ích záznamù\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "zkrácený záznam" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "zkrácené záznamy" + +#: src/dd.c:382 +#, fuzzy, c-format +msgid "closing input file %s" +msgstr "vytváøím soubor `%s'\n" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "" + +#: src/dd.c:469 +#, fuzzy, c-format +msgid "writing to %s" +msgstr "chyba pøi zápisu %s" + +#: src/dd.c:501 +#, fuzzy, c-format +msgid "invalid conversion: %s" +msgstr "chybný typ øetìzce `%s'" + +#: src/dd.c:557 +#, fuzzy, c-format +msgid "unrecognized option %s" +msgstr "neznámý pøepínaè `-%c'" + +#: src/dd.c:610 +#, fuzzy, c-format +msgid "unrecognized option %s=%s" +msgstr "neznámý pøepínaè `-%c'" + +#: src/dd.c:616 +#, fuzzy, c-format +msgid "invalid number %s" +msgstr "neplatné èíslo" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"mù¾e být pou¾it v¾dy pouze jeden z {ascii,ebcdic,ibm}, {lcase,ucase},\n" +"{block,unblock}, {unblock,sync}" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" + +#: src/dd.c:1170 src/dd.c:1188 +#, fuzzy, c-format +msgid "opening %s" +msgstr "chyba pøi ètení %s" + +#: src/dd.c:1196 +#, fuzzy +msgid "file offset out of range" +msgstr "%s: èíslo øádku je mimo rozsah" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "" + +#: src/df.c:49 +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "" + +#: src/df.c:153 +msgid "Filesystem Type" +msgstr "" + +#: src/df.c:155 +msgid "Filesystem " +msgstr "" + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr "" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr "" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr "" + +#: src/df.c:167 +#, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr "" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr "" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr "" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" + +#: src/df.c:859 +#, fuzzy, c-format +msgid "file system type %s both selected and excluded" +msgstr "souborový systém typu `%s' je zároveò vybrán a vylouèen" + +#: src/df.c:903 +msgid "Warning: " +msgstr "Varování: " + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "%stabulku pøipojených souborových systémù nelze pøeèíst" + +#: src/dircolors.c:103 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ]... [SOUBOR]...\n" + +#: src/dircolors.c:104 +#, fuzzy +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"Výstupem jsou pøíkazy, které zajistí nastavení promìnné prostøedí LS_COLOR.\n" +"\n" +"Specifikace výstupního formátu:\n" +" -b, --sh, --bourne-shell výstupem je Bourne shellový kód\n" +" pro nastavení LS_COLORS\n" +" -c, --csh, --c-shell výstupem je C shellový kód\n" +" pro nastavení LS_COLORS\n" +" -p, --print-database výstupem je vnitøní databáze\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" + +#: src/dircolors.c:299 +#, fuzzy, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s: neplatný poèet sekund" + +#: src/dircolors.c:371 +#, fuzzy, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s: neznámý pøepínaè `%c%s'\n" + +#: src/dircolors.c:372 +msgid "" +msgstr "" + +#: src/dircolors.c:467 +#, fuzzy +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "pøepínaèe pro výstup èitelný lidmi a èitelný stty se vzájemnì vyluèují" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" +"s pøepínaèem pro výpis vnitøní databáze 'dircolors' nemù¾e\n" +"být pou¾it argument pro soubor" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "promìnná prostøedí SHELL neexistuje a není zadáb typ shellu" + +#: src/dirname.c:33 src/pathchk.c:59 +msgid "David MacKenzie and Jim Meyering" +msgstr "" + +#: src/dirname.c:46 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"Pou¾ití: %s [SOUBOR]...\n" +" nebo: %s [PØEPÍNAÈ]\n" + +#: src/dirname.c:51 +#, fuzzy +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" +" Vypí¹e JMÉNO bez koncové /komponenty; pokud JMÉNO neobsahuje '/', vypí¹e\n" +"'.' (tzn. aktuální adresáø).\n" +"\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/du.c:49 +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" + +#: src/du.c:337 +#, fuzzy, c-format +msgid "cannot change to parent of directory %s" +msgstr "do adresáøe `%s' nelze vejít" + +#: src/du.c:345 +#, fuzzy, c-format +msgid "cannot change to directory %s" +msgstr "do adresáøe `%s' nelze vejít" + +#: src/du.c:352 +#, fuzzy, c-format +msgid "cannot read directory %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "celkem" + +#: src/du.c:641 +#, fuzzy, c-format +msgid "invalid maximum depth %s" +msgstr "chybné èíslo polo¾ky: `%s'" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "" +"není mo¾né oboje, poèítat celkové souèty pro ka¾dý argument a ukázat\n" +"v¹echny polo¾ky" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "varování: sumarizace je stejná jako pou¾ití --max-depth=0" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "varování: sumarizace je v rozporu s --max-depth=%d" + +#: src/echo.c:77 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ]... [SOUBOR]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/env.c:93 +msgid "Richard Mlynarik and David MacKenzie" +msgstr "" + +#: src/env.c:119 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ]... [SOUBOR]...\n" + +#: src/env.c:122 +#, fuzzy +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" +"Nastaví ka¾dou promìnnou prostøedí JMÉNO na HODNOTU a provede PØÍKAZ.\n" +"\n" +" -i, --ignore-environment zaène s prázdnou tabulkou promìnných prostøedí\n" +" -u, --unset=JMÉNO odstraní promìnnou JMÉNO\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" +" Pouze - znamená -i. Pokud není PØÍKAZ zadán, vypí¹e výslednou tabulku\n" +"promìnných prostøedí.\n" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "velikost tabelátoru obsahuje neplatný znak" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "velikost tabelátoru nemù¾e být 0" + +# sizes or positions? - rzm +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "posloupnost pozic tabelátorù musí být rostoucí" + +#: src/expand.c:386 +#, fuzzy +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "varování: chybná ¹íøka %lu; u¾ívám %d místo ní" + +#: src/expr.c:90 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"Pou¾ití: %s [SOUBOR]...\n" +" nebo: %s [PØEPÍNAÈ]\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" +"\n" +" Pøi vytváøení výrazù musí být nìkteré symboly chránìny pøed shellem " +"(napø.\n" +"uzavøením do uvozovek nebo apostrofù). Porovnání mezi ARGx je aritmetické,\n" +"pokud se jedná o èísla, jinak je lexikografické. Pokud bylo v REGVÝR " +"pou¾ito\n" +"\\( a \\), vyhodnocení vrátí øetìzec z ØETÌZCE, který odpovídá výrazu " +"uzavøenému\n" +"v \\( a \\) nebo vrátí prázdný øetìzec; pokud nebylo v REGVÝR pou¾ito \\( a " +"\\),\n" +"vrací poèet odpovídajích znakù nebo 0.\n" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +#, fuzzy +msgid "syntax error" +msgstr "standardní chybový výstup" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" +"upozornìní: nepøenositelné : '%s': pou¾ití '^' jako prvního znaku\n" +"základního regulárního výrazu není pøenositelné; bude ignorováno" + +#: src/expr.c:586 src/expr.c:625 +#, fuzzy +msgid "non-numeric argument" +msgstr "argument oøezán" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "" + +#: src/factor.c:74 +#, fuzzy, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"Pou¾ití: %s [SOUBOR]...\n" +" nebo: %s [PØEPÍNAÈ]\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" + +#: src/factor.c:85 +#, fuzzy +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" +" Vypí¹e rozklad ka¾dého celého ÈÍSLA na prvoèísla. Pokud ÈÍSLA nebudou " +"zadána,\n" +"bude je èíst ze standardního vstupu.\n" +"\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "'%s' není celé kladné èíslo z pøípustného rozsahu (integer)" + +#: src/false.c:34 +#, fuzzy, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Pou¾ití: %s [argumenty jsou ignorovány]\n" +" nebo: %s PØEPÍNAÈ\n" +"Ukonèí se s návratovým kódem znamenajícím chybu.\n" +"\n" +"Následující jména pøepínaèù nemohou být zkracována.\n" +"\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "Pou¾ití: %s [-ÈÍSLICE] [PØEPÍNAÈ]... [SOUBOR]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" + +#: src/fmt.c:280 +#, fuzzy +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" +" Pøeformátuje ka¾dý odstavec v SOUBORu(ech) a výsledek zapí¹e na " +"standardní\n" +"výstup. Jestli¾e SOUBOR nebude zadán nebo bude -, bude èten standardní " +"vstup.\n" +"\n" +"Argumenty po¾adované dlouhými pøepínaèi, jsou také po¾adovány krátkými.\n" +" -c, --crown-margin zachová odsazení prvních dvou øádkù\n" +" -p, --prefix=ØETÌZEC pracuje pouze s øádky majícími ØETÌZEC jako " +"prefix\n" +" -s, --split-only pouze rozdìlí dlouhé øádky\n" +" -t, --tagged-paragraph odsadí první øádek rozdílnì od druhého\n" +" -u, --uniform-spacing jedna mezera mezi slovy, dvì za vìtou\n" +" -w, --width=©ÍØKA maximální ¹íøka øádku (implicitnì 75)\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" +"U pøepínaèe -w©ÍØKA je mo¾no vynechat znak `w'.\n" + +#: src/fmt.c:286 +#, fuzzy +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" +" Pøeformátuje ka¾dý odstavec v SOUBORu(ech) a výsledek zapí¹e na " +"standardní\n" +"výstup. Jestli¾e SOUBOR nebude zadán nebo bude -, bude èten standardní " +"vstup.\n" +"\n" +"Argumenty po¾adované dlouhými pøepínaèi, jsou také po¾adovány krátkými.\n" +" -c, --crown-margin zachová odsazení prvních dvou øádkù\n" +" -p, --prefix=ØETÌZEC pracuje pouze s øádky majícími ØETÌZEC jako " +"prefix\n" +" -s, --split-only pouze rozdìlí dlouhé øádky\n" +" -t, --tagged-paragraph odsadí první øádek rozdílnì od druhého\n" +" -u, --uniform-spacing jedna mezera mezi slovy, dvì za vìtou\n" +" -w, --width=©ÍØKA maximální ¹íøka øádku (implicitnì 75)\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" +"U pøepínaèe -w©ÍØKA je mo¾no vynechat znak `w'.\n" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" + +#: src/fmt.c:345 +#, fuzzy, c-format +msgid "invalid width option: `%s'" +msgstr "chybný typ øetìzce `%s'" + +#: src/fmt.c:385 +#, fuzzy, c-format +msgid "invalid width: `%s'" +msgstr "chybné èíslo polo¾ky: `%s'" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" + +#: src/fold.c:267 +#, fuzzy, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "varování: chybná ¹íøka %lu; u¾ívám %d místo ní" + +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "neplatný poèet sloupcù: `%s'" + +#: src/head.c:92 +#, fuzzy +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +" Vypí¹e prvních 10 øádkù ka¾dého souboru na standardní výstup. S více jak\n" +"jedním souborem, bude pøed vypsáním ka¾dého uvedena hlavièka obsahující " +"jméno\n" +"souboru. Jestli¾e SOUBOR nebude zadán nebo bude -, bude èten standardní " +"vstup.\n" +"\n" +" -c, --bytes=VELIKOST vypí¹e prvních VELIKOST bajtù\n" +" -n, --lines=POÈET vypí¹e prvních POÈET øádkù místo prvních 10\n" +" -q, --quiet, --silent nikdy nevypisuje hlavièky s názvy souborù\n" +" -v, --verbose vypisuje hlavièky s názvy souborù v¾dy\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" +" VELIKOST mù¾e mít násobící pøíponu: b pro 512, k pro 1K, m pro 1M. " +"Jestli¾e\n" +"první pøepínaè bude -HODNOTA a bude-li pou¾ita násobící pøípona, pak bude " +"brán\n" +"jako -c HODNOTA. Jinak bude pøepínaè brán jako -n HODNOTA.\n" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" + +#: src/head.c:190 +#, fuzzy, c-format +msgid "cannot reposition file pointer for %s" +msgstr "adresáø %s nelze vytvoøit" + +# src/tail.c:968 +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "%s: %s je pøíli¹ velký, proto není reprezentovalený" + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "poèet øádkù" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "poèet bajtù" + +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "chybný poèet øádkù" + +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "chybný poèet bajtù" + +#: src/head.c:341 +#, c-format +msgid "unrecognized option `-%c'" +msgstr "neznámý pøepínaè `-%c'" + +#: src/head.c:348 +#, fuzzy, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "varování: chybná ¹íøka %lu; u¾ívám %d místo ní" + +#: src/hostid.c:48 +#, fuzzy, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" +"Pou¾ití: %s\n" +" nebo: %s PØEPÍNAÈ\n" +"Vypí¹e èíselný identifikátor (v ¹estnáctkovém tvaru) pro tento stroj.\n" +"\n" +" --help vypí¹e tuto nápovìdu a skonèi\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" + +#: src/hostname.c:67 +#, fuzzy, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" +"Pou¾ití: %s [JMÉNO]\n" +" nebo: %s PØEPÍNAÈ\n" +"Vypí¹e nebo nastavuje jméno stroje.\n" +"\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/hostname.c:104 +#, fuzzy, c-format +msgid "cannot set hostname to `%s'" +msgstr "ioctl na `%s' není mo¾né vykonat" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "jméno poèítaèe nelze nastavit; systém tuto funkci neposkytuje" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "jméno poèítaèe nelze zjistit" + +#: src/id.c:36 +msgid "Arnold Robbins and David MacKenzie" +msgstr "" + +#: src/id.c:87 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ]... MNO®INA1 [MNO®INA2]\n" + +#: src/id.c:88 +#, fuzzy +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" +"Vypí¹e informace o u¾ivateli JMÉNO_U®IVATELE nebo o aktuálním u¾ivateli.\n" +"\n" +" -a ignoruje se, z dùvodu kompatibility\n" +" -g, --group vypí¹e pouze identifikaèní èíslo skupiny (GID)\n" +" -G, --groups vypí¹e pouze doplòkové skupiny\n" +" -n, --name vypí¹e jména, ne èísla (pro -ugG)\n" +" -r, --real vypí¹e skuteèné ID místo efektivního (pro -ugG)\n" +" -u, --user vypí¹e pouze identifikaèní èíslo u¾ivatele (UID)\n" +" --help vypí¹e tuto nápovìdu a skonèi\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" +"Bez jakéhokoli PØEPÍNAÈE, jsou vypsány nìkteré u¾iteèné informace.\n" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" + +#: src/id.c:162 +#, fuzzy +msgid "cannot print only user and only group" +msgstr "nemù¾ete vynechat jak u¾ivatele tak skupinu" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "pouze jména nebo skuteèné ID nelze v implicitním formátu vypsat" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "%s: U¾ivatel neexistuje" + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "jméno u¾ivatele pro UID %u nelze najít" + +#: src/id.c:235 +#, fuzzy, c-format +msgid "cannot find name for group ID %u" +msgstr "vlastníka a/nebo skupinu %s nelze zmìnit" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "seznam doplòkových skupin nelze získat" + +#: src/id.c:385 +msgid " groups=" +msgstr " skupiny=" + +#: src/install.c:269 +#, fuzzy +msgid "the strip option may not be used when installing a directory" +msgstr "" +"formátovací øetìzec nesmí být zadán pøi zarovnávání øetìzcù (--equal-width)" + +#: src/install.c:292 src/mkdir.c:140 +#, fuzzy, c-format +msgid "invalid mode %s" +msgstr "chybné èíslo polo¾ky: `%s'" + +#: src/install.c:307 src/install.c:371 +#, fuzzy, c-format +msgid "creating directory %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/install.c:332 +#, fuzzy, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "pøi kopírování více souborù, musí být poslední argument (%s) adresáø" + +#: src/install.c:435 +#, fuzzy, c-format +msgid "%s is a directory" +msgstr "%s exituje, ale není adresáøem" + +#: src/install.c:495 +#, fuzzy, c-format +msgid "cannot obtain time stamps for %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/install.c:507 +#, fuzzy, c-format +msgid "cannot set time stamps for %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/install.c:528 +#, fuzzy +msgid "fork system call failed" +msgstr "velikost bloku" + +#: src/install.c:532 +#, fuzzy +msgid "cannot run strip" +msgstr "pøíkaz %s nelze provést" + +#: src/install.c:539 +#, fuzzy +msgid "strip failed" +msgstr "funkce stat selhala" + +#: src/install.c:560 +#, fuzzy, c-format +msgid "invalid user %s" +msgstr "neplatný u¾ivatel" + +#: src/install.c:578 +#, fuzzy, c-format +msgid "invalid group %s" +msgstr "neplatná skupina" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"Pou¾ití: %s [PØEPÍNAÈ]... ZDROJ CÍL (1-ní formát)\n" +" nebo: %s [PØEPÍNAÈ]... ZDROJ... ADRESÁØ (2-hý formát)\n" +" nebo: %s -d [PØEPÍNAÈ]... ADRESÁØ... (3-tí formát)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +#, fuzzy +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +" Pokud není pøípona zálo¾ních souborù nastavena pøepínaèem --suffix nebo \n" +"promìnnou SIMPLE_BACKUP_SUFFIX, je pou¾ívána pøípona `~'. Zpùsob vytváøení\n" +"zálo¾ních souborù lze ovlivnit nastavením promìnné VERSION_CONTROL, hodnoty\n" +"mohou být:\n" +"\n" +" none, off zálo¾ní kopie nevytváøet (i kdy¾ je zadán pøepínaè --" +"backup)\n" +" numbered, t èíslované zálo¾ní kopie\n" +" existing, nil èíslované, jestli¾e ji¾ èíslovaná zálo¾ní kopie existuje,\n" +" jinak jednoduché\n" +" simple, never jednoduché zálo¾ní kopie\n" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ]... SOUBOR1 SOUBOR2\n" + +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" + +#: src/join.c:165 +#, fuzzy +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" +" Porovnává soubory LEVÝ_SOUBOR a PRAVÝ_SOUBOR, jejich¾ øádky jsou " +"uspoøádány\n" +"podle nìjakého klíèe, øádek po øádku. Výstupem jsou tøi sloupce, øádky " +"obsa¾ené\n" +"pouze v levém souboru, øádky obsa¾ené pouze v pravém souboru, øádky " +"spoleèné\n" +"obìma souborùm.\n" +"\n" +" -1 neukazuje øádky obsa¾ené pouze v levém souboru\n" +" -2 neukazuje øádky obsa¾ené pouze v pravém souboru\n" +" -3 neukazuje øádky spoleèné obìma souborùm\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" + +#: src/join.c:645 +#, c-format +msgid "invalid field specifier: `%s'" +msgstr "chybnì zadaná polo¾ka: `%s'" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, c-format +msgid "invalid field number: `%s'" +msgstr "chybné èíslo polo¾ky: `%s'" + +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "chybné èíslo souboru v popisu polo¾ky: `%s'" + +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "chybné èíslo polo¾ky pro soubor 1: `%s'" + +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "chybné èíslo polo¾ky pro soubor 2: `%s'" + +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "pøíli¹ mnoho argumentù, které nejsou pøepínaèi" + +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "pøíli¹ málo argumentù, které nejsou pøepínaèi" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "oba dva soubory nemohou být standardním vstupem" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" + +#: src/kill.c:106 +#, fuzzy +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" +"Kopíruje standardní vstup do ka¾dého souboru a také na standardní výstup.\n" +"\n" +" -a, --append pøipojí k daným SOUBORÙM, nepøepisuje je\n" +" -i, --ignore-interrupts ignoruje signál 'interrupt'\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" + +#: src/kill.c:163 +#, fuzzy, c-format +msgid "%s: invalid signal" +msgstr "%s: neplatný PID" + +#: src/kill.c:262 +#, fuzzy, c-format +msgid "missing operand after `%s'" +msgstr "%s: po `%c' je oèekáváno celé èíslo" + +#: src/kill.c:274 +#, fuzzy, c-format +msgid "%s: invalid process id" +msgstr "%s: chybný vzorek" + +#: src/kill.c:327 +#, fuzzy, c-format +msgid "invalid option -- %c" +msgstr "%s: neznámý pøepínaè -- %c\n" + +#: src/kill.c:336 +#, fuzzy, c-format +msgid "%s: multiple signals specified" +msgstr "\\%c: chybná escape sekvence" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "" + +#: src/link.c:51 +#, fuzzy, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"Pou¾ití: %s [SOUBOR]...\n" +" nebo: %s [PØEPÍNAÈ]\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" + +#: src/link.c:98 +#, fuzzy, c-format +msgid "cannot create link %s to %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "" +"%s: varování: vytvoøení pevného odkazu na symbolický odkaz\n" +"není pøenositelné" + +#: src/ln.c:174 +#, fuzzy, c-format +msgid "%s: hard link not allowed for directory" +msgstr "`%s' není adresáøem" + +#: src/ln.c:246 +#, fuzzy, c-format +msgid "%s: cannot overwrite directory" +msgstr "adresáø %s nelze vytvoøit" + +#: src/ln.c:251 +#, fuzzy, c-format +msgid "%s: replace %s? " +msgstr "%s: pøepsat `%s'? " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: Soubor existuje" + +#: src/ln.c:304 +#, fuzzy, c-format +msgid "create symbolic link %s to %s" +msgstr "vytvoøen symbolický odkaz `%s' na `%s'" + +#: src/ln.c:305 +#, fuzzy, c-format +msgid "create hard link %s to %s" +msgstr "vytvoøen pevný odkaz `%s' na `%s'" + +#: src/ln.c:319 +#, fuzzy, c-format +msgid "creating symbolic link %s to %s" +msgstr "vytvoøen symbolický odkaz `%s' na `%s'" + +#: src/ln.c:320 +#, fuzzy, c-format +msgid "creating hard link %s to %s" +msgstr "vytvoøen pevný odkaz `%s' na `%s'" + +#: src/ln.c:339 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"Pou¾ití: %s [PØEPÍNAÈ]... POSLEDNÍ\n" +" nebo: %s [PØEPÍNAÈ]... PRVNÍ POSLEDNÍ\n" +" nebo: %s [PØEPÍNAÈ]... PRVNÍ PØÍRÙSTEK POSLEDNÍ\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" + +#: src/ln.c:521 +#, fuzzy, c-format +msgid "%s: specified target directory is not a directory" +msgstr "%s exituje, ale není adresáøem" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "pøi vytváøení více odkazù, musí být poslední argument adresáø" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ] [SOUBOR]...\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" + +#: src/logname.c:99 +#, fuzzy, c-format +msgid "%s: no login name\n" +msgstr "%s: chybné èíslo" + +#: src/ls.c:673 +#, fuzzy +msgid "%b %e %Y" +msgstr "%e. %b %Y %H.%M" + +#: src/ls.c:681 +#, fuzzy +msgid "%b %e %H:%M" +msgstr "%e. %b %Y %H.%M" + +#: src/ls.c:1307 +#, fuzzy, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "¹patná ¹íøka (%s) v promìnné prostøedí COLUMNS, bude ignorována" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "¹patná ¹íøka (%s) v promìnné prostøedí COLUMNS, bude ignorována" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "" +"¹patná velikost tabelárotu (%s) v promìnné prostøedí TABSIZE, bude ignorována" + +#: src/ls.c:1482 +#, fuzzy, c-format +msgid "invalid line width: %s" +msgstr "chybné èíslo polo¾ky: `%s'" + +#: src/ls.c:1556 +#, fuzzy, c-format +msgid "invalid tab size: %s" +msgstr "chybný typ øetìzce `%s'" + +#: src/ls.c:1722 +#, fuzzy, c-format +msgid "invalid time style format %s" +msgstr "argument %s je pro `%s' neplatný" + +#: src/ls.c:2054 +#, fuzzy, c-format +msgid "unrecognized prefix: %s" +msgstr "neznámý pøepínaè `-%c'" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "nesrozumitelná hodnota v promìnné prostøedí LS_COLORS" + +#: src/ls.c:2145 +#, fuzzy, c-format +msgid "cannot determine device and inode of %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/ls.c:2155 +#, fuzzy, c-format +msgid "not listing already-listed directory: %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/ls.c:2208 src/remove.c:929 +#, fuzzy, c-format +msgid "reading directory %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/ls.c:2603 +#, fuzzy, c-format +msgid "cannot compare file names %s and %s" +msgstr "odkaz `%s' nelze vytvoøit" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" + +#: src/ls.c:3784 +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" + +#: src/ls.c:3799 +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" + +#: src/ls.c:3831 +#, fuzzy +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -g (ignorován)\n" +" -G, --no-group nevypisuju informace o skupinách\n" +" -h, --human-readable vypisuje velikosti ve formátu pro èlovìka\n" +" (napø: 1K, 234M, 2G)\n" +" -H, --si jako pøedchozí, ale jednotky jsou násobky 1000\n" +" a ne 1024.\n" +" --indicator-style=SLOVO pøidává indikátory stylem SLOVO k názvùm " +"souborù\n" +" SLOVO mù¾e být: none (implicitnì), classify (-" +"F),\n" +" file-type (-p)\n" +" -i, --inode ke ka¾dému souboru vypí¹e jeho i-uzlové èíslo\n" +" -I, --ignore=VZOR nevypisuje soubory vyhovující VZORu\n" +" -k, --kilobytes jako --block-size=1024\n" +" -l vypí¹e výstup ve dlouhém formátu\n" +" -L, --dereference u symbolického odkazu vypí¹e soubor, na který\n" +" odkaz ukazuje\n" +" -m vypí¹e soubory jako seznam jmen souborù " +"oddìlených\n" +" èárkami\n" +" -n, --numeric-uid-gid místo jména u¾ivatele (UID) a skupiny (GID)\n" +" vypisuje èísla\n" +" -N, --literal vypí¹e jména souborù tak, jak jsou na disku\n" +" ulo¾ena. Nezpracovává øídící znaky\n" +" -o dlouhý formát bez informací o skupinách\n" +" -p, --file-type k názvùm souborù pøidá znak urèující jejich " +"typ\n" +" (jeden z /=@|)\n" +" -q, --hide-control-chars vypí¹e '?' místo negrafických znakù\n" +" --show-control-chars vypí¹e negrafické znaky tak jak jsou " +"(implicitní,\n" +" jestli¾e program není `ls' a výstup není na\n" +" terminál)\n" +" -Q, --quote-name vlo¾í názvy souborù do uvozovek\n" +" --quoting-style=SLOVO pou¾ije kvótovací styl SLOVO pro jména " +"souborù.\n" +" SLOVO mù¾e být:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +" -r, --reverse opaèné uspoøádání pøi øazení\n" +" -R, --recursive vypí¹e adresáøe rekurzivnì\n" +" -s, --size vypí¹e velikost ka¾dého souboru v blocích\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "%s: %lu: nesprávnì formátovaný øádek %s kontrolního souètu" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "%s: SELHALO otevøení nebo ètení\n" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "CHYBNÝ" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "V POØÁDKU" + +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%s: chyba pøi ètení" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "%s: nenalezeny správnì formátované øádky %s kontrolního souètu" + +# that's a case where cases are needed in Slavic languages +# podanych/podanego are plural/singular Genitive, I moved them to +# next messages hoping it doesn't spoil anything - rzm +# +# see also md5sum.c:430. it is somewhat surprising that we need +# such things only in two places in this file - rzm 960902 +# +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "UPOZORNÌNÍ: %d z %d %s nelze èíst" + +# in Genitive - rzm +#: src/md5sum.c:473 +msgid "file" +msgstr "zadaného souboru" + +# in Genitive - rzm +#: src/md5sum.c:473 +msgid "files" +msgstr "zadaných souborù" + +# once more `of computed checksum(s)' is `wyliczonej sumy' or +# `wyliczonych sum' in sing. or plural Genitive; how to handle? - rzm +# +# it is better now but the word `wyliczonych' should also change according +# to the number too (what a horrible language! - but there are worse) +# so I'm moving it to the changing part; fortunately it is Genitive +# so we don't need to use two forms for plural (depending on number: nn[234] +# are different that the other ones) - rzm 960902 +# +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "UPOZORNÌNÍ: %d z %d %s NEBYLY vyhodnoceny" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "kontrolního souètu" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "kontrolních souètù" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" +"pøepínaèe --binary a --text jsou bezvýznamné pøi ovìøování kontrolních souètù" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "pøepínaèe --string a --check se vzájemnì vyluèují" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "pøepínaè --status má význam pouze pøi ovìøování kontrolních souètù" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "pøepínaè --warn má význam pouze pøi ovìøování kontrolních souètù" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "pøi pou¾ití pøepínaèe --string nemohou být zadány soubory" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "pouze jeden argument mù¾e být zadán pøi u¾ití pøepínaèe --check" + +#: src/mkdir.c:61 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ] [SOUBOR]...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" + +#: src/mkdir.c:69 +#, fuzzy +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +"Vytvoøí ADRESÁØ(e), jestli¾e je¹tì neexistuje(í).\n" +"\n" +" -m, --mode=PRÁVA nastaví pøístupová práva (zadány jako pøíkazu 'chmod'),\n" +" místo toho, aby byla práva nastavena na rwxrwxrwx - " +"umask\n" +" -p, --parents vytvoøí neexistující rodièovské adresáøe zadaného " +"adresáøe\n" +" -v, --verbose vypí¹e zprávu pro ka¾dý vytvoøený adresáø\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/mkdir.c:113 +#, fuzzy, c-format +msgid "created directory %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/mkdir.c:190 +#, fuzzy, c-format +msgid "cannot set permissions of directory %s" +msgstr "práva %s nelze zmìnit" + +#: src/mkfifo.c:55 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ] [SOUBOR]...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" + +#: src/mkfifo.c:63 src/mknod.c:64 +#, fuzzy +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" +"Tvoøí pojmenované roury (FIFO) se jmény JMÉNO.\n" +"\n" +" -m, --mode=PRÁVA nastaví pøístupová práva (zadána jako pøíkazu 'chmod'),\n" +" místo toho, aby byla nastavena na 0666 - umask\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "tento systém nepodporuje roury" + +#: src/mkfifo.c:123 src/mknod.c:127 +#, fuzzy +msgid "invalid mode" +msgstr "neplatné èíslo" + +#: src/mkfifo.c:142 +#, fuzzy, c-format +msgid "cannot set permissions of fifo %s" +msgstr "práva %s nelze zmìnit" + +#: src/mknod.c:55 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ]... MNO®INA1 [MNO®INA2]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" + +#: src/mknod.c:76 +#, fuzzy +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"Vytvoøí speciální soubor JMÉNO zadaného TYPu.\n" +"\n" +" -m, --mode=PRÁVA nastaví pøístupová práva (zadána jako pøíkazu 'chmod'),\n" +" místo toho, aby byla nastavena na 0666 - umask\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" +"HLAVNÍ a VEDLEJ©Í èíslo není dovoleno u TYPu p, jinak povinné. TYP mù¾e " +"být:\n" +"\n" +" b blokový (bufferovaný) speciální soubor\n" +" c, u znakový (nebufferovaný) speciální soubor\n" +" p roura (FIFO)\n" + +#: src/mknod.c:141 +#, fuzzy +msgid "wrong number of arguments" +msgstr "pøíli¹ málo argumentù" + +#: src/mknod.c:153 +#, fuzzy +msgid "block special files not supported" +msgstr "velikost bloku" + +#: src/mknod.c:162 +#, fuzzy +msgid "character special files not supported" +msgstr "posun znaku je nula" + +#: src/mknod.c:171 +#, fuzzy +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" +"pøi vytváøení speciálního blokového souboru, musí být hlavní\n" +"a vedlej¹í èíslo zaøízení zadáno" + +#: src/mknod.c:186 +#, fuzzy, c-format +msgid "invalid major device number %s" +msgstr "chybné poèáteèní èíslo øádku: `%s'" + +#: src/mknod.c:191 +#, fuzzy, c-format +msgid "invalid minor device number %s" +msgstr "chybné poèáteèní èíslo øádku: `%s'" + +#: src/mknod.c:196 +#, fuzzy, c-format +msgid "invalid device %s %s" +msgstr "argument %s je pro `%s' neplatný" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "pro roury nesmí být hlavní a vedlej¹í èíslo zaøízení zadáno" + +#: src/mknod.c:231 +#, fuzzy, c-format +msgid "cannot set permissions of %s" +msgstr "práva %s nelze zmìnit" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" + +#: src/mv.c:339 +#, fuzzy +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Pøejmenování ZDROJe na CÍL nebo pøemístìní ZDROJe(ù) do ADRESÁØe.\n" +"\n" +" --backup=[TYP] vytvoøí zálo¾ní kopii ka¾dého existujícího\n" +" cílového souboru\n" +" -b jako --backup, ale bez argumentu\n" +" -f, --force ma¾e existující cíle, neptá se\n" +" -i, --interactive pøed pøepsáním souboru se zeptá\n" +" --strip-trailing-slashes odstraní v¹echna lomítka z konce ZDROJe(ù)\n" +" -S, --suffix=PØÍPONA pøípona zálo¾ních souborù\n" +" --target-directory=ADRESÁØ pøemístí v¹echny ZDROJe do ADRESÁØe\n" +" -u, --update pøemístí pouze star¹í a úplnì nové soubory\n" +" -v, --verbose vypisuje co se dìje\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" + +#: src/mv.c:467 +#, fuzzy, c-format +msgid "specified target, %s is not a directory" +msgstr "%s exituje, ale není adresáøem" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "pøi pøemís»ování více souborù, musí být poslední argument adresáø" + +#: src/nice.c:67 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ] [SOUBOR]...\n" + +#: src/nice.c:68 +#, fuzzy +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" +" Provede PØÍKAZ se zadanou prioritou. Bez PØÍKAZu, vypí¹e aktuální " +"prioritu.\n" +"NASTAVENÍ je implicitnì 10. Rozsah je od -20 (nejvy¹¹í priorita) do 19\n" +"(nejni¾¹í).\n" +"\n" +" -NASTAVENÍ aktuální prioritu zvý¹í o NASTAVENÍ\n" +" -n, --adjustment=NASTAVENÍ jako -NASTAVENÍ\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/nice.c:109 src/nice.c:122 +#, fuzzy, c-format +msgid "invalid option `%s'" +msgstr "chybný typ øetìzce `%s'" + +#: src/nice.c:147 +#, fuzzy, c-format +msgid "invalid priority `%s'" +msgstr "chybné èíslo polo¾ky: `%s'" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "pøíkaz musí být zadán s èíslem, o kolik zmìnit prioritu" + +#: src/nice.c:178 src/nice.c:187 +#, fuzzy +msgid "cannot get priority" +msgstr "adresáø %s nelze vytvoøit" + +#: src/nice.c:192 +#, fuzzy +msgid "cannot set priority" +msgstr "adresáø %s nelze vytvoøit" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/nl.c:188 +#, fuzzy +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" +" Vypí¹e ka¾dý SOUBOR na standardní výstup. Poslední øádek jako první.\n" +"Jestli¾e SOUBOR nebude zadán nebo bude -, bude èten standardní vstup.\n" +"\n" +" -b, --before pøipojí oddìlovaè øádkù pøed øádky místo za nì\n" +" -r, --regex interpretuje oddìlovaè jako regulární výraz\n" +" -s, --separator=ØETÌZEC pou¾ije ØETÌZCE jako oddìlovaèe místo nového " +"øádku\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" + +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "chybné poèáteèní èíslo øádku: `%s'" + +#: src/nl.c:514 +#, c-format +msgid "invalid line number increment: `%s'" +msgstr "chybná hodnota pøírùstku èísla øádku: `%s'" + +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "chybný poèet prázdných øádkù: `%s'" + +#: src/nl.c:541 +#, c-format +msgid "invalid line number field width: `%s'" +msgstr "chybná ¹íøka èísla øádku: `%s'" + +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"Pou¾ití: %s [PØEPÍNAÈ]... [SOUBOR]...\n" +" nebo: %s --traditional [SOUBOR] [[+]POSUN [[+]NÁVÌ©TÍ]]\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" + +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "chybný typ øetìzce `%s'" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "chybný typ `%s'; tento systém nemá %lu-bajtová celá èísla" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" +"chybný typ `%s'; tento systém nemá %lu-bajtová èísla s plovoucí øádovou " +"èárkou" + +#: src/od.c:917 +#, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "znak `%c' v øetìzci typu `%s' je chybný" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "" +"více bajtù, ne¾ kolik obsahují v¹echny vstupní soubory, nelze pøeskoèit" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "posunutí ve starém stylu" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "chybný základ výstupní adresy `%c'; musí to být jeden ze znakù [doxn]" + +#: src/od.c:1717 +msgid "skip argument" +msgstr "pøeskakuji argument" + +#: src/od.c:1725 +msgid "limit argument" +msgstr "argument oøezán" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "minimální délka øetìzce" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "%s je pøíli¹ velké" + +#: src/od.c:1804 +msgid "width specification" +msgstr "specifikace ¹íøky" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "pøi vypisování øetìzcù nelze zadat typ" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "chybný druhý argument '%s' ve starém formátu" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "v kompatibilním módu musí být poslední dva argumenty posuny" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "v kompatibilním módu nemù¾ou být více jak tøi argumenty" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "varování: chybná ¹íøka %lu; u¾ívám %d místo ní" + +# should this be translated? - rzm +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "%d: formát='%s' ¹íøka=%d\n" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "standardní vstup je uzavøen" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" + +#: src/pathchk.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ]... [SOUBOR]...\n" + +#: src/pathchk.c:147 +#, fuzzy +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" +"Rozpoznává nepøenositelné konstrukce ve JMÉNU.\n" +"\n" +" -p, --portability kontrola pro v¹echny POSIXové systémy, ne jen tento\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/pathchk.c:237 +#, fuzzy, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "velikost tabelátoru obsahuje neplatný znak" + +#: src/pathchk.c:257 +#, fuzzy, c-format +msgid "`%s' is not a directory" +msgstr "%s exituje, ale není adresáøem" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "adresáø '%s' není prohledávatelný" + +#: src/pathchk.c:355 +#, fuzzy, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "délka jména '%s' je %d; maximum ale je %d" + +#: src/pathchk.c:381 +#, fuzzy, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "délka cesty '%s' je %d; maximum ale je %d" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "Pøihla¹ovací jméno: " + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "Reálné jméno: " + +#: src/pinky.c:298 +msgid "???\n" +msgstr "???\n" + +#: src/pinky.c:318 +msgid "Directory: " +msgstr "Adresáø: " + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "Shell: " + +#: src/pinky.c:341 +msgid "Project: " +msgstr "Projekt: " + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "Plán:\n" + +#: src/pinky.c:386 +msgid "Login" +msgstr "Login" + +#: src/pinky.c:388 +#, fuzzy +msgid "Name" +msgstr " Jméno" + +#: src/pinky.c:389 +#, fuzzy +msgid " TTY" +msgstr "TTY" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "Prostoj" + +#: src/pinky.c:392 +msgid "When" +msgstr "Kdy" + +#: src/pinky.c:395 +msgid "Where" +msgstr "Odkud" + +#: src/pinky.c:469 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ]... [SOUBOR]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" + +#: src/pinky.c:574 +#, fuzzy +msgid "no username specified; at least one must be specified when using -l" +msgstr "pøi pou¾ití pøepínaèe --string nemohou být zadány soubory" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "" + +# c-format +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "`--pages' chybný rozsah èísel stránek: `%s'" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "`--pages' chybné èíslo poèáteèní stránky: `%s'" + +#: src/pr.c:829 +#, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "`--pages' chybné èíslo koncové stránky: `%s'" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "`--pages' èíslo poèáteèní stránky je vìt¹í ne¾ èíslo koncové stránky" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "`--pages=PRVNÍ_STRÁNKA[:POSLEDNÍ_STRÁNKA]' postrádá argument" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "`--columns=SLOUPCÙ' neplatný poèet sloupcù: `%s'" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "`-l DÉLKA_STRÁNKY' chybný poèet øádkù na stránku: `%s'" + +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "`-N ÈÍSLO' chybné èíslo poèáteèního øádku: `%s'" + +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "`-o OKRAJ' chybný posun øádku: `%s'" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "`-w ©ÍØKA_STRÁNKY' chybný poèet øádkù na stránku: `%s'" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "`-w ©ÍØKA_STRÁNKY' chybný poèet øádkù na stránku: `%s'" + +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "%e. %b %Y %H.%M" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "Pøi výpisu vedle sebe, není mo¾né zadat poèet sloupcù." + +# wzdluz? - rzm +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "Není mo¾né zadat výpis souborù po sobì a vedle sebe." + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "`-%c` nadbyteèné znaky nebo ¹patné èíslo v argumentu: `%s'" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "¹íøka stránky je pøíli¹ malá" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "èíslo poèáteèní stránky je vìt¹í ne¾ èíslo koncové stránky: `%d'" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "Strana %d" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr "" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" + +#: src/pr.c:2849 +#, fuzzy +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" +" Porovnává soubory LEVÝ_SOUBOR a PRAVÝ_SOUBOR, jejich¾ øádky jsou " +"uspoøádány\n" +"podle nìjakého klíèe, øádek po øádku. Výstupem jsou tøi sloupce, øádky " +"obsa¾ené\n" +"pouze v levém souboru, øádky obsa¾ené pouze v pravém souboru, øádky " +"spoleèné\n" +"obìma souborùm.\n" +"\n" +" -1 neukazuje øádky obsa¾ené pouze v levém souboru\n" +" -2 neukazuje øádky obsa¾ené pouze v pravém souboru\n" +" -3 neukazuje øádky spoleèné obìma souborùm\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" + +#: src/printenv.c:43 +msgid "David MacKenzie and Richard Mlynarik" +msgstr "" + +#: src/printenv.c:63 +#, fuzzy, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" +"Pou¾ití: %s [PROMÌNNÁ]...\n" +" nebo: %s PØEPÍNAÈ\n" +" Vypí¹e hodnotu promìnné prostøedí PROMÌNNÁ. Pokud není PROMÌNNÁ zadána\n" +"vypí¹e v¹echny promìnné prostøedí a jejich hodnoty.\n" +"\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "" +"varování: %s: znak nebo znaky, které následují za znakovou konstantou budou\n" +"ignorovány" + +#: src/printf.c:100 +#, fuzzy, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"Pou¾ití: %s [SOUBOR]...\n" +" nebo: %s [PØEPÍNAÈ]\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "%s: oèekávána numerická hodnota" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "%s: hodnota nebyla zcela pøevedena" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "v escape sekvenci oèekáváno ¹estnáctkové èíslo" + +#: src/printf.c:292 +#, fuzzy, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "chybná tøída znaku `%s'" + +#: src/printf.c:472 +#, fuzzy, c-format +msgid "invalid field width: %s" +msgstr "chybné èíslo polo¾ky: `%s'" + +#: src/printf.c:498 +#, fuzzy, c-format +msgid "invalid precision: %s" +msgstr "chybný typ øetìzce `%s'" + +#: src/printf.c:519 +#, fuzzy, c-format +msgid "%%%c: invalid directive" +msgstr "%s: chybný vzorek" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "Pou¾ití: %s formát [argument...]\n" + +#: src/printf.c:594 +#, fuzzy, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "varování: pøebyteèné argumenty jsou ignorovány" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "%s (pro regvýr `%s')" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"Pou¾ití: %s [PØEPÍNAÈ]... [VSTUP]... (bez -G)\n" +" nebo: %s -G [PØEPÍNAÈ]... [VSTUP [VÝSTUP]]\n" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" + +#: src/ptx.c:1978 +#, fuzzy +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" +" Tento program je volné programové vybavení; mù¾ete jej ¹íøit a " +"modifikovat\n" +"podle ustanovení Obecné veøejné licence GNU, vydávané Free Software\n" +"Foundation; a to buï verze 2 této licence anebo (podle va¹eho uvá¾ení),\n" +"kterékoli pozdìj¹í verze.\n" +"\n" +" Tento program je roz¹iøován v nadìji, ¾e bude u¾iteèný, av¹ak BEZ " +"JAKÉKOLI\n" +"ZÁRUKY; neposkytují se ani odvozené záruky PRODEJNOSTI anebo VHODNOSTI PRO\n" +"NÌJAKÝ KONKRÉTNÍ ÚÈEL. Dal¹í podrobnosti najdete v Obecné veøené licenci " +"GNU.\n" +"\n" +" Kopie Obecné veøejné licence GNU mìla být dodána spolu s tímto programem;\n" +"pokud se tak nestalo, napi¹te o ni Free Software Foundation, Inc.,\n" +"59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" + +#: src/ptx.c:1992 +#, fuzzy +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" +" Tento program je volné programové vybavení; mù¾ete jej ¹íøit a " +"modifikovat\n" +"podle ustanovení Obecné veøejné licence GNU, vydávané Free Software\n" +"Foundation; a to buï verze 2 této licence anebo (podle va¹eho uvá¾ení),\n" +"kterékoli pozdìj¹í verze.\n" +"\n" +" Tento program je roz¹iøován v nadìji, ¾e bude u¾iteèný, av¹ak BEZ " +"JAKÉKOLI\n" +"ZÁRUKY; neposkytují se ani odvozené záruky PRODEJNOSTI anebo VHODNOSTI PRO\n" +"NÌJAKÝ KONKRÉTNÍ ÚÈEL. Dal¹í podrobnosti najdete v Obecné veøené licenci " +"GNU.\n" +"\n" +" Kopie Obecné veøejné licence GNU mìla být dodána spolu s tímto programem;\n" +"pokud se tak nestalo, napi¹te o ni Free Software Foundation, Inc.,\n" +"59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" + +#: src/pwd.c:74 +#, fuzzy +msgid "ignoring non-option arguments" +msgstr "pøíli¹ mnoho argumentù, které nejsou pøepínaèi" + +#: src/pwd.c:78 +#, fuzzy +msgid "cannot get current directory" +msgstr "adresáø %s nelze vytvoøit" + +#: src/readlink.c:69 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ]... [SOUBOR]...\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" + +#: src/remove.c:394 +#, fuzzy, c-format +msgid "cannot chdir from %s to .." +msgstr "do adresáøe `%s' nelze vejít" + +#: src/remove.c:407 src/remove.c:488 +#, fuzzy, c-format +msgid "cannot lstat `.' in %s" +msgstr "pøíkaz %s nelze provést" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, fuzzy, c-format +msgid "cannot lstat %s" +msgstr "datum nelze nastavit" + +#: src/remove.c:603 +#, fuzzy, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "adresáø %s nelze vytvoøit" + +#: src/remove.c:604 +#, fuzzy, c-format +msgid "%s: descend into directory %s? " +msgstr "do adresáøe `%s' nelze vejít" + +#: src/remove.c:614 +#, fuzzy, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: smazat soubor `%s' se zakázaným zápisem? " + +#: src/remove.c:615 +#, fuzzy, c-format +msgid "%s: remove %s %s? " +msgstr "%s: smazat `%s'? " + +#: src/remove.c:639 +#, fuzzy, c-format +msgid "removed %s\n" +msgstr "mazání %s\n" + +#: src/remove.c:654 src/remove.c:1059 +#, fuzzy, c-format +msgid "removed directory: %s\n" +msgstr "adresáø %s nelze vytvoøit" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, fuzzy, c-format +msgid "cannot remove directory %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/remove.c:815 +#, fuzzy, c-format +msgid "cannot open directory %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/remove.c:896 src/remove.c:1002 +#, fuzzy, c-format +msgid "cannot chdir from %s to %s" +msgstr "do adresáøe `%s' nelze vejít" + +#: src/remove.c:904 +#, fuzzy, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +"VAROVÁNÍ: Zacyklená struktura adresáøù.\n" +"To témìø jistì znamená, ¾e máte poru¹en souborový systém.\n" +"INFORMUJTE VA©EHO ADMINISTRÁTORA SYSTÉMU.\n" +"Následující dva adresáøe mají stejné èíslo i-uzlu:\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "`.' nebo `..' nelze smazat" + +#: src/rm.c:60 +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "" + +#: src/rm.c:99 src/touch.c:244 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ]... [SOUBOR]...\n" + +#: src/rm.c:100 +#, fuzzy +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Ma¾e SOUBOR(y).\n" +"\n" +" -d, --directory sma¾e adresáø, dokonce kdy¾ není prázdný (pouze\n" +" superu¾ivatel)\n" +" -f, --force ignoruje neexistující soubory\n" +" -i, --interactive ptá se pøed ka¾dým smazáním\n" +" -r, -R, --recursive ma¾e obsah adresáøù rekurzívnì\n" +" -v, --verbose vypisuje co je udìláno\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" +"Smazání souboru jeho¾ název zaèíná znakem `-', napøíklad `-foo',\n" +"docílíte jedním z následujících pøíkazù:\n" +" %s -- -foo\n" +" %s ./-foo\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, fuzzy, c-format +msgid "removing directory, %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/rmdir.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ]... [SOUBOR]...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" + +#: src/rmdir.c:154 +#, fuzzy +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +"Smazání ADRESÁØe(ù), pouze jsou-li prázdné.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignoruje v¹echny chyby zpùsobené neprázdností adresáøe\n" +" -p, --parents ma¾e ADRESÁØ a v¹echny rodièovské adresáøe, ze zadané\n" +" cesty. Napø: `rmdir -p a/b/c' je podobné \n" +" `rmdir a/b/c a/b a'\n" +" -v, --verbose vypisuje oznámení o ka¾dém zpravovávaném adresáøi\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/seq.c:82 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"Pou¾ití: %s [PØEPÍNAÈ]... [VSTUP]... (bez -G)\n" +" nebo: %s -G [PØEPÍNAÈ]... [VSTUP [VÝSTUP]]\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" + +#: src/seq.c:96 +#, fuzzy, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" +"Vypí¹e èísla od PRVNÍho do POSLEDNÍHO, s krokem PØÍRÙSTEK.\n" +"\n" +" -f, --format FORMÁT pou¾ije FORMÁT pro funkci printf(3) (implicitnì: %" +"%g)\n" +" -s, --separator ØETÌZ pou¾ije ØETÌZEC k oddìlení èísel (implicitnì: " +"\\n)\n" +" -w, --equal-width srovná ¹íøku zarovnáním úvodními nulami\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" +" Bude-li PRVNÍ nebo POSLEDNÍ vynechán, implicitnì se nastaví na 1. PRVNÍ,\n" +"PØÍRÙSTEK a POSLEDNÍ jsou údaje v pohyblivé øádové èárce. PØÍRÙSTEK musí " +"být\n" +"kladný, pokud je PRVNÍ men¹í ne¾ POSLEDNÍ, jinak záporný. Formáty pro " +"plovoucí\n" +"øádovou èárku jsou %%e, %%f, %%g.\n" + +#: src/seq.c:119 +#, fuzzy, c-format +msgid "invalid floating point argument: %s" +msgstr "chybné poèáteèní èíslo øádku: `%s'" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" +"pokud je poèáteèní hodnota vìt¹í ne¾ koncová,\n" +"pøírùstek musí být záporný" + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" +"pokud je poèáteèní hodnota men¹í ne¾ koncová,\n" +"pøírùstek musí být kladný" + +#: src/seq.c:423 +#, fuzzy, c-format +msgid "invalid format string: `%s'" +msgstr "chybný typ øetìzce `%s'" + +#: src/seq.c:445 +#, fuzzy +msgid "format string may not be specified when printing equal width strings" +msgstr "pøi vypisování øetìzcù nelze zadat typ" + +#: src/shred.c:160 +#, fuzzy, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ] [SOUBOR]...\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" + +#: src/shred.c:174 +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" + +#: src/shred.c:808 +#, fuzzy, c-format +msgid "%s: cannot rewind" +msgstr "pøíkaz %s nelze provést" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "%s: prùchod %lu/%lu (%s)..." + +#: src/shred.c:868 +#, fuzzy, c-format +msgid "%s: error writing at offset %s" +msgstr "chyba pøi zápisu %s" + +#: src/shred.c:897 +#, fuzzy, c-format +msgid "%s: file too large" +msgstr "%s: soubor je pøíli¹ dlouhý" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "%s: prùchod %lu/%lu (%s)...%s" + +#: src/shred.c:936 +#, fuzzy, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "%s: prùchod %lu/%lu (%s)...%s/%s" + +#: src/shred.c:1195 +#, fuzzy, c-format +msgid "%s: invalid file type" +msgstr "%s: chybný poèet øádkù" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s: soubor má zápornou velikost" + +#: src/shred.c:1265 +#, fuzzy, c-format +msgid "%s: error truncating" +msgstr "%s: soubor byl zkrácen" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "%s: shred nelze pou¾ít na popisovaè souboru pouze pro pøidávání" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "%s: probíhá mazání" + +#: src/shred.c:1412 +#, fuzzy, c-format +msgid "%s: renamed to %s" +msgstr "%s: chyba pøi ètení" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s: smazán" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "%s: nelze smazat" + +#: src/shred.c:1551 +#, fuzzy, c-format +msgid "%s: invalid number of passes" +msgstr "%s: neplatný poèet sekund" + +#: src/shred.c:1568 +#, fuzzy, c-format +msgid "%s: invalid file size" +msgstr "%s: chybný poèet øádkù" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "" + +#: src/sleep.c:52 +#, fuzzy, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" +"Pou¾ití: %s ÈÍSLO[PØÍPONA]...\n" +" nebo: %s PØEPÍNAÈ\n" +" Èeká POÈET sekund. PØÍPONA mù¾e být s (sekundy) - implicitnì, m (minuty),\n" +"h (hodiny) nebo d (dny). V mnoha implementacích musí být ÈÍSLO èíslo celé,\n" +"zde mù¾e být i èíslem desetiným. \n" +"\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/sleep.c:155 +#, fuzzy, c-format +msgid "invalid time interval `%s'" +msgstr "chybné èíslo polo¾ky: `%s'" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "z hodin reálného èasu nelze èíst" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" + +#: src/sort.c:289 +#, fuzzy +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" +"Spojí v¹echny SOUBORy a seøazený výsledek zapí¹e na standardní výstup\n" +"\n" +"Øadící pøepínaèe:\n" +"\n" +" -b, --ignore-leading-blanks ignoruje úvodní mezery v polo¾kách i klíèích\n" +" -d, --dictionary-order v klíèích uva¾uje pouze mezery a " +"alfanumerické\n" +" znaky\n" +" -f, --ignore-case v klíèích pøevede malá písmena za velká\n" +" -g, --general-numeric-sort porovnává podle èíselných hodnot\n" +" (po pøevodu na double)\n" +" -i, --ignore-nonprinting v klíèích uva¾uje pouze tisknutelné znaky\n" +" -M, --month-sort porovná podle mìsícù\n" +" (neznámý) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort porovná podle èíselné hodnoty øetìzce\n" +" -r, --reverse obrácený výsledek porovnávání\n" + +#: src/sort.c:294 +#, fuzzy +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" +"Spojí v¹echny SOUBORy a seøazený výsledek zapí¹e na standardní výstup\n" +"\n" +"Øadící pøepínaèe:\n" +"\n" +" -b, --ignore-leading-blanks ignoruje úvodní mezery v polo¾kách i klíèích\n" +" -d, --dictionary-order v klíèích uva¾uje pouze mezery a " +"alfanumerické\n" +" znaky\n" +" -f, --ignore-case v klíèích pøevede malá písmena za velká\n" +" -g, --general-numeric-sort porovnává podle èíselných hodnot\n" +" (po pøevodu na double)\n" +" -i, --ignore-nonprinting v klíèích uva¾uje pouze tisknutelné znaky\n" +" -M, --month-sort porovná podle mìsícù\n" +" (neznámý) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort porovná podle èíselné hodnoty øetìzce\n" +" -r, --reverse obrácený výsledek porovnávání\n" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" + +#: src/sort.c:324 +#, fuzzy +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" +" POZ je P[.Z][PØEPÍNAÈE], kde P je èíslo polo¾ky a Z pozice znaku v " +"polo¾ce,\n" +"oboje poèítáno od 1 s -k a od 0 se zastaralým formátem. PØEPÍNAÈE jsou " +"tvoøeny\n" +"z jednoho nebo z více písmen jednopísmených øadících pøepínaèù, které " +"pøebijí\n" +"globální nastavení pro tento klíè. Nebude-li klíè zadán, pou¾ije se celý " +"øádek\n" +"jako klíè.\n" +"\n" +" VELIKOST mù¾e být následována následujícími násobícími pøíponami:\n" +"% - % (procento) pamìti, b - 1, k - 1024 (implicitní) a podobnì pro M, G, T, " +"P,\n" +"E, Z, Y.\n" +"\n" +"Pokud není SOUBOR zadán nebo bude -, bude èten standardní vstup.\n" +"\n" +"*** UPOZORNÌNÍ ***\n" +" Výsledek øazení závisí na nastaveném jazykovém prostøedí. Pokud si " +"pøejete\n" +"tradièní zpùsob øazení, podle hodnot bajtù, nastavte LC_ALL=C.\n" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" + +#: src/sort.c:444 +msgid "cannot create temporary file" +msgstr "nelze vytvoøit doèasný soubor" + +#: src/sort.c:467 +msgid "open failed" +msgstr "soubor se nepodaøilo otevøít" + +#: src/sort.c:487 src/sort.c:2496 +msgid "close failed" +msgstr "uzavøení souboru selhalo" + +#: src/sort.c:495 +msgid "write failed" +msgstr "zápis se nezdaøil" + +#: src/sort.c:641 +msgid "sort size" +msgstr "velikost pamì»ového bloku pro øazení" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "funkce stat selhala" + +#: src/sort.c:972 +msgid "read failed" +msgstr "ètení ze souboru se nezdaøilo" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "%s: %s:%s: neseøaditelný øádek: " + +#: src/sort.c:1574 +msgid "standard error" +msgstr "standardní chybový výstup" + +#: src/sort.c:2032 +#, c-format +msgid "%s: invalid field specification `%s'" +msgstr "%s: neplatné zadání `%s' polo¾ky" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "%s: poèet `%.*s' je pøíli¹ velký" + +#: src/sort.c:2064 +#, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "%s: neplatné èíslo na zaèátku `%s'" + +#: src/sort.c:2298 +msgid "invalid number after `-'" +msgstr "neplatné èíslo za `-'" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +msgid "invalid number after `.'" +msgstr "neplatné èíslo za `.'" + +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "zbloudilý znak v zadání øadící polo¾ky" + +#: src/sort.c:2338 +msgid "invalid number at field start" +msgstr "neplatné èíslo na zaèátku polo¾ky" + +#: src/sort.c:2342 src/sort.c:2370 +msgid "field number is zero" +msgstr "èíslo polo¾ky je nula" + +#: src/sort.c:2351 +msgid "character offset is zero" +msgstr "posun znaku je nula" + +#: src/sort.c:2366 +msgid "invalid number after `,'" +msgstr "neplatné èíslo za `,'" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "vízeznakový tabulátor `%s'" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "extra argument `%s' není s -c dovolen" + +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ] [SOUBOR [PØEDPONA]]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" + +#: src/split.c:108 +#, fuzzy, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" +" Rozdìlí SOUBOR do souborù PØEDPONAaa, PØEDPONAab, ... s pevnou délkou.\n" +"Implicitní PØEDPONA je `x'. Pokud SOUBOR nebude zadán nebo bude -, bude " +"èten\n" +"standardní vstup.\n" +"\n" +" -b, --bytes=VELIKOST zapí¹e VELIKOST bajtù do výstupního souboru\n" +" -C, --line-bytes=VELIKOST zapí¹e nejvý¹e VELIKOST bajtù na výstupní øádek\n" +" -l, --lines=POÈET zapí¹e POÈET øádkù do výstupního souboru\n" +" -POÈET to samé jako -l POÈET\n" +" --verbose pøed otevøením ka¾dého výstupního souboru " +"vypí¹e\n" +" oznámení o tomto na standardní výstup\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" +"VELIKOST mù¾e mít násobící pøíponu: b - 512, k - 1024, m - 1 Mega.\n" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "" + +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "vytváøím soubor `%s'\n" + +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "soubor nelze rozdìlit více zpùsoby" + +#: src/split.c:394 +#, fuzzy, c-format +msgid "%s: invalid suffix length" +msgstr "%s: chybný poèet øádkù" + +#: src/split.c:408 src/split.c:434 +#, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: chybný poèet bajtù" + +#: src/split.c:421 +#, c-format +msgid "%s: invalid number of lines" +msgstr "%s: chybný poèet øádkù" + +#: src/split.c:470 +#, fuzzy, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "varování: chybná ¹íøka %lu; u¾ívám %d místo ní" + +#: src/split.c:483 +msgid "invalid number" +msgstr "neplatné èíslo" + +#: src/stat.c:326 +#, fuzzy +msgid "*** invalid date/time ***" +msgstr "chybné èíslo polo¾ky: `%s'" + +#: src/stat.c:608 +#, fuzzy, c-format +msgid "cannot read file system information for %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/stat.c:684 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ] [SOUBOR]...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" +"Pou¾ití: %s [-F ZAØÍZENÍ] [--file=ZAØÍZENÍ] [NASTAVENÍ]...\n" +" nebo: %s [-F ZAØÍZENÍ] [--file=ZAØÍZENÍ] [-a|--all]\n" +" nebo: %s [-F ZAØÍZENÍ] [--file=ZAØÍZENÍ] [-g|--save]\n" + +#: src/stty.c:504 +#, fuzzy +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" +"Vypí¹e nebo mìní nastavení terminálu.\n" +"\n" +" -a, --all vypí¹e v¹echna nastavení ve formì pro èlovìka èitelné\n" +" -g, --save vypí¹e v¹echna nastavení ve formì pro stty\n" +" -F, --file=ZAØÍZENÍ místo stdin otevøe a pou¾ije zadané zaøízení\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" +" Volitelné - pøed NASTAVENÍm znamená negaci. * oznaèuje nastavení " +"nedefinované\n" +"normou POSIX. Daný systém definuje, která nastavení jsou mo¾ná.\n" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" + +#: src/stty.c:570 +#, fuzzy +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" +"\n" +"Nastavení øízení:\n" +" [-]clocal zaká¾e signály pro øízení modemu\n" +" [-]cread povolí pøíjem na vstupu\n" +"* [-]crtscts umo¾ní 'handshake' (RTS/CTS)\n" +" csN nastaví velikost znaku na N bitù, N je [5..8]\n" +" [-]cstopb pou¾ije dva stop bity (jeden stop bit pomocí `-')\n" +" [-]hup po¹le signál hangup, kdy¾ poslední proces uzavøe tty\n" +" [-]hupcl jako [-]hup\n" +" [-]parenb generuje paritní bit na výstupu a oèekává ho na vstupu\n" +" [-]parodd nastaví lichou paritu (sudou pomocí `-')\n" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:608 +#, fuzzy +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" +"\n" +"Nastavení výstupu:\n" +"* bsN zpùsob èekání na backspace, N je [0..1]\n" +"* crN zpùsob èekání na CR (carriage return), N je [0..3]\n" +"* ffN zpùsob èekání na FF (form feed), N je [0..1]\n" +"* nlN zpùsob èekání na LF (newline), N je [0..1]\n" +"* [-]ocrnl pøekládá CR (cariage return) na LF (newline)\n" +"* [-]ofdel pou¾ije znak 'delete' místo znaku 'null' pro výplnì\n" +"* [-]ofill pou¾ije vyplòovací znak místo èekání\n" +"* [-]olcuc pøekládá malá písmena na velká\n" +"* [-]onlcr pøekládá LF (newline) na CRLF (carriage return-newline)\n" +"* [-]onlret LF (newline) provede CR (carriage return)\n" +"* [-]onocr v prvním sloupci netiskne CR (carriage return)\n" +" [-]opost zpracování postprocesorem\n" +"* tabN zpùsob èekání na horizontální tabelátor, N je [0..3]\n" +"* tabs jako tab0\n" +"* -tabs jako tab3\n" +"* vtN zpùsob èekání na vertikální tabelátor, N je [0..1]\n" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" +"\n" +" Pracuje s linkou tty pøipojenou ke standardnímu vstupu. Bez argumentù,\n" +"vypí¹e rychlost, 'line discipline', a odchylky od nastavení 'sane'. Pøi\n" +"nastavování je ZNAK brán jako literál, nebo kódován jak pøi ^c, 0x37, 0177 " +"nebo\n" +"127; speciální hodnoty ^- nebo 'undef' jsou pou¾ity pro zákaz speciálních\n" +"znakù.\n" + +#: src/stty.c:787 +#, fuzzy +msgid "only one device may be specified" +msgstr "mù¾e být zadán pouze jeden argument" + +#: src/stty.c:882 +#, fuzzy +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "pøepínaèe --string a --check se vzájemnì vyluèují" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "pøi zadávání výstupního stylu, nemohou být nastavovány re¾imy" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "%s: neblokovací mód souboru nelze zru¹it" + +#: src/stty.c:957 src/stty.c:1064 +#, fuzzy, c-format +msgid "invalid argument `%s'" +msgstr "argument %s je pro `%s' neplatný" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, fuzzy, c-format +msgid "missing argument to `%s'" +msgstr "argument %s je pro `%s' nejednoznaèný" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "%s: v¹echny po¾adované operace nelze provést" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "new_mode: práva\n" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "%s: pro toto zaøízení neexistuje informace o velikosti" + +#: src/stty.c:1944 +#, fuzzy, c-format +msgid "invalid integer argument `%s'" +msgstr "chybná hodnota pøírùstku èísla øádku: `%s'" + +#: src/su.c:289 +msgid "Password:" +msgstr "Heslo:" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "getpass: /dev/tty nelze otevøít" + +#: src/su.c:350 +#, fuzzy +msgid "cannot set groups" +msgstr "nemù¾ete vynechat jak u¾ivatele tak skupinu" + +#: src/su.c:354 +#, fuzzy +msgid "cannot set group id" +msgstr "nemù¾ete vynechat jak u¾ivatele tak skupinu" + +#: src/su.c:356 +#, fuzzy +msgid "cannot set user id" +msgstr "nemù¾ete vynechat jak u¾ivatele tak skupinu" + +#: src/su.c:437 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ]... [SOUBOR]...\n" + +#: src/su.c:438 +#, fuzzy +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" +"Mìní efektivní èíslo u¾ivatele (nebo skupiny) na daného U®IVATELE.\n" +"\n" +" -, -l, --login tento shell jako login shell\n" +" -c, --commmand=PØÍKAZ nastaví shellu argument -c PØÍKAZ\n" +" -f, --fast nastaví shellu -f (pro csh nebo tcsh)\n" +" -m, --preserve-environment nema¾e promìné prostøedí\n" +" -p jako -m\n" +" -s, --shell=SHELL pou¾ije SHELL (pokud to povoluje /etc/" +"shells)\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" +" Je-li zadáno pouze - znamená to -l. Pokud u¾ivatel není zadán, pøedpokládá " +"se\n" +"u¾ivatel root.\n" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "u¾ivatel %s neexistuje" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "chybné heslo" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "pou¾íván omezený (restricted) shell %s" + +#: src/su.c:580 +#, fuzzy, c-format +msgid "warning: cannot change directory to %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "" + +#: src/sum.c:64 +#, fuzzy +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" +"Ke ka¾dému SOUBORu vypí¹e kontrolní souèet a poèet blokù.\n" +"\n" +" -r pou¾ije BSD algoritmus a bloky po 1 KB\n" +" -s, --sysv pou¾ije System V algoritmus a bloky po 512 bajtech\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" +"Jestli¾e SOUBOR nebude zadán nebo bude -, bude èten standardní vstup.\n" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" + +#: src/sync.c:70 src/tty.c:112 +#, fuzzy +msgid "ignoring all arguments" +msgstr "pøíli¹ mnoho argumentù" + +#: src/sys2.h:492 +#, fuzzy +msgid " --help display this help and exit\n" +msgstr "" +"Vypí¹e CRC kontrolní souèet a délku v bajtech ka¾dého SOUBORu.\n" +"\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/sys2.h:494 +#, fuzzy +msgid " --version output version information and exit\n" +msgstr "" +"Vypí¹e CRC kontrolní souèet a délku v bajtech ka¾dého SOUBORu.\n" +"\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tac.c:139 +#, fuzzy +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" +" Vypí¹e ka¾dý SOUBOR na standardní výstup. Poslední øádek jako první.\n" +"Jestli¾e SOUBOR nebude zadán nebo bude -, bude èten standardní vstup.\n" +"\n" +" -b, --before pøipojí oddìlovaè øádkù pøed øádky místo za nì\n" +" -r, --regex interpretuje oddìlovaè jako regulární výraz\n" +" -s, --separator=ØETÌZEC pou¾ije ØETÌZCE jako oddìlovaèe místo nového " +"øádku\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "stdin: chyba pøi ètení" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "oddìlovaè nemù¾e být prázdný" + +#: src/tail.c:49 +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "" + +#: src/tail.c:238 +#, fuzzy, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +" Vypí¹e prvních 10 øádkù ka¾dého souboru na standardní výstup. S více jak\n" +"jedním souborem, bude pøed vypsáním ka¾dého uvedena hlavièka obsahující " +"jméno\n" +"souboru. Jestli¾e SOUBOR nebude zadán nebo bude -, bude èten standardní " +"vstup.\n" +"\n" +" -c, --bytes=VELIKOST vypí¹e prvních VELIKOST bajtù\n" +" -n, --lines=POÈET vypí¹e prvních POÈET øádkù místo prvních 10\n" +" -q, --quiet, --silent nikdy nevypisuje hlavièky s názvy souborù\n" +" -v, --verbose vypisuje hlavièky s názvy souborù v¾dy\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" +" VELIKOST mù¾e mít násobící pøíponu: b pro 512, k pro 1K, m pro 1M. " +"Jestli¾e\n" +"první pøepínaè bude -HODNOTA a bude-li pou¾ita násobící pøípona, pak bude " +"brán\n" +"jako -c HODNOTA. Jinak bude pøepínaè brán jako -n HODNOTA.\n" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" + +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "uzavírání %s (fd=%d)" + +#: src/tail.c:391 +#, fuzzy, c-format +msgid "%s: cannot seek to offset %s" +msgstr "ioctl na `%s' není mo¾né vykonat" + +#: src/tail.c:395 +#, fuzzy, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "adresáø %s nelze vytvoøit" + +#: src/tail.c:400 +#, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "`%s' se stal nedostupným" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "soubor %s byl nahrazen nesledovatelným; sledování ukonèeno" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "`%s' se stal znovu dostupným" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "soubor %s se objevil. Sledování konce souboru pokraèuje." + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "" +"soubor %s byl nahrazen jiným. Sledování konce souboru\n" +"pokraèuje." + +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "%s: soubor byl zkrácen" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "ji¾ nezbývají ¾ádné soubory" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "%s: nelze sledovat konec souboru tohoto typu; sledování ukonèeno" + +# src/tail.c:938 +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "%c: neplatný znak v zastaralém pøepínaèi" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"pøíli¹ mnoho argumentù; Pøi pou¾ití zastaralé syntaxe pøepínaèe %s,\n" +"mù¾e být uveden pouze jeden souborový argument. Radìji pou¾ijte\n" +"ekvivalentní pøepínaè -n nebo -c." + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"Varování: pou¾ití dvou nebo více souborových argumentù se zastaralou " +"syntaxí\n" +"pøepínaèe %s není portabilní. Radìji pou¾ijte ekvivalentní pøepínaè\n" +"-n nebo -c." + +#: src/tail.c:1423 +#, fuzzy, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "varování: chybná ¹íøka %lu; u¾ívám %d místo ní" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "%s je vìt¹í ne¾ maximální mo¾ná velikost souboru v tomto systému" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "" +"%s: neplatné èíslo maximálního poètu nezmìnìných výsledkù funkce stat\n" +"mezi otevøeními" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "%s: neplatné èíslo maximálního poètu po sobì jdoucích zmìn velikosti" + +#: src/tail.c:1534 +#, c-format +msgid "%s: invalid PID" +msgstr "%s: neplatný PID" + +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: neplatný poèet sekund" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "varování: --retry je u¾iteèný pouze v pøípadì --follow=name" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "" +"varování: PID ignorován; --pid=PID je u¾iteèný pouze v pøípadì sledování " +"konce" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "varování: --pid=PID není na tomto systému podporován" + +#: src/tee.c:33 +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "" + +#: src/tee.c:64 +#, fuzzy +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" +"Kopíruje standardní vstup do ka¾dého souboru a také na standardní výstup.\n" +"\n" +" -a, --append pøipojí k daným SOUBORÙM, nepøepisuje je\n" +" -i, --ignore-interrupts ignoruje signál 'interrupt'\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "oèekáván argument\n" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "%s je oèekáván výraz typu integer\n" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "oèekávána ')'\n" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "oèekávána ')', nalezeno %s\n" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "%s: oèekáván unární operátor\n" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "%s: oèekáván binární operátor\n" + +#: src/test.c:424 +msgid "before -lt" +msgstr "pøed -lt" + +#: src/test.c:432 +msgid "after -lt" +msgstr "po -lt" + +#: src/test.c:446 +msgid "before -le" +msgstr "pøed -le" + +#: src/test.c:453 +msgid "after -le" +msgstr "po -le" + +#: src/test.c:469 +msgid "before -gt" +msgstr "pøed -gt" + +#: src/test.c:476 +msgid "after -gt" +msgstr "po -gt" + +#: src/test.c:490 +msgid "before -ge" +msgstr "pøed -ge" + +#: src/test.c:497 +msgid "after -ge" +msgstr "po -ge" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "k pøepínaèi -nt nemù¾e být uveden pøepínaè -l\n" + +#: src/test.c:526 +msgid "before -ne" +msgstr "pøed -ne" + +#: src/test.c:533 +msgid "after -ne" +msgstr "po -ne" + +#: src/test.c:549 +msgid "before -eq" +msgstr "pøed -eq" + +#: src/test.c:556 +msgid "after -eq" +msgstr "po -eq" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "k pøepínaèi -ef nemù¾e být uveden pøepínaè -l\n" + +#: src/test.c:586 +#, fuzzy +msgid "-ot does not accept -l\n" +msgstr "k pøepínaèi -nt nemù¾e být uveden pøepínaè -l\n" + +#: src/test.c:593 +#, fuzzy +msgid "unknown binary operator" +msgstr "Neznámá chyba systému" + +#: src/test.c:781 +msgid "after -t" +msgstr "po -t" + +#: src/test.c:979 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"Pou¾ití: %s [SOUBOR]...\n" +" nebo: %s [PØEPÍNAÈ]\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" + +#: src/test.c:1009 +#, fuzzy +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" +"\n" +" ( VÝRAZ ) VÝRAZ je pravdivý\n" +" ! VÝRAZ VÝRAZ je nepravdivý\n" +" VÝRAZ1 -a VÝRAZ2 VÝRAZ1 i VÝRAZ2 jsou pravdivé\n" +" VÝRAZ1 -o VÝRAZ2 buï VÝRAZ1 nebo VÝRAZ2 je pravdivý\n" +"\n" +" [-n] ØETÌZ ØETÌZ má nenulovou délku\n" +" -z ØETÌZ ØETÌZ má nulovou délku\n" +" ØETÌZ1 = ØETÌZ2 ØETÌZce mají stejnou délku\n" +" ØETÌZ1 != ØETÌZ2 ØETÌZce nemají stejnou délku\n" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 je roven INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 je vìt¹í nebo roven INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 je vìt¹í ne¾ INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 je men¹í nebo roven INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 je men¹í ne¾ INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 není roven INTEGER2\n" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" +"\n" +"Upozornìní: závorky nesmí být interpretovány shellem (musí být oznaèeny " +"znakem\n" +"zpìtného lomítka). INTEGER také mù¾e být -l ØE«EZEC, který je vyhodnocen " +"jako\n" +"délka øetìzce.\n" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "oèekávána ']'\n" + +#: src/test.c:1125 +#, fuzzy +msgid "too many arguments\n" +msgstr "pøíli¹ mnoho argumentù" + +#: src/touch.c:39 +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "" + +#: src/touch.c:164 src/touch.c:179 +#, fuzzy, c-format +msgid "creating %s" +msgstr "vytváøím soubor `%s'\n" + +#: src/touch.c:222 +#, fuzzy, c-format +msgid "cannot touch %s" +msgstr "do adresáøe `%s' nelze vejít" + +#: src/touch.c:228 +#, fuzzy, c-format +msgid "setting times of %s" +msgstr "zachování èasù souboru %s" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" + +#: src/touch.c:311 src/touch.c:331 +#, fuzzy, c-format +msgid "invalid date format %s" +msgstr "argument %s je pro `%s' neplatný" + +#: src/touch.c:355 +#, fuzzy +msgid "cannot specify times from more than one source" +msgstr "soubor nelze rozdìlit více zpùsoby" + +#: src/touch.c:378 +#, fuzzy, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "varování: chybná ¹íøka %lu; u¾ívám %d místo ní" + +#: src/touch.c:399 +#, fuzzy +msgid "file arguments missing" +msgstr "pøíli¹ málo argumentù" + +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ]... MNO®INA1 [MNO®INA2]\n" + +#: src/tr.c:331 +#, fuzzy +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" +" Nahrazuje, komprimuje a/nebo ma¾e znaky ze standardního vstupu, výsledek\n" +"je zapisován na standardní výstup.\n" +"\n" +" -c, --complement napøed vytvoøí doplnìk MNO®INY1\n" +" -d, --delete pouze ma¾e znaky z MNO®INY1\n" +" -s, --squeeze-repeats nahradí sekvence jednoho znaku pouze jedním\n" +" -t, --truncate-set1 napøed zkrátí MNO®INU1 na délku MNO®INY2\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" + +#: src/tr.c:379 +#, fuzzy +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" +"\n" +" Nahrazení nastane, jestli¾e není zadán pøepínaè -d a jsou zadány obì\n" +"mno¾iny. -t mù¾e být pou¾ito pouze pøi nahrazování. V pøípadì potøeby je\n" +"MNO®INA2 roz¹íøena na délku MNO®INY1 opakováním posledního znaku. " +"Pøebyteèné\n" +"znaky MNO®INY2 jsou ignorovány. Pouze u [:lower:] a [:upper:] je " +"garantováno,\n" +"¾e budou rozepsány vzestupnì; pøi pou¾ití v MNO®INÌ2 pøi nahrazování mohou " +"být\n" +"pou¾ívány pouze v párech pro zmìnu velikosti písmen. -s pou¾ívá MNO®INU2\n" +"pøi nahrazování nebo mazání a komprese je vykonána a¾ po tomto. Jinak -s\n" +"pou¾ívá MNO®INU1.\n" + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" + +#: src/tr.c:391 +#, fuzzy +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" +"\n" +" Nahrazení nastane, jestli¾e není zadán pøepínaè -d a jsou zadány obì\n" +"mno¾iny. -t mù¾e být pou¾ito pouze pøi nahrazování. V pøípadì potøeby je\n" +"MNO®INA2 roz¹íøena na délku MNO®INY1 opakováním posledního znaku. " +"Pøebyteèné\n" +"znaky MNO®INY2 jsou ignorovány. Pouze u [:lower:] a [:upper:] je " +"garantováno,\n" +"¾e budou rozepsány vzestupnì; pøi pou¾ití v MNO®INÌ2 pøi nahrazování mohou " +"být\n" +"pou¾ívány pouze v párech pro zmìnu velikosti písmen. -s pou¾ívá MNO®INU2\n" +"pøi nahrazování nebo mazání a komprese je vykonána a¾ po tomto. Jinak -s\n" +"pou¾ívá MNO®INU1.\n" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" +"varování: nejednoznaèný osmièkový zápis \\%c%c%c bude\n" +"\tinterpretován jako 2-bajtová sekvence \\0%c%c, `%c'" + +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "chybnì pou¾ité zpìtné lomítko na konci øetìzce" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "chybný zápis `\\%c'" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "konce rozsahu `%s-%s' jsou v obráceném poøadí" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "chybný èítaè opakování `%s' v konstrukci [c*n]" + +#: src/tr.c:999 +#, fuzzy +msgid "missing character class name `[::]'" +msgstr "chybná tøída znaku `%s'" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "" + +#: src/tr.c:1025 +#, c-format +msgid "invalid character class `%s'" +msgstr "chybná tøída znaku `%s'" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "%s: operand ve tøídì [=c=] musí být jediný znak" + +# should it be string1 or SET1? +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "zadání opakování [c*] nemù¾e být v MNO®INÌ1" + +# string2 or SET2? +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "opakování znaku [c*] mù¾e být v MNO®INÌ2 pouze jednou" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "výraz [=c=] nemù¾e být v MNO®INÌ2 pøi nahrazování" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "jestli¾e MNO®INA1 není zkracována, pak MNO®INA2 nesmí být prázdná" + +# ? - rzm +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" +"pøi nahrazování s doplòkem mno¾iny znakù, MNO®INA2 musí mapovat v¹echny\n" +"znaky z této oblasti do jednoho" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" +"pøi nahrazování mohou být v MNO®INÌ2 pouze tøídy znakù [:upper:]\n" +"a [:lower:]" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "výraz [c*] mù¾e být v MNO®INÌ2 pouze pøi nahrazování" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "obì dvì mno¾iny musí být pøi nahrazování zadány" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "" +"dvì mno¾iny musí být zadány pøi mazání a komprimaci opakujících se znakù" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" +"pouze jedna mno¾ina mù¾e být zadána pøi mazání bez komprimace\n" +"opakujících se znakù" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "" +"nejménì jedna mno¾ina musí být zadána pøi komprimaci opakujících se znakù" + +# ? - rzm +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "nezarovnané(á) konstrukce [:upper:] a/nebo [:lower:]" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" +"nelze identifikovat mapování: pøi nahrazování, libovolná konstrukce [:" +"lower:]\n" +"nebo [:upper:] v MNO®INÌ1 musí být zarovnána s odpovídající konstrukcí\n" +"([:upper:] nebo [:lower:]) v MNO®INÌ2." + +#: src/true.c:34 +#, fuzzy, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Pou¾ití: %s [argumenty jsou ignorovány]\n" +" nebo: %s PØEPÍNAÈ\n" +"Ukonèí se s návratovým kódem znamenajícím ukonèení bez chyby.\n" +"\n" +"Následující jména pøepínaèù nemohou být zkracována.\n" +"\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" + +#: src/tsort.c:97 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Pou¾ití: %s [PØEPÍNAÈ] [SOUBOR]\n" +" Výstupem je totálnì seøazený seznam v¹ech polo¾ek ze v¹ech vstupních " +"øádkù,\n" +"na kterých jsou polo¾ky seøazeny, vstupního SOUBORu. Jednotlivé polo¾ky " +"jsou\n" +"na øádku oddìleny mezerou.\n" +" Jestli¾e není SOUBOR zadán, bude èten standardní vstup.\n" +"\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "%s: vstup obsahuje cyklus:" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "mù¾e být zadán pouze jeden argument" + +#: src/tty.c:63 +#, fuzzy +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" +"Vypí¹e jméno souboru terminálu pøipojeného na standardní vstup.\n" +"\n" +" -s, --silent, --quiet potlaèí výstup a vrátí pouze návratový kód.\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "není tty" + +#: src/uname.c:111 +#, fuzzy +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" +" Vypí¹e nìkteré informace o systému. Není-li zadán ¾ádný pøepínaè, výpis " +"je\n" +"stejný jako u pøepínaèe -s.\n" +"\n" +" -a, --all v¹echny informace\n" +" -m, --machine typ poèítaèe (hardware)\n" +" -n, --nodename jméno poèítaèe v síti\n" +" -r, --release verze operaèního systému\n" +" -s, --sysname jméno operaèního systému\n" +" -p, --procesor typ procesoru\n" +" -v verze (datum kompilace) operaèního systému\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" + +#: src/uname.c:226 +#, fuzzy +msgid "cannot get system name" +msgstr "nelze vytvoøit doèasný soubor" + +#: src/unexpand.c:379 +#, fuzzy +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +" V ka¾dém SOUBORu konvertuje mezery na tabelátory a výsledek vypisuje\n" +"na standardní výstup. Nebude-li SOUBOR zadán nebo bude-li -, bude èten\n" +"standardní vstup.\n" +"\n" +" -a, --all konvertuje v¹echny mezery, místo pouze úvodních\n" +" -t, --tabs=POÈET nastaví tabelátor na POÈET mezer (8)\n" +" -t, --tabs=SEZNAM pou¾ije èárkami oddìlený seznam pro pozice tabelátorù\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" +"\n" +"Místo -t POÈET nebo -t SEZNAM je mo¾no pou¾ít -POÈET nebo -SEZNAM.\n" + +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" + +#: src/unexpand.c:464 +#, fuzzy +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "varování: chybná ¹íøka %lu; u¾ívám %d místo ní" + +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ]... [VSTUP [VÝSTUP]]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr "" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" + +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "chyba pøi ètení %s" + +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "chyba pøi zápisu %s" + +#: src/uniq.c:433 src/uniq.c:450 +#, fuzzy, c-format +msgid "extra operand `%s'" +msgstr "extra argument `%s' není s -c dovolen" + +#: src/uniq.c:473 src/uniq.c:498 +#, fuzzy +msgid "invalid number of fields to skip" +msgstr "chybný poèet polo¾ek na pøeskoèení: `%s'" + +# bytes to skip? we were talking about chars? - rzm +#: src/uniq.c:507 +#, fuzzy +msgid "invalid number of bytes to skip" +msgstr "chybný poèet bajtù na pøeskoèení: `%s'" + +#: src/uniq.c:516 +#, fuzzy +msgid "invalid number of bytes to compare" +msgstr "chybný poèet bajtù pro porovnání: `%s'" + +#: src/uniq.c:530 +#, fuzzy, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "varování: chybná ¹íøka %lu; u¾ívám %d místo ní" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "výpis v¹ech opakujících se øádkù a poèítadla opakování nemá smysl" + +#: src/unlink.c:51 +#, fuzzy, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"Pou¾ití: %s [SOUBOR]...\n" +" nebo: %s [PØEPÍNAÈ]\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" + +#: src/unlink.c:99 +#, fuzzy, c-format +msgid "cannot unlink %s" +msgstr "ioctl na `%s' není mo¾né vykonat" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "èas startu OS nelze zjistit" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr " %2d:%02d%s bì¾í" + +#: src/uptime.c:140 +msgid "am" +msgstr " " + +#: src/uptime.c:140 +msgid "pm" +msgstr " " + +#: src/uptime.c:142 +#, fuzzy, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "den" +msgstr[1] "den" + +#: src/uptime.c:144 +#, fuzzy, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "neplatný u¾ivatel" +msgstr[1] "neplatný u¾ivatel" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr ", prùmìrná zátì¾: %.2f" + +#: src/uptime.c:191 src/users.c:118 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ]... [SOUBOR]...\n" + +#: src/uptime.c:192 +#, fuzzy, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +" Vypí¹e aktuální èas, èas po který je systém v provozu, poèet u¾ivatelù\n" +"pøihlá¹ených v systému a prùmìrný poèet procesù èekajících ve frontì\n" +"na zpracování bìhem posledních 1, 5 a 15 minut. \n" +" Pokud není SOUBOR zadán, pou¾ije se %s. Zadání %s jako SOUBORu je " +"obvyklé.\n" +"\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/users.c:35 +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "" + +#: src/users.c:119 +#, fuzzy, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +" Vypí¹e momentálnì pøihlá¹ené u¾ivatele. Informace jsou brány ze SOUBORu.\n" +"Pokud není SOUBOR zadán, pou¾ije se %s. Pokud zadáte %s jako SOUBOR získáte\n" +"u¾ivatele pøipojené v poslední dobì.\n" +"\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "" + +#: src/wc.c:129 +#, fuzzy +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" +" Ke ka¾dému SOUBORu vypí¹e poèet øádkù, slov a bajtù. Bude-li zadán více\n" +"ne¾ jeden SOUBOR, vypí¹e i celkové údaje. Jestli¾e SOUBOR nebude zadán nebo\n" +"bude -, bude èten standardní vstup.\n" +"\n" +" -c, --bytes, --chars vypí¹e poèet bajtù\n" +" -m, --chars vypí¹e poèet znakù\n" +" -l, --lines vypí¹e poèet øádkù\n" +" -L, --max-line-length vypí¹e délku nejdel¹ího øádku\n" +" -w, --words vypí¹e poèet slov\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/wc.c:137 +#, fuzzy +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" +"Vypí¹e CRC kontrolní souèet a délku v bajtech ka¾dého SOUBORu.\n" +"\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "" + +#: src/who.c:223 +msgid " old " +msgstr "starý" + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "" + +#: src/who.c:446 +msgid "clock change" +msgstr "" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" +"\n" +"# u¾ivatelù=%u\n" + +#: src/who.c:498 +msgid "NAME" +msgstr "" + +#: src/who.c:498 +msgid "LINE" +msgstr "TERMINÁL" + +#: src/who.c:498 +msgid "TIME" +msgstr "" + +#: src/who.c:498 +#, fuzzy +msgid "IDLE" +msgstr "CHYBNÝ" + +#: src/who.c:498 +msgid "PID" +msgstr "" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "" + +#: src/who.c:499 +msgid "EXIT" +msgstr "" + +#: src/who.c:574 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "Pou¾ití: %s [PØEPÍNAÈ]... SOUBOR1 SOUBOR2\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" + +#: src/whoami.c:53 +#, fuzzy +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" +" Vypí¹e jméno aktuálního efektivním u¾ivatele. Stejné jako pøíkaz id -un.\n" +"\n" +" --help vypí¹e tuto nápovìdu a skonèí\n" +" --version vypí¹e oznaèení verze a skonèí\n" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "%s: jméno u¾ivatele pro UID %u nelze najít\n" + +#: src/yes.c:49 +#, fuzzy, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"Pou¾ití: %s [SOUBOR]...\n" +" nebo: %s [PØEPÍNAÈ]\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" + +#, fuzzy +#~ msgid "\\%c: invalid escape" +#~ msgstr "%s: chybný vzorek" + +#, fuzzy +#~ msgid "program error" +#~ msgstr "chyba pøi ètení" + +#, fuzzy +#~ msgid "cannot convert time" +#~ msgstr "datum nelze nastavit" + +#, fuzzy +#~ msgid "cannot format time" +#~ msgstr "pøíkaz %s nelze provést" + +#, fuzzy +#~ msgid "cannot change to `..' from directory %s" +#~ msgstr "do adresáøe `%s' nelze vejít" + +#, fuzzy +#~ msgid "missing file arguments" +#~ msgstr "pøíli¹ málo argumentù" + +#, fuzzy +#~ msgid "environment variable, QUOTING_STYLE" +#~ msgstr "¹patná ¹íøka (%s) v promìnné prostøedí COLUMNS, bude ignorována" + +# src/tail.c:968 +#~ msgid "%s: is so large that it is not representable" +#~ msgstr "%s: je pøíli¹ velké, proto jej nelze vnitønì popsat" + +#, fuzzy +#~ msgid "cannot execute %s" +#~ msgstr "adresáø %s nelze vytvoøit" + +#, fuzzy +#~ msgid "cannot run %s" +#~ msgstr "ioctl na `%s' není mo¾né vykonat" + +#, fuzzy +#~ msgid "Try %s --help' for more information.\n" +#~ msgstr "Více informací získáte pøíkazem `%s --help'.\n" + +#, fuzzy +#~ msgid "preserving permissions for %s" +#~ msgstr "práva %s nelze zmìnit" + +#, fuzzy +#~ msgid "cannot lstat `.'" +#~ msgstr "datum nelze nastavit" + +#, fuzzy +#~ msgid "closing directory %s" +#~ msgstr "do adresáøe `%s' nelze vejít" + +#, fuzzy +#~ msgid "%s: remove directory %s? " +#~ msgstr "adresáø %s nelze vytvoøit" + +#, fuzzy +#~ msgid "%s: directory %s is write protected; descend into it anyway? " +#~ msgstr "%s: do adresáøe `%s' je zakázán zápis; opravdu pokraèovat? " + +#~ msgid "removing all entries of directory %s\n" +#~ msgstr "mazání v¹ech polo¾ek adresáøe `%s'\n" + +#~ msgid "continue? " +#~ msgstr "pokraèovat? " + +#, fuzzy +#~ msgid "cannot change back to directory %s via `..'" +#~ msgstr "do adresáøe `%s' nelze vejít" + +#, fuzzy +#~ msgid "%s: remove directory %s%s? " +#~ msgstr "adresáø %s nelze vytvoøit" + +#~ msgid " (might be nonempty)" +#~ msgstr " (nemusí být prázdný)" + +#, fuzzy +#~ msgid "removing the directory itself: %s\n" +#~ msgstr "varování: adresáø nelze zmìnit na %s" + +#, fuzzy +#~ msgid "" +#~ "ERROR: the source file %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after opening it), the numbers\n" +#~ "are %lu/%lu. That means that while this program was running,\n" +#~ "the file was replaced with another one. Skipping this file." +#~ msgstr "" +#~ "CHYBA: adresáø `%s' mìl pøi spu¹tìní zaøízení/i-uzel\n" +#~ "èísla %lu/%lu, ale nyní (po zmìnì adresáøe do nìj), jsou èísla pro `.'\n" +#~ "%lu/%lu. To znamená, ¾e bìhem bìhu pøíkazu rm, do¹lo k nahrazení " +#~ "adresáøe\n" +#~ "jiným adresáøem nebo ke zmìnì odkazu na jiný adresáø." + +#, fuzzy +#~ msgid "" +#~ "ERROR: the directory %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after a chdir into it), the numbers for `.'\n" +#~ "are %lu/%lu. That means that while rm was running, the directory\n" +#~ "was replaced with either another directory or a link to another directory." +#~ msgstr "" +#~ "CHYBA: adresáø `%s' mìl pøi spu¹tìní zaøízení/i-uzel\n" +#~ "èísla %lu/%lu, ale nyní (po zmìnì adresáøe do nìj), jsou èísla pro `.'\n" +#~ "%lu/%lu. To znamená, ¾e bìhem bìhu pøíkazu rm, do¹lo k nahrazení " +#~ "adresáøe\n" +#~ "jiným adresáøem nebo ke zmìnì odkazu na jiný adresáø." + +#, fuzzy +#~ msgid "" +#~ "ERROR: the directory %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after changing into at least one subdirectory\n" +#~ "and changing back via `..'), the numbers for `.' are %lu/%lu.\n" +#~ "That means that while rm was running, a partially-removed subdirectory\n" +#~ "was moved to a different position in the file system hierarchy." +#~ msgstr "" +#~ "CHYBA: adresáø `%s' mìl pøi spu¹tìní zaøízení/i-uzel\n" +#~ "èísla %lu/%lu, ale nyní (po zmìnì adresáøe do nìj), jsou èísla pro `.'\n" +#~ "%lu/%lu. To znamená, ¾e bìhem bìhu pøíkazu rm, do¹lo k nahrazení " +#~ "adresáøe\n" +#~ "jiným adresáøem nebo ke zmìnì odkazu na jiný adresáø." + +#, fuzzy +#~ msgid " or: %s [-acm] MMDDhhmm[YY] FILE... (obsolete)\n" +#~ msgstr " nebo : %s [-acm] MMDDhhmm[YY] SOUBOR... (zastaralé)\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolní souèet a délku v bajtech ka¾dého SOUBORu.\n" +#~ "\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolní souèet a délku v bajtech ka¾dého SOUBORu.\n" +#~ "\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolní souèet a délku v bajtech ka¾dého SOUBORu.\n" +#~ "\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolní souèet a délku v bajtech ka¾dého SOUBORu.\n" +#~ "\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolní souèet a délku v bajtech ka¾dého SOUBORu.\n" +#~ "\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolní souèet a délku v bajtech ka¾dého SOUBORu.\n" +#~ "\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolní souèet a délku v bajtech ka¾dého SOUBORu.\n" +#~ "\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolní souèet a délku v bajtech ka¾dého SOUBORu.\n" +#~ "\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolní souèet a délku v bajtech ka¾dého SOUBORu.\n" +#~ "\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolní souèet a délku v bajtech ka¾dého SOUBORu.\n" +#~ "\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolní souèet a délku v bajtech ka¾dého SOUBORu.\n" +#~ "\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +#~ msgid "" +#~ "Change the group membership of each FILE to GROUP.\n" +#~ "\n" +#~ " -c, --changes like verbose but report only when a change is " +#~ "made\n" +#~ " --dereference affect the referent of each symbolic link, " +#~ "rather\n" +#~ " than the symbolic link itself\n" +#~ " -h, --no-dereference affect symbolic links instead of any referenced " +#~ "file\n" +#~ " (available only on systems that can change the\n" +#~ " ownership of a symlink)\n" +#~ " -f, --silent, --quiet suppress most error messages\n" +#~ " --reference=RFILE use RFILE's group rather than the specified\n" +#~ " GROUP value\n" +#~ " -R, --recursive operate on files and directories recursively\n" +#~ " -v, --verbose output a diagnostic for every file processed\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Mìní skupinu zadaných SOUBORù na SKUPINU.\n" +#~ "\n" +#~ " -c, --changes vypí¹e soubory, jejich¾ skupina byla zmìnìna\n" +#~ " --dereference pùsobí na soubor, na nìj¾ se odkazuje " +#~ "symbolický\n" +#~ " odkaz\n" +#~ " -h, --no-dereference pùsobí na symbolický odkaz místo na soubor,\n" +#~ " na který odkaz odkazuje (funguje pouze na " +#~ "systémech,\n" +#~ " které mohou mìnit vlastníky symbolických " +#~ "odkazù)\n" +#~ " -f, --silent, --quiet potlaèí vìt¹inu chybových zpráv\n" +#~ " --reference=RSOUBOR místo hodnoty SKUPINA pou¾ije skupinu souboru " +#~ "RSOUBOR\n" +#~ " -R, --recursive vykoná se i v podadresáøích\n" +#~ " -v, --verbose vypí¹e informaci o ka¾dém zpracovávaném " +#~ "souboru\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ "Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +#~ "\n" +#~ " -c, --changes like verbose but report only when a change is " +#~ "made\n" +#~ " --dereference affect the referent of each symbolic link, " +#~ "rather\n" +#~ " than the symbolic link itself\n" +#~ " -h, --no-dereference affect symbolic links instead of any referenced " +#~ "file\n" +#~ " (available only on systems that can change the\n" +#~ " ownership of a symlink)\n" +#~ " --from=CURRENT_OWNER:CURRENT_GROUP\n" +#~ " change the owner and/or group of each file only " +#~ "if\n" +#~ " its current owner and/or group match those " +#~ "specified\n" +#~ " here. Either may be omitted, in which case a " +#~ "match\n" +#~ " is not required for the omitted attribute.\n" +#~ " -f, --silent, --quiet suppress most error messages\n" +#~ " --reference=RFILE use RFILE's owner and group rather than\n" +#~ " the specified OWNER:GROUP values\n" +#~ " -R, --recursive operate on files and directories recursively\n" +#~ " -v, --verbose output a diagnostic for every file processed\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Mìní vlastníka a/nebo skupinu zadaných SOUBORù na VLASTNÍKa a/nebo " +#~ "SKUPINU.\n" +#~ "\n" +#~ " -c, --changes vypí¹e soubory, jejich¾ vlastnictví bylo " +#~ "zmìnìno\n" +#~ " --dereference pùsobí na soubory, na nì¾ se odkazují " +#~ "symbolické\n" +#~ " odkazy\n" +#~ " -h, --no-dereference pùsobí na symbolické odkazy místo na soubory,\n" +#~ " na které se odkazy odkazují (funguje pouze na\n" +#~ " systémech, které umo¾òují mìnit vlatsníky\n" +#~ " symbolických odkazù)\n" +#~ " --from=CURRENT_OWNER:CURRENT_GROUP\n" +#~ " mìní vlastníka a/nebo skupinu ka¾dého souboru,\n" +#~ " pouze kdy¾ jeho aktuální vlastník a/nebo " +#~ "skupina\n" +#~ " odpovídá zadaným. Jak vlastník tak skupina mù¾e " +#~ "být\n" +#~ " vynechána, a tedy nebude uva¾ována.\n" +#~ " -f, --silent, --quiet potlaèí vìt¹inu chybových zpráv\n" +#~ " --reference=RSOUBOR místo hodnot VLASTNÍK.SKUPINA pou¾ije " +#~ "vlastníka\n" +#~ " a skupinu souboru RSOUBOR\n" +#~ " -R, --recursive pracuje i se soubory a adresáøi v " +#~ "podadresáøích\n" +#~ " -v, --verbose vypí¹e informaci o ka¾dém zpracovávaném " +#~ "souboru\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" +#~ " Vlastník nebude zmìnìn, není-li zadán. Skupina nebude zmìnìna, není-li\n" +#~ "zadána, ale v pøípadì, ¾e uvedete za vlastníkem dvojteèku, bude skupina " +#~ "zmìnìna\n" +#~ "na pøihla¹ovací skupinu vlastníka. VLASTNÍKa a SKUPINu lze také zadat " +#~ "èíselnì\n" +#~ "stejnì jako symbolicky.\n" + +#, fuzzy +#~ msgid "" +#~ " -l, --link link files instead of copying\n" +#~ " -L, --dereference always follow symbolic links\n" +#~ " -p same as --preserve=mode,ownership," +#~ "timestamps\n" +#~ " --preserve[=ATTR_LIST] preserve the specified attributes " +#~ "(default:\n" +#~ " mode,ownership,timestamps), if possible\n" +#~ " additional attributes: links, all\n" +#~ " --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +#~ " --parents append source path to DIRECTORY\n" +#~ " -P same as `--no-dereference'\n" +#~ " -r copy recursively, non-directories as " +#~ "files\n" +#~ " WARNING: use -R instead when you might " +#~ "copy\n" +#~ " special files like FIFOs or /dev/zero\n" +#~ " --remove-destination remove each existing destination file " +#~ "before\n" +#~ " attempting to open it (contrast with --" +#~ "force)\n" +#~ msgstr "" +#~ "Kopíruje ZDROJ do CÍLe nebo více ZDROJù do ADRESÁØe.\n" +#~ "\n" +#~ " -a, --archive stejné jako pou¾ití pøepínaèù '-dpR'\n" +#~ " --backup=[TYP] vytvoøí zálo¾ní kopie pøepisovaných " +#~ "souborù\n" +#~ " -b jako --backup, ale bez argumentu\n" +#~ " -d, --no-dereference zachovává symbolické odkazy\n" +#~ " -f, --force bude mazat existující cíle bez optání\n" +#~ " -i, --interactive ptá se pøed pøepsáním\n" +#~ " -l, --link tvoøí odkazy místo kopírování\n" +#~ " -p, --preserve zachovává práva a èasy souborù, je-li to " +#~ "mo¾né\n" +#~ " -P, --parents pøidává zdrojovou cestu do cílového " +#~ "ADRESÁØe\n" +#~ " -r kopíruje rekurzivnì, co není adresáøem " +#~ "kopíruje\n" +#~ " jako by to byl soubor.\n" +#~ " POZOR: Pokud budete kopírovat speciální " +#~ "soubory\n" +#~ " jako tøeba roury nebo /dev/zero, pak " +#~ "radìji\n" +#~ " pou¾ijte -R\n" +#~ " --sparse=KDY øídí tvorbu souborù s dírami\n" +#~ " -R, --recursive kopíruje adresáøe rekurzivnì\n" +#~ " --strip-trailing-slashes odstraòuje lomítka na konci názvù v¹ech " +#~ "ZDROJù\n" +#~ " -s, --symbolic-link tvoøí symbolické odkazy místo kopírování\n" +#~ " -S, --suffix=PØÍPONA zmìní obvyklou pøíponu zálo¾ních souborù\n" +#~ " na PØÍPONU\n" +#~ " -u, --update kopíruje pouze, kdy¾ zdrojový soubor je\n" +#~ " novìj¹í ne¾ cílový, nebo kdy¾ cílový " +#~ "soubor\n" +#~ " neexistuje\n" +#~ " -v, --verbose vypisuje bli¾¹í informace o vykonávání " +#~ "pøíkazu\n" +#~ " -x, --one-file-system zùstane v jednom souborovém systému\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" +#~ " Implicitnì, jsou ZDROJové soubory s dírami detekovány a odpovídající " +#~ "CÍLový\n" +#~ "soubor je vytvoøen stejnì `dìravý'. Toto je voleno pøepínaèem --" +#~ "sparse=auto.\n" +#~ "Pøepínaèem --sparse=always øíkáme, ¾e v CÍLových souborech se mají " +#~ "tvoøit\n" +#~ "díry, jakmile ZDROJový soubor obsahuje dostateènì dlouhé sekvence " +#~ "nulových\n" +#~ "bajtù. Pøepínaèem --sparse=never tvorbì souborù s dírami zabráníme.\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "Copy a file, converting and formatting according to the options.\n" +#~ "\n" +#~ " bs=BYTES force ibs=BYTES and obs=BYTES\n" +#~ " cbs=BYTES convert BYTES bytes at a time\n" +#~ " conv=KEYWORDS convert the file as per the comma separated keyword " +#~ "list\n" +#~ " count=BLOCKS copy only BLOCKS input blocks\n" +#~ " ibs=BYTES read BYTES bytes at a time\n" +#~ " if=FILE read from FILE instead of stdin\n" +#~ " obs=BYTES write BYTES bytes at a time\n" +#~ " of=FILE write to FILE instead of stdout\n" +#~ " seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +#~ " skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "BLOCKS and BYTES may be followed by the following multiplicative " +#~ "suffixes:\n" +#~ "xM M, c 1, w 2, b 512, kD 1000, k 1024, MD 1,000,000, M 1,048,576,\n" +#~ "GD 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +#~ "Each KEYWORD may be:\n" +#~ "\n" +#~ " ascii from EBCDIC to ASCII\n" +#~ " ebcdic from ASCII to EBCDIC\n" +#~ " ibm from ASCII to alternated EBCDIC\n" +#~ " block pad newline-terminated records with spaces to cbs-size\n" +#~ " unblock replace trailing spaces in cbs-size records with newline\n" +#~ " lcase change upper case to lower case\n" +#~ " notrunc do not truncate the output file\n" +#~ " ucase change lower case to upper case\n" +#~ " swab swap every pair of input bytes\n" +#~ " noerror continue after read errors\n" +#~ " sync pad every input block with NULs to ibs-size; when used\n" +#~ " with block or unblock, pad with spaces rather than NULs\n" +#~ msgstr "" +#~ " Kopírování souboru, konverze a formátování. Toto v¹e lze navolit\n" +#~ "následujícími pøepínaèi.\n" +#~ "\n" +#~ " bs=BAJTÙ nastaví ibs=BAJTÙ a obs=BAJTÙ\n" +#~ " cbs=BAJTÙ konvertuje BAJTÙ bajtù najednou\n" +#~ " conv=KLÍÈ_SLOVA konvertuje podle èárkami oddìleného seznamu klíèových " +#~ "slov\n" +#~ " count=BLOKÙ kopíruje pouze BLOKÙ vstupních blokù\n" +#~ " ibs=BAJTÙ ète BAJTÙ bajtù najednou\n" +#~ " if=SOUBOR ète ze souboru SOUBOR, místo z stdin\n" +#~ " obs=BAJTÙ zapisuje BAJTÙ bajtù najednou\n" +#~ " of=SOUBOR zapisuje do souboru SOUBOR, místo do stdout. Pokud " +#~ "SOUBOR\n" +#~ " existuje výstup bude pøipojen k existujícímu obsahu\n" +#~ " seek=BLOKÙ pøeskoèí prvních BLOKÙ výstupních blokù velikosti " +#~ "'obs'\n" +#~ " skip=BLOKÙ pøeskoèí prvních BLOKÙ vstupních blokù velikosti 'ibs'\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" +#~ " Poèet BAJTÙ mù¾e mít dodatek: xM pro násobení èíslem M, c pro násobení\n" +#~ "jednou, w pro násobení dvìma, b - 512-ti, kD - 1000-ci, k - 1024,\n" +#~ "MD - 1 000 000, M - 1 048 576, GD - 1 000 000 000, G - 1 073 741 826. " +#~ "Ka¾dé\n" +#~ "KLÍÈ_SLOVO mù¾e být:\n" +#~ "\n" +#~ " ascii z EBCDIC do ASCII\n" +#~ " ebcdic z ASCII do EBCDIC\n" +#~ " ibm z ASCII do pozmìnìného EBCDIC\n" +#~ " block vyplní záznamy ukonèené zn. nového øádku mezerami\n" +#~ " do velikosti 'cbs'\n" +#~ " unblock zámìna koncových mezer v záznamech o velikosti 'cbs' na zn. " +#~ "nového\n" +#~ " øádku\n" +#~ " lcase zmìna velkých písmen na malá\n" +#~ " notrunc nezkracuje výstupní soubory\n" +#~ " ucase zmìna malých písmen na velká\n" +#~ " swab zámìna ka¾dého páru vstupních bajtù\n" +#~ " noerror pokraèuje i pøi vzniku chyby pøi ètení\n" +#~ " sync doplní ka¾dý vstupní blok nulovými bajty do velikosti 'ibs'\n" + +#~ msgid "" +#~ "Show information about the filesystem on which each FILE resides,\n" +#~ "or all filesystems by default.\n" +#~ "\n" +#~ " -a, --all include filesystems having 0 blocks\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " -H, --si likewise, but use powers of 1000 not 1024\n" +#~ " -i, --inodes list inode information instead of block usage\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l, --local limit listing to local filesystems\n" +#~ " -m, --megabytes like --block-size=1048576\n" +#~ " --no-sync do not invoke sync before getting usage info " +#~ "(default)\n" +#~ " -P, --portability use the POSIX output format\n" +#~ " --sync invoke sync before getting usage info\n" +#~ " -t, --type=TYPE limit listing to filesystems of type TYPE\n" +#~ " -T, --print-type print filesystem type\n" +#~ " -x, --exclude-type=TYPE limit listing to filesystems not of type " +#~ "TYPE\n" +#~ " -v (ignored)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ " Vypí¹e informace o souborových systémech, ve kterých ka¾dý SOUBOR " +#~ "le¾í,\n" +#~ "nebo implicitnì v¹ech souborových systémech.\n" +#~ "\n" +#~ " -a, --all také souborové systémy mající 0 blokù\n" +#~ " --block-size=VELIKOST pou¾ije tuto velikost bloku\n" +#~ " -h, --human-readable velikosti ve formátu èitelném pro èlovìka\n" +#~ " (napø. 1K 234M 2G)\n" +#~ " -H, --si podobnì jako pøedchozí, ale násobky 1000 ne 1024\n" +#~ " -i, --inodes výpis informací o i-uzlech místo o blocích\n" +#~ " -k, --kilobytes jako --block-size=1024. Implicitnì 512 bajtù,\n" +#~ " které odpovídají normì POSIX\n" +#~ " -l, --local omezení výpisu na lokální souborový systém\n" +#~ " -m, --megabytes jako --block-size=1048576. Implicitnì 512 bajtù,\n" +#~ " které odpovídají normì POSIX\n" +#~ " --no-sync nevolá 'sync' pøed získáním informací " +#~ "(implicitní)\n" +#~ " -P, --portability pou¾ije formát definovaný normou POSIX\n" +#~ " --sync zavolá 'sync' pøed získáním informací\n" +#~ " -t, --type=TYP ve výstupu pouze souborové systémy typu TYP\n" +#~ " -T, --print-type vypisuje typ souborového systému\n" +#~ " -x, --exclude-type=TYP ve výstupu nebudou souborové systémy typu TYP\n" +#~ " -v (ignorován)\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +#~ msgid "" +#~ "Summarize disk usage of each FILE, recursively for directories.\n" +#~ "\n" +#~ " -a, --all write counts for all files, not just directories\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -b, --bytes print size in bytes\n" +#~ " -c, --total produce a grand total\n" +#~ " -D, --dereference-args dereference PATHs when symbolic link\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " -H, --si likewise, but use powers of 1000 not 1024\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l, --count-links count sizes many times if hard linked\n" +#~ " -L, --dereference dereference all symbolic links\n" +#~ " -m, --megabytes like --block-size=1048576\n" +#~ " -S, --separate-dirs do not include size of subdirectories\n" +#~ " -s, --summarize display only a total for each argument\n" +#~ " -x, --one-file-system skip directories on different filesystems\n" +#~ " -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +#~ "FILE.\n" +#~ " --exclude=PAT Exclude files that match PAT.\n" +#~ " --max-depth=N print the total for a directory (or file, with --" +#~ "all)\n" +#~ " only if it is N or fewer levels below the " +#~ "command\n" +#~ " line argument; --max-depth=0 is the same as\n" +#~ " --summarize\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ " Sèítá diskový prostor zabraný ka¾dým SOUBORem, pro adresáøe i s " +#~ "obsahem\n" +#~ "podadresáøù.\n" +#~ "\n" +#~ " -a, --all vypí¹e souèet velikosti v¹ech souborù,\n" +#~ " ne pouze adresáøù\n" +#~ " --block-size=VELIKOST pou¾ije tuto velikost bloku\n" +#~ " -b, --bytes velikosti vypí¹e v bajtech\n" +#~ " -c, --total vypí¹e i celkový souèet\n" +#~ " -D, --dereference-args následuje symbolický odkaz, kdy¾ jako argument " +#~ "zadán\n" +#~ " -h, --human-readable vypisuje velikosti ve formátu èitelném pro lidi\n" +#~ " (napø. 1K 234M 2G)\n" +#~ " -H, --si jako pøedchozí, ale jednotky jsou násobkem 1000\n" +#~ " -k, --kilobytes jako --block-size=1024\n" +#~ " -l, --count-links jestli¾e jsou soubory pevnými odkazy na jeden " +#~ "soubor,\n" +#~ " sèítá velikosti, jako by to byly obyèejné " +#~ "soubory\n" +#~ " -L, --dereference následuje v¹echny symbolické odkazy\n" +#~ " -m, --megabytes jako --block-size=1048576\n" +#~ " -S, --separate-dirs nepoèítá do velikosti adresáøù velikosti jejich\n" +#~ " podadresáøù\n" +#~ " -s, --summarize vypí¹e pouze celkový souèet pro ka¾dý argument\n" +#~ " -x, --one-file-system pøeskoèí adresáøe na jiných souborových " +#~ "systémech\n" +#~ " -X SOUBOR, --exclude-from=SOUBOR pøeskoèí soubory, které vyhovují " +#~ "libovolnému\n" +#~ " reg.výr. ze souboru SOUBOR\n" +#~ " --exclude=REGVÝR pøeskoèí soubory vyhovující REGVÝR\n" +#~ " --max-depth=N vypisuje názvy adresáøù a celkové souèty pouze\n" +#~ " do N-té úrovnì adresáøù. Argument --max-depth=0\n" +#~ " je rovnocenný se --sumarize.\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +# dunno what means `make all components of the given DIRECTORY(ies)' - rzm +#~ msgid "" +#~ "In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +#~ "the existing DIRECTORY, while setting permission modes and owner/group.\n" +#~ "In the third format, create all components of the given DIRECTORY(ies).\n" +#~ "\n" +#~ " --backup[=CONTROL] make a backup of each existing destination file\n" +#~ " -b like --backup but does not accept an argument\n" +#~ " -c (ignored)\n" +#~ " -d, --directory treat all arguments as directory names; create all\n" +#~ " components of the specified directories\n" +#~ " -D create all leading components of DEST except the " +#~ "last,\n" +#~ " then copy SOURCE to DEST; useful in the 1st " +#~ "format\n" +#~ " -g, --group=GROUP set group ownership, instead of process' current " +#~ "group\n" +#~ " -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-" +#~ "xr-x\n" +#~ " -o, --owner=OWNER set ownership (super-user only)\n" +#~ " -p, --preserve-timestamps apply access/modification times of SOURCE " +#~ "files\n" +#~ " to corresponding destination files\n" +#~ " -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +#~ " -S, --suffix=SUFFIX override the usual backup suffix\n" +#~ " -v, --verbose print the name of each directory as it is created\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ " V prvních dvou formátech kopírování ZDROJe do CÍLe nebo více ZDROJù\n" +#~ "do ADRESÁØe, s nastavením u¾ivatelských práv a u¾ivatele/skupiny. Ve " +#~ "tøetím\n" +#~ "formátu, vytvoøení v¹ech komponent zadaného ADRESÁØE(ù).\n" +#~ "\n" +#~ " --backup=[TYP] vytvoøí zálo¾ní kopii pøed smazáním\n" +#~ " -b jako --backup, ale bez argumentu\n" +#~ " -c (ignorován)\n" +#~ " -d, --directory v¹echny argumenty jsou brány jako názvy " +#~ "adresáøù.\n" +#~ " V¹echny neexistující komponenty tìchto adresáøù\n" +#~ " jsou vytvoøeny.\n" +#~ " -D vytvoøí v¹echy úvodní komponenty CÍLe, kromì " +#~ "poslední\n" +#~ " -g, --group=SKUPINA nastaví skupinu souboru na SKUPINU\n" +#~ " -m, --mode=PRÁVA nastaví pøístupová práva souboru na PRÁVA (zadána " +#~ "jako\n" +#~ " pro chmod)\n" +#~ " -o, --owner=VLASTNÍK nastaví vlastníka souboru (pouze superu¾ivatel - " +#~ "root)\n" +#~ " -p, --preserve-timestamps èasy cílového souboru nastaví tak, jak byly\n" +#~ " nastaveny u zdrojového\n" +#~ " -s, --strip odstraní tabulky symbolù, pouze 1 a 2 formát\n" +#~ " -S, --suffix=PØÍPONA nastaví novou pøíponu zálo¾ních souborù\n" +#~ " -v, --verbose vypisuje jména v¹ech vytváøených adresáøù\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" + +#~ msgid "" +#~ "Create a link to the specified TARGET with optional LINK_NAME.\n" +#~ "If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +#~ "created in the current directory. When using the second form with more\n" +#~ "than one TARGET, the last argument must be a directory; create links\n" +#~ "in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +#~ "links with --symbolic. When creating hard links, each TARGET must " +#~ "exist.\n" +#~ "\n" +#~ " --backup[=CONTROL] make a backup of each existing destination " +#~ "file\n" +#~ " -b like --backup but does not accept an " +#~ "argument\n" +#~ " -d, -F, --directory hard link directories (super-user only)\n" +#~ " -f, --force remove existing destination files\n" +#~ " -n, --no-dereference treat destination that is a symlink to a\n" +#~ " directory as if it were a normal file\n" +#~ " -i, --interactive prompt whether to remove destinations\n" +#~ " -s, --symbolic make symbolic links instead of hard links\n" +#~ " -S, --suffix=SUFFIX override the usual backup suffix\n" +#~ " --target-directory=DIRECTORY specify the DIRECTORY in which to " +#~ "create\n" +#~ " the links\n" +#~ " -v, --verbose print name of each file before linking\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ " Tvoøí odkaz na zadaný CÍL s volitelným NÁZVEM_ODKAZU. Jestli¾e " +#~ "NÁZEV_ODKAZU\n" +#~ "není zadán, je vytvoøen odkaz v aktuálním adresáøi, se stejným názvem " +#~ "jako má\n" +#~ "CÍL. Pøi pou¾ití druhé formy s více ne¾ jedním CÍLem, poslední argument " +#~ "musí\n" +#~ "být ADRESÁØem; v tomto pøípadì, jsou pak vytvoøeny odkazy v adresáøi " +#~ "ADRESÁØ na\n" +#~ "CÍLe. Implicitnì jsou tvoøeny pevné odkazy, symbolické pomocí pøepínaèe\n" +#~ "--symbolic. Pøi tvorbì pevného odkazu musí v¹echny CÍLe existovat.\n" +#~ "\n" +#~ " --backup=[TYP] vytvoøí zálohu ka¾dého souboru, který má " +#~ "být\n" +#~ " odkazem pøepsán\n" +#~ " -b jako --backup, ale bez argumentu\n" +#~ " -d, -F, --directory pevný odkaz na adresáø (pouze " +#~ "superu¾ivatel)\n" +#~ " -f, --force vytváøí odkaz i tehdy, existuje-li soubor " +#~ "tého¾\n" +#~ " názvu (soubor bude smazán)\n" +#~ " -n, --no-dereference má-li být pøepsán symbolický odkaz na " +#~ "adresáø,\n" +#~ " pak jej sma¾e a vytvoøí po¾adovaný odkaz. " +#~ "Pokud\n" +#~ " by nebyl tento pøepínaè zadán, pak by byl " +#~ "odkaz\n" +#~ " vytvoøen v adresáøi, na který se odkaz " +#~ "odkazuje.\n" +#~ " -i, --interactive ptá se, zda smazat ji¾ existující soubor\n" +#~ " -s, --symbolic tvoøí symbolický odkaz místo pevného\n" +#~ " -S, --suffix=PØÍPONA mìní obvyklou pøíponu pro zálo¾ní soubory\n" +#~ " --target-directory=ADRESÁØ zadání ADRESÁØe, ve kterém vytvoøit " +#~ "odkazy\n" +#~ " -v, --verbose pøed vytvoøením odkazu na soubor, vypí¹e " +#~ "název\n" +#~ " tohoto souboru\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "List information about the FILEs (the current directory by default).\n" +#~ "Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +#~ "\n" +#~ " -a, --all do not hide entries starting with .\n" +#~ " -A, --almost-all do not list implied . and ..\n" +#~ " -b, --escape print octal escapes for nongraphic " +#~ "characters\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -B, --ignore-backups do not list implied entries ending with ~\n" +#~ " -c with -lt: sort by, and show, ctime (time of " +#~ "last\n" +#~ " modification of file status information)\n" +#~ " with -l: show ctime and sort by name\n" +#~ " otherwise: sort by ctime\n" +#~ " -C list entries by columns\n" +#~ " --color[=WHEN] control whether color is used to distinguish " +#~ "file\n" +#~ " types. WHEN may be `never', `always', or " +#~ "`auto'\n" +#~ " -d, --directory list directory entries instead of contents\n" +#~ " -D, --dired generate output designed for Emacs' dired " +#~ "mode\n" +#~ " -f do not sort, enable -aU, disable -lst\n" +#~ " -F, --classify append indicator (one of */=@|) to entries\n" +#~ " --format=WORD across -x, commas -m, horizontal -x, long -" +#~ "l,\n" +#~ " single-column -1, verbose -l, vertical -C\n" +#~ " --full-time like -l --time-style=full-iso\n" +#~ msgstr "" +#~ " Vypisuje informace o SOUBORech (implicitnì z aktuálního adresáøe). " +#~ "Jestli¾e\n" +#~ "není zadán ¾ádný z pøepínaèù -cftuSUX nebo --sort, výstup bude seøazen\n" +#~ "abecednì.\n" +#~ "\n" +#~ " -a, --all vypí¹e v¹echny soubory i ty zaèínající " +#~ "teèkou\n" +#~ " -A, --almost-all vypí¹e v¹echny soubory, kromì souborù '.' a " +#~ "'..'\n" +#~ " -b, --escape vypí¹e negrafické znaky osmièkovì\n" +#~ " --block-size=VELIKOST pou¾ije tuto velikost bloku\n" +#~ " -B, --ignore-backups nevypisuje soubory konèící na ~\n" +#~ " -c s -lt: øadí podle ctime a vypisuje ctime " +#~ "(èas\n" +#~ " poslední zmìny i-uzlových informací);\n" +#~ " s -l: vypisuje ctime, øadí podle názvu " +#~ "souboru;\n" +#~ " jinak: øadí podle ctime\n" +#~ " -C vypí¹e soubory ve sloupcích\n" +#~ " --color[=KDY] urèuje kdy jsou barvy pou¾ívány k rozli¹ení " +#~ "typù\n" +#~ " souborù. KDY mù¾e být `never', `always' " +#~ "nebo\n" +#~ " `auto'\n" +#~ " -d, --directory vypí¹e názvy adresáøù místo jejich obsahu\n" +#~ " -D, --dired generuje výstup formátovaný pro Emacsový\n" +#~ " mód 'dired'\n" +#~ " -f neseøadí výstup, povolí -aU, zaká¾e -lst\n" +#~ " -F, --classify k názvùm souborù pøidá znak urèující jejich " +#~ "typ\n" +#~ " (jeden z */=@|)\n" +#~ " --format=SLOVO across jako -x, commas jako -m, horizontal\n" +#~ " jako -x, long jako -l, single-column jako -" +#~ "1,\n" +#~ " verbose jako -l, vertical jako -C\n" +#~ " --full-time vypí¹e celé datum i celý èas\n" + +#, fuzzy +#~ msgid "" +#~ " -g like -l, but do not list owner\n" +#~ " -G, --no-group inhibit display of group information\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " --si likewise, but use powers of 1000 not 1024\n" +#~ " -H, --dereference-command-line follow symbolic links on the command " +#~ "line\n" +#~ " --indicator-style=WORD append indicator with style WORD to entry " +#~ "names:\n" +#~ " none (default), classify (-F), file-type (-" +#~ "p)\n" +#~ " -i, --inode print index number of each file\n" +#~ " -I, --ignore=PATTERN do not list implied entries matching shell " +#~ "PATTERN\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l use a long listing format\n" +#~ " -L, --dereference when showing file information for a " +#~ "symbolic\n" +#~ " link, show information for the file the " +#~ "link\n" +#~ " references rather than for the link " +#~ "itself\n" +#~ " -m fill width with a comma separated list of " +#~ "entries\n" +#~ msgstr "" +#~ " -g (ignorován)\n" +#~ " -G, --no-group nevypisuju informace o skupinách\n" +#~ " -h, --human-readable vypisuje velikosti ve formátu pro èlovìka\n" +#~ " (napø: 1K, 234M, 2G)\n" +#~ " -H, --si jako pøedchozí, ale jednotky jsou násobky " +#~ "1000\n" +#~ " a ne 1024.\n" +#~ " --indicator-style=SLOVO pøidává indikátory stylem SLOVO k názvùm " +#~ "souborù\n" +#~ " SLOVO mù¾e být: none (implicitnì), classify " +#~ "(-F),\n" +#~ " file-type (-p)\n" +#~ " -i, --inode ke ka¾dému souboru vypí¹e jeho i-uzlové " +#~ "èíslo\n" +#~ " -I, --ignore=VZOR nevypisuje soubory vyhovující VZORu\n" +#~ " -k, --kilobytes jako --block-size=1024\n" +#~ " -l vypí¹e výstup ve dlouhém formátu\n" +#~ " -L, --dereference u symbolického odkazu vypí¹e soubor, na " +#~ "který\n" +#~ " odkaz ukazuje\n" +#~ " -m vypí¹e soubory jako seznam jmen souborù " +#~ "oddìlených\n" +#~ " èárkami\n" +#~ " -n, --numeric-uid-gid místo jména u¾ivatele (UID) a skupiny (GID)\n" +#~ " vypisuje èísla\n" +#~ " -N, --literal vypí¹e jména souborù tak, jak jsou na disku\n" +#~ " ulo¾ena. Nezpracovává øídící znaky\n" +#~ " -o dlouhý formát bez informací o skupinách\n" +#~ " -p, --file-type k názvùm souborù pøidá znak urèující jejich " +#~ "typ\n" +#~ " (jeden z /=@|)\n" +#~ " -q, --hide-control-chars vypí¹e '?' místo negrafických znakù\n" +#~ " --show-control-chars vypí¹e negrafické znaky tak jak jsou " +#~ "(implicitní,\n" +#~ " jestli¾e program není `ls' a výstup není na\n" +#~ " terminál)\n" +#~ " -Q, --quote-name vlo¾í názvy souborù do uvozovek\n" +#~ " --quoting-style=SLOVO pou¾ije kvótovací styl SLOVO pro jména " +#~ "souborù.\n" +#~ " SLOVO mù¾e být:\n" +#~ " literal, locale, shell, shell-always, c, " +#~ "escape\n" +#~ " -r, --reverse opaèné uspoøádání pøi øazení\n" +#~ " -R, --recursive vypí¹e adresáøe rekurzivnì\n" +#~ " -s, --size vypí¹e velikost ka¾dého souboru v blocích\n" + +#, fuzzy +#~ msgid "" +#~ " -S sort by file size\n" +#~ " --sort=WORD extension -X, none -U, size -S, time -t,\n" +#~ " version -v\n" +#~ " status -c, time -t, atime -u, access -u, use " +#~ "-u\n" +#~ " --time=WORD show time as WORD instead of modification " +#~ "time:\n" +#~ " atime, access, use, ctime or status; use\n" +#~ " specified time as sort key if --sort=time\n" +#~ " --time-style=WORD show times using style WORD:\n" +#~ " full-iso, iso, locale, posix-iso\n" +#~ " -t sort by modification time\n" +#~ " -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +#~ " -u with -lt: sort by, and show, access time\n" +#~ " with -l: show access time and sort by " +#~ "name\n" +#~ " otherwise: sort by access time\n" +#~ " -U do not sort; list entries in directory " +#~ "order\n" +#~ " -v sort by version\n" +#~ " -w, --width=COLS assume screen width instead of current " +#~ "value\n" +#~ " -x list entries by lines instead of by columns\n" +#~ " -X sort alphabetically by entry extension\n" +#~ " -1 list one file per line\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "By default, color is not used to distinguish types of files. That is\n" +#~ "equivalent to using --color=none. Using the --color option without the\n" +#~ "optional WHEN argument is equivalent to using --color=always. With\n" +#~ "--color=auto, color codes are output only if standard output is " +#~ "connected\n" +#~ "to a terminal (tty).\n" +#~ msgstr "" +#~ " -S výstup seøadí podle délky souborù\n" +#~ " --sort=SLOVO výstup seøadí podle SLOVA:\n" +#~ " extension (-X), none (-U), size (-S), time (-" +#~ "t)\n" +#~ " version (-v)\n" +#~ " status (-c), time (-t), atime (-u), access (-" +#~ "u),\n" +#~ " use (-u)\n" +#~ " --time=SLOVO vypisuje èas podle SLOVA:\n" +#~ " atime, access, use, ctime nebo status (-c);\n" +#~ " jestli¾e je zadán pøepínaè --sort=time, " +#~ "pou¾ije\n" +#~ " se tento èas jako øadící klíè\n" +#~ " -t výstup seøadí podle èasu poslední zmìny " +#~ "souboru\n" +#~ " -T, --tabsize=SLOUPCÙ pozice tabelátoru ka¾dých SLOUPCÙ znakù " +#~ "(impl. 8)\n" +#~ " -u s -lt: øadí podle atime a také jej " +#~ "vypisuje;\n" +#~ " s -l: vypisuje atime, ale øadí podle názvù " +#~ "souborù\n" +#~ " jinak: øadí podle atime\n" +#~ " -U zaká¾e seøazení výstupu, názvy souborù " +#~ "budou\n" +#~ " vypsány v tom poøadí v jakém jsou v " +#~ "adresáøi\n" +#~ " -v seøadí výstup podle verzí souborù\n" +#~ " -w, --width=SLOUPCÙ pou¾ije tuto ¹íøku obrazovky pøi vypisování\n" +#~ " -x jména souborù vypí¹e po øádcích místo po " +#~ "sloupcích\n" +#~ " -X výstup seøadí podle pøípon souborù\n" +#~ " -1 vypí¹e jeden soubor na jeden øádek\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" +#~ " Implictnì není k rozli¹ování typù souborù barva pou¾ívána. To je " +#~ "rovnocenné\n" +#~ "s pou¾itím pøepínaèe --color=none. Pou¾ití pøepínaèe --color bez " +#~ "argumentu\n" +#~ "KDY je rovnocenné s pou¾itím pøepínaèe --color=always. Pøepínaè --" +#~ "color=auto\n" +#~ "zpùsobí, ¾e barvy budou pou¾ity pouze, je-li standardní výstup pøipojen\n" +#~ "k terminálu (tty).\n" + +#, fuzzy +#~ msgid "" +#~ "Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +#~ "for even very expensive hardware probing to recover the data.\n" +#~ "\n" +#~ " -f, --force change permissions to allow writing if necessary\n" +#~ " -n, --iterations=N Overwrite N times instead of the default (%d)\n" +#~ " -s, --size=N shred this many bytes (suffixes like k, M, G accepted)\n" +#~ " -u, --remove truncate and remove file after overwriting\n" +#~ " -v, --verbose show progress\n" +#~ " -x, --exact do not round file sizes up to the next full block\n" +#~ " -z, --zero add a final overwrite with zeros to hide shredding\n" +#~ " - shred standard output\n" +#~ " --help display this help and exit\n" +#~ " --version print version information and exit\n" +#~ "\n" +#~ "Delete FILE(s) if --remove (-u) is specified. The default is not to " +#~ "remove\n" +#~ "the files because it is common to operate on device files like /dev/hda,\n" +#~ "and those files usually should not be removed. When operating on " +#~ "regular\n" +#~ "files, most people use the --remove option.\n" +#~ "\n" +#~ "CAUTION: Note that shred relies on a very important assumption:\n" +#~ "that the filesystem overwrites data in place. This is the traditional\n" +#~ "way to do things, but many modern filesystem designs do not satisfy this\n" +#~ "assumption. The following are examples of filesystems on which shred is\n" +#~ "not effective:\n" +#~ "\n" +#~ "* log-structured or journaled filesystems, such as those supplied with\n" +#~ " AIX and Solaris (and JFS, ReiserFS, XFS, etc.)\n" +#~ "\n" +#~ "* filesystems that write redundant data and carry on even if some writes\n" +#~ " fail, such as RAID-based filesystems\n" +#~ "\n" +#~ "* filesystems that make snapshots, such as Network Appliance's NFS " +#~ "server\n" +#~ "\n" +#~ "* filesystems that cache in temporary locations, such as NFS\n" +#~ " version 3 clients\n" +#~ "\n" +#~ "* compressed filesystems\n" +#~ "\n" +#~ "In addition, file system backups and remote mirrors may contain copies\n" +#~ "of the file that cannot be removed, and that will allow a shredded file\n" +#~ "to be recovered later.\n" +#~ msgstr "" +#~ " Bezpeèné mazání souborù, najprve je v¾dy soubor pøepsán, aby byl znièen " +#~ "jeho\n" +#~ "obsah a následnì je teprve soubor smazán.\n" +#~ "\n" +#~ " -f, --force povolí zmìnu práva pro zápis do souboru, jestli¾e\n" +#~ " je to nutné\n" +#~ " -n, --iterations=N pøepí¹e N-krát, místo implicitního poètu (%d)\n" +#~ " -s, --size=N aplikuje na tuto délku souboru (pøípony jako k, M, " +#~ "G\n" +#~ " jsou mo¾né)\n" +#~ " -u, --remove zkrátí a sma¾e soubor po pøepsání\n" +#~ " -v, --verbose výpis informací o prùbìhu\n" +#~ " -x, --exact nezaokrouhluje velikost souboru nahoru na celé " +#~ "bloky\n" +#~ " -z, --zero pøidá poslední fázi pøepisu nulami\n" +#~ " - pøepisuje standardní výstup\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí" + +#~ msgid "" +#~ "Update the access and modification times of each FILE to the current " +#~ "time.\n" +#~ "\n" +#~ " -a change only the access time\n" +#~ " -c, --no-create do not create any files\n" +#~ " -d, --date=STRING parse STRING and use it instead of current time\n" +#~ " -f (ignored)\n" +#~ " -m change only the modification time\n" +#~ " -r, --reference=FILE use this file's times instead of current time\n" +#~ " -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current " +#~ "time\n" +#~ " --time=WORD set time given by WORD: access atime use (same " +#~ "as -a)\n" +#~ " modify mtime (same as -m)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Note that the three time-date formats recognized for the -d and -t " +#~ "options\n" +#~ "and for the obsolescent argument are all different.\n" +#~ msgstr "" +#~ " Nastaví èas posledního pøístupu a poslední zmìny ka¾dého zadaného " +#~ "SOUBORU\n" +#~ "na aktuální èas.\n" +#~ "\n" +#~ " -a zmìní pouze èas posledního pøístupu\n" +#~ " -c, --no-create nevytvoøí nové soubory\n" +#~ " -d, --date=ØETÌZEC analyzuje ØETÌZEC a pou¾ije ho místo aktuálního " +#~ "èasu\n" +#~ " -f (ignorován)\n" +#~ " -m zmìní pouze èas poslední zmìny souboru\n" +#~ " -r, --reference=SOUBOR pou¾ije èasy SOUBORu místo aktuálního èasu\n" +#~ " -t ÈAS pou¾ije [[CC]YY]MMDDhhmm[.ss] místo aktuálního " +#~ "èasu\n" +#~ " --time=SLOVO nastaví ÈAS zadaný SLOVEM: \n" +#~ " access, atime, use (jako -a)\n" +#~ " modify, mtime (jako -m)\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" +#~ "Formáty èasù pro pøepínaèe -d, -t a pro zastaralou syntaxi jsou rùzné.\n" + +#~ msgid "Copyright (C) 2001 Free Software Foundation, Inc." +#~ msgstr "Copyright (C) 2001 Free Software Foundation, Inc." + +#~ msgid "" +#~ "when creating character special files, major and minor device\n" +#~ "numbers must be specified" +#~ msgstr "" +#~ "pøi vytváøení speciálního znakového zaøízení, musí být zadáno hlavní\n" +#~ "a vedlej¹í èíslo zaøízení" + +#, fuzzy +#~ msgid "virtual memory exhausted" +#~ msgstr "pamì» vyèerpána" + +#, fuzzy +#~ msgid "Memory exhausted" +#~ msgstr "pamì» vyèerpána" + +#~ msgid "group of %s changed to %s\n" +#~ msgstr "skupina souboru %s zmìnìna na %s\n" + +#~ msgid "you are not a member of group `%s'" +#~ msgstr "nejste èlenem skupiny `%s'" + +#~ msgid "owner of %s changed to " +#~ msgstr "vlastník souboru %s zmìnìn na " + +#, fuzzy +#~ msgid "cannot remove old link to `%s'" +#~ msgstr "ioctl na `%s' není mo¾né vykonat" + +#, fuzzy +#~ msgid "cannot make fifo `%s'" +#~ msgstr "ioctl na `%s' není mo¾né vykonat" + +#~ msgid "days" +#~ msgstr "dny" + +#~ msgid "users" +#~ msgstr "u¾ivatelé" + +#, fuzzy +#~ msgid "%s: only one signal specififier allowed" +#~ msgstr "mù¾e být zadán pouze jeden argument" + +#, fuzzy +#~ msgid "" +#~ "Display the current time in the given FORMAT, or set the system date.\n" +#~ "\n" +#~ " -d, --date=STRING display time described by STRING, not `now'\n" +#~ " -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +#~ msgstr "" +#~ "Vypí¹e aktuální èas v daném FORMÁTu, nebo nastaví datum v systému.\n" +#~ "\n" +#~ " -d, --date=ØETÌZEC vypí¹e èas zadaný jako ØETÌZEC, nikoli " +#~ "aktuální\n" +#~ " -f, --file=DATASOUBOR jako --date, ale èasy jsou v DATASOUBORu,\n" +#~ " jeden èas na jeden øádek\n" +#~ " -I, --iso-8601[=TIMESPEC] vypí¹e datum a èas podle ISO-8601.\n" +#~ " Bude-li TIMESPEC=`date' (nebo nebude " +#~ "nastavena)\n" +#~ " vypí¹e pouze datum. Hodnoty `hours', " +#~ "`minutes',\n" +#~ " nebo `seconds' zpùsobí výpis datumu a èasu\n" +#~ " se odpovídající pøesností.\n" +#~ " -r, --reference=SOUBOR vypí¹e èas poslední zmìny souboru SOUBOR\n" +#~ " -R, --rfc-822 vypí¹e datum podle RFC-822\n" +#~ " -s, --set=ØETÌZEC nastaví datum podle ØETÌZCE\n" +#~ " -u, --utc, --universal nastaví nebo vypí¹e UTC (Coordinated Universal " +#~ "Time)\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèi\n" + +#, fuzzy +#~ msgid "" +#~ "Run COMMAND with root directory set to NEWROOT.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolní souèet a délku v bajtech ka¾dého SOUBORu.\n" +#~ "\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "FORMAT controls the output. The only valid option for the second form\n" +#~ "specifies Coordinated Universal Time. Interpreted sequences are:\n" +#~ "\n" +#~ " %%%% a literal %%\n" +#~ " %%a locale's abbreviated weekday name (Sun..Sat)\n" +#~ " %%A locale's full weekday name, variable length (Sunday..Saturday)\n" +#~ " %%b locale's abbreviated month name (Jan..Dec)\n" +#~ " %%B locale's full month name, variable length (January..December)\n" +#~ " %%c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +#~ " %%C century (year divided by 100 and truncated to an integer) [00-" +#~ "99]\n" +#~ " %%d day of month (01..31)\n" +#~ " %%D date (mm/dd/yy)\n" +#~ " %%e day of month, blank padded ( 1..31)\n" +#~ " %%h same as %%b\n" +#~ " %%H hour (00..23)\n" +#~ " %%I hour (01..12)\n" +#~ " %%j day of year (001..366)\n" +#~ " %%k hour ( 0..23)\n" +#~ " %%l hour ( 1..12)\n" +#~ " %%m month (01..12)\n" +#~ " %%M minute (00..59)\n" +#~ " %%n a newline\n" +#~ " %%p locale's AM or PM\n" +#~ " %%r time, 12-hour (hh:mm:ss [AP]M)\n" +#~ " %%s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +#~ " %%S second (00..60)\n" +#~ " %%t a horizontal tab\n" +#~ " %%T time, 24-hour (hh:mm:ss)\n" +#~ " %%u day of week (1..7); 1 represents Monday\n" +#~ " %%U week number of year with Sunday as first day of week (00..53)\n" +#~ " %%V week number of year with Monday as first day of week (01..53)\n" +#~ " %%w day of week (0..6); 0 represents Sunday\n" +#~ " %%W week number of year with Monday as first day of week (00..53)\n" +#~ " %%x locale's date representation (mm/dd/yy)\n" +#~ " %%X locale's time representation (%%H:%%M:%%S)\n" +#~ " %%y last two digits of year (00..99)\n" +#~ " %%Y year (1970...)\n" +#~ " %%z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +#~ " %%Z time zone (e.g., EDT), or nothing if no time zone is " +#~ "determinable\n" +#~ "\n" +#~ "By default, date pads numeric fields with zeroes. GNU date recognizes\n" +#~ "the following modifiers between `%%' and a numeric directive.\n" +#~ "\n" +#~ " `-' (hyphen) do not pad the field\n" +#~ " `_' (underscore) pad the field with spaces\n" +#~ msgstr "" +#~ "\n" +#~ " Výstup je urèen øetìzcem FORMÁT. Pro druhou formu zápisu mohou být " +#~ "pou¾ity\n" +#~ "pouze pøepínaèe urèující UTC. Interpretované sekvence jsou:\n" +#~ "\n" +#~ " %%%% znak %%\n" +#~ " %%a zkrácené jméno dne podle lokalizace (Sun..Sat)\n" +#~ " %%A celé jméno dne podle lokalizace (Sunday..Saturday)\n" +#~ " %%b zkrácené jméno mìsíce podle lokalizace (Jan..Dec)\n" +#~ " %%B celé jméno mìsíce podle lokalizace (January..December)\n" +#~ " %%c datum a èas podle lokalizace (Sat Nov 04 12:02:33 EST 1989)\n" +#~ " %%d èíslo dne v mìsíci (01..31)\n" +#~ " %%D datum (mm/dd/yy)\n" +#~ " %%e den v mìsíci, zarovnaný mezerami ( 1..31)\n" +#~ " %%h jako %%b\n" +#~ " %%H hodina (00..23)\n" +#~ " %%I hodina (01..12)\n" +#~ " %%j èíslo dne v roce (001..366)\n" +#~ " %%k hodina ( 0..23)\n" +#~ " %%l hodina ( 1..12)\n" +#~ " %%m mìsíc (01..12)\n" +#~ " %%M minuta (00..59)\n" +#~ " %%n nový øádek\n" +#~ " %%p øetìzec odpovídající anglickým AM a PM podle lokalizace\n" +#~ " %%r èas, 12-hodinový formát (hh:mm:ss [AP]M)\n" +#~ " %%s poèet sekund od `00:00:00 1.1.1970 UTC' (roz¹íøení GNU)\n" +#~ " %%S sekundy (00..61)\n" +#~ " %%t horizontální tabulátor\n" +#~ " %%T èas, 24-hodinový formát (hh:mm:ss)\n" +#~ " %%U èíslo týdne v daném roce, nedìle jako první den v týdnu (00..53)\n" +#~ " %%V èíslo týdne v daném roce, pondìlí jako první den v týdnu " +#~ "(01..53)\n" +#~ " %%w den v týdnu (0..6); 0 znamená nedìle\n" +#~ " %%W èíslo týdne v daném roce, pondìlí jako první den v týdnu " +#~ "(00..53)\n" +#~ " %%x reprezentace data (mm/dd/yy) podle lokalizace\n" +#~ " %%X reprezentace èasu (%%H:%%M:%%S) podle lokalizace\n" +#~ " %%y poslední dvì èíslice letopoètu (00..99)\n" +#~ " %%Y rok (1970...)\n" +#~ " %%z èasové pásmo podle RFC-822 (-0500) (nestandardní roz¹íøení)\n" +#~ " %%Z èasové pásmo (pø.: EDT), nebo prázdný øetìzec, pokud není mo¾no " +#~ "èasové\n" +#~ " pásmo urèit\n" +#~ "\n" +#~ " Implicitnì jsou numerické polo¾ky data zarovnány nulami. Formát data " +#~ "podle\n" +#~ "GNU umo¾òuje následující modifikátory mezi `%%' a specifikací " +#~ "numerického\n" +#~ "výstupu.\n" +#~ "\n" +#~ " `-' (spojovník) nezarovnání polo¾ky\n" +#~ " `_' (podtr¾ítko) zarovnání polo¾ky mezerami\n" + +#~ msgid "" +#~ "Echo the STRING(s) to standard output.\n" +#~ "\n" +#~ " -n do not output the trailing newline\n" +#~ " -e enable interpretation of the backslash-escaped " +#~ "characters\n" +#~ " listed below\n" +#~ " -E disable interpretation of those sequences in STRINGs\n" +#~ " --help display this help and exit (should be alone)\n" +#~ " --version output version information and exit (should be alone)\n" +#~ "\n" +#~ "Without -E, the following sequences are recognized and interpolated:\n" +#~ "\n" +#~ " \\NNN the character whose ASCII code is NNN (octal)\n" +#~ " \\\\ backslash\n" +#~ " \\a alert (BEL)\n" +#~ " \\b backspace\n" +#~ " \\c suppress trailing newline\n" +#~ " \\f form feed\n" +#~ " \\n new line\n" +#~ " \\r carriage return\n" +#~ " \\t horizontal tab\n" +#~ " \\v vertical tab\n" +#~ msgstr "" +#~ "Vypí¹e ØETÌZEC na standardní výstup.\n" +#~ "\n" +#~ " -n bez ukonèovacího znaku nového øádku\n" +#~ " -e povolí interpretaci escape sekvencí zaèínajících znakem " +#~ "\\\n" +#~ " a vysaných ní¾e\n" +#~ " -E zaká¾e interpretaci nìkterých sekvencí v ØETÌZCI\n" +#~ " --help vypí¹e tuto nápovìdu (pouze jako jedinný argument)\n" +#~ " --version vypí¹e oznaèení verze (pouze jako jedinný argument)\n" +#~ "\n" +#~ "Pokud není -E zadáno, jsou následující sekvence interpretovány " +#~ "následovnì:\n" +#~ "\n" +#~ " \\NNN znak s ascii kódem NNN (osmièkovì)\n" +#~ " \\\\ zpìtné lomítko (backslash)\n" +#~ " \\a zvonek (BEL)\n" +#~ " \\b backspace\n" +#~ " \\c bez ukonèení znakem pro nový øádek\n" +#~ " \\f znak vysunutí formuláøe (form feed)\n" +#~ " \\n znak nového øádku\n" +#~ " \\r návrat vozíku (carriage return)\n" +#~ " \\t horizontální tabelátor\n" +#~ " \\v vertikální tabelátor\n" + +#, fuzzy +#~ msgid "" +#~ "Print the value of EXPRESSION to standard output. A blank line below\n" +#~ "separates increasing precedence groups. EXPRESSION may be:\n" +#~ "\n" +#~ " ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +#~ "\n" +#~ " ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +#~ "\n" +#~ " ARG1 < ARG2 ARG1 is less than ARG2\n" +#~ " ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +#~ " ARG1 = ARG2 ARG1 is equal to ARG2\n" +#~ " ARG1 != ARG2 ARG1 is unequal to ARG2\n" +#~ " ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +#~ " ARG1 > ARG2 ARG1 is greater than ARG2\n" +#~ "\n" +#~ " ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +#~ " ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +#~ "\n" +#~ " ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +#~ " ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +#~ " ARG1 %% ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +#~ "\n" +#~ " STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +#~ "\n" +#~ " match STRING REGEXP same as STRING : REGEXP\n" +#~ " substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +#~ " index STRING CHARS index in STRING where any CHARS is found, or " +#~ "0\n" +#~ " length STRING length of STRING\n" +#~ " + TOKEN interpret TOKEN as a string, even if it is " +#~ "a\n" +#~ " keyword like `match' or an operator like " +#~ "`/'\n" +#~ "\n" +#~ " ( EXPRESSION ) value of EXPRESSION\n" +#~ msgstr "" +#~ " Vypí¹e hodnotu VÝRAZu na standardní výstup. Prázdný øádek, v " +#~ "následujícím\n" +#~ "výpise, oddìluje skupiny operátorù s rùznou prioritou, priorita " +#~ "operátorù\n" +#~ "je rostoucí. VÝRAZ mù¾e být:\n" +#~ "\n" +#~ " ARG1 | ARG2 ARG1 pokud není prázdný nebo 0, jinak ARG2\n" +#~ "\n" +#~ " ARG1 & ARG2 ARG1 pokud ¾ádný argument není prázdný (\"\") nebo 0, " +#~ "jinak 0\n" +#~ "\n" +#~ " ARG1 < ARG2 ARG1 je men¹í ne¾ ARG2\n" +#~ " ARG1 <= ARG2 ARG1 je men¹í nebo roven ARG2\n" +#~ " ARG1 = ARG2 ARG1 je roven ARG2\n" +#~ " ARG1 != ARG2 ARG1 není roven ARG2\n" +#~ " ARG1 >= ARG2 ARG1 je vìt¹í nebo roven ARG2\n" +#~ " ARG1 > ARG2 ARG1 je vìt¹í ne¾ ARG2\n" +#~ "\n" +#~ " ARG1 + ARG2 aritmetický souèet ARG1 a ARG2\n" +#~ " ARG1 - ARG2 aritmetický rozdíl ARG1 a ARG2\n" +#~ "\n" +#~ " ARG1 * ARG2 aritmetický souèin ARG1 a ARG2\n" +#~ " ARG1 / ARG2 aritmetický podíl ARG1 / ARG2\n" +#~ " ARG1 %% ARG2 zbytek po aritmetickém dìlení ARG1 / ARG2\n" +#~ "\n" +#~ " ØETÌZEC : REGVÝR vyhodnocení REGVÝR v ØETÌZCI\n" +#~ "\n" +#~ " match ØETÌZEC REGVÝR stejné jako ØETÌZEC : REGVÝR\n" +#~ " substr ØETÌZEC POZICE DÉLKA podøetìzec ØETÌZCE, POZICE je poèítána od " +#~ "1\n" +#~ " index ØETÌZEC ZNAKY pozice prvního výskytu libovolného znaku ze " +#~ "ZNAKÙ\n" +#~ " v ØETÌZCI, v pøípadì neúspìchu 0\n" +#~ " length ØETÌZEC délka ØETÌZCE\n" +#~ "\n" +#~ " ( VÝRAZ ) hodnota VÝRAZu\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " -l produce long format output for the specified USERs\n" +#~ " -b omit the user's home directory and shell in long " +#~ "format\n" +#~ " -h omit the user's project file in long format\n" +#~ " -p omit the user's plan file in long format\n" +#~ " -s do short format output, this is the default\n" +#~ " -f omit the line of column headings in short format\n" +#~ " -w omit the user's full name in short format\n" +#~ " -i omit the user's full name and remote host in short " +#~ "format\n" +#~ " -q omit the user's full name, remote host and idle time\n" +#~ " in short format\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "A lightweight `finger' program; print user information.\n" +#~ "The utmp file will be %s.\n" +#~ msgstr "" +#~ "\n" +#~ " -l dlouhý výstupní formát\n" +#~ " -b nevypisování domovského adresáøe a shellu v dlouhém " +#~ "formátu\n" +#~ " -h nevypisování projektu v dlouhém formátu\n" +#~ " -p nevypisování plánu v dlouhém formátu\n" +#~ " -s krátký výstupní formát (implicitní)\n" +#~ " -f nevypisuje hlavièky sloupcù v krátkém formátu\n" +#~ " -w nevypisuje celé jméno v krátkém formátu\n" +#~ " -i nevypisuje celé jméno a odkud v krátkém formátu\n" +#~ " -q nevypisuje celé jméno, odkud a prostoj v krátkém " +#~ "formátu\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" +#~ "Odlehèený program `finger'; vypisuje informace o u¾ivateli.\n" +#~ "Utmp soubor bude %s.\n" + +#~ msgid "" +#~ "Print ARGUMENT(s) according to FORMAT.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "FORMAT controls the output as in C printf. Interpreted sequences are:\n" +#~ "\n" +#~ " \\\" double quote\n" +#~ " \\0NNN character with octal value NNN (0 to 3 digits)\n" +#~ " \\\\ backslash\n" +#~ " \\a alert (BEL)\n" +#~ " \\b backspace\n" +#~ " \\c produce no further output\n" +#~ " \\f form feed\n" +#~ " \\n new line\n" +#~ " \\r carriage return\n" +#~ " \\t horizontal tab\n" +#~ " \\v vertical tab\n" +#~ " \\xNNN byte with hexadecimal value NNN (1 to 3 digits)\n" +#~ "\n" +#~ " \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +#~ " \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +#~ " %%%% a single %%\n" +#~ " %%b ARGUMENT as a string with `\\' escapes interpreted\n" +#~ "\n" +#~ "and all C format specifications ending with one of diouxXfeEgGcs, with\n" +#~ "ARGUMENTs converted to proper type first. Variable widths are handled.\n" +#~ msgstr "" +#~ "Vypí¹e ARGUMENT(y) urèené FORMÁTem.\n" +#~ "\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" +#~ "FORMÁT urèuje výstup (jako v jazyce C). Interpretované sekvence jsou:\n" +#~ "\n" +#~ " \\\" uvozovka\n" +#~ " \\0NNN znak s osmièkovou hodnotou NNN (1 a¾ 3 èíslice)\n" +#~ " \\\\ zpìtné lomítko (backslash)\n" +#~ " \\a zvonek (BEL)\n" +#~ " \\b backspace\n" +#~ " \\c ¾ádný dal¹í výstup\n" +#~ " \\f posun formuláøe (form feed)\n" +#~ " \\n nový øádek (new line)\n" +#~ " \\r návrat vozíku (carriage return)\n" +#~ " \\t horizontální tabelátor (horizontal tab)\n" +#~ " \\v vertikální tabelátor (vertical tab)\n" +#~ " \\xNNN znak s ¹estnáctkovou hodnotou NNN (1 a¾ 3 èíslice)\n" +#~ "\n" +#~ " \\uNNNN znak s ¹estnáctkovou hodnotou NNNN (4 èíslice)\n" +#~ " \\UNNNNNNNN znak s ¹estnáctkovou hodnotou NNNNNNNN (8 èíslic)\n" +#~ " %%%% jeden znak 'procenta' (%%)\n" +#~ " %%b ARGUMENT jako øetìzec, kde jsou interpretovány escape sekvence " +#~ "(`\\')\n" +#~ "\n" +#~ "a v¹echny specifikace formátu z jazyka C konèící jedním znakem z " +#~ "diouxXfeEgGcs,\n" +#~ "s ARGUMENTy konvertovanými nejprve na odpovídající typ. ©íøky promìnných " +#~ "jsou\n" +#~ "respektovány.\n" + +#, fuzzy +#~ msgid "" +#~ "Print the full filename of the current working directory.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolní souèet a délku v bajtech ka¾dého SOUBORu.\n" +#~ "\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Special characters:\n" +#~ " * dsusp CHAR CHAR will send a terminal stop signal once input " +#~ "flushed\n" +#~ " eof CHAR CHAR will send an end of file (terminate the input)\n" +#~ " eol CHAR CHAR will end the line\n" +#~ " * eol2 CHAR alternate CHAR for ending the line\n" +#~ " erase CHAR CHAR will erase the last character typed\n" +#~ " intr CHAR CHAR will send an interrupt signal\n" +#~ " kill CHAR CHAR will erase the current line\n" +#~ " * lnext CHAR CHAR will enter the next character quoted\n" +#~ " quit CHAR CHAR will send a quit signal\n" +#~ " * rprnt CHAR CHAR will redraw the current line\n" +#~ " start CHAR CHAR will restart the output after stopping it\n" +#~ " stop CHAR CHAR will stop the output\n" +#~ " susp CHAR CHAR will send a terminal stop signal\n" +#~ " * swtch CHAR CHAR will switch to a different shell layer\n" +#~ " * werase CHAR CHAR will erase the last word typed\n" +#~ msgstr "" +#~ "\n" +#~ "Speciální znaky:\n" +#~ "* dsusp ZNAK ZNAK, který posílá terminálu signál stop pøi vyprázdnìní\n" +#~ " standardního vstupu\n" +#~ " eof ZNAK ZNAK, který posílá 'konec souboru' (pøeru¹ení vstupu)\n" +#~ " eol ZNAK ZNAK, který ukonèuje øádek\n" +#~ "* eol2 ZNAK alternativní ZNAK pro konec øádku\n" +#~ " erase ZNAK ZNAK, který ma¾e poslední zapsaný znak\n" +#~ " intr ZNAK ZNAK, který zasílá signál interrupt\n" +#~ " kill ZNAK ZNAK, který ma¾e aktuální øádek\n" +#~ "* lnext ZNAK ZNAK, který znemo¾òuje interpretaci dal¹ího znaku " +#~ "(quote)\n" +#~ " quit ZNAK ZNAK, který posílá signál quit\n" +#~ "* rprnt ZNAK ZNAK, který pøekresluje aktuální øádek\n" +#~ " start ZNAK ZNAK, který znovu spu¹tí výstup, po jeho pozastavení\n" +#~ " stop ZNAK ZNAK, který pozastavuje výstup\n" +#~ " susp ZNAK ZNAK, který posílá signál 'terminal stop'\n" +#~ "* swtch ZNAK ZNAK, který pøepíná na jinou vrstvu shellu\n" +#~ "* werase ZNAK ZNAK, který ma¾e poslední znak\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Special settings:\n" +#~ " N set the input and output speeds to N bauds\n" +#~ " * cols N tell the kernel that the terminal has N columns\n" +#~ " * columns N same as cols N\n" +#~ " ispeed N set the input speed to N\n" +#~ " * line N use line discipline N\n" +#~ " min N with -icanon, set N characters minimum for a completed " +#~ "read\n" +#~ " ospeed N set the output speed to N\n" +#~ " * rows N tell the kernel that the terminal has N rows\n" +#~ " * size print the number of rows and columns according to the " +#~ "kernel\n" +#~ " speed print the terminal speed\n" +#~ " time N with -icanon, set read timeout of N tenths of a second\n" +#~ msgstr "" +#~ "\n" +#~ "Speciální nastavení:\n" +#~ " N nastaví vstupní a výstupní rychlost na N baud\n" +#~ "* cols N po¹le jádru OS, ¾e terminál má N sloupcù\n" +#~ "* columns N stejné jako cols N\n" +#~ " ispeed N nastaví vstupní rychlost na N\n" +#~ "* line N pou¾ije 'line discipline' N\n" +#~ " min N spolu s -icanon nastaví N znakù, jako minimum pro " +#~ "ukonèení\n" +#~ " ètení\n" +#~ " ospeed N nastaví rychlost výstupu na N\n" +#~ "* rows N po¹le jádru OS, ¾e terminál má N øádkù\n" +#~ "* size vypí¹e poèet øádkù a sloupcù podle jádra OS\n" +#~ " speed vypí¹e rychlost terminálu\n" +#~ " time N spolu -icanon, nastaví èasový limit pro ètení na N " +#~ "desetin\n" +#~ " sekundy\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Input settings:\n" +#~ " [-]brkint breaks cause an interrupt signal\n" +#~ " [-]icrnl translate carriage return to newline\n" +#~ " [-]ignbrk ignore break characters\n" +#~ " [-]igncr ignore carriage return\n" +#~ " [-]ignpar ignore characters with parity errors\n" +#~ " * [-]imaxbel beep and do not flush a full input buffer on a " +#~ "character\n" +#~ " [-]inlcr translate newline to carriage return\n" +#~ " [-]inpck enable input parity checking\n" +#~ " [-]istrip clear high (8th) bit of input characters\n" +#~ " * [-]iuclc translate uppercase characters to lowercase\n" +#~ " * [-]ixany let any character restart output, not only start " +#~ "character\n" +#~ " [-]ixoff enable sending of start/stop characters\n" +#~ " [-]ixon enable XON/XOFF flow control\n" +#~ " [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +#~ " [-]tandem same as [-]ixoff\n" +#~ msgstr "" +#~ "\n" +#~ "Nastavení vstupu:\n" +#~ " [-]brkint znak break zpùsobí signál interrupt\n" +#~ " [-]icrnl pøekládá CR (carriage return) na LF (newline)\n" +#~ " [-]ignbrk ignoruje znak break\n" +#~ " [-]igncr ignoruje znak CR (carriage return)\n" +#~ " [-]ignpar ignoruje znaky s chybou parity\n" +#~ "* [-]imaxbel zvukový signál a nevyprázdnìní plného vstupního bufferu " +#~ "pøi\n" +#~ " novém pøíchozím znaku\n" +#~ " [-]inlcr pøekládá LF (newline) na CR (carriage return)\n" +#~ " [-]inpck zaène kontrolovat paritu na vstupu\n" +#~ " [-]istrip nuluje 8-mý bit vstupních znakù\n" +#~ "* [-]iuclc pøekládá velká písmena na malá\n" +#~ "* [-]ixany ka¾dý znak restartuje výstup, nikoli jen znak 'start'\n" +#~ " [-]ixoff povolí posílání znakù start/stop\n" +#~ " [-]ixon povolí øízení toku dat pomocí XON/XOFF\n" +#~ " [-]parmrk oznaèí chyby parity (sekvencí 255-0-znak)\n" +#~ " [-]tandem jako [-]ixoff\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Local settings:\n" +#~ " [-]crterase echo erase characters as backspace-space-backspace\n" +#~ " * crtkill kill all line by obeying the echoprt and echoe settings\n" +#~ " * -crtkill kill all line by obeying the echoctl and echok settings\n" +#~ " * [-]ctlecho echo control characters in hat notation (`^c')\n" +#~ " [-]echo echo input characters\n" +#~ " * [-]echoctl same as [-]ctlecho\n" +#~ " [-]echoe same as [-]crterase\n" +#~ " [-]echok echo a newline after a kill character\n" +#~ " * [-]echoke same as [-]crtkill\n" +#~ " [-]echonl echo newline even if not echoing other characters\n" +#~ " * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +#~ " [-]icanon enable erase, kill, werase, and rprnt special " +#~ "characters\n" +#~ " [-]iexten enable non-POSIX special characters\n" +#~ " [-]isig enable interrupt, quit, and suspend special characters\n" +#~ " [-]noflsh disable flushing after interrupt and quit special " +#~ "characters\n" +#~ " * [-]prterase same as [-]echoprt\n" +#~ " * [-]tostop stop background jobs that try to write to the terminal\n" +#~ " * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +#~ msgstr "" +#~ "\n" +#~ "Lokální nastavení:\n" +#~ " [-]crterase vypisuje mazací znak (erase) jako backspace-mezera-" +#~ "backspace\n" +#~ "* crtkill zru¹í celý øádek podle nastavení echoprt a echoe\n" +#~ "* -crtkill zru¹í celý øádek podle nastavení echoctl a echok\n" +#~ "* [-]ctlecho øídící znaky pøepisuje v notaci se støí¹kou (`^c')\n" +#~ " [-]echo opisuje vstupní znaky\n" +#~ "* [-]echoctl jako [-]ctlecho\n" +#~ " [-]echoe jako [-]crterase\n" +#~ " [-]echok vypí¹e znak CR (newline) po znaku 'kill'\n" +#~ "* [-]echoke jako [-]crtkill\n" +#~ " [-]echonl pokud není vypsán jiný znak, vypí¹e LF (newline)\n" +#~ "* [-]echoprt vypisuje vymazané znaky pozpátku, mezi `\\' a '/'\n" +#~ " [-]icanon povolí speciální znaky erase, kill a werase\n" +#~ " [-]iexten povolí speciální znaky, které neodpovídají normì POSIX.\n" +#~ " [-]isig povolí speciální znaky interrupt, quit a suspend\n" +#~ " [-]noflsh zaká¾e vyprázdnìní bufferù po speciálních znacích " +#~ "interrupt \n" +#~ " a quit\n" +#~ "* [-]prterase jako [-]echoprt\n" +#~ "* [-]tostop pozastaví procesy na pozadí, které se pokou¹ejí o zápis\n" +#~ " na terminál\n" +#~ "* [-]xcase spolu s icanon, pou¾ije escape sekvenci (`\\') pro velká " +#~ "písmena\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Combination settings:\n" +#~ " * [-]LCASE same as [-]lcase\n" +#~ " cbreak same as -icanon\n" +#~ " -cbreak same as icanon\n" +#~ " cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +#~ " icanon, eof and eol characters to their default values\n" +#~ " -cooked same as raw\n" +#~ " crt same as echoe echoctl echoke\n" +#~ " dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +#~ " kill ^u\n" +#~ " * [-]decctlq same as [-]ixany\n" +#~ " ek erase and kill characters to their default values\n" +#~ " evenp same as parenb -parodd cs7\n" +#~ " -evenp same as -parenb cs8\n" +#~ " * [-]lcase same as xcase iuclc olcuc\n" +#~ " litout same as -parenb -istrip -opost cs8\n" +#~ " -litout same as parenb istrip opost cs7\n" +#~ " nl same as -icrnl -onlcr\n" +#~ " -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +#~ " oddp same as parenb parodd cs7\n" +#~ " -oddp same as -parenb cs8\n" +#~ " [-]parity same as [-]evenp\n" +#~ " pass8 same as -parenb -istrip cs8\n" +#~ " -pass8 same as parenb istrip cs7\n" +#~ " raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +#~ " -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +#~ " -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +#~ " -raw same as cooked\n" +#~ " sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +#~ " -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +#~ " -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +#~ " isig icanon iexten echo echoe echok -echonl -noflsh\n" +#~ " -xcase -tostop -echoprt echoctl echoke, all special\n" +#~ " characters to their default values.\n" +#~ msgstr "" +#~ "\n" +#~ "Nastavení kombinací:\n" +#~ "* [-]LCASE jako [-]lcase\n" +#~ " cbreak jako -icanon\n" +#~ " -cbreak jako icanon\n" +#~ " cooked jako brkint ignpar istrip icrnl ixon opost isig\n" +#~ " znaky icanon, eof a eol jsou nastaveny na jejich " +#~ "implicitní \n" +#~ " hodnoty\n" +#~ " -cooked jako raw\n" +#~ " crt jako echoe echoctl echoke\n" +#~ " dec jako echoe echoctl echoke -ixany intr ^c erase 0177\n" +#~ " kill ^u\n" +#~ "* [-]decctlq jako [-]ixany\n" +#~ " ek znaky erase a kill na jejich implicitní hodnoty\n" +#~ " evenp jako parenb -parodd cs7\n" +#~ " -evenp jako -parenb cs8\n" +#~ "* [-]lcase jako xcase iuclc olcuc\n" +#~ " litout jako -parenb -istrip -opost cs8\n" +#~ " -litout jako parenb istrip opost cs7\n" +#~ " nl jako -icrnl -onlcr\n" +#~ " -nl jako icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +#~ " oddp jako parenb parodd cs7\n" +#~ " -oddp jako -parenb cs8\n" +#~ " [-]parity jako [-]evenp\n" +#~ " pass8 jako -parenb -istrip cs8\n" +#~ " -pass8 jako parenb istrip cs7\n" +#~ " raw jako -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +#~ " -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +#~ " -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +#~ " -raw jako cooked\n" +#~ " sane jako cread -ignbrk brkint -inlcr -igncr icrnl\n" +#~ " -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +#~ " -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +#~ " isig icanon iexten echo echoe echok -echonl -noflsh\n" +#~ " -xcase -tostop -echoprt echoctl echoke, v¹echny " +#~ "speciální\n" +#~ " znaky na jejich implicitní hodnoty.\n" + +#, fuzzy +#~ msgid "" +#~ "Exit with the status determined by EXPRESSION.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "EXPRESSION is true or false and sets exit status. It is one of:\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolní souèet a délku v bajtech ka¾dého SOUBORu.\n" +#~ "\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode " +#~ "numbers\n" +#~ " FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +#~ " FILE1 -ot FILE2 FILE1 is older than FILE2\n" +#~ "\n" +#~ " -b FILE FILE exists and is block special\n" +#~ " -c FILE FILE exists and is character special\n" +#~ " -d FILE FILE exists and is a directory\n" +#~ " -e FILE FILE exists\n" +#~ " -f FILE FILE exists and is a regular file\n" +#~ " -g FILE FILE exists and is set-group-ID\n" +#~ " -h FILE FILE exists and is a symbolic link (same as -L)\n" +#~ " -G FILE FILE exists and is owned by the effective group ID\n" +#~ " -k FILE FILE exists and has its sticky bit set\n" +#~ " -L FILE FILE exists and is a symbolic link (same as -h)\n" +#~ " -O FILE FILE exists and is owned by the effective user ID\n" +#~ " -p FILE FILE exists and is a named pipe\n" +#~ " -r FILE FILE exists and is readable\n" +#~ " -s FILE FILE exists and has a size greater than zero\n" +#~ " -S FILE FILE exists and is a socket\n" +#~ " -t [FD] file descriptor FD (stdout by default) is opened on a " +#~ "terminal\n" +#~ " -u FILE FILE exists and its set-user-ID bit is set\n" +#~ " -w FILE FILE exists and is writable\n" +#~ " -x FILE FILE exists and is executable\n" +#~ msgstr "" +#~ "\n" +#~ " SOUBOR1 -ef SOUBOR2 SOUBOR1 a SOUBOR2 jsou na stejném zaøízení a " +#~ "mají\n" +#~ " stejný i-uzel\n" +#~ " SOUBOR1 -nt SOUBOR2 SOUBOR1 je novìj¹í (datum modifikace) ne¾ " +#~ "SOUBOR2\n" +#~ " SOUBOR1 -ot SOUBOR2 SOUBOR1 je star¹í ne¾ SOUBOR2\n" +#~ "\n" +#~ " -b SOUBOR SOUBOR existuje a je speciální blokový\n" +#~ " -c SOUBOR SOUBOR existuje a je speciální znakový\n" +#~ " -d SOUBOR SOUBOR existuje a je to adresáø\n" +#~ " -e SOUBOR SOUBOR existuje\n" +#~ " -f SOUBOR SOUBOR existuje a je to obyèejný soubor (ne adresáø)\n" +#~ " -g SOUBOR SOUBOR existuje a má nastaven sgid bit\n" +#~ " -G SOUBOR SOUBOR existuje a je vlastnìn aktuálním efektivním GID\n" +#~ " -k SOUBOR SOUBOR existuje a má nastaven 'sticky' bit\n" +#~ " -L SOUBOR SOUBOR existuje a je symbolický odkaz\n" +#~ " -O SOUBOR SOUBOR existuje a je vlastnìn aktuálním efektivním UID\n" +#~ " -p SOUBOR SOUBOR existuje a je pojmenovaná roura\n" +#~ " -r SOUBOR SOUBOR existuje a je èitelný\n" +#~ " -s SOUBOR SOUBOR existuje a má nenulovou délku\n" +#~ " -S SOUBOR SOUBOR existuje a je soket\n" +#~ " -t [FD] SOUBOR s deskriptorem FD (implicitnì stdout) je otevøen\n" +#~ " na terminálu\n" +#~ " -u SOUBOR SOUBOR existuje a má nastaven suid bit\n" +#~ " -w SOUBOR SOUBOR existuje a lze do nìj zapisovat\n" +#~ " -x SOUBOR SOUBOR existuje a je spustitelný\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " -a, --all same as -b -d --login -p -r -t -T -u\n" +#~ " -b, --boot time of last system boot\n" +#~ " -d, --dead print dead processes\n" +#~ " -H, --heading print line of column headings\n" +#~ " -i, --idle add idle time as HOURS:MINUTES, . or old\n" +#~ " (deprecated, use -u)\n" +#~ " --login print system login processes\n" +#~ " (equivalent to SUS -l)\n" +#~ " -l, --lookup attempt to canonicalize hostnames via DNS\n" +#~ " (-l is deprecated, use --lookup)\n" +#~ " -m only hostname and user associated with stdin\n" +#~ " -p, --process print active processes spawned by init\n" +#~ " -q, --count all login names and number of users logged on\n" +#~ " -r, --runlevel print current runlevel\n" +#~ " -s, --short print only name, line, and time (default)\n" +#~ " -t, --time print last system clock change\n" +#~ " -T, -w, --mesg add user's message status as +, - or ?\n" +#~ " -u, --users lists users logged in\n" +#~ " --message same as -T\n" +#~ " --writable same as -T\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "If FILE is not specified, use %s. %s as FILE is common.\n" +#~ "If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +#~ msgstr "" +#~ "\n" +#~ " -H, --heading vypí¹e názvy jednotlivých sloupcù\n" +#~ " -i, -u, --idle pøidá dobu neèinnosti HODINY:MINUTY, . nebo starý\n" +#~ " -l, --lookup zpùsobí vypisování jmen získaných z DNS\n" +#~ " -m pouze poèítaèe a u¾ivatele pøipojené ke standardnímu " +#~ "vstupu\n" +#~ " -q, --count v¹echna pøihla¹ovací jména a poèet pøihlá¹ených " +#~ "u¾ivatelù\n" +#~ " -s (ignorováno)\n" +#~ " -T, -w, --mesg pøipojí stav mo¾nosti posílat zprávy (+, - nebo ?)\n" +#~ " --message jako -T\n" +#~ " --writable jako -T\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" +#~ " Pokud SOUBOR není zadán, pou¾ije se %s. Pokud zadáte %s jako SOUBOR, " +#~ "budou\n" +#~ "vypisovány informace o u¾ivatelích, kteøí se pøihlásili v poslední dobì. " +#~ "Pokud\n" +#~ "jsou zadány ARG1 a ARG2, implicitním pøepínaèem je -m. Jako ARG1 a ARG2\n" +#~ "se obvykle zadává 'am i' nebo 'mom likes', mù¾e být ale zadáno cokoliv.\n" +#~ "Podstatný je poèet argumentù.\n" + +#, fuzzy +#~ msgid "" +#~ "Repeatedly output a line with all specified STRING(s), or `y'.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolní souèet a délku v bajtech ka¾dého SOUBORu.\n" +#~ "\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +#~ msgid "cannot get processor type" +#~ msgstr "typ procesoru nelze zjistit" + +#~ msgid "USER" +#~ msgstr "U®IVATEL" + +#~ msgid "MESG " +#~ msgstr "ZPRÁV " + +#~ msgid "LOGIN-TIME " +#~ msgstr "ÈAS-PØIHLÁ©. " + +#~ msgid "FROM\n" +#~ msgstr "Z\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "(obsolete) If -VALUE is used as first OPTION, same as -c VALUE when one " +#~ "of\n" +#~ "multipliers bkm follows concatenated, else same as -n VALUE.\n" +#~ msgstr "" +#~ " Vypí¹e prvních 10 øádkù ka¾dého souboru na standardní výstup. S více " +#~ "jak\n" +#~ "jedním souborem, bude pøed vypsáním ka¾dého uvedena hlavièka obsahující " +#~ "jméno\n" +#~ "souboru. Jestli¾e SOUBOR nebude zadán nebo bude -, bude èten standardní " +#~ "vstup.\n" +#~ "\n" +#~ " -c, --bytes=VELIKOST vypí¹e prvních VELIKOST bajtù\n" +#~ " -n, --lines=POÈET vypí¹e prvních POÈET øádkù místo prvních 10\n" +#~ " -q, --quiet, --silent nikdy nevypisuje hlavièky s názvy souborù\n" +#~ " -v, --verbose vypisuje hlavièky s názvy souborù v¾dy\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" +#~ " VELIKOST mù¾e mít násobící pøíponu: b pro 512, k pro 1K, m pro 1M. " +#~ "Jestli¾e\n" +#~ "první pøepínaè bude -HODNOTA a bude-li pou¾ita násobící pøípona, pak bude " +#~ "brán\n" +#~ "jako -c HODNOTA. Jinak bude pøepínaè brán jako -n HODNOTA.\n" + +#, fuzzy +#~ msgid "warning: `od -w' is obsolete; use `od --width'" +#~ msgstr "varování: chybná ¹íøka %lu; u¾ívám %d místo ní" + +#, fuzzy +#~ msgid "warning: `pr -S' is obsolete; use `pr --sep-string'" +#~ msgstr "varování: chybná ¹íøka %lu; u¾ívám %d místo ní" + +#, fuzzy +#~ msgid "" +#~ " +POS1 [-POS2] start a key at POS1, end it before POS2 " +#~ "(origin 0)\n" +#~ " Warning: this option is obsolete\n" +#~ msgstr "" +#~ " Porovnává soubory LEVÝ_SOUBOR a PRAVÝ_SOUBOR, jejich¾ øádky jsou " +#~ "uspoøádány\n" +#~ "podle nìjakého klíèe, øádek po øádku. Výstupem jsou tøi sloupce, øádky " +#~ "obsa¾ené\n" +#~ "pouze v levém souboru, øádky obsa¾ené pouze v pravém souboru, øádky " +#~ "spoleèné\n" +#~ "obìma souborùm.\n" +#~ "\n" +#~ " -1 neukazuje øádky obsa¾ené pouze v levém souboru\n" +#~ " -2 neukazuje øádky obsa¾ené pouze v pravém souboru\n" +#~ " -3 neukazuje øádky spoleèné obìma souborùm\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +#, fuzzy +#~ msgid "warning: `sort -y' is obsolete; omit `-y'" +#~ msgstr "varování: chybná ¹íøka %lu; u¾ívám %d místo ní" + +#, fuzzy +#~ msgid "warning: `tail %s' is obsolete; use -n or -c instead" +#~ msgstr "varování: chybná ¹íøka %lu; u¾ívám %d místo ní" + +#, fuzzy +#~ msgid "warning: `uniq %s' is obsolete; use `uniq -s %s' instead" +#~ msgstr "varování: chybná ¹íøka %lu; u¾ívám %d místo ní" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolní souèet a délku v bajtech ka¾dého SOUBORu.\n" +#~ "\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolní souèet a délku v bajtech ka¾dého SOUBORu.\n" +#~ "\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolní souèet a délku v bajtech ka¾dého SOUBORu.\n" +#~ "\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolní souèet a délku v bajtech ka¾dého SOUBORu.\n" +#~ "\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolní souèet a délku v bajtech ka¾dého SOUBORu.\n" +#~ "\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ "Convert tabs in each FILE to spaces, writing to standard output.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -i, --initial do not convert TABs after non whitespace\n" +#~ " -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +#~ msgstr "" +#~ " Konvertuje tabelátory v ka¾dém SOUBORu na mezery, výstup jde na " +#~ "standardní\n" +#~ "výstup. Nebude-li SOUBOR zadán nebo bude-li -, bude èten standardní " +#~ "vstup.\n" +#~ "\n" +#~ " -i, --initial konvertuje pouze tabelátory pøed prvním znakem na " +#~ "øádku\n" +#~ " -t, --tabs=POÈET tabelátor pova¾uje za POÈET (8) mezer\n" +#~ " -t, --tabs=SEZNAM pou¾ije èárkami oddìlený seznam pozicí tabelátorù\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" +#~ "Místo -t POÈET nebo -t SEZNAM mù¾ete pou¾ít -POÈET nebo -SEZNAM.\n" + +#, fuzzy +#~ msgid "" +#~ " -t, --tabs=LIST use comma separated list of explicit tab positions\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n" +#~ msgstr "" +#~ " Konvertuje tabelátory v ka¾dém SOUBORu na mezery, výstup jde na " +#~ "standardní\n" +#~ "výstup. Nebude-li SOUBOR zadán nebo bude-li -, bude èten standardní " +#~ "vstup.\n" +#~ "\n" +#~ " -i, --initial konvertuje pouze tabelátory pøed prvním znakem na " +#~ "øádku\n" +#~ " -t, --tabs=POÈET tabelátor pova¾uje za POÈET (8) mezer\n" +#~ " -t, --tabs=SEZNAM pou¾ije èárkami oddìlený seznam pozicí tabelátorù\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" +#~ "Místo -t POÈET nebo -t SEZNAM mù¾ete pou¾ít -POÈET nebo -SEZNAM.\n" + +#, fuzzy +#~ msgid "" +#~ "Wrap input lines in each FILE (standard input by default), writing to\n" +#~ "standard output.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --bytes count bytes rather than columns\n" +#~ " -s, --spaces break at spaces\n" +#~ " -w, --width=WIDTH use WIDTH columns instead of 80\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ " Zalamuje vstupní øádky ka¾dého SOUBORu (implicitnì standardního " +#~ "vstupu),\n" +#~ "zapisujíce výstup na standardní výstup.\n" +#~ "\n" +#~ " -b, --bytes pro zalamování poèítá bajty na øádku místo sloupcù\n" +#~ " -s, --spaces zalamuje øádky v mezerách\n" +#~ " -w, --width=©ÍØKA pou¾ívá ©ÍØKA sloupcù místo 80\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" +#~ "Ve sloupcích nejsou zahrnuty kontrolní znaky narozdíl od bajtù.\n" + +#, fuzzy +#~ msgid "" +#~ "Write lines consisting of the sequentially corresponding lines from\n" +#~ "each FILE, separated by TABs, to standard output.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +#~ " -s, --serial paste one file at a time instead of in " +#~ "parallel\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ " Vypí¹e øádky skládající se z øádkù jednotlivých SOUBORù, v zadaném " +#~ "poøadí,\n" +#~ "a oddìlených tabelátory na standardní výstup. Jestli¾e SOUBOR nebude " +#~ "zadán\n" +#~ "nebo bude -, bude èten standardní vstup.\n" +#~ "\n" +#~ " -d, --delimiters=SEZNAM pou¾ije znakù ze SEZNAMU jako oddìlovaèù (místo " +#~ "TAB)\n" +#~ " -s, --serial vypí¹e soubory za sebou místo vedle sebe\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ " -NUMBER same as -l NUMBER\n" +#~ " --verbose print a diagnostic to standard error just\n" +#~ " before each output file is opened\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +#~ msgstr "" +#~ " Rozdìlí SOUBOR do souborù PØEDPONAaa, PØEDPONAab, ... s pevnou délkou.\n" +#~ "Implicitní PØEDPONA je `x'. Pokud SOUBOR nebude zadán nebo bude -, bude " +#~ "èten\n" +#~ "standardní vstup.\n" +#~ "\n" +#~ " -b, --bytes=VELIKOST zapí¹e VELIKOST bajtù do výstupního souboru\n" +#~ " -C, --line-bytes=VELIKOST zapí¹e nejvý¹e VELIKOST bajtù na výstupní " +#~ "øádek\n" +#~ " -l, --lines=POÈET zapí¹e POÈET øádkù do výstupního souboru\n" +#~ " -POÈET to samé jako -l POÈET\n" +#~ " --verbose pøed otevøením ka¾dého výstupního souboru " +#~ "vypí¹e\n" +#~ " oznámení o tomto na standardní výstup\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" +#~ "VELIKOST mù¾e mít násobící pøíponu: b - 512, k - 1024, m - 1 Mega.\n" + +#, fuzzy +#~ msgid "" +#~ "Write each FILE to standard output, last line first.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --before attach the separator before instead of after\n" +#~ msgstr "" +#~ " Vypí¹e ka¾dý SOUBOR na standardní výstup. Poslední øádek jako první.\n" +#~ "Jestli¾e SOUBOR nebude zadán nebo bude -, bude èten standardní vstup.\n" +#~ "\n" +#~ " -b, --before pøipojí oddìlovaè øádkù pøed øádky místo za " +#~ "nì\n" +#~ " -r, --regex interpretuje oddìlovaè jako regulární výraz\n" +#~ " -s, --separator=ØETÌZEC pou¾ije ØETÌZCE jako oddìlovaèe místo nového " +#~ "øádku\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ "Print the last %d lines of each FILE to standard output.\n" +#~ "With more than one FILE, precede each with a header giving the file " +#~ "name.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " --retry keep trying to open a file even if it is\n" +#~ " inaccessible when tail starts or if it " +#~ "becomes\n" +#~ " inaccessible later -- useful only with -f\n" +#~ msgstr "" +#~ " Vypí¹e prvních 10 øádkù ka¾dého souboru na standardní výstup. S více " +#~ "jak\n" +#~ "jedním souborem, bude pøed vypsáním ka¾dého uvedena hlavièka obsahující " +#~ "jméno\n" +#~ "souboru. Jestli¾e SOUBOR nebude zadán nebo bude -, bude èten standardní " +#~ "vstup.\n" +#~ "\n" +#~ " -c, --bytes=VELIKOST vypí¹e prvních VELIKOST bajtù\n" +#~ " -n, --lines=POÈET vypí¹e prvních POÈET øádkù místo prvních 10\n" +#~ " -q, --quiet, --silent nikdy nevypisuje hlavièky s názvy souborù\n" +#~ " -v, --verbose vypisuje hlavièky s názvy souborù v¾dy\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" +#~ " VELIKOST mù¾e mít násobící pøíponu: b pro 512, k pro 1K, m pro 1M. " +#~ "Jestli¾e\n" +#~ "první pøepínaè bude -HODNOTA a bude-li pou¾ita násobící pøípona, pak bude " +#~ "brán\n" +#~ "jako -c HODNOTA. Jinak bude pøepínaè brán jako -n HODNOTA.\n" + +#, fuzzy +#~ msgid "" +#~ " -t, --tabs=NUMBER have tabs NUMBER characters apart instead of 8\n" +#~ " -t, --tabs=LIST use comma separated list of explicit tab positions\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n" +#~ msgstr "" +#~ " V ka¾dém SOUBORu konvertuje mezery na tabelátory a výsledek vypisuje\n" +#~ "na standardní výstup. Nebude-li SOUBOR zadán nebo bude-li -, bude èten\n" +#~ "standardní vstup.\n" +#~ "\n" +#~ " -a, --all konvertuje v¹echny mezery, místo pouze úvodních\n" +#~ " -t, --tabs=POÈET nastaví tabelátor na POÈET mezer (8)\n" +#~ " -t, --tabs=SEZNAM pou¾ije èárkami oddìlený seznam pro pozice " +#~ "tabelátorù\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" +#~ "Místo -t POÈET nebo -t SEZNAM je mo¾no pou¾ít -POÈET nebo -SEZNAM.\n" + +#, fuzzy +#~ msgid "" +#~ "Output pieces of FILE separated by PATTERN(s) to files `xx01', " +#~ "`xx02', ...,\n" +#~ "and output byte counts of each piece to standard output.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --suffix-format=FORMAT use sprintf FORMAT instead of %%d\n" +#~ " -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +#~ " -k, --keep-files do not remove output files on errors\n" +#~ " -n, --digits=DIGITS use specified number of digits instead of 2\n" +#~ " -s, --quiet, --silent do not print counts of output file sizes\n" +#~ " -z, --elide-empty-files remove empty output files\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Read standard input if FILE is -. Each PATTERN may be:\n" +#~ "\n" +#~ " INTEGER copy up to but not including specified line number\n" +#~ " /REGEXP/[OFFSET] copy up to but not including a matching line\n" +#~ " %%REGEXP%%[OFFSET] skip to, but not including a matching line\n" +#~ " {INTEGER} repeat the previous pattern specified number of " +#~ "times\n" +#~ " {*} repeat the previous pattern as many times as " +#~ "possible\n" +#~ "\n" +#~ "A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +#~ msgstr "" +#~ " Rozdìluje SOUBOR v místech VZORKu(ù) do souborù `xx01', `xx02', ...\n" +#~ "a vypisuje velikosti ka¾dého souboru na standardní výstup.\n" +#~ "\n" +#~ " -b, --suffix-format=FORMÁT pou¾ije sprintf FORMÁT místo %%d\n" +#~ " -f, --prefix=PØEDPONA pou¾ije PØEDPONY místo `xx'\n" +#~ " -k, --keep-files nema¾e výstupní soubory pøi chybách\n" +#~ " -n, --digits=CIFER pou¾ije zadaný poèet èíslic místo 2\n" +#~ " -s, --quiet, --silent nevypisuje velikosti výstupních souborù\n" +#~ " -z, --elide-empty-files sma¾e prázdné výstupní soubory\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" +#~ "Jestli¾e SOUBOR bude -, bude èten standardní vstup. Ka¾dý VZOREK mù¾e " +#~ "být:\n" +#~ "\n" +#~ " CELÉ_ÈÍSLO kopíruje v¹e a¾ do øádku tohoto èísla, ale bez nìj\n" +#~ " /REGVÝR/[POSUN] kopíruje v¹e do øádku odpovídajícího regulárnímu " +#~ "výrazu,\n" +#~ " ale bez nìj\n" +#~ " %%REGVÝR%%[POSUN] pøeskoèí v¹e a¾ do øádku odpovídajícího regulárnímu\n" +#~ " výrazu, ale bez nìj\n" +#~ " {CELÉ_ÈÍSLO} opakuje pøede¹lý vzorek tolikrát, kolikrát je zde " +#~ "uvedeno\n" +#~ " {*} opakuje pøede¹lý vzorek tolikrát, kolikrát je to " +#~ "mo¾né\n" +#~ "\n" +#~ " POSUN musí zaèínat `+' nebo `-', následovaným celým kladným èíslem. " +#~ "Posun\n" +#~ "urèuje kolik znakù se je¹tì zahrne do bloku v místì vyhodnocení REGVÝR.\n" + +#, fuzzy +#~ msgid "" +#~ "Print selected parts of lines from each FILE to standard output.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --bytes=LIST output only these bytes\n" +#~ " -c, --characters=LIST output only these characters\n" +#~ " -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +#~ " -f, --fields=LIST output only these fields; also print any line\n" +#~ " that contains no delimiter character, unless\n" +#~ " the -s option is specified\n" +#~ " -n (ignored)\n" +#~ " -s, --only-delimited do not print lines not containing delimiters\n" +#~ " --output-delimiter=STRING use STRING as the output delimiter\n" +#~ " the default is to use the input delimiter\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +#~ "range, or many ranges separated by commas. Each range is one of:\n" +#~ "\n" +#~ " N N'th byte, character or field, counted from 1\n" +#~ " N- from N'th byte, character or field, to end of line\n" +#~ " N-M from N'th to M'th (included) byte, character or field\n" +#~ " -M from first to M'th (included) byte, character or field\n" +#~ "\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ msgstr "" +#~ "Vypí¹e pouze vybrané èásti øádkù z ka¾dého SOUBORu na standardní výstup.\n" +#~ "\n" +#~ " -b, --bytes=SEZNAM vypí¹e pouze tyto bajty\n" +#~ " -c, --characters=SEZNAM vypí¹e pouze tyto znaky\n" +#~ " -d, --delimiter=ODDÌLOVAÈ jako oddìlovaè pou¾ije ODDÌLOVAÈ (místo " +#~ "tabulátoru)\n" +#~ " -f, --fields=SEZNAM vypí¹e pouze tyto polo¾ky; také vypí¹e " +#~ "v¹echny\n" +#~ " øádky, které neobsahují oddìlovaè, ale pouze " +#~ "pokud\n" +#~ " není zadáno -s\n" +#~ " -n (ignorováno)\n" +#~ " -s, --only-delimited potlaèí øádky neobsahující znak oddìlovaèe\n" +#~ " --output-delimiter=ØE«EZEC ØETEZEC se pou¾ije jako výstupní " +#~ "oddìlovaè.\n" +#~ " Implicitnì je jako tento oddìlovaè pou¾it " +#~ "vstupní\n" +#~ " oddìlovaè.\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" +#~ " Pou¾ijte pouze jeden z pøepínaèù -b, -c nebo -f. Ka¾dý seznam se " +#~ "skládá\n" +#~ "z jednoho rozsahu nebo z více rozsahù oddìlených èárkami. Ka¾dý rozsah " +#~ "mù¾e\n" +#~ "být:\n" +#~ "\n" +#~ " N N-tý bajt, znak nebo polo¾ka, poèítáno od 1\n" +#~ " N- od N-tého bajtu, znaku nebo polo¾ky, do konce øádku\n" +#~ " N-M od N-tého do M-tého (vèetnì) bajtu, znaku nebo polo¾ky\n" +#~ " -M od prvního do M-tého (vèetnì) bajtu, znaku nebo polo¾ky\n" +#~ "\n" +#~ "Jestli¾e SOUBOR není zadán nebo je `-', bude èten ze standardního " +#~ "vstupu.\n" + +#~ msgid "" +#~ "For each pair of input lines with identical join fields, write a line to\n" +#~ "standard output. The default join field is the first, delimited\n" +#~ "by whitespace. When FILE1 or FILE2 (not both) is -, read standard " +#~ "input.\n" +#~ "\n" +#~ " -a SIDE print unpairable lines coming from file SIDE\n" +#~ " -e EMPTY replace missing input fields with EMPTY\n" +#~ " -i, --ignore-case ignore differences in case when comparing fields\n" +#~ " -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +#~ " -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +#~ " -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +#~ " -o FORMAT obey FORMAT while constructing output line\n" +#~ " -t CHAR use CHAR as input and output field separator\n" +#~ " -v SIDE like -a SIDE, but suppress joined output lines\n" +#~ " -1 FIELD join on this FIELD of file 1\n" +#~ " -2 FIELD join on this FIELD of file 2\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +#~ "else fields are separated by CHAR. Any FIELD is a field number counted\n" +#~ "from 1. FORMAT is one or more comma or blank separated specifications,\n" +#~ "each being `SIDE.FIELD' or `0'. Default FORMAT outputs the join field,\n" +#~ "the remaining fields from FILE1, the remaining fields from FILE2, all\n" +#~ "separated by CHAR.\n" +#~ msgstr "" +#~ " Pro ka¾dý pár vstupních øádkù se stejnými propojovacími polo¾kami, " +#~ "zapí¹e\n" +#~ "øádek na standardní výstup. Implicitnì je propojovací polo¾kou polo¾ka " +#~ "první\n" +#~ "a oddìlovaè je mezera. Jestli¾e SOUBOR1 nebo SOUBOR2 bude -, pak tento " +#~ "bude\n" +#~ "èten ze standardního vstupu.\n" +#~ "\n" +#~ " -a STRANA vypí¹e nepárové øádky pocházející ze souboru STRANA\n" +#~ " -e PRÁZDN nahradí chybìjící vstupní polo¾ky znakem PRÁZDN\n" +#~ " -i, --ignore-case pøi porovnávání polo¾ek ignoruje rozdíly mezi malými\n" +#~ " a velkými písmeny\n" +#~ " -j POLO®KA (zastaralé) rovnocenné s `-1 POLE -2 POLE'\n" +#~ " -j1 POLO®KA (zastaralé) rovnocenné s `-1 POLE'\n" +#~ " -j2 POLO®KA (zastaralé) rovnocenné s `-2 POLE'\n" +#~ " -o FORMÁT øídí se FORMÁTem pøi tvorbì výstupního øádku\n" +#~ " -t ZNAK pou¾ije ZNAK jako oddìlovaè polo¾ek na vstupu i " +#~ "výstupu.\n" +#~ " -v STRANA jako -a STRANA, ale bez spojených øádkù.\n" +#~ " -1 POLO®KA spojuje pøes tuto POLO®KU souboru 1\n" +#~ " -2 POLO®KA spojuje pøes tuto POLO®KU souboru 2\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" +#~ " Jestli¾e pøepínaè -t ZNAK nebude zadán, jako oddìlovaè bude pou¾ita " +#~ "mezera\n" +#~ "a prázdné polo¾ky na poèátku øádku budou ignorovány. Jinak bude " +#~ "oddìlovaèem\n" +#~ "polo¾ek ZNAK. Libovolná POLO®KA je poøadí polo¾ky poèítané od 1. FORMÁT " +#~ "je\n" +#~ "jedna nebo více èárkami nebo mezerami oddìlených popisovaèù, ka¾dý mù¾e " +#~ "být\n" +#~ "'STRANA.POLO®KA' nebo '0'. Implicitní FORMÁT vypisuje propojovací " +#~ "polo¾ku,\n" +#~ "zbytek polo¾ek ze souboru 1, zbytek polo¾ek ze souboru 2. V¹echny jsou " +#~ "oddìleny\n" +#~ "znakem ZNAK.\n" + +#~ msgid "" +#~ "Usage: %s [OPTION] [FILE]...\n" +#~ " or: %s [OPTION] --check [FILE]\n" +#~ "Print or check %s (%d-bit) checksums.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ " -b, --binary read files in binary mode (default on DOS/" +#~ "Windows)\n" +#~ " -c, --check check %s sums against given list\n" +#~ " -t, --text read files in text mode (default)\n" +#~ "\n" +#~ "The following two options are useful only when verifying checksums:\n" +#~ " --status don't output anything, status code shows " +#~ "success\n" +#~ " -w, --warn warn about improperly formated checksum lines\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "The sums are computed as described in %s. When checking, the input\n" +#~ "should be a former output of this program. The default mode is to print\n" +#~ "a line with checksum, a character indicating type (`*' for binary, ` ' " +#~ "for\n" +#~ "text), and name for each FILE.\n" +#~ msgstr "" +#~ "Pou¾ití: %s [PØEPÍNAÈ] [SOUBOR]...\n" +#~ " nebo: %s [PØEPÍNAÈ] --check [SOUBOR]\n" +#~ "\n" +#~ " Vypí¹e nebo kontroluje %s (%dbitové) kontrolní souèty. Jestli¾e SOUBOR\n" +#~ "nebude zadán nebo bude -, bude èten standardní vstup.\n" +#~ "\n" +#~ " -b, --binary ète soubory v binárním módu (implicitní\n" +#~ " v DOSu/Windows)\n" +#~ " -c, --check porovnává %s souèty se zadanými\n" +#~ " -t, --text ète soubory v textovém módu (implicitní)\n" +#~ "\n" +#~ "Následující dva pøepínaèe jsou u¾iteèné pouze pøi ovìøování kontrolních " +#~ "souètù:\n" +#~ " --status nevypisuje nic, status kód ukazuje úspì¹nost\n" +#~ " -w, --warn varování o nesprávnì formátovaných øádcích " +#~ "souètù\n" +#~ "\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" +#~ " Souèty jsou poèítány podle popisu v %s. Pøi testování by vstup mìl\n" +#~ "být døívìj¹ím výstupem tohoto programu. Implicitní nastavení je výpis " +#~ "jednoho\n" +#~ "øádku pro ka¾dý SOUBOR. Formát øádku je kontrolní souèet, znak indikující " +#~ "typ\n" +#~ "('*' pro binární, ' ' pro textový) a jméno SOUBORu.\n" + +#, fuzzy +#~ msgid "" +#~ "Write each FILE to standard output, with line numbers added.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +#~ " -d, --section-delimiter=CC use CC for separating logical pages\n" +#~ " -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +#~ " -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +#~ " -i, --page-increment=NUMBER line number increment at each line\n" +#~ " -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +#~ "one\n" +#~ " -n, --number-format=FORMAT insert line numbers according to " +#~ "FORMAT\n" +#~ " -p, --no-renumber do not reset line numbers at logical " +#~ "pages\n" +#~ " -s, --number-separator=STRING add STRING after (possible) line " +#~ "number\n" +#~ " -v, --first-page=NUMBER first line number on each logical page\n" +#~ " -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +#~ "two delimiter characters for separating logical pages, a missing\n" +#~ "second character implies :. Type \\\\ for \\. STYLE is one of:\n" +#~ "\n" +#~ " a number all lines\n" +#~ " t number only nonempty lines\n" +#~ " n number no lines\n" +#~ " pREGEXP number only lines that contain a match for REGEXP\n" +#~ "\n" +#~ "FORMAT is one of:\n" +#~ "\n" +#~ " ln left justified, no leading zeros\n" +#~ " rn right justified, no leading zeros\n" +#~ " rz right justified, leading zeros\n" +#~ "\n" +#~ msgstr "" +#~ " Pøepí¹e ka¾dý SOUBOR na standardní výstup a ke ka¾dému øádku pøidá " +#~ "jeho\n" +#~ "èíslo. Jestli¾e SOUBOR nebude zadán nebo bude -, bude èten standardní " +#~ "vstup.\n" +#~ "\n" +#~ " -b, --body-numbering=STYL pou¾ije STYL k èíslování øádkù v tìle\n" +#~ " -d, --section-delimiter=CC pou¾ije CC pro oddìlení logických " +#~ "stránek\n" +#~ " -f, --footer-numbering=STYL pou¾ije STYL k èíslování øádkù v " +#~ "patièce\n" +#~ " -h, --header-numbering=STYL pou¾ije STYL k èíslování øádkù v " +#~ "hlavièce\n" +#~ " -i, --page-increment=ÈÍSLO o kolik zvy¹ovat èíslo øádku\n" +#~ " -l, --join-blank-lines=POÈET bere POÈET prázdných øádkù jako jeden\n" +#~ " -n, --number-format=FORMÁT èísla øádkù vypisuje podle FORMÁTu\n" +#~ " -p, --no-renumber nenuluje èíslo øádku na poèátku " +#~ "logické\n" +#~ " stránky\n" +#~ " -s, --number-separator=ØETÌZEC pøidá øetìzec za èíslo øádku " +#~ "(oddìlovaè\n" +#~ " èísla od dal¹ího øádku)\n" +#~ " -v, --first-page=ÈÍSLO èíslo prvního øádku na logické stránce\n" +#~ " -w, --number-width=POÈET èísla øádkù vypisuje na POÈET míst\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" +#~ " Implicitní jsou parametry -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC " +#~ "jsou\n" +#~ "dva znaky, které jsou pou¾ity k oddìlování logických stránek. Pro zadání " +#~ "'\\'\n" +#~ "je tøeba napsat '\\\\'. STYL je jeden z:\n" +#~ "\n" +#~ " a èísluje v¹echny øádky\n" +#~ " t èísluje pouze neprázdné øádky\n" +#~ " n øádky neèísluje\n" +#~ " pREGVÝR èísluje pouze øádky vyhovující REGVÝR\n" +#~ "\n" +#~ "FORMÁT je jeden z:\n" +#~ "\n" +#~ " ln zarovnává vlevo, bez úvodních nul\n" +#~ " rn zarovnává vpravo, bez úvodních nul\n" +#~ " rz zarovnává vpravo, s úvodními nulami\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Write an unambiguous representation, octal bytes by default,\n" +#~ "of FILE to standard output. With more than one FILE argument,\n" +#~ "concatenate them in the listed order to form the input.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -A, --address-radix=RADIX decide how file offsets are printed\n" +#~ " -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +#~ " -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +#~ " -s, --strings[=BYTES] output strings of at least BYTES graphic " +#~ "chars\n" +#~ " -t, --format=TYPE select output format or formats\n" +#~ " -v, --output-duplicates do not use * to mark line suppression\n" +#~ " -w, --width[=BYTES] output BYTES bytes per output line\n" +#~ " --traditional accept arguments in pre-POSIX form\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Pre-POSIX format specifications may be intermixed, they accumulate:\n" +#~ " -a same as -t a, select named characters\n" +#~ " -b same as -t oC, select octal bytes\n" +#~ " -c same as -t c, select ASCII characters or backslash escapes\n" +#~ " -d same as -t u2, select unsigned decimal shorts\n" +#~ " -f same as -t fF, select floats\n" +#~ " -h same as -t x2, select hexadecimal shorts\n" +#~ " -i same as -t d2, select decimal shorts\n" +#~ " -l same as -t d4, select decimal longs\n" +#~ " -o same as -t o2, select octal shorts\n" +#~ " -x same as -t x2, select hexadecimal shorts\n" +#~ msgstr "" +#~ " Vypí¹e SOUBOR v zadaném formátu, implicitní je osmièkový výpis, na\n" +#~ "standardní výstup. Jestli¾e SOUBOR nebude zadán nebo bude -, bude èten\n" +#~ "standardní vstup.\n" +#~ "\n" +#~ " -A, --address-radix=ZÁKLAD pozici v souboru vypisuje v zadané " +#~ "soustavì\n" +#~ " -j, --skip-bytes=POÈET pøeskoèí prvních POÈET bajtù ka¾dého " +#~ "souboru\n" +#~ " -N, --read-bytes=POÈET vypí¹e pouze POÈET bajtù ka¾dého souboru\n" +#~ " -s, --strings[=POÈET] vypí¹e pouze øetìzce obsahující nejménì " +#~ "POÈET\n" +#~ " znakù\n" +#~ " -t, --format=TYP vybere výstupní formát nebo formáty\n" +#~ " -v, --output-duplicates vypisuje i za sebou se opakující stejné " +#~ "øádky\n" +#~ " -w, --width[=POÈET] vypí¹e POÈET bajtù na výstupní øádek\n" +#~ " --traditional akceptuje argumenty v pøed-POSIXovém tvaru\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" +#~ "Pøed-POSIXové formáty mohou být pou¾ívány spolu s POSIXovými, to " +#~ "zahrnuje:\n" +#~ " -a stejné jako -t a, názvy znakù\n" +#~ " -b stejné jako -t oC, bajty osmièkovì\n" +#~ " -c stejné jako -t c, ASCII znaky nebo kódy znakù se zpìtným " +#~ "lomítkem\n" +#~ " -d stejné jako -t u2, desítková bez znaménka (dvou bajtová - short)\n" +#~ " -f stejné jako -t fF, èísla v pohyblivé øádové èárce\n" +#~ " -h stejné jako -t x2, ¹estnáctková (dvou bajtová - short)\n" +#~ " -i stejné jako -t d2, desítková se znaménkem (dvou bajtová - short)\n" +#~ " -l stejné jako -t d4, desítková se znaménkem (ètyø bajtová - long)\n" +#~ " -o stejné jako -t o2, osmièková (dvou bajtová - short)\n" +#~ " -x stejné jako -t x2, ¹estnáctková (dvou bajtová - short)\n" + +# `maybe' or `may be'? - rzm +#~ msgid "" +#~ "\n" +#~ "For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +#~ "is the pseudo-address at first byte printed, incremented when dump is\n" +#~ "progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +#~ "hexadecimal, suffixes maybe . for octal and b multiply by 512.\n" +#~ "\n" +#~ "TYPE is made up of one or more of these specifications:\n" +#~ "\n" +#~ " a named character\n" +#~ " c ASCII character or backslash escape\n" +#~ " d[SIZE] signed decimal, SIZE bytes per integer\n" +#~ " f[SIZE] floating point, SIZE bytes per integer\n" +#~ " o[SIZE] octal, SIZE bytes per integer\n" +#~ " u[SIZE] unsigned decimal, SIZE bytes per integer\n" +#~ " x[SIZE] hexadecimal, SIZE bytes per integer\n" +#~ "\n" +#~ "SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +#~ "sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +#~ "sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +#~ "for sizeof(double) or L for sizeof(long double).\n" +#~ "\n" +#~ "RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +#~ "BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +#~ "with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix " +#~ "to\n" +#~ "any type adds a display of printable characters to the end of each line\n" +#~ "of output. -s without a number implies 3. -w without a number implies " +#~ "32.\n" +#~ "By default, od uses -A o -t d2 -w 16.\n" +#~ msgstr "" +#~ "\n" +#~ " U staré syntaxe (druhý zpùsob volání), POSUN znaèí -j POSUN. NÁVÌ©TÍ\n" +#~ "je pseudo-adresa vypsaná u prvního bajtu a zvìt¹ovaná bìhem výpisu. " +#~ "POSUN\n" +#~ "a NÁVÌ©TÍ jsou brány jako osmièková èísla. Pokud èíslo zaèíná 0x nebo 0X\n" +#~ "oznaèuje ¹estnáctkové èíslo. Pokud èíslo konèí desetinnou teèkou '.' " +#~ "oznaèuje\n" +#~ "desítkové èíslo. Pokud èíslo konèí znakem 'b' znamená to, ¾e bude " +#~ "násobeno\n" +#~ "512-ti.\n" +#~ "\n" +#~ "TYP je tvoøen z jedné nebo více tìchto mo¾ností:\n" +#~ "\n" +#~ " a názvy znakù\n" +#~ " c ASCII znaky nebo kódy znakù se zpìtným lomítkem\n" +#~ " d[BAJTÙ] desítkové se znaménkem s poètem BAJTÙ na èíslo\n" +#~ " f[BAJTÙ] s plovoucí øádovou èárkou s poètem BAJTÙ na èíslo\n" +#~ " o[BAJTÙ] osmièkové s poètem BAJTÙ na èíslo\n" +#~ " u[BAJTÙ] desítkové bez znaménka s poètem BAJTÙ na èíslo\n" +#~ " x[BAJTÙ] ¹estnáctkové s poètem BAJTÙ na èíslo\n" +#~ "\n" +#~ " BAJTÙ je èíslo. Pro TYPy d, o, u, x mù¾e být BAJTÙ také C jako\n" +#~ "sizeof(char), S jako sizeof(short), I jako sizeof(int) nebo L jako\n" +#~ "sizeof(long). Jestli¾e TYP je f, BAJTÙ mù¾e být také F jako sizeof" +#~ "(float),\n" +#~ "D jako sizeof(double) nebo L jako sizeof(long double).\n" +#~ "\n" +#~ " ZÁKLAD je d pro dekadické, o - osmièkové, x - ¹estnáctkové, n - ¾ádné.\n" +#~ "POÈET je brán jako ¹estnáctkové èíslo zaèíná-li 0x nebo 0X, konèí-li " +#~ "znakem\n" +#~ "'b', bude násobeno 512-ti, k - 1024-mi, m - 1048576-ti. -s bez zadaného " +#~ "èísla\n" +#~ "je bráno jako -s 3. -w bez èísla je bráno jako -w 32. Implicitní jsou " +#~ "tyto\n" +#~ "hodnoty -A o -t d2 -w 16.\n" + +#, fuzzy +#~ msgid "" +#~ "Paginate or columnate FILE(s) for printing.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +#~ " begin [stop] printing with page FIRST_[LAST_]PAGE\n" +#~ " -COLUMN, --columns=COLUMN\n" +#~ " produce COLUMN-column output and print columns down,\n" +#~ " unless -a is used. Balance number of lines in the\n" +#~ " columns on each page.\n" +#~ " -a, --across print columns across rather than down, used together\n" +#~ " with -COLUMN\n" +#~ " -c, --show-control-chars\n" +#~ " use hat notation (^G) and octal backslash notation\n" +#~ " -d, --double-space\n" +#~ " double space the output\n" +#~ " -D, --date-format=FORMAT\n" +#~ " use FORMAT for the header date\n" +#~ " -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +#~ " expand input CHARs (TABs) to tab WIDTH (8)\n" +#~ " -F, -f, --form-feed\n" +#~ " use form feeds instead of newlines to separate pages\n" +#~ " (by a 3-line page header with -F or a 5-line header\n" +#~ " and trailer without -F)\n" +#~ msgstr "" +#~ "Nastránkuje nebo nasloupcuje SOUBOR(y) pro tisk.\n" +#~ "\n" +#~ " +PRVNÍ_STRÁNKA[:POSLEDNÍ_STRÁNKA], --pages=PRVNÍ_STRÁNKA[:" +#~ "POSLEDNÍ_STRÁNKA]\n" +#~ " zaène [skonèí] výpis na stránce PRVNÍ_[POSLEDNÍ_]" +#~ "STRÁNKA\n" +#~ " -SLOUPCÙ, --columns=SLOUPCÙ\n" +#~ " produkuje SLOUPCÙ-sloupcový výstup. Øádky vypisuje\n" +#~ " na stránku do sloupcù, pokud není pou¾it pøepínaè -" +#~ "a.\n" +#~ " Také se sna¾í vyrovnat poèet øádkù ve sloupcích.\n" +#~ " -a, --across vypisuje øádky pøes sloupce. Pou¾ívá se dohromady\n" +#~ " s pøepínaèem -SLOUPCÙ.\n" +#~ " -c, --show-control-chars\n" +#~ " pou¾ije notaci (^G) a osmièkovou se zpìtným lomítkem\n" +#~ " -d, --double-space\n" +#~ " za ka¾dý øádek vlo¾í jeden prázdný\n" +#~ " -D, --date-format=FORMÁT\n" +#~ " pou¾ije FORMÁT pro datum v hlavièce\n" +#~ " -e[ZNAK[©ÍØKA]], --expand-tabs[=ZNAK[©ÍØKA]]\n" +#~ " expanduje vstupní ZNAKy (tabelátory) na ©ÍØKA (8) " +#~ "mezer\n" +#~ " -F, -f, --form-feed\n" +#~ " pou¾ije znak nové stránky (FF) místo nových øádkù " +#~ "(CR)\n" +#~ " k oddìlení stránek (a 3-øádkovou hlavièku stránky pøi " +#~ "-F\n" +#~ " nebo 5-øádkovou hlavièku s patièkou bez -F).\n" + +#~ msgid "" +#~ " -h HEADER, --header=HEADER\n" +#~ " use a centered HEADER instead of filename in page " +#~ "header,\n" +#~ " -h \"\" prints a blank line, don't use -h\"\"\n" +#~ " -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +#~ " replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +#~ " -J, --join-lines merge full lines, turns off -W line truncation, no " +#~ "column\n" +#~ " alignment, -S[STRING] sets separators\n" +#~ " -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +#~ " set the page length to PAGE_LENGTH (66) lines\n" +#~ " (default number of lines of text 56, and with -F 63)\n" +#~ " -m, --merge print all files in parallel, one in each column,\n" +#~ " truncate lines, but join lines of full length with -" +#~ "J\n" +#~ " -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +#~ " number lines, use DIGITS (5) digits, then SEP (TAB),\n" +#~ " default counting starts with 1st line of input file\n" +#~ " -N NUMBER, --first-line-number=NUMBER\n" +#~ " start counting with NUMBER at 1st line of first\n" +#~ " page printed (see +FIRST_PAGE)\n" +#~ " -o MARGIN, --indent=MARGIN\n" +#~ " offset each line with MARGIN (zero) spaces, do not\n" +#~ " affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +#~ " -r, --no-file-warnings\n" +#~ " omit warning when a file cannot be opened\n" +#~ msgstr "" +#~ " -h HLAVIÈKA, --header=HLAVIÈKA\n" +#~ " pou¾ije vystøedìnou HLAVIÈKU místo jména souboru.\n" +#~ " -h \"\" vypí¹e prázdnou hlavièku. Nepou¾ívejte -h" +#~ "\"\"\n" +#~ " -i[ZNAK[©ÍØKA]], --output-tabs[=ZNAK[©ÍØKA]]\n" +#~ " nahradí ©ÍØKA (8) mezer ZNAKem (tabelátorem)\n" +#~ " -J, --join-lines vypisuje slité celé øádky, vyøadí -W zkracování " +#~ "øádkù,\n" +#~ " ru¹í zarovnání sloupcù, -S[ØETÌZEC] nastavuje " +#~ "oddìlovaèe\n" +#~ " -l DÉLKA_STRÁNKY, --length=DÉLKA_STRÁNKY\n" +#~ " nastaví délku stránky (66). Zadáno v øádcích.\n" +#~ " (implicitnì je 56 øádkù textu, s -F 63)\n" +#~ " -m, --merge vypí¹e soubory vedle sebe, ka¾dý v jednom sloupci,\n" +#~ " zkracuje øádky, ale spolu s pøepínaèem -J je vypisuje " +#~ "celé\n" +#~ " -n [ODDÌL[ÈÍSLIC]], --number-lines[=ODDÌL[ÈÍSLIC]]\n" +#~ " èísluje øádky, vypisuje ÈÍSLIC (5) èíslic a potom " +#~ "ODDÌL\n" +#~ " (TAB). Implicitnì poèítání zaèíná od jednièky prvním\n" +#~ " vstupním øádkem\n" +#~ " -N ÈÍSLO, --first-line-number=ÈÍSLO\n" +#~ " zaène poèítání èíslem ÈÍSLO prvního øádku první\n" +#~ " vypisované stránky (viz +PRVNÍ_STRÁNKA)\n" +#~ " -o OKRAJ, --indent=OKRAJ\n" +#~ " okraj na levé stranì stránky (neovlivòuje -w nebo -" +#~ "W,\n" +#~ " okraj bude pøidán k ©ÍØCE_STRÁNKY)\n" +#~ " -r, --no-file-warnings\n" +#~ " potlaèí varování, kdy¾ soubor nemù¾e být otevøen\n" + +#~ msgid "" +#~ " -s[CHAR],--separator[=CHAR]\n" +#~ " separate columns by a single character, default for " +#~ "CHAR\n" +#~ " is the character without -w and 'no char' with -" +#~ "w\n" +#~ " -s[CHAR] turns off line truncation of all 3 column\n" +#~ " options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +#~ " -S[STRING], --sep-string[=STRING]\n" +#~ " separate columns by an optional STRING, don't use\n" +#~ " -S \"STRING\", -S only: No separator used (same as -S" +#~ "\"\"),\n" +#~ " without -S: Default separator with -J and " +#~ "\n" +#~ " otherwise (same as -S\" \"), no effect on column " +#~ "options\n" +#~ " -t, --omit-header omit page headers and trailers\n" +#~ " -T, --omit-pagination\n" +#~ " omit page headers and trailers, eliminate any " +#~ "pagination\n" +#~ " by form feeds set in input files\n" +#~ " -v, --show-nonprinting\n" +#~ " use octal backslash notation\n" +#~ " -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +#~ " set page width to PAGE_WIDTH (72) characters for\n" +#~ " multiple text-column output only, -s[char] turns off " +#~ "(72)\n" +#~ " -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +#~ " set page width to PAGE_WIDTH (72) characters always,\n" +#~ " truncate lines, except -J option is set, no " +#~ "interference\n" +#~ " with -S or -s\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +#~ "FILE is -, read standard input.\n" +#~ msgstr "" +#~ " -s[ZNAK], --separator[=ZNAK]\n" +#~ " oddìlí sloupce volitelným ZNAKem, implicitnì je to " +#~ "TAB,\n" +#~ " kdy¾ není zadán pøepínaè -w a ¾ádný znak, kdy¾ je -w " +#~ "zadán.\n" +#~ " -s[CHAR] vypne zkracování øádkù ve v¹ech tøech " +#~ "sloupcích\n" +#~ " (pøepínaèe -COLUMN|-a -COLUMN|-m) kromì toho, kdy¾ je " +#~ "zadán\n" +#~ " pøepínaè -w\n" +#~ " -S[ØETÌZEC], --sep-string[=ØETÌZEC]\n" +#~ " oddìlí sloupce volitelným ØETÌZECem, nepou¾ívejte\n" +#~ " -S \"ØETÌZEC\". \n" +#~ " Pouze -S: oddìlovaè není u¾it, rovnocenné s -S\"\" \n" +#~ " bez -S: s pøepínaèem -J je implicitní `TAB', jinak " +#~ "mezera\n" +#~ " (rovnocenné s -S\" \"), neovlivòuje parametry " +#~ "sloupcù.\n" +#~ " -t, --omit-header nevypisuje hlavièky a patièky stránek\n" +#~ " -T, --omit-pagination\n" +#~ " nevypisuje hlavièky a patièky stránek, ignoruje " +#~ "rozvr¾ení\n" +#~ " stránek vstupního souboru (ignoruje znak nové stránky " +#~ "FF)\n" +#~ " -v, --show-nonprinting\n" +#~ " pou¾ije osmièkovou notaci se zpìtným lomítkem\n" +#~ " -w ©ÍØKA_STRÁNKY, --width=©ÍØKA_STRÁNKY\n" +#~ " nastaví ¹íøku stránky na ©ÍØKA_STRÁNKY (72) znakù " +#~ "pouze\n" +#~ " pro vícesloupcový výstup, -s[ZNAK] vypíná (72),\n" +#~ " -W ©ÍØKA_STRÁNKY, --page-width=©ÍØKA_STRÁNKY\n" +#~ " nastaví ¹íøku stránky na ©ÍØKA_STRÁNKY (72) znakù,\n" +#~ " kdy¾ není zadán pøepínaè -J, zkracuje øádky\n" +#~ " neovlivòuje -S nebo -s.\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" +#~ " Jestli¾e je zadáno -l nn, kdy nn <= 10 nebo nn >= 3 a -F, pak je " +#~ "implicitnì\n" +#~ "pou¾it pøepínaè -T. Nebude-li SOUBOR zadán nebo bude-li -, pak bude èten\n" +#~ "standardní vstup.\n" + +#, fuzzy +#~ msgid "" +#~ "Output a permuted index, including context, of the words in the input " +#~ "files.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -A, --auto-reference output automatically generated " +#~ "references\n" +#~ " -C, --copyright display Copyright and copying " +#~ "conditions\n" +#~ " -G, --traditional behave more like System V `ptx'\n" +#~ " -F, --flag-truncation=STRING use STRING for flagging line " +#~ "truncations\n" +#~ " -M, --macro-name=STRING macro name to use instead of `xx'\n" +#~ " -O, --format=roff generate output as roff directives\n" +#~ " -R, --right-side-refs put references at right, not counted in -" +#~ "w\n" +#~ " -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +#~ " -T, --format=tex generate output as TeX directives\n" +#~ " -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +#~ " -b, --break-file=FILE word break characters in this FILE\n" +#~ " -f, --ignore-case fold lower case to upper case for " +#~ "sorting\n" +#~ " -g, --gap-size=NUMBER gap size in columns between output " +#~ "fields\n" +#~ " -i, --ignore-file=FILE read ignore word list from FILE\n" +#~ " -o, --only-file=FILE read only word list from this FILE\n" +#~ " -r, --references first field of each line is a reference\n" +#~ " -t, --typeset-mode - not implemented -\n" +#~ " -w, --width=NUMBER output width in columns, reference " +#~ "excluded\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +#~ msgstr "" +#~ " Povinné argumenty dlouhých pøepínaèù, jsou také povinné i u " +#~ "odpovídajících\n" +#~ "krátkých pøepínaèù.\n" +#~ "\n" +#~ " -A, --auto-reference ve výstupu jsou automaticky generované " +#~ "odkazy\n" +#~ " -C, --copyright vypí¹e autorská práva a podmínky " +#~ "kopírování\n" +#~ " -G, --traditional zpùsobí chování jako System V `ptx'\n" +#~ " -F, --flag-truncation=ØETÌZEC pou¾ije ØETÌZEC pro urèení zkracování " +#~ "øádkù\n" +#~ " -M, --macro-name=ØETÌZEC jméno makra, které se má pou¾ít místo " +#~ "`xx'\n" +#~ " -O, --format=roff generuje výstup pro program roff\n" +#~ " -R, --right-side-refs vlo¾í odkazy vpravo, nepoèítány v -w\n" +#~ " -S, --sentence-regexp=REGVÝR pro konec øádkù a konec vìt\n" +#~ " -T, --format=tex generuje výstup pro TeX\n" +#~ " -W, --word-regexp=REGVÝR pou¾ije REGVÝR pro urèení ka¾dého slova\n" +#~ " -b, --break-file=SOUBOR znaky pøeru¹ující slovo v tomto SOUBORu\n" +#~ " -f, --ignore-case pøepsání malých písmen na velká pro " +#~ "øazení\n" +#~ " -g, --gap-size=ÈÍSLO velikost mezery ve sloupcích mezi " +#~ "výstupními\n" +#~ " polo¾kami\n" +#~ " -i, --ignore-file=SOUBOR pøeète slova, která se mají ignorovat\n" +#~ " ze SOUBORu\n" +#~ " -o, --only-file=SOUBOR pøeètení seznamu slov pouze ze SOUBORu\n" +#~ " -r, --references první polo¾ka ka¾dého øádku je odkaz\n" +#~ " -t, --typeset-mode - neimplementováno -\n" +#~ " -w, --width=ÈÍSLO ¹íøka výstupu ve slupcích, bez odkazù\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" +#~ "Jestli¾e není SOUBOR zadán nebo je -, bude èten standardní vstup. " +#~ "Implicitní\n" +#~ "pøepínaèe: `-F /'\n" + +# nie wiem jak ladnie tlumaczyc `last resort comparison' - rzm +#~ msgid "" +#~ "Other options:\n" +#~ "\n" +#~ " -c, --check check whether input is sorted; do not sort\n" +#~ " -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin " +#~ "1)\n" +#~ " -m, --merge merge already sorted files; do not sort\n" +#~ " -o, --output=FILE write result to FILE instead of standard " +#~ "output\n" +#~ " -s, --stable stabilize sort by disabling last-resort " +#~ "comparison\n" +#~ " -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +#~ " -t, --field-separator=SEP use SEP instead of non- to whitespace " +#~ "transition\n" +#~ " -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %" +#~ "s\n" +#~ " multiple options specify multiple " +#~ "directories\n" +#~ " -u, --unique with -c: check for strict ordering\n" +#~ " otherwise: output only the first of an " +#~ "equal run\n" +#~ " -z, --zero-terminated end lines with 0 byte, not newline\n" +#~ " +POS1 [-POS2] start a key at POS1, end it before POS2 " +#~ "(origin 0)\n" +#~ " Warning: this option is obsolescent\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Dal¹í pøepínaèe:\n" +#~ "\n" +#~ " -c, --check v pøípadì, ¾e vstupní soubory jsou ji¾ " +#~ "seøazeny\n" +#~ " neøadí je\n" +#~ " -k, --key=POZ1[,POZ2] zaèátek klíèe na POZ1 a konec *na* POZ2 " +#~ "èísla\n" +#~ " polo¾ek a pozice znakù jsou poèítány od " +#~ "jedné\n" +#~ " -m, --merge spojí ji¾ seøazené soubory, neseøazuje je\n" +#~ " -o, --output=SOUBOR výsledek zapí¹e do SOUBORu místo na " +#~ "standardní\n" +#~ " výstup\n" +#~ " -s, --stable stabilizuje výsledek zakázáním seøazení " +#~ "stejných\n" +#~ " polo¾ek porovnáváním bajt po bajtu\n" +#~ " -S, --buffer-size=VELIKOST\n" +#~ " pou¾ije VELIKOST pro hlavní pamì»ový buffer\n" +#~ " -t, --field-separator=ODDÌL\n" +#~ " pou¾ije ODDÌLovaèe místo pøechodu nemezera/" +#~ "mezera\n" +#~ " -T, --temporary-directory=ADRESÁØ\n" +#~ " pou¾ije ADRESÁØ pro doèasné soubory, " +#~ "nepou¾ívá\n" +#~ " $TMPDIR ani %s.\n" +#~ " Více pøepínaèù zadává více adresáøù.\n" +#~ " -u, --unique s -c testuje striktní uspoøádání;\n" +#~ " jinak vypí¹e pouze první ze stejných " +#~ "sekvencí\n" +#~ " -z, --zero-terminated vstupní øádky jsou ukonèeny bajtem 0 místo " +#~ "LF\n" +#~ " (pro pou¾ití s 'find -print0')\n" +#~ " +POZ1 [-POZ2] zaèátek klíèe na pozici POZ1, konec pøed " +#~ "POZ2\n" +#~ " (poèítáno od nuly).\n" +#~ " Varování: tento pøepínaè je zastaralý\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "Print the last %d lines of each FILE to standard output.\n" +#~ "With more than one FILE, precede each with a header giving the file " +#~ "name.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " --retry keep trying to open a file even if it is\n" +#~ " inaccessible when tail starts or if it " +#~ "becomes\n" +#~ " inaccessible later -- useful only with -f\n" +#~ " -c, --bytes=N output the last N bytes\n" +#~ " -f, --follow[={name|descriptor}]\n" +#~ " output appended data as the file grows;\n" +#~ " -f, --follow, and --follow=descriptor are\n" +#~ " equivalent\n" +#~ " -F same as --follow=name --retry\n" +#~ " -n, --lines=N output the last N lines, instead of the last %" +#~ "d\n" +#~ " --max-unchanged-stats=N\n" +#~ " with --follow=name, reopen a FILE which has " +#~ "not\n" +#~ " changed size after N (default %d) iterations\n" +#~ " to see if it has been unlinked or renamed\n" +#~ " (this is the usual case of rotated log files)\n" +#~ " --pid=PID with -f, terminate after process ID, PID dies\n" +#~ " -q, --quiet, --silent never output headers giving file names\n" +#~ " -s, --sleep-interval=S with -f, each iteration lasts approximately S\n" +#~ " (default 1) seconds\n" +#~ " -v, --verbose always output headers giving file names\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ " Vypí¹e, na standardní výstup, posledních %d øádkù ka¾dého SOUBORu. " +#~ "Jestli¾e\n" +#~ "bude zadán více jak jeden soubor, pøedchází výpisu ka¾dého souboru název " +#~ "tohoto\n" +#~ "souboru. Jestli¾e SOUBOR nebude zadán nebo bude -, bude èten standardní " +#~ "vstup.\n" +#~ "\n" +#~ " --retry bude zkou¹et otevøít soubor dokonce i kdy¾\n" +#~ " bude nedostupný v okam¾iku spu¹tìní tailu " +#~ "nebo\n" +#~ " jestli¾e se stane nedostupným pozdìji -- " +#~ "u¾iteèné\n" +#~ " pouze s -f\n" +#~ " -c, --bytes=N vypí¹e posledních N bajtù\n" +#~ " -f, --follow[={name|descriptor}]\n" +#~ " vypisuje pouze data pøidávaná do souboru;\n" +#~ " -f, --follow a --follow=descriptor jsou " +#~ "stejné\n" +#~ " -n, --lines=N vypí¹e posledních N øádkù místo posledních %d\n" +#~ " --max-unchanged-stats=N\n" +#~ " dohromady s --follow=name, znovuotevøe " +#~ "SOUBOR,\n" +#~ " jestli¾e se velikost souboru bìhem posledních " +#~ "N\n" +#~ " (implicitnì %d) iterací nezmìnila, by se " +#~ "podíval,\n" +#~ " zda nebyl soubor smazán, nebo pøejmenován " +#~ "(obvyklé\n" +#~ " pøi rotaci log souborù). \n" +#~ " --pid=PID s -f se ukonèí, kdy¾ proces s èíslem PID " +#~ "skonèí\n" +#~ " -q, --quiet, --silent nevypisuje názvy souborù\n" +#~ " -s, --sleep-interval=S spolu s -f èeká S sekund mezi testováním, zde " +#~ "nìco\n" +#~ " nepøibylo (implicitnì 1)\n" +#~ " -v, --verbose v¾dy vypisuje názvy souborù\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" + +#~ msgid "" +#~ "If the first character of N (the number of bytes or lines) is a `+',\n" +#~ "print beginning with the Nth item from the start of each file, " +#~ "otherwise,\n" +#~ "print the last N items in the file. N may have a multiplier suffix:\n" +#~ "b for 512, k for 1024, m for 1048576 (1 Meg). A first OPTION of -VALUE\n" +#~ "or +VALUE is treated like -n VALUE or -n +VALUE unless VALUE has one of\n" +#~ "the [bkm] suffix multipliers, in which case it is treated like -c VALUE\n" +#~ "or -c +VALUE. Warning: a first option of +VALUE is obsolescent, and " +#~ "support\n" +#~ "for it will be withdrawn.\n" +#~ "\n" +#~ "With --follow (-f), tail defaults to following the file descriptor, " +#~ "which\n" +#~ "means that even if a tail'ed file is renamed, tail will continue to " +#~ "track\n" +#~ "its end. This default behavior is not desirable when you really want to\n" +#~ "track the actual name of the file, not the file descriptor (e.g., log\n" +#~ "rotation). Use --follow=name in that case. That causes tail to track " +#~ "the\n" +#~ "named file by reopening it periodically to see if it has been removed " +#~ "and\n" +#~ "recreated by some other program.\n" +#~ "\n" +#~ msgstr "" +#~ " Jestli¾e první znak N (poèet bajtù nebo øádkù) je `+', výpis zaèíná\n" +#~ "od N-tého elementu od poèátku ka¾dého souboru. Jinak se vypisuje " +#~ "posledních\n" +#~ "N elementù souboru. N mù¾e mít násobící pøíponu: b - 512, k - 1024 nebo\n" +#~ "m - 1048576 (1 Mega). První pøepínaè -HODNOTA nebo +HODNOTA, je brán " +#~ "jako\n" +#~ "-n HODNOTA nebo -n +HODNOTA, pokud HODNOTA nemá násobící pøíponu [bkm].\n" +#~ "Jestli¾e ji má, pak je HODNOTA brána jako -c HODNOTA nebo -c +HODNOTA.\n" +#~ "\n" +#~ " UPOZORNÌNÍ: první pøepínaè +VALUE je zastaralý a jeho podpora bude\n" +#~ "odstranìna.\n" +#~ "\n" +#~ "S --follow (-f), tail sleduje popisovaè souboru, co¾ znamená, jestli¾e\n" +#~ "sledovaný soubor bude pøejmenován, tail bude sledovat tento pøejmenovaný\n" +#~ "soubor. Implicitní funkce není ¾ádoucí, jestli¾e chcete sledovat " +#~ "aktuální\n" +#~ "soubor pod daným jménem a ne popisovaè souboru (napøíklad rotace logù).\n" +#~ "V tomto pøípadì pou¾ijte --follow=name. To zpùsobí, ¾e tail bude " +#~ "sledovat\n" +#~ "soubor daného jména s periodickým znovuotevíráním, aby zjistil, zda byl \n" +#~ "soubor smazán a znovuvytvoøen nìjakým jiným programem.\n" + +#~ msgid "" +#~ "\n" +#~ "SETs are specified as strings of characters. Most represent themselves.\n" +#~ "Interpreted sequences are:\n" +#~ "\n" +#~ " \\NNN character with octal value NNN (1 to 3 octal digits)\n" +#~ " \\\\ backslash\n" +#~ " \\a audible BEL\n" +#~ " \\b backspace\n" +#~ " \\f form feed\n" +#~ " \\n new line\n" +#~ " \\r return\n" +#~ " \\t horizontal tab\n" +#~ " \\v vertical tab\n" +#~ " CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +#~ " [CHAR*] in SET2, copies of CHAR until length of SET1\n" +#~ " [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +#~ " [:alnum:] all letters and digits\n" +#~ " [:alpha:] all letters\n" +#~ " [:blank:] all horizontal whitespace\n" +#~ " [:cntrl:] all control characters\n" +#~ " [:digit:] all digits\n" +#~ " [:graph:] all printable characters, not including space\n" +#~ " [:lower:] all lower case letters\n" +#~ " [:print:] all printable characters, including space\n" +#~ " [:punct:] all punctuation characters\n" +#~ " [:space:] all horizontal or vertical whitespace\n" +#~ " [:upper:] all upper case letters\n" +#~ " [:xdigit:] all hexadecimal digits\n" +#~ " [=CHAR=] all characters which are equivalent to CHAR\n" +#~ msgstr "" +#~ "\n" +#~ " MNO®INY jsou zadány jako øetìzce znakù. Vìt¹ina znakù reprezentuje je " +#~ "samé,\n" +#~ "speciální význam mají tyto:\n" +#~ "\n" +#~ " \\NNN znak o hodnotì NNN (zadáno v osmièkové soustavì)\n" +#~ " \\\\ zpìtné lomítko\n" +#~ " \\a znak BEL (pípnutí)\n" +#~ " \\b backspace\n" +#~ " \\f nová strana (form feed)\n" +#~ " \\n nový øádek (line feed)\n" +#~ " \\r návrat vozíku (return)\n" +#~ " \\t horizontální tabelátor\n" +#~ " \\v vertikální tabelátor\n" +#~ " ZNAK1-ZNAK2 v¹echny znaky od ZNAKu1 do ZNAKu2, vzestupnì\n" +#~ " [ZNAK*] v MNO®INÌ2 kopíruje ZNAK tolikrát, aby byla MNO®INA2 " +#~ "stejnì\n" +#~ " dlouhá jako MNO®INA1\n" +#~ " [ZNAK*KOLIKRÁT] KOLIKRÁT kopií ZNAKu, osmièkovì kdy¾ zaèíná èíslicí 0\n" +#~ " [:alnum:] v¹echna písmena a èíslice\n" +#~ " [:alpha:] v¹echna písmena\n" +#~ " [:blank:] v¹echny horizontální mezery\n" +#~ " [:cntrl:] v¹echny øídící znaky\n" +#~ " [:digit:] v¹echny èíslice\n" +#~ " [:graph:] v¹echny tisknutelné znaky bez mezer\n" +#~ " [:lower:] v¹echna malá písmena\n" +#~ " [:print:] v¹echny tisknutelné znaky vèetnì mezer\n" +#~ " [:punct:] v¹echny interpunkèní znaky\n" +#~ " [:space:] v¹echny horizontální a vertikální mezery\n" +#~ " [:upper:] v¹echna velká písmena\n" +#~ " [:xdigit:] v¹echny v¹echny ¹estnáctkové èíslice\n" +#~ " [=ZNAK=] v¹echny znaky rovnocenné s ZNAKem\n" + +#, fuzzy +#~ msgid "" +#~ "Discard all but one of successive identical lines from INPUT (or\n" +#~ "standard input), writing to OUTPUT (or standard output).\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -c, --count prefix lines by the number of occurrences\n" +#~ " -d, --repeated only print duplicate lines\n" +#~ " -D, --all-repeated[=delimit-method] print all duplicate lines\n" +#~ " delimit-method={none(default),prepend,separate)}\n" +#~ " Delimiting is done with blank lines.\n" +#~ " -f, --skip-fields=N avoid comparing the first N fields\n" +#~ " -i, --ignore-case ignore differences in case when comparing\n" +#~ " -s, --skip-chars=N avoid comparing the first N characters\n" +#~ " -u, --unique only print unique lines\n" +#~ " -w, --check-chars=N compare no more than N characters in lines\n" +#~ " -N same as -f N\n" +#~ " +N same as -s N (obsolescent; will be withdrawn)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "A field is a run of whitespace, then non-whitespace characters.\n" +#~ "Fields are skipped before chars.\n" +#~ msgstr "" +#~ " Ze v¹ech po sobì jdoucích stejných vstupních øádkù, vypí¹e na výstup " +#~ "v¾dy\n" +#~ "pouze jeden. Implicitnì je jako VSTUP brán standardní vstup a jako " +#~ "VÝSTUP\n" +#~ "standardní výstup.\n" +#~ "\n" +#~ " -c, --count pøed ka¾dý øádek vlo¾í poèet opakování\n" +#~ " -d, --repeated vypisuje pouze opakující se øádky\n" +#~ " -D, --all-repeated vypisuje v¹echny opakující se øádky\n" +#~ " -f, --skip-fields=N neporovnává prvních N polo¾ek\n" +#~ " -i, --ignore-case ignoruje rozdíl mezi malými a velkými písmeny\n" +#~ " -s, --skip-chars=N neporovnává prvních N znakù\n" +#~ " -u, --unique vypisuje pouze neopakující se øádky\n" +#~ " -w, --check-chars=N porovnává nejvý¹e N prvních znakù ka¾dého øádku\n" +#~ " -N stejné jako -f N\n" +#~ " +N stejné jako -s N (zastaralé; bude odstranìno)\n" +#~ " --help vypí¹e tuto nápovìdu a skonèí\n" +#~ " --version vypí¹e oznaèení verze a skonèí\n" +#~ "\n" +#~ " Jako polo¾ka je chápán neprázdný øetìzec znakù, které nejsou mezerami " +#~ "nebo\n" +#~ "tabelátory. Polo¾ky jsou oddìleny mezerami a tabelátory. Pokud mají být\n" +#~ "pøeskoèeny polo¾ky a znaky zároveò (-f, -s), pak jsou nejdøíve " +#~ "pøeskoèeny\n" +#~ "polo¾ky.\n" diff --git a/src/apps/bin/coreutils-5.0/po/da.gmo b/src/apps/bin/coreutils-5.0/po/da.gmo new file mode 100644 index 0000000000..8f0f3456a4 Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/da.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/da.po b/src/apps/bin/coreutils-5.0/po/da.po new file mode 100644 index 0000000000..841b48eaeb --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/da.po @@ -0,0 +1,8295 @@ +# Danish messages for core-utils. +# Copyright (C) 1996 Free Software Foundation, Inc. +# Keld Jørn Simonsen , 2000-2003. +# +# Review 2003-03-26 Ole Laursen +# +msgid "" +msgstr "" +"Project-Id-Version: coreutils 4.5.11\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2003-03-30 19:53+0200\n" +"Last-Translator: Keld Jørn Simonsen \n" +"Language-Team: Danish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "ugyldigt argument %s for %s" + +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "flertydigt argument %s til %s" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "Gyldige argumenter er: " + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "fejl ved skrivning" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "ukendt systemfejl" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "almindelig tom fil" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "almindelig fil" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "katalog" + +#: lib/file-type.c:48 +msgid "block special file" +msgstr "blokspecialfil" + +#: lib/file-type.c:51 +msgid "character special file" +msgstr "tegnspecialfil" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "fifo" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "symbolsk lænke" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "sokkel" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "meddelelseskø" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "semafor" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "delt hukommelsesobjekt" + +#: lib/file-type.c:71 +msgid "weird file" +msgstr "mærkelig fil" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: flag '%s' er flertydigt\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: flag '--%s' tillader ikke et argument\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: flag '%c%s' tillader ikke et argument\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: flag '%s' kræver et argument\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: ugyldigt flag '--%s'\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: ugyldigt flag '%c%s'\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: ulovligt flag -- %c\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: ugyldigt flag -- %c\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: flag kræver et argument -- %c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: flag '-W %s' er flertydigt\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: flag '-W %s' tillader ikke et argument\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "blokstørrelse" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "Mislykkedes med at returnere til oprindeligt arbejdskatalog" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "kan ikke oprette katalog %s" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%s eksisterer, men er ikke et katalog" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "kan ikke ændre ejer og/eller gruppe på %s" + +#: lib/makepath.c:338 +#, c-format +msgid "cannot chdir to directory %s" +msgstr "kan ikke skifte katalog til %s" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "kan ikke ændre adgangsrettigheder på %s" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "hukommelsen opbrugt" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "'" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "'" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[YyJj]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[nN]" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "iconv-funktion ikke brugelig" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "iconv-funktion ikke til stede" + +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "tegn uden for område" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "kan ikke konvertere U+%04X til lokalt tegnsæt" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "Kan ikke konvertere U+%04X til lokalt tegnsæt: %s" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "ugyldig bruger" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "ugyldig gruppe" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "kan ikke finde logind-gruppen for en numerisk bruger-ID" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "kan ikke undlade både bruger *og* gruppe" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "Skrevet af %s.\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +"Dette er frit programmel; se kildeteksten for betingelser for kopiering. Der " +"er INGEN\n" +"garanti; ikke engang for SALGBARHED eller EGNETHED FOR ET SPECIELT FORMÅL.\n" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "strengsammenligning mislykkedes" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "Sæt LC_ALL='C' for at omgå problemet." + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "De sammenlignede strenge var '%s' og '%s'." + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Prøv '%s --help' for mere information.\n" + +#: src/basename.c:54 +#, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"Brug: %s NAVN [SUFFIKS]\n" +" eller: %s FLAG\n" + +#: src/basename.c:59 +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" +"Udskriv NAVN med eventuelle indledende katalog-komponenter fjernet.\n" +"Hvis SUFFIKS er angivet, fjernes også afsluttende SUFFIKS.\n" +"\n" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"Rapportér fejl til <%s>.\n" + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "for få argumenter" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "for mange argumenter" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "Torbjørn Granlund og Richard M. Stallman" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "Brug: %s [FLAG] [FIL]...\n" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" +"Flet FILer eller standard-ind, til standard-ud.\n" +"\n" +" -A, --show-all samme som -vET\n" +" -b, --number-nonblank nummerér ikke-blanke ud-linjer\n" +" -e samme som -vE\n" +" -E, --show-ends skriv $ i slutningen af hver linje\n" +" -n, --number nummerér alle ud-linjer\n" +" -s, --squeeze-blank aldrig mere end én blank linje\n" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" +" -t samme som -vT\n" +" -T, --show-tabs vis tabulatorer som ^I\n" +" -u (ignoreret)\n" +" -v, --show-nonprinting brug ^ og M- notation, undtagen for LFD og TAB\n" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"Hvis ingen FIL er angivet, eller FIL er -, læses fra standard-ind.\n" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" +"\n" +" -B, --binary skriv binært til konsolenheden.\n" +"\n" + +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "kan ikke lave ioctl på %s" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "standard-ud" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s: indfil er udfil" + +#: src/cat.c:858 +msgid "closing standard input" +msgstr "lukker standard-ind" + +#: src/cat.c:861 +msgid "closing standard output" +msgstr "lukker standard-ud" + +#: src/chgrp.c:93 +msgid "cannot change to null group" +msgstr "kan ikke ændre til nul-gruppe" + +#: src/chgrp.c:102 +#, c-format +msgid "invalid group name %s" +msgstr "ugyldigt gruppenavn %s" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "gruppenummer" + +#: src/chgrp.c:109 +#, c-format +msgid "invalid group number %s" +msgstr "ugyldigt gruppenummer %s" + +#: src/chgrp.c:126 +#, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Brug: %s [FLAG]... GRUPPE FIL...\n" +" eller: %s [FLAG]... --reference=RFIL FIL...\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Ændr gruppemedlemskab af hver FIL til GRUPPE.\n" +"\n" +" -c, --changes som verbose, men fortæl kun om ændringer\n" +" --dereference ændr referent for hver symbolsk lænke i stedet " +"for\n" +" den symbolske lænke selv\n" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" +" -h, --no-dereference ændr symbolske lænker i stedet for refererede " +"filer\n" +" (kun for systemer der kan ændre ejerskabet af\n" +" en symlænke)\n" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet undertryk de fleste fejlmeldinger\n" +" --reference=RFIL brug RFIL's gruppe i stedet for at den angivne\n" +" GRUPPE-værdi\n" +" -R, --recursive ændr filer og kataloger rekursivt (inkl. " +"underkataloger)\n" +" -v, --verbose vis en meddelelse for hver fil som behandles\n" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, c-format +msgid "failed to get attributes of %s" +msgstr "Kunne ikke hente attributter for %s" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "henter nye attributter for %s" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "tilstand for %s ændret til %04lo (%s)\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "kunne ikke ændre tilstand for %s til %04lo (%s)\n" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "tilstand for %s beholdt som %04lo (%s)\n" + +#: src/chmod.c:179 +#, c-format +msgid "changing permissions of %s" +msgstr "ændrer rettigheder på %s" + +#: src/chmod.c:242 +#, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Brug: %s [FLAG]... TILSTAND[,TILSTAND]... FIL...\n" +" eller: %s [FLAG]... OKTAL-TILSTAND FIL...\n" +" eller: %s [FLAG]... --reference=RFIL FIL...\n" + +#: src/chmod.c:248 +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"Ændr tilstanden for hver FIL til TILSTAND.\n" +"\n" +" -c, --changes som verbose, men siger kun noget ved ændringer\n" +" -f, --silent, --quiet undertryk de fleste fejlmeldinger\n" +" -v, --verbose giv en meddelelse for hver fil som behandles\n" +" --reference=RFIL brug RFIL's tilstand i stedet for TILSTAND-" +"værdier\n" +" -R, --recursive ændr filer og kataloger rekursivt (med " +"underkataloger)\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" +"\n" +"Hver TILSTAND skal være ét eller flere af bogstaverne ugoa, ét af symbolerne " +"+-=\n" +"og ét eller flere af bogstaverne rwxXstugo.\n" + +#: src/chmod.c:320 +#, c-format +msgid "invalid character %s in mode string %s" +msgstr "ugyldigt tegn %s i tilstands-streng %s" + +#: src/chmod.c:361 +#, c-format +msgid "invalid mode string: %s" +msgstr "ugyldig tilstands-streng: %s" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "hverken symbolsk lænke %s eller referent er blevet ændret\n" + +#: src/chown-core.c:143 +#, c-format +msgid "changed ownership of %s to %s\n" +msgstr "ændrede ejer af %s til %s\n" + +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "ændrede gruppe for %s til %s\n" + +#: src/chown-core.c:148 +#, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "kunne ikke ændre ejerskab på %s til %s\n" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "kunne ikke ændre gruppe for %s til %s\n" + +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "ejer af %s beholdt som %s\n" + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "gruppe for %s beholdt som %s\n" + +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "ændrer ejerskab for %s" + +#: src/chown-core.c:327 +#, c-format +msgid "changing group of %s" +msgstr "ændrer gruppe for %s" + +#: src/chown-core.c:345 +#, c-format +msgid "unable to restore permissions of %s" +msgstr "kunne ikke genskabe adgangsrettigheder på %s" + +#: src/chown.c:99 +#, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Brug: %s [FLAG]... EJER[:[GRUPPE]] FIL...\n" +" eller: %s [FLAG]... :GRUPPE FIL...\n" +" eller: %s [FLAG]... --reference=RFIL FIL...\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Ændr ejer og/eller gruppe for hver FIL til EJER og/eller GRUPPE.\n" +"\n" +" -c, --changes som verbose, men rapportér kun når en ændring er " +"gjort\n" +" --dereference foretag ændringerne på referenten af hver symbolsk\n" +" lænke i stedet for den symbolske lænke selv\n" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" +" --from=AKTUELLE_EJER:AKTUELLE_GRUPPE\n" +" ændr kun ejer og/eller gruppe for hver fil, hvis\n" +" filens aktuelle ejer eller gruppe er lig dem " +"angivet\n" +" her. Ejer eller gruppe kan udelades, i så fald er " +"overensstemmelse\n" +" ikke krævet for den udeladte attribut.\n" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet undertryk de fleste fejlmeldinger\n" +" --reference=RFIL brug ejer og gruppe af RFIL i stedet for at bruge\n" +" de angivne EJER:GRUPPE-værdier\n" +" -R, --recursive arbejd på filer og kataloger rekursivt\n" +" -v, --verbose vis oplysninger om hver eneste fil der behandles\n" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" +"\n" +"Ejer forbliver uændret hvis udeladt. Gruppe forbliver uændret hvis andet\n" +"ikke er angivet, men bliver sat til det samme som logind-gruppen hvis det " +"er\n" +"angivet med et ':'. EJER og GRUPPE kan være numerisk eller symbolsk.\n" + +#: src/chroot.c:45 +#, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"Brug: %s NYROD [KOMMANDO...]\n" +"eller: %s FLAG\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" +"Kør KOMMANDO med rod-kataloget sat til NYROD.\n" +"\n" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" +"\n" +"Hvis ingen kommando er angivet, kør '${SHELL} -i' (default: /bin/sh).\n" + +#: src/chroot.c:84 +#, c-format +msgid "cannot change root directory to %s" +msgstr "kan ikke ændre rod-kataloget til %s" + +#: src/chroot.c:87 +msgid "cannot chdir to root directory" +msgstr "kan ikke ændre til rod-katalog" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "%s: fil for lang" + +#: src/cksum.c:282 +#, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"Brug: %s [FIL]...\n" +" eller: %s [FLAG]...\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" +"Udskriv CRC-kontrolsum og byteantal for hver FIL.\n" +"\n" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "Richard Stallman og David MacKenzie" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "Brug: %s [FLAG]... VENSTRE_FIL HØJRE_FIL\n" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" +"Sammenlign de sorterede filer VENSTRE_FIL og HØJRE_FIL linje for linje.\n" +"\n" +" -1 se bort fra linjer som kun findes i den venstre fil\n" +" -2 se bort fra linjer som kun findes i den højre fil\n" +" -3 se bort fra linjer som findes i begge filer\n" + +#: src/copy.c:162 src/du.c:332 +#, c-format +msgid "cannot access %s" +msgstr "kan ikke tilgå %s" + +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "kan ikke åbne %s til læsning" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, c-format +msgid "cannot fstat %s" +msgstr "kan ikke udføre fstat() %s" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "overspringer fil %s, da den blev erstattet mens den blev kopieret" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, c-format +msgid "cannot remove %s" +msgstr "kan ikke fjerne %s" + +#: src/copy.c:277 +#, c-format +msgid "cannot create regular file %s" +msgstr "kan ikke oprette almindelig fil %s" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, c-format +msgid "reading %s" +msgstr "læser %s" + +#: src/copy.c:362 +#, c-format +msgid "cannot lseek %s" +msgstr "kan ikke udføre lseek() %s" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, c-format +msgid "writing %s" +msgstr "skriver %s" + +#: src/copy.c:409 src/copy.c:415 +#, c-format +msgid "closing %s" +msgstr "lukker %s" + +#: src/copy.c:610 +#, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: overskriv %s, uden hensyn til tilstand %04lo?" + +#: src/copy.c:616 +#, c-format +msgid "%s: overwrite %s? " +msgstr "%s: overskriv %s? " + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, c-format +msgid "cannot stat %s" +msgstr "kan ikke udføre stat() %s" + +#: src/copy.c:820 +#, c-format +msgid "omitting directory %s" +msgstr "udelader katalog %s" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "advarsel: kildefil %s er angivet mere end én gang" + +#: src/copy.c:866 src/ln.c:237 +#, c-format +msgid "%s and %s are the same file" +msgstr "%s og %s er den samme fil" + +#: src/copy.c:876 +#, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "kan ikke overskrive ikke-katalog %s med katalog %s" + +#: src/copy.c:893 +#, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "vil ikke overskrive netop oprettet %s med %s" + +#: src/copy.c:904 +#, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "kan ikke overskrive katalog %s med ikke-katalog" + +#: src/copy.c:965 +#, c-format +msgid "cannot overwrite directory %s" +msgstr "kan ikke overskrive katalog %s" + +#: src/copy.c:974 +#, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "kan ikke flytte katalog til ikke-katalog: %s -> %s" + +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "sikkerhedskopi af %s vil overskrive kildefil; %s er ikke flyttet" + +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "sikkerhedskopi af %s vil overskrive kildefil; %s er ikke kopieret" + +#: src/copy.c:1013 src/ln.c:273 +#, c-format +msgid "cannot backup %s" +msgstr "kan ikke sikkerhedskopiere %s" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr " (sikkerhedskopi: %s)" + +#: src/copy.c:1099 +#, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "kan ikke kopiere et katalog %s til sig selv %s" + +#: src/copy.c:1106 +#, c-format +msgid "will not create hard link %s to directory %s" +msgstr "vil ikke oprette hård lænke %s til katalog %s" + +#: src/copy.c:1132 +#, c-format +msgid "cannot create hard link %s to %s" +msgstr "kan ikke oprette hård lænke %s til %s" + +#: src/copy.c:1186 +#, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "kan ikke flytte %s til et underkatalog af sig selv, %s" + +#: src/copy.c:1229 +#, c-format +msgid "cannot move %s to %s" +msgstr "kan ikke flytte %s til %s" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "flytning mellem enheder mislykkedes: %s til %s; kan ikke fjerne målet" + +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "kan ikke kopiere cyklisk symbolsk lænke %s" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "%s: kan kun oprette relative symbolske lænker i aktuelt katalog" + +#: src/copy.c:1353 +#, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "kan ikke oprette symbolsk lænke %s til %s" + +#: src/copy.c:1364 +#, c-format +msgid "cannot create link %s" +msgstr "kan ikke oprette lænke %s" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, c-format +msgid "cannot create fifo %s" +msgstr "kan ikke oprette fifo %s" + +#: src/copy.c:1403 +#, c-format +msgid "cannot create special file %s" +msgstr "kan ikke oprette specialfil %s" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, c-format +msgid "cannot read symbolic link %s" +msgstr "kan ikke læse symbolsk lænke %s" + +#: src/copy.c:1440 +#, c-format +msgid "cannot create symbolic link %s" +msgstr "kan ikke oprette symbolsk lænke %s" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, c-format +msgid "failed to preserve ownership for %s" +msgstr "kunne ikke bevare ejerskab for %s" + +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "%s har ukendt filtype" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "beholder tider for %s" + +#: src/copy.c:1531 +#, c-format +msgid "failed to preserve authorship for %s" +msgstr "kunne ikke bevare forfatter af %s" + +#: src/copy.c:1549 +#, c-format +msgid "setting permissions for %s" +msgstr "sætter adgangsrettigheder på %s" + +#: src/copy.c:1571 src/ln.c:326 +#, c-format +msgid "cannot un-backup %s" +msgstr "kan ikke genoprette sikkerhedskopi af %s" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s -> %s (genopret sikkerhedskopi)\n" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "Torbjørn Granlund, David MacKenzie og Jim Meyering" + +#: src/cp.c:164 src/mv.c:311 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"Brug: %s [FLAG]... KILDE MÅL\n" +" eller: %s [FLAG]... KILDE... KATALOG\n" +" eller: %s [FLAG]... --target-directory=KATALOG KILDE...\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Kopiér KILDE til MÅL eller en eller flere KILDE'r til KATALOG.\n" +"\n" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" +"Obligatoriske argumenter til lange flag er også obligatoriske for de korte.\n" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" +" -a, --archive det samme som -dpR\n" +" --backup[=KONTROL] lav sikkerhedskopi af hver eksisterende " +"målfil\n" +" -b ligesom --backup, men tager ikke noget " +"argument\n" +" --copy-contents kopiér indholdet af specialfiler når " +"rekursiv\n" +" -d det samme som --no-dereference --" +"preserve=link\n" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" +" --no-dereference følg aldrig symbolske henvisninger\n" +" -f, --force hvis en eksisterende målfil ikke kan åbnes, " +"så\n" +" fjern den og prøv igen\n" +" -i, --interactive bed om bekræftelse før overskrivning af " +"filer\n" +" -H følg kommandolinje symbolske henvisninger\n" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" +" -l, --link opret lænker i stedet for at kopiere\n" +" -L, --dereference følg altid symbolske henvisninger\n" +" -p det samme som --preserve=mode,ownership," +"timestamps\n" +" --preserve[ATTR_LIST] bevar filattributter om muligt (standard:\n" +" 'mode','ownership','timestamps'), om " +"muligt\n" +" yderligere attributter: 'links', 'all'\n" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" +" --no-preserve=ATTR_LIST bevar ikke de angivne attributter\n" +" --parents tilføj kildens søgesti efter KATALOG\n" +" -P det samme som '--no-dereference'\n" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" +" -R, -r, --recursive kopiér kataloger rekursivt\n" +" --remove-destination fjern hver eksisterende målfil før forsøg på " +"at\n" +" åbne den (sammenlign med --force)\n" + +#: src/cp.c:209 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +" --reply={yes,no,query} angiv hvorledes forespørgsel om eksisterende " +"målfil\n" +" skal behandles\n" +" --sparse=NÅR bestem oprettelsen af tynde filer\n" +" --strip-trailing-slashes fjern eventuelle skråstreger i slutningen " +"af \n" +" hvert KILDE-argument\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" +" -s, --symbolic-link opret symbolske lænker i stedet for " +"kopiering\n" +" -S, --suffix=ENDELSE tilsidesæt den sædvanlige sikkerhedskopi-" +"endelse\n" +" --target-directory=KATALOG flyt alle KILDE-argumenter til KATALOG\n" + +#: src/cp.c:221 +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +" -u, --update kopiér kun hvis KILDE-filen er nyere end\n" +" målfilen, eller når målfilen ikke findes\n" +" -v, --verbose forklar hvad der sker\n" +" -x, --one-file-system bliv på dette filsystem\n" + +#: src/cp.c:230 +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +"\n" +"Normalt bliver KILDE-filer med huller opdaget ved hjælp af en enkel " +"heuristik,\n" +"og den korresponderende MÅL-fil bliver også lavet med huller. Det er den\n" +"opførsel som er givet med --sparse=auto. Angiv --sparse=always for at\n" +"oprette en MÅL-fil med huller i, hvis KILDE-filen indeholder en " +"tilstrækkeligt\n" +"lang sekvens med nul-tegn.\n" +"Brug --sparse=never for at forhindre oprettelse af filer med huller.\n" +"\n" + +#: src/cp.c:239 +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"Endelsen for sikkerhedskopiering er '~', med mindre andet er angivet med\n" +"--suffix eller SIMPLE_BACKUP_SUFFIX. Versionskontrolmetoden kan vælges med\n" +"--backup flaget eller vha. miljøvariabelen VERSION_CONTROL. Gyldige værdier " +"er:\n" +"\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +" none, off lav aldrig sikkerhedskopier (selvom --backup er givet)\n" +" numbered, t lav nummererede sikkerhedskopier\n" +" existing, nil nummererede, hvis nummererede sikkerhedskopier " +"eksisterer,\n" +" ellers enkle sikkerhedskopier\n" +" simple, never lav altid enkle sikkerhedskopier\n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +"Som et specialtilfælde laver cp en sikkerhedskopi af KILDE når flagene for\n" +"'force' og 'backup' er angivet, og KILDE og MÅL er samme navn for en " +"eksisterende,\n" +"regulær fil.\n" + +#: src/cp.c:325 +#, c-format +msgid "failed to preserve times for %s" +msgstr "kunne ikke beholde tider for %s" + +#: src/cp.c:349 +#, c-format +msgid "failed to preserve permissions for %s" +msgstr "kan ikke beholde adgangsrettigheder på %s" + +#: src/cp.c:434 +#, c-format +msgid "cannot make directory %s" +msgstr "kan ikke oprette katalog %s" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +msgid "missing file argument" +msgstr "manglende fil-argument" + +#: src/cp.c:498 +msgid "missing destination file" +msgstr "manglende målfil" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "tilgår %s" + +#: src/cp.c:546 +#, c-format +msgid "%s: specified target is not a directory" +msgstr "%s: angivet mål er ikke et katalog" + +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "kopierer flere filer, men sidste argument, %s, er ikke et katalog" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "når stier beholdes, skal målet være et katalog" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"advarsel: --version-control (-V) er forældet; understøttelse for det\n" +"vil blive fjernet i en fremtidig udgave. Brug --backup=%s i stedet." + +#: src/cp.c:972 src/ln.c:464 +msgid "symbolic links are not supported on this system" +msgstr "symbolske lænker understøttes ikke på dette system" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "kan ikke lave både hårde og symbolske lænker" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "type af sikkerhedskopi" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "Stuart Kemp og David MacKenzie" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "læsefejl" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "inddata forsvandt" + +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s: linjenummer uden for område" + +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: '%s': linjenummer uden for område" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr " ved %d. gentagelse\n" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s: '%s': ingen træffer fundet" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "fejl i søgning med regulært udtryk" + +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "skrivefejl for \"%s\"" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "%s: '+' eller '-' forventet efter skilletegn" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s: heltal forventedes efter \"%c\"" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "%s: '}' er nødvendig i gentagelsesantal" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "%s}: heltal kræves mellem '{' og '}'" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s: afslutningende skilletegn '%c' mangler" + +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: ugyldigt regulært udtryk: %s" + +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "%s: ugyldigt mønster" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s: linjenummeret skal være større end nul" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "linjenummer '%s' er mindre end foregående linjenummer, %s" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "advarsel: linjenummer '%s' er det samme som foregående" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "manglende konverteringsspecifikator i suffiks" + +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "ugyldig konverteringsspecifikator i suffiks: %c" + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "ugyldig konverteringsspecifikator i suffiks: \\%.3o" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "manglende %%-konverteringsspecifikation i suffiks" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "for mange %%-konverteringsspecifikationer i suffiks" + +#: src/csplit.c:1441 +#, c-format +msgid "%s: invalid number" +msgstr "%s: ugyldigt tal" + +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "Brug: %s [FLAG]... FIL MØNSTER...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" +"Udskriv dele af FIL separeret af MØNSTER til filerne 'xx01', 'xx02',...,\n" +"og vis antal byte for hver del på standard-ud.\n" +"\n" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" +" -b, --suffix-format=FORMAT brug sprintf-FORMAT i stedet for %d\n" +" -f, --prefix=PRÆFIKS brug PRÆFIKS i stedet for 'xx'\n" +" -k, --keep-files fjern ikke udfiler ved fejl\n" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" +" -n, --digits=CIFRE brug angivet antal cifre i stedet for 2\n" +" -s, --quiet, --silent vis ikke størrelsen af udfilerne\n" +" -z, --elide-empty-files fjern tomme udfiler\n" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" +"\n" +"Læs standard-ind når FIL er '-'. Hvert MØNSTER kan være:\n" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" +"\n" +" HELTAL kopier frem til, men ikke med, angivet linjenummer\n" +" /REGUDT/[POSITION] kopier frem til, men ikke med, en 'passende' linje\n" +" %%REGUDT%%[POSITION] hop frem til, men ikke med, en 'passende' linje\n" +" {HELTAL} gentag forrige mønster så mange gange som angivet\n" +" {*} gentag forrige mønster så mange gange som muligt\n" +"\n" +"En linje-POSITION skal være '+' eller '-' fulgt af et positivt heltal\n" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie og Jim Meyering" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "Brug: %s [FLAG]... [FIL]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" +"Udskriv valgte dele af linjerne fra hver FIL til standard-ud.\n" +"\n" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" +" -b, --bytes=LISTE udskriv kun disse byte\n" +" -c, --characters=LISTE udskriv kun disse tegn\n" +" -d, --delimiter=SKILLE brug SKILLE i stedet for TAB som skilletegn\n" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" +" -f, --fields=LISTE udskriv kun disse felter; udskriv også enhver\n" +" linje som ikke indeholder et skilletegn, " +"medmindre\n" +" flaget -s er angivet\n" +" -n (ignoreret)\n" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" +" -s, --only-delimited udskriv ikke linjer som ikke indeholder " +"skilletegn\n" +" --output-delimiter=STRENG brug STRENG som forvalgt ud-skilletegn.\n" +" forvalgt er at bruge ind-skilletegnet\n" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"Brug én, og kun én af -b, -c og -f. Hver LISTE er lavet af en\n" +"'serie', eller mange serier separeret af komma. Hver serie er en af:\n" +"\n" +" N N'te byte, tegn eller felt, talt fra 1\n" +" N- fra N'te byte, tegn eller felt, til slutningen af linjen\n" +" N-M fra N'te til M'te (til og med) byte, tegn eller felt\n" +" -M fra første til M'te (til og med) byte, tegn eller felt\n" +"\n" +"Hvis ingen FIL er angivet, eller FIL er -, læses fra standard-ind.\n" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "ugyldig byte- eller feltliste" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "kun én slags liste må bruges" + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "positionsliste mangler" + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "feltliste mangler" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "skilletegnet skal være et enkelt tegn" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "du skal angive en liste af byte, tegn eller felt" + +#: src/cut.c:720 +msgid "an input delimiter may be specified only when operating on fields" +msgstr "et inddataskilletegn kan kun specificeres ved arbejde på felter" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" +"fjernelse af linjer uden skilletegn giver kun mening hvis man opererer\n" +"\tmed felter" + +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" +"Brug: %s [FLAG]... [+FORMAT]\n" +" eller: %s [FLAG] [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" +"Vis den nuværende tid i det givne FORMAT eller sæt systemdatoen.\n" +"\n" +" -d, --date=STRENG vis tiden beskrevet af STRENG, ikke 'nu'\n" +" -f, --file=DATOFIL som --date en gang for hver linje af DATOFIL\n" +" -ITIDSSPEC, --iso-8601[=TIDSSPEC] udskriv en dato/tid streng i henhold til " +"ISO 8601.\n" +" TIDSSPEC='date' for kun dato,\n" +" 'hours', 'minutes', eller `seconds' for dato og\n" +" tid til den indikerede præcision.\n" +" --iso-8601 uden TIDSSPEC er det samme som " +"'date'.\n" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" +" -r, --reference=FIL vis sidste ændringsdato for FIL\n" +" -R, --rfc-822 udskriv en datostreng i henhold til RFC-822\n" +" -s, --set=STRENG sæt tiden som er beskrevet af STRENG\n" +" -u, --utc, --universal udskriv eller sæt 'Coordinated Universal Time'\n" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" +"\n" +"FORMAT styrer udskriften. Den eneste gyldige flag for den anden\n" +"form specificerer Koordineret Universel Tid (UTC). Fortolkede sekvenser er:\n" +"\n" +" %% et egentligt %\n" +" %a lokaltilrettet ugedagsnavn (man..søn)\n" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" +" %A ugedag ifølge lokale (mandag-søndag), fuldstændigt (variabel længde)\n" +" %b måned ifølge lokal (jan-dec), forkortet\n" +" %B måned ifølge lokal (januar-december), fuldstændigt (variabel længde)\n" +" %c dato og tid (som lør 04 nov 12:02:33 CET 1989)\n" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" +" %C århundrede (heltalsdelen af år divideret med 100) [00-99]\n" +" %d dag i måned (01-31)\n" +" %D dato ifølge amerikansk format (mm/dd/åå)\n" +" %e dag i måned, indledende nul erstattet med blanktegn ( 1-31)\n" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" +" %F samme som %Y-%m-%d\n" +" %g det 2-cifrede årstal svarende til %V-ugenummeret\n" +" %G det 4-cifrede årstal svarende til %V-ugenummeret\n" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" +" %h samme som %b\n" +" %H time (00-23)\n" +" %I time (01-12)\n" +" %j dag på året (001-366)\n" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" +" %k time ( 0-23)\n" +" %l time ( 1-12)\n" +" %m måned (01-12)\n" +" %M minut (00-59)\n" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" +" %n en ny linje\n" +" %N nanosekunder (000000000..999999999)\n" +" %p FM eller EM i store bogstaver ifølge lokale (tom i mange lokaler)\n" +" %P fm eller em i små bogstaver ifølge lokale (tom i mange lokaler)\n" +" %r tid, 12-timers (hh:mm:ss [FE]M)\n" +" %R tid, 2stimers (hh:mm)\n" +" %s sekunder siden \"1970-01-01 00:00:00 UTC\" (en GNU-tilføjelse)\n" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" +" %S sekunder (00-60), 60 behøves for at klare et skudsekund\n" +" %t en vandret tabulator\n" +" %T tid, 24-timers (hh:mm:ss)\n" +" %u dag i ugen (1-7), 1 betyder mandag\n" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" +" %U ugenummer, med søndag som første dag i ugen (00-53)\n" +" %V ugenummer, med mandag som første dag i ugen (01-53)\n" +" %w ugedag (0-6); søndag repræsenteres som 0\n" +" %W ugenummer, med mandag som første dag i ugen (00-53)\n" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" +" %x dato på lokaleformat (åå-mm-dd)\n" +" %X tid på lokaleformat (%H:%M:%S)\n" +" %y sidste to cifre i årstallet (00-99)\n" +" %Y år (1970-)\n" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" +" %z RFC-822-numerisk tidszone (+0100) (en tilføjelse som ikke er " +"standard)\n" +" %Z tidszone (fx CET), eller intet hvis tidszonen ikke kunne bestemmes\n" +"\n" +"Normalt udfylder date numeriske felter med nuller. GNU date forstår\n" +"følgende bestemningstegn mellem \"%\" og en numerisk anvisning.\n" +"\n" +" \"-\" (bindestreg) udfyld ikke feltet\n" +" \"_\" (understregning) udfyld feltet med blanktegn\n" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "standard-ind" + +#: src/date.c:268 src/date.c:460 +#, c-format +msgid "invalid date `%s'" +msgstr "ugyldig dato '%s'" + +#: src/date.c:364 +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "flagene for at angive datoer til udskriving kan ikke bruges sammen" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "flagene for at udskrive og sætte tiden kan ikke bruges sammen" + +#: src/date.c:377 +#, c-format +msgid "too many non-option arguments: %s%s" +msgstr "for mange argumenter der ikke er flag: %s%s" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" +"argumentet '%s' mangler et indledende '+';\n" +"Når man bruger et flag for at angive datoer skal eventuelle\n" +"andre typer argumenter bestå af en formatstreng som begynder med '+'" + +#: src/date.c:397 +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "en formatstreng kan ikke angives når tilvalget --rfc-822 bruges" + +#: src/date.c:433 +msgid "undefined" +msgstr "ikke-defineret" + +#: src/date.c:435 +msgid "cannot get time of day" +msgstr "kan ikke bestemme klokkeslæt" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "kan ikke sætte dato" + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "Paul Rubin, David MacKenzie og Stuart Kemp" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "Brug: %s [FLAG]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" +"Kopiér en fil med konvertering og formatering som angivet.\n" +"\n" +" bs=BYTE tving ibs=BYTE og obs=BYTE\n" +" cbs=BYTE konvertér BYTE byte ad gangen\n" +" conv=NØGLEORD konvertér filen vha. en liste med kommaadskilte nøgleord\n" +" count=BLOKKE kopiér kun BLOKKE indblokke\n" +" ibs=BYTE læs BYTE byte ad gangen\n" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" +" if=FIL læs fra FIL i stedet for stdin\n" +" obs=BYTE skriv BYTE byte ad gangen\n" +" of=FIL skriv til FIL i stedet for stdout\n" +" seek=BLOKKE udelad BLOKKE blokke med obs-størrelse fra\n" +" begyndelsen af uddata\n" +" skip=BLOKKE udelad BLOKKE blokke med ibs-størrelse fra\n" +" begyndelsen af inddata\n" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" +"\n" +"BLOKKE og BYTE kan have følgende multiplikative suffikser:\n" +"xM M, c 1, w 2, b 512, kD 1000, k 1024, MD 1.000.000, M 1.048.576,\n" +"GD 1.000.000.000, G 1.073.741.824, og så videre for T, P, E, Z og Y.\n" +"Hvert NØGLEORD kan være:\n" +"\n" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" +" ascii fra EBCDIC til ASCII\n" +" ebcdic fra ASCII til EBCDIC\n" +" ibm fra ASCII til alterneret EBCDIC\n" +" block udfyld felter afsluttet med linjeskift med mellemrum til\n" +" cbs-størrelse\n" +" unblock erstat mellemrum med linjeskift i blokke med størrelse\n" +" som givet i cbs\n" +" lcase lav store bogstaver om til små\n" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" +" notrunc afkort ikke uddatafilen\n" +" ucase lav små bogstaver om til store\n" +" swab ombyt hvert par af byte i inddata\n" +" noerror fortsæt efter læsefejl\n" +" sync udfyld hver inddatablok med nul-tegn indtil ibs-størrelse;\n" +" ved brug med block eller unblock - udfyld med blanke i stedet\n" +" for med nul-tegn\n" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "%s+%s blokke ind\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "%s+%s blokke ud\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "afkortet blok" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "afkortede blokke" + +#: src/dd.c:382 +#, c-format +msgid "closing input file %s" +msgstr "lukker indfil %s" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "lukker uddatafil %s" + +#: src/dd.c:469 +#, c-format +msgid "writing to %s" +msgstr "skriver til %s" + +#: src/dd.c:501 +#, c-format +msgid "invalid conversion: %s" +msgstr "ugyldig konvertering: %s" + +#: src/dd.c:557 +#, c-format +msgid "unrecognized option %s" +msgstr "ukendt flag %s" + +#: src/dd.c:610 +#, c-format +msgid "unrecognized option %s=%s" +msgstr "ukendt flag %s=%s" + +#: src/dd.c:616 +#, c-format +msgid "invalid number %s" +msgstr "ugyldigt antal %s" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"kun én konvertering i {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" +"advarsel: omgår lseek-kernefejl for fil (%s)\n" +" med mt_type=0x%0lx -- se for listen af typer" + +#: src/dd.c:1170 src/dd.c:1188 +#, c-format +msgid "opening %s" +msgstr "åbner %s" + +#: src/dd.c:1196 +msgid "file offset out of range" +msgstr "filposition uden for interval" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "passerer forbi %s byte i uddatafil %s" + +#: src/df.c:49 +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "Torbjørn Granlund, David MacKenzie, Larry McVoy og Paul Eggert" + +#: src/df.c:153 +msgid "Filesystem Type" +msgstr "Filsystem Type" + +#: src/df.c:155 +msgid "Filesystem " +msgstr "Filsystem " + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr " Inoder IBrugt IFri IBrug%%" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Størr Brugt Tilb Brug%%" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Størr Brugt Tilb Brug" + +#: src/df.c:167 +#, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr " %4s-blokke Brugt Tilbage Kapacitet" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr " %4s-blokke Brugt Tilbage Brug%%" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr " Monteret på\n" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" +"Vis information om filsystemet som FIL ligger på, eller normalt alle " +"filsystemer.\n" +"\n" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" +" -a, --all medtag filsystemer med 0 blokke\n" +" -B, --block-size=STR brug blokke på STR byte\n" +" -h, --human-readable skriv størrelser på en læsevenlig form \n" +" (f.eks. 1K 234M 2G)\n" +" -H, --si det samme, men brug 1000 som grundtal, ikke 1024\n" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" +" -i, --inodes skriv inodeinformation i stedet for blokforbrug\n" +" -k, --kilobytes ligesom --block-size=1024\n" +" -l, --local begræns til lokale filsystemer\n" +" --no-sync kør ikke sync før hentning af information " +"(standard)\n" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" +" -P, --portability brug POSIX-format for uddata\n" +" --sync kør sync før hentning af oplysninger om forbrug\n" +" -t, --type=TYPE vis kun filsystemer af typen TYPE\n" +" -T, --print-type vis filsystemtype\n" +" -x, --exclude-type=TYPE vis kun filsystemer som ikke er af typen TYPE\n" +" -v (ignoreret)\n" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" +"\n" +"STØRRELSE kan være (eller kan være et heltal muligvis fulgt af) en af de " +"følgende:\n" +"kB 1000, K 1024, MB 1.000.000 og M 1.048.576, og så videre for G, T, P, E, Z " +"og Y.\n" + +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "filsystem af typen %s er både valgt og udeladt" + +#: src/df.c:903 +msgid "Warning: " +msgstr "Advarsel: " + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "%s kan ikke læse tabellen over monterede filsystemer" + +#: src/dircolors.c:103 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "Brug: %s [FLAG]... [FIL]\n" + +#: src/dircolors.c:104 +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"Udskriv kommandoer for at sætte miljøvariablen LS_COLORS.\n" +"\n" +"Bestem ud-format:\n" +" -b, --sh, --bourne-shell udskriv Bourne shell-kode for at sætte " +"LS_COLORS\n" +" -c, --csh, --c-shell udskriv C skal-kode for at sætte LS_COLORS\n" +" -p, --print-data-base udskriv den interne database\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" +"\n" +"Hvis FIL er angivet, læs den for at bestemme hvilke farver der skal bruges " +"til\n" +"hvilke filtyper og endelser. Ellers bliver en foroversat database brugt.\n" +"For detaljer om formatet af disse filer kør 'dircolors --print-database'.\n" + +#: src/dircolors.c:299 +#, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s:%lu: ugyldig linje; mangler andet element" + +#: src/dircolors.c:371 +#, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s:%lu: ukendt nøgleord %s" + +#: src/dircolors.c:372 +msgid "" +msgstr "" + +#: src/dircolors.c:467 +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" +"flagene for at udskrive dircolors interne database og at vælge en\n" +"skálsyntaks er gensidigt udelukkende" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" +"flaget for at udskrive dircolors' interne database til uddata\n" +"tillader ikke argumenter" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "ingen SHELL-miljøvariabel, og ingen skal-type angivet med flag" + +#: src/dirname.c:33 src/pathchk.c:59 +msgid "David MacKenzie and Jim Meyering" +msgstr "David MacKenzie og Jim Meyering" + +#: src/dirname.c:46 +#, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"Brug: %s NAVN\n" +" eller: %s FLAG\n" + +#: src/dirname.c:51 +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" +"Udskriv NAVN med alt fra sidste '/' fjernet; Hvis NAVN ikke indeholder nogen " +"'/'-er, udskriv '.' (for nuværende katalog).\n" + +#: src/du.c:49 +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "" +"Torbjørn Granlund, David MacKenzie, Larry McVoy, Paul Eggert og Jim Meyering" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" +"Opsummér diskforbrug for hver FIL, rekursivt for kataloger.\n" +"\n" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" +" -a, --all medtag filer, ikke kun kataloger\n" +" --apparent-size udskriv tilsyneladende størrelse i stedet for " +"diskforbrug;\n" +" selvom den tilsyneladende størrelse normalt er " +"mindre,\n" +" kan den være større på grund af huller i (tynde) " +"filer,\n" +" intern fragmentering, indirekte blokke og " +"lignende\n" +" -B, --block-size=STØR brug blokke på STØR byte\n" +" -b, --bytes skriv størrelse i byte\n" +" -c, --total vis totalsum\n" +" -D, --dereference-args følg FIL'er når de er symbolske lænker\n" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" +" -h, --human-readable skriv størrelser i et læsevenligt format \n" +" (fx 1K 234M 2G)\n" +" -H, --si det samme, men brug 1000 som grundtal, ikke 1024\n" +" -k, --kilobytes ligesom --block-size=1024\n" +" -l, --count-links tæl størrelsen med flere gange for hårde lænker\n" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" +" -L, --dereference følg alle symbolske lænker\n" +" -S, --separate-dirs medtag ikke størrelsen på underkataloger\n" +" -s, --summarize vis kun sum for hvert argument\n" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" +" -x, --one-file-system udelad kataloger på andre filsystemer\n" +" -X FIL, --exclude-from=FIL udelad filer som svarer til et hvilket som\n" +" helst mønster i FIL.\n" +" --exclude=MØN udelad filer som svarer til MØN\n" +" --max-depth=N vis kun totalsum for et katalog (eller fil, med --" +"all)\n" +" hvis der er N eller færre niveauer under " +"kommandolinje-\n" +" argumentet; --max-depth=0 er det samme som\n" +" --summarize\n" + +#: src/du.c:337 +#, c-format +msgid "cannot change to parent of directory %s" +msgstr "kan ikke gå til overkatalog for kataloget %s" + +#: src/du.c:345 +#, c-format +msgid "cannot change to directory %s" +msgstr "kan ikke gå til kataloget %s" + +#: src/du.c:352 +#, c-format +msgid "cannot read directory %s" +msgstr "kan ikke læse katalog %s" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "totalt" + +#: src/du.c:641 +#, c-format +msgid "invalid maximum depth %s" +msgstr "ugyldig største dybde %s" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "kan ikke både summere og vise alle størrelser" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "advarsel: summering er det samme som at bruge --max-depth=0" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "advarsel: summering er i konflikt med --max-depth=%d" + +#: src/echo.c:77 +#, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "Brug: %s [FLAG]... [STRENG]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" +"Ekko STRENG'e til standard-ud.\n" +"\n" +" -n udskriv ikke det efterfølgende linjeskift\n" +" -e aktivér tolkning af sekvenserne med omvendt skråstreg " +"nævnt nedenfor\n" +" -E deaktivér tolkningen af disse sekvenser i STRENG'e\n" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" +"\n" +"Uden -E vil følgende sekvenser blive forstået og indsat:\n" +"\n" +" \\NNN det tegn, hvis ASCII-værdi er NNN (oktalt)\n" +" \\\\ omvendt skråstreg\n" +" \\a advarsel (SIGNAL)\n" +" \\b baktegn\n" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\c udelad linjeskift på slutningen\n" +" \\f sideskift\n" +" \\n ny linje\n" +" \\r vognretur\n" +" \\t vandret tabulator\n" +" \\v lodret tabulator\n" + +#: src/env.c:93 +msgid "Richard Mlynarik and David MacKenzie" +msgstr "Richard Mlynarik og David MacKenzie" + +#: src/env.c:119 +#, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "Brug: %s [FLAG]... [-] [NAVN=VÆRDI]... [KOMMANDO [ARG]...]\n" + +#: src/env.c:122 +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" +"Sæt hvert NAVN til VÆRDI fra miljøvariable og udfør KOMMANDO.\n" +" -i, --ignore-environment start uden miljøvariable\n" +" -u, --unset=NAVN fjern miljøvariablen NAVN\n" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" +"\n" +"En - for sig selv implicerer -i. Hvis ingen KOMMANDO er angivet, udskriv\n" +"det resulterende miljø.\n" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Konvertér tabulatorer i hver FIL til mellemrum, skriv til standard-ud.\n" +"Hvis ingen FIL er angivet, eller FIL er -, læses fra standard-ind.\n" +"\n" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" +" -i, --initial konvertér ikke tabulatorer efter ikke-blanke tegn\n" +" -t, --tabs=TAL hav tabulatorer TAL tegn fra hinanden, ikke 8\n" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr " -t, --tabs=LISTE brug komma-separeret LISTE med tab-positioner\n" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "tabulatorstørrelsen indeholder et ugyldigt tegn" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "tabulatorstørrelse kan ikke være 0" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "tabulatorstørrelser skal være stigende" + +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "'-LIST'-flaget er forældet; brug '-t LIST'" + +#: src/expr.c:90 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"Brug: %s UDTRYK\n" +" eller: %s FLAG\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" +"\n" +"Udskriv værdien på UDTRYK til standard-ud. En tom linje nedenfor adskiller " +"grupper\n" +"med voksende prioritet. UDTRYK kan være:\n" +"\n" +" ARG1 | ARG2 ARG1 hvis det hverken er nul eller 0, ellers ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 hvis intet af argumenterne er nul eller 0, ellers " +"0\n" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" +"\n" +" ARG1 < ARG2 ARG1 er mindre end ARG2\n" +" ARG1 <= ARG2 ARG1 er mindre end eller lig med ARG2\n" +" ARG1 = ARG2 ARG1 er lig med ARG2\n" +" ARG1 != ARG2 ARG1 er ikke lig med ARG2\n" +" ARG1 >= ARG2 ARG1 er større end eller lig med ARG2\n" +" ARG1 > ARG2 ARG1 er større end ARG2\n" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" +"\n" +" ARG1 + ARG2 aritmetisk sum af ARG1 og ARG2\n" +" ARG1 - ARG2 aritmetisk forskel mellem ARG1 og ARG2\n" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" +"\n" +" ARG1 * ARG2 aritmetisk produkt af ARG1 og ARG2\n" +" ARG1 / ARG2 aritmetisk kvotient af ARG1 divideret med ARG2\n" +" ARG1 % ARG2 aritmetisk rest af ARG1 divideret med ARG2\n" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" +"\n" +" STRENG : REGUDTRYK forankret mønstersøgning efter REGUDTRYK i STRENG\n" +"\n" +" match STRENG REGUDTRYK samme som STRENG : REGUDTRYK\n" +" subtr STRENG POS LÆNGDE delstreng af STRENG, POS regnes fra 1\n" +" index STRENG BOGST index i STRENG hvor BOGST fandtes, eller 0\n" +" length STRENG længden af STRENG\n" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" +" + ELEMENT tolk ELEMENT som en streng, selv om den er et\n" +" nøgleord som \"match\" eller en operator som " +"\"/\"\n" +" ( UDTRYK ) værdien af UDTRYK\n" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" +"\n" +"Vær opmærksom på at mange operatorer skal beskyttes mod " +"kommandofortolkeren,\n" +"f.eks. med gåseøjne. Sammenligninger er aritmetiske hvis begge\n" +"ARG'umenter er tal, ellers leksikografiske. Mønster-sammenligninger\n" +"returnerer strengen som passede på mønstret mellem \\( og \\) eller nul.\n" +"Hvis \\( og \\) ikke bruges, returneres antal tegn som passede eller 0.\n" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +msgid "syntax error" +msgstr "syntaksfejl" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" +"advarsel: ikke-portabel BRE (Basic Regular Expression): '%s': \n" +"brug af '^' som første tegn af et almindelig regulært udtryk er ikke\n" +"portabelt; '^' ignoreres" + +#: src/expr.c:586 src/expr.c:625 +msgid "non-numeric argument" +msgstr "ikke-numerisk argument" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "deling med nul" + +#: src/factor.c:74 +#, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"Brug: %s [TAL]...\n" +" eller: %s FLAG\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" +"Udskriv primtalsfaktorerne for hvert TAL.\n" +"\n" + +#: src/factor.c:85 +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" +"\n" +" Udskriv primtals-faktorerne til alle angivne heltal TAL. Hvis \n" +" ingen argumenter er angivet på kommandolinjen læses de fra standard-ind.\n" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "'%s' er ikke et gyldig positivt heltal" + +#: src/false.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Brug: %s [ignorerede kommandolinje-argumenter]\n" +" eller: %s FLAG\n" +"Afslut med en statuskode der angiver fejl.\n" +"\n" +"Disse navne på flag kan ikke forkortes.\n" +"\n" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "Brug: %s [-CIFRE] [FLAG]... [FIL]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" +"Omformatér hvert afsnit i FILerne, og skriv til standard-ud.\n" +"Hvis ingen FIL er angivet, eller FIL er -, læses fra standard-ind.\n" +"\n" + +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" +" -c, --crown-margin behold indrykning for de første to linjer\n" +" -p, --prefix=STRENG sammensæt kun linjer som har STRENG som\n" +" forstavelse\n" +" -s, --split-only opdel lange linjer, men fyld ikke op\n" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" +" -t, --tagged-paragraph indrykning for første linje er forskellig fra " +"næste\n" +" -u, --uniform-spacing et mellemrum mellem ord, to efter sætninger\n" +" -w, --width=TAL maksimal linjelængde (ellers 75 kolonner)\n" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" +"\n" +"Ved -wTAL kan bogstavet 'w' udelades.\n" + +#: src/fmt.c:345 +#, c-format +msgid "invalid width option: `%s'" +msgstr "ugyldig linjelængdeflag: \"%s\"" + +#: src/fmt.c:385 +#, c-format +msgid "invalid width: `%s'" +msgstr "ugyldig linjelængde: \"%s\"" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" +"Ombryd linjerne i hver FIL (forvalgt standard-ind), og skriv til standard-" +"ud\n" +"\n" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" +" -b, --bytes tæl byte i stedet for kolonner\n" +" -s, --spaces ombryd ved mellemrum\n" +" -w, --width=BREDDE brug BREDDE kolonner i stedet for 80\n" + +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "'%s'-flag er forældet; brug '%s'" + +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "ugyldigt antal kolonner: \"%s\"" + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Skriv de første 10 linjer af hver FIL til standard-ud.\n" +"Med mere end en FIL angivet udskrives filnavnet før hver FIL.\n" +"Hvis ingen FIL er angivet, eller FIL er -, læses fra standard-ind.\n" +"\n" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" +" -c, --bytes=STØRRELSE udskriv første STØRRELSE bytes\n" +" -n, --lines=ANTAL udskriv første ANTAL linjer i stedet for 10\n" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" +" -q, --quiet, --silent udskriv ikke overskrifter med filnavne først\n" +" -v, --verbose skriv altid overskrifter med filnavne først\n" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" +"\n" +"STØRRELSE kan have en multiplikatorendelse: b for 512, k for 1K eller\n" +" m for 1 Meg.\n" + +#: src/head.c:190 +#, c-format +msgid "cannot reposition file pointer for %s" +msgstr "kan ikke flytte filpegeren for %s" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "%s: %s er så stor at den ikke kan repræsenteres" + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "antal linjer" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "antal bytes" + +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "ugyldigt antal linjer" + +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "ugyldigt antal byte" + +#: src/head.c:341 +#, c-format +msgid "unrecognized option `-%c'" +msgstr "ukendt flag \"-%c\"" + +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "'-%s'-flaget er forældet; brug '-%c %.*s%.*s%s'" + +#: src/hostid.c:48 +#, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" +"Brug: %s\n" +" eller: %s FLAG\n" +"Udskriv den numeriske identifikator (heksadecimalt) for dette system.\n" + +#: src/hostname.c:67 +#, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" +"Brug: %s [NAVN]\n" +" eller: %s FLAG\n" +"Udskriv eller sæt værtsnavnet for dette system.\n" + +#: src/hostname.c:104 +#, c-format +msgid "cannot set hostname to `%s'" +msgstr "kan ikke sætte værtsnavnet til '%s'" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "kan ikke sætte værtsnavnet; dette system mangler funktionaliteten" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "kan ikke bestemme værtsnavnet" + +#: src/id.c:36 +msgid "Arnold Robbins and David MacKenzie" +msgstr "Arnold Robbins og David MacKenzie" + +#: src/id.c:87 +#, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "Brug: %s [FLAG]... [BRUGERNAVN]\n" + +#: src/id.c:88 +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" +"Udskriv information for BRUGERNAVN eller nuværende bruger.\n" +"\n" +" -a ignoreres, for kompatibilitet med andre versioner\n" +" -g, --group udskriv kun gruppe-ID\n" +" -G, --groups udskriv alle gruppe-ID'er\n" +" -n, --name skriv et navn i stedet for et nummer, for -ugG\n" +" -r, --real udskriv den virkelige ID i stedet for den effektive,\n" +" for -ugG\n" +" -u, --user udskriv kun brugeridentiteten\n" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" +"\n" +"Uden nogen FLAG udskrives et nyttigt udvalg af identificeret information.\n" + +#: src/id.c:162 +msgid "cannot print only user and only group" +msgstr "kan ikke udskrive kun bruger *og* kun gruppe" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "kan ikke udskrive kun navn eller virkelige ID'er i forvalgt format" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "%s: Ingen sådan bruger" + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "kan ikke finde navnet for bruger-ID %u" + +#: src/id.c:235 +#, c-format +msgid "cannot find name for group ID %u" +msgstr "kan ikke finde navnet for gruppe-ID %u" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "kan ikke hente supplerende gruppeliste" + +#: src/id.c:385 +msgid " groups=" +msgstr " grupper=" + +#: src/install.c:269 +msgid "the strip option may not be used when installing a directory" +msgstr "strip-flaget kan ikke bruges ved installation af et katalog" + +#: src/install.c:292 src/mkdir.c:140 +#, c-format +msgid "invalid mode %s" +msgstr "ugyldig rettighed %s" + +#: src/install.c:307 src/install.c:371 +#, c-format +msgid "creating directory %s" +msgstr "opretter katalog %s" + +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "installerer flere filer, men sidste argument, %s, er ikke et katalog" + +#: src/install.c:435 +#, c-format +msgid "%s is a directory" +msgstr "%s er et katalog" + +#: src/install.c:495 +#, c-format +msgid "cannot obtain time stamps for %s" +msgstr "kan ikke få tidsstempler for %s" + +#: src/install.c:507 +#, c-format +msgid "cannot set time stamps for %s" +msgstr "kan ikke sætte tidsstempler for %s" + +#: src/install.c:528 +msgid "fork system call failed" +msgstr "systemkaldet fork mislykkedes" + +#: src/install.c:532 +msgid "cannot run strip" +msgstr "kan ikke køre strip" + +#: src/install.c:539 +msgid "strip failed" +msgstr "strip mislykkedes" + +#: src/install.c:560 +#, c-format +msgid "invalid user %s" +msgstr "ugyldig bruger %s" + +#: src/install.c:578 +#, c-format +msgid "invalid group %s" +msgstr "ugyldig gruppe %s" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"Brug: %s [FLAG]... KILDE MÅL (1. format)\n" +" eller: %s [FLAG]... KILDE... KATALOG (2. format)\n" +" eller: %s -d [FLAG]... KATALOG... (3. format)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" +"De to første formater kopierer KILDE til MÅL eller en eller flere KILDE'r\n" +"til KATALOG, samtidig med at tilstand og ejer/gruppe angives. Det tredje\n" +"format opretter KATALOG'er samt alle disses komponenter.\n" +"\n" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" +" --backup[=KONTROL] opret sikkerhedskopi før sletning\n" +" -b som --backup, men accepterer ikke et argument\n" +" -c (ignoreret)\n" +" -d, --directory behandl alle argumenter som katalognavne, opret " +"alle\n" +" komponenter i de angivne kataloger.\n" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" +" -D opret alle indledende komponenter af MÅL undtagen " +"den\n" +" sidste, kopiér derefter KILDE til MÅL; nyttigt med\n" +" det første format.\n" +" -g, --group=GRUPPE vælg gruppeejerskab, i stedet for processens\n" +" nuværende gruppe\n" +" -m, --mode=TILSTAND vælg tilstand (ligesom chmod), i stedet for rwxr-xr-" +"x\n" +" -o, --owner=EJER vælg ejerskabsrettigheder (kun superbruger)\n" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" +" -p, --preserve-timestamps brug samme læse/ændringstider på MÅL-filerne\n" +" som der er på KILDE-filerne.\n" +" -s, --strip fjern symboltabeller, kun for 1. og 2. format\n" +" -S, --suffix=SUFFIKS tilsidesæt det sædvanlige sikkerhedskopi-suffiks\n" +" -v, --verbose skriv navnet på hvert katalog når det bliver " +"oprettet\n" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"\n" +"Suffikset for sikkerhedskopiering er '~', med mindre andet er angivet med\n" +"--suffix eller SIMPLE_BACKUP_SUFFIX. Versionskontrolmetoden kan vælges med\n" +"--backup flaget eller vha. miljøvariabelen VERSION_CONTROL. Gyldige værdier " +"er:\n" +"\n" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "Brug: %s [FLAG]... FIL1 FIL2\n" + +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" +"For hvert par af ind-linjer med ens flettefelt skrives en linje til\n" +"standard-ud. Det forvalgte flettefelt er det første\n" +"felt, begrænset af blanktegn. Hvis FIL1 eller FIL2 (ikke begge)\n" +"er -, læses fra standard-ind.\n" +"\n" +" -a FILNR udskriv linjer som ikke kan parres som fra fil FILNR,\n" +" hvor FILNR er 1 eller 2 svarende til FIL1 eller FIL2\n" +" -e TOM erstat manglende ind-felter med TOM\n" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" +" -i, --ignore-case ignorer forskelle i store/små bogstaver ved\n" +" sammenligning af felter\n" +" -j FELT (forældet) samme som '-1 FELT -2 FELT'\n" +" -j1 FELT (forældet) samme som '-1 FELT'\n" +" -j2 FELT (forældet) samme som '-2 FELT'\n" +" -o FORMAT følg FORMAT når udlinjen laves\n" +" -t TEGN brug TEGN som feltseparator for ind og ud\n" + +#: src/join.c:165 +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" +" -v FILNR som -a FILNR, men drop flettede ud-linjer\n" +" -1 FELT flet ved dette FELT fra fil 1\n" +" -2 FELT flet ved dette FELT fra fil 2\n" + +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" +"\n" +"Hvis -t TEGN ikke er angivet, er 'indledende blanke' feltseparator, og " +"ignoreres,\n" +"ellers er felt adskilt af TEGN. Hvert FELT er et feltnummer talt fra 1.\n" +"FORMAT er en eller flere komma- eller blank-separerede specifikationer, der\n" +"hver er 'FILNR.FELT' eller '0'. Det forvalgte FORMAT udskriver\n" +"flettefeltet, resten af felterne fra FIL1 og resten af felterne fra\n" +"FIL2, alle adskilt med TEGN.\n" + +#: src/join.c:645 +#, c-format +msgid "invalid field specifier: `%s'" +msgstr "ugyldig specifikation af felt: \"%s\"" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, c-format +msgid "invalid field number: `%s'" +msgstr "ugyldigt feltnummer: \"%s\"" + +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "ugyldigt filnummer i feltspec: \"%s\"" + +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "ugyldigt feltnummer for fil 1: \"%s\"" + +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "ugyldigt feltnummer for fil 2: \"%s\"" + +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "for mange argumenter, der ikke er flag" + +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "for få argumenter, der ikke er flag" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "begge filer kan ikke være standard-ind" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" +"Brug: %s [-s SIGNAL | -SIGNAL] PID...\n" +" eller: %s -l [SIGNAL]...\n" +" eller: %s -t [SIGNAL]...\n" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" +"Send signaler til processer, eller vís signaler.\n" +"\n" + +#: src/kill.c:106 +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" angiv navnet eller nummeret på signalet som skal sendes\n" +" -l, --list list signalnavne, eller konvertér signalnavn til/fra\n" +" nummer\n" +" -t, --table skriv en tabel med signalinformation\n" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" +"\n" +"SIGNAL kan være et signalnavn som \"HUP\" eller et signalnummer som\n" +"\"1\", eller en slutstatus fra en proces afsluttet af et signal. PID\n" +"er et heltal; hvis det er negativt, identificerer det en procesgruppe.\n" + +#: src/kill.c:163 +#, c-format +msgid "%s: invalid signal" +msgstr "%s: ugyldigt signal" + +#: src/kill.c:262 +#, c-format +msgid "missing operand after `%s'" +msgstr "manglende argument efter '%s'" + +#: src/kill.c:274 +#, c-format +msgid "%s: invalid process id" +msgstr "%s: ugyldig proces-id" + +#: src/kill.c:327 +#, c-format +msgid "invalid option -- %c" +msgstr "ugyldigt flag - %c" + +#: src/kill.c:336 +#, c-format +msgid "%s: multiple signals specified" +msgstr "%s: flere signaler angivet" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "flere -l eller -t-flag angivet" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "kan ikke kombinere signal med -l eller -t" + +#: src/link.c:51 +#, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"Brug: %s FIL1 FIL2\n" +" eller: %s [FLAG]\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" +"Kald funktionen link for at oprette en lænke FIL2 til en\n" +"eksisterende FIL1.\n" +"\n" + +#: src/link.c:98 +#, c-format +msgid "cannot create link %s to %s" +msgstr "kan ikke oprette lænke %s til %s" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "Mike Parker og David MacKenzie" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "" +"%s: advarsel: at lave en hård lænke til en symbolsk lænke er ikke portabelt" + +#: src/ln.c:174 +#, c-format +msgid "%s: hard link not allowed for directory" +msgstr "%s: hård lænke ikke tilladt for katalog" + +#: src/ln.c:246 +#, c-format +msgid "%s: cannot overwrite directory" +msgstr "%s: kan ikke overskrive katalog" + +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "%s: overskriv %s? " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: Filen eksisterer" + +#: src/ln.c:304 +#, c-format +msgid "create symbolic link %s to %s" +msgstr "opret symbolsk lænke %s til %s" + +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "opret hård lænke %s til %s" + +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "opret symbolsk lænke %s til %s" + +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "opret hård lænke %s til %s" + +#: src/ln.c:339 +#, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"Brug: %s [FLAG]... MÅL [LÆNKENAVN]\n" +" eller: %s [FLAG]... MÅL... KATALOG\n" +" eller: %s [FLAG]... --target-directory=KATALOG MÅL...\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" +"Opret en lænke til det angivne MÅL med et valgfrit LÆNKENAVN. Hvis\n" +"LÆNKENAVN er udeladt, vil en lænke med samme basisnavn som MÅL blive\n" +"oprettet i det aktuelle katalog. Hvis du bruger det andet format med mere " +"end\n" +"et mål, skal det sidste argument være et katalog; opret lænker i KATALOG " +"til\n" +"hvert MÅL. Opret hårde lænker som standard, symbolske lænker med --" +"symbolic.\n" +"Når du opretter hårde lænker, skal hvert MÅL eksistere.\n" +"\n" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" +" --backup[=CONTROL] lav sikkerhedskopi af hver eksisterende\n" +" destinationsfil\n" +" -b ligesom --backup, men tager ikke noget " +"argument\n" +" -d, -F, --directory lav hårde lænker for kataloger (kun " +"superbruger)\n" +" -f, --force fjern eksisterende destinationsfiler\n" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" +" -n, --no-dereference behandl destination som er en symbolsk lænke\n" +" til et katalog som om den er en normal fil\n" +" -i, --interactive bekræft før sletning af destinationer\n" +" -s, --symbolic lav symbolske lænker i stedet for hårde " +"lænker\n" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" +" -S, --suffix=SUFFIKS tilsidesæt det sædvanlige sikkerhedskopi-" +"suffiks\n" +" --target-directory=KATALOG angiv det KATALOG som lænkerne skal " +"oprettes i\n" +" -v, --verbose skriv navnet på hver fil før lænkning\n" + +#: src/ln.c:521 +#, c-format +msgid "%s: specified target directory is not a directory" +msgstr "%s: angivet målkatalog er ikke et katalog" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "ved oprettelse af flere lænker skal sidste argument være et katalog" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "Brug: %s [FLAG]\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" +"Udskriv navnet på den nuværende bruger.\n" +"\n" + +#: src/logname.c:99 +#, c-format +msgid "%s: no login name\n" +msgstr "%s: ikke noget login-navn\n" + +# Disse to format skal expandera til samme længd. (Det findes en +# kommentar omedelbart inden dem i koden om det. Hur får man xgettext +# at tage med kommentarer?) +#: src/ls.c:673 +msgid "%b %e %Y" +msgstr "%e %b %Y" + +#: src/ls.c:681 +msgid "%b %e %H:%M" +msgstr "%e %b %H:%M" + +#: src/ls.c:1307 +#, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "ignorerer ugyldig værdi af miljøvariabelen QUOTING_STYLE: %s" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "ignorerer ugyldig længde i miljøvariabelen COLUMNS: %s" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "ignorerer ugyldig tabulatorstørrelse i miljøvariabelen TABSIZE: %s" + +#: src/ls.c:1482 +#, c-format +msgid "invalid line width: %s" +msgstr "ugyldig linjelængde: %s" + +#: src/ls.c:1556 +#, c-format +msgid "invalid tab size: %s" +msgstr "ugyldig tabulatorstørrelse %s" + +#: src/ls.c:1722 +#, c-format +msgid "invalid time style format %s" +msgstr "ugyldig tidsstílsformat %s" + +#: src/ls.c:2054 +#, c-format +msgid "unrecognized prefix: %s" +msgstr "ukendt præfiks: %s" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "uforståelig værdi i miljøvariabelen LS_COLORS" + +#: src/ls.c:2145 +#, c-format +msgid "cannot determine device and inode of %s" +msgstr "kan ikke bestemme enhed og inode for %s" + +#: src/ls.c:2155 +#, c-format +msgid "not listing already-listed directory: %s" +msgstr "viser ikke allerede vist katalog: %s" + +#: src/ls.c:2208 src/remove.c:929 +#, c-format +msgid "reading directory %s" +msgstr "læser katalog %s" + +#: src/ls.c:2603 +#, c-format +msgid "cannot compare file names %s and %s" +msgstr "kan ikke sammenligne filnavnene %s og %s" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" +"Vis information om FIL'er (nuværende katalog med mindre andet er angivet).\n" +"Sortér filerne alfabetisk hvis ingen af flagene -cftuSUX eller --sort\n" +"er givet.\n" +"\n" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" +" -a, --all skjul ikke filer som starter med .\n" +" -A, --almost-all vis ikke . og ..\n" +" --author skriv forfatter for hver fil\n" +" -b, --escape skriv oktale koder for ikke-grafiske tegn\n" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" +" --block-size=STØR brug blokke på STØR byte\n" +" -B, --ignore-backups vis ikke filer som ender på ~\n" +" -c med -lt: sortér efter, og vis, ctime (sidste\n" +" ændring af filstatusinformation)\n" +" med -l: vis ctime og sortér efter navn\n" +" ellers: sortér efter ctime\n" + +#: src/ls.c:3784 +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" +" -C vis filer i kolonner\n" +" --color[=NÅR] angiv om du vil bruge farver for at skelne\n" +" mellem filtyper. NÅR kan være 'never',\n" +" 'always' eller 'auto'.\n" +" -d, --directory vis kataloger uden at vise indholdet,\n" +" og behold symbolske lænker\n" +" -D, --dired lav uddata for Emacs' dired-tilstand\n" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" +" -f sortér ikke, brug -aU, brug ikke -lst\n" +" -F, --classify tilføj et bogstav (*/=@|) for at vise filtype\n" +" --format=ORD 'across' -x, 'commas' -m, 'horizontal' -x, " +"'long' -l,\n" +" 'single-column' -1, 'verbose' -l, 'vertical' -" +"C\n" +" --full-time ligesom -l --time-style=full-iso\n" + +#: src/ls.c:3799 +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" +" -g som -l, men vís ikke ejer\n" +" -G, --no-group medtag ikke gruppeinformation\n" +" -h, --human-readable skriv størrelser i et læsevenligt format \n" +" (f.eks. 1K 234M 2G)\n" +" --si det samme, men brug 1000 som grundtal, ikke " +"1024\n" +" -H --dereference-command-line følg symbolske lænker på kommandolinjen\n" +" --dereference-command-line-symlink-to-dir\n" +" følg symbolske lænker på kommandolinjen,\n" +" der peger til et katalog\n" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" +" --indicator-style=ORD tilføj indikator med stilen ORD til elementer:\n" +" none (standard), classify (-F), file-type (-" +"p)\n" +" -i, --inode vis indeksnummer for hver fil\n" +" -I, --ignore=MØNSTER vis ikke filer som stemmer overens med\n" +" skal-MØNSTER\n" +" -k, --kilobytes ligesom --block-size=1024\n" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" +" -l brug langt listeformat\n" +" -L, --dereference vis filer som peges på af symbolske lænker\n" +" -m brug hele skærmbredden med en liste adskilt af\n" +" kommaer\n" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" +" -n, --numeric-uid-gid ligesom -l, men skriv UID og GID med tal\n" +" -N, --literal skriv rå filnavne (behandl ikke fx kontroltegn\n" +" anderledes)\n" +" -o ligesom -l, men vís ikke gruppeinformation\n" +" -p --file-type tilføj indikator (/=@|) for filtype\n" + +#: src/ls.c:3831 +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -q, --hide-control-chars skriv ? i stedet for ikke-grafiske tegn\n" +" --show-control-chars vis ikke-grafiske tegn som de er (standard med\n" +" mindre programmet er 'ls' og uddata er en\n" +" terminal)\n" +" -Q, --quote-name sæt filnavne i gåseøjne\n" +" --quoting-style=ORD brug anførselsstil ORD for filnavn:\n" +" literal, locale, shell, shell-always, c\n" +" eller escape\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" +" -r, --reverse sortér i omvendt rækkefølge\n" +" -R, --recursive vis underkataloger rekursivt\n" +" -s, --size skriv blokstørrelse for hver fil\n" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" +" -S sortér efter filstørrelse\n" +" --sort=ORD extension -X, none -U, size -S, time -t\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=ORD vis tid som ORD i stedet for " +"ændringstidspunkt:\n" +" atime, access, use, ctime eller status; brug\n" +" angivet tid som sorteringsnøgle hvis --" +"sort=tid\n" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" +" --time-style=STIL vis tidspunkter med stilen STIL:\n" +" full-iso, iso, locale, posix-iso, +FORMAT\n" +" FORMAT fortolkes som 'date'; hvis FORMAT er\n" +" FORMAT1FORMAT2, gælder FORMAT1 for\n" +" ældre filer, og FORMAT2 for nyere filer\n" +" -t sortér efter ændringstidspunkt\n" +" -T, --tabsize=KOLONNER brug KOLONNER som tabulatorlængde i stedet for " +"8\n" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" +" -u med -lt: sortér efter, og vis, læsningstid\n" +" med -l: vis læsningstid og sortér efter navn\n" +" ellers: sortér efter læsningstid\n" +" -U sortér ikke; vis filer som de ligger i " +"kataloget\n" +" -v sortér efter version\n" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" +" -w, --width=KOLONNER antag skærmbredde i stedet for aktuel værdi\n" +" -x vís indgange linjevis i stedet for kolonnevis\n" +" -X sortér alfabetisk efter endelser\n" +" -1 list én fil per linje\n" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" +"\n" +"Normalt bruges farver ikke til at skelne mellem filtyper. Det svarer til \n" +"at bruge --color=none. At bruge --color-flaget uden det valgfri argument\n" +"NÅR svarer til at bruge --color=always. Med --color=auto bruges farvekoder\n" +"kun hvis standard-uddata er forbundet med en terminal (tty).\n" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "Ulrich Drepper og Scott Miller" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"Brug: %s [FLAG] [FIL]...\n" +" eller: %s [FLAG] --check [FIL]\n" +"Skriv eller tjek %s-kontrolsummer (%d-bit).\n" +"Hvis ingen FIL er angivet eller FIL er -, læses fra standard-ind.\n" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" +"\n" +" -b, --binary læs filerne i binærtilstand (forvalg i DOS/Windows)\n" +" -c, --check tjek %s-summerne mod angivet liste\n" +" -t, --text læs filerne i teksttilstand (forvalgt)\n" +"\n" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" +"De følgende to flag bruges kun ved kontrol af kontrolsummer:\n" +" --status udskriv ikke noget, statuskode angiver resultat\n" +" -w, --warn advar mod fejlformatterede kontrolsum-linjer\n" +"\n" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" +"\n" +"Summerne bliver beregnet som beskrevet i %s. Ved kontrol skal\n" +"inddata være tidligere uddata fra dette program. Forvalgt \n" +"tilstand er at udskrive en linje med kontrolsum, et tegn som indikerer\n" +"type ('*' for binær, ' ' for tekst), og navnet på hver FIL.\n" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "%s: %lu: ukorrekt formatteret %s-kontrolsumlinje" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "%s: FEJL ved åbning eller læsning\n" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "MISLYKKEDES" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "O.k." + +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%s: læsefejl" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "%s: ingen rigtigt formatterede %s-kontrolsumlinjer fundet" + +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "ADVARSEL: %d af %d opførte %s kunne ikke læses" + +#: src/md5sum.c:473 +msgid "file" +msgstr "fil" + +#: src/md5sum.c:473 +msgid "files" +msgstr "filer" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "ADVARSEL: %d af %d beregnede %s stemte IKKE overens" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "kontrolsum" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "kontrolsummer" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" +"flagene --binary og --text giver ikke mening ved verificering af " +"kontrolsummer" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "flagene --string og --check kan ikke bruges samtidigt" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "flaget --status har kun betydning ved kontrol af kontrolsummer" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "flaget --warn har kun betydning ved kontrol af kontrolsummer" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "ingen fil kan angives når --string bruges" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "kun et argument kan angives når --check bruges" + +#: src/mkdir.c:61 +#, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "Brug: %s [FLAG] KATALOG...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" +"Opret KATALOG(erne), hvis de ikke allerede eksisterer.\n" +"\n" + +#: src/mkdir.c:69 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +" -m, --mode=RETTIGHEDER sæt rettigheder (som chmod), ikke rwxrwxrwx - " +"umask\n" +" -p, --parents opret forældrekataloger om nødvendigt\n" +" -v, --verbose skriv en besked for hvert katalog som oprettes\n" + +#: src/mkdir.c:113 +#, c-format +msgid "created directory %s" +msgstr "oprettede katalog %s" + +#: src/mkdir.c:190 +#, c-format +msgid "cannot set permissions of directory %s" +msgstr "kan ikke sætte adgangsrettigheder på kataloget %s" + +#: src/mkfifo.c:55 +#, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "Brug: %s [FLAG] NAVN...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" +"Opret navngivne datakanaler (FIFO-er) med angivne NAVN'e.\n" +"\n" + +#: src/mkfifo.c:63 src/mknod.c:64 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" +" -m, --mode=TILSTAND sæt rettighedstilstand (ligesom chmod), ikke a=rw - " +"umask\n" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "fifo-filer er ikke understøttet" + +#: src/mkfifo.c:123 src/mknod.c:127 +msgid "invalid mode" +msgstr "ugyldig tilstand" + +#: src/mkfifo.c:142 +#, c-format +msgid "cannot set permissions of fifo %s" +msgstr "kan ikke ændre adgangsrettigheder på fifo %s" + +#: src/mknod.c:55 +#, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "Brug: %s [FLAG]... NAVN TYPE [STØRRE MINDRE]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" +"Opret specialfilen NAVN med den angivne TYPE.\n" +"\n" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" +"\n" +"Både STØRRE og MINDRE skal angives når TYPE er b, c eller u, og de\n" +"må ikke angives når TYPE er p. Hvis STØRRE eller MINDRE begynder med 0x " +"eller 0X,\n" +"forstås det som heksadecimalt; ellers hvis de begynder med 0, som oktalt;\n" +"ellers decimalt. TYPE kan være:\n" + +#: src/mknod.c:76 +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"\n" +" b opret en blok-specialfil (bufret) \n" +" c, u opret en tegn-specialfil (ubufret) \n" +" p opret en FIFO\n" + +#: src/mknod.c:141 +msgid "wrong number of arguments" +msgstr "forkert antal argumenter" + +#: src/mknod.c:153 +msgid "block special files not supported" +msgstr "blokspecialfiler understøttes ikke" + +#: src/mknod.c:162 +msgid "character special files not supported" +msgstr "tegnspecialfiler understøttes ikke" + +#: src/mknod.c:171 +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" +"ved oprettelse af specialfiler skal større og mindre\n" +"enhedsnumre angives" + +#: src/mknod.c:186 +#, c-format +msgid "invalid major device number %s" +msgstr "ugyldigt større enhedsnummer %s" + +#: src/mknod.c:191 +#, c-format +msgid "invalid minor device number %s" +msgstr "ugyldigt mindre enhedsnummer %s" + +#: src/mknod.c:196 +#, c-format +msgid "invalid device %s %s" +msgstr "ugyldig enhed %s %s" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "større- og mindre-nummer kan ikke angives for fifo-filer" + +#: src/mknod.c:231 +#, c-format +msgid "cannot set permissions of %s" +msgstr "kan ikke sætte adgangsrettigheder på %s" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "Mike Parker, David MacKenzie og Jim Meyering" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Omdøb KILDE til MÅL eller flyt KILDE(r) til KATALOG.\n" +"\n" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" +" --backup[=KONTROL] lav sikkerhedskopi af hver eksisterende " +"målfil\n" +" -b ligesom --backup, men tager ikke noget " +"argument\n" +" -f, --force overskriv eksisterende filer uden " +"bekræftelse\n" +" -i, --interactive bekræft før overskrivning af filer\n" +" det samme som --reply=query\n" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" +" --reply={yes,no,query} angiv hvorledes forespørgsel om eksisterende " +"målfil\n" +" skal behandles\n" +" --strip-trailing-slashes fjern evt. skråstreger i slutningen af \n" +" hvert MÅL-argument\n" +" -S, --suffix=ENDELSE tilsidesæt den sædvanlige sikkerhedskopi-" +"endelse\n" + +#: src/mv.c:339 +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +" --target-directory=KATALOG flyt alle MÅL-argumenter til KATALOG\n" +" -u, --update kopiér kun hvis KILDE-filen er nyere end\n" +" målfilen, eller når målfilen ikke findes\n" +" -v, --verbose forklar hvad der sker\n" + +#: src/mv.c:467 +#, c-format +msgid "specified target, %s is not a directory" +msgstr "angivet mål '%s' er ikke et katalog" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "ved flytning af flere filer skal sidste argument være et katalog" + +#: src/nice.c:67 +#, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "Brug: %s [FLAG]... [KOMMANDO [ARG]...]\n" + +#: src/nice.c:68 +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" +"Kør KOMMANDO med en justeret behandlingsprioritet.\n" +"Uden nogen KOMMANDO, udskriv nuværende behandlingsprioritet. JUSTERING\n" +"er forvalgt til 10. Skalaen går fra -20 (højeste prioritet) til 19 " +"(laveste).\n" +"\n" +" -n, --adjustment=JUSTERING øg prioriteten med JUSTERING først\n" + +#: src/nice.c:109 src/nice.c:122 +#, c-format +msgid "invalid option `%s'" +msgstr "ugyldigt flag '%s'" + +#: src/nice.c:147 +#, c-format +msgid "invalid priority `%s'" +msgstr "ugyldig prioritet '%s'" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "en kommando skal være givet med en justering" + +#: src/nice.c:178 src/nice.c:187 +msgid "cannot get priority" +msgstr "kan ikke bestemme prioritet" + +#: src/nice.c:192 +msgid "cannot set priority" +msgstr "kan ikke sætte prioritet" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "Scott Bartram og David MacKenzie" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Skriv hver fil til standard-ud, med linjenummer lagt til.\n" +"Hvis ingen FIL er angivet, eller FIL er -, læses fra standard-ind.\n" +"\n" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" +" -b, --body-numbering=STIL brug STIL til nummerering\n" +" -d, --section-delimiter=CC brug CC til at skille logiske sider\n" +" -f, --footer-numbering=STIL brug STIL til at nummerere bundtekst\n" +"\n" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" +" -h, --header-numbering=STIL brug STIL for at nummerere toptekst\n" +" -i, --page-increment=ANTAL linjenummerforøgelse for hver linje\n" +" -l, --join-blank-lines=ANTAL ANTAL tomme linjer som tæller som en\n" +" -n, --number-format=FORMAT indsæt linjenummer efter FORMAT\n" +" -p, --no-renumber begynd ikke linjenumre på ny ved logiske\n" +" sider\n" +" -s, --number-separator=STRENG tilføj STRENG efter (muligt) linjenummer\n" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" +" -v, --first-page=ANTAL første linjenummer på hver logiske side\n" +" -w, --number-width=ANTAL brug ANTAL kolonner for linjenummerering\n" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" +"\n" +"Forvalgt er -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC er\n" +"to skilletegn for at skille logiske sider, et manglende tegn nummer to\n" +"implicerer ':'. Brug \\\\ for \\. STIL er en af:\n" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" +"\n" +" a nummerér alle linjer\n" +" t nummerér kun ikke-tomme linjer\n" +" n nummerér ingen linjer\n" +" pREGUDT nummerér kun linjer som passer REGUDT\n" +"\n" +"FORMAT er et af følgende:\n" +"\n" +" ln venstrejusteret, ingen ledende nuller\n" +" rn højrejusteret, ingen ledende nuller\n" +" rz højrejusteret, ledende nuller\n" +"\n" + +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "ugyldigt første linjenummer: \"%s\"" + +#: src/nl.c:514 +#, c-format +msgid "invalid line number increment: `%s'" +msgstr "ugyldig øgning af linjenummer: \"%s\"" + +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "ugyldigt antal tomme linjer: \"%s\"" + +#: src/nl.c:541 +#, c-format +msgid "invalid line number field width: `%s'" +msgstr "ugyldig bredde på linjenummerfelt: \"%s\"" + +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"Brug: %s [FLAG]... [FIL]...\n" +" eller: %s --traditional [FIL] [[+]POSITION [[+]MÆRKE]]\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"\n" +"Skriv en entydig repræsentation, oktale byte forvalgt, af FIL\n" +"til standard-ud. Med mere end ét FIL-argument sammenkædes de i\n" +"den angivne rækkefølge som inddata. Hvis ingen FIL er angivet,\n" +"eller FIL er -, læses fra standard-ind.\n" +"\n" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "Alle argumenter til lange flag er obligatoriske for de korte flag.\n" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" +" -A, --address-radix=RADIX bestem hvordan filoffset'er skrives\n" +" -j, --skip-bytes=BYTE overspring første BYTE fra hver fil\n" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" +" -N, --read-bytes=BYTE begræns opgaven til første antal BYTE fra hver " +"fil\n" +" -s, --strings[=BYTE] udskriv strenge med mindst antal BYTE grafiske " +"tegn\n" +" -t, --format=TYPE vælg udformater\n" +" -v, --output-duplicates brug ikke * for at markere linjefjernelse\n" +" -w, --width[=BYTE] skriv BYTE byte per udlinje\n" +" --traditional acceptér argumenter på traditionel form\n" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" +"\n" +"Traditionelle formatangivelser kan blandes, de akkumulerer:\n" +" -a samme som -t a, vælg navngivne tegn\n" +" -b samme som -t oC, vælg oktalbyte\n" +" -c samme som -t c, vælg ASCII-tegn eller omvendt skråstreg-notation\n" +" -d samme som -t u2, vælg korte decimaler uden fortegn\n" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" +" -f samme som -t fF, vælg flydende tal\n" +" -h samme som -t x2, vælg korte hexadecimaler\n" +" -i samme som -t d2, vælg korte decimaler\n" +" -l samme som -t d4, vælg lange decimaler\n" +" -o samme som -t o2, vælg korte oktaler\n" +" -x samme som -t x2, vælg korte hexadecimaler\n" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" +"\n" +"Ved ældre syntaks ('second call format') opfattes POSITION som -j " +"POSITION. \n" +"MÆRKE er pseudoadressen til den første udskrevne byte, som øges mens\n" +"udskriften pågår. For POSITION og MÆRKE indikerer en 0x- eller \n" +"0X-forstavelse hexadecimalt talformat. Endelser kan være '.' for oktal,\n" +"og b for blokke på 512 bytes.\n" +"\n" +"TYPE er lavet af en eller flere af følgende angivelser:\n" +"\n" +" a et navngivet tegn\n" +" c ASCII-tegn eller omvendt skråstreg-notation\n" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" +" d[STØRRELSE] decimal med fortegn, STØRRELSE byte per tal\n" +" f[STØRRELSE] flydende tal, STØRRELSE byte per tal\n" +" o[STØRRELSE] oktal, STØRRELSE byte per tal\n" +" u[STØRRELSE] decimal uden fortegn, STØRRELSE byte per tal\n" +" x[STØRRELSE] hexadecimal, STØRRELSE byte per tal\n" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" +"\n" +"STØRRELSE er et tal. For TYPE lig med d, o, u eller x, kan STØRRELSE også " +"være\n" +"C for sizeof(char), S for sizeof(short), I for sizeof(int) eller L for \n" +"sizeof(long). Når TYPE er f, kan STØRRELSE være F for sizeof(float), \n" +"D for sizeof(double) eller L for sizeof(long double).\n" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" +"\n" +"RADIX er d for decimal, o for oktal, x for hexadecimal eller n for ingen.\n" +"BYTE er hexadecimal med 0x- eller 0X-prefix, multipliceres med 512\n" +"med endelse b, med 1024 med endelse k og med 1048576 med endelse m. \n" +"En z-endelse for en hvilken som helst type viser skrivbare tegn til " +"slutningen\n" +"af hver linje af udskriften. " + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" +"--string uden et tal implicerer 3. --width uden et tal implicerer 32.\n" +"Normalt bruger od: -A o -t d2 -w 16.\n" + +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "ugyldig typestreng \"%s\"" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" +"ugyldig type-streng '%s';\n" +"dette system understøtter ikke en %lu-byte heltalstype" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" +"ugyldig type-streng '%s';\n" +"dette system understøtter ikke en %lu-byte flydende-talstype" + +#: src/od.c:917 +#, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "ugyldigt tegn \"%c\" i typestreng \"%s\"" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "kan ikke hoppe til efter slutning på kombineret inddata" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "position på gammel form" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "ugyldig ud-adresse-grundtal '%c'; det skal være et af tegnene [doxn]" + +#: src/od.c:1717 +msgid "skip argument" +msgstr "overspring argument" + +#: src/od.c:1725 +msgid "limit argument" +msgstr "begræns argument" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "minimal strenglængde" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "%s er for stor" + +#: src/od.c:1804 +msgid "width specification" +msgstr "breddespecifikation" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "ingen type kan angives når strenge gemmes" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "ugyldig 2. operand i kompatibilitetstilstand '%s'" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "i kompatibilitetstilstand skal de sidste to argumenter være positioner" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "kompatibilitetstilstand støtter maksimum tre argumenter" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "advarsel: ugyldig bredde %lu; bruger %d i stedet" + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "%d: fmt=\"%s\" bredde=%d\n" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "David M. Ihnat og David MacKenzie" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "standard-ind er lukket" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Skriv linjer som består af de sekventielt tilsvarende linjer fra hver\n" +"FIL, separeret med tabulatorer, til standard-ud.\n" +"Hvis ingen FIL er angivet, eller FIL er -, læses fra standard-ind.\n" +"\n" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" +" -d, --delimiters=LISTE brug tegn fra LISTE i stedet for tabulatorer\n" +" -s, --serial indsæt en fil ad gangen i stedet for i parallel\n" + +#: src/pathchk.c:146 +#, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "Brug: %s [FLAG]... NAVN...\n" + +#: src/pathchk.c:147 +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" +"Tjekker for ikke-portable konstruktioner i filNAVN.\n" +"\n" +" -p, --portability tjek for alle POSIX-systemer, ikke kun dette\n" + +#: src/pathchk.c:237 +#, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "stien '%s' indeholder et ikke-portabelt tegn '%c'" + +#: src/pathchk.c:257 +#, c-format +msgid "`%s' is not a directory" +msgstr "'%s' er ikke et katalog" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "kataloget '%s' er ikke søgbart" + +#: src/pathchk.c:355 +#, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "navnet '%s' har længde %ld; overstiger grænsen på %ld" + +#: src/pathchk.c:381 +#, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "stien '%s' har længde %d; overstiger grænsen på %ld" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "Joseph Arceneaux, David MacKenzie og Kaveh Ghazi" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "Login-navn: " + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "I virkeligheden: " + +#: src/pinky.c:298 +msgid "???\n" +msgstr "???\n" + +#: src/pinky.c:318 +msgid "Directory: " +msgstr "Katalog: " + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "Skal: " + +#: src/pinky.c:341 +msgid "Project: " +msgstr "Projekt: " + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "Plan:\n" + +#: src/pinky.c:386 +msgid "Login" +msgstr "Login" + +#: src/pinky.c:388 +msgid "Name" +msgstr "Navn" + +#: src/pinky.c:389 +msgid " TTY" +msgstr " TTY" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "Inaktiv" + +#: src/pinky.c:392 +msgid "When" +msgstr "Hvornår" + +#: src/pinky.c:395 +msgid "Where" +msgstr "Hvor" + +#: src/pinky.c:469 +#, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "Brug: %s [FLAG]... [BRUGER]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" +"\n" +" -l udskriv i langt format for de angivne BRUGER'e\n" +" -b udelad brugerens hjemmekatalog og skál i det lange format\n" +" -h udelad brugerens projektfil i det lange format\n" +" -p udelad brugerens planfil i det lange format\n" +" -s udskriv i kort format, dette er standard\n" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" +" -f udelad linjen med kolonneoverskrifter i kort format\n" +" -w udelad brugerens fuldstændige navn i kort format\n" +" -i udelad brugerens fuldstændige navn og fjernvært i kort\n" +" format\n" +" -q udelad brugerens fuldstændige navn, fjernvært og \n" +" inaktiv tid i kort format\n" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" +"\n" +"Et letvægts \"finger\"-program; udskriver brugerinformation.\n" +"utmp-filen vil være %s.\n" + +#: src/pinky.c:574 +msgid "no username specified; at least one must be specified when using -l" +msgstr "intet brugernavn angivet; mindst ét skal angives når -l bruges" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "Pete TerMaat og Roland Hübner" + +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "'--pages' ugyldigt område for sidenumre: '%s'" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "\"--pages\" ugyldigt startsidenummer: \"%s\"" + +#: src/pr.c:829 +#, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "\"--pages\" ugyldigt slutsidenummer: \"%s\"" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "'--pages' startsidenummeret er større end slutsidenummeret" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "'--pages=START_SIDE[:SLUT_SIDE]' mangler argument" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "'--columns=KOLONNER' ugyldigt antal kolonner: '%s'" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "'-l SIDELÆNGDE' ugyldigt antal linjer: '%s'" + +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "'-N TAL' ugyldigt start-linjenummer: '%s'" + +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "'-o MARGEN' ugyldigt linje-afsæt: '%s'" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "'-w SIDEBREDDE' ugyldigt antal tegn: '%s'" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "'-W SIDEBREDDE' ugyldigt antal tegn: '%s'" + +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "%Y-%m-%d %H:%M" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "Kan ikke angive antal kolonner når der skrives i parallel." + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "Kan ikke angive både skrivning på tværs og skriving parallelt" + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "'-%c' ekstra tegn eller ugyldig tal i argumentet: '%s'" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "sidebredde for smal" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "start-sidenummeret er større end totalt antal sider: '%d'" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "Side %d" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "Sidenummerér eller omform FIL(er) til kolonner for udskrivning.\n" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" +" +FØRSTE_SIDE[:SIDSTE_SIDE], --pages=FØRSTE_SIDE[:SIDSTE_SIDE]\n" +" start [slut] udskrift med FØRSTE_[SIDSTE_]SIDE\n" +" -KOLONNER, --columns=KOLONNER\n" +" lav KOLONNER-kolonners udskrift og skriv kolonner nedad\n" +" medmindre '-a' er angivet: balancér antal linjer\n" +" i kolonnerne på hver side.\n" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" +" -a, --across skriv kolonner henover i stedet for nedad. Bruges\n" +" sammen med -KOLONNER\n" +" -c, --show-control-chars\n" +" brug hat-notation (^G) og oktal omvendt " +"skråstrgsnotation\n" +" -d, --double-space\n" +" dobbelt afstand i udskriften\n" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" +" -D, --date-format=FORMAT\n" +" brug FORMAT for dato i overskriften\n" +" -e[TEGN[BREDDE]], --expand-tabs[=TEGN[BREDDE]]\n" +" udvid ind-TEGN (TABs) til BREDDE blanktegn (8)\n" +" -F, -f, --form-feed\n" +" brug sideskift(FF) i stedet for linjeskift for at\n" +" separere sider (med et 3-linjers sidehoved med -F eller\n" +" et 5-linjers hoved og bund uden -F).\n" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" +" -h OVERSKRIFT, --header=OVERSKRIFT\n" +" brug centreret OVERSKRIFT i stedet for filnavn i " +"sidetopteksterne\n" +" -h \"\" skriver en blank linje. Brug ikke -h\"\".\n" +" -i[TEGN[BREDDE]], --output-tabs=[TEGN[BREDDE]]\n" +" erstat BREDDE (8) mellemrum til TEGN (TABs) \n" +" -J, --join-lines flet fulde linjer. Deaktiverer -W linjetrunkering,\n" +" ingen kolonnejustering, --sep-string[=STRENG] sætter " +"separatorer\n" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" +" -l SIDELÆNGDE, --length=SIDELÆNGDE\n" +" sæt sidelængde til SIDELÆNGDE (66) linjer\n" +" (forvalgt antal linjer med tekst er 56 med -f 63)\n" +" -m, --merge udskriv alle filer parallelt, en i hver kolonne\n" +" trunkér linjer, men flet linjer af fuld længde med -j\n" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" +" -n[SEP[CIFRE]], --number-lines[=SEP[CIFRE]\n" +" nummerér linjer, brug CIFRE (5) cifre, så SEP (TAB)\n" +" forvalgt tælling starter med første linje af indfil\n" +" -N NUMMER, --first-line-number=NUMMER\n" +" start tælling med NUMMER på første linje på første side\n" +" som skrives (se +FØRSTE_SIDE)\n" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" +" -o MARGEN, --indent=MARGEN\n" +" indryk linjer MARGEN mellemrum (påvirker ikke -w)\n" +" eller -W, MARGEN vil blive lagt til SIDEBREDDE\n" +" -r, --no-file-warnings\n" +" advar ikke når en fil ikke kan åbnes\n" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" +" -s[TEGN], --separator[=TEGN]\n" +" adskil kolonner med et enkelt TEGN. Forvalgt TEGN er\n" +" TAB uden -w og 'ingen tegn' med -w.\n" +" -s[TEGN] slår linjetrunkering fra for alle 3 kolonne-\n" +" flagene (-KOLONNER|-a -KOLONNER|-m) bortset fra -w\n" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr " -SSTRENG, --sep-string[=STRENG]\n" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" +" adskil kolonner med STRENG,\n" +" uden -S: forvalgt skilletegn er med -J og " +"\n" +" ellers (samme som -S\" \"), ingen effekt på kolonneflag\n" +" -t, --omit-header brug ikke top- og bundtekst\n" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" +" -T, --omit-pagination\n" +" brug ikke top- og bundtekst, eliminer evt. side-layout\n" +" ved sideskift(FF) sat i indfiler\n" +" -v, --show-nonprinting\n" +" brug oktal omvendt skråstregsnotation\n" +" -w SIDEBREDDE, --width=SIDEBREDDE\n" +" sæt sidebredde til SIDEBREDDE (72) kolonner, kun for\n" +" flerkolonneudskrift, -s[tegn] slår fra (72)\n" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" +" -W SIDEBREDDE, --page-width=SIDEBREDDE\n" +" sæt sidebredde til SIDEBREDDE (72) kolonner, altid.\n" +" Trunkér linjer hvis -J ikke er sat. Påvirker\n" +" ikke -S eller -s\n" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" +"\n" +"-T er medført af -l nn, når nn <= 10 eller <= 3 ved -F. Hvis ingen FIL\n" +"er angivet eller FIL er -, læses fra standard-ind.\n" + +#: src/printenv.c:43 +msgid "David MacKenzie and Richard Mlynarik" +msgstr "David MacKenzie og Richard Mlynarik" + +#: src/printenv.c:63 +#, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" +"Brug: %s [VARIABEL]...\n" +"eller: %s FLAG\n" +"Hvis ingen miljø-VARIABEL er angivet, udskriv alle.\n" +"\n" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "advarsel: %s: tegn efter tegnkonstant er blevet ignorerede" + +#: src/printf.c:100 +#, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"Brug: %s FORMAT [ARGUMENT]...\n" +" eller: %s FLAG\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" +"Udskriv ARGUMENT'er ifølge FORMAT.\n" +"\n" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" +"\n" +"FORMAT styrer uddata som i C printf. Tolkede sekvenser er:\n" +"\n" +" \\\" citationstegn\n" +" \\0NNN tegn med oktal værdi NNN (0 til 3 cifre)\n" +" \\\\ omvendt skråstreg\n" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" +" \\a advarsel (SIGNAL)\n" +" \\b baktegn\n" +" \\c lav ikke mere uddata\n" +" \\f sideskift\n" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\n ny linje\n" +" \\r vognretur\n" +" \\t vandret tabulator\n" +" \\v lodret tabulator\n" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" +" \\xNN byte med heksadecimal værdi NN (1 il 2 cifre)\n" +"\n" +" \\uNNNN tegn med heksadecimal værdi NNNN (4 cifre)\n" +" \\UNNNNNNNN tegn med heksadecimal værdi NNNNNNNN (8 cifre)\n" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" +" %% et enkelt %\n" +" %b ARGUMENT som en streng med \"\\\"-kontrolsekvenser tolkes\n" +"\n" +"og alle specifikationer i C-format som slutter med en af diouxXfeEgGcs, " +"med \n" +"ARGUMENT'er konverterede til en passende type først. Variable bredder " +"behandles.\n" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "%s: forventede en numerisk værdi" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "%s: værdi ikke fuldstændig konverteret" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "manglende heksadecimal-tal i beskyttet tegnsekvens" + +#: src/printf.c:292 +#, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "ugyldigt universelt tegnnavn \\%c%0*x" + +#: src/printf.c:472 +#, c-format +msgid "invalid field width: %s" +msgstr "ugyldig feltlængde: %s" + +#: src/printf.c:498 +#, c-format +msgid "invalid precision: %s" +msgstr "ugyldig præcision: %s" + +#: src/printf.c:519 +#, c-format +msgid "%%%c: invalid directive" +msgstr "%%%c: ugyldigt direktiv" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "Brug: %s format [argument...]\n" + +#: src/printf.c:594 +#, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "advarsel: ignorerer overflødige argumenter, startende med '%s'" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "%s (for regexp '%s')" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"Brug: %s [FLAG]... [INDFIL]... (uden -G)\n" +" eller: %s -G [FLAG]... [INDFIL [UDFIL]]\n" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" +"Udskriv et permuteret indeks, med kontekst, over ordene i inddatafilerne.\n" +"\n" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" +" -A, --auto-reference udskriv automatisk genererede referencer\n" +" -C, --copyright vis Copyright og kopieringsbetingelser\n" +" -G, --traditional vær mere som System V's 'ptx'\n" +" -F, --flag-truncation=STRENG brug STRENG for at markere linjetrunkering\n" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" +" -M, --macro-name=STRENG makronavn at bruge i stedet for 'xx'\n" +" -O, --format=roff generér udskrift som roff-direktiver\n" +" -R, --right-side-refs placér referencerne på højre side, ikke\n" +" talt med i -w\n" +" -S, --sentence-regexp=REGUDT for slutningen af linjer eller slutningen " +"af\n" +" sætninger\n" +" -T, --format=tex generér udskrift som TeX-direktiver\n" +" -o, --only-file=FIL læs liste over ord som *ikke* skal " +"ignoreres\n" +" fra denne FIL\n" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" +" -W, --word-regexp=REGUDT brug REGUDT for at ramme hvert nøgleord\n" +" -b, --break-file=FIL tegn for orddeling i denne FIL\n" +" -f, --ignore-case lav små bogstaver om til store for " +"sortering\n" +" -g, --gap-size=TAL størrelse på mellemrum mellem kolonner i " +"udfelter\n" +" -i, --ignore-file=FIL læs liste over ord som skal ignoreres fra\n" +" denne FIL\n" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" +" -r, --references første felt i hver linje er en reference\n" +" -t, --typeset-mode - ikke implementeret -\n" +" -w, --width=BREDDE udskriftbredde for kolonner, eksklusive\n" +" referencer\n" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" +"\n" +"Ved ingen FIL eller hvis FIL er -, læses fra standard-ind. '-F /' er\n" +"forvalgt.\n" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" +"Dette program er frit programmel. Du kan redistribuere det og/eller\n" +"ændre det under betingelserne givet i 'GNU General Public License' som\n" +"udgivet af Free Software Foundation - enten version 2, eller (efter eget\n" +"valg) en hvilken som helst senere version.\n" +"\n" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" +"Dette program er distribueret i håb om at det vil være nyttigt,\n" +"men UDEN NOGEN GARANTIER, heller ikke implicerede om SALGBARHED eller\n" +"EGNETHED FOR NOGEN SPECIEL ANVENDELSE. Se 'GNU General Public License'\n" +"for flere detaljer.\n" +"\n" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" +"Du bør have modtaget en kopi af 'GNU General Public License' sammen med\n" +"dette program - hvis ikke, så skriv til Free Software Foundation Inc.,\n" +"59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" +"Udskriv hele filnavnet på det aktuelle arbejdskatalog.\n" +"\n" + +#: src/pwd.c:74 +msgid "ignoring non-option arguments" +msgstr "ignorerer argumenter som ikke er flag" + +#: src/pwd.c:78 +msgid "cannot get current directory" +msgstr "kan ikke finde aktuelt katalog" + +#: src/readlink.c:69 +#, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "Brug: %s [FLAG]... [FIL]\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" +"Vis værdien af en symbolsk lænke på standard-uddata.\n" +"\n" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" +" -f, --canonicalize normalisér ved at følge hver symlænke i hver\n" +" komponent i den givne sti rekursivt\n" +" -n, --no-newline udskriv ikke et afsluttende linjeskift\n" +" -q, --quiet,\n" +" -s, --silent undertryk de fleste fejlmeddelelser\n" +" -v, --verbose rapportér fejlmeddelelser\n" + +#: src/remove.c:394 +#, c-format +msgid "cannot chdir from %s to .." +msgstr "kan ikke skifte katalog fra %s til .." + +#: src/remove.c:407 src/remove.c:488 +#, c-format +msgid "cannot lstat `.' in %s" +msgstr "kan ikke tage status (lstat) på '.' i %s" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "%s ændrede enh/ino" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, c-format +msgid "cannot lstat %s" +msgstr "kan ikke tage status (lstat) på %s" + +#: src/remove.c:603 +#, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "%s: gå ned i skrivebeskyttet katalog %s? " + +#: src/remove.c:604 +#, c-format +msgid "%s: descend into directory %s? " +msgstr "%s: gå ned i katalog %s? " + +#: src/remove.c:614 +#, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: fjern skrivebeskyttet %s %s? " + +#: src/remove.c:615 +#, c-format +msgid "%s: remove %s %s? " +msgstr "%s: fjern %s %s? " + +#: src/remove.c:639 +#, c-format +msgid "removed %s\n" +msgstr "fjernede %s\n" + +#: src/remove.c:654 src/remove.c:1059 +#, c-format +msgid "removed directory: %s\n" +msgstr "fjernede katalog %s\n" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, c-format +msgid "cannot remove directory %s" +msgstr "kan ikke fjerne katalog %s" + +#: src/remove.c:815 +#, c-format +msgid "cannot open directory %s" +msgstr "kan ikke åbne katalog %s" + +#: src/remove.c:896 src/remove.c:1002 +#, c-format +msgid "cannot chdir from %s to %s" +msgstr "kan ikke skifte katalog fra %s til %s" + +#: src/remove.c:904 +#, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +"ADVARSEL: Cirkulær katalogstruktur.\n" +"Dette betyder næsten helt sikkert at du har et ødelagt filsystem.\n" +"RAPPORTÉR TIL SYSTEMANSVARLIG.\n" +"Følgende katalog udgør en del af cirkelen:\n" +" %s\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "kan ikke slette '.' eller '..'" + +#: src/rm.c:60 +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "Paul Rubin, David MacKenzie, Richard Stallman og Jim Meyering" + +#: src/rm.c:99 src/touch.c:244 +#, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "Brug: %s [FLAG]... [FIL]...\n" + +#: src/rm.c:100 +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Fjern (unlink) FIL'er.\n" +"\n" +" -d, --directory slet kataloger selv om de ikke er tomme (kun " +"superbruger)\n" +" -f, --force ignorér ikke-eksisterende filer, ingen bekræftelse\n" +" -i, --interactive bed om bekræftelse før sletning af filer\n" +" -r, -R, --recursive slet indhold af kataloger rekursivt\n" +" -v, --verbose forklar hvad der sker\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" +"\n" +"For at fjerne en fil hvis navn begynder med et '-', for eksempel '-foo',\n" +"kan du bruge en af disse kommandoer:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" +"\n" +"Bemærk at hvis du bruger 'rm' til at fjerne en fil, er det normalt muligt " +"at\n" +"genskabe indholdet af denne fil. Hvis du ønsker større sikkerhed for at " +"indholdet\n" +"virkelig ikke kan genskabes, så overvej at bruge 'shred'.\n" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, c-format +msgid "removing directory, %s" +msgstr "fjerner katalog, %s" + +#: src/rmdir.c:146 +#, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "Brug: %s [FLAG]... [KATALOG]...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" +"Slet KATALOG'er, hvis de er tomme.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignorér alle fejl som udelukkende skyldes at kataloget " +"ikke\n" +" er tomt\n" + +#: src/rmdir.c:154 +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +" -p, --parents slet KATALOG, prøv dernæst at fjerne hvert katalog-element " +"i\n" +" hele stinavnet. F.eks. 'rmdir -p a/b/c' virker ligesom\n" +" 'rmdir a/b/c a/b a'.\n" +" -v, --verbose vis meddelelse for hvert katalog som behandles\n" + +#: src/seq.c:82 +#, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"Brug: %s [FLAG]... SIDSTE\n" +" eller: %s [FLAG]... FØRSTE SIDSTE\n" +" eller: %s [FLAG]... FØRSTE FORØGELSE SIDSTE\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" +"Udskriv tallene fra FØRSTE til SIDSTE, med trin på FORØGELSE.\n" +"\n" +" -f, --format=FORMAT brug printf-lignende flydendetals-FORMAT " +"(forvalgt: %g)\n" +" -s, --separator=STRENG brug STRENG for at separere tallene (forvalgt: " +"\\n)\n" +" -w, --equal-width gør bredden ens ved at udfylde med nuller foran\n" + +#: src/seq.c:96 +#, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" +"\n" +"Hvis FØRSTE eller FORØGELSE er udeladt, er forvalgt værdi 1.\n" +"FØRSTE, FORØGELSE og SIDSTE tolkes som flydendetals-værdier. FORØGELSE bør " +"være\n" +"positiv hvis FØRSTE er mindre end SIDSTE, og negativ ellers. Når FORMAT\n" +"er angivet, skal det indeholde nøjagtig ét af printf-direktiverne for\n" +"flydende tal: %e, %f eller %g.\n" + +#: src/seq.c:119 +#, c-format +msgid "invalid floating point argument: %s" +msgstr "ugyldigt flydende tal-argument: %s" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "når startværdien er større end grænsen skal øgningen være negativ" + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "når startværdien er mindre end grænsen skal øgningen være positiv" + +#: src/seq.c:423 +#, c-format +msgid "invalid format string: `%s'" +msgstr "ugyldig formatstreng: '%s'" + +#: src/seq.c:445 +msgid "format string may not be specified when printing equal width strings" +msgstr "" +"formatstrengen kan ikke angives når der udskrives strenge\n" +"med ens bredde" + +#: src/shred.c:160 +#, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "Brug: %s [FLAG] FIL [...]\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" +"Overskiv de angivne FILER gentagne gange for at gøre det sværere for\n" +"selv meget dyrt genoprettelsesudstyr at genskabe data.\n" +"\n" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" +" -f, --force ændr om nødvendigt rettigheder for at tillade skrivning\n" +" -n, --iterations=N Overskriv N gange i stedet for det normale (%d)\n" +" -s, --size=N makulér dette antal byte (endelser som k, M, G accepteret)\n" + +#: src/shred.c:174 +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" +" -u, --remove afkort og fjern fil efter overskrivningen\n" +" -v, --verbose vis fremskridt\n" +" -x, --exact rund ikke filstørrelser op til den næste fulde blok\n" +" dette er standard for ikke-regulære filer\n" +" -z, --zero tilføj til slut en overskrivning med nul-tegn for at skjule " +"makulering\n" +" - standard-uddata for 'shred'\n" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" +"\n" +"Slet FILER hvis --remove er angivet. Det normale er at ikke fjerne filerne\n" +"fordi det er almindeligt at behandle enhedsfiler som /dev/hda,\n" +"og disse filer bør normalt ikke fjernes. Ved behandling af almindelige " +"filer\n" +"bruger de fleste --remove-valgmuligheden.\n" +"\n" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" +"PAS PÅ: Bemærk at 'shred' bygger på en meget vigtig antagelse:\n" +"at filsystemet overskriver data på stedet. Dette er den traditionelle\n" +"måde at det på, men mange moderne filsystemsdesign opfylder ikke denne\n" +"antagelse. Det følgende er eksempler på filsystemer hvor 'shred' ikke er\n" +"effektiv:\n" +"\n" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" +"* log-strukturerede eller journaliserende filsystemer, såsom dem der " +"leveres\n" +" med AIX, Solaris (og JFS, ReiserFS, XFS, Ext3 osv.)\n" +"\n" +"* filsystemer som skriver redundante data og fortsætter selv om nogle " +"skrivninger\n" +" mislykkes, såsom RAID-baserede filsystemer\n" +"\n" +"* filsystemer som laver øjebliksbilleder, såsom Network Appliances' NFS " +"server\n" +"\n" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" +"* filsystemer der mellemlagrer på midlertidige steder, såsom NFS version 3-" +"klienter\n" +"\n" +"* komprimerede filsystemer\n" +"\n" +"Derudover kan sikkerhedskopier af filsystemer og eksterne spejlinger " +"indeholde\n" +"kopier af filen, som ikke kan fjernes, og som vil tillade genskabelse senere " +"af\n" +"en makuleret fil.\n" + +#: src/shred.c:808 +#, c-format +msgid "%s: cannot rewind" +msgstr "%s: kan ikke tilbagespole" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "%s: gennemløb %lu/%lu (%s)..." + +#: src/shred.c:868 +#, c-format +msgid "%s: error writing at offset %s" +msgstr "%s: fejl ved skrivning fra afsæt %s" + +#: src/shred.c:897 +#, c-format +msgid "%s: file too large" +msgstr "%s: fil for stor" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "%s: gennemløb %lu/%lu (%s)...%s" + +#: src/shred.c:936 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "%s: gennemløb %lu/%lu (%s)...%s/%s %d%%" + +#: src/shred.c:1195 +#, c-format +msgid "%s: invalid file type" +msgstr "%s: ugyldig filtype" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s: fil har negativ størrelse" + +#: src/shred.c:1265 +#, c-format +msgid "%s: error truncating" +msgstr "%s: fejl ved afkortning" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "%s: kan ikke makulere beskriver for fil, der kun kan tilføjes til" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "%s: sletter" + +#: src/shred.c:1412 +#, c-format +msgid "%s: renamed to %s" +msgstr "%s: omdøbt til %s" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s: slettet" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "%s: kan ikke slette" + +#: src/shred.c:1551 +#, c-format +msgid "%s: invalid number of passes" +msgstr "%s: ugyldigt antal gennemløb" + +#: src/shred.c:1568 +#, c-format +msgid "%s: invalid file size" +msgstr "%s: ugyldig filstørrelse" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "Jim Meyering og Paul Eggert" + +#: src/sleep.c:52 +#, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" +"Brug: %s ANTAL[SUFFIKS]...\n" +" eller: %s FLAG\n" +"Sov i ANTAL sekunder. SUFFIKS kan være 's' for at angive sekunder " +"(forvalgt),\n" +"'m' for minutter, 'h' for timer (hours) og 'd' for dage. Ulig de fleste " +"implementeringer\n" +"som kræver at ANTAL er et heltal, kan ANTAL her være et vilkårligt\n" +"flydende tal.\n" +"\n" + +#: src/sleep.c:155 +#, c-format +msgid "invalid time interval `%s'" +msgstr "ugyldigt tidsinterval '%s'" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "kan ikke læse realtids-ur" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "Mike Haertel og Paul Eggert" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" +"Skriv sorteret konkatenering af alle FILER til standard-uddata.\n" +"\n" +"Sorteringsmuligheder:\n" +"\n" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" +" -b, --ignore-leading-blanks ignorér indledende blanke\n" +" -d, --dictionary-order tag kun blanke og alfanumeriske tegn i " +"betragtning\n" +" -f, --ignore-case behandl små bogstaver som store bogstaver\n" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" +" -g, --general-numeric-sort sammenlign ifølge generel numerisk værdi\n" +" -i, --ignore-nonprinting tag kun synlige tegn i betragtning\n" +" -M, --month-sort sammenlign (ukendt) < 'JAN' < ... < 'DEC'\n" +" -n, --numeric-sort sammenlign ifølge numerisk værdi af strenge\n" +" -r, --reverse vend resultaterne af sammenligningerne om\n" +"\n" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" +"Andre muligheder:\n" +"\n" +" -c, --check tjek om inddata er sorteret; sortér ikke\n" +" -k, --key=POS1[,POS2] start en nøgle ved POS1, afslut den ved POS 2 " +"(startpunkt 1)\n" +" -m, --merge sammenflet allerede sorterede filer; sortér " +"ikke\n" +" -o, --output=FIL udskriv resultat til FIL i stedet for standard-" +"uddata\n" +" -s, --stable stabilisér sortering ved deaktivering af sidste-" +"udvejs-sammenligning\n" +" -S, --buffer-size=STØR brug størrelsen STØR for indre " +"hukommelsesbuffer\n" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" +" -t, --field-separator=SEP brug SEP i stedet for ikke-mellemrum til " +"mellemrums-overgang\n" +" -T, --temporary-directory=KAT brug KAT til mellemlagring, ikke $TMPDIR " +"eller %s\n" +" flere muligheder angiver flere kataloger\n" +" -u, --unique med -c: tjek for streng ordning\n" +" ellers: udskriv kun den første af en række " +"ens\n" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" +" -z, --zero-terminated afslut linjer med en 0 byte, ikke ny-linje\n" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" +"\n" +"POS er F[.T][FLAG], hvor F er et feltnummer og T en tegnposition\n" +"i feltet. FLAG er sat sammen af en eller flere enkeltbogstavs-flag,\n" +"som tilsidesætter globale sorterings-flag for denne nøgle. Hvis ingen\n" +"nøgle er angivet, bruges hele linjen som nøgle.\n" +"\n" +"STØRRELSE kan efterfølges af de følgende endelser, som kan kombineres:\n" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" +"%% 1%% af hukommelse, b 1, k 1024 (forvalgt), og så videre for M, G, T, P, " +"E, Z, Y.\n" +"\n" +"Hvis ingen FIL er angivet, eller FIL er -, læses fra standard-ind.\n" +"\n" +"*** ADVARSEL ***\n" +"Lokalet angivet i miljøet påvirker sorteringsordenen.\n" +"Sæt LC_ALL=C for at få den traditionelle sorteringsorden som benytter\n" +"de interne byte-værdier.\n" + +#: src/sort.c:444 +msgid "cannot create temporary file" +msgstr "kan ikke oprette midlertidig fil %s" + +#: src/sort.c:467 +msgid "open failed" +msgstr "fejl ved åbning af filen" + +#: src/sort.c:487 src/sort.c:2496 +msgid "close failed" +msgstr "fejl ved lukning af filen" + +#: src/sort.c:495 +msgid "write failed" +msgstr "fejl ved skrivning" + +#: src/sort.c:641 +msgid "sort size" +msgstr "sorteringsstørrelse" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "stat() mislykkedes" + +#: src/sort.c:972 +msgid "read failed" +msgstr "læsefejl" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "%s: %s:%s: uorden: " + +#: src/sort.c:1574 +msgid "standard error" +msgstr "standardfejl" + +#: src/sort.c:2032 +#, c-format +msgid "%s: invalid field specification `%s'" +msgstr "%s: ugyldig feltangivelse '%s'" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "%s: antallet `%.*s' er for stort" + +#: src/sort.c:2064 +#, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "%s: ugyldigt antal ved starten af '%s'" + +#: src/sort.c:2298 +msgid "invalid number after `-'" +msgstr "ugyldigt tal efter '-'" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +msgid "invalid number after `.'" +msgstr "ugyldigt tal efter '.'" + +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "forvildet tegn i feltangivelse" + +#: src/sort.c:2338 +msgid "invalid number at field start" +msgstr "ugyldigt tal ved feltbegyndelsen" + +#: src/sort.c:2342 src/sort.c:2370 +msgid "field number is zero" +msgstr "felt-nummeret er nul" + +#: src/sort.c:2351 +msgid "character offset is zero" +msgstr "tegnafsæt er nul" + +#: src/sort.c:2366 +msgid "invalid number after `,'" +msgstr "ugyldigt tal efter ','" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "flertegns-tabulator '%s'" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "ekstra operand '%s' er ikke tilladt med -c" + +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "Brug: %s [FLAG] [INDDATA [PRÆFIKS]]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" +"Skriv stykker af fast størrelse af INDDATA til PRÆFIKSaa, PRÆFIKSab, ...;\n" +"Forvalgt PRÆFIKS er `x'. Hvis ingen INPUT er angivet, eller INPUT er -,\n" +"læses fra standard-ind.\n" +"\n" + +#: src/split.c:108 +#, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" +" -a, --suffix-length=N brug endelser med længden N (normalt %d)\n" +" -b, --bytes=STØRRELSE skriv STØRRELSE byte i hver udfil\n" +" -C, --line-bytes=STØRRELSE skriv maksimum STØRRELSE byte med linjer per\n" +" udfil\n" +" -l, --lines=ANTAL skriv ANTAL linjer i hver udfil\n" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" +" --verbose skriv en diagnostik til standard error lige\n" +" før hver udfil åbnes\n" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "Løbet tør for endelser til uddatafiler" + +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "opretter filen '%s'\n" + +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "kan ikke opdele på mere end én måde" + +#: src/split.c:394 +#, c-format +msgid "%s: invalid suffix length" +msgstr "%s: ugyldig længde på endelse" + +#: src/split.c:408 src/split.c:434 +#, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: ugyldigt antal oktetter" + +#: src/split.c:421 +#, c-format +msgid "%s: invalid number of lines" +msgstr "%s: ugyldigt antal linjer" + +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "'-%d'-flaget er forældet; brug '-l %d'" + +#: src/split.c:483 +msgid "invalid number" +msgstr "ugyldigt tal" + +#: src/stat.c:326 +msgid "*** invalid date/time ***" +msgstr "*** ugyldig datoi/klokkeslæt ***" + +#: src/stat.c:608 +#, c-format +msgid "cannot read file system information for %s" +msgstr "kan ikke læse information om filsystem for %s" + +#: src/stat.c:684 +#, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "Brug: %s [FLAG] FIL...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" +"Vis fils eller filsystems status.\n" +"\n" +" -f, --filesystem vis filsystemstatus i stedet for filstatus\n" +" -c --format=FORMAT brug det angivne FORMAT i stedet for det normale\n" +" -L, --dereference følg lænker\n" +" -t, --terse udskriv informationen i sammentrængt form\n" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" +"\n" +"De gyldige format-sekvenser for filer (uden --filesystem):\n" +"\n" +" %A - Adgangsrettigheder på læsevenlig form\n" +" %a - Adgangsrettigheder oktalt\n" +" %B Størrelsen i byte for hver blok rapporteret af '%b'\n" +" %b - Antal blokke allokeret (se %B)\n" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" +" %D - Enhedsnummer i hex\n" +" %d - Enhedsnummer decimalt\n" +" %F - Filtype\n" +" %f - Rå tilstand i hex\n" +" %G - Gruppenavn på ejer\n" +" %g - Gruppe-ID på ejer\n" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" +" %h - Antal hårde lænker\n" +" %i - Inode-nummer\n" +" %N - Citeret filnavn med dereference hvis symbolsk lænke\n" +" %n - Filnavn\n" +" %o - IO-blokstørrelse\n" +" %s - Total størrelse, i byte\n" +" %T - Større enhedstype i hex\n" +" %t - Mindre enhedstype i hex\n" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" +" %U - Brugernavn på ejer\n" +" %u - Bruger-ID på ejer\n" +" %X - Tidspunkt for sidste tilgang som sekunder siden Epoken\n" +" %x - Tidspunkt for sidste tilgang\n" +" %Y - Tidspunkt for sidste modificering som sekunder siden Epoken\n" +" %y - Tidspunkt for sidste modificering\n" +" %Z - Tidspunkt for sidste ændring som sekunder siden Epoken\n" +" %z - Tidspunkt for sidste ændring\n" +"\n" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" +"Gyldige formatsekvenser for filsystemer:\n" +"\n" +" %a - Frie blokke tilgængelige for ikke-superbruger\n" +" %b - Totale datablokke i filsystem\n" +" %c - Totale filnoder i filsystem\n" +" %d - Frie filnoder i filsystem\n" +" %f - Frie blokke i filsystem\n" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" +" %i - Filsystems-id i hex\n" +" %l - Største længde på filnavne\n" +" %n - Filnavn\n" +" %s - Optimal størrelse på overførelsesblokke\n" +" %T - Type på læsevenlig form\n" +" %t - Type i hex\n" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" +"Brug: %s [-F ENHED] [--file=ENHED] [INDSTILLING]...\n" +" eller: %s [-F ENHED] [--file=ENHED] [-a|--all]\n" +" eller: %s [-F ENHED] [--file=ENHED] [-g|--save]\n" + +#: src/stty.c:504 +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" +"Udskriv eller ændr terminal-egenskaber.\n" +"\n" +" -a, --all udskriv alle nuværende indstillinger i læsevenlig form\n" +" -g, --save udskriv alle nuværende indstillinger i stty-læsbar form\n" +" -F, --file=ENHED åbn og brug den angivne ENHED i stedet for stdin\n" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" +"\n" +"Eventuelt '-' før INDSTILLING indikerer en modsat indstilling. '*' markerer\n" +"indstillinger som ikke følger POSIX-standarden. Det underliggende system\n" +"definerer hvilke indstillinger som er tilgængelige.\n" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" +"\n" +"Specialtegn:\n" +" * dsusp TEGN TEGN sender et stopsignal så snart inddata er slut.\n" +" eof TEGN TEGN sender et filslut (afslutter inddata)\n" +" eol TEGN TEGN afslutter linjen\n" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" +" * eol2 TEGN alternativt TEGN for linjeslut\n" +" erase TEGN TEGN sletter det senest skrevne tegn\n" +" intr TEGN TEGN sender et afbrydningssignal\n" +" kill TEGN TEGN sletter nuværende linje\n" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" +" * lnext TEGN TEGN skriver næste tegn som et specialtegn\n" +" quit TEGN TEGN sender en afslutningssignal\n" +" * rprnt TEGN TEGN genskriver nuværende linje\n" +" start TEGN TEGN starter udskrift igen efter at have stoppet den\n" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" +" stop TEGN TEGN stopper udskriften\n" +" susp TEGN TEGN sender et terminalstopsignal\n" +" * swtch TEGN TEGN skifter til en anden skál\n" +" * werase TEGN TEGN sletter det senest skrevne ord\n" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" +"\n" +"Specialindstillinger:\n" +" N sæt ind- og uddatahastighed til N baud\n" +" * cols N sig til kernen at terminalen har N kolonner\n" +" * columns N samme som cols N\n" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" +" ispeed N sæt inddatahastighed til N\n" +" * line N anvend linjetype N\n" +" min N med -icanon, sæt N tegn til minimum for en afsluttet " +"læsning\n" +" ospeed N sæt udskriftshastighed til N\n" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" +" * rows N sig til kernen at terminalen har N linjer\n" +" * size udskriv antal linjer og kolonner ifølge kernen\n" +" speed udskriv terminalens hastighed\n" +" time N med -icanon, sæt timeout for læsning til N tiendedels " +"sekunder\n" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" +"\n" +"Kontrollindstillinger:\n" +" [-]clocal deaktivér signaler for modem-kontrol\n" +" [-]cread lad inddata blive modtaget\n" +"* [-]crtscts aktivér RTS/CTS-forhandling ('handshaking')\n" +" csN sæt tegnstørrelse til N bit, N i [5..8]\n" + +#: src/stty.c:570 +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" +" [-]cstopb brug to stop-bit per tegn (én med '-')\n" +" [-]hup send et hangup-signal når den sidste proces lukker tty-en\n" +" [-]hupcl samme som [-]hup\n" +" [-]parenb generér paritetsbit ved skriving og forvent paritetsbit " +"ved\n" +" læsning\n" +" [-]parodd sæt ulige paritet (lige paritet med '-')\n" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" +"\n" +"Indstillinger for inddata:\n" +" [-]brkint afbrydning forårsager et afbrydningssignal\n" +" [-]icrnl oversæt vognretur til linjeskift\n" +" [-]ignbrk ignorér afbrydningstegn\n" +" [-]igncr ignorér vognretur\n" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" +" [-]ignpar ignorér tegn med paritetsfejl\n" +" * [-]imaxbel bip-signal, men tøm ikke fuld inddatabuffer på grund af\n" +" et tegn\n" +" [-]inlcr oversæt linjeskift til vognretur\n" +" [-]inpck muliggør paritetskontrol af inddata\n" +" [-]istrip nulstil den høje (8.) bit i et inddatategn\n" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" +" * [-]iuclc oversæt store til små bogstaver\n" +" * [-]ixany tillad hvilket tegn som helst at genstarte udskrift, \n" +" ikke kun starttegn\n" +" [-]ixoff aktivér start/stop-tegn\n" +" [-]ixon aktivér XON/XOFF flydningskontrol\n" +" [-]parmrk markér paritetsfejl (med en 255-0 tegnsekvens)\n" +" [-]tandem samme som [-]ixoff\n" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" +"\n" +"Indstillinger for uddata:\n" +"* bsN baktegn-forsinkelsesstil, N i [0..1]\n" +"* crN vognretur-forsinkelsesstil, N i [0..3]\n" +"* ffN sideskift-forsinkelsesstil, N i [0..1]\n" +"* nlN linjeskift-forsinkelsesstil, N i [0..1]\n" + +#: src/stty.c:608 +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" +"* [-]ocrnl oversæt vognretur til linjeskift\n" +"* [-]ofdel brug slettetegn til fyld i stedet for nul-tegn\n" +"* [-]ofill brug fyld-tegn (padding) i stedet for forsinkelses-timing\n" +"* [-]olcuc oversæt små bogstaver til store\n" +"* [-]onlcr oversæt linjeskift til vognretur-linjeskift\n" +"* [-]onlret linjeskift foretager vognretur\n" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" +"* [-]onocr skriv ikke vognreturer i første kolonne\n" +" [-]opost efterbehandl uddata\n" +"* tabN vandret tab-forsinkelsesstil, N i [0..3]\n" +"* tabs samme som tab0\n" +"* -tabs samme som tab3\n" +"* vtN lodret tab-forsinkelsesstil, N i [0..1]\n" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" +"\n" +"Lokale indstillinger:\n" +" [-]crterase ekko slettetegn som baglæns-mellemrum-baglæns\n" +" * crtkill dræb hele linjen ved at bruge indstillingerne \n" +" for echoprt og echoe\n" +" * -crtkill dræb hele linjen ved at bruge indstillingerne\n" +" for echoctl og echok\n" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" +" * [-]ctlecho ekko kontroltegn med hatnotation (\"^c\")\n" +" [-]echo ekko indtastede tegn\n" +" * [-]echoctl samme som [-]ctlecho\n" +" [-]echoe samme som [-]crterase\n" +" [-]echok ekko et linjeskift efter et dræbertegn\n" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" +" * [-]echoke samme som [-]crtkill\n" +" [-]echonl ekko linjeskift selv om ingen andre tegn ekkoes\n" +" * [-]echoprt ekko slettede tegn baglæns, mellem \"\\\" og \"/\"\n" +" [-]icanon aktivér specialtegnene erase, kill, werase og rprnt\n" +" [-]iexten aktivér specialtegn som ikke er POSIX-tegn\n" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" +" [-]isig aktivér specialtegn for afbrydning, afslut og hvile\n" +" [-]noflsh deaktivér rensning efter afbrydningssignaler og \n" +" specialsluttegn\n" +" * [-]prterase samme som [-]echoprt\n" +" * [-]tostop stop baggrundsjob som forsøger at skrive til terminalen\n" +" * [-]xcase sammen med icanon, brug \"\\\" som kontrolsekvens\n" +" for store bogstaver\n" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" +"\n" +"Kombinationsindstillinger:\n" +" * [-]LCASE samme som [-]lcase\n" +" cbreak samme som -icanon\n" +" -cbreak samme som icanon\n" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" +" cooked samme som at sætte brkint ignpar istrip icrnl ixon oppst " +"isig icanon,\n" +" filsluttegn og linjesluttegn til deres standardværdier\n" +" -cooked samme som raw\n" +" crt samme som echoe echoctl echoke\n" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" +" dec samme som echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq samme som [-]ixany\n" +" ek slette- og dræbertegn sættes til deres standardværdier\n" +" evenp samme som parenb -parodd cs7\n" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" +" -evenp samme som -parenb cs8\n" +" * [-]lcase samme som xcase iuclc olcuc\n" +" litout samme som -parenb -istrip -opost cs8\n" +" -litout samme som parenb istrip opost cs7\n" +" nl samme som -icrnl -onlcr\n" +" -nl samme som icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" +" oddp samme som parenb parodd cs7\n" +" -oddp samme som -parenb cs8\n" +" [-]parity samme som [-]evenp\n" +" pass8 samme som -parenb -istrip cs8\n" +" -pass8 samme som parenb istrip cs7\n" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" +" raw samme som -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw samme som cooked\n" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" +" sane samme som cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, \n" +" alle specialtegn sættes til deres standardværdier.\n" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" +"\n" +"Håndtér tty-linjen koblet til standard-ind. Uden argumenter, udskriv\n" +"bitrate, linjedisciplin og afvigelse fra 'stty sane'. I indstillinger tages\n" +"TEGN bogstaveligt eller kodet som i ^c, 0x37, 0177 eller 127; specielle\n" +"værdier, ^- eller undef bruges for at deaktivere specielle tegn\n" + +#: src/stty.c:787 +msgid "only one device may be specified" +msgstr "kun en enhed kan angives" + +#: src/stty.c:882 +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "flagene for fyldig og stty-læsbar udskrift udelukker hinanden" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "når en stil for uddata angives kan tilstande ikke sættes" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "%s: kunne ikke nulstille ikke-blokerende tilstand" + +#: src/stty.c:957 src/stty.c:1064 +#, c-format +msgid "invalid argument `%s'" +msgstr "ugyldigt argument '%s'" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, c-format +msgid "missing argument to `%s'" +msgstr "manglende argument til '%s'" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "%s: ikke i stand til at udføre alle forespurgte operationer" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "new_mode: tilstand\n" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "%s: ingen information for denne enhed" + +#: src/stty.c:1944 +#, c-format +msgid "invalid integer argument `%s'" +msgstr "ugyldig heltalsargument '%s'" + +#: src/su.c:289 +msgid "Password:" +msgstr "Adgangskode:" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "getpass: kan ikke åbne /dev/tty" + +#: src/su.c:350 +msgid "cannot set groups" +msgstr "kan ikke sætte grupper" + +#: src/su.c:354 +msgid "cannot set group id" +msgstr "kan ikke sætte gruppe-id" + +#: src/su.c:356 +msgid "cannot set user id" +msgstr "kan ikke sætte bruger-id" + +#: src/su.c:437 +#, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "Brug: %s [FLAG]... [-] [BRUGER [ARG]...]\n" + +#: src/su.c:438 +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" +"Ændr den effektive bruger-id og gruppe-id til BRUGER.\n" +"\n" +" -, -l, --login gør skallen til en login-skal\n" +" -c, --command=KOMMANDO send en enkelt kommando til skallen med -c\n" +" -f, --fast send -f til skallen (for csh eller tcsh)\n" +" -m, --preserve-environment nulstil ikke miljøvariable\n" +" -s, --shell=SHELL kør SHELL hvis /etc/shells tillader det\n" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" +"\n" +"En enkelt - implicerer -l. Hvis BRUGER ikke er angivet, antag root.\n" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "bruger %s eksisterer ikke" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "forkert adgangskode" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "bruger begrænset skal %s" + +#: src/su.c:580 +#, c-format +msgid "warning: cannot change directory to %s" +msgstr "advarsel: kan ikke skifte katalog til %s" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "Kayvan Aghaiepour og David MacKenzie" + +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" +"Udskriv kontrolsum og blok-antal for hver FIL.\n" +"\n" +" -r brug BSD-sum-algoritme, brug 1K-blokke\n" +" -s, --sysv brug System V-sum-algoritme, brug 512 byte-blokke\n" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" +"Gem ændrede blokke til disk, opdatér superblokken.\n" +"\n" + +#: src/sync.c:70 src/tty.c:112 +msgid "ignoring all arguments" +msgstr "ignorerer alle argumenter" + +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr " --help vis denne hjælpetekst og afslut\n" + +#: src/sys2.h:494 +msgid " --version output version information and exit\n" +msgstr " --version vis versionsinformation og afslut\n" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "Jay Lepreau og David MacKenzie" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Skriv hver fil til standard-uddata, sidste linje først.\n" +"Hvis ingen FIL er angivet, eller FIL er -, læses fra standard-ind.\n" +"\n" + +#: src/tac.c:139 +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" +" -b, --before indsæt separator før i stedet for efter\n" +" -r, --regex fortolk separatoren som et regulært udtryk\n" +" -s, --separator=STRENG brug STRENG som separator i stedet for " +"linjeskift\n" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "stdind: læsefejl" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "separatoren kan ikke være tom" + +#: src/tail.c:49 +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "Paul Rubin, David MacKenzie, Ian Lance Taylor og Jim Meyering" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Skriv de sidste %d linjer af hver FIL til standard-ud.\n" +"Med mere end en FIL angivet, udskriv filnavnet før hver FIL.\n" +"Hvis ingen FIL er angivet, eller FIL er -, læses fra standard-ind.\n" +"\n" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" +" --retry bliv ved med at forsøge at åbne en fil selvom " +"den\n" +" er utilgængelig når 'tail' starter, eller hvis\n" +" den bliver utilgængelig senere - kun nyttigt " +"med -f\n" +" -c, --bytes=N udskriv de sidste N byte\n" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" +" -f, --follow[={navn|deskriptor}] udskriv tilføjede data efterhånden som " +"filen vokser\n" +" -f, --follow, og --follow=deskriptor er\n" +" det samme\n" +" -F det samme som --follow=navn --retry\n" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" +" -n, --lines=N udskriv de sidste N linjer i stedet for de sidste " +"%d\n" +" --max-unchanged-stats=N\n" +" med --follow=navn, genåbn en FIL som ikke har\n" +" ændret størrelse efter N (normalt %d) " +"iterationer\n" +" for at se om den er blevet afrefereret eller " +"omdøbt\n" +" (dette er det normale for roterede logfiler)\n" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" +" --pid=PID med -f, terminér efter proces med ID, PID er død\n" +" -q, --quiet, --silent udskriv ikke filnavne\n" +" -s, --sleep-interval=S med -f, sov cirka S sekunder mellem hvert " +"gennemløb,\n" +" (normalt 1,0 sekund)\n" +" -v, --verbose udskriv altid filnavnet i toptekster\n" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" +"\n" +"Hvis det første tegn i N (antal byte eller linjer) er et '+',\n" +"så udskriv fra N'te element fra starten af hver fil, ellers udskriv de\n" +"sidste N elementer i filen. N kan have en multiplikatorendelse:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" +"Med --follow (-f) vil 'tail' som standard følge fildeskriptoren, hvilket\n" +"betyder at selv om en 'tail'-et fil omdøbes, vil 'tail' fortsætte med at " +"følge\n" +"dens slutning. " + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" +"Den normale opførsel er ikke ønskværdig når du virkelig ønsker at\n" +"følge det faktiske navn på filen og ikke fildeskriptoren (fx ved " +"logrotation).\n" +"Brug --follow=navn i dette tilfælde. Dette får 'tail' til at følge den\n" +"angivne fil ved at genåbne den med mellemrum for at se om den er blevet " +"fjernet og\n" +"genskabt af et andet program.\n" + +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "lukker %s (fd=%d)" + +#: src/tail.c:391 +#, c-format +msgid "%s: cannot seek to offset %s" +msgstr "%s: kan ikke søge til afsæt %s" + +#: src/tail.c:395 +#, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "%s: kan ikke søge til relativt afsæt %s" + +#: src/tail.c:400 +#, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "%s: kan ikke søge til afsæt relativt til slutningen %s" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "'%s' er blevet utilgængelig" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "" +"'%s' er blevet erstattet af en fil der ikke kan laves 'tail' på; giver op " +"for dette navn" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "'%s' er blevet tilgængelig" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "'%s' er blevet oprettet. Følger efter slutningen af ny fil" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "'%s' er blevet erstattet. Følger efter slutningen af ny fil" + +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "%s: fil trunkeret" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "ingen filer tilbage" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "" +"%s: kan ikke følge slutningen på denne filtype; giver op for dette navn" + +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "%c: ugyldig suffiks-tegn i forældet flag" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"for mange argumenter; Når 'tail's forældede flag-syntaks bruges (%s)\n" +"kan det ikke være mere end et filargument. Brug det tilsvarende -n eller\n" +"-c-flag i stedet." + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"Advarsel: det er ikke portabelt at bruge to eller flere filargumenter med\n" +"tails gamle flagsyntaks (%s). Brug det tilsvarende -n eller -c-\n" +"flaget i stedet." + +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "'%s'-flaget er forældet; brug '%s-%c %.*s'" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "%s er større end den maksimale filstørrelse på dette system" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "" +"%s: ugyldig maksimum antal af uændrede resultater af kald til stat() mellem " +"kald til open()" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "%s: ugyldig maksimum antal af efterfølgende ændringer i størrelse" + +#: src/tail.c:1534 +#, c-format +msgid "%s: invalid PID" +msgstr "%s: ugyldig PID" + +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: ugyldigt antal sekunder" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "advarsel: --retry er kun brugbart ved følgning af navn" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "advarsel: PID ignoreret; --pid=PID er kun brugbart ved følgning" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "advarsel: --pid=PID er ikke understøttet på dette system" + +#: src/tee.c:33 +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "Mike Parker, Richard M. Stallman og David MacKenzie" + +#: src/tee.c:64 +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" +"Kopier standard-ind til hver FIL og til standard-ud.\n" +"\n" +" -a, --append tilføj til de angivne FILer, overskriv ikke\n" +" -i, --ignore-interrrupts ignorer afbrydningssignaler\n" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "argument forventet\n" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "forventet heltalsudtryk %s\n" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "')' forventet\n" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "')' forventet, fandt %s\n" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "%s: unær operator forventet\n" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "%s: binær operator forventet\n" + +#: src/test.c:424 +msgid "before -lt" +msgstr "før -lt" + +#: src/test.c:432 +msgid "after -lt" +msgstr "efter -lt" + +#: src/test.c:446 +msgid "before -le" +msgstr "før -le" + +#: src/test.c:453 +msgid "after -le" +msgstr "efter -le" + +#: src/test.c:469 +msgid "before -gt" +msgstr "før -gt" + +#: src/test.c:476 +msgid "after -gt" +msgstr "efter -gt" + +#: src/test.c:490 +msgid "before -ge" +msgstr "før -ge" + +#: src/test.c:497 +msgid "after -ge" +msgstr "efter -ge" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "-nt accepterer ikke -l\n" + +#: src/test.c:526 +msgid "before -ne" +msgstr "før -ne" + +#: src/test.c:533 +msgid "after -ne" +msgstr "efter -ne" + +#: src/test.c:549 +msgid "before -eq" +msgstr "før -eq" + +#: src/test.c:556 +msgid "after -eq" +msgstr "efter -eq" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "-ef accepterer ikke -l\n" + +#: src/test.c:586 +msgid "-ot does not accept -l\n" +msgstr "-ot accepterer ikke -l\n" + +#: src/test.c:593 +msgid "unknown binary operator" +msgstr "ukendt binær operator" + +#: src/test.c:781 +msgid "after -t" +msgstr "efter -t" + +#: src/test.c:979 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"Brug: %s UDTRYK\n" +" eller: [ UDTRYK ]\n" +" eller: %s FLAG\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" +"Returnér med en statusværdi som bestemmes af UDTRYK.\n" +"\n" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" +"\n" +"UDTRYK er sandt eller falsk og sætter returværdien. Det er én af:\n" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" +"\n" +" ( UDTRYK ) UDTRYK er sandt\n" +" ! UDTRYK UDTRYK er falsk\n" +" UDTRYK1 -a UDTRYK2 både UDTRYK1 og UDTRYK2 er sande\n" +" UDTRYK1 -o UDTRYK2 mindst ét af udtrykkene er sande\n" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" +"\n" +" [-n] STRENG længden af STRENG er forskellig fra nul\n" +" -z STRENG længden af STRENG er nul\n" +" STRENG1 = STRENG2 strengene er ens\n" +" STRENG1 != STRENG2 strengene er forskellige\n" + +#: src/test.c:1009 +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" +"\n" +" HELTAL1 -eq HELTAL2 HELTAL1 er lig med HELTAL2\n" +" HELTAL1 -ge HELTAL2 HELTAL1 er større end eller lig med HELTAL2\n" +" HELTAL1 -gt HELTAL2 HELTAL1 er større end HELTAL2\n" +" HELTAL1 -le HELTAL2 HELTAL1 er mindre end eller lig med HELTAL2\n" +" HELTAL1 -lt HELTAL2 HELTAL1 er mindre end HELTAL2\n" +" HELTAL1 -ne HELTAL2 HELTAL1 er forskellig fra HELTAL2\n" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" +"\n" +" FIL1 -ef FIL2 FIL1 og FIL2 har samme enheds- og inodenummer\n" +" FIL1 -nt FIL2 FIL1 er nyere (ændringstidspunkt) end FIL2\n" +" FIL1 -ot FIL2 FIL1 er ældre end FIL2\n" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" +"\n" +" -b FIL FIL findes og er en specialfil for blokadgang\n" +" -c FIL FIL findes og er en specialfil for tegnadgang\n" +" -d FIL FIL findes og er et katalog\n" +" -e FIL FIL findes\n" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" +" -f FIL FIL findes og er en almindelig fil\n" +" -g FIL FIL findes og har sæt-gruppe-ID-bitten sat\n" +" -h FIL FIL findes og er en symbolsk lænke (samme som -L)\n" +" -G FIL FIL findes og ejes af den effektiv gruppeidentitet\n" +" -k FIL FIL findes med klæbrigbitten sat\n" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" +" -L FIL FIL findes og er en symbolsk lænke (samme som -h)\n" +" -O FIL FIL findes og ejes af den effektive brugeridentitet\n" +" -p FIL FIL findes og er en navngivet datakanal\n" +" -r FIL FIL findes og er læsbar\n" +" -s FIL FIL findes og har størrelse større end nul\n" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" +" -S FIL FIL findes og er en sokkel\n" +" -t [FI] filidentifikator FI (standard-ud hvis intet angives) er åbnet " +"på en\n" +" terminal\n" +" -u FIL FIL findes og dens set-user-ID-bit er sat\n" +" -w FIL FIL findes og er skrivbar\n" +" -x FIL FIL findes og kan udføres\n" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" +"\n" +"Vær opmærksom på at paranteser skal være beskyttet (f.eks. med omvendte " +"skråstreger)\n" +"for skaller. HELTAL kan også være -l STRENG, som evalueres til længden\n" +"af STRENG'en.\n" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "FIXMIG: ksb og mjb" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "manglende ']'\n" + +#: src/test.c:1125 +msgid "too many arguments\n" +msgstr "for mange argumenter\n" + +#: src/touch.c:39 +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie og Randy Smith" + +#: src/touch.c:164 src/touch.c:179 +#, c-format +msgid "creating %s" +msgstr "opretter %s" + +#: src/touch.c:222 +#, c-format +msgid "cannot touch %s" +msgstr "kan ikke røre %s" + +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "sætter tider for %s" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" +"Opdatér læsnings- og ændringstider for FIL(er) til nuværende tid og dato.\n" +"\n" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" +" -a ændr kun læsningstidspunkt\n" +" -c opret ikke nogen filer\n" +" -d, --date=STRENG læs STRENG og brug det i stedet for nuværende " +"klokkeslæt\n" +" -f (ignoreret)\n" +" -m ændr kun ændringstidspunkt\n" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" +" -r, --reference=FIL brug denne fils tider i stedet for nuværende\n" +" klokkeslæt\n" +" -t STAMP brug MMDDttmm[[HH]ÅÅ][.ss] i stedet for nuværende\n" +" klokkeslæt\n" +" --time=ORD ORD er tidsformat: access, atime, use (ligesom -a)\n" +" mtime, modify (ligesom -m)\n" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" +"\n" +"Bemærk at -d og -t flagene tager forskellige tidspunkts- og dato-formater.\n" + +#: src/touch.c:311 src/touch.c:331 +#, c-format +msgid "invalid date format %s" +msgstr "ugyldigt datoformat %s" + +#: src/touch.c:355 +msgid "cannot specify times from more than one source" +msgstr "kan ikke angive tidspunkter fra mere end én kilde" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "" +"advarsel: 'touch %s' er forældet; brug 'touch -t %04d%02d%02d%02d%02d.%02d'" + +#: src/touch.c:399 +msgid "file arguments missing" +msgstr "filargumenter mangler" + +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "Brug: %s [OPTION]... MÆNGDE1 [MÆNGDE2]\n" + +#: src/tr.c:331 +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" +"Oversæt, klem sammen og/eller fjern tegn fra standard-ind,\n" +"udskriv til standard-ud.\n" +"\n" +" -c, --complement komplementér først MÆNGDE1\n" +" -d, --delete slet tegn i MÆNGDE1, oversæt ikke\n" +" -s, --squeeze-repeats erstat hver række af gentagne inddatategn som er\n" +" listet i MÆNGDE1 med et enkelt af dette tegn\n" +" -t, --truncate-set1 forkort først MÆNGDE1 til længden af MÆNGDE2\n" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" +"\n" +"MÆNGDE er angivet med strenge af tegn. De fleste tegn står for sig\n" +"selv. Følgende sekvenser tolkes specielt:\n" +"\n" +" \\NNN tegn med oktalværdi NNN (1 til 3 oktale cifre)\n" +" \\\\ omvendt skråstreg\n" +" \\a hørbar BEL\n" +" \\b baktegn\n" +" \\f sideskift (FF)\n" +" \\n linjeskift (LF)\n" +" \\r vognretur (CR)\n" +" \\t vandret tabulator\n" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" +" \\v lodret tabulator\n" +" TEGN1-TEGN2 alle tegn fra TEGN1 til TEGN2, stigende\n" +" [TEGN*] i MÆNGDE2, kopier af TEGN indtil samme længde til MÆNGDE1\n" +" [TEGN*ANTAL] ANTAL kopier af TEGN, ANTAL er oktal, hvis det begynder " +"med 0\n" +" [:alnum:] alle bogstaver og tal\n" +" [:alpha:] alle bogstaver\n" +" [:blank:] alle vandrette blanke tegn\n" +" [:cntrl:] alle kontroltegn\n" +" [:digit:] alle cifre\n" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" +" [:graph:] alle skrivbare tegn, undtaget blanke tegn\n" +" [:lower:] alle små bogstaver\n" +" [:print:] alle skrivbare tegn, inkluderet blanke tegn\n" +" [:punct:] alle tegnsætningstegn\n" +" [:space:] alle vandrette og lodrette blanke tegn\n" +" [:upper:] alle store bogstaver\n" +" [:xdigit:] alle hexadecimale cifre\n" +" [=TEGN=] alle tegn som er lig TEGN\n" + +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" +"\n" +"Oversættelse sker hvis -d ikke er givet, og både MÆNGDE1 og MÆNGDE2 er der.\n" +"-t kan kun blive brugt ved oversættelse. MÆNGDE2 bliver udvidet til længden " +"af\n" +"MÆNGDE1 ved at repetere dets sidste tegn om nødvendigt. " + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" +"Tegn til overs i \n" +"MÆNGDE2 ignoreres. Kun [:lower:] og [:upper:] er garanteret at ekspandere i\n" +"stigende rækkefølge; brugt i MÆNGDE2 ved oversættelse kan de kun bruges i " +"par\n" +"for at angive oversættelse fra store/små til små/store bogstaver. " + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" +"-s bruger MÆNGDE1 hvis der ikke er oversættelse eller sletning; ellers " +"bruger \n" +"sammenklemning MÆNGDE2 og sker efter oversættelse eller sletning.\n" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" +"advarsel: den flertydige oktal-beskyttelse \\%c%c%c bliver tolket som \n" +"\t2-byte-sekvensen \\0%c%c, '%c'" + +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "ugyldig omvendt skråstreg-beskyttelse ved slutningen af streng" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "ugyldig omvendt skråstreg-beskyttelse '\\%c'" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "række-slutpunkt i '%s-%s' er i omvendt sorteringsrækkefølge" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "ugyldig gentagelsestæller '%s' i [c*n]-konstruktion" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "mangler navn på tegnklasse '[::]'" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "mangler tegn for ækvivalensklasse '[==]'" + +#: src/tr.c:1025 +#, c-format +msgid "invalid character class `%s'" +msgstr "ugyldig tegnklasse '%s'" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "%s: ækvivalensklasseoperanden skal være et enkelt tegn" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "gentagelseskonstruktionen [c*] kan ikke optræde i streng1" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "kun en [c*] gentagelseskonstruktion kan optræde i streng2" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "[=c=]-udtryk kan ikke optræde i streng2 under oversættelse" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "når mængde1 ikke bliver forkortet, kan streng2 ikke være tom" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" +"når det oversættes med komplementerede tegnklasser\n" +"skal streng2 mappe alle tegn i domænet til én" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" +"ved oversættelse er de eneste tegnklasser som kan være i streng2\n" +"'upper' og 'lower'" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "[c*]-konstruktionen kan kun optræde i streng2 ved oversættelse" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "to strenge skal være givet ved oversættelse" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "" +"to strenge skal være givet ved både sletning og sammenklemning af gentagelser" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" +"kun én streng kan opgives når der slettes uden sammenklemning af gentagelser" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "mindst en streng skal være givet ved sammenklemning af gentagelser" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "fejlplaceret [:upper:]- og/eller [:lower:]-konstruktion" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" +"ugyldig identitetsafbildning; ved oversættelse skal evt. [:lower:]- eller\n" +"[:upper:]-konstruktioner i streng1 være placeret i henhold til en\n" +"tilsvarende konstruktion (henholdsvis [:upper:] eller [:lower:]) i\n" +"streng2" + +#: src/true.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Brug: %s [ignorerede kommandolinje-argumenter]\n" +" eller: %s FLAG\n" +"Afslut med en statuskode der angiver succes.\n" +"\n" +"Disse navne på flag kan ikke forkortes.\n" +"\n" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Brug: %s [FLAG] [FIL]\n" +"Skriv en fuldstændig sorteret liste konsistent med den delvise sortering\n" +"i FIL. Hvis ingen FIL eller hvis FIL er -, læses fra standard-ind.\n" +"\n" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "%s: inddata indeholder en løkke:" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "kun ét argument kan angives" + +#: src/tty.c:63 +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" +"Udskriv filnavnet for terminalen som er koblet til standard-ind.\n" +"\n" +" -s, --silent, --quiet udskriv ikke noget, returnér kun en " +"afslutningsstatus\n" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "ikke en tty" + +#: src/uname.c:111 +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" +"Udskriv bestemt systeminformation. Hvis ingen FLAG blev angivet bruges -s.\n" +"\n" +" -a, --all udskriv al information, i følgende rækkefølge:\n" +" -s, --kernel-name udskriv kernens navn\n" +" -n, --nodename udskriv maskinens netværksnavn\n" +" -r, --kernel-release udskriv kernens udgave\n" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" +" -v, --kernel-version udskriv kernens version\n" +" -m, --machine udskriv maskintypen\n" +" -p, --processor udskriv processortypen\n" +" -i, --hardware-platform udskriv maskinelplatform\n" +" -o, --operating-system udskriv operativsystemet\n" + +#: src/uname.c:226 +msgid "cannot get system name" +msgstr "kan ikke finde ud af systemnavnet" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Konvertér mellemrum i hver FIL til tabulatorer, med uddata til standard-ud.\n" +"Uden en FIL, eller når FIL er -, læses standard-ind.\n" + +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" +" -a, --all konvertér alle blanke, i stedet for initielle blanke\n" +" --first-only konvertér kun indledende sekvenser af blanke " +"(tilsidesætter -a)\n" +" -t, --tabs=ANTAL hav tabulatorer ANTAL tegn fra hinanden i stedet for " +"8\n" +" -t, --tabs=LISTE brug en kommasepareret liste med eksplicitte " +"tabulatorpositioner\n" + +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "'-LIST' flaget er forældet; brug '--first-only -t LIST'" + +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "Brug: %s [FLAG]... [INDDATA [UDDATA]]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" +"Fjern ekstra identiske efterfølgende linjer fra IND\n" +"(eller standard-ind), og skriv til UD (eller standard-ud).\n" +"\n" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" +" -c, --count begynd linjer med antal forekomster\n" +" -d, --repeated udskriv kun linjer der er flere af\n" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" +" -D, --all-repeated[=adskillelses-metode] skriv alle linjer der er flere " +"af\n" +" adskillelses-metode={none(forvalgt),prepend," +"separate)}\n" +" Adskillelse gøres med blanke linjer.\n" +" -f, --skip-fields=N sammenlign ikke de første N felter\n" +" -i, --ignore-case ignorér forskelle med store og små bogstaver\n" +" -s, --skip-chars=N sammenlign ikke de første N tegn\n" +" -u, --unique udskriv kun unikke linjer\n" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr " -w, --check-chars=N sammenlign ikke mere end N tegn per linje\n" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" +"\n" +"Et felt er en række blanke tegn, derefter andre tegn. Felter hoppes over før " +"tegn.\n" + +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "fejl ved læsning af %s" + +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "fejl ved skrivning til %s" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "ekstra operand '%s'" + +#: src/uniq.c:473 src/uniq.c:498 +msgid "invalid number of fields to skip" +msgstr "ugyldigt antal felter at hoppe over" + +#: src/uniq.c:507 +msgid "invalid number of bytes to skip" +msgstr "ugyldigt antal byte at hoppe over" + +#: src/uniq.c:516 +msgid "invalid number of bytes to compare" +msgstr "ugyldigt antal byte at sammenligne" + +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "'-%lu'-flaget er forældet; brug '-f %lu'" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "" +"skrivning af alle duplikerede linjer *og* gentagelsesantal giver ikke mening" + +#: src/unlink.c:51 +#, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"Brug: %s FIL\n" +" eller: %s FLAG\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" +"Kald funktionen unlink for at fjerne angivet FIL.\n" +"\n" + +#: src/unlink.c:99 +#, c-format +msgid "cannot unlink %s" +msgstr "kan ikke aflænke %s" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "kunne ikke finde ud af boot-tid" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr " %2d:%02d%s oppe " + +#: src/uptime.c:140 +msgid "am" +msgstr "am" + +#: src/uptime.c:140 +msgid "pm" +msgstr "pm" + +#: src/uptime.c:142 +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "dage" +msgstr[1] "dag" + +#: src/uptime.c:144 +#, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "brugere" +msgstr[1] "bruger" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr ", belastningennemsnit: %.2f" + +#: src/uptime.c:191 src/users.c:118 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "Brug: %s [FLAG]... [ FIL ]\n" + +#: src/uptime.c:192 +#, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Udskriv den aktuelle tid, hvor længe systemet har været oppe,\n" +"antal brugere på systemet, og det gennemsnitlige antal opgaver\n" +"i kørselskøen for de seneste 1, 5 og 15 minutter.\n" +"Hvis FIL ikke er angivet, brug da %s. %s som FIL er almindeligt.\n" +"\n" + +#: src/users.c:35 +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "Joseph Arceneaux og David MacKenzie" + +#: src/users.c:119 +#, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Udskriv hvem som for øjeblikket er logget ind ifølge FIL.\n" +"Hvis FIL ikke er angivet bruges %s. %s som FIL er almindeligt.\n" +"\n" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "Paul Rubin og David MacKenzie" + +#: src/wc.c:129 +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" +"Udskriv antal oktetter, ord og linjeskift for hver FIL, og en total-linje\n" +"hvis mere end én FIL er angivet. Hvis ingen FIL er angivet,\n" +"eller FIL er -, læses fra standard-ind.\n" +" -c, --bytes udskriv antal oktetter\n" +" -m, --bytes udskriv antal tegn\n" +" -l, --lines udskriv antal linjeskift.\n" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" +" -L, --max-line-length udskriv længden af den længste linje\n" +" -w, --words udskriv antal ord\n" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "Joseph Arceneaux, David MacKenzie og Michael Stone" + +#: src/who.c:223 +msgid " old " +msgstr " gammel " + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "id=" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "term=" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "afslut=" + +#: src/who.c:446 +msgid "clock change" +msgstr "tidsændring" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "kørselsniveau" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "sidste=" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" +"\n" +"antal brugere=%u\n" + +#: src/who.c:498 +msgid "NAME" +msgstr "NAVN" + +#: src/who.c:498 +msgid "LINE" +msgstr "LINJE" + +#: src/who.c:498 +msgid "TIME" +msgstr "TID" + +#: src/who.c:498 +msgid "IDLE" +msgstr "INAKTIV" + +#: src/who.c:498 +msgid "PID" +msgstr "PID" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "KOMMENTAR" + +#: src/who.c:499 +msgid "EXIT" +msgstr "AFSLUT" + +#: src/who.c:574 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "Brug: %s [FLAG]... [ FIL | ARG1 ARG2 ]\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" +"\n" +" -a, --all samme som -b -d --login -p -r -t -T -u\n" +" -b, --boot tid for seneste systemopstart\n" +" -d, --dead udskriv døde processer\n" +" -H, --heading udskriv linje med kolonneoverskrifter\n" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" +" -i, --idle tilføj brugerens inaktive tid som TIMER:MINUTTER,\n" +" . eller \"længe\" (forældet, brug -u)\n" +" --login udskriv indlogningsprocesser (det samme som SUS -l)\n" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" +" -l, --lookup forsøg at finde værtsnavne med hjælp af DNS\n" +" (-l forældet, brug --lookup)\n" +" -m kun værtsnavn og brugernavn associeret med standard-ind\n" +" -p, --process udskriv aktive processer startede af init\n" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" +" -q, --count alle indlogningsnavne og antal indloggede brugere\n" +" -r, --runleve skriv aktuelt kørselsniveau\n" +" -s, --short skriv kun navn, linje og tid (standard)\n" +" -t, --time skriv seneste ændring af systemklokken\n" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" +" -T, -w, --mesg tilføj brugeres meddelelsestatus som +, - eller ?\n" +" -u, --users list indloggede brugere\n" +" --message samme som -T\n" +" --writeable samme som -T\n" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" +"\n" +"Hvis FIL ikke er angivet, brug %s. %s som FIL er almindeligt.\n" +"Hvis ARG1 ARG2 er angivet, antages -m: \"am i\" eller \"mom likes\" er " +"almindeligt.\n" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "Advarsel: -i vil blive fjernet i en fremtidig udgave; brug -u i stedet" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" +"Advarsel: betydningen af \"-l\" vil blive ændret i en fremtidig udgave for " +"at stemme med POSIX" + +#: src/whoami.c:53 +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" +"Udskriv brugernavnet tilknyttet den nuværende effektive brugeridentitet.\n" +"Samme som id -un.\n" +"\n" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "%s: kan ikke finde brugernavnet for UID %u\n" + +#: src/yes.c:49 +#, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"Brug: %s [STRENG]...\n" +" eller: %s FLAG\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" +"Skriv gentagne gange en linje med alle specificerede STRENG'e, eller \"y\"\n" +"\n" + +#~ msgid "\\%c: invalid escape" +#~ msgstr "\\%c: ugyldig beskyttelse" diff --git a/src/apps/bin/coreutils-5.0/po/de.gmo b/src/apps/bin/coreutils-5.0/po/de.gmo new file mode 100644 index 0000000000..cea2fbf759 Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/de.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/de.po b/src/apps/bin/coreutils-5.0/po/de.po new file mode 100644 index 0000000000..af7630b4f9 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/de.po @@ -0,0 +1,8942 @@ +# German translation of coreutils messages. +# Copyright © 1996, 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. +# This file is distributed under the same license as the coreutils package. +# Karl Eichwalder , 2001-2002. +# Lutz Behnke , 1996, 1997, 1998, 1999, 2000, 2001. +# Michael Schmidt , 1996, 1997, 1998, 1999, 2000. +# Michael Piefel , 2001-2002. +# +# The first 200+ lines are translations for the lib directory. This is very +# similar or even identical to other tools' lib directories. Therefore take +# care to have consistent translation. I have made this identical to the +# translation in sh-utils and fileutils. -MPi +# PS: This file now contains sh-utils and fileutils, but the lib dir is in +# other projects, too. +# +# TAB: spell it out ("Tabulatoren"). -ke- +# Don't use obscure abbreviations, please. -ke- +# No hyphenation, please. -ke- +# +# space: Leerzeichen oder Leerschritt +# +# Check: +# idle - untätig +# idle: untätig, ruhig, »idle«, Leerlauf +# user idle time: Untätigkeitszeit des Benutzers, Ruhezeit, Idle-Time, +# Benutzer im Leerlauf +# digit - Zahl, Ziffer, Nummer, Stelle +# logged in - angemeldet, eingeloggt +# requested - gewünscht? +# +# Some comments on translations used in oder to ensure persistence: +# +# symbolic links: symbolische Verknüpfungen +# hard links: harte Verknüpfungen +# backup: Sicherung +# mount: einhängen +# +msgid "" +msgstr "" +"Project-Id-Version: GNU coreutils 4.5.8\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2003-02-24 10:51:09+0100\n" +"Last-Translator: Michael Piefel \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "ungültiges Argument %s für %s" + +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "mehrdeutiges Argument %s für %s" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "Gültige Argumente sind:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "Schreibfehler" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "Unbekannter Systemfehler" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "reguläre leere Datei" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "reguläre Datei" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "Verzeichnis" + +#: lib/file-type.c:48 +msgid "block special file" +msgstr "blockorientierte Spezialdatei" + +#: lib/file-type.c:51 +msgid "character special file" +msgstr "zeichenorientierte Spezialdatei" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "FIFO" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "symbolische Verknüpfung" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "Socket" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "Nachrichtenwarteschlange" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "Semaphore" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "Objekt gemeinsamen Speichers" + +#: lib/file-type.c:71 +msgid "weird file" +msgstr "merkwürdige Datei" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: Option »%s« ist mehrdeutig\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: Option »--%s« erlaubt kein Argument\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: Option »%c%s« erlaubt kein Argument\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: Option »%s« erfordert ein Argument\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: unbekannte Option »--%s«\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: unbekannte Option »%c%s«\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: ungültige Option -- %c\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: ungültige Option -- %c\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: Option erfordert ein Argument -- %c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: Option »-W %s« ist mehrdeutig\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: Option »-W %s« erlaubt kein Argument\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "Blockgröße" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "kann Verzeichnis %s nicht anlegen" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%s existiert, ist aber kein Verzeichnis" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "kann Besitzer und/oder Gruppe von %s nicht ändern." + +#: lib/makepath.c:338 +#, c-format +msgid "cannot chdir to directory %s" +msgstr "kann nicht in Verzeichnis %s wechseln" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "kann Zugriffsrechte von %s nicht ändern" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "Speicher ausgeschöpft" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "»" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "«" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[jJyY]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[nN]" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "iconv-Funktion nicht benutzbar" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "iconv-Funktion nicht verfügbar" + +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "Zeichen außerhalb erlaubter Grenzen" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "kann U+%04X nicht in lokalen Zeichensatz konvertieren" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "kann U+%04X nicht in lokalen Zeichensatz konvertieren: %s" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "ungültiger Benutzer" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "ungültige Gruppe" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "kann die Login-Gruppe einer numerischen UID nicht ermitteln" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "kann nicht sowohl Benutzer als auch Gruppe weglassen" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "Geschrieben von %s.\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +"Dies ist freie Software; die Kopierbedingungen stehen in den Quellen. Es\n" +"gibt keine Garantie; auch nicht für VERKAUFBARKEIT oder FÜR SPEZIELLE " +"ZWECKE.\n" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "Zeichenkettenvergleich fehlgeschlagen" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "Setzen Sie LC_ALL=C, um das Problem zu umgehen." + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "Die verglichenen Zeichenketten waren %s und %s." + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "»%s --help« gibt weitere Informationen.\n" + +#: src/basename.c:54 +#, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"Aufruf: %s NAME [SUFFIX]\n" +" oder: %s OPTION\n" + +#: src/basename.c:59 +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" +"Den NAMEn ohne führende Verzeichnisse ausgeben.\n" +"Wenn angegeben, auch SUFFIX entfernen.\n" +"\n" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"Melden Sie Fehler (auf Englisch, mit LC_ALL=C) an <%s>.\n" + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "zu wenige Argumente" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "zu viele Argumente" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "Torbjörn Granlund und Richard M. Stallman" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "Aufruf: %s [OPTION] [DATEI]...\n" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" +"DATEI(en) oder Standardeingabe auf Standardausgabe verketten. \n" +"\n" +" -A, --show-all äquivalent zu -vET\n" +" -b, --number-nonblank nichtleere Ausgabezeilen nummerieren\n" +" -e äquivalent zu -vE\n" +" -E, --show-ends $ am Ende jeder Zeile ausgeben\n" +" -n, --number alle Ausgabezeilen nummerieren\n" +" -s, --squeeze-blank nie mehr als eine einzige Leerzeile\n" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" +" -t äquivalent zu -vT\n" +" -T, --show-tabs TAB-Zeichen als ^I ausgeben\n" +" -u (wird ignoriert)\n" +" -v, --show-nonprinting ^ und M- Notation benutzen, außer für LFD und " +"TAB\n" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"Ohne DATEI oder wenn DATEI »-« ist, Standardeingabe lesen.\n" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" +"\n" +" -B, --binary binär auf das Konsolen-Gerät schreiben\n" +"\n" + +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "Anwendung von ioctl auf »%s« ist nicht möglich" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "Standardausgabe" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s: Eingabedatei und Ausgabedatei sind gleich" + +#: src/cat.c:858 +msgid "closing standard input" +msgstr "schließe Standardeingabe" + +#: src/cat.c:861 +msgid "closing standard output" +msgstr "schließe Standardausgabe" + +#: src/chgrp.c:93 +msgid "cannot change to null group" +msgstr "Leerer Gruppenname; die Gruppe nicht geändert werden." + +#: src/chgrp.c:102 +#, c-format +msgid "invalid group name %s" +msgstr "Ungültiger Gruppenname %s" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "Gruppennummer" + +#: src/chgrp.c:109 +#, c-format +msgid "invalid group number %s" +msgstr "ungültige Gruppennummer %s" + +#: src/chgrp.c:126 +#, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Aufruf: %s [OPTION]... GRUPPE DATEI...\n" +" oder: %s [OPTION]... --reference=RDATEI DATEI...\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Ändern der Gruppen-Zugehörigkeit für jede DATEI nach GRUPPE.\n" +"\n" +" -c, --changes wie --verbose, aber nur melden, wenn eine " +"Änderung\n" +" durchgeführt wird\n" +" --dereference verändern der referenzierten Datei einer\n" +" symbolischen Verknüpfung statt der Verknüpfung\n" +" selbst\n" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" +" -h, --no-dereference Verändern der symbolischen Verknüpfung statt " +"einer\n" +" referenzierten Datei. (Nur verfügbar auf " +"Systemen\n" +" mit dem »lchown« Systemaufruf.)\n" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet Unterdrücken der meisten Fehlermeldungen.\n" +" --reference=RDATEI Verwendung von RDATEIs Gruppe anstatt eines " +"GRUPPE-\n" +" Wertes.\n" +" -R, --recursive Rekursives Ändern der Dateien und Verzeichnisse.\n" +" -v, --verbose Ausgabe einer Diagnose für jede verarbeitete " +"Datei.\n" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, c-format +msgid "failed to get attributes of %s" +msgstr "konnte Attribute von %s nicht holen" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "Beim Holen der neuen Attribute von %s" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "Modus von %s nach %04lo (%s) geändert\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "Änderung des Modus von %s nach %04lo (%s) fehlgeschlagen\n" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "Modus von %s als %04lo (%s) erhalten\n" + +#: src/chmod.c:179 +#, c-format +msgid "changing permissions of %s" +msgstr "Beim Setzen der Zugriffsrechte für %s" + +#: src/chmod.c:242 +#, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Aufruf: %s [OPTION]... MODUS[,MODUS]... DATEI...\n" +" oder: %s [OPTION]... OKTAL-MODUS DATEI...\n" +" oder: %s [OPTION]... --reference=RDATEI DATEI...\n" + +#: src/chmod.c:248 +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"Wechseln des Modus jeder DATEI nach MODUS.\n" +"\n" +" -c, --changes wie --verbose, aber nur melden, wenn eine " +"Änderung\n" +" durchgeführt wird\n" +" -f, --silent, --quiet unterdrücken der meisten Fehlermeldungen\n" +" -v, --verbose ausgabe einer Diagnose für jede verarbeitete " +"Datei\n" +" --reference=RDATEI verwendung von RDATEIs Modus anstatt eines MODUS-\n" +" Wertes\n" +" -R, --recursive rekursives Ändern der Dateien und Verzeichnisse\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" +"\n" +"Jeder MODUS ist einer oder mehrere der Buchstaben »ugoa«, eines der Symbole\n" +"»+-=« und einer oder mehrere der Buchstaben »rwxXstugo«.\n" + +#: src/chmod.c:320 +#, c-format +msgid "invalid character %s in mode string %s" +msgstr "Ungültiges Zeichen %s in der Modus-Zeichenkette %s" + +#: src/chmod.c:361 +#, c-format +msgid "invalid mode string: %s" +msgstr "Ungültige Modus-Zeichenkette: %s" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "" +"Weder die symbolische Verknüpfung %s, noch die referenzierte Datei wurden " +"verändert.\n" + +#: src/chown-core.c:143 +#, c-format +msgid "changed ownership of %s to %s\n" +msgstr "Eigentümer von %s in %s geändert\n" + +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "Gruppe von %s in %s gewechselt\n" + +#: src/chown-core.c:148 +#, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "Wechsel des Eigentümers von %s in %s fehlgeschlagen\n" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "Wechsel der Gruppe von %s in %s fehlgeschlagen\n" + +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "Eigentümer von %s als %s erhalten\n" + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "Gruppe von %s als %s erhalten\n" + +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "Ändern des Eigentümers von %s" + +#: src/chown-core.c:327 +#, c-format +msgid "changing group of %s" +msgstr "Ändern der Gruppe für %s" + +#: src/chown-core.c:345 +#, c-format +msgid "unable to restore permissions of %s" +msgstr "Wiederherstellen der Zugriffsrechte von %s nicht möglich" + +#: src/chown.c:99 +#, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Aufruf: %s [OPTION]... EIGENTÜMER[:[GRUPPE]] DATEI...\n" +" oder: %s [OPTION]... :[GRUPPE] DATEI...\n" +" oder: %s [OPTION]... --reference=RDATEI DATEI...\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Wechseln des Eigentümers und/oder der Gruppe für jede DATEI nach EIGENTÜMER\n" +"und/oder GRUPPE.\n" +"\n" +" -c, --changes wie --verbose, aber nur melden, wenn eine " +"Änderung\n" +" durchgeführt wird\n" +" --dereference verändern der referenzierten Datei einer " +"symbolischen\n" +" Verknüpfung statt der Verknüpfung selbst\n" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" +" --from=MOMENTANER_EIGENTÜMER:MOMENTANE_GRUPPE\n" +" Ändern des Eigentümers und/oder der Gruppe jeder " +"Datei\n" +" nur wenn der momentane Eigentümer und/oder die\n" +" Gruppe der angegebenen entsprechen. Eine von " +"beiden\n" +" kann weggelassen werden, woraufhin eine " +"Übereinstim-\n" +" mung des weggelassenen Attributs nicht " +"notwendig\n" +" ist.\n" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet Unterdrücken der meisten Fehlermeldungen.\n" +" --reference=RDATEI Verwendung einer Referenz-Datei anstatt der Ver-\n" +" wendung expliziter EIGENTÜMER:GRUPPE-Werte.\n" +" -R, --recursive Rekursives Ändern der Dateien und Verzeichnisse.\n" +" -v, --verbose Durchgeführte Tätigkeiten erklären.\n" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" +"\n" +"Eigentümer bleibt unverändert, wenn nicht angegeben. Gruppe bleibt\n" +"unverändert, wenn nicht angegeben, wird aber auf die Login-Gruppe\n" +"gesetzt, wenn durch »:« impliziert. EIGENTÜMER und GRUPPE können\n" +"sowohl numerisch als auch symbolisch angegeben werden.\n" + +#: src/chroot.c:45 +#, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"Aufruf: %s NEUEWURZEL [BEFEHL...]\n" +" oder: %s OPTION\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" +"BEFEHL ausführen, wobei das Wurzelverzeichnis auf NEUEWURZEL gesetzt wird.\n" +"\n" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" +"\n" +"Wenn kein Befehl angegeben ist, »${SHELL} -i« (Vorgabe: /bin/sh) ausführen.\n" + +#: src/chroot.c:84 +#, c-format +msgid "cannot change root directory to %s" +msgstr "Es ist nicht möglich, das Wurzelverzeichnis in %s zu ändern" + +#: src/chroot.c:87 +msgid "cannot chdir to root directory" +msgstr "Es ist nicht möglich, in das Wurzelverzeichnis zu wechseln" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "%s: Datei zu lang" + +#: src/cksum.c:282 +#, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"Aufruf: %s [DATEI]...\n" +" oder: %s [OPTION]\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" +"CRC-Checksumme und Byteanzahl für jede DATEI ausgeben.\n" +"\n" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "Richard Stallman und David MacKenzie" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "Aufruf: %s [OPTION]... LINKE_DATEI RECHTE_DATEI\n" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" +"Sortierte Dateien LINKE_DATEI und RECHTE_DATEI Zeile für Zeile vergleichen.\n" +"\n" +" -1 Zeilen unterdrücken, die nur in LINKE_DATEI auftauchen\n" +" -2 Zeilen unterdrücken, die nur in RECHTE_DATEI auftauchen\n" +" -3 Zeilen unterdrücken, die in beiden Dateien auftauchen\n" + +#: src/copy.c:162 src/du.c:332 +#, c-format +msgid "cannot access %s" +msgstr "Zugriff auf %s nicht möglich" + +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "%s kann nicht zum Lesen geöffnet werden" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, c-format +msgid "cannot fstat %s" +msgstr "Aufruf von fstat für %s nicht möglich" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "überspringe Datei %s, da sie während des Kopierens ersetzt wurde" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, c-format +msgid "cannot remove %s" +msgstr "Entfernen von %s nicht möglich" + +#: src/copy.c:277 +#, c-format +msgid "cannot create regular file %s" +msgstr "reguläre Datei %s kann nicht angelegt werden" + +# XLATE_REMARK: Check this out! is the %s replaced by the name of the directory? +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, c-format +msgid "reading %s" +msgstr "Lesen von %s" + +#: src/copy.c:362 +#, c-format +msgid "cannot lseek %s" +msgstr "Aufruf von lseek für %s nicht möglich" + +# XLATE_REMARK: Check this out! is the %s replaced by the name of the directory? +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, c-format +msgid "writing %s" +msgstr "Schreiben von %s" + +# XLATE_REMARK: Check this out! is the %s replaced by the name of the directory? +#: src/copy.c:409 src/copy.c:415 +#, c-format +msgid "closing %s" +msgstr "Schließen von %s" + +#: src/copy.c:610 +#, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: Überschreiben von %s, über Modus %04lo hinwegsetzen? " + +#: src/copy.c:616 +#, c-format +msgid "%s: overwrite %s? " +msgstr "%s: %s überschreiben? " + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, c-format +msgid "cannot stat %s" +msgstr "Aufruf von stat für %s nicht möglich" + +#: src/copy.c:820 +#, c-format +msgid "omitting directory %s" +msgstr "Verzeichnis %s ausgelassen" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "Warnung: Quelldatei %s mehr als einmal angegeben" + +#: src/copy.c:866 src/ln.c:237 +#, c-format +msgid "%s and %s are the same file" +msgstr "%s und %s sind die gleiche Datei" + +#: src/copy.c:876 +#, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "" +"Überschreiben des Nicht-Verzeichnisses %s mit Verzeichnis %s nicht möglich." + +#: src/copy.c:893 +#, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "Neu erstelltes %s wird nicht mit %s überschrieben." + +#: src/copy.c:904 +#, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "" +"Überschreiben des Verzeichnisses %s mit Nicht-Verzeichnis nicht möglich." + +#: src/copy.c:965 +#, c-format +msgid "cannot overwrite directory %s" +msgstr "Überschreiben des Verzeichnisses %s nicht möglich" + +#: src/copy.c:974 +#, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "" +"Verschieben von Verzeichnis auf ein Nicht-Verzeichnis nicht möglich: %s -> %s" + +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "Sicherung von %s würde Quelle zerstören; %s nicht verschoben" + +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "Sicherung von %s würde Quelle zerstören; %s nicht kopiert" + +#: src/copy.c:1013 src/ln.c:273 +#, c-format +msgid "cannot backup %s" +msgstr "Sicherung von %s nicht möglich" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr " (Sicherung: %s)" + +#: src/copy.c:1099 +#, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "Kopieren eines Verzeichnisses, %s, in sich selbst (%s) nicht möglich" + +#: src/copy.c:1106 +#, c-format +msgid "will not create hard link %s to directory %s" +msgstr "Harte Verknüpfung %s zu Verzeichnis %s wird nicht erzeugt" + +#: src/copy.c:1132 +#, c-format +msgid "cannot create hard link %s to %s" +msgstr "Erzeugen von harter Verknüpfung %s zu Verzeichnis %s nicht möglich" + +#: src/copy.c:1186 +#, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "Verschieben von %s in eigenes Unterverzeichnis (%s) nicht möglich" + +#: src/copy.c:1229 +#, c-format +msgid "cannot move %s to %s" +msgstr "Verschieben von %s nach %s nicht möglich" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "" +"Verschieben zwischen Geräten fehlgeschlagen: %s zu %s; kann Ziel nicht " +"entfernen" + +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "Kopieren von zyklischer symbolischer Verknüpfung %s nicht möglich" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "" +"%s: Erzeugen relativer symbolischer Verknüpfungen nur in momentanem " +"Verzeichnis möglich" + +#: src/copy.c:1353 +#, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "Erzeugen der symbolischen Verknüpfung %s nach %s nicht möglich" + +#: src/copy.c:1364 +#, c-format +msgid "cannot create link %s" +msgstr "Erzeugen von Verknüpfung %s nicht möglich" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, c-format +msgid "cannot create fifo %s" +msgstr "Erzeugen von FIFO %s nicht möglich" + +#: src/copy.c:1403 +#, c-format +msgid "cannot create special file %s" +msgstr "Erzeugen der Spezialdatei %s nicht möglich" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, c-format +msgid "cannot read symbolic link %s" +msgstr "Lesen der symbolischen Verknüpfung %s nicht möglich" + +#: src/copy.c:1440 +#, c-format +msgid "cannot create symbolic link %s" +msgstr "Erzeugen der symbolischen Verknüpfung %s nicht möglich" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, c-format +msgid "failed to preserve ownership for %s" +msgstr "konnte den Eigentümer für %s nicht erhalten" + +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "%s hat einen unbekannten Dateityp" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "Erhalten der Zeiten für %s" + +#: src/copy.c:1531 +#, c-format +msgid "failed to preserve authorship for %s" +msgstr "konnte den Urheber für %s nicht erhalten" + +#: src/copy.c:1549 +#, c-format +msgid "setting permissions for %s" +msgstr "Setzen der Zugriffsrechte für %s" + +#: src/copy.c:1571 src/ln.c:326 +#, c-format +msgid "cannot un-backup %s" +msgstr "Löschen der Sicherung von %s nicht möglich" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s -> %s (Löschen der Sicherung)\n" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "Torbjörn Granlund, David MacKenzie und Jim Meyering" + +#: src/cp.c:164 src/mv.c:311 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"Aufruf: %s [OPTION]... QUELLE ZIEL\n" +" oder: %s [OPTION]... QUELLE... VERZEICHNIS\n" +" oder: %s [OPTION]... --target-directory=VERZEICHNIS QUELLE...\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Kopieren von QUELLE nach ZIEL, oder mehrere QUELLE(n) in VERZEICHNIS\n" +"\n" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" +"Erforderliche Argumente für lange Optionen sind auch für kurze " +"erforderlich.\n" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" +" -a, --archive genau wie -dpR\n" +" --backup[=KONTROLLE] eine Sicherung existierender Zieldateien " +"erzeugen\n" +" -b wie --backup, akzeptiert aber kein Argument\n" +" --copy-contents wenn rekursiv, Inhalt von Spezialdateien " +"kopieren\n" +" -d genaus wie --no-dereference --preserve=link\n" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" +" --no-dereference nie symbolischen Verknüpfungen folgen\n" +" -f, --force wenn eine existierende Zieldatei nicht " +"geöffnet\n" +" werden kann wird sie gelöscht und es noch\n" +" einmal versucht\n" +" -i, --interactive vor einem Überschreiben nachfragen\n" +" -H symbolischen Verknüpfungen, die auf der " +"Kommando-\n" +" zeile angegeben sind, folgen\n" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" +" -l, --link Verknüpfung auf Datei statt Kopie erstellen.\n" +" -L, --dereference symbolischen Verknüpfungen immer folgen\n" +" -p genau wie --preserve=mode,ownership," +"timestamps\n" +" --preserve[=ATTR_LIST] angegebene Datei-Attribute (Voreinstellung: " +"mode,\n" +" ownership,timestamps) wenn möglich " +"erhalten.\n" +" Weitere Attribute: links, all\n" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" +" --no-preserve=ATTR_LIST Angegebene Attribute nicht erhalten\n" +" --parents Quell-Pfad an VERZEICHNIS anhängen\n" +" -P genau wie --no-dereference\n" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" +" -R, -r, --recursive Verzeichnisse rekursiv kopieren\n" +" --remove--destination jede Zieldatei vor dem Versuch, sie zu " +"öffnen,\n" +" löschen (im Gegensatz zu --force)\n" + +#: src/cp.c:209 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +" --reply={yes,no,query} Nachfrage bei existierender Zieldatei: immer " +"ja,\n" +" immer nein, nachfragen\n" +" --sparse=WANN Erstellung von spärlich besetzter Dateien " +"steuern\n" +" --strip-trailing-slashes Schrägstriche vom Ende jedes QUELLE-" +"Arguments\n" +" entfernen\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" +" -s, --symbolic-link symbolischen Verknüpfungen erzeugen anstatt\n" +" zu kopieren\n" +" -S, --suffix=SUFFIX normale Sicherungs-Dateiendung ändern\n" +" --target-directory=VERZ alle QUELLE-Argumente in VERZ verschieben\n" + +#: src/cp.c:221 +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +" -u, --update nur kopieren, wenn die QUELL-Datei neuer ist\n" +" als die Zieldatei oder die Zieldatei nicht\n" +" existiert\n" +" -v, --verbose durchgeführte Tätigkeiten erklären\n" +" -x, --one-file-system in diesem Dateisystem verbleiben\n" + +#: src/cp.c:230 +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +"\n" +"Standardmäßig werden »sparse«-QUELL-Dateien durch eine einfache Heuristik\n" +"erkannt und die korrespondierenden ZIEL-Dateien werden ebenfalls »sparse«\n" +"gemacht. Dieses Verhalten wird mit --sparse=auto ausgewählt. Geben Sie\n" +"--sparse=always an um »sparse«-ZIEL-Dateien zu erzeugen wenn die QUELL-\n" +"Datei eine ausreichend lange Sequenz aus Null-Bytes enthält.\n" +"Verwenden Sie --sparse=never um das Erzeugen von »sparse«-Dateien zu\n" +"verhindern.\n" + +#: src/cp.c:239 +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"Der Anhang für Sicherheitskopien ist ~, außer wenn er --suffix oder\n" +"SIMPLE_BACKUP_SUFFIX gesetzt wurde. Die Versionskontrolle kann mit\n" +"--backup oder VERSION_CONTROL gesetzt werden. Mögliche Werte sind:\n" +"\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +" none, off Niemals Sicherung erzeugen (selbst wenn --backup\n" +" angegeben wurde)\n" +" numbered, t Erzeugen von nummerierten Sicherheitskopien\n" +" existing, nil Nummeriert wenn nummerierte Backups existieren, sonst " +"einfach.\n" +" simple, never Immer einfache Sicherheitskopien erzeugen\n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +"Als Spezialfall erzeugt cp eine Sicherheitskopie von QUELLE wenn »force« " +"und\n" +"»backup« Optionen angegeben wurden und QUELLE und ZIEL der gleiche Name für\n" +"eine vorhandene reguläre Datei sind.\n" + +#: src/cp.c:325 +#, c-format +msgid "failed to preserve times for %s" +msgstr "konnte die Zeiten für %s nicht erhalten" + +#: src/cp.c:349 +#, c-format +msgid "failed to preserve permissions for %s" +msgstr "konnte die Zugriffsrechte für %s nicht erhalten" + +#: src/cp.c:434 +#, c-format +msgid "cannot make directory %s" +msgstr "Erzeugen des Verzeichnisses %s nicht möglich" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +msgid "missing file argument" +msgstr "Fehlendes Dateiargument" + +#: src/cp.c:498 +msgid "missing destination file" +msgstr "Fehlende Zieldatei" + +# XLATE_REMARK: Check this out! is the %s replaced by the name of the directory? +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "Zugriff auf %s" + +#: src/cp.c:546 +#, c-format +msgid "%s: specified target is not a directory" +msgstr "%s: angegebenes Ziel ist kein Verzeichnis" + +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "" +"Kopieren mehrerer Dateien, aber der letzte Parameter %s ist kein Verzeichnis" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "Um die Pfade zu erhalten, muss das Ziel ein Verzeichnis sein" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"Warnung: --version-control (-V) ist veraltet. Die Unterstützung hierfür\n" +"wird in einer zukünftigen Version entfernt werden. Verwenden Sie --backup=%" +"s\n" +"statt dessen." + +#: src/cp.c:972 src/ln.c:464 +msgid "symbolic links are not supported on this system" +msgstr "Symbolische Verknüpfungen werden von diesem System nicht unterstützt" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "" +"Gleichzeitiges Erzeugen harter und symbolischer Verknüpfung nicht möglich." + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "Typ der Sicherung" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "Stuart Kemp und David MacKenzie" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "Lesefehler" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "Eingabe ist verschwunden" + +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s: Zeilennummer nicht im zulässigen Bereich" + +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: »%s«: Zeilennummer nicht im zulässigen Bereich" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr " bei Wiederholung von %d\n" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s: »%s«: keine Entsprechung gefunden" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "Fehler bei Suche mit regulären Ausdrücken" + +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "Fehler beim Schreiben von »%s«" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "%s: »+« oder »-« nach Trenner erwartet" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s: ganze Zahl nach »%c« erwartet" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "%s: »}« ist bei Angabe einer Wiederholungsanzahl erforderlich" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "%s}: ganze Zahl zwischen »{« and »}« erforderlich" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s: schließender Trenner »%c« fehlt" + +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: ungültiger regulärer Ausdruck: %s" + +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "%s: ungültiges Muster" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s: Zeilennummer muss größer als Null sein" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "Zeilennummer »%s« ist kleiner als vorhergehende Zeilennummer, %s" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "Warnung: Zeilennummer »%s« ist dieselbe wie die vorhergehende" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "Angabe zur Wandlung fehlt im Suffix" + +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "Angabe zur Wandlung fehlt im Suffix: %c" + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "Ungültige Angabe zur Wandlung im Suffix: \\%.3o" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "Fehlende %%-Angabe zur Wandlung im Suffix" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "Zu viele Angaben zur %%-Wandlung im Suffix" + +#: src/csplit.c:1441 +#, c-format +msgid "%s: invalid number" +msgstr "%s: ungültige Zahl" + +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "Aufruf: %s [OPTION]... DATEI MUSTER...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" +"Teile der DATEI getrennt durch MUSTER in die Dateien »xx01«, »xx02«, ...\n" +"ausgeben und die Bytezahl für jedes Teil auf Standardausgabe.\n" +"\n" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" +" -b, --suffix-format=FORMAT sprintf-FORMAT anstelle von %d benutzen\n" +" -f, --prefix=PRÄFIX PRÄFIX anstelle von »xx« benutzen\n" +" -k, --keep-files Ausgabedateien bei Fehler nicht löschen\n" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" +" -n, --digits=ZIFFERN angegebene Anzahl ZIFFERN anstelle von 2 " +"benutzen\n" +" -s, --quiet, --silent keine Bytezahlen der Ausgabedateigrößen " +"ausgeben\n" +" -z, --elide-empty-files leere Ausgabedateien löschen\n" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" +"\n" +"Standardeingabe lesen, wenn DATEI »-« ist. Jedes MUSTER kann sein:\n" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" +"\n" +" GANZZAHL bis zu angebener Zeilennumer kopieren (ausschließlich)\n" +" /REGEXP/[OFFSET] bis zu entsprechender Zeile kopieren (ausschließlich)\n" +" %%REGEXP%%[OFFSET] bis zu entsprechender Zeile übergehen " +"(ausschließlich)\n" +" {GANZZAHL} das vorherige Muster sooft wie angegeben wiederholen\n" +" {*} das vorherige Muster sooft wie möglich wiederholen\n" +"\n" +"Ein Zeilen-OFFSET ist ein »+« or »-« gefolgt von einer positiven ganzen " +"Zahl.\n" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie und Jim Meyering" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "Aufruf: %s [OPTION]... [DATEI]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "Ausgewählte Teile jeder DATEI auf Standardausgabe ausgeben.\n" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" +" -b, --bytes=LISTE nur diese Bytes ausgeben\n" +" -c, --characters=LISTE nur diese Zeichen ausgeben\n" +" -d, --delimiter=TRENN TRENN anstelle von TAB als Trenner benutzen\n" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" +" -f, --fields=LIST nur diese Felder ausgeben; außerdem jede Zeile\n" +" ausgeben, die kein Trennzeichen enthält, außer " +"die\n" +" Option -s ist gegeben\n" +" -n (ignoriert)\n" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" +" -s, --only-delimited keine Zeilen ausgeben, die keinen Trenner " +"enthalten\n" +" --ouput-delimiter=ZKETTE ZKETTE als Ausgabetrennzeichen benutzen;\n" +" Voreinstellung ist das Eingabetrennzeichen\n" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"Benutzen Sie genau eins aus -b, -c oder -f. Jede LISTE besteht aus einem\n" +"Bereich oder mehreren kommagetrennten. Jeder Bereich ist eins aus:\n" +"\n" +" N Ntes Byte, Zeichen oder Feld, beginnend von 1\n" +" N- vom Nten Byte, Zeichen oder Feld bis zum Ende der Zeile\n" +" N-M vom Nten zum Mten (einschl.) Byte, Zeichen oder Feld\n" +" -M vom ersten zum Mten (einschl.) Byte, Zeichen oder Feld\n" +"\n" +"Ohne DATEI, oder wenn DATEI »-« ist, die Standardeingabe lesen.\n" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "Ungültige Byte- oder Feldliste" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "Nur ein Typ einer Liste kann angegeben werden" + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "Liste der Positionen fehlt" + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "Liste der Felder fehlt" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "Trenner muss ein einzelnes Zeichen sein" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "Sie müssen eine Liste von Bytes, Zeichen oder Feldern angeben" + +#: src/cut.c:720 +msgid "an input delimiter may be specified only when operating on fields" +msgstr "" +"Ein Eingabe-Begrenzer darf nur angegeben werden, wenn auf Feldern gearbeitet " +"wird" + +# CHECKIT -> no \t, please +# 2001-08-10 08:03:34 CEST -ke- +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" +"Nicht-getrennte Zeilen zu unterdrücken ist nur sinnvoll,\n" +"\twenn auf Feldern operiert wird." + +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" +"Aufruf: %s [OPTION]... [+FORMAT]\n" +" oder: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" +"Die aktuelle Uhrzeit im angegebenen FORMAT anzeigen oder die Systemzeit " +"setzen.\n" +"\n" +" -d, --date=ZEICHENKETTE Zeit gemäß ZEICHENKETTE anzeigen, nicht »jetzt«\n" +" -f, --file=DATEI wie --date für jede Zeile in DATEI\n" +" -IZEITSPEZ, --iso-8601[=ZEITSPEZ] Datum/Zeit gemäß ISO-8601 anzeigen.\n" +" ZEITSPEZ=»date« für Datum alleine,\n" +" »hours«, »minutes«, oder »seconds« für Datum " +"und\n" +" Zeit in der angegebenen Genauigkeit\n" +" --iso-8601 ohne ZEITSPEZ verhält sich wie " +"»date«.\n" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" +" -r, --reference=DATEI Zeit der letzten Änderung von DATEI anzeigen\n" +" -R, --rfc-822 Datumsausgabe gemäß RFC-822 anzeigen\n" +" -s, --set=ZEICHENKETTE Zeit gemäß ZEICHENKETTE setzen\n" +" -u, --utc, --universal Coordinated Universal Time anzeigen oder setzen\n" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" +"\n" +"FORMAT bestimmt die Ausgabe. Die einzig gültige Option für die zweite\n" +"Form ist Coordinated Universal Time. Interpretierte Angaben sind:\n" +"\n" +" %% wörtliches %\n" +" %a abgekürzter Name des Wochentags der Lokale (Mon..Son)\n" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" +" %A voller Name des Wochentags der Lokale, variable Länge (Montag.." +"Sonntag)\n" +" %b abgekürzter Monatsnameder Lokale (Jan..Dez)\n" +" %B voller Monatsname der Lokale, variable Länge (Januar..Dezember)\n" +" %c Datum und Zeit der Lokale (Sam Nov 04 12:02:33 EST 1989)\n" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" +" %C Jahrhundert (Jahr geteilt durch 100 und verkürzt auf eine Ganzzahl)\n" +" [00-99]\n" +" %d Tag des Monats (01..31)\n" +" %D Datum (mm/dd/yy)\n" +" %e Tag des Monats, mit Leerzeichen aufgefüllt ( 1..31)\n" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" +" %F dasselbe wie %Y-%m-%d\n" +" %g Jahr als 2-stellige Zahl, bezüglich der Wochennummer %V\n" +" %G Jahr als 4-stellige Zahl, bezüglich der Wochennummer %V\n" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" +" %h dasselbe wie %b\n" +" %H Stunde (00..23)\n" +" %I Stunde (01..12)\n" +" %j Tag des Jahres (001..366)\n" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" +" %k Stunde ( 0..23)\n" +" %l Stunde ( 1..12)\n" +" %m Monat (01..12)\n" +" %M Minute (00..59)\n" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" +" %n neue Zeile (»newline«)\n" +" %N Nanosekunden (000000000..999999999)\n" +" %p AM (Vormittag) oder PM (Nachmittag) der Lokale in Großschreibung\n" +" (in vielen Lokalen nicht verwendet)\n" +" %P am (Vormittag) oder pm (Nachmittag) der Lokale in Kleinschreibung\n" +" (in vielen Lokalen nicht verwendet)\n" +" %r Zeit, 12-Stunden-Format (hh:mm:ss [AP]M)\n" +" %R Zeit, 24-Stunden-Format (hh:mm)\n" +" %s Sekunden seit »00:00:00 1970-01-01 UTC« (eine GNU-Erweiterung)\n" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" +" %S Sekunde (00..60); die 60 wird für eventuelle Schaltsekunden benötigt\n" +" %t horizontaler Tabulatorstopp\n" +" %T Zeit, 24-Stunden (hh:mm:ss)\n" +" %u Tag der Woche (1..7); 1 steht für Montag\n" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" +" %U Wochennummer des Jahres mit Sonntag als erstem Tag der Woche " +"(00..53)\n" +" %V Wochennummer des Jahres mit Montag als erstem Tag der Woche (01..53)\n" +" %w Tag der Woche (0..6); 0 steht für Sonntag\n" +" %W Wochennummer des Jahres mit Montag als erstem Tag der Woche (00..53)\n" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" +" %x Datumsrepräsentation der Lokale (dd.mm.yy)\n" +" %X Zeitrepräsentation der Lokale (%H:%M:%S)\n" +" %y die letzten zwei Ziffern des Jahres (00..99)\n" +" %Y Jahr (1970...)\n" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" +" %z Zeitzone (numerisch) im Stil von RFC-822 (Nicht-Standard-" +"Erweiterung)\n" +" %Z Zeitzone (z. B. CET), oder nichts, wenn die Zeitzone nicht " +"bestimmbar\n" +"\n" +"Die Vorgabe ist, numerische Felder mit Nullen aufzufüllen. GNU »date« " +"erkennt\n" +"die folgenden Modifizierungen zwischen »%« und der numerischen Anweisung.\n" +"\n" +" »-« (Bindestrich) Feld nicht auffüllen\n" +" »_« (Unterstrich) Feld mit Leerzeichen auffüllen\n" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "Standardeingabe" + +#: src/date.c:268 src/date.c:460 +#, c-format +msgid "invalid date `%s'" +msgstr "ungültiges Datum »%s«" + +#: src/date.c:364 +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "" +"Die angegebenen Optionen zur Datumsanzeige schließen sich gegenseitig aus" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "" +"Die Optionen zum Anzeigen und Setzen der Zeit können\n" +"nicht zugleich verwendet werden." + +#: src/date.c:377 +#, c-format +msgid "too many non-option arguments: %s%s" +msgstr "Zuviele Argumente, die keine Optionen sind: %s%s" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" +"Dem Argument »%s« fehlt das führende »+«.\n" +"Wenn eine Option angegeben wird, um das Datum zu spezifizieren, muss jedes\n" +"Argument, das keine Option ist, eine Formatzeichenkette sein, die mit »+«\n" +"beginnt." + +#: src/date.c:397 +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "" +"eine Formatzeichenkette darf nicht angegeben werden, wenn die Option --rfc-" +"822\n" +"(-R) verwendet wird" + +#: src/date.c:433 +msgid "undefined" +msgstr "undefiniert" + +#: src/date.c:435 +msgid "cannot get time of day" +msgstr "die Zeit des Tages kann nicht ermittelt werden" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "das Datum kann nicht gesetzt werden" + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "Paul Rubin, David MacKenzie und Stuart Kemp" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "Aufruf: %s [OPTION]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" +"Kopieren einer Datei, Konvertierung und Formatierung gemäß der Optionen.\n" +"\n" +" bs=BYTES ibs=BYTES und obs=BYTES erzwingen\n" +" cbs=BYTES BYTES Bytes auf einmal konvertieren\n" +" conv=WÖRTER Datei gemäß kommagetrennter Schlüsselwörter-Liste " +"konvertieren\n" +" count=BLÖCKE nur BLÖCKE Eingabeblöcke kopieren\n" +" ibs=BYTES Lesen von BYTES Bytes auf einmal\n" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" +" if=DATEI aus DATEI statt von der Standardeingabe lesen\n" +" obs=BYTES BYTES Bytes auf einmal schreiben\n" +" of=DATEI in DATEI statt in die Standardausgabe schreiben\n" +" seek=BLÖCKE BLÖCKE obs-große Blöcke am Anfang der Ausgabe überspringen\n" +" skip=BLÖCKE BLÖCKE ibs-große Blöcke am Anfang der Eingabe überspringen\n" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" +"\n" +"BLOCKS und BYTES können folgende multiplikativen Endungen tragen:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1.000.000, M 1.048.576,\n" +"GB 1.000.000.000, G 1.073.741.824, und so weiter für T, P, E, Z, Y.\n" +"Jedes SCHLÜSSELWORT kann sein:\n" +"\n" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" +" ascii von EBCDIC in ASCII.\n" +" ebcdic von ASCII in EBCDIC.\n" +" ibm von ASCII in alternatives EBCDIC.\n" +" block Auffüllen von mit Zeilenumbrüchen terminierten Datensätzen " +"durch\n" +" Leerzeichen bis zur cbs-Größe.\n" +" unblock Ersetzen von nachlaufenden Leerzeichen in Datensätzen von\n" +" cbs-Größe mit Zeilenumbrüchen.\n" +" lcase Ändern von Großbuchstaben in Kleinbuchstaben.\n" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" +" notrunc Kein Abschneiden der Ausgabedatei.\n" +" ucase Ändern von Kleinbuchstaben in Großbuchstaben.\n" +" swab Jedes Paar von Eingabebytes vertauschen.\n" +" noerror Nach Lesefehlern fortfahren.\n" +" sync Jeden Eingabeblock mit NULLen zur ibs-Größe auffüllen; wenn mit\n" +" block oder unblock benutzt, stattdessen mit Leerzeichen.\n" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "%s+%s Records ein\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "%s+%s Records aus\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "abgeschnittener Datensatz" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "abgeschnittene Datensätze" + +#: src/dd.c:382 +#, c-format +msgid "closing input file %s" +msgstr "Schließen von Eingabedatei %s" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "Schließen von Ausgabedatei %s" + +#: src/dd.c:469 +#, c-format +msgid "writing to %s" +msgstr "Schreiben in %s" + +#: src/dd.c:501 +#, c-format +msgid "invalid conversion: %s" +msgstr "ungültige Konvertierung: %s" + +#: src/dd.c:557 +#, c-format +msgid "unrecognized option %s" +msgstr "unbekannte Option %s" + +#: src/dd.c:610 +#, c-format +msgid "unrecognized option %s=%s" +msgstr "unbekannte Option %s=%s" + +#: src/dd.c:616 +#, c-format +msgid "invalid number %s" +msgstr "ungültige Zahl %s" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"Nur je eins aus {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, {unblock," +"sync}" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" +"Warnung: Umgehe lseek-Kernelbug für Datei (%s)\n" +" des Typs mt_type=0x%0lx - siehe für die Liste der Typen" + +#: src/dd.c:1170 src/dd.c:1188 +#, c-format +msgid "opening %s" +msgstr "Öffnen von %s" + +#: src/dd.c:1196 +msgid "file offset out of range" +msgstr "Datei Verschiebung außerhalb der Reichweite" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "an %s Bytes vorbei fortbewegen in Ausgabedatei %s" + +#: src/df.c:49 +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "Torbjörn Granlund, David MacKenzie, Larry McVoy und Paul Eggert" + +#: src/df.c:153 +#, fuzzy +msgid "Filesystem Type" +msgstr "Dateisystem" + +#: src/df.c:155 +#, fuzzy +msgid "Filesystem " +msgstr "Dateisystem" + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr " INodes IBenut. IFrei IBen%%" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Größe Benut Verf Ben%%" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Größe Benut Verf Ben%%" + +#: src/df.c:167 +#, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr " %4s-Blöcke Benutzt Verfügbar Kapazit." + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr " %4s-Blöcke Benutzt Verfügbar Ben%%" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr " Eingehängt auf\n" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" +"Anzeige von Informationen über die Dateisysteme, auf dem sich jede\n" +"DATEI befindet, oder alle Dateisysteme als Standardvorgabe.\n" +"\n" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" +" -a, --all Einschließlich Dateisystemen von 0 Blöcken " +"Größe.\n" +" -B, --block-size=GRÖßE GRÖßE große Blöcken verwenden.\n" +" -h, --human-readable Größen in menschenlesbarem Format (z.B. 1K 234M " +"2G)\n" +" ausgeben.\n" +" -H, --si Wie »-h«, aber mit 1000 statt 1024 als Teiler.\n" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" +" -i, --inodes INode-Information statt der Block-Benutzung\n" +" auflisten.\n" +" -k wie »--block-size=1K«\n" +" -l, --local Liste auf lokale Dateisysteme begrenzen.\n" +" --no-sync »sync« vor Erlangen der Benutzungsinformation\n" +" nicht aufrufen (Standardvorgabe).\n" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" +" -P, --portability POSIX-Ausgabeformat verwenden.\n" +" --sync »sync« vor Erlangen der Benutzungsinformation\n" +" aufrufen.\n" +" -t, --type=TYP Liste auf Dateisysteme des Typs TYP begrenzen.\n" +" -T, --print-type Dateisystemtyp ausgeben.\n" +" -x, --exclude-type=TYP Liste auf Dateisysteme nicht vom Typ TYP " +"begrenzen.\n" +" -v (ignoriert)\n" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" +"\n" +"GRÖßE kann eine der folgenden Abkürzungen sein (oder eine Zahl, die " +"optional\n" +"von einer der Abkürzungen gefolgt wird):\n" +"kB 1000, K 1024, MB 1.000.000, M 1.048.576 und so weiter für G, T, P, E, Z, " +"Y.\n" + +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "Dateisystemtyp %s ist sowohl ausgewählt als auch ausgeschlossen" + +#: src/df.c:903 +msgid "Warning: " +msgstr "Warnung: " + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "%sLesen der Tabelle eingehängter Dateisysteme nicht möglich" + +#: src/dircolors.c:103 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "Aufruf: %s [OPTION]... [DATEI]\n" + +#: src/dircolors.c:104 +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"Ausgabe-Befehl zum Setzen der Umgebungsvariable LS_COLORS.\n" +"\n" +"Bestimmen Sie das Ausgabeformat:\n" +" -b, --sh, --bourne-shell Bourne-Shell-Code, um LS_COLORS zu setzen\n" +" -c, --csh, --c-shell C-Shell-Code, um LS_COLORS zu setzen\n" +" -p, --print-database Standardeinstellungen ausgeben\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" +"\n" +"Wenn DATEI angegeben ist, wird die Datei gelesen, um festzustellen, welche\n" +"Farben für welche Dateitypen und Erweiterungen verwendet werden sollen.\n" +"Sonst wird eine vorkompilierte Datenbank verwendet. Für Einzelheiten rufen\n" +"Sie »dircolors --print-database« auf.\n" + +#: src/dircolors.c:299 +#, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s: %lu: ungültige Zeile, zweites Token fehlt" + +#: src/dircolors.c:371 +#, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s:%lu: unbekanntes Schlüsselwort %s" + +#: src/dircolors.c:372 +msgid "" +msgstr "" + +#: src/dircolors.c:467 +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" +"Die Optionen zur Ausgabe der internen Datenbank von »dircolors« und zur " +"Auswahl\n" +"einer Shell-Syntax schließen sich gegenseitig aus" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" +"Kein DATEI Argument darf zusammen mit der Option zur Ausgabe der internen\n" +"Datenbank von »dircolors« angegeben werden." + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "Keine SHELL Umgebungsvariable, und keine Shell-Typ Option angegeben" + +#: src/dirname.c:33 src/pathchk.c:59 +msgid "David MacKenzie and Jim Meyering" +msgstr "David MacKenzie und Jim Meyering" + +#: src/dirname.c:46 +#, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"Aufruf: %s NAME\n" +" oder: %s OPTION\n" + +#: src/dirname.c:51 +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" +"NAME ohne die letzte /Komponente ausgeben; enthält der NAME keinen /, wird " +"».«\n" +"(= aktuelles Verzeichnis) ausgegeben.\n" +"\n" + +#: src/du.c:49 +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "" +"Torbjörn Granlund, David MacKenzie, Larry McVoy, Paul Eggert und Jim Meyering" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" +"Summierung der Plattennutzung jeder DATEI, rekursiv für Verzeichnisse\n" +"\n" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" +" -a, --all Zählung für jede Datei ausgeben, nicht nur für\n" +" Verzeichnisse.\n" +" --apparent-size die sichtbare Größe ausgeben statt " +"Platzverbrauchs;\n" +" diese ist meist kleiner, kann aber auch größer\n" +" sein durch Löcher in (»sparse«-)Dateien, " +"interne\n" +" Fragmentierung, indirekte Blöcke und ähnliches\n" +" -B, --block-size=GRÖßE GRÖßE große Blöcke verwenden.\n" +" -b, --bytes äquivalent zu »--apparent-size --block-size=1«\n" +" -c, --total Gesamtsumme erzeugen.\n" +" -D, --dereference-args Dateien dereferenzieren, wenn es sich um\n" +" symbolische Verknüpfungen handelt.\n" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" +" -h, --human-readable Größen in menschenlesbarem Format (z.B. 1K 234M " +"2G)\n" +" ausgeben.\n" +" -H, --si Wie »-h«, aber mit 1000 statt 1024 als Teiler.\n" +" -k wie »--block-size=1K«\n" +" -l, --count-links Größe mehrfach zählen, wenn durch harte\n" +" Verknüpfungen verbunden.\n" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" +" -L, --dereference Alle symbolischen Verknüpfungen dereferenzieren.\n" +" -S, --separate-dirs Größe von Unterverzeichnissen nicht\n" +" mitzählen.\n" +" -s, --summarize Nur Summe für jedes Argument anzeigen.\n" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" +" -x, --one-file-system Verzeichnis auf anderen Dateisystemen " +"überspringen.\n" +" -X DATEI, --exclude-from=DATEI Ausschließen von Dateien, die auf eines " +"der \n" +" Muster in DATEI passen.\n" +" --exclude=MUSTER Dateien, die auf MUSTER passen, ausschließen.\n" +" --max-depth=N Summe für ein Verzeichnis ausgeben (oder einer \n" +" Datei, mit »--all«) nur, wenn es N oder " +"weniger \n" +" Ebenen unterhalb des Kommandozeilenargumentes " +"ist.\n" +" »--max-depth=0« ist dasselbe wie »--" +"summarize«.\n" + +#: src/du.c:337 +#, c-format +msgid "cannot change to parent of directory %s" +msgstr "Kann nicht in das übergeordnete Verzeichnis von %s wechseln" + +#: src/du.c:345 +#, c-format +msgid "cannot change to directory %s" +msgstr "Kann nicht in Verzeichnis %s wechseln" + +#: src/du.c:352 +#, c-format +msgid "cannot read directory %s" +msgstr "kann Verzeichnis %s nicht lesen" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "insgesamt" + +#: src/du.c:641 +#, c-format +msgid "invalid maximum depth %s" +msgstr "Ungültige maximale Tiefe %s" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "Sowohl zusammenfassen, als auch Anzeige aller Einträge nicht möglich" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "Warnung: Zusammenfassen ist das gleiche wie --max-depth=0" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "Warnung: Zusammenfassen widerspricht --max-depth=%d" + +#: src/echo.c:77 +#, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "Aufruf: %s [OPTION]... [ZEICHENKETTE]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" +"ZEICHENKETTE(n) auf Standardausgabe ausgeben.\n" +"\n" +" -n keinen Zeilenvorschub am Ende der Zeile ausgeben\n" +" -e Interpretation mit Backslash maskierter Zeichen " +"aktivieren; vgl.\n" +" die Liste unten\n" +" -E Interpolation dieser Sequenzen in ZEICHENKETTE(n) " +"verhindern\n" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" +"\n" +"Ohne -E werden die folgenden Sequenzen erkannt und umgesetzt:\n" +"\n" +" \\NNN Zeichen mit dem ASCII-Code NNN (oktal)\n" +" \\\\ Backslash\n" +" \\a Alarm (BEL)\n" +" \\b Zeichen rückwärts löschen (Backspace)\n" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\c Zeilenvorschub am Ende unterdrücken\n" +" \\f Seitenvorschub\n" +" \\n Zeilenvorschub\n" +" \\r Wagenrücklauf (Carriage Return)\n" +" \\t horizontaler Tabulatorstopp\n" +" \\v vertikaler Tabulatorstopp\n" + +#: src/env.c:93 +msgid "Richard Mlynarik and David MacKenzie" +msgstr "Richard Mlynarik und David MacKenzie" + +#: src/env.c:119 +#, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "Aufruf: %s [OPTION]... [-] [NAME=WERT]... [BEFEHL [ARG]...]\n" + +#: src/env.c:122 +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" +"Jeden NAMEn in der Umgebung auf WERT setzen und BEFEHL ausführen.\n" +"\n" +" -i, --ignore-environment mit leerer Umgebung beginnen\n" +" -u, --unset=NAME Variable aus der Umbegung entfernen\n" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" +"\n" +"Ein einzelnes »-« steht für -i. Wenn kein BEFEHL angegeben ist, wird die\n" +"resultierende Umgebung ausgegeben.\n" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Tabulatoren in jeder DATEI in Leerzeichen wandeln, auf Standardausgabe\n" +"schreiben. Wurde keine DATEI angegeben, oder ist DATEI »-«, die\n" +"Standardeingabe lesen.\n" +"\n" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" +" -i, --initial Tabulatoren nicht nach Nicht-Freiraumzeichen (non\n" +" whitespace) wandeln\n" +" -t, --tabs=ZAHL Tabulator alle ZAHL Zeichen annehmen, nicht 8\n" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" +" -t, --tabs=LISTE durch Komma getrennte LISTE von Tabulatorpositionen\n" +" annehmen\n" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "Tabulatorgröße enthält ein ungültiges Zeichen" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "Tabulatorgröße muss ungleich 0 sein" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "Tabulatorgrößen müssen aufsteigend sein" + +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "die Option »-LIST« ist überholt; bitte verwenden Sie »-t LIST«" + +#: src/expr.c:90 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"Aufruf: %s AUSDRUCK\n" +" oder: %s OPTION\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" +"\n" +"Den Wert des AUSDRUCKs auf Standardausgabe ausgeben. Im Folgenden bedeutet\n" +"eine Leerzeile eine aufsteigende Präzedenz. AUSDRUCK kann sein:\n" +"\n" +" ARG1 | ARG2 ARG1, wenn es weder null noch 0 ist, sonst ARG2\n" +"\n" +" ARG1 & ARG2 ARG1, wenn kein Argument null oder 0 ist, sonst 0\n" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" +"\n" +" ARG1 < ARG2 ARG1 ist kleiner als ARG2\n" +" ARG1 <= ARG2 ARG1 ist kleiner oder gleich ARG2\n" +" ARG1 = ARG2 ARG1 ist gleich ARG2\n" +" ARG1 != ARG2 ARG1 ist ungleich ARG2\n" +" ARG1 >= ARG2 ARG1 ist größer oder gleich ARG2\n" +" ARG1 > ARG2 ARG1 ist größer ARG2\n" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" +"\n" +" ARG1 + ARG2 arithmetische Summe von ARG1 und ARG2\n" +" ARG1 - ARG2 arithmetische Differenz von ARG1 und ARG2\n" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" +"\n" +" ARG1 * ARG2 arithmetisches Produkt von ARG1 und ARG2\n" +" ARG1 / ARG2 arithmetischer Quotient von ARG1 geteilt durch ARG2\n" +" ARG1 % ARG2 arithmetischer Rest von ARG1 geteilt durch ARG2\n" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" +"\n" +" ZKETTE : REGEXP verankerte Mustererkennung von REGEXP in ZKETTE\n" +"\n" +" match ZKETTE REGEXP dasselbe wie ZEICHENKETTE : REGEXP\n" +" substr ZKETTE POS LENGTH Teilzeichenkette von ZKETTE, POS beginnt mit 1\n" +" index ZKETTE ZEICHEN Index in ZKETTE, wo eines der ZEICHEN auftritt,\n" +" sonst 0\n" +" length ZEICHENKETTE Länge der ZEICHENKETTE\n" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" +" + TOKEN TOKEN als Zeichenkette interpretieren, auch wenn\n" +" es ein Schlüsselwort wie »match« oder ein\n" +" Operator wie »/« ist\n" +"\n" +" ( AUSDRUCK ) Wert des AUSDRUCKs\n" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" +"\n" +"Bedenken Sie, dass viele Operatoren für Benutzung unter einer Shell " +"maskiert\n" +"werden müssen (mit Backslash oder Anführungszeichen). Vergleiche sind\n" +"arithmetisch, wenn beide Argumente Zahlen sind, sonst lexikografisch.\n" +"Mustererkennungen geben die Zeichenkette zwischen \\( und \\) zurück oder " +"nichts;\n" +"wenn \\( und \\) nicht benutzt werden, wird die Länge der Zeichenkette oder " +"0\n" +"zurückgegeben.\n" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +msgid "syntax error" +msgstr "Syntaxfehler" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" +"Warnung: nicht portable BRE: »%s«: »^« als erstes Zeichen eines einfachen\n" +"regulären Ausdrucks ist nicht portabel; es wird ignoriert." + +#: src/expr.c:586 src/expr.c:625 +msgid "non-numeric argument" +msgstr "Argumente, die keine Zahlen sind" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "Teilung durch Null" + +#: src/factor.c:74 +#, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"Aufruf: %s [ZAHL...]\n" +" oder: %s OPTION\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" +"Die Primfaktoren jeder ZAHL ausgeben.\n" +"\n" + +#: src/factor.c:85 +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" +"\n" +" Die Primfaktoren aller angegebenen ganzen ZAHLen ausgeben. Wurden keine\n" +" Argumente in der Befehlszeile gegeben, werden diese von Standardeingabe " +"gelesen.\n" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "»%s« ist keine gültige positive ganze Zahl" + +#: src/false.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Aufruf: %s [ignorierte Kommandozeilen-Argumente]\n" +" oder: %s OPTION\n" +"Mit einem Status-Code beenden, der einen Fehler signalisiert.\n" +"\n" +"Diese Optionen dürfen nicht abgekürzt werden.\n" +"\n" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "Aufruf: %s [-ZIFFERN] [OPTION]... [DATEI]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" +"Jeden Absatz in DATEI(en) formatieren, auf Standardausgabe schreiben.\n" +"Wurde keine DATEI angegeben, oder ist DATEI »-«, Standardeingabe lesen.\n" + +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" +" -c, --crown-margin Einrückung der ersten beiden Zeilen erhalten\n" +" -p, --prefix=ZKETTE nur Zeilen mit ZKETTE als Präfix kombinieren\n" +" -s, --split-only lange Zeilen umbrechen, aber nicht auffüllen\n" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" +" -t, --tagged-paragraph erste Zeile anders als die zweite einrücken\n" +" -u, --uniform-spacing ein Leerzeichen zwischen Wörtern, zwei nach " +"Sätzen\n" +" -w, --width=ZAHL maximale Zeilenbreite (Vorgabe: 75 Spalten)\n" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" +"\n" +"Bei -wZAHL darf das »w« weggelassen werden.\n" + +#: src/fmt.c:345 +#, c-format +msgid "invalid width option: `%s'" +msgstr "ungültige Option für Zeilenbreite: »%s«" + +#: src/fmt.c:385 +#, c-format +msgid "invalid width: `%s'" +msgstr "ungültige Zeilenbreite: »%s«" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" +"Eingabezeilen jeder DATEI umbrechen (Vorgabe: Standardeingabe),\n" +"das Ergebnis auf Standardausgabe ausgeben.\n" +"\n" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" +" -b, --bytes Bytes anstatt Spalten zählen\n" +" -s, --spaces Umbruch bei Leerzeichen\n" +" -w, --width=BREITE BREITE Spalten anstatt 80 benutzen\n" + +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "die Option »%s« ist überholt; bitte verwenden Sie »%s«" + +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "Ungültige Anzahl Spalten: »%s«" + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Die ersten 10 Zeilen jeder DATEI auf Standardausgabe ausgeben.\n" +"Mit mehr als einer DATEI, vorab den Dateinamen ausgeben.\n" +"Ohne DATEI oder DATEI ist »-«, Standardeingabe lesen.\n" +"\n" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" +" -c, --bytes=GRÖSSE erste GRÖSSE Bytes ausgeben\n" +" -n, --lines=ANZAHL erste ANZAHL Zeilen statt 10 ausgeben\n" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" +" -q, --quiet, --silent nie Dateinamen vorab ausgeben\n" +" -v, --verbose immer Dateinamen vorab ausgeben\n" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" +"\n" +"GRÖSSE kann ein Vervielfältigungssuffix haben: »b« für 512, »k« für 1K, »m« " +"für\n" +"1 Megabyte.\n" + +#: src/head.c:190 +#, c-format +msgid "cannot reposition file pointer for %s" +msgstr "es ist nicht möglich, den Datei-Zeiger für %s neu zu positionieren" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "%s: %s ist so groß, dass es nicht dargestellt werden kann" + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "Anzahl Zeilen" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "Anzahl Bytes" + +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "ungültige Anzahl von Zeilen" + +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "ungültige Anzahl von Bytes" + +#: src/head.c:341 +#, c-format +msgid "unrecognized option `-%c'" +msgstr "Unbekannte Option »-%c«" + +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "die Option »-%s« ist überholt; bitte verwenden Sie »-%c %.*s%.*s%s«" + +#: src/hostid.c:48 +#, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" +"Aufruf: %s\n" +" oder: %s OPTION\n" +"Die hexadezimale numerische Kennung für den aktuellen Rechner ausgeben.\n" +"\n" + +#: src/hostname.c:67 +#, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" +"Aufruf: %s [NAME]\n" +" oder: %s OPTION\n" +"Den Rechnernamen dieses aktuellen Rechners ausgeben oder setzen.\n" +"\n" + +#: src/hostname.c:104 +#, c-format +msgid "cannot set hostname to `%s'" +msgstr "Rechnername kann nicht auf »%s« gesetzt werden." + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "" +"Rechnername kann nicht gesetzt werden; diesem System fehlt diese Möglichkeit." + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "es ist nicht möglich, den Rechnername zu ermitteln" + +#: src/id.c:36 +msgid "Arnold Robbins and David MacKenzie" +msgstr "Arnold Robbins und David MacKenzie" + +#: src/id.c:87 +#, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "Aufruf: %s [OPTION]... [BENUTZERNAME]\n" + +#: src/id.c:88 +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" +"Informationen zu BENUTZER oder für den aktuellen Benutzer ausgeben.\n" +"\n" +" -a ignoriert, nur aus Kompatibilitätsgründen\n" +" -g, --group nur Gruppen-ID ausgeben\n" +" -G, --groups nur erweiterte Gruppenliste ausgeben\n" +" -n, --name Namen statt Nummer ausgeben, für -ugG\n" +" -r, --real die reale ID anstelle der effektiven ausgeben, für -ugG\n" +" -u, --user nur die Benutzer-ID ausgeben\n" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" +"\n" +"Ohne Angabe einer OPTION, wird eine brauchbare Menge an Informationen\n" +"ausgegeben.\n" + +#: src/id.c:162 +msgid "cannot print only user and only group" +msgstr "Es ist nicht möglich, nur Benutzer und nur Gruppe auszugeben" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "" +"Im Vorgabe-Format ist es nicht möglich, nur Namen oder echte IDs auszugeben" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "%s: Einen solchen Benutzer gibt es nicht" + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "Es ist kein Name zur Nutzer-ID %u zu finden" + +#: src/id.c:235 +#, c-format +msgid "cannot find name for group ID %u" +msgstr "Es ist kein Name zur Gruppen-ID %u zu finden" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "Es kann keine erweiterte Gruppenliste ermittelt werden" + +#: src/id.c:385 +msgid " groups=" +msgstr " Gruppen=" + +#: src/install.c:269 +msgid "the strip option may not be used when installing a directory" +msgstr "" +"die Option strip darf nicht bei Installation von Verzeichnissen benutzt " +"werden" + +#: src/install.c:292 src/mkdir.c:140 +#, c-format +msgid "invalid mode %s" +msgstr "Ungültiger Modus %s" + +#: src/install.c:307 src/install.c:371 +#, c-format +msgid "creating directory %s" +msgstr "Verzeichnis %s angelegt" + +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "" +"Installation mehrerer Dateien, aber letzter Parameter, %s, ist kein " +"Verzeichnis" + +#: src/install.c:435 +#, c-format +msgid "%s is a directory" +msgstr "%s ist ein Verzeichnis" + +#: src/install.c:495 +#, c-format +msgid "cannot obtain time stamps for %s" +msgstr "Erhalt des Zeitstempels für %s nicht möglich" + +#: src/install.c:507 +#, c-format +msgid "cannot set time stamps for %s" +msgstr "Setzen der Zeitstempel für %s nicht möglich" + +#: src/install.c:528 +msgid "fork system call failed" +msgstr "Systemruf fork fehlgeschlagen" + +#: src/install.c:532 +msgid "cannot run strip" +msgstr "strip kann nicht ausgeführt werden" + +#: src/install.c:539 +msgid "strip failed" +msgstr "strip fehlgeschlagen" + +#: src/install.c:560 +#, c-format +msgid "invalid user %s" +msgstr "Ungültiger Anwender %s" + +#: src/install.c:578 +#, c-format +msgid "invalid group %s" +msgstr "ungültige Gruppe %s" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"Aufruf: %s [OPTION]... QUELLE ZIEL (1. Format)\n" +" oder: %s [OPTION]... QUELLE... VERZEICHNIS (2. Format)\n" +" oder: %s -d [OPTION]... VERZEICHNIS... (3. Format)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" +"In den zwei ersten Formaten wird QUELLE nach ZIEL kopiert, oder mehrere\n" +"QUELLEN in VERZEICHNIS, während die Zugriffsrechte und Besitzer und Gruppe\n" +"der Dateien gesetzt werden. Im dritten Format werden alle Teile der/des\n" +"angegebenen Verzeichnis(se) erzeugt.\n" +"\n" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" +" --backup[=Kontrolle] Sicherung für jede existierende Zieldatei " +"erzeugen.\n" +" -b wie --backup, akzeptiert aber kein Argument.\n" +" -c (ignoriert).\n" +" -d, --directory Alle Argumente als Verzeichnisnamen behandeln.\n" +" Erzeugen aller Komponenten der angegebenen " +"Ver-\n" +" zeichnisse.\n" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" +" -D Alle führenden Elemente von ZIEL erzeugen " +"außer \n" +" dem letzten, dann QUELLE nach ZIEL kopieren.\n" +" Nützlich für das 1. Format.\n" +" -g, --group=GRUPPE Gruppenbesitz setzen, statt der Gruppe des\n" +" momentanen Prozesses.\n" +" -m, --mode=MODUS Modus der Zugriffsrechte setzen (wie in chmod),\n" +" statt rwxr-xr-x.\n" +" -o, --owner=EIGENTÜMER Setzen des Besitzers (nur für den Superuser).\n" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" +" -p, --preserve-timestamps Einsetzen der Zugriffs-/Änderungszeiten der\n" +" QUELL-Dateien.\n" +" -s, --strip »strip« der Symboltabellen, nur für 1. und 2.\n" +" Format.\n" +" -S, --suffix=SUFFIX Normale Anhänge für Sicherungen überschreiben.\n" +" -v, --verbose Den Namen jedes Verzeichnisses ausgeben, " +"während\n" +" es erzeugt wird.\n" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"\n" +"Der Anhang für Sicherheitskopien ist ~, außer wenn er --suffix oder\n" +"SIMPLE_BACKUP_SUFFIX gesetzt wurde. Die Versionskontrolle kann mit\n" +"--backup oder VERSION_CONTROL gesetzt werden. Mögliche Werte sind:\n" +"\n" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "Aufruf: %s [OPTION]... DATEI1 DATEI2\n" + +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" +"Für jedes Eingabezeilenpaar mit identischen Verschmelzungsfeldern eine " +"Zeile\n" +"auf Standardausgabe schreiben. Das voreingestellte Verschmelzungsfeld ist " +"das\n" +"erste durch Leerzeichen/Tabulator begrenzte Feld. Wenn DATEI1 oder DATEI2\n" +"(nicht beide) »-« ist, Standardeingabe lesen.\n" +"\n" +" -a DATEINR nicht-passende Zeilen aus der Datei DATEINR ausgeben, " +"wobei\n" +" DATEINR 1 oder 2 ist, entsprechend DATEI1 oder " +"DATEI2\n" +" -e LEER fehlende Eingabefelder durch LEER ersetzen\n" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" +" -i, --ignore-case Unterschiede in Groß/Kleinschreibung ignorieren, wenn\n" +" Felder verglichen werden\n" +" -j FELD (überholt) äquivalent zu »-1 FELD -2 FELD«\n" +" -j1 FELD (überholt) äquivalent zu »-1 FELD«\n" +" -j2 FELD (überholt) äquivalent zu »-2 FELD«\n" +" -o FORMAT FORMAT benutzen, wenn Ausgabezeilen erstellt werden\n" +" -t ZEICHEN ZEICHEN als Trennzeichen für Ein- und Ausgabefelder\n" +" benutzen\n" + +#: src/join.c:165 +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" +" -v DATEINR wie -a DATEINR, aber verschmolzene Ausgabezeilen\n" +" unterdrücken\n" +" -1 FELD mit diesem FELD von DATEI1 unterdrücken\n" +" -2 FELD mit diesem FELD von DATEI2 unterdrücken\n" + +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" +"\n" +"Außer wenn -t ZEICHEN angegeben wurde, trennen führende Leerzeichen Felder " +"und\n" +"sie werden ignoriert; andernfalls werden Felder durch ZEICHEN getrennt. " +"Jedes\n" +"FELD ist eine Feldnummer, beginnend mit 1. FORMAT sind eine oder mehrere " +"durch\n" +"Komma- oder Leerzeichen getrennte Spezifikationen, wobei jede »DATEINR." +"FELD«\n" +"oder »0« ist. Das voreingestellte FORMAT gibt das Verschmelzungsfeld aus, " +"die\n" +"restlichen Felder von DATEI1, die restlichen Felder von DATEI2, alle " +"getrennt\n" +"mit ZEICHEN.\n" + +#: src/join.c:645 +#, c-format +msgid "invalid field specifier: `%s'" +msgstr "Ungültiger Feldbezeichner: »%s«" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, c-format +msgid "invalid field number: `%s'" +msgstr "Ungültige Feldnummer: »%s«" + +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "Ungültige Feldnummer in Feldbezeichner: »%s«" + +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "Ungültige Feldnummer für Datei1: »%s«" + +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "Ungültige Feldnummer für Datei2: »%s«" + +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "Zuviele Argumente, die keine Optionen sind" + +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "Zuwenige Argumente, die keine Optionen sind" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "Alle beide Dateien können nicht Standardeingabe sein" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" +"Aufruf: %s [-s SIGNAL | -SIGNAL] PID...\n" +" oder: %s -l [SIGNAL]...\n" +" oder: %s -t [SIGNAL]...\n" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" +"Signale an Prozesse senden oder Signale auflisten.\n" +"\n" + +#: src/kill.c:106 +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" +" -s, --signal=SIGNAL, -SIGNAL Name oder Nummer des zu sendenden Signals\n" +" -l, --list Namen der Signale auflisten oder die Namen " +"der\n" +" Signale von oder zu Nummern umwandeln\n" +" -t, --table Liste mit Informationen zu den Signalen\n" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" +"\n" +"SIGNAL kann ein Name für ein Signal wie »HUP« sein oder eine Signalnummer " +"wie\n" +"»1« oder der Exit-Status eines Prozesses der von einem Signal beendet " +"wurde.\n" +"PID ist eine Ganzzahl; wenn negativ, dann identifiziert PID eine Gruppe von\n" +"Prozessen.\n" + +#: src/kill.c:163 +#, c-format +msgid "%s: invalid signal" +msgstr "%s: ungültiges Signal" + +#: src/kill.c:262 +#, c-format +msgid "missing operand after `%s'" +msgstr "fehlender Operator nach »%s«" + +#: src/kill.c:274 +#, c-format +msgid "%s: invalid process id" +msgstr "%s: ungültige Prozess-ID" + +#: src/kill.c:327 +#, c-format +msgid "invalid option -- %c" +msgstr "ungültige Option -- %c" + +#: src/kill.c:336 +#, c-format +msgid "%s: multiple signals specified" +msgstr "%s: mehrere Signale angegeben" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "mehrfach die Optionen -l oder -t angegeben" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "es ist nicht möglich, Signale mit -l oder -t zu kombinieren" + +#: src/link.c:51 +#, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"Aufruf: %s DATEI1 DATEI2\n" +" oder: %s OPTION\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" +"Die Funktion link aufrufen, um eine Verknüpfung DATEI2 zu DATEI1 " +"herzustellen.\n" +"\n" + +#: src/link.c:98 +#, c-format +msgid "cannot create link %s to %s" +msgstr "Erzeugen von Verknüpfung %s zu %s nicht möglich" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "Mike Parker und David MacKenzie" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "" +"%s: Warnung: Erstellen einer harten Verknüpfung auf eine symbolische\n" +" Verknüpfung ist nicht portabel" + +#: src/ln.c:174 +#, c-format +msgid "%s: hard link not allowed for directory" +msgstr "%s: harte Verknüpfung für Verzeichnisse nicht erlaubt" + +# %s: kann kein Verzeichnis überschreiben +#: src/ln.c:246 +#, c-format +msgid "%s: cannot overwrite directory" +msgstr "%s: Überschreiben des Verzeichnisses nicht möglich" + +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "%s: %s ersetzen? " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: Datei existiert" + +#: src/ln.c:304 +#, c-format +msgid "create symbolic link %s to %s" +msgstr "Erzeugen der symbolischen Verknüpfung %s zu %s" + +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "Erzeugen der harten Verknüpfung %s zu %s" + +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "Erzeugen der symbolischen Verknüpfung %s zu %s" + +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "Erzeugen der harten Verknüpfung %s zu %s" + +#: src/ln.c:339 +#, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"Aufruf: %s [OPTION]... ZIEL [VERKNÜPFUNGSNAME]\n" +" oder: %s [OPTION]... ZIEL... VERZEICHNIS\n" +" oder: %s [OPTION]... --target-directory=VERZEICHNIS ZIEL...\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" +"Erzeugen einer Verknüpfung des angegebenen ZIELES mit optionaler " +"VERKNÜPFUNG.\n" +"Wenn mehr als ein ZIEL angegeben wird, muss das letzte Argument ein " +"Verzeichnis\n" +"sein. Erzeugen von Verknüpfungen für jedes ZIEL in VERZEICHNIS. Als " +"Standard-\n" +"vorgabe werde harte Verknüpfungen erstellt, symbolische Verknüpfungen\n" +"mit --symbolic. Beim Erzeugen von harten Verknüpfungen muss jedes ZIEL\n" +"existieren.\n" +"\n" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" +" --backup=[KONTROLLE] Sicherungen für vorhandene Zieldateien " +"erzeugen.\n" +" -b Wie --backup, akzeptiert aber kein Argument.\n" +" -d, -F, --directory Verzeichnisse hart verknüpfen. (Nur Super-" +"User)\n" +" -f, --force Vorhandene Ziele entfernen.\n" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" +" -n, --no-dereference Ein Ziel, das eine symbolische Verknüpfung\n" +" auf ein Verzeichnis ist, wie normale Datei\n" +" behandeln.\n" +" -i, --interactive Nachfrage vor Entfernen vorhandener Ziele.\n" +" -s, --symbolic Symbolische statt harter Verknüpfung " +"erzeugen.\n" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" +" -S, --suffix=SUFFIX Normale Anhänge für Sicherungen " +"überschreiben.\n" +" --target-directory=VERZ Angabe des VERZeichnisses, in dem die " +"Verknüp-\n" +" fungen erstellt werden sollen.\n" +" -v, --verbose Jeden Dateinamen vor dem Verknüpfen " +"ausgeben.\n" + +#: src/ln.c:521 +#, c-format +msgid "%s: specified target directory is not a directory" +msgstr "%s: angegebenes Zielverzeichnis ist kein Verzeichnis" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "" +"Beim Erzeugen mehrerer Verknüpfungen muss das letzte Argument ein " +"Verzeichnis sein" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "Aufruf: %s [OPTION]\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" +"Den Namen des aktuellen Benutzers ausgeben.\n" +"\n" + +#: src/logname.c:99 +#, c-format +msgid "%s: no login name\n" +msgstr "%s: Kein Loginname\n" + +#: src/ls.c:673 +msgid "%b %e %Y" +msgstr "%e. %b %Y " + +#: src/ls.c:681 +msgid "%b %e %H:%M" +msgstr "%e. %b %H:%M" + +#: src/ls.c:1307 +#, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "Ungültiger Wert der Umgebungsvariable QUOTING_STYLE wird ignoriert: %s" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "Ungültige Breite in Umgebungsvariable COLUMNS wird ignoriert: %s" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "Ungültige Tab-Größe in Umgebungsvariable TABSIZE wird ignoriert: %s" + +#: src/ls.c:1482 +#, c-format +msgid "invalid line width: %s" +msgstr "ungültige Zeilenbreite: %s" + +#: src/ls.c:1556 +#, c-format +msgid "invalid tab size: %s" +msgstr "ungültige Tabulatorgröße: %s" + +#: src/ls.c:1722 +#, c-format +msgid "invalid time style format %s" +msgstr "Ungültiges Zeitformat %s" + +#: src/ls.c:2054 +#, c-format +msgid "unrecognized prefix: %s" +msgstr "Präfix nicht erkannt: %s" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "Wert für Umgebungsvariable LS_COLORS ist syntaktisch fehlerhaft." + +#: src/ls.c:2145 +#, c-format +msgid "cannot determine device and inode of %s" +msgstr "kann Gerät und INode von %s nicht bestimmen" + +#: src/ls.c:2155 +#, c-format +msgid "not listing already-listed directory: %s" +msgstr "zeige schon angezeigtes Verzeichnis nicht an: %s" + +#: src/ls.c:2208 src/remove.c:929 +#, c-format +msgid "reading directory %s" +msgstr "lese Verzeichnis %s" + +#: src/ls.c:2603 +#, c-format +msgid "cannot compare file names %s and %s" +msgstr "Kann Dateinamen %s und %s nicht vergleichen." + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" +"Auflistung von Informationen der DATEIen (Standardvorgabe ist das momentane\n" +"Verzeichnis). Alphabetisches Sortieren der Einträge, falls weder -cftuSUX\n" +"noch --sort angegeben.\n" +"\n" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" +" -a, --all Einträge, die mit . beginnen, nicht verstecken\n" +" -A, --almost-all implizierte . und .. nicht anzeigen\n" +" --author den Urheber jeder Datei ausgeben\n" +" -b, --escape nicht-druckbarer Zeichen oktale ausgeben\n" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" +" --block-size=GRÖßE GRÖßE große Blöcke verwenden\n" +" -B, --ignore-backups Einträge, die mit ~ enden, nicht ausgeben\n" +" -c mit -lt: Sortieren nach und Anzeige von ctime \n" +" (Zeit der letzten Veränderung der Datei-" +"Status-\n" +" informationen); mit -l: ctime anzeigen und " +"nach\n" +" Namen sortieren\n" + +#: src/ls.c:3784 +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" +" -C Einträge mehrspaltig ausgeben\n" +" --color[=WANN] Kontrolle, wann Farbe zum Unterscheiden der " +"Datei-\n" +" typen eingesetzt wird; WANN kann " +"»never« (nie),\n" +" »always« (immer) oder »auto« sein\n" +" -d, --directory Verzeichnis-Einträge statt der Inhalte " +"anzeigen,\n" +" symbolische Verknüpfungen nicht verfolgen\n" +" -D, --dired Ausgabe für den »dired«-Modus im Emacs " +"formatieren\n" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" +" -f nicht sortieren, -aU aktivieren, -lst " +"deaktiviern\n" +" -F, --classify ein Zeichen (einen von */=@|) zur Typisierung\n" +" anhängen\n" +" --format=WORT across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time sowohl volles Datum als auch volle Zeit " +"anzeigen\n" + +#: src/ls.c:3799 +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" +" -g wie -l, aber Eigner nicht auflisten\n" +" -G, --no-group Ausgabe von Gruppen-Informationen unterdrücken\n" +" -h, --human-readable Ausgabe von Größen in menschenlesbarem Format\n" +" (z.B. 1K 234M 2G)\n" +" --si wie -h, aber mit 1000 statt 1024 als Teiler\n" +" -H, --dereference-command-line symbolischen Verknüpfungen, die auf der\n" +" Kommandozeile aufgeführt sind, folgen.\n" +" --dereference-command-line-symlink-to-dir\n" +" symbolischen Verknüpfungen auf der " +"Kommandozeile,\n" +" die auf Verzeichnisse zeigen, folgen\n" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" +" --indicator-style=WORT Indikator des Stils WORT an Namen der " +"Einträge\n" +" anhängen: »none« (Standardvorgabe),\n" +" »classify« (-F), »file-type« (-p).\n" +" -i, --inode Ausgabe der INode-Nummer.\n" +" -I, --ignore=MUSTER Implizierte Einträge, die auf das Muster " +"MUSTER\n" +" passen, nicht anzeigen.\n" +" -k wie »--block-size=1K«\n" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" +" -l Lange Listenformat verwenden.\n" +" -L, --dereference Bei symbolischen Verknüpfungen die " +"Eigenschaften\n" +" der jeweiligen Zieldatei anzeigen.\n" +" -m So viele Einträge wie möglich, durch Kommata\n" +" getrennt, in eine Zeile packen.\n" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" +" -n, --numeric-uid-gid Wie -l, aber numerische UIDs und GIDs " +"anzeigen.\n" +" -N, --literal Rohe Eintragsnamen anzeigen (z. B. Kontroll-\n" +" zeichen nicht besonders behandeln).\n" +" -o Wie -l, aber ohne Gruppen-Informationen.\n" +" -p, --file-type Anhängen eines Zeichens zur Typisierung jedes\n" +" Eintrags (eines aus »/=@|«).\n" + +#: src/ls.c:3831 +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -q, --hide-control-chars »?« statt nicht-druckbarer Zeichen ausgeben.\n" +" --show-control-chars Nicht-druckbare Zeichen anzeigen, wie sie sind\n" +" (Standardvorgabe, außer wenn das Programm " +"»ls« \n" +" ist und die Ausgabe auf ein Terminal geht).\n" +" -Q, --quote-name Eintrags-Namen in doppelte Anführungszeichen.\n" +" --quoting-style=WORT Anführungszeichen-Stil WORT benutzen:\n" +" literal, locale, shell, shell-always, c, " +"escape.\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" +" -r, --reverse Umgekehrte Reihenfolge beim Sortieren.\n" +" -R, --recursive Unterverzeichnissen rekursive ausgeben.\n" +" -s, --size Größe jeder Datei in Blöcken ausgeben.\n" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" +" -S Nach Dateigröße sortieren.\n" +" --sort=WORT extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORT Zeit als WORT anzeigen statt der " +"Änderungszeit:\n" +" atime, access, use, ctime oder status. Die\n" +" angegebene Zeit als Sortierkriterium\n" +" bei --sort=time verwenden.\n" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" +" --time-style=STIL Zeiten mittels Stil STIL anzeigen:\n" +" full-iso, iso, locale, posix-iso, +FORMAT\n" +" FORMAT wie bei »date«; hat FORMAT die Form\n" +" FORMAT1FORMAT2, wird FORMAT1 für " +"nicht\n" +" kürzlich geänderte Dateien verwendet und " +"FORMAT2\n" +" für kürzlich geänderte; beginnt STIL mit " +"»posix-«,\n" +" ist STIL nur außerhalb der POSIX-Locale " +"gültig.\n" +" -t Nach Änderungszeit sortieren.\n" +" -T, --tabsize=SPALTEN Tabstops auf alle SPALTEN Zeichen setzen statt " +"8.\n" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" +" -u mit -lt: Sortieren nach und Anzeige von " +"Zugriffs-\n" +" zeit. Mit -l: Anzeige von Zugriffszeit und\n" +" sortieren nach Namen. Sonst: Sortieren " +"nach \n" +" Zugriffszeit.\n" +" -U Nicht sortieren; Einträge in Reihenfolge des\n" +" Verzeichnisses auflisten.\n" +" -v Nach Version sortieren.\n" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" +" -w, --width=SPALTEN Gegebene Bildschirmbreite statt des momentanen\n" +" Wertes annehmen.\n" +" -x Einträge in Zeilen statt in Spalten auflisten.\n" +" -X Alphabetisch nach der Erweiterung sortieren.\n" +" -1 Eine Datei pro Zeile auflisten.\n" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" +"\n" +"Standardmäßig werden keine Farben zum Unterscheiden der Dateitypen " +"verwandt. \n" +"Das ist das Äquivalent zur Verwendung von --color=none. Verwendung der\n" +"--color-Option ohne das optionale WANN-Argument ist äquivalent zur " +"Verwendung\n" +"von --color=always. Mit --color=auto werden Farbcodes ausgegeben, wenn die\n" +"Standardausgabe mit einem Terminal (tty) verbunden ist.\n" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "Ulrich Drepper und Scott Miller" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"Aufruf: %s [OPTION] [DATEI]...\n" +" oder: %s [OPTION] --check [DATEI]\n" +"%s-Prüfsummen (%d Bits) ausgeben oder überprüfen.\n" +"Ohne DATEI oder wenn DATEI »-« ist, Standardeingabe lesen.\n" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" +"\n" +" -b, --binary Dateien im Binärmodus lesen (Vorgabe unter DOS/" +"Windows)\n" +" -c, --check %s-Summen gegen angegebene Liste gegenprüfen\n" +" -t, --text Dateien im Textmodus lesen (Vorgabe)\n" +"\n" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" +"Die folgenden beiden Optionen sind nur beim Überprüfen sinnvoll:\n" +" --status nichts ausgeben, der Statuscode zeigt Erfolg an\n" +" -w, --warn bei ungeeignet formatierten Prüfsummenzeilen warnen\n" +"\n" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" +"\n" +"Die Summen werden berechnet, wie in %s beschrieben. Beim Überprüfen sollte\n" +"die Eingabe eine frühere Ausgabe dieses Programms sein. Die normale\n" +"Arbeitsweise ist es, eine Zeile mit Prüfsumme, einem Zeichen, das den Typ\n" +"anzeigt (»*« für binär, » « für Text), und dem Namen jeder Datei " +"auszugeben.\n" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "%s: %lu: nicht korrekt formatierte %s-Prüfsummenzeile" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "%s: Fehlschlag bei open oder read\n" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "Fehlschlag" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "Ok" + +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%s: Lesefehler" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "%s: keine korrekt formatierte %s-Prüfsummenzeile gefunden" + +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "WARNUNG: %d von %d aufgeführten %s konnten nicht gelesen werden" + +#: src/md5sum.c:473 +msgid "file" +msgstr "Datei" + +#: src/md5sum.c:473 +msgid "files" +msgstr "Dateien" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "Warnung: %d von %d berechneten %s passten NICHT" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "Prüfsumme" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "Prüfsummen" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" +"Die Optionen --binary und --text sind bei der Kontrolle von Prüfsummen " +"sinnlos" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "Die Optionen --string und --check schließen sich gegenseitig aus" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "Die Option --status ist nur bei der Kontrolle von Prüfsummen sinnvoll" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "" +"Die Option --warn ist nur nur bei der Kontrolle von Prüfsummen sinnvoll" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "Bei Verwendung von --string dürfen keine Dateien angegeben werden" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "Bei Verwendung von --check ist nur ein Argument zulässig" + +#: src/mkdir.c:61 +#, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "Aufruf: %s [OPTION] VERZEICHNIS...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" +"Erzeugen der/des Verzeichnisse(s), wenn sie noch nicht existieren.\n" +"\n" + +#: src/mkdir.c:69 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +" -m, --mode=MODUS Zugriffsrechte setzen (wie chmod), nicht rwxrwxrwx - " +"umask.\n" +" -p, --parents kein Fehler, wenn vorhanden; übergeordnete\n" +" Verzeichnissen erzeugen, wenn notwendig\n" +" -v, --verbose für jedes angelegte Verzeichnis eine Meldung ausgeben\n" + +#: src/mkdir.c:113 +#, c-format +msgid "created directory %s" +msgstr "Verzeichnis %s angelegt" + +#: src/mkdir.c:190 +#, c-format +msgid "cannot set permissions of directory %s" +msgstr "Setzen der Zugriffsrechte für Verzeichnis %s nicht möglich" + +#: src/mkfifo.c:55 +#, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "Aufruf: %s [OPTION] NAME...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" +"Benannten Pipes (FIFOS) mit den angegebenen NAMEn erzeugen.\n" +"\n" + +#: src/mkfifo.c:63 src/mknod.c:64 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" +" -m, --mode=MODUS Zugriffsmodus setzen (wie mit chmod), nicht a=rw - " +"umask\n" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "FIFO-Dateien werden nicht unterstützt" + +#: src/mkfifo.c:123 src/mknod.c:127 +msgid "invalid mode" +msgstr "ungültiger Zugriffsmodus" + +#: src/mkfifo.c:142 +#, c-format +msgid "cannot set permissions of fifo %s" +msgstr "Setzen der Zugriffsrechte für FIFO %s nicht möglich" + +#: src/mknod.c:55 +#, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "Aufruf: %s [OPTION]... NAME TYP [MAJOR MINOR]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" +"Spezial-Datei NAME vom angegebenen TYP erzeugen.\n" +"\n" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" +"\n" +"Sowohl MAJOR als auch MINOR müssen angegeben werden, wenn der TYP b, c oder " +"u\n" +"ist, und müssen weggelassen werden für TYP p. Beginnen MAJOR oder MINOR mit " +"0x\n" +"oder 0X, wird die Zahl hexadezimal interpretiert; anderenfalls, wenn sie mit " +"0\n" +"beginnen, oktal; anderenfalls dezimal. TYP kann sein:\n" + +#: src/mknod.c:76 +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"\n" +" b eine blockorientierte (gepufferte) Spezial-Datei anlegen\n" +" c, u eine zeichenorienterte (ungepufferte) Spezial-Datei anlegen\n" +" p eine FIFO anlegen\n" + +#: src/mknod.c:141 +msgid "wrong number of arguments" +msgstr "falsche Anzahl an Argumenten" + +#: src/mknod.c:153 +msgid "block special files not supported" +msgstr "Blockorientierte Spezialdateien werden nicht unterstützt" + +#: src/mknod.c:162 +msgid "character special files not supported" +msgstr "Zeichenorientierte Spezialdateien werden nicht unterstützt" + +#: src/mknod.c:171 +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" +"Beim Erzeugen von Spezialdateien müssen Minor- und Major-\n" +"Gerätenummern angegeben werden" + +#: src/mknod.c:186 +#, c-format +msgid "invalid major device number %s" +msgstr "Ungültige Major-Gerätenummer %s" + +#: src/mknod.c:191 +#, c-format +msgid "invalid minor device number %s" +msgstr "Ungültige Minor-Gerätenummer %s" + +#: src/mknod.c:196 +#, c-format +msgid "invalid device %s %s" +msgstr "Ungültiges Gerät %s %s" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "" +"Major- und Minor-Nummer dürfen bei einer FIFO-Datei nicht angegeben werden" + +#: src/mknod.c:231 +#, c-format +msgid "cannot set permissions of %s" +msgstr "Setzen der Zugriffsrechte für %s nicht möglich" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "Mike Parker, David MacKenzie und Jim Meyering" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Umbenennen von QUELLE in ZIEL, oder QUELLE(en) in VERZEICHNIS verschieben\n" +"\n" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" +" --backup[=KONTROLLE] Sicherung vor Entfernen anlegen\n" +" -b wie --backup, akzeptiert aber keine " +"Argumente\n" +" -f, --force existierende Ziele entfernen, nie fragen\n" +" äquivalent zu --reply=yes\n" +" -i, --interactive vor Überschreiben nachfragen\n" +" äquivalent zu --reply=query\n" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" +" --reply={yes,no,query} Nachfrage bei existierender Zieldatei: immer " +"ja,\n" +" immer nein, nachfragen\n" +" --strip-trailing-slashes Schrägstriche vom Ende jedes QUELLE-" +"Arguments\n" +" entfernen\n" +" -S, --suffix=SUFFIX die normale Sicherungs-Erweiterung " +"überschreiben\n" + +#: src/mv.c:339 +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +" --target-directory=VERZ alle Quellen in Verzeichnis VERZ verschieben\n" +" -u, --update nur ältere oder brandneue Dateien " +"verschieben\n" +" -v, --verbose Erklärung über Abläufe ausgeben\n" + +#: src/mv.c:467 +#, c-format +msgid "specified target, %s is not a directory" +msgstr "angegebenes Ziel, %s, ist kein Verzeichnis" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "" +"Beim Verschieben mehrerer Dateien muss das letzte Argument ein Verzeichnis " +"sein." + +#: src/nice.c:67 +#, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "Aufruf: %s [OPTION] [BEFEHL [ARGUMENT]...]\n" + +#: src/nice.c:68 +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" +"BEFEHL mit festgelegter Priorität ausführen.\n" +"Ohne BEFEHL, die aktuelle Priorität ausgeben. PRIO ist voreingestellt mit " +"10.\n" +"Der Bereich reicht von -20 (höchste Priorität) bis 19 (niedrigste).\n" +"\n" +" -n, --adjustment=PRIO Priorität zunächst um PRIO erhöhen\n" + +#: src/nice.c:109 src/nice.c:122 +#, c-format +msgid "invalid option `%s'" +msgstr "ungültige Option »%s«" + +#: src/nice.c:147 +#, c-format +msgid "invalid priority `%s'" +msgstr "ungültige Priorität »%s«" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "Mit einer Priorität muss ein Befehl angegeben werden" + +#: src/nice.c:178 src/nice.c:187 +msgid "cannot get priority" +msgstr "Priorität ist nicht feststellbar" + +#: src/nice.c:192 +msgid "cannot set priority" +msgstr "Priorität kann nicht gesetzt werden" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "Scott Bartram und David MacKenzie" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Jede DATEI mit Zeilennummern nach Standardausgabe schreiben.\n" +"Ohne DATEI oder wenn DATEI »-« ist, Standardeingabe lesen.\n" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" +" -b, --body-numbering=STIL STIL zur Nummerierung benutzen\n" +" -d, --section-delimiter=CC CC benutzen, um logische Seiten zu " +"trennen\n" +" -f, --footer-numbering=STIL STIL benutzen, um Fußzeilen zu " +"nummerieren\n" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" +" -h, --header-numbering=STIL STIL benutzen, um Kopfzeilen zu " +"nummerieren\n" +" -i, --page-increment=ANZAHL Zeilennummerinkrement in jeder Zeile\n" +" -l, --join-blank-lines=ANZAHL ANZAHL Leerzeilen zählen als eine\n" +" -n, --number-format=FORMAT Zeilennummern gemäß FORMAT einfügen\n" +" -p, --no-renumber logische Zeilennummer am Anfang von " +"logischen\n" +" Seiten nicht zurücksetzen\n" +" -s, --number-separator=ZKETTE ZKETTE nach (möglicher) Zeilennummer " +"einfügen\n" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" +" -v, --first-page=ANZAHL erste Zeilennummer auf jeder logischen " +"Seite\n" +" -w, --number-width=ANZAHL ANZAHL Spalten für Zeilennummern benutzen\n" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" +"\n" +"Standardeinstellung ist -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC sind\n" +"zwei Begrenzungszeichen, um logische Seiten zu trennen, ein fehlendes " +"zweites\n" +"Zeichen impliziert »:«. Geben Sie \\\\ für \\ ein. STIL ist einer aus:\n" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" +"\n" +" a alle Zeilen nummerieren\n" +" t nur nichtleere Zeilen nummerieren\n" +" n keine Zeilen nummerieren\n" +" pREGEXP nur Zeilen nummerieren, auf die REGEXP passt\n" +"\n" +"FORMAT ist eines der folgenden:\n" +"\n" +" ln linksbündig, keine führenden Nullen\n" +" rn rechtsbündig, keine führenden Nullen\n" +" rz rechtsbündig, führende Nullen\n" +"\n" + +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "Ungültige Startzeilennummer: »%s«" + +#: src/nl.c:514 +#, c-format +msgid "invalid line number increment: `%s'" +msgstr "Ungültiges Inkrement für Zeilennummer: »%s«" + +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "Ungültige Anzahl von Leerzeilen: »%s«" + +#: src/nl.c:541 +#, c-format +msgid "invalid line number field width: `%s'" +msgstr "Ungültige Breite des Feldes für die Zeilennummer: »%s«" + +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"Aufruf: %s [OPTION]... [DATEI]...\n" +" oder: %s --traditional [DATEI] [[+]OFFSET [[+]MARKE]]\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"\n" +"Eine eindeutige Darstellung der DATEI, auf Standardausgabe ausgeben " +"(Vorgabe:\n" +"Oktalzahlen). Bei mehr als einem Argument DATEI, die Dateien in der\n" +"angegebenen Folge verketten und die Eingabe zu bilden.\n" +"Ohne DATEI oder wenn DATEI »-« ist, Standardeingabe lesen.\n" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "" +"Erforderliche Argumente für lange Optionen sind für kurze auch notwendig.\n" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" +" -A, --address-radix=RADIX entscheiden, wie Dateioffsets ausgegeben " +"werden\n" +" -j, --skip-bytes=BYTES BYTES Eingabebytes am Anfang jeder Datei\n" +" übergehen\n" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" +" -N, --read-bytes=BYTES Ausgabe auf BYTES Eingabebytes pro Datei\n" +" begrenzen\n" +" -s, --strings[=BYTES] Ketten mit wenigstens BYTES alphanumerischen\n" +" Zeichen ausgeben\n" +" -t, --format=TYP Ausgabeformat(e) wählen\n" +" -v, --output-duplicates nicht * benutzen, um Zeilenunterdrückung\n" +" anzuzeigen\n" +" -w, --width[=BYTES] Anzahl BYTES pro Ausgabezeile ausgeben\n" +" --traditional Argumente in traditioneller Form akzeptieren\n" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" +"\n" +"Traditionell spezifizierte Formatangaben können gemischt werden; sie werden\n" +"akkumuliert:\n" +" -a dasselbe wie -t a, benannte Zeichen wählen\n" +" -b dasselbe wie -t oC, Oktalbytes wählen\n" +" -c dasselbe wie -t c, ASCII-Zeichen oder Backslash-Escapes wählen\n" +" -d dasselbe wie -t u2, dezimale Shorts ohne Vorzeichen wählen\n" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" +" -f dasselbe wie -t fF, Fließkommazahlen wählen\n" +" -h dasselbe wie -t x2, hexadezimale Shorts wählen\n" +" -i dasselbe wie -t d2, dezimale Shorts wählen\n" +" -l dasselbe wie -t d4, dezimale Longs wählen\n" +" -o dasselbe wie -t o2, oktale Shorts wählen\n" +" -x dasselbe wie -t x2, hexadezimale Shorts wählen\n" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" +"\n" +"Bei Verwendung der älteren Syntax (dem zweiten Aufrufformat), steht OFFSET " +"für\n" +"-j OFFSET. MARKE ist die Pseudoadresse des ersten auszugebenden Bytes; sie\n" +"wird entsprechend erhöht, wenn die Ausgabe fortschreitet. Für OFFSET und " +"MARKE\n" +"bedeutet ein 0x- oder 0X-Präfix hexadezimal, Suffixe können ».« für oktal " +"und\n" +"»b« für multipliziert mit 512 sein.\n" +"\n" +"TYP setzt sich zusammen aus einer oder mehreren dieser Spezifikationen:\n" +"\n" +" a ein benanntes Zeichen\n" +" c ASCII-Zeichen oder Backslash-Escape\n" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" +" d[ANZAHL] dezimal mit Vorzeichen, ANZAHL Bytes pro Zahl\n" +" f[ANZAHL] Fließkomma, ANZAHL Bytes pro Zahl\n" +" o[ANZAHL] oktal, ANZAHL Bytes pro Zahl\n" +" u[ANZAHL] dezimal ohne Vorzeichen, ANZAHL Bytes pro Zahl\n" +" x[ANZAHL] hexadezimal, ANZAHL Bytes pro Zahl\n" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" +"\n" +"ANZAHL ist eine Zahl. Wenn TYP einer von »d«, »o«, »u«, oder »x« ist, kann\n" +"ANZAHL auch »C« für sizeof(char), »S« für sizeof(short) , »I« für sizeof" +"(int)\n" +"oder »L« für sizeof(long) sein. Wenn TYP »f« ist, kann ANZAHL auch »F« für\n" +"sizeof(float), »D« für sizeof(double) oder »L« für sizeof(long double) " +"sein.\n" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" +"\n" +"RADIX ist »d« für dezimal, »o« für oktal, »x« für hexadezimal oder »n« für\n" +"nichts. BYTES ist hexadezimal mit 0x- oder 0X-Präfix, wird multipliziert " +"mit\n" +"512 für Suffix »b«, mit 1024 für »k« und mit 1048576 für »m«. Wird ein " +"Suffix\n" +"»z« zu einem belibigen Typ angehängt, werden am Ende jeder Zeile die " +"druckbaren\n" +"Zeichen ausgegeben. " + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" +"--string ohne Zahl impliziert »3«. --width ohne Zahl impliziert »32«.\n" +"Standard ist -A o -t d2 -w 16.\n" + +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "Ungültige Typbezeichnung »%s«" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" +"Ungültiger Typ »%s«;\n" +"dieses System hat keinen Typ für %lu-Byte große Ganzzahlen" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" +"Ungültiger Typ »%s«;\n" +"dieses System hat keinen Typ für %lu-Byte große Gleitkommazahlen" + +#: src/od.c:917 +#, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "Ungültiges Zeichen »%c« in Typenbezeichnung »%s«" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "" +"Es ist nicht möglich, hinter das Ende der kombinierten Eingabe vorzurücken" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "Offset der alten Art" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "" +"Ungültiger Ausgabeadressradix »%c«; es muss ein Zeichen aus [doxn] sein" + +#: src/od.c:1717 +msgid "skip argument" +msgstr "Argument übergehen " + +#: src/od.c:1725 +msgid "limit argument" +msgstr "Argument begrenzen" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "Minimale Zeichenkettenlänge" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "%s ist zu groß" + +#: src/od.c:1804 +msgid "width specification" +msgstr "Breitenangabe" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "Bei der Ausgabe von Zeichenketten darf kein Typ angegeben werden" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "Ungültiger zweiter Operand im Kompatibilitätsmodus »%s«" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "" +"Im Kompatibilitätsmodus müssen die letzten beiden Argumente Offsets sein" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "" +"Im Kompatibilitätsmodus dürfen nicht mehr als 3 Argumente angegeben werden" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "Warnung: ungültige Breite %lu; %d wird benutzt" + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "%d: fmt=\"%s\" width=%d\n" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "David M. Ihnat und David MacKenzie" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "Standardeingabe ist geschlossen" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Zeilen auf Standardausgabe ausgeben, die aus sequenziell sich " +"entsprechenden\n" +"Zeilen jeder DATEI bestehen, getrennt durch Tabulatoren. Ohne DATEI oder " +"wenn\n" +"DATEI »-« ist, Standardeingabe lesen.\n" +"\n" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" +" -d, --delimiters=LISTE Zeichen aus LISTE anstelle von Tabulatoren " +"benutzen\n" +" -s, --serial Dateien nacheinander ausgeben anstelle parallel\n" + +#: src/pathchk.c:146 +#, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "Aufruf: %s [OPTION]... NAME...\n" + +#: src/pathchk.c:147 +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" +"Nicht portable Konstruktionen in NAME analysieren.\n" +"\n" +" -p, --portability für alle POSIX-Systeme überprüfen, nicht nur dieses\n" + +#: src/pathchk.c:237 +#, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "Pfad »%s« enthält nicht portables Zeichen »%c«" + +#: src/pathchk.c:257 +#, c-format +msgid "`%s' is not a directory" +msgstr "»%s« ist kein Verzeichnis" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "Verzeichnis »%s« ist nicht lesbar" + +#: src/pathchk.c:355 +#, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "" +"Name »%s« hat eine Länge von %ld; das überschreitet den Höchstwert von %ld" + +#: src/pathchk.c:381 +#, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "Pfad »%s« hat eine Länge von %d; überschreitet den Höchstwert von %ld" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "Joseph Arceneaux, David MacKenzie und Kaveh Ghazi" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "Loginname: " + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "Im richtigen Leben: " + +#: src/pinky.c:298 +msgid "???\n" +msgstr "???\n" + +#: src/pinky.c:318 +msgid "Directory: " +msgstr "Verzeichnis: " + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "Shell: " + +#: src/pinky.c:341 +msgid "Project: " +msgstr "Projekt: " + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "Plan:\n" + +#: src/pinky.c:386 +msgid "Login" +msgstr "Login" + +#: src/pinky.c:388 +msgid "Name" +msgstr "Name" + +#: src/pinky.c:389 +msgid " TTY" +msgstr " TTY" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "Untätig" + +#: src/pinky.c:392 +msgid "When" +msgstr "Wann" + +#: src/pinky.c:395 +msgid "Where" +msgstr "Wo " + +#: src/pinky.c:469 +#, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "Aufruf: %s [OPTION]... [BENUTZER]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" +"\n" +" -l langes Format für den angegebenen BENUTZER erzeugen\n" +" -b ohne Home-Verzeichnis und Shell der Benutzer (bei langem\n" +" Format)\n" +" -h ohne Projekt-Datei der Benutzer (bei langem Format)\n" +" -p ohne Plan-Datei der Benutzer (bei langem Format)\n" +" -s kurzes Format erzeugen (dies ist die Vorgabe)\n" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" +" -f ohne Kopfzeile über den Spalten (bei kurzem Format)\n" +" -w ohne Namen der Benutzer (bei kurzem Format)\n" +" -i ohne volle Namen und entfernte Rechner der Benutzer (bei\n" +" kurzem Format)\n" +" -q ohne volle Namen, entfernte Rechner und Idle-Zeit der " +"Benutzer\n" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" +"\n" +"Ein abgespecktes »finger«-Programm zum Anzeigen von Benutzerinformationen.\n" +"Als utmp-Datei wird %s genommen.\n" + +#: src/pinky.c:574 +msgid "no username specified; at least one must be specified when using -l" +msgstr "" +"kein Benutzername angegeben; wenigstens einer muss angegeben werden, wenn " +"die\n" +"Option -l verwendet wird" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "Pete TerMaat und Roland Huebner" + +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "--pages: ungültige Angabe einer Seitenfolge: »%s«" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "--pages: ungültige Angabe der Startseite: »%s«" + +#: src/pr.c:829 +#, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "--pages: ungültige Angabe der Endseite: »%s«" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "--pages: Angabe der Startseite ist größer als Endseite" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "--pages=ERSTE_SEITE[:LETZTE_SEITE]: fehlendes Argument" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "--columns=SPALTE: ungültige Angabe der Spaltenanzahl: »%s«" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "-l SEITEN_LÄNGE: ungültige Angabe der Zeilenanzahl: »%s«" + +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "-N ZAHL: ungültige Angabe der Startzeilennummer: »%s«" + +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "-o RAND: ungültige Angabe des Zeilenoffsets: »%s«" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "-w SEITEN_BREITE: ungültige Angabe der Zeichenanzahl: »%s«" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "-W SEITEN_BREITE: ungültige Angabe der Zeichenanzahl: »%s«" + +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "%e. %b. %Y, %H:%M" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "" +"Es ist nicht möglich, die Anzahl der Spalten bei Parallel-Ausgabe " +"festzulegen." + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "" +"Es ist nicht möglich, gleichzeitig bei Parallel- und Überkreuz-Ausgabe\n" +"festzulegen." + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "»-%c« Extrazeichen oder ungültige Zahl im Argument: »%s«" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "Seitenbreite zu schmal" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "Startseitenangabe ist größer als Gesamtseitenzahl: »%d«" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "Seite %d" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "DATEI(en) in Seiten und Spalten unterteilen für eine Druckausgabe.\n" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" +" +ERSTE_SEITE[:LETZTE_SEITE], --pages=ERSTE_SEITE[:LETZTE_SEITE]\n" +" Druck mit ERSTE_[LETZTE_]SEITE beginnen [beenden]\n" +" -SPALTEN, --columns=SPALTEN\n" +" SPALTEN-spaltige Ausgabe erzeugen und Spalten vertikal " +"schreiben,\n" +" es sei denn, -a wurde benutzt. Zahl der Zeilen in jeder " +"Spalte\n" +" ausbalancieren.\n" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" +" -a, --across\n" +" Spalten horizontal statt vertikal schreiben, wird zusammen\n" +" mit -SPALTEN benutzt\n" +" -c, --show-control\n" +" Hut-Notation (^G) und oktale Backslash-Notation benutzen\n" +" -d, --double-space\n" +" doppelter Zeilenvorschub in der Ausgabe\n" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" +" -D, --date-format=FORMAT\n" +" FORMAT für die Datumsausgabe in der Kopfzeile benutzen\n" +" -e[ZEICH[BREITE]], --expand-tabs[=ZEICH[BREITE]]\n" +" Eingabe-ZEICHen (TABs) zu BREITE Leerzeichen (8) ersetzen \n" +" -F, -f, --form-feed\n" +" Seitenvorschübe statt Zeilenvorschübe benutzen, um Seiten zu\n" +" trennen (duch einen 3-Zeilen-Seitenkopf bei -F oder einen\n" +" 5-Zeilen-Seitenkopf und -fuß ohne -F)\n" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" +" -h KOPF, --header=KOPF\n" +" KOPF als zentrierten Seitenkopf anstelle des Dateinamens " +"benutzen\n" +" -h \"\" druckt eine leere Zeile, nicht -h\"\" benutzen.\n" +" -i[ZEICH[BREITE]], --output-tabs[=ZEICH[BREITE]]\n" +" Leerzeichen mit ZEICHen (TABs) auf BREITE (8) ersetzen\n" +" -J, --join-lines\n" +" zu vollen Zeilen zusammenziehen, gleichzeitig die durch -W\n" +" veranlasste Zeilenbeschneidung abschalten, keine\n" +" Spaltenausrichtung, --sep-string[=ZKETTE] setzt Trennzeichen\n" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" +" -l SEITENLÄNGE, --length=SEITENLÄNGE\n" +" Seitenlänge auf SEITENLÄNGE (66) Zeilen setzen\n" +" (Vorgabe: 56 Zeilen, und mit -F 63)\n" +" -m, --merge alle Dateien parallel ausgeben, eine in jeder Spalte,\n" +" Zeilen abschneiden, aber Zeilen voller Länge bei -J " +"vereinigen\n" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" +" -n[SEP[ZIFFERN]], --number-lines[=SEP[ZIFFERN]]\n" +" Zeilen nummerieren, ZIFFERN (5) Ziffern benutzen, dann SEP " +"(TAB),\n" +" Vorgabe: Nummerierung beginnt mit der ersten Zeile der " +"Eingabe\n" +" -N ZAHL, --first-line-number=ZAHL\n" +" Nummerierung mit ZAHL bei der ersten Zeile der ersten Seite\n" +" beginnen, die ausgedruckt wird (siehe auch +ERSTE_SEITE)\n" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" +" -o RAND, --indent=RAND\n" +" Zeile um RAND (null) Leerzeichen einrücken (beeinflusst nicht\n" +" -w oder -W), RAND wird zu SEITEN_BREITE addiert\n" +" -r, --no-file-warnings\n" +" Warnung unterdrücken, wenn eine Datei nicht geöffnet werden " +"kann\n" + +# CHECKIT +# space missing +# 2001-11-23 20:32:53 CET -ke- +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" +" -s[ZEICHEN],--separator[=ZEICHEN]\n" +" Spalten durch ein einziges Zeichen trennen, Vorgabe für\n" +" ZEICHEN ist das TAB-Zeichen ohne -w und \"kein Zeichen" +"\"\n" +" mit -w -s[ZEICHEN] schaltet Zeilenabschneidung ab bei " +"allen\n" +" drei Spaltenoptionen (-SPALTE|-a -SPALTE|-m), außer bei -" +"w\n" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr " -SZKETTE, --sep-string[=ZKETTE]\n" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" +" -S[ZKETTE], --sep-string[=ZKETTE]\n" +" Spalten durch eine optionale ZKETTE trennen,\n" +" ohne -S: Vorgabetrennzeichen ist mit -J und\n" +" sonst (dasselbe wie -S\" \"), hat keine\n" +" Auswirkung auf Spaltenoptionen\n" +" -t, --omit-header Kopf- und Fußzeilen unterdrücken\n" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" +" -T, --omit-pagination\n" +" Kopf- und Fußzeilen unterdrücken, Seitenvorschubangaben " +"der\n" +" Eingabedateien ignorieren\n" +" -v, --show-nonprinting\n" +" oktale Backslash-Notation benutzen\n" +" -w SEITEN_BREITE, --width=SEITEN_BREITE\n" +" Seitenbreite auf SEITEN_BREITE (72) Zeichen nur für " +"Ausgabe\n" +" mehrfacher Textspalten setzen, -s[Zeichen] schaltet (72) " +"ab\n" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" +" -W SEITEN_BREITE, --page-width=SEITEN_BREITE\n" +" Seitenbreite immer auf SEITEN_BREITE (72) Zeichen " +"setzen,\n" +" Zeilen abschneide, es sei denn -J ist gesetzt, kein\n" +" Zusammenspiel mit -S oder -s\n" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" +"\n" +"-T wird impliziert von -l nn, wenn nn <= 10 oder <= 3 mit -F. Ohne DATEI " +"oder\n" +"wenn DATEI »-« ist, Standardeingabe lesen.\n" + +#: src/printenv.c:43 +msgid "David MacKenzie and Richard Mlynarik" +msgstr "David MacKenzie und Richard Mlynarik" + +#: src/printenv.c:63 +#, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" +"Aufruf: %s [VARIABLE]...\n" +" oder: %s OPTION\n" +"Wenn keine Umgebungs-VARIABLE angegeben ist, alle Variablen ausgeben.\n" +"\n" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "" +"Warnung: %s: Zeichen, die einer Zeichenkonstanten folgen, werden ignoriert" + +#: src/printf.c:100 +#, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"Aufruf: %s FORMAT [ARGUMENT]...\n" +" oder: %s OPTION\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" +"ARGUMENTe entsprechend des angegebenen FORMATs ausgeben.\n" +"\n" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" +"\n" +"FORMAT bestimmt die Ausgabe wie bei der C-Funktion »printf«. " +"Interpretierte\n" +"Folgen sind:\n" +"\n" +" \\\" doppelte Anführungszeichen\n" +" \\0NNN Zeichen mit dem oktalen Wert NNN (0 bis 3 Ziffern)\n" +" \\\\ Backslash\n" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" +" \\a Alarm (BEL)\n" +" \\b Zeichen rückwärts löschen (Backspace)\n" +" \\c keine weitere Ausgabe\n" +" \\f Seitenvorschub\n" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\n Zeilenvorschub\n" +" \\r Wagenrücklauf (Carriage Return)\n" +" \\t horizontaler Tabulatorstopp\n" +" \\v vertikaler Tabulatorstopp\n" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" +" \\xNN Byte mit hexadezimalem Wert NN (1 bis 2 Stellen)\n" +"\n" +" \\uNNNN Zeichen mit hexadezimalem Wert NNNN (4 Stellen)\n" +" \\UNNNNNNNN Zeichen mit hexadezimalem Wert NNNNNNNN (8 Stellen)\n" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" +" %% ein einzelnes %\n" +" %b ARGUMENT als Zeichenkette mit interpretierter »\\«-Maskierung\n" +"\n" +"und alle C-Formatspezifikationen, die mit einem Zeichen aus diouxXfeEgGcs\n" +"enden, wobei die ARGUMENTe zunächst in den richtigen Typ umgewandelt " +"werden.\n" +"Variable Breiten werden behandelt.\n" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "%s: erwartet eine Zahlwert" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "%s: Wert nicht vollständig konvertiert" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "Hexadezimale Zahl fehlt in der Maskierung (Escape)" + +#: src/printf.c:292 +#, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "ungültiger universaler Zeichenname \\%c%0*x" + +#: src/printf.c:472 +#, fuzzy, c-format +msgid "invalid field width: %s" +msgstr "ungültige Zeilenbreite: %s" + +#: src/printf.c:498 +#, fuzzy, c-format +msgid "invalid precision: %s" +msgstr "ungültige Konvertierung: %s" + +#: src/printf.c:519 +#, c-format +msgid "%%%c: invalid directive" +msgstr "%%%c: ungültige Anweisung" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "Aufruf: %s Format [Argument...]\n" + +#: src/printf.c:594 +#, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "Warnung: überflüssige Argumente werden ignoriert, beginnend mit »%s«" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "%s (für reguläre Ausdrücke »%s«)" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"Aufruf: %s [OPTION]... [EINGABE]... (ohne -G)\n" +" oder: %s -G [OPTION]... [EINGABE [AUSGABE]]\n" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" +"Einen permutierten Index der Wörter der Eingabedateien einschließlich " +"Kontext\n" +"ausgeben.\n" +"\n" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" +" -A, --auto-reference automatisch generierte Referenzen ausgeben\n" +" -C, --copyright Copyright und Kopierbedingungen ausgeben\n" +" -G, --traditional mehr wie »ptx« von System V funktionieren\n" +" -F, --flag-truncation=ZKETTE ZKETTE benutzen, um Abschneidungen " +"anzuzeigen\n" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" +" -M, --macro-name=ZKETTE Makroname, der statt »xx« zu benutzen ist\n" +" -O, --format=roff Ausgabe als roff-Anweisungen erzeugen\n" +" -R, --right-side-refs Referenzen nach rechts setzen, in -w nicht\n" +" gezählt\n" +" -S, --sentence-regexp=REGEXP für Zeilen- oder Satzende\n" +" -T, --format=tex Ausgabe als TeX-Anweisungen erzeugen\n" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" +" -W, --word-regexp=REGEXP REGEXP benutzen, um jedes Schlüsselwort\n" +" abzubilden\n" +" -b, --break-file=DATEI Wortendezeichen in dieser Datei\n" +" -f, --ignore-case zum Sortieren Klein- in Großschreibung " +"wandeln\n" +" -g, --gap-size=NUMBER Zwischenraumgröße zwischen Ausgabefeldern\n" +" -i, --ignore-file=DATEI Liste zu ignorierender Wörter aus DATEI " +"lesen\n" +" -o, --only-file=DATEI Wortliste nur aus dieser DATEI lesen\n" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" +" -r, --references erstes Feld jeder Zeile ist eine Referenz\n" +" -t, --typeset-mode - nicht implementiert -\n" +" -w, --width=ANZAHL Ausgabebreite innerhalb der Spalten, ohne " +"die\n" +" Referenzen\n" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" +"\n" +"Ohne DATEI, oder falls DATEI »-« ist, Standardeingabe lesen. Vorgabe: »-" +"F /«.\n" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" +"Dieses Programm ist freie Software; Sie dürfen es weitergeben und/oder\n" +"verändern gemäß den Bestimmungen der GNU General Public License, " +"veröffentlicht\n" +"von der Free Software Foundation; entweder in Version 2, oder (nach Wahl)\n" +"einer späteren Version.\n" +"\n" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" +"Dieses Programm wird verteilt in der Hoffnung, das es nützlich sein\n" +"wird, aber OHNE JEGLICHE GARANTIE; sogar ohne jegliche implizite\n" +"Garantie der VERKAUFBARKEIT oder der TAUGLICHKEIT FÜR EINEN\n" +"BESTIMMTEN ZWECK. Siehe auch die GNU General Public License für\n" +"weitere Details.\n" +"\n" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" +"Sie sollten eine Kopie der GNU General Public License mit diesem Programm\n" +"erhalten haben; falls nicht, schreiben Sie bitte an die\n" +"\n" +" Free Software Foundation, Inc.\n" +" 59 Temple Place - Suite 330\n" +" Boston, MA 02111-1307\n" +" USA\n" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" +"Den vollständigen Dateinamen des aktuellen Verzeichnisses ausgeben.\n" +"\n" + +#: src/pwd.c:74 +msgid "ignoring non-option arguments" +msgstr "Argumente werden ignoriert, die keine Optionen sind" + +#: src/pwd.c:78 +msgid "cannot get current directory" +msgstr "Das aktuelle Verzeichnis ist nicht erreichbar" + +#: src/readlink.c:69 +#, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "Aufruf: %s [OPTION]... DATEI\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" +"Wert einer symbolischen Verknüpfung auf der Standardausgabe ausgeben.\n" +"\n" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" +" -f, --canonicalize kanonisieren, indem jeder symb. Verknüpfung in " +"jeder\n" +" Komponente des gegebenen Pfads rekursiv gefolgt " +"wird\n" +" -n, --no-newline keinen abschließenden Zeilenvorschub ausgeben\n" +" -q, --quiet,\n" +" -s, --silent Fehlermeldungen größtenteils unterdrücken\n" +" -v, --verbose Fehlermeldungen ausgeben\n" + +#: src/remove.c:394 +#, c-format +msgid "cannot chdir from %s to .." +msgstr "kann nicht von Verzeichnis %s nach .. wechseln" + +#: src/remove.c:407 src/remove.c:488 +#, c-format +msgid "cannot lstat `.' in %s" +msgstr "lstat von ».« in %s nicht möglich" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "%s geändertes Gerät/Inode" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, c-format +msgid "cannot lstat %s" +msgstr "Aufruf von lstat für %s nicht möglich" + +#: src/remove.c:603 +#, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "%s: in schreibgeschütztes Verzeichnis %s absteigen? " + +#: src/remove.c:604 +#, c-format +msgid "%s: descend into directory %s? " +msgstr "%s: in Verzeichnis %s absteigen? " + +#: src/remove.c:614 +#, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: %s (schreibgeschützt) %s entfernen? " + +#: src/remove.c:615 +#, c-format +msgid "%s: remove %s %s? " +msgstr "%s: %s %s entfernen? " + +#: src/remove.c:639 +#, c-format +msgid "removed %s\n" +msgstr "%s entfernt\n" + +#: src/remove.c:654 src/remove.c:1059 +#, c-format +msgid "removed directory: %s\n" +msgstr "Verzeichnis wurde entfernt: %s\n" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, c-format +msgid "cannot remove directory %s" +msgstr "Entfernen von Verzeichnis %s nicht möglich" + +#: src/remove.c:815 +#, c-format +msgid "cannot open directory %s" +msgstr "Öffnen von Verzeichnis %s nicht möglich" + +#: src/remove.c:896 src/remove.c:1002 +#, c-format +msgid "cannot chdir from %s to %s" +msgstr "kann nicht aus Verzeichnis %s in %s wechseln" + +#: src/remove.c:904 +#, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +"WARNUNG: Zirkuläre Verzeichnis-Struktur.\n" +"Diese bedeutet beinahe mit Sicherheit ein beschädigtes Dateisystem.\n" +"BENACHRICHTIGEN SIE IHREN SYSTEM-VERWALTER.\n" +"Das folgende Verzeichnis ist Teil des Zyklus:\n" +" %s\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "Weder ».« noch »..« kann gelöscht werden" + +#: src/rm.c:60 +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "Paul Rubin, David MacKenzie, Richard Stallman und Jim Meyering" + +#: src/rm.c:99 src/touch.c:244 +#, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "Aufruf: %s [OPTION]... DATEI...\n" + +#: src/rm.c:100 +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Entfernen (unlink) der DATEI(en).\n" +"\n" +" -d, --directory Verknüpfung auf Verzeichnis entfernen, selbst wenn\n" +" es nicht leer ist (nur für Super-User)\n" +" -f, --force nicht vorhandene Dateien ignorieren, keine " +"Nachfragen\n" +" -i, --interactive vor jeder Entfernung nachfragen\n" +" -r, -R, --recursive Inhalte von Verzeichnissen rekursiv entfernen\n" +" -v, --verbose durchgeführte Tätigkeiten erklären\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" +"\n" +"Um Dateien zu entfernen, deren Namen mit »-« beginnen, z. B. »foo«, " +"verwenden\n" +"Sie eine der folgenden Anweisungen:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" +"\n" +"Beachten Sie, dass, wenn Sie »rm« benutzen, um eine Datei zu löschen, es\n" +"üblicherweise möglich ist, ihren Inhalt wiederherzustellen. Wenn Sie mehr\n" +"Sicherheit darüber wünschen, dass die Inhalte tatsächlich nicht\n" +"wiederherstellbar sind, sollten Sie eher »shred« benutzen.\n" + +# XLATE_REMARK: Check this out! is the %s replaced by the name of the directory? +#: src/rmdir.c:116 src/rmdir.c:217 +#, c-format +msgid "removing directory, %s" +msgstr "Verzeichnis wird entfernt, %s" + +#: src/rmdir.c:146 +#, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "Aufruf: %s [OPTION]... VERZEICHNIS...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" +"Die VERZEICHNIS(se) entfernen, wenn sie leer sind.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" Jeden Fehlschlag ignorieren, der nur daher rührt, dass\n" +" ein Verzeichnis nicht leer ist.\n" + +#: src/rmdir.c:154 +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +" -p, --parents VERZEICHNIS entfernen, dann versuchen, jede Verzeichnis-\n" +" komponente im Pfad zu entfernen; so ist »rmdir -p a/b/" +"c«\n" +" ist das gleiche wie »rmdir a/b/c a/b a«\n" +" -v, --verbose Diagnose für jedes bearbeitete Verzeichnis ausgeben\n" + +#: src/seq.c:82 +#, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"Aufruf: %s [OPTION]... LETZTER\n" +" oder: %s [OPTION]... ERSTER LETZTER\n" +" oder: %s [OPTION]... ERSTER PLUS LETZTER\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" +"Die Zahlen von ERSTER bis LETZTER ausgeben, in Schritten von PLUS.\n" +"\n" +" -f, --format FORMAT FORMAT im Stil von printf(3) benutzen\n" +" (Vorgabe: %g)\n" +" -s, --separator ZKETTE ZKETTE benutzen, um Zahlen zu trennen (Vorgabe :" +"\\n)\n" +" -w, --equal-width gleiche Breite durch führende Nullen herstellen\n" + +#: src/seq.c:96 +#, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" +"\n" +"Wenn ERSTER oder LETZTER weggelassen werden, wird 1 angenommen.\n" +"ERSTER, PLUS und LETZTER werden als Fließkommazahlen interpretiert.\n" +"PLUS sollte größer als Null sein, wenn ERSTER kleiner als LETZTER ist, und\n" +"negativ, wenn umgekehrt. Wenn ein FORMAT-Argument angegeben wurde, muss es\n" +"genau eines der Fließkomma-Ausgabeformate %e, %f oder %g enthalten.\n" + +#: src/seq.c:119 +#, c-format +msgid "invalid floating point argument: %s" +msgstr "ungültiges Fließkommaargument: %s" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" +"wenn der Startwert größer als die Obergrenze ist, muss\n" +"das Inkrement negativ sein" + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" +"wenn der Startwert kleiner als die Obergrenze ist, muss\n" +"das Inkrement positiv sein" + +#: src/seq.c:423 +#, c-format +msgid "invalid format string: `%s'" +msgstr "ungültige Formatangabe: »%s«" + +#: src/seq.c:445 +msgid "format string may not be specified when printing equal width strings" +msgstr "" +"Formatzeichenkette darf nicht angegeben werden, wenn Zeichenketten\n" +"gleicher Breite ausgegeben werden" + +#: src/shred.c:160 +#, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "Aufruf: %s [OPTIONEN] DATEI [...]\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" +"Mehrfaches Überschreiben der angegebenen DATEI(en), um es schwerer zu " +"machen,\n" +"selbst mit teuren Hardware-Analysemitteln die Daten wieder herzustellen.\n" +"\n" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" +" -f, --force Zugriffsrechte wechseln, um ein Schreiben zuzulassen,\n" +" wenn nötig.\n" +" -n, --iteration=N N-faches Überschreiben statt des Standardwertes (%d).\n" +" -s, --size=N Zerhacken dieser Anzahl Bytes (Suffixe wie K, M, G " +"zulässig.)\n" + +#: src/shred.c:174 +#, fuzzy +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" +" -u, --remove Abschneiden und Entfernen der Datei nach dem " +"Überschreiben.\n" +" -v, --verbose Fortschritt anzeigen.\n" +" -x, --exact Kein Runden der Dateigrößen auf den nächsten vollen " +"Block.\n" +" -z, --zero Hinzufügen eines letzten Überschreibens mit Nullen, um\n" +" Zerhacken zu verbergen.\n" +" - Standardeingabe zerhacken.\n" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" +"\n" +"Löschen der DATEI(en), wenn --remove (-u) angegeben ist. Die " +"Standardvorgabe\n" +"ist es, die Dateien nicht zu löschen, da man oft auf Gerätedateien wie /dev/" +"hda\n" +"arbeitet, und diese Dateien nicht gelöscht werden sollten. Bei der " +"Benutzung\n" +"mit normalen Dateien verwenden die meisten Anwender die Option --remove.\n" +"\n" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" +"VORSICHT: Beachten Sie, dass »shred« auf einer sehr wichtigen Annahme " +"beruht:\n" +"dass das Dateisystem Daten an derselben Stelle überschreibt. Das ist die " +"alt-\n" +"hergebrachte Vorgehensweise, doch viele moderne Betriebssystemdesigns " +"erfüllen\n" +"diese Annahme nicht. Die folgenden Systeme sind Beispiele von " +"Dateisystemen,\n" +"auf denen »shred« keine Wirkung hat:\n" +"\n" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" +"* Log-strukturierte oder »journaled« Dateisysteme, so wie die mit AIX und\n" +" Solaris gelieferten (und JFS, ReiserFS, XFS, Ext3, usw.)\n" +"\n" +"* Dateisysteme, die redundante Daten schreiben und auch dann fortfahren, " +"wenn\n" +" einige Schreibvorgänge fehlschlagen, so wie RAID-basierte Dateisysteme\n" +"\n" +"* Dateisysteme, die Schnappschüsse anfertigen, so wie der NFS-Server\n" +" von Network Appliance\n" +"\n" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" +"* Dateisysteme, die an temporären Orten zwischenspeichern, so wie Klienten\n" +" unter NFS Version 3\n" +"\n" +"* komprimierte Dateisysteme\n" +"\n" +"Außerdem können Dateisystemsicherungen und entfernte Spiegel Kopien der " +"Datei\n" +"enthalten, die nicht entfernt werden können, und die es erlauben, eine\n" +"zerhackte Datei wieder herzustellen.\n" + +#: src/shred.c:808 +#, c-format +msgid "%s: cannot rewind" +msgstr "%s: Zurückspulen nicht möglich" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "%s: Durchgang %lu/%lu (%s)..." + +#: src/shred.c:868 +#, c-format +msgid "%s: error writing at offset %s" +msgstr "%s: Fehler beim Schreiben an Verschiebung %s" + +#: src/shred.c:897 +#, c-format +msgid "%s: file too large" +msgstr "%s: Datei zu groß" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "%s: Durchgang %lu/%lu (%s)...%s" + +#: src/shred.c:936 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "%s: Durchgang %lu/%lu (%s)...%s/%s %d%%" + +#: src/shred.c:1195 +#, c-format +msgid "%s: invalid file type" +msgstr "%s: ungültiger Dateityp" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s: Datei hat negative Größe" + +#: src/shred.c:1265 +#, c-format +msgid "%s: error truncating" +msgstr "%s: Fehler beim Abschneiden" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "%s: kann einen Nur-Anfügen-Dateideskriptors nicht zerhacken" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "%s: wird entfernt" + +#: src/shred.c:1412 +#, c-format +msgid "%s: renamed to %s" +msgstr "%s: in %s umbenannt" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s: entfernt" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "%s: Entfernen nicht möglich" + +#: src/shred.c:1551 +#, c-format +msgid "%s: invalid number of passes" +msgstr "%s: ungültige Anzahl von Durchgängen" + +#: src/shred.c:1568 +#, c-format +msgid "%s: invalid file size" +msgstr "%s: ungültige Dateigröße" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "Jim Meyering und Paul Eggert" + +#: src/sleep.c:52 +#, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" +"Aufruf: %s ANZAHL[SUFFIX]...\n" +" oder: %s OPTION\n" +"Für ANZAHL Sekunden pausieren. SUFFIX kann sein: »s« für Sekunden " +"(Vorgabe),\n" +"»m« für Minuten, »h« für Stunden, »d« für Tage. Im Gegensatz zu den " +"meisten\n" +"Implementatierungen, die ANZAHL als eine ganze Zahl erfordern, kann ANZAHL " +"hier\n" +"eine beliebige Gleitkommazahl sein.\n" +"\n" + +#: src/sleep.c:155 +#, c-format +msgid "invalid time interval `%s'" +msgstr "ungültiges Zeitintervall »%s«" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "Echtzeit-Uhr kann nicht gelesen werden" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "Mike Haertel und Paul Eggert" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" +"Aneinanderfügung aller DATEI(en) sortiert nach der Standardausgabe " +"schreiben.\n" +"\n" +"Sortieroptionen:\n" +"\n" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" +" -b, --ignore-leading-blanks führende Leerzeichen ignorieren\n" +" -d, --dictionary-order nur Leer- und alphanumerische Zeichen " +"beachten\n" +" -f, --ignore-case Klein- als Großbuchstaben behandeln\n" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" +" -g, --general-numeric-sort anhand des allgemeinen numerischen Wertes\n" +" sortieren\n" +" -i, --ignore-nonprinting nur druckbare Zeichen beachten\n" +" -M, --month-sort Reihenfolge: (unbekannt) < »JAN« < ... < " +"»DEZ«\n" +" -n, --numeric-sort anhand des numerischen WErts sortieren\n" +" -r, --reverse das Ergebnis der Sortierung umkehren\n" +"\n" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" +"Andere Optionen:\n" +"\n" +" -c, --check prüfen, ob Eingabe sortiert ist; nicht " +"sortieren\n" +" -k, --key=POS1[,POS2] Schlüssel geht von POS1 bis POS2 (beginnend mit " +"1)\n" +" -m, --merge schon sortierte Dateien zusammenführen; nicht\n" +" sortieren\n" +" -o, --output=DATEI Ergebnis in DATEI schreiben statt " +"Standardeingabe\n" +" -s, --stable Sortierung stabilisieren (dabei " +"Rückzugssortierung\n" +" deaktivieren)\n" +" -S, --buffer-size=GRÖSSE GRÖSSE für Hauptspeicherpuffer benutzen\n" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" +" -t, --field-separator=SEP SEP benutzen statt Nicht- zu Leerraumübergang\n" +" (whitespace transition)\n" +" -T, --temporary-directory=VERZ\n" +" für temporäre Dateien VERZ statt $TMPDIR oder %" +"s;\n" +" kann mehrfach gegeben werden\n" +" -u, --unique mit -c: auf strikte Odnung prüfen; andernfalls: " +"nur\n" +" das erste von mehreren Gleichen ausgeben\n" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" +" -z, --zero-terminated Zeilen mit Nullbyte beenden, nicht mit\n" +" Zeilenvorschub\n" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" +"\n" +"POS ist F[.Z][OPTS], wobei F eine Feldnummer und Z eine Zeichenposition im " +"Feld\n" +"ist. OPTS setzt sich zusammen aus einer oder mehreren Ordnungsoptionen mit\n" +"einem Buchstaben, die die globalen Ordnungsoptionen für diesen Schlüssel " +"außer\n" +"Kraft setzen. Wenn kein Schlüssel angegeben wurde, wird die ganze Zeile " +"als\n" +"Schlüssel benutzt.\n" +"\n" +"GRÖSSE kann einer der folgenden multiplikativen Suffixe sein:\n" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" +"% 1% des Speichers, b 1, k 1024 (Vorgabe), und so weiter für M, G, T, P, E, " +"Z,\n" +"Y.\n" +"\n" +"Ohne DATEI, oder wenn DATEI »-« ist, Standardeingabe lesen.\n" +"\n" +"*** WARNUNG ***\n" +"Die eingestellte Locale beeinflusst die Sortierreihenfolge.\n" +"Setzen Sie LC_ALL=C, um die traditionelle Sortierreihenfolge zu aktivieren, " +"bei\n" +"der native Bytewerte verwendet werden.\n" + +#: src/sort.c:444 +msgid "cannot create temporary file" +msgstr "temporäre Datei konnte nicht angelegt werden" + +#: src/sort.c:467 +msgid "open failed" +msgstr "Fehler beim Öffnen" + +#: src/sort.c:487 src/sort.c:2496 +msgid "close failed" +msgstr "Fehler beim Schließen" + +#: src/sort.c:495 +msgid "write failed" +msgstr "Fehler beim Schreiben" + +#: src/sort.c:641 +msgid "sort size" +msgstr "Sortiergröße" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "»stat« fehlgeschlagen" + +#: src/sort.c:972 +msgid "read failed" +msgstr "Lesen fehlgeschlagen" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "%s: %s:%s: ungeordnet: " + +#: src/sort.c:1574 +msgid "standard error" +msgstr "Standardfehler" + +#: src/sort.c:2032 +#, c-format +msgid "%s: invalid field specification `%s'" +msgstr "%s: ungültige Feldangabe »%s«" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "%s: Anzahl »%.*s« zu groß" + +#: src/sort.c:2064 +#, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "%s: ungültige Zähler am Anfang von »%s«" + +#: src/sort.c:2298 +msgid "invalid number after `-'" +msgstr "ungültige Zahl hinter »-«" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +msgid "invalid number after `.'" +msgstr "ungültige Zahl hinter ».«" + +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "verirrte Buchstaben in Feldspezifikation" + +#: src/sort.c:2338 +msgid "invalid number at field start" +msgstr "ungültige Zahl am Feldanfang" + +#: src/sort.c:2342 src/sort.c:2370 +msgid "field number is zero" +msgstr "Feldnummer ist Null" + +#: src/sort.c:2351 +msgid "character offset is zero" +msgstr "Zeichenversatz ist Null" + +#: src/sort.c:2366 +msgid "invalid number after `,'" +msgstr "ungültige Zahl hinter »,«" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "Multi-Zeichen-Tab »%s«" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "zusätzlicher Operand »%s« nicht erlaubt mit -c" + +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "Aufruf: %s [OPTION] [EINGABE [PRÄFIX]]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" +"Stücke fester Größe der EINGABE auf PRÄFIXaa, PRÄFIXab, ... ausgeben; " +"Vorgabe\n" +"für PRÄFIX ist »x«. Wenn keine EINGABE angegeben wurde oder die EINGABE " +"»-«\n" +"ist, Standardeingabe lesen.\n" +"\n" + +#: src/split.c:108 +#, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" +" -a, --suffix-length=N Suffixe mit Länge N verwenden (Vorgabe %d)\n" +" -b, --bytes=GRÖSSE GRÖSSE Bytes in die Ausgabedatei ausgeben\n" +" -C, --line-bytes=GRÖSSE höchstens GRÖSSE Bytes pro Zeile auf die Ausgabe\n" +" schreiben\n" +" -l, --lines=ANZAHL ANZAHL Zeilen in die Ausgabedatei ausgeben\n" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" +" --verbose Meldung auf Standardfehlerausgabe ausgeben, " +"bevor\n" +" jede Ausgabedatei geöffnet wird\n" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "Kein Suffix für Ausgabedateien mehr verfügbar" + +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "Datei »%s« wird angelgt\n" + +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "Es ist nicht möglich, auf mehr als eine Art zu splitten" + +#: src/split.c:394 +#, c-format +msgid "%s: invalid suffix length" +msgstr "%s: ungültige Suffixlänge" + +#: src/split.c:408 src/split.c:434 +#, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: ungültige Anzahl von Bytes" + +#: src/split.c:421 +#, c-format +msgid "%s: invalid number of lines" +msgstr "%s: ungültige Anzahl von Zeilen" + +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "die Option »-%d« ist überholt; bitte verwenden Sie »-l %d«" + +#: src/split.c:483 +msgid "invalid number" +msgstr "Ungültige Anzahl" + +#: src/stat.c:326 +msgid "*** invalid date/time ***" +msgstr "*** ungültiges Datum/Zeit ***" + +#: src/stat.c:608 +#, c-format +msgid "cannot read file system information for %s" +msgstr "kann Dateisysteminformation für %s nicht lesen" + +#: src/stat.c:684 +#, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "Aufruf: %s [OPTION] DATEI...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" +"Datei- oder Dateisystem-Status anzeigen.\n" +"\n" +" -f, --filesystem Dateisystem-Status anstelle von Datei-Status " +"anzeigen\n" +" -c --format=FORMAT FORMAT anstelle des Standards benutzen\n" +" -L, --dereference Verknüpfungen folgen\n" +" -t, --terse Informationen in knapper Form ausgeben\n" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" +"\n" +"Die gültigen Formatangaben für Dateien (ohne --filesystem):\n" +"\n" +" %A Zugriffsrechte in menschenlesbarer Form\n" +" %a Zugriffsrechte im Oktalformat\n" +" %B die Größe in Bytes jedes mit »%b« gemeldeten Blocks\n" +" %b Anzahl der beanspruchten Blöcke\n" + +#: src/stat.c:704 +#, fuzzy +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" +" %D Gerätenummber in Hex\n" +" %d Gerätenummber in Dezimal\n" +" %F Dateityp\n" +" %f roher Modus in Hex\n" +" %G Gruppenname des Eigners\n" +" %g Gruppen-ID des Eigners\n" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" +" %h Anzahl der harten Verknüpfungen\n" +" %i INode-Nummer\n" +" %N »Quoted File Name« mit Dereferenzierung bei symbolischer Verknüpfung\n" +" %n Dateiname\n" +" %o E/A-Blockgröße\n" +" %s Gesamtgröße in Bytes\n" +" %T Minor-Gerätetyp in Hex\n" +" %t Major-Gerätetyp in Hex\n" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" +" %U Nutzername des Eigners\n" +" %u Nutzer-ID des Eigners\n" +" %X Zeit des letzten Zugriffs in Sekunden seit der Epoche\n" +" %x Zeit des letzten Zugriffs\n" +" %Y Zeit der letzten Modifikation in Sekunden seit der Epoche\n" +" %y Zeit der letzten Modifikation\n" +" %Z Zeit der letzten Änderung in Sekunden seit der Epoche\n" +" %z Zeit der letzten Änderung\n" +"\n" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" +"Die gültigen Formatangaben für Dateisysteme:\n" +"\n" +" %a Freie Blöcke, die Nicht-Superusern zur Verfügung stehen\n" +" %b Gesamt-Datenblöcke im Dateisystem\n" +" %c Gesamt-Dateiknoten im Dateisystem\n" +" %d Freie Dateiknoten im Dateisystem\n" +" %f Freie Blöcke im Dateisystem\n" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" +" %i Dateisystem-ID in Hex\n" +" %l Maximale Länge von Dateinamen\n" +" %n Dateiname\n" +" %s Optimale Transfer-Blockgröße\n" +" %T Typ in menschenlesbarer Form\n" +" %t Typ in Hex\n" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" +"Aufruf: %s [-F GERÄT] [--file=GERÄT] [EINSTELLUNGEN]...\n" +" oder: %s [-F GERÄT] [--file=GERÄT] [-a|--all]\n" +" oder: %s [-F GERÄT] [--file=GERÄT] [-g|--save]\n" + +#: src/stty.c:504 +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" +"Charakteristika des Terminals ausgeben oder ändern.\n" +"\n" +" -a, --all alle Einstellungen in lesbarer Form ausgeben\n" +" -g, --save alle Einstellungen lesbar für stty ausgeben\n" +" -F, --file=GERÄT das angegebene GERÄT anstelle der Standardeingabe " +"öffnen\n" +" und benutzen\n" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" +"\n" +"Ein optionales »-« vor EINSTELLUNGEN bedeutet Verneinung. Ein »*« markiert\n" +"nicht POSIX-konforme Einstellungen. Das Wirtssystem bestimmt, welche\n" +"Einstellungen zur Verfügung stehen.\n" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" +"\n" +"Besondere Zeichen:\n" +"* dsusp CHAR CHAR sendet ein Terminalstoppsignal, wenn Eingabe " +"erforderlich\n" +" eof CHAR CHAR sendet Ende-der-Datei (Eingabe beenden)\n" +" eol CHAR CHAR beendet Zeile\n" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" +"* eol2 CHAR alternatives CHAR für Zeilenende\n" +" erase CHAR CHAR löscht das zuletzt eingegebene Zeichen\n" +" intr CHAR CHAR sendet Unterbrechungssignal (Interrupt)\n" +" kill CHAR CHAR löscht aktuelle Zeile\n" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" +"* lnext CHAR CHAR nimmt das nächste Zeichen uninterpretiert auf\n" +" quit CHAR CHAR sendet ein Quit-Signal\n" +"* rprnt CHAR CHAR gibt die aktuelle Zeile neu aus\n" +" start CHAR CHAR startet die Ausgabe erneut nach einem Stopp\n" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" +" stop CHAR CHAR stoppt die Ausgabe\n" +" susp CHAR CHAR sendet ein Terminalstoppsignal\n" +"* swtch CHAR CHAR wechselt zu einer anderen Shell-Ebene\n" +"* werase CHAR CHAR löscht das zuletzt eingegebene Wort\n" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" +"\n" +"Spezielle Einstellungen:\n" +" N Eingabe- und Ausgabegeschwindigkeit auf N Baud setzen\n" +"* cols N an den Kernel melden, dass dieses Terminal N Spalten hat\n" +"* columns N dasselbe wie cols N\n" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" +" ispeed N Eingabegeschwindigkeit auf N setzen\n" +"* line N \"line discipline\" N benutzen\n" +" min N mit -icanon, N Zeichen Minimum für ein vollständiges Lesen " +"setzen\n" +" ospeed N Ausgabegeschwindigkeit auf N setzen\n" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" +"* rows N an den Kernel melden, dass dieses Terminal N Zeilen hat\n" +"* size die Anzahl Zeilen und Spalten ausgeben\n" +" speed die Terminal-Geschwindigkeit ausgeben\n" +" time N mit -icanon, die Lesewartezeit auf N Zehntelsekunden setzen\n" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" +"\n" +"Einstellungen für die Flusskontrolle:\n" +" [-]clocal Modemkontrollsignale ignorieren\n" +" [-]cread Empfang von Eingaben erlauben\n" +"* [-]crtscts RTS/CTS-Handshaking erlauben\n" +" csN Zeichengröße auf N Bits setzen, N in [5..8]\n" + +#: src/stty.c:570 +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" +" [-]cstopb zwei Stopp-Bits pro Zeichen benutzen (eins mit »-«)\n" +" [-]hup ein Hangup-Signal senden, wenn der letzte Prozess das Tty\n" +" schließt\n" +" [-]hupcl dasselbe wie [-]hup\n" +" [-]parenb Parity-Bit in der Ausgabe erzeugen und Parity-Bit in der\n" +" Eingabe erwarten\n" +" [-]parodd ungerade Parity setzen (auch mit »-«)\n" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" +"\n" +"Einstellungen für die Eingabe:\n" +" [-]brkint ein Break verursacht ein Unterbrechungssignal\n" +" [-]icrnl Wagenrücklauf (CR) in Zeilenvorschub wandeln\n" +" [-]ignbrk Breaks ignorieren\n" +" [-]igncr Wagenrücklauf ignorieren\n" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" +" [-]ignpar Parity-Fehler ignorieren\n" +"* [-]imaxbel piepen und vollen Eingabepuffer leeren;\n" +" nicht bei Eingabe eines Zeichens\n" +" [-]inlcr Zeilenvorschub in Wagenrücklauf (CR) wandeln\n" +" [-]inpck Eingabeprüfung der Parity erlauben\n" +" [-]istrip höchstes Bit (das 8.) der Eingabezeichen löschen\n" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" +"* [-]iuclc Groß- in Kleinbuchstaben wandeln\n" +"* [-]ixany jedes Zeichen startet Ausgabe neu, nicht nur das " +"Startzeichen\n" +" [-]ixoff das Senden von Start-/Stoppzeichen erlauben\n" +" [-]ixon XON/XOFF-Flusskontrolle erlauben\n" +" [-]parmrk Parity-Fehler markieren (mit einer 255-0-Zeichenfolge)\n" +" [-]tandem dasselbe wie [-]ixoff\n" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" +"\n" +"Einstellungen für die Ausgabe:\n" +"* bsN Verzögerungsstil für Backspace, N in [0..1]\n" +"* crN Verzögerungsstil für Wagenrücklauf (CR), N in [0..3]\n" +"* ffN Verzögerungsstil für Seitenvorschub, N in [0..1]\n" +"* nlN verzögerungsstil für Zeilenvorschub, N in [0..1]\n" + +#: src/stty.c:608 +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" +"* [-]ocrnl Wagenrücklauf (CR) in Zeilenvorschub wandeln\n" +"* [-]ofdel Löschzeichen zum Auffüllen anstelle von Nullzeichen " +"benutzen\n" +"* [-]ofill Füllzeichen anstelle von Zeitverzögerungen benutzen\n" +"* [-]olcuc Klein- in Großbuchstaben wandeln\n" +"* [-]onlcr Zeilenvorschub in Wagenrücklauf (CR) wandeln\n" +"* [-]onlret Zeilenvorschub bedingt Wagenrücklauf (CR)\n" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" +"* [-]onocr kein Wagenrücklauf (CR) in der ersten Spalte\n" +" [-]opost Ausgabe nachbehandeln\n" +"* tabN horizontale Tabulatorverzögerung, N in [0..3]\n" +"* tabs dasselbe wie tab0\n" +"* -tabs dasselbe wie tab3\n" +"* vtN vertikale Tabulatorverzögerung, N in [0..1]\n" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" +"\n" +"Lokale Einstellungen:\n" +" [-]crterase Löschzeichen als Backspace-Leerzeichen-Backspace ausgeben\n" +"* crtkill Zeile mit echoprt- und echoe-Einstellungen löschen\n" +"* -crtkill Zeile mit echoctl- und echok-Einstellungen löschen\n" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" +"* [-]ctlecho Sonderzeichen in Hutnotation ausgeben (»^c«)\n" +" [-]echo Eingabezeichen ausgeben\n" +"* [-]echoctl dasselbe wie [-]ctlecho\n" +" [-]echoe dasselbe wie [-]crterase\n" +" [-]echok Zeilenvorschub nach Killzeichen ausgeben\n" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" +"* [-]echoke dasselbe wie [-]crtkill\n" +" [-]echonl Zeilenvorschub ausgeben, auch wenn keine Zeichen ausgegeben\n" +" werden\n" +"* [-]echoprt gelöschte Zeichen rückwärts ausgeben, zwischen »\\« und »/«\n" +" [-]icanon erase-, kill-, werase- und rprnt-Sonderzeichen erlauben\n" +" [-]iexten Sonderzeichen erlauben, die nicht POSIX-konform sind\n" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" +" [-]isig interrupt-, quit- und-suspend Sonderzeichen erlauben\n" +" [-]noflsh Ausgabeentleerung nach interrupt- und quit-Sonderzeichen\n" +" verhindern\n" +"* [-]prterase dasselbe wie [-]echoprt\n" +"* [-]tostop Hintergrundjobs stoppen, die auf das Terminal schreiben\n" +"* [-]xcase mit icanon, Großbuchstaben mit »\\« maskieren\n" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" +"\n" +"Kombinierte Einstellungen:\n" +"* [-]LCASE dasselbe wie [-]lcase\n" +" cbreak dasselbe wie -icanon\n" +" -cbreak dasselbe wie icanon\n" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" +" cooked dasselbe wie brkint ignpar istrip icrnl ixon opost isig\n" +" icanon-, und eof- und eol-Zeichen mit den Vorgabewerten\n" +" -cooked dasselbe wie raw\n" +" crt dasselbe wie echoe echoctl echoke\n" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" +" dec dasselbe wie echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +"* [-]decctlq dasselbe wie [-]ixany\n" +" ek Erase- und Killzeichen auf Vorgabewert setzen\n" +" evenp dasselbe wie parenb -parodd cs7\n" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" +" -evenp dasselbe wie -parenb cs8\n" +"* [-]lcase dasselbe wie xcase iuclc olcuc\n" +" litout dasselbe wie -parenb -istrip -opost cs8\n" +" -litout dasselbe wie parenb istrip opost cs7\n" +" nl dasselbe wie -icrnl -onlcr\n" +" -nl dasselbe wie icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" +" oddp dasselbe wie parenb parodd cs7\n" +" -oddp dasselbe wie -parenb cs8\n" +" [-]parity dasselbe wie [-]evenp\n" +" pass8 dasselbe wie -parenb -istrip cs8\n" +" -pass8 dasselbe wie parenb istrip cs7\n" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" +" raw dasselbe wie -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw dasselbe wie cooked\n" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" +" sane dasselbe wie cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iucl -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, alle speziellen\n" +" Zeichen auf Vorgabewert\n" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" +"\n" +"Die Tty-Leitung manipulieren, die mit der Standardeingabe verbunden ist. " +"Ohne\n" +"Argumente, die Baud-Rate, Line-Disziplin und Abweichungen von »stty sane«\n" +"ausgeben. In den Einstellungen wird CHAR wörtlich genommen oder kodiert wie " +"in\n" +"^c, 0x37, 0177 oder 127; spezielle Werte ^- oder undef werden benutzt, um\n" +"Sonderzeichen zu unterbinden.\n" + +#: src/stty.c:787 +msgid "only one device may be specified" +msgstr "nur ein Gerät darf angegeben werden" + +#: src/stty.c:882 +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "" +"Die Optionen für ausführliche und stty-lesbare Ausgabe\n" +"können nicht gleichzeitig benutzt werden" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "Wenn ein Ausgabestil angegeben ist, kann kein Modus gesetzt werden" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "%s: Zurücksetzen auf nicht-blockierenden Modus ist nicht möglich" + +#: src/stty.c:957 src/stty.c:1064 +#, c-format +msgid "invalid argument `%s'" +msgstr "ungültiges Argument »%s«" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, c-format +msgid "missing argument to `%s'" +msgstr "fehlendes Argument für »%s«" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "%s: es ist nicht möglich, alle angeforderten Operationen durchzuführen" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "new_mode: Modus\n" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "%s: Keine Information zur Größe dieses Gerätes" + +#: src/stty.c:1944 +#, c-format +msgid "invalid integer argument `%s'" +msgstr "ungültiges Ganzzahlargument »%s«" + +#: src/su.c:289 +msgid "Password:" +msgstr "Kennwort:" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "getpass: es ist nicht möglich, /dev/tty zu öffnen" + +#: src/su.c:350 +msgid "cannot set groups" +msgstr "es ist nicht möglich, die Gruppen zu setzen" + +#: src/su.c:354 +msgid "cannot set group id" +msgstr "es ist nicht möglich, die Gruppen-ID zu setzen" + +#: src/su.c:356 +msgid "cannot set user id" +msgstr "es ist nicht möglich, die Benutzer-ID zu setzen" + +#: src/su.c:437 +#, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "Aufruf: %s [OPTION]... [-] [BENUTZER [ARG]...]\n" + +#: src/su.c:438 +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" +"Die effektive Benutzer- und Gruppen-ID in die des BENUTZERs ändern.\n" +"\n" +" -, -l, --login die Shell zur Loginshell machen\n" +" -c, --commmand=BEFEHL einen einzelnen BEFEHL an die Shell " +"weitergeben\n" +" -f, --fast -f an die Shell weitergeben (für csh oder " +"tcsh)\n" +" -m, --preserve-environment Umgebungsvariablen nicht neu setzen\n" +" -p dasselbe wie -m\n" +" -s, --shell=SHELL SHELL benutzen, falls /etc/shells es erlaubt\n" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" +"\n" +"Ein schlichtes »-« steht für -l. Falls kein BENUTZER angegeben ist, »root«\n" +"annehmen.\n" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "Benutzer %s existiert nicht" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "ungültiges Kennwort" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "eingeschränkte Shell %s benutzen" + +#: src/su.c:580 +#, c-format +msgid "warning: cannot change directory to %s" +msgstr "Warnung: es ist nicht möglich, in das Verzeichnis %s zu wechseln" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "Kayvan Aghaiepour und David MacKenzie" + +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" +"Prüfsumme und Blockanzahl für jede DATEI ausgeben.\n" +"\n" +" -r BSD-Summenalgorithmus benutzen, 1K Blöcke verwenden " +"(Vorgabe)\n" +" -s, --sysv System-V-Summenalgorithmus benutzen, 512-Byte-Blöcke\n" +" verwenden\n" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" +"Das Schreibens geänderter Blöcke auf die Platte erzwingen,\n" +"den Super-Block aktualisieren.\n" +"\n" + +#: src/sync.c:70 src/tty.c:112 +msgid "ignoring all arguments" +msgstr "ignoriere alle Argumente" + +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr " --help diese Hilfe anzeigen und beenden.\n" + +#: src/sys2.h:494 +msgid " --version output version information and exit\n" +msgstr " --version Versionsinformation anzeigen und beenden.\n" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "Jay Lepreau und David MacKenzie" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Jede DATEI nach Standardausgabe schreiben, die letzte Zeile zuerst.\n" +"Wurde keine DATEI angegeben oder ist DATEI »-«, Standardeingabe lesen.\n" + +#: src/tac.c:139 +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" +" -b, --before Trennzeichen vorher statt hinterher einfügen\n" +" -r, --regex das Trennzeichen als regulären Ausdruck\n" +" interpretieren\n" +" -s, --separator=ZKETTE ZKETTE als Trenzeichen statt Zeilenumbruch " +"benutzen\n" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "Standardeingabe: Lesefehler" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "Trennzeichen darf nicht leer sein" + +#: src/tail.c:49 +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "Paul Rubin, David MacKenzie, Ian Lance Taylor und Jim Meyering" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Die letzten %d Zeilen jeder DATEI auf Standardausgabe ausgeben. Wurden\n" +"mehrere DATEIen angegeben, wird für jede zunächst der Dateinamen ausgeben.\n" +"Ohne DATEI, oder wenn DATEI »-« ist, von der Standardeingabe lesen.\n" +"\n" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" +" --retry weiterhin versuchen, eine Datei zu öffnen, auch " +"wenn\n" +" sie beim Start nicht verfügbar ist oder später\n" +" nicht mehr verfügbar ist; nur mit -f sinnvoll\n" +" -c, --bytes=N die letzten N Bytes ausgeben\n" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" +" -f, --follow[={name|descriptor}]\n" +" angefügte Daten ausgeben, während die Datei " +"wächst;\n" +" »-f«, »--follow« und »--follow=descriptor« " +"sind\n" +" äquivalent\n" +" -F gleichbedeutend mit »--follow=name --retry«\n" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" +" -n, --lines=N die letzten N Zeilen ausgeben, anstelle der " +"letzen %d\n" +" --max-unchanged-stats=N\n" +" mit --follow=name die DATEI erneut öffnen, wenn " +"sie\n" +" nach N Iterationen (Vorgabe: %d) unverändert " +"ist,\n" +" um zu sehen, ob sie gelöscht oder umbenannt " +"wurde\n" +" (das ist normalerweise der Fall bei rotierten\n" +" Logdateien)\n" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" +" --pid=PID mit -f: Programm beenden, wenn PID beendet wird\n" +" -q, --quiet, --silent nie Kopfzeilen mit Dateinamen ausgeben\n" +" -s, --sleep-interval=S mit -f: Pause von S (oder 1) Sek. zwischen " +"Versuchen\n" +" -v, --verbose immer Kopfzeilen mit Dateinamen ausgeben\n" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" +"\n" +"Wenn das erste Zeichen von N (der Anzahl der Bytes oder Zeilen) ein »+« " +"ist,\n" +"die Ausgabe mit dem Nten Byte bzw. der Nten Zeile vom Anfang jeder Datei\n" +"beginnen, andernfalls die letzten N Bytes bzw. Zeilen ausgeben. N kann " +"einen\n" +"Vervielfachungssuffix haben: »b« für 512, »k« für 1024, »m« für 1048576\n" +"(1 Megabyte).\n" +"\n" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" +"Mit --follow (-f) verfolgt tail den Datei-Deskriptor. Dies bedeutet, dass " +"auch\n" +"im Falle einer Umbenennung tail das Ende verfolgen wird. " + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" +"Dieses Verhalten ist nicht erwünscht, wenn man wirklich den derzeitigen " +"Namen\n" +"der Datei verfolgen will und nicht den Datei-Deskriptor (z. B. bei Rotation " +"der\n" +"Protokoll-Dateien, Logs). Benutzen Sie in diesem Fall --follow=name. Dies\n" +"bewirkt, dass tail die Datei immer wieder schließt und öffnet, um zu sehen, " +"ob\n" +"die Datei gelöscht und von einem anderen Programm neu angelegt wurde.\n" +"\n" + +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "%s wird geschlossen (df=%d)" + +#: src/tail.c:391 +#, c-format +msgid "%s: cannot seek to offset %s" +msgstr "%s: es ist nicht möglich, zum Offset %s zu springen" + +#: src/tail.c:395 +#, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "%s: es ist nicht möglich, zum relativen Offset %s zu springen" + +#: src/tail.c:400 +#, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "" +"%s: es ist nicht möglich, vom Ende her zum relativen Offset %s zu springen" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "auf »%s« kann nicht mehr zugegriffen werden" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "»%s« wurde ersetzt mit einer ungeeigneten Datei; kein weiterer Versuch" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "auf »%s« kann jetzt zugegriffen werden" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "»%s« ist aufgetaucht; nach dem Ende einer neuen Datei" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "»%s« wurde ersetzt; nach dem Ende einer neuen Datei" + +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "%s: Datei abgeschnitten" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "Keine Dateien mehr übrig" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "" +"%s: es ist nicht möglich, bis zum Ende dieses Dateityps vorgehen;\n" +" kein weiterer Versuch für diesen Namen" + +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "%c: ungültiges Suffix-Zeichen in überholter Option" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"Zu viele Argumente.\n" +"Wenn überholte Optionssyntax (%s) von »tail« benutzt wird,\n" +"darf nicht mehr als ein Dateiargument angegeben werden. Stattdessen sollte\n" +"-n oder -c benutzt werden." + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"Warnung: Es ist nicht portabel, zwei oder mehr Dateiargumente mit der\n" +"überholten Optionssyntax (%s) zu benutzen. Stattdessen sollte die\n" +"entsprechende Option -n oder -c benutzt werden." + +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "die Option »%s« ist überholt; bitte verwenden Sie »%s-%c %.*s«" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "%s ist größer als die maximale Dateigröße auf diesem System" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "" +"%s: ungültige maximale Anzahl von ungeänderten »stats« zwischen Öffnungen" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "%s: ungültige Anzahl von aufeinanderfolgenden Größenänderungen" + +#: src/tail.c:1534 +#, c-format +msgid "%s: invalid PID" +msgstr "%s: ungültige PID" + +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: ungültige Anzahl von Sekunden" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "Warnung: --retry ist nur sinnvoll, wenn dieser Option ein Name folgt" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "Warnung: PID ignoriert; --pid=PID ist nur sinnvoll, wenn es folgt" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "Warnung: --pid=PID wird auf diesem System nicht unterstützt" + +#: src/tee.c:33 +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "Mike Parker, Richard M. Stallman und David MacKenzie" + +#: src/tee.c:64 +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" +"Die Standardeingabe in jede angegebene DATEI und auf die Standardausgabe\n" +"kopieren.\n" +"\n" +" -a, --append an existierende DATEIen anhängen, nichts\n" +" überschreiben\n" +" -i, --ignore-interrupts Unterbrechnungssignale (Interrupts) ignorieren\n" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "Argument erwartet\n" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "Ganzzahliger Ausdruck erwartet %s\n" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "»)« erwartet\n" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "»)« erwartet, %s gefunden\n" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "%s: Operator mit einem Argument erwartet\n" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "%s: Operator mit zwei Argumenten erwartet\n" + +#: src/test.c:424 +msgid "before -lt" +msgstr "vor -lt" + +#: src/test.c:432 +msgid "after -lt" +msgstr "nach -lt" + +#: src/test.c:446 +msgid "before -le" +msgstr "vor -le" + +#: src/test.c:453 +msgid "after -le" +msgstr "nach -le" + +#: src/test.c:469 +msgid "before -gt" +msgstr "vor -gt" + +#: src/test.c:476 +msgid "after -gt" +msgstr "nach -gt" + +#: src/test.c:490 +msgid "before -ge" +msgstr "vor -ge" + +#: src/test.c:497 +msgid "after -ge" +msgstr "nach -ge" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "-nt erlaubt kein -l\n" + +#: src/test.c:526 +msgid "before -ne" +msgstr "vor -ne" + +#: src/test.c:533 +msgid "after -ne" +msgstr "nach -ne" + +#: src/test.c:549 +msgid "before -eq" +msgstr "vor -eq" + +#: src/test.c:556 +msgid "after -eq" +msgstr "nach -eq" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "-ef erlaubt kein -l\n" + +#: src/test.c:586 +msgid "-ot does not accept -l\n" +msgstr "-ot erlaubt kein -l\n" + +#: src/test.c:593 +msgid "unknown binary operator" +msgstr "unbekannter Operator mit zwei Argumenten" + +#: src/test.c:781 +msgid "after -t" +msgstr "nach -t" + +#: src/test.c:979 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"Aufruf: %s AUSDRUCK\n" +" oder: [ AUSDRUCK ]\n" +" oder: %s OPTION\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" +"Programm mit Status gemäß AUSDRUCK beenden.\n" +"\n" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" +"\n" +"AUSDRUCK ist wahr oder falsch und setzt den Exit-Status. Möglichkeiten für\n" +"AUSDRUCK:\n" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" +"\n" +" ( AUSDRUCK ) AUSDRUCK ist wahr\n" +" ! AUSDRUCK AUSDRUCK ist falsch\n" +" AUSDRUCK1 -a AUSDRUCK2 sowohl AUSDRUCK1 als auch AUSDRUCK2 ist wahr\n" +" AUSDRUCK1 -o AUSDRUCK2 entweder AUSDRUCK1 oder AUSDRUCK2 ist wahr\n" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" +"\n" +" [-n] ZEICHENKETTE die Länge von ZEICHENKETTE ist ungleich Null\n" +" -z ZEICHENKETTE die Länge von ZEICHENKETTE ist Null\n" +" ZEICHENKETTE1 = ZEICHENKETTE2 die ZEICHENKETTEn sind gleich\n" +" ZEICHENKETTE1 != ZEICHENKETTE2 die ZEICHENKETTEn sind nicht gleich\n" + +#: src/test.c:1009 +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" +"\n" +" GANZZAHL1 -eq GANZZAHL2 GANZZAHL1 ist gleich GANZZAHL2\n" +" GANZZAHL1 -ge GANZZAHL2 GANZZAHL1 ist größer als oder gleich GANZZAHL2\n" +" GANZZAHL1 -gt GANZZAHL2 GANZZAHL1 ist größer als GANZZAHL2\n" +" GANZZAHL1 -le GANZZAHL2 GANZZAHL1 ist kleiner als oder gleich GANZZAHL2\n" +" GANZZAHL1 -lt GANZZAHL2 GANZZAHL1 ist kleiner als GANZZAHL2\n" +" GANZZAHL1 -ne GANZZAHL2 GANZZAHL1 ist nicht gleich GANZZAHL2\n" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" +"\n" +" DATEI1 -ef DATEI2 DATEI1 und DATEI2 haben dieselbe Device- und Inode-" +"Nummer\n" +" DATEI1 -nt DATEI2 DATEI1 ist neuer (Änderungsdatum) als DATEI2\n" +" DATEI1 -ot DATEI2 DATEI1 ist älter als DATEI2\n" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" +"\n" +" -b DATEI DATEI existiert und ist ein »block special«\n" +" -c DATEI DATEI existiert und ist ein »character special«\n" +" -d DATEI DATEI existiert und ist ein Verzeichnis\n" +" -e DATEI DATEI existiert\n" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" +" -f DATEI DATEI existiert und ist eine reguläre Datei\n" +" -g DATEI DATEI existiert und ist set-group-ID\n" +" -h DATEI DATEI existiert und ist ein symbolischer Link (dasselbe wie -" +"L)\n" +" -G DATEI DATEI existiert und hat die effektive Gruppen-ID\n" +" -k DATEI DATEI existiert und hat das Sticky-Bit gesetzt\n" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" +" -L DATEI DATEI existiert und ist ein symbolischer Link\n" +" -O DATEI DATEI existiert und hat die effektive Benutzer-ID\n" +" -p DATEI DATEI existiert und ist Pipe mit Namen\n" +" -r DATEI DATEI existiert und ist lesbar\n" +" -s DATEI DATEI existiert und ist größer als Null\n" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" +" -S DATEI DATEI existiert und ist ein Socket\n" +" -t [FD] DATEI-Deskriptor FD (Standard: Standardausgabe) ist auf ein\n" +" Terminal geöffnet\n" +" -u DATEI DATEI existiert und das Set-User-ID-Bit der DATEI ist " +"gesetzt\n" +" -w DATEI DATEI existiert und ist schreibbar\n" +" -x DATEI DATEI existiert und ist ausführbar\n" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" +"\n" +"Bedenken Sie, dass runde Klammern für Shells maskiert werden müssen (z. B. " +"mit\n" +"einem Backslash). INTEGER kann auch -l ZEICHENKETTE sein mit der Bedeutung\n" +"»Länge der ZEICHENKETTE«.\n" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "FIXME: ksb und mjb" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "»]« fehlt\n" + +#: src/test.c:1125 +msgid "too many arguments\n" +msgstr "zuviele Argumente\n" + +#: src/touch.c:39 +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie und Randy Smith" + +#: src/touch.c:164 src/touch.c:179 +#, c-format +msgid "creating %s" +msgstr "Erzeugen von %s" + +#: src/touch.c:222 +#, c-format +msgid "cannot touch %s" +msgstr "kann %s nicht berühren" + +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "Setzen der Zeiten für %s" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" +"Die Zugriffs- und Modifikationszeiten jeder DATEI auf die\n" +"momentane Zeit aktualisieren.\n" +"\n" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" +" -a Nur die Zugriffszeit ändern.\n" +" -c, --no-create Keine Dateien erzeugen.\n" +" -d, --date=DATUM DATUM lesen und statt der momentanen Zeit " +"verwenden.\n" +" -f (ignoriert)\n" +" -m Nur Modifikationszeit ändern.\n" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" +" -r, --reference=DATEI Die Zeiten dieser Datei anstatt der momentanen " +"Zeit\n" +" verwenden.\n" +" -t MARKE [[HH]JJ]MMTTSSmm[.ss] statt momentaner Zeit " +"verwenden.\n" +" --time=WORT Die Zeit, die von WORT angegeben wird, setzen:\n" +" access, atime, (wie -a), mtime, modify (wie -m).\n" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" +"\n" +"Beachten Sie, dass -d und -t verschiedene Zeit-Datum-Formate akzeptieren.\n" + +#: src/touch.c:311 src/touch.c:331 +#, c-format +msgid "invalid date format %s" +msgstr "Ungültiges Datumsformat %s" + +#: src/touch.c:355 +msgid "cannot specify times from more than one source" +msgstr "Angabe von mehr als einer Zeitquelle nicht möglich" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "" +"Warnung: »touch %s« ist veraltet; benutzen Sie »touch -t %04d%02d%02d%02d%" +"02d.%02d«" + +#: src/touch.c:399 +msgid "file arguments missing" +msgstr "Dateiargumente fehlen" + +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "Aufruf: %s [OPTION]... MENGE1 [MENGE2]\n" + +#: src/tr.c:331 +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" +"Zeichen von Standardeingabe wandeln, verdichten und/oder löschen; auf\n" +"Standardausgabe schreiben.\n" +"\n" +" -c, --complement erstes Komplement MENGE1\n" +" -d, --delete Zeichen der MENGE1 löschen, nicht wandeln\n" +" -s, --squeeze-repeats jede Eingabefolge eines wiederholten Zeichens, " +"das\n" +" in MENGE1 enthalten ist, durch ein einzelnes\n" +" Vorkommens dieses Zeichens ersetzen\n" +" -t, --truncate-set1 zuerst MENGE1 auf die Länge von MENGE2 " +"abschneiden\n" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" +"\n" +"MENGEn werden angegeben als Zeichenketten. Die meisten Zeichen stehen für " +"sich\n" +"selbst. Interpretierte Folgen sind:\n" +"\n" +" \\NNN Zeichen mit Oktalwert NNN (1 bis 3 oktale Ziffern)\n" +" \\\\ Backslash (\\)\n" +" \\a hörbarer Ton (Piep)\n" +" \\b Zeichen zurück\n" +" \\f Seitenvorschub\n" +" \\n Zeilenvorschub\n" +" \\r Wagenrücklauf\n" +" \\t horizontaler Tabulator\n" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" +" \\v vertikaler Tabulator\n" +" ZEICH1-ZEICH2 alle Zeichen von ZEICH1 bis ZEICH2 aufsteigend\n" +" [ZEICH*] in MENGE2, Kopien von ZEICH bis zur Länge von MENGE1\n" +" [ZEICH*ANZ] ANZ Kopien von ZEICHEN, ANZ ist oktal, wenn es mit 0 " +"beginnt\n" +" [:alnum:] alle Buchstaben und Ziffern\n" +" [:alpha:] alle Buchstaben\n" +" [:blank:] alle horizontalen Leerzeichen/Tabulatoren\n" +" [:cntrl:] alle Kontrollzeichen\n" +" [:digit:] alle Ziffern\n" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" +" [:graph:] alle druckbaren Zeichen, ohne Leerzeichen\n" +" [:lower:] alle Kleinbuchstaben\n" +" [:print:] alle druckbaren Zeichen, einschl. Leerzeichen\n" +" [:punct:] alle Satzzeichen\n" +" [:space:] alle horizontalen oder vertikalen Leerzeichen/Tabulatoren\n" +" [:upper:] alle Großbuchstaben\n" +" [:xdigit:] alle hexadezimalen Ziffern\n" +" [=ZEICHEN=] alle Zeichen äquivalent zu ZEICHEN\n" + +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" +"\n" +"Wandlung wird durchgeführt, wenn nicht -d spezifiziert ist und sowohl " +"MENGE1\n" +"als auch MENGE2 angegeben sind. -t darf nur bei Wandlung benutzt werden.\n" +"MENGE2 wird, wenn nötig, durch Wiederholung des letzten Zeichens auf die " +"Länge\n" +"von MENGE1 vergrößert. " + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" +"Zusätzliche Zeichen in MENGE2 werden ignoriert. Nur\n" +"[:lower:] und [:upper:] werden mit Sicherheit in aufsteigender Reihenfolge\n" +"expandiert. In MENGE2 dürfen sie zum Wandeln nur in Paaren benutzt werden, " +"um\n" +"eine Groß-/Kleinschreibung anzuzeigen. " + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" +"-s benutzt MENGE1, wenn nicht\n" +"umgewandelt oder gelöscht wird; andernfalls wird MENGE2 zum Verdichten " +"benutzt\n" +"und erscheint nach Wandlung und Löschung.\n" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" +"Warnung: die mehrdeutige Oktal-Escape \\%c%c%c wird als 2-Byte-Folge\n" +"\t \\0%c%c, »%c« interpretiert" + +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "Ungültiger Backslash (\\) am Ende der Zeichenkette" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "Ungültige Benutzung des Backslashs »\\%c«" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "" +"Die Endpunkte des Bereiches »%s-%s« sind in umgekehrter Sortierreihenfolge" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "Ungültige Wiederholungsangabe »%s« in [c*n] Konstrukt" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "Fehlender Zeichenklassename »[::]«" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "Fehlendes Äquivalenzklassenzeichen »[==]«" + +#: src/tr.c:1025 +#, c-format +msgid "invalid character class `%s'" +msgstr "Ungültige Zeichenklasse »%s«" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "%s: Äquivalenzklassenoperand muss ein einzelnes Zeichen sein" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "Die [c*] Wiederholungsangabe darf nicht in String1 erscheinen" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "Nur eine [c*] Wiederholungsangabe darf in String2 auftreten" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "[=c=] Ausdrücke dürfen beim Wandeln nicht in String2 auftauchen" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "Wenn Menge1 nicht abgeschnitten wird, darf String2 nicht leer sein" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" +"Beim Wandeln mit \"complemented character classes\" muss\n" +"String2 alle Zeichen im Bereich auf eines abbilden" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" +"Beim Wandeln dürfen in string2 nur die Zeichenklassen »upper« und »lower«\n" +"verwendet werden" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "Das [c*] Konstrukt darf in Kette2 nur bei Wandlungen auftauchen" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "Beim Wandeln müssen zwei Zeichenketten angegeben werden" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "Beim Löschen mit Verdichten müssen zwei Zeichenketten angegeben werden" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" +"Beim Löschen ohne Verdichten darf nur eine Zeichenkette angegeben werden" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "" +"Beim Löschen von Wiederholungen muss mindestens\n" +"eine Zeichenkette angegeben werden" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "fehlerhaft positioniertes [:upper:]- und/oder [:lower:]-Konstrukt" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" +"ungültige Identitätsabbildung; bei Wandlungen muss jedes [:lower:]- oder\n" +"[:upper:]-Konstrukt in Kette1 mit dem entsprechenden [:lower:]- oder\n" +"[:upper:]-Konstrukt in Kette2 in Übereinstimmung gebracht werden" + +#: src/true.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Aufruf: %s [ignorierte Kommandzeilen-Argument]\n" +" oder: %s OPTION\n" +"Mit einem Status-Code beenden, der erfolgreiche Ausführung signalisiert.\n" +"\n" +"Diese Optionen dürfen nicht abgekürzt werden.\n" +"\n" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Aufruf: %s [OPTION] [DATEI]\n" +"\n" +"Vollkommen geordnete Liste in Übereinstimmung mit der partiellen Ordnung in\n" +"DATEI schreiben.\n" +"Ohne DATEI, oder falls DATEI »-« ist, Standardeingabe lesen.\n" +"\n" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "%s: Eingabe enthält eine Schleife:" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "Nur ein Argument ist zulässig." + +#: src/tty.c:63 +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" +"Den Dateinamen des Terminals ausgeben, das mit der Standardeingabe " +"verbunden\n" +"ist.\n" +"\n" +" -s, --silent, --quiet nichts ausgeben, nur Exit-Status setzen\n" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "kein Ausgabegerät" + +#: src/uname.c:111 +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" +"Festgelegte Systeminformationen ausgeben. Ohne OPTION dasselbe wie -s.\n" +"\n" +" -a, --all alle Informationen ausgeben\n" +" -s, --kernel-name Namen des Kernels ausgeben\n" +" -n, --nodename Netzwerknamen der Maschine ausgeben\n" +" -r, --release Release-Nummer des Betriebssystems ausgeben\n" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" +" -v, --kernel-version Version des Kernels ausgeben\n" +" -m, --machine Maschinentyp (Hardware) ausgeben\n" +" -p, --processor Typ des Prozessors ausgeben\n" +" -i, --hardware-platform Hardwareplattform ausgeben\n" +" -o, --operating-system Namen des Betriebssystems ausgeben\n" + +#: src/uname.c:226 +msgid "cannot get system name" +msgstr "es ist nicht möglich, den Namen des Betriebssystems zu ermitteln" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Alle Leerzeichen in jeder DATEI in Tabulatoren wandeln, auf Standardausgabe\n" +"schreiben. Ohne DATEI, oder wenn DATEI »-« ist, Standardeingabe lesen.\n" + +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" +" -a, --all alle Leerzeichen wandeln, statt nur der führendenen\n" +" --first-only nur führendene Leerzeichen konvertieren (überschreibt -" +"a)\n" +" -t, --tabs=ANZAHL Tabulatoren alle ANZAHL Zeichen annehmen, statt 8\n" +" -t, --tabs=LISTE kommagetrennte Liste von Tabulatorpositionen " +"verwenden\n" +" (-t und --tabs impliziert -a)\n" + +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "" +"die Option »-LIST« ist überholt; bitte verwenden Sie »--first-only -t LIST«" + +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "Aufruf: %s [OPTION]... [EINGABE [AUSGABE]]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" +"Alle hintereinanderstehenden identischen Zeilen von EINGABE (oder\n" +"Standardeingabe) bis auf eine löschen, und auf AUSGABE (oder " +"Standardausgabe)\n" +"schreiben.\n" +"\n" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" +" -c, --count den Zeilen die Anzahl des Vorkommens voranstellen\n" +" -d, --repeated nur die doppelten Zeilen ausgeben\n" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" +" -D, --all-repeated[=TRENN-METHODE] alle doppelten Zeilen ausgeben\n" +" TRENN-METHODE={none(Vorgabe),prepend,separate)};\n" +" das Abtrennen geschieht durch Leerzeilen\n" +" -f, --skip-fields=N nicht die ersten N Felder vergleichen\n" +" -i, --ignore-case Abweichung in Groß/Kleinschreibung ignorieren\n" +" -s, --skip-chars=N nicht die ersten N Zeichen vergleichen\n" +" -u, --unique nur einmal vorkommende Zeilen ausgeben\n" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr "" +" -w, --check-chars=N nicht mehr als N Zeichen pro Zeile vergleichen\n" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" +"\n" +"Ein Feld ist eine Folge von Leerzeichen/Tabs gefolgt von anderen Zeichen.\n" +"Felder werden vor Zeichen übersprungen.\n" + +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "Fehler beim Lesen von %s" + +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "Fehler beim Schreiben von %s" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "zusätzlicher Operand »%s«" + +#: src/uniq.c:473 src/uniq.c:498 +msgid "invalid number of fields to skip" +msgstr "Ungültige Anzahl an zu überspringenden Feldern" + +#: src/uniq.c:507 +msgid "invalid number of bytes to skip" +msgstr "Ungültige Anzahl an zu überspringenden Bytes" + +#: src/uniq.c:516 +msgid "invalid number of bytes to compare" +msgstr "Ungültige Anzahl an zu vergleichenden Bytes" + +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "die Option »-%lu« ist überholt; bitte verwenden Sie »-f %lu«" + +# CHECKIT +# What's meant here? -d vs. -D? +# 2001-08-11 16:40:37 CEST -ke- +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "" +"Alle doppelten Zeilen auszugeben und die Zählung zu wiederholen, ist nicht\n" +"sinnvoll" + +#: src/unlink.c:51 +#, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"Aufruf: %s DATEI\n" +" oder: %s OPTION\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" +"Die Funktion unlink aufrufen, um angegebene DATEI zu löschen.\n" +"\n" + +#: src/unlink.c:99 +#, c-format +msgid "cannot unlink %s" +msgstr "Entfernen (unlink) von %s nicht möglich" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "es ist nicht möglich, die Startzeit des Rechners zu ermitteln" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr " %2d:%02d%s an " + +# CHECKIT +# /* FIXME: use strftime, not am, pm. Uli reports that +# the german translation is meaningless. */ +#: src/uptime.c:140 +msgid "am" +msgstr "am" + +# CHECKIT +# /* FIXME: use strftime, not am, pm. Uli reports that +# the german translation is meaningless. */ +#: src/uptime.c:140 +msgid "pm" +msgstr "pm" + +#: src/uptime.c:142 +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d Tag" +msgstr[1] "%d Tage" + +#: src/uptime.c:144 +#, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "%d Benutzer" +msgstr[1] "%d Benutzer" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr ", Durchschnittslast: %.2f" + +#: src/uptime.c:191 src/users.c:118 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "Aufruf: %s [OPTION]... [ DATEI ]\n" + +#: src/uptime.c:192 +#, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Die aktuelle Zeit, die Dauer, wielange das System läuft, die Anzahl der\n" +"Benutzer und die durchschnittliche Anzahl der laufenden Jobs in den letzten " +"1,\n" +"5 und 15 Minuten ausgeben.\n" +"Falls DATEI nicht angegeben ist, %s benutzen.\n" +"%s als DATEI ist üblich.\n" + +#: src/users.c:35 +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "Joseph Arceneaux und David MacKenzie" + +#: src/users.c:119 +#, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Ausgeben, wer augenblicklich gemäß DATEI angemeldet ist.\n" +"Wenn keine DATEI angegeben ist, %s benutzen.\n" +"%s ist als DATEI üblich.\n" +"\n" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "Paul Rubin und David MacKenzie" + +#: src/wc.c:129 +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" +"Byte-, Wort- und Zeilenanzahl für jede DATEI ausgeben und eine Zeile mit " +"der\n" +"Gesamtsumme, wenn mehr als eine DATEI angegeben wurde. Ohne DATEI, oder " +"wenn\n" +"DATEI »-« ist, Standardeingabe lesen.\n" +"\n" +" -c, --bytes Byteanzahl ausgeben\n" +" -m, --chars Zeichenanzahl ausgeben\n" +" -l, --lines Zeilenanzahl ausgeben\n" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" +" -L, --max-line-length die Länge der längsten Zeile ausgeben\n" +" -w, --words Wortanzahl ausgeben\n" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "Joseph Arceneaux, David MacKenzie und Michael Stone" + +#: src/who.c:223 +msgid " old " +msgstr " alt " + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "id=" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "term=" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "exit=" + +#: src/who.c:446 +msgid "clock change" +msgstr "Stellen der Uhr" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "Runlevel" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "last=" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" +"\n" +"# Benutzer=%u\n" + +#: src/who.c:498 +msgid "NAME" +msgstr "NAME" + +# 8 chars are okay +#: src/who.c:498 +msgid "LINE" +msgstr "LEITUNG" + +#: src/who.c:498 +msgid "TIME" +msgstr "ZEIT" + +#: src/who.c:498 +msgid "IDLE" +msgstr "UNTÄTIG" + +#: src/who.c:498 +msgid "PID" +msgstr "PID" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "KOMMENTAR" + +#: src/who.c:499 +msgid "EXIT" +msgstr "EXIT" + +#: src/who.c:574 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "Aufruf: %s [OPTION]... [ DATEI | ARG1 ARG2 ]\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" +"\n" +" -a, --all dasselbe wie -b -d --login -p -r -t -T -u\n" +" -b, --boot Zeit des letzten Rechnerstarts (»system boot«)\n" +" -d, --dead tote Prozesse ausgeben\n" +" -H, --heading Kopfzeile mit Spaltenbezeichnungen ausgeben\n" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" +" -i, --idle die Untätigkeitszeit des Benutzers als STUNDEN:MINUTEN, " +"».«\n" +" oder »old« hinzufügen (von dieser Option wird " +"abgeraten,\n" +" bitte -u verwenden!)\n" +" --login Login-Prozesse des Systems ausgeben\n" +" (gleichbedeutend mit SUS -l)\n" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" +" -l, --lookup versuchen, den Rechnernamen mittels DNS zu " +"kanonifizieren\n" +" (von der Option -l wird abgeraten, bitte --lookup\n" +" verwenden!)\n" +" -m nur Rechnernamen und Benutzer, die die Standardeingabe\n" +" verwenden\n" +" -p, --process aktive Prozesse ausgeben, die von init aufgerufen " +"wurden\n" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" +" -q, --count alle Loginnamen und Anzahl der angemeldeten Benutzer\n" +" -r, --runlevel aktuellen Runlevel ausgeben\n" +" -s, --short nur Namen, Leitung und Zeit ausgeben (Vorgabe)\n" +" -t, --time das letztmalige Stellen der Systemuhr ausgeben\n" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" +" -T, -w, --mesg den Message-Status des Benutzers als +, - or ? " +"hinzufügen\n" +" -u, --users angemeldete Benutzer anzeigen\n" +" --message dasselbe wie -T\n" +" --writable dasselbe wie -T\n" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" +"\n" +"Wenn keine DATEI angegeben ist, »%s« nehmen. »%s« ist als DATEI üblich. " +"Wenn\n" +"ARG1 ARG2 angegeben sind, wird -m angenommen: gebräuchlich sind »bin ich« " +"oder\n" +"»ist schlau«.\n" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "" +"Warnung: -i wird in einem kommenden Release aufgegeben werden; bitte " +"verwenden\n" +"Sie stattdessen -u" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" +"Warnung: die Bedeutung von »-l« wird in einem kommenden Release in Hinblick " +"auf\n" +"Konformität mit POSIX geändert werden" + +#: src/whoami.c:53 +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" +"Den Benutzernamen ausgeben, der zu der aktuellen effektiven Benutzer-ID\n" +"gehört. Dasselbe wie »id -un«.\n" +"\n" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "%s: es ist nicht möglich, einen Benutzernamen zu UID %u zu bestimmen\n" + +#: src/yes.c:49 +#, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"Aufruf: %s [STRING...]\n" +" oder: %s OPTION\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" +"Eine Zeile mit allen angegebenen ZEICHENKETTEN oder »y« wiederholt " +"ausgeben.\n" + +#~ msgid "\\%c: invalid escape" +#~ msgstr "\\%c: ungültige Maskierung (Escape)" + +#~ msgid "program error" +#~ msgstr "Programmfehler" + +#~ msgid "stack overflow" +#~ msgstr "Stacküberlauf" + +#~ msgid "warning: unable to use large stack" +#~ msgstr "Warnung: kann großen Stack nicht verwenden" + +#~ msgid " Type" +#~ msgstr " Typ " + +#~ msgid "missing file arguments" +#~ msgstr "Fehlende Dateiargumente" + +#~ msgid "cannot change to `..' from directory %s" +#~ msgstr "Wechseln in »..« des Verzeichnisses %s nicht möglich" + +#~ msgid "%s: is so large that it is not representable" +#~ msgstr "%s: ist so groß, dass es nicht dargestellt werden kann" + +#~ msgid "cannot execute %s" +#~ msgstr "Es ist nicht möglich, »%s« auszuführen" + +#~ msgid "cannot run %s" +#~ msgstr "es ist nicht möglich, »%s« auszuführen" + +#~ msgid "" +#~ "\n" +#~ "Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n" +#~ msgstr "" +#~ "\n" +#~ "Anstelle von -t ZAHL oder -t LISTE darf auch -ZAHL oder -LISTE verwendet\n" +#~ "werden.\n" + +#~ msgid "warning: `tail %s' is obsolete; use -n or -c instead" +#~ msgstr "" +#~ "Warnung: »tail %s« ist überholt; bitte verwenden Sie stattdessen -n oder -" +#~ "c" + +#~ msgid " +N same as -s N (obsolete; will be withdrawn)\n" +#~ msgstr "" +#~ " +N dasselbe wie -s N (überholt; wird in Zukunft " +#~ "nicht mehr\n" +#~ " unterstützt werden)\n" + +#~ msgid "warning: `uniq %s' is obsolete; use `uniq -s %s' instead" +#~ msgstr "Warnung: »uniq %s« ist überholt; bitte verwenden Sie »uniq -s %s«" + +#~ msgid "" +#~ "Print CRC checksum and byte counts of each FILE.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "CRC-Checksumme und Byteanzahl für jede DATEI ausgeben.\n" +#~ "\n" +#~ " --help diese Hilfe anzeigen und das Programm beenden\n" +#~ " --version Versionsinformation anzeigen und das Programm beenden\n" + +#~ msgid "" +#~ "Convert tabs in each FILE to spaces, writing to standard output.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -i, --initial do not convert TABs after non whitespace\n" +#~ " -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +#~ msgstr "" +#~ "Tabulatoren in jeder DATEI in Leerzeichen wandeln, auf Standardausgabe\n" +#~ "schreiben. Wurde keine DATEI angegeben, oder ist DATEI »-«, die\n" +#~ "Standardeingabe lesen.\n" +#~ "\n" +#~ "Erforderliche Argumente für lange Optionen sind für kurze auch " +#~ "notwendig.\n" +#~ " -i, --initial Tabulatoren nicht nach Nicht-Freiraumzeichen (non\n" +#~ " whitespace) wandeln\n" +#~ " -t, --tabs=ZAHL Tabulator alle ZAHL Zeichen annehmen, nicht 8\n" + +#~ msgid "" +#~ " -t, --tabs=LIST use comma separated list of explicit tab positions\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n" +#~ msgstr "" +#~ " -t, --tabs=LISTE durch Komma getrennte LISTE von " +#~ "Tabulatorpositionen\n" +#~ " annehmen\n" +#~ " --help diese Hilfe anzeigen und das Programm beenden\n" +#~ " --version Versionsinformation anzeigen und das Programm " +#~ "beenden\n" +#~ "\n" +#~ "Anstelle von -t ZAHL oder -t LISTE darf auch -ZAHL oder -LISTE verwendet " +#~ "werden.\n" + +#~ msgid "" +#~ "Wrap input lines in each FILE (standard input by default), writing to\n" +#~ "standard output.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --bytes count bytes rather than columns\n" +#~ " -s, --spaces break at spaces\n" +#~ " -w, --width=WIDTH use WIDTH columns instead of 80\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Eingabezeilen jeder DATEI umbrechen (Vorgabe: Standardeingabe),\n" +#~ "das Ergebnis auf Standardausgabe ausgeben.\n" +#~ "\n" +#~ " -b, --bytes Bytes anstatt Spalten zählen\n" +#~ " -s, --spaces Umbruch bei Leerzeichen\n" +#~ " -w, --width=BREITE BREITE Spalten anstatt 80 benutzen\n" +#~ " --help diese Hilfe anzeigen und das Programm beenden\n" +#~ " --version Versionsinformation anzeigen und das Programm " +#~ "beenden\n" + +#~ msgid "" +#~ " -v, --first-page=NUMBER first line number on each logical page\n" +#~ " -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +#~ "two delimiter characters for separating logical pages, a missing\n" +#~ "second character implies :. Type \\\\ for \\. STYLE is one of:\n" +#~ msgstr "" +#~ " -v, --first-page=ANZAHL erste Zeilennummer auf jeder logischen " +#~ "Seite\n" +#~ " -w, --number-width=ANZAHL ANZAHL Spalten für Zeilennummern " +#~ "benutzen\n" +#~ " --help diese Hilfe anzeigen und das Programm " +#~ "beenden\n" +#~ " --version Versionsinformation anzeigen und " +#~ "beenden\n" +#~ "\n" +#~ "Standardeinstellung ist -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC sind\n" +#~ "zwei Begrenzungszeichen, um logische Seiten zu trennen, ein fehlendes " +#~ "zweites\n" +#~ "Zeichen impliziert »:«. Geben Sie \\\\ für \\ ein. STIL ist einer aus:\n" + +#~ msgid "" +#~ "Write lines consisting of the sequentially corresponding lines from\n" +#~ "each FILE, separated by TABs, to standard output.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +#~ " -s, --serial paste one file at a time instead of in " +#~ "parallel\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Zeilen auf Standardausgabe ausgeben, die aus sequenziell sich " +#~ "entsprechenden\n" +#~ "Zeilen jeder DATEI bestehen, getrennt durch Tabulatoren. Ohne DATEI oder " +#~ "wenn\n" +#~ "DATEI »-« ist, Standardeingabe lesen.\n" +#~ "\n" +#~ "Erforderliche Argumente für lange Optionen sind für kurze auch " +#~ "notwendig.\n" +#~ " -d, --delimiters=LISTE Zeichen aus LISTE anstelle von Tabulatoren " +#~ "benutzen\n" +#~ " -s, --serial Dateien nacheinander ausgeben anstelle " +#~ "parallel\n" +#~ " --help diese Hilfe anzeigen und das Programm beenden\n" +#~ " --version Versionsinformation anzeigen und das Programm " +#~ "beenden\n" +#~ "\n" + +#~ msgid "" +#~ " -v, --verbose always output headers giving file names\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ " -v, --verbose immer Dateinamen ausgeben\n" +#~ " --help diese Hilfe anzeigen und das Programm beenden\n" +#~ " --version Versionsinformation anzeigen und das Programm " +#~ "beenden\n" +#~ "\n" + +#~ msgid "" +#~ "Convert spaces in each FILE to tabs, writing to standard output.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -a, --all convert all whitespace, instead of initial " +#~ "whitespace\n" +#~ msgstr "" +#~ "Alle Leerzeichen in jeder DATEI in Tabulatoren wandeln, auf " +#~ "Standardausgabe\n" +#~ "schreiben. Ohne DATEI, oder wenn DATEI »-« ist, Standardeingabe lesen.\n" +#~ "\n" +#~ "Erforderliche Argumente für lange Optionen sind für kurze auch " +#~ "notwendig.\n" +#~ " -a, --all alle Leerzeichen wandeln, statt nur der " +#~ "führendenen\n" + +#~ msgid "" +#~ " -t, --tabs=NUMBER have tabs NUMBER characters apart instead of 8\n" +#~ " -t, --tabs=LIST use comma separated list of explicit tab positions\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n" +#~ msgstr "" +#~ " -t, --tabs=ANZAHL Tabulatoren alle ANZAHL Zeichen annehmen, statt 8\n" +#~ " -t, --tabs=LISTE mit Kommata getrennte Liste von " +#~ "Tabulatorpositionen\n" +#~ " verwenden\n" +#~ " --help diese Hilfe anzeigen und das Programm beenden\n" +#~ " --version Versionsinformation anzeigen und das Programm " +#~ "beenden\n" +#~ "\n" +#~ "Statt -t ANZAHL oder -t LISTE darf auch -ANZAHL oder -LISTE verwendet " +#~ "werden.\n" + +#~ msgid "" +#~ "when using the old-style +POS and -POS key specifiers,\n" +#~ "the +POS specifier must come first" +#~ msgstr "" +#~ "wenn +POS und -POS Schlüsselspezifikationen benutzt werden,\n" +#~ "muss +POS zuerst kommen" + +#~ msgid "" +#~ "the starting field number argument to the `-k' option must be positive" +#~ msgstr "Das Startfeld der »-k« Option muss positiv sein" + +#~ msgid "starting field spec has `.' but lacks following character offset" +#~ msgstr "" +#~ "Die Startfeldangabe hat einen ».« jedoch keinen folgenden Zeichenoffset" + +#~ msgid "field specification has `,' but lacks following field spec" +#~ msgstr "Feldspezifikation hat »,« aber keine folgende Feldspezifikation" + +#~ msgid "ending field number argument to the `-k' option must be positive" +#~ msgstr "Endfeld der Option »-k« muss positiv sein" + +#~ msgid "ending field spec has `.' but lacks following character offset" +#~ msgstr "Endfeldangabe hat ».« aber keinen folgenden Zeichenoffset" + +#~ msgid "" +#~ "specified number of bytes `%s' is larger than the maximum\n" +#~ "representable value of type `long'" +#~ msgstr "" +#~ "Angebene Anzahl Bytes »%s« ist größer als der maximale darstellbare\n" +#~ "Wert des Typs »long«" + +#~ msgid "cannot get processor type" +#~ msgstr "es ist nicht möglich, den Prozessortyp festzustellen" + +# 8 chars are okay +#~ msgid "USER" +#~ msgstr "BENUTZER" + +#~ msgid "LOGIN-TIME " +#~ msgstr "LOGIN-ZEIT " + +#~ msgid "FROM\n" +#~ msgstr "VON\n" + +#~ msgid "cannot chmod %s" +#~ msgstr "kann Eigenschaften von %s nicht ändern" + +#~ msgid "Try %s --help' for more information.\n" +#~ msgstr "»%s --help« gibt weitere Informationen.\n" + +#~ msgid "preserving permissions for %s" +#~ msgstr "Erhalten der Zugriffsrechte für %s" + +#~ msgid "cannot lstat `.'" +#~ msgstr "lstat von ».« nicht möglich" + +#~ msgid "closing directory %s" +#~ msgstr "Schließen von Verzeichnis %s" + +#~ msgid "%s: remove directory %s? " +#~ msgstr "%s: Verzeichnis %s entfernen? " + +#~ msgid "%s: directory %s is write protected; descend into it anyway? " +#~ msgstr "" +#~ "%s: Verzeichnis %s ist schreibgeschützt. Trotzdem hinein absteigen? " + +#~ msgid "removing all entries of directory %s\n" +#~ msgstr "entfernen aller Einträge in Verzeichnis %s\n" + +#~ msgid "directory %s was replaced before being removed" +#~ msgstr "Verzeichnis %s wurde vor dem Entfernen ersetzt" + +#~ msgid "cannot change back to directory %s via `..'" +#~ msgstr "In Verzeichnis %s kann nicht über »..« zurück gewechselt werden" + +#~ msgid "subdirectory of %s was moved while being removed" +#~ msgstr "Unterverzeichnis von %s wurde während des Entfernens bewegt" + +#~ msgid "%s: remove directory %s%s? " +#~ msgstr "%s: Verzeichnis %s entfernen%s? " + +#~ msgid " (might be nonempty)" +#~ msgstr " (viell. nicht leer)" + +#~ msgid "removing the directory itself: %s\n" +#~ msgstr "Entfernen des Verzeichnisses selbst: %s\n" + +#~ msgid "cannot remove current directory %s" +#~ msgstr "Entfernen von momentanem Verzeichnis %s nicht möglich" + +#~ msgid "continue? " +#~ msgstr "Fortfahren? " diff --git a/src/apps/bin/coreutils-5.0/po/el.gmo b/src/apps/bin/coreutils-5.0/po/el.gmo new file mode 100644 index 0000000000..fdadc92fbf Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/el.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/el.po b/src/apps/bin/coreutils-5.0/po/el.po new file mode 100644 index 0000000000..040226fe9b --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/el.po @@ -0,0 +1,12078 @@ +# Greek messages for GNU textutils +# Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc. +# Simos Xenitellis , 1999, 2000, 2001, 2002. +# +msgid "" +msgstr "" +"Project-Id-Version: textutils 2.1\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2002-08-11 11:25+0100\n" +"Last-Translator: Simos Xenitellis \n" +"Language-Team: Greek \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-7\n" +"Content-Transfer-Encoding: 8-bit\n" + +# +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "ìç Ýãêõñï üñéóìá %s ãéá %s" + +# +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "áóáöÝò üñéóìá %s ãéá %s" + +# +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "¸ãêõñá ïñßóìáôá åßíáé:" + +# +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "óöÜëìá åããñáöÞò" + +# +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "¶ãíùóôï óöÜëìá óõóôÞìáôïò" + +# +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "êáíïíéêü êåíü áñ÷åßï" + +# +#: lib/file-type.c:42 +msgid "regular file" +msgstr "êáíïíéêü áñ÷åßï" + +# +#: lib/file-type.c:45 +msgid "directory" +msgstr "êáôÜëïãïò" + +# +#: lib/file-type.c:48 +msgid "block special file" +msgstr "åéäéêü áñ÷åßï ìðëïê" + +# +#: lib/file-type.c:51 +msgid "character special file" +msgstr "åéäéêü áñ÷åßï ÷áñáêôÞñùí" + +# +#: lib/file-type.c:54 +msgid "fifo" +msgstr "ößöï" + +# +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "óõìâïëéêüò óýíäåóìïò" + +# +#: lib/file-type.c:60 +msgid "socket" +msgstr "õðïäï÷Ýáò" + +# +#: lib/file-type.c:63 +msgid "message queue" +msgstr "ïõñÜ ìçíõìÜôùí" + +# +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "óçìáöüñïò" + +# +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "" + +# +#: lib/file-type.c:71 +msgid "weird file" +msgstr "ðáñÜîåíï áñ÷åßï" + +# +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: ç åðéëïãÞ `%s' åßíáé áóáöÞò\n" + +# +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: ç åðéëïãÞ `--%s' äåí åðéôñÝðåé ïñßóìáôá\n" + +# +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: ç åðéëïãÞ `%c%s' äåí åðéôñÝðåé ïñßóìáôá\n" + +# +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: ç åðéëïãÞ `-%s' áðáéôåß Ýíá üñéóìá\n" + +# +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: ìç áíáãíùñßóéìç åðéëïãÞ `--%s'\n" + +# +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: ìç áíáãíùñßóéìç åðéëïãÞ `%c%s'\n" + +# +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: ìç áíáãíùñßóéìç åðéëïãÞ -- %c\n" + +# +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: ìç Ýãêõñç åðéëïãÞ -- %c\n" + +# +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: ç åðéëïãÞ áðáéôåß Ýíá üñéóìá -- %c\n" + +# +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: ç åðéëïãÞ `-W %s' åßíáé áóáöÞò\n" + +# +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: ç åðéëïãÞ `-W %s' äåí åðéôñÝðåé ïñßóìáôá\n" + +# +#: lib/human.c:519 +msgid "block size" +msgstr "ìÝãåèïò ìðëïê" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "" + +# +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, fuzzy, c-format +msgid "cannot create directory %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, fuzzy, c-format +msgid "%s exists but is not a directory" +msgstr "ôï `%s' õðÜñ÷åé Þäç Üëëá äåí åßíáé êáôÜëïãïò" + +# +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, fuzzy, c-format +msgid "cannot change owner and/or group of %s" +msgstr "äåí åßíáé äõíáôü íá ðáñáëçöèåß ÷ñÞóôçò êáé ïìÜäá" + +# +#: lib/makepath.c:338 +#, fuzzy, c-format +msgid "cannot chdir to directory %s" +msgstr "áäýíáôç ç áëëáãÞ óôï êáôÜëïãï %s" + +# +#: lib/makepath.c:392 lib/makepath.c:446 +#, fuzzy, c-format +msgid "cannot change permissions of %s" +msgstr "áäõíáìßá áëëáãÞò éäéïêôçóßáò óôï %s" + +# +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "ç ìíÞìç åîáíôëÞèçêå" + +# +#: lib/quotearg.c:236 +msgid "`" +msgstr "`" + +# +#: lib/quotearg.c:237 +msgid "'" +msgstr "'" + +# +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[yYíÍ]" + +# +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[nNïÏ]" + +# +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "" + +# +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "" + +# +#: lib/unicodeio.c:164 +#, fuzzy +msgid "character out of range" +msgstr "%s: áñéèìüò ãñáììÞò Ýîù áðü ôá üñéá" + +# +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "" + +# +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "" + +# +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "ìç Ýãêõñïò ÷ñÞóôçò" + +# +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "ìç Ýãêõñç ïìÜäá" + +# +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "áäýíáôç ç ëÞøç ôçò ïìÜäáò åéóáãùãÞò óôï óýóôçìá åíüò áñéèìçôéêïý UID" + +# +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "äåí åßíáé äõíáôü íá ðáñáëçöèåß ÷ñÞóôçò êáé ïìÜäá" + +# +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "ÃñáììÝíï áðü ôïí/ôçí %s.\n" + +# +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +"Áõôü åßíáé åëåýèåñï ëïãéóìéêü· äåßôå ôï ðçãáßï êþäéêá ãéá êáíüíåò " +"áíôéãñáöÞò\n" +"ÄÅÍ õðÜñ÷åé åããýçóç· ïýôå áêüìá ãéá ×ÑÇÓÉÌÏÔÇÔÁ Þ ÊÁÔÁËËÇËÏÔÇÔÁ ÃÉÁ ÅÍÁ\n" +"ÓÕÃÊÅÊÑÉÌÅÍÏ ÓÊÏÐÏ.\n" + +# +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "" + +# +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "ÈÝóôå LC_ALL='C' ãéá íá ðáñáêÜìøåôå ôï ðñüâëçìá." + +# +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "" + +# +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "ÄïêéìÜóôå `%s --help' ãéá ðåñéóóüôåñç âïÞèåéá.\n" + +# +#: src/basename.c:54 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ]... [ÅÉÓÏÄÏÓ [ÅÎÏÄÏÓ]]\n" + +#: src/basename.c:59 +#, fuzzy +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" +"Ôõðþíåé ôï ÏÍÏÌÁ ÷ùñßò íá áêïëïõèåßôáé áðï óõóôáôéêÜ êáôáëüãïõ.\n" +"Åáí ðñïóäéïñßæåôáé, áöáéñåß ôï ÅÐÉÈÇÌÁ ðïõ áêïëïõèåß.\n" +"\n" +" --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +" --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" + +# +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"ÁíáöÝñáôå óöÜëìáôá óôï <%s>.\n" + +# +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "ðïëý ëßãá ïñßóìáôá" + +# +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "ðÜñá ðïëëÜ ïñßóìáôá" + +# +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "" + +# +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ] [ÁÑ×ÅÉÏ]...\n" + +# +#: src/cat.c:96 +#, fuzzy +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" +"ÓõíÝíùóç ÁÑ×ÅÉÏÕ(ÙÍ) Þ êáíïíéêÞò åéóüäïõ óå êáíïíéêÞ Ýîïäï.\n" +"\n" +" -A, --show-all éóïäýíáìï ìå -vET\n" +" -b, --number-nonblank áñßèìçóç ìç-êåíþí ãñáììþí ôçò åîüäïõ\n" +" -e éóïäýíáìï ìå -vE\n" +" -E, --show-ends åìöÜíéóç ôïõ $ óôï ôÝëïò êÜèå ãñáììÞò\n" +" -n, --number áñßèìçóç üëùí ôùí ãñáììþí åîüäïõ\n" +" -s, --squeeze-blank ðïôÝ ðåñéóóüôåñï áðü ìéá ìïíÞ êåíÞ ãñáììÞ\n" +" -t éóïäýíáìï ìå -vT\n" +" -T, --show-tabs åìöÜíéóç ÷áñáêôÞñá TAB óáí ^I\n" +" -u (áãíïåßôå)\n" +" -v, --show-nonprinting ÷ñÞóç ^ êáé Ì- êùäéêïãñáöÞ, åêôüò ãéá LFD êáé " +"TAB\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +"\n" +"×ùñßò ÁÑ×ÅÉÏ Þ üôáí ôï áñ÷åßï åßíáé ôï -, áíÜãíùóç áðü ôçí êáíïíéêÞ åßóïäï.\n" + +# +#: src/cat.c:106 +#, fuzzy +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" +"ÓõíÝíùóç ÁÑ×ÅÉÏÕ(ÙÍ) Þ êáíïíéêÞò åéóüäïõ óå êáíïíéêÞ Ýîïäï.\n" +"\n" +" -A, --show-all éóïäýíáìï ìå -vET\n" +" -b, --number-nonblank áñßèìçóç ìç-êåíþí ãñáììþí ôçò åîüäïõ\n" +" -e éóïäýíáìï ìå -vE\n" +" -E, --show-ends åìöÜíéóç ôïõ $ óôï ôÝëïò êÜèå ãñáììÞò\n" +" -n, --number áñßèìçóç üëùí ôùí ãñáììþí åîüäïõ\n" +" -s, --squeeze-blank ðïôÝ ðåñéóóüôåñï áðü ìéá ìïíÞ êåíÞ ãñáììÞ\n" +" -t éóïäýíáìï ìå -vT\n" +" -T, --show-tabs åìöÜíéóç ÷áñáêôÞñá TAB óáí ^I\n" +" -u (áãíïåßôå)\n" +" -v, --show-nonprinting ÷ñÞóç ^ êáé Ì- êùäéêïãñáöÞ, åêôüò ãéá LFD êáé " +"TAB\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +"\n" +"×ùñßò ÁÑ×ÅÉÏ Þ üôáí ôï áñ÷åßï åßíáé ôï -, áíÜãíùóç áðü ôçí êáíïíéêÞ åßóïäï.\n" + +# +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +# +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" +"\n" +" -B, --binary ÷ñÞóç äõáäéêþí ãñáøéìÜôùí óôç óõóêåõÞ ôçò " +"êïíóüëáò.\n" +"\n" + +# +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "áäõíáìßá åêôÝëåóçò ioctl óôï `%s'" + +# +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "êáíïíéêÞ Ýîïäïò" + +# +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s: ôï áñ÷åßï åéóüäïõ åßíáé ôï áñ÷åßï åîüäïõ" + +# +#: src/cat.c:858 +#, fuzzy +msgid "closing standard input" +msgstr "êáíïíéêÞ åßóïäïò" + +# +#: src/cat.c:861 +#, fuzzy +msgid "closing standard output" +msgstr "êáíïíéêÞ Ýîïäïò" + +# +#: src/chgrp.c:93 +#, fuzzy +msgid "cannot change to null group" +msgstr "äåí åßíáé äõíáôü íá ðáñáëçöèåß ÷ñÞóôçò êáé ïìÜäá" + +# +#: src/chgrp.c:102 +#, fuzzy, c-format +msgid "invalid group name %s" +msgstr "ìç Ýãêõñç ïìÜäá" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "áñéèìüò ïìÜäáò" + +# +#: src/chgrp.c:109 +#, fuzzy, c-format +msgid "invalid group number %s" +msgstr "ìç Ýãêõñïò áñéèìüò" + +# +#: src/chgrp.c:126 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"×ñÞóç: %s [ÅÐÉËÏÃÇ]... [ÁÑ×ÅÉÏ]...\n" +" Þ: %s --traditional [ÁÑ×ÅÉÏ] [[+]ÈÅÓÇ [[+]×ÁÑÁÊÔÇÑÉÓÔÉÊÏ]]\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, fuzzy, c-format +msgid "failed to get attributes of %s" +msgstr "äéáôÞñçóç ùñþí óôï %s" + +#: src/chmod.c:102 +#, fuzzy, c-format +msgid "getting new attributes of %s" +msgstr "äéáôÞñçóç ùñþí óôï %s" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "ôá äéêáéþìáôá ôïõ %s ôñïðïðïéÞèçêáí óå %04lo (%s)\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "áðïôõ÷ßá áëëáãÞò ôùí äéêáéùìÜôùí ôïõ %s óå %04lo (%s)\n" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "ôá äéêáéþìáôá ôïõ %s äéáôçñïýíôáé ùò Ý÷ïõí, äçëáäÞ %04lo (%s)\n" + +# +#: src/chmod.c:179 +#, fuzzy, c-format +msgid "changing permissions of %s" +msgstr "áäõíáìßá áëëáãÞò éäéïêôçóßáò óôï %s" + +#: src/chmod.c:242 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"×ñÞóç: %s [ÅÐÉËÏÃÇ]... ÔÅËÅÕÔÁÉÏÓ\n" +" Þ: %s [ÅÐÉËÏÃÇ]... ÐÑÙÔÏÓ ÔÅËÅÕÔÁÉÏÓ\n" +" Þ: %s [ÅÐÉËÏÃÇ]... ÐÑÙÔÏÓ ÁÕÎÇÓÇ ÔÅËÅÕÔÁÉÏÓ\n" + +#: src/chmod.c:248 +#, fuzzy +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"ÁëëáãÞ ôùí äéêáéùìÜôùí êÜèå ÁÑ×ÅÉÏÕ óå ÄÉÊÁÉÙÌÁ.\n" +"\n" +" -c, --changes üðùò ôï \"--verbose\" áëëÜ åìöÜíéóç ìçíýìáôïò ìüíï " +"üôáí ãßíåôáé áëëáãÞ\n" +" -f, --silent, --quiet áðïöõãÞ åìöÜíéóçò ôùí ðåñéóóüôåñùí ìçíõìÜôùí " +"óöÜëìáôïò\n" +" -v, --verbose åìöÜíéóç äéáãíùóôéêþí ìçíõìÜôùí ãéá êÜèå áñ÷åßï " +"ðïõ åðåîåñãÜæåôå\n" +" --reference=ÁÑ×ÅÉÏÁÍÁÖÏÑÁÓ ÷ñÞóç ôùí äéêáéùìÜôùí ôïõ ÁÑ×ÅÉÏÁÍÁÖÏÑÁÓ\n" +" áíôß ôéò ôéìÞò ôïõ ÄÉÊÁÉÙÌÁ\n" +" -R, --recursive áëëáãÝò óôá áñ÷åßá êáé óôïõò êáôáëüãïõò " +"áíáäñïìéêÜ\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +"\n" +"ÊÜèå ÄÉÊÁÉÙÌÁ åßíáé Ýíá Þ ðåñéóóüôåñá áðü ôá ãñÜììáôá ugoa, Ýíá áðü ôá\n" +"óýìâïëá +-= êáé Ýíá Þ ðåñéóóüôåñá áðü ôá ãñÜììáôá rwxXstugo.\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" + +# +#: src/chmod.c:320 +#, fuzzy, c-format +msgid "invalid character %s in mode string %s" +msgstr "ìç Ýãêõñïò ÷áñáêôÞñáò `%c' óôï ôýðï áëöáñéèìçôéêïý `%s'" + +# +#: src/chmod.c:361 +#, fuzzy, c-format +msgid "invalid mode string: %s" +msgstr "ìç Ýãêõñï åßäïò áëöáñéèìçôéêïý `%s'" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "ïýôå ï óõìâïëéêüò óýíäåóìïò %s ïýôå ôï áíáöåñüìåíï áñ÷åßï áëëÜ÷ôçêáí\n" + +#: src/chown-core.c:143 +#, fuzzy, c-format +msgid "changed ownership of %s to %s\n" +msgstr "áðïôõ÷ßá áëëáãÞò ôïõ éäéïêôÞôç áðü %s óå " + +#: src/chown-core.c:144 +#, fuzzy, c-format +msgid "changed group of %s to %s\n" +msgstr "áðïôõ÷ßá áëëáãÞò ôçò ïìÜäáò áðü %s óå %s\n" + +# +#: src/chown-core.c:148 +#, fuzzy, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "áäõíáìßá áëëáãÞò éäéïêôçóßáò óôï %s" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "áðïôõ÷ßá áëëáãÞò ôçò ïìÜäáò áðü %s óå %s\n" + +#: src/chown-core.c:153 +#, fuzzy, c-format +msgid "ownership of %s retained as %s\n" +msgstr "ï éäéïêôÞôçò ôïõ %s ðáñÝìåéíå ùò " + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "ç ïìÜäá ôïõ %s Ý÷åé ðáñáìåßíåé óå %s\n" + +#: src/chown-core.c:326 +#, fuzzy, c-format +msgid "changing ownership of %s" +msgstr "äéáôÞñçóç éäéïêôÞôç ãéá ôï %s" + +# +#: src/chown-core.c:327 +#, fuzzy, c-format +msgid "changing group of %s" +msgstr "äåí åßíáé äõíáôü íá ðáñáëçöèåß ÷ñÞóôçò êáé ïìÜäá" + +# +#: src/chown-core.c:345 +#, fuzzy, c-format +msgid "unable to restore permissions of %s" +msgstr "áäõíáìßá áëëáãÞò éäéïêôçóßáò óôï %s" + +#: src/chown.c:99 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"×ñÞóç: %s [ÅÐÉËÏÃÇ]... ÔÅËÅÕÔÁÉÏÓ\n" +" Þ: %s [ÅÐÉËÏÃÇ]... ÐÑÙÔÏÓ ÔÅËÅÕÔÁÉÏÓ\n" +" Þ: %s [ÅÐÉËÏÃÇ]... ÐÑÙÔÏÓ ÁÕÎÇÓÇ ÔÅËÅÕÔÁÉÏÓ\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" + +# +#: src/chroot.c:45 +#, fuzzy, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ]... [ÅÉÓÏÄÏÓ [ÅÎÏÄÏÓ]]\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" + +# +#: src/chroot.c:84 +#, fuzzy, c-format +msgid "cannot change root directory to %s" +msgstr "áäýíáôç ç áëëáãÞ óôï êáôÜëïãï %s" + +# +#: src/chroot.c:87 +#, fuzzy +msgid "cannot chdir to root directory" +msgstr "áäýíáôç ç áëëáãÞ óôï êáôÜëïãï %s" + +# +#: src/cksum.c:234 +#, fuzzy, c-format +msgid "%s: file too long" +msgstr "ôï áñ÷åßï ìçäåíßóôçêå" + +# +#: src/cksum.c:282 +#, fuzzy, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ]... [ÅÉÓÏÄÏÓ [ÅÎÏÄÏÓ]]\n" + +# +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" + +# +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "Ñßôóáñíô ÓôÜëìáí êáé ÍôÝéâéíô ÌáêÝíæç" + +# +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ]... ÁÑÉÓÔÅѼ_ÁÑ×ÅºÏ ÄÅÎɼ_ÁÑןÏ\n" + +# +#: src/comm.c:77 +#, fuzzy +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" +"Óýãêñéóç ôáîéíïìçìÝíùí áñ÷åßùí ÁÑÉÓÔÅѼ_ÁÑ×ÅºÏ êáé ÄÅÎɼ_ÁÑןÏ, áíÜ " +"ãñáììÞ.\n" +"\n" +" -1 áðüêñõøç ìïíáäéêþí ãñáììþí óôï áñéóôåñü áñ÷åßï\n" +" -2 áðüêñõøç ìïíáäéêþí ãñáììþí óôï äåîéü áñ÷åßï\n" +" -3 áðüêñõøç ìïíáäéêþí ãñáììþí êáé óôá äýï áñ÷åßá\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#: src/copy.c:162 src/du.c:332 +#, fuzzy, c-format +msgid "cannot access %s" +msgstr "áäýíáôç ç áëëáãÞ äéêáéùìÜôùí óôï %s" + +#: src/copy.c:226 +#, fuzzy, c-format +msgid "cannot open %s for reading" +msgstr "áäõíáìßá ìåôáöïñÜò ôïõ `%s' óôï `%s'" + +# +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, fuzzy, c-format +msgid "cannot fstat %s" +msgstr "áäýíáôç ç áëëáãÞ äéêáéùìÜôùí óôï %s" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "" + +# +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, fuzzy, c-format +msgid "cannot remove %s" +msgstr "áäýíáôç ç áëëáãÞ äéêáéùìÜôùí óôï %s" + +# +#: src/copy.c:277 +#, fuzzy, c-format +msgid "cannot create regular file %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, fuzzy, c-format +msgid "reading %s" +msgstr "óöÜëìá áíÜãíùóçò %s" + +# +#: src/copy.c:362 +#, fuzzy, c-format +msgid "cannot lseek %s" +msgstr "áäýíáôç ç áëëáãÞ äéêáéùìÜôùí óôï %s" + +# +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, fuzzy, c-format +msgid "writing %s" +msgstr "óöÜëìá åããñáöÞò %s" + +# +#: src/copy.c:409 src/copy.c:415 +#, fuzzy, c-format +msgid "closing %s" +msgstr "êëåßóéìï ôïõ %s (fd=%d)" + +#: src/copy.c:610 +#, fuzzy, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: áíôéãñáöÞ ðÜíù óôï `%s', ðáñÜêáìøç äéêáéùìÜôùí %04lo; " + +# +#: src/copy.c:616 +#, fuzzy, c-format +msgid "%s: overwrite %s? " +msgstr "%s: óöÜëìá åããñáöÞò" + +# +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, fuzzy, c-format +msgid "cannot stat %s" +msgstr "áäýíáôç ç áëëáãÞ äéêáéùìÜôùí óôï %s" + +# +#: src/copy.c:820 +#, fuzzy, c-format +msgid "omitting directory %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "" + +#: src/copy.c:866 src/ln.c:237 +#, fuzzy, c-format +msgid "%s and %s are the same file" +msgstr "ôá `%s' êáé `%s' åßíáé ôï ßäéï áñ÷åßï" + +# +#: src/copy.c:876 +#, fuzzy, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "áäýíáôç ç áëëáãÞ óôï êáôÜëïãï %s" + +#: src/copy.c:893 +#, fuzzy, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "%s: äå ìðïñåß íá ãñáöôåß ìç-êáôÜëïãïò ðÜíù óå êáôÜëïãï" + +# +#: src/copy.c:904 +#, fuzzy, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/copy.c:965 +#, fuzzy, c-format +msgid "cannot overwrite directory %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/copy.c:974 +#, fuzzy, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "áäýíáôç ç áëëáãÞ óôï êáôÜëïãï %s" + +#: src/copy.c:997 +#, fuzzy, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "" +"ç äçìéïõñãßá áíôéãñÜöïõ áóöáëåßáò ôïõ `%s' èá êáôÝóôñåöå ôç ðçãÞ· ôï `%s' äå " +"ìåôáêéíåßôáé" + +#: src/copy.c:998 +#, fuzzy, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "" +"óôç äçìéïõñãßá áíôéãñÜöïõ áóöáëåßáò ôïõ `%s' èá êáôÝóôñåöå ôç ðçãÞ· ôï `%s' " +"äåí áíôéãñÜöåôáé" + +# +#: src/copy.c:1013 src/ln.c:273 +#, fuzzy, c-format +msgid "cannot backup %s" +msgstr "áäýíáôç ç áëëáãÞ äéêáéùìÜôùí óôï %s" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr " (áíôßãñáöï áóöáëåßáò: %s)" + +# +#: src/copy.c:1099 +#, fuzzy, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/copy.c:1106 +#, fuzzy, c-format +msgid "will not create hard link %s to directory %s" +msgstr "áäýíáôç ç áëëáãÞ óôï êáôÜëïãï %s" + +# +#: src/copy.c:1132 +#, fuzzy, c-format +msgid "cannot create hard link %s to %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/copy.c:1186 +#, fuzzy, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "áäýíáôç ç áëëáãÞ óôï êáôÜëïãï %s" + +# +#: src/copy.c:1229 +#, fuzzy, c-format +msgid "cannot move %s to %s" +msgstr "áäýíáôç ç áëëáãÞ äéêáéùìÜôùí óôï %s" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "" + +#: src/copy.c:1269 +#, fuzzy, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "%s: áäõíáìßá áíôéãñáöÞò êõêëßêïý óõìâïëéêïý óõíäÝóìïõ" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "" +"%s: äõíáôüôçôá äçìéïõñãßáò ó÷åôéêþí óõìâïëéêþí óõíäÝóìùí ìüíï óôï ôñÝ÷ïí " +"êáôÜëïãï" + +# +#: src/copy.c:1353 +#, fuzzy, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/copy.c:1364 +#, fuzzy, c-format +msgid "cannot create link %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/copy.c:1389 src/mkfifo.c:133 +#, fuzzy, c-format +msgid "cannot create fifo %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/copy.c:1403 +#, fuzzy, c-format +msgid "cannot create special file %s" +msgstr "åéäéêü áñ÷åßï ÷áñáêôÞñùí" + +# +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, fuzzy, c-format +msgid "cannot read symbolic link %s" +msgstr "óõìâïëéêüò óýíäåóìïò" + +# +#: src/copy.c:1440 +#, fuzzy, c-format +msgid "cannot create symbolic link %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, fuzzy, c-format +msgid "failed to preserve ownership for %s" +msgstr "äéáôÞñçóç éäéïêôÞôç ãéá ôï %s" + +#: src/copy.c:1471 +#, fuzzy, c-format +msgid "%s has unknown file type" +msgstr "%s: Üãíùóôï åßäïò áñ÷åßïõ" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "äéáôÞñçóç ùñþí óôï %s" + +#: src/copy.c:1531 +#, fuzzy, c-format +msgid "failed to preserve authorship for %s" +msgstr "äéáôÞñçóç éäéïêôÞôç ãéá ôï %s" + +# +#: src/copy.c:1549 +#, fuzzy, c-format +msgid "setting permissions for %s" +msgstr "áäõíáìßá áëëáãÞò éäéïêôçóßáò óôï %s" + +# +#: src/copy.c:1571 src/ln.c:326 +#, fuzzy, c-format +msgid "cannot un-backup %s" +msgstr "áäýíáôç ç áëëáãÞ äéêáéùìÜôùí óôï %s" + +# src/copy.c:924 +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s -> %s (÷ñÞóç áíôéãñÜöïõ áóöáëåßáò)\n" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/cp.c:164 src/mv.c:311 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"×ñÞóç: %s [ÅÐÉËÏÃÇ]... ÔÅËÅÕÔÁÉÏÓ\n" +" Þ: %s [ÅÐÉËÏÃÇ]... ÐÑÙÔÏÓ ÔÅËÅÕÔÁÉÏÓ\n" +" Þ: %s [ÅÐÉËÏÃÇ]... ÐÑÙÔÏÓ ÁÕÎÇÓÇ ÔÅËÅÕÔÁÉÏÓ\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" + +# +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" + +#: src/cp.c:209 +#, fuzzy +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +"ÁíôéãñáöÞ ôçò ÐÇÃÇò óôï ÐÑÏÏÑÉÓÌÏÓ Þ ðïëëáðëÝò ÐÇÃÇ(ÅÓ) óôï ÊÁÔÁËÏÃÏ.\n" +"\n" +" -a, --archive ôï ßäéï ìå -dpR\n" +" --backup=[ÅËÅÃ×ÏÓ] äçìéïõñãßá áíôéãñÜöïõ áóöáëåßáò ãéá êÜèå " +"áñ÷åßï\n" +" ðñïïñéóìïý\n" +" -b üðùò ôï --backup áëëÜ äåí áðáéôåß ðáñÜìåôñï\n" +" -d, --no-dereference äéáôÞñçóç óõìâïëéêþí óõíäÝóìùí\n" +" -f, --force äéáãñáöÞ õðáñ÷üíôùí ðñïïñéóìþí, ÷ùñßò\n" +" åðéâåâáßùóç äéáãñáöÞò\n" +" -i, --interactive áðáßôçóç äéáâåâáßùóçò äéáãñáöÞò ðñéí ôç\n" +" äéáãñáöÞ ëüãù åðéêÜëõøçò\n" +" -l, --link äçìéïõñãßá óõíäÝóìùí áíôß áíôéãñÜöùí\n" +" -p, --preserve äéáôÞñçóç ÷áñáêôçñéóôéêþí ôùí áñ÷åßùí, áí\n" +" åßíáé äõíáôüí\n" +" -P, --parents ðñïóèÞêç äéáäñïìÞò ôçò ðçãÞò óôï ÊÁÔÁËÏÃÏÓ\n" +" -r áíôéãñáöÞ áíáäñïìéêÜ, ôïõò ìç-êáôáëüãïõò óáí\n" +" áñ÷åßá\n" +" ÐÑÏÅÉÄÏÐÏÉÇÓÇ: êÜíôå ÷ñÞóç ôïõ -R üôáí\n" +" ðñüêåéôå íá áíôéãñÜøåôå åéäéêÜ áñ÷åßá üðùò\n" +" FIFO Þ ôï /dev/zero\n" +" --sparse=WHEN Ýëåã÷ïò ôçò äçìéïõñãßáò áñáéþí (sparse)\n" +" áñ÷åßùí\n" +" -R, --recursive áíôéãñáöÞ êáôáëüãùí áíáäñïìéêÜ\n" +" --strip-trailing-slashes áðïìÜêñõíóç ïôéäÞðïôå êÜèåôùí ðïõ Ýðïíôáé " +"áðü\n" +" êÜèå üñéóìá ÐÇÃÇÓ\n" +" -s, --symbolic-link äçìéïõñãßá óõìâïëéêþí óõíäÝóìùí áíôß\n" +" áíôéãñÜöùí\n" +" -S, --suffix=ÊÁÔÁËÇÎÇ ðáñÜêáìøç ôçò óõíçèéóìÝíçò êáôÜëçîçò ôùí\n" +" áíôéãñÜöùí áóöáëåßáò\n" +" --target-directory=ÊÁÔÁËÏÃÏÓ ìåôáêßíçóå üëá ôá ïñßóìáôá ãéá ÐÇÃÇ óôï\n" +" ÊÁÔÁËÏÃÏÓ\n" +" -u, --update áíôéãñáöÞ ìüíï üôáí ôï áñ÷åßï ÐÇÃÇ åßíáé\n" +" íåþôåñï áðü ôï áñ÷åßï ÐÑÏÏÑÉÓÌÏÓ Þ üôáí\n" +" ôï áñ÷åßï ðñïïñéóìüò äåí õðÜñ÷åé\n" +" -v, --verbose åîÞãçóç ôïõ ôß ãßíåôáé\n" +" -x, --one-file-system ðáñáìïíÞ óôï ôñÝ÷ïí óýóôçìá áñ÷åßùí\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +"\n" +"¸î ïñéóìïý, ôá áñáßá (sparse) áñ÷åßá ÐÇÃÇÓ áíáãùñßæïíôáé ìå Ýíá ü÷é ôüóï\n" +"êáëü åõñåóôéêü áëãüñéèìï êáé ôï áíôßóôïé÷ï áñ÷åßï ÐÑÏÏÑÉÓÌÏÕ ãßíåôáé áñáéü\n" +"åðßóçò. ÁõôÞ åßíáé ç óõìðåñéöïñÜ ôçò åðéëïãÞò --sparse=auto. ÅðéëÝîôå\n" +"--sparse=always ãéá ôç äçìéïõñãßá áñáéþí áñ÷åßùí ÐÑÏÏÑÉÓÌÏÕ ïðüôå ôï áñ÷åßï\n" +"ÐÇÃÇ ðåñéÝ÷åé áñêåôÜ ìåãÜëåò óåéñÝò áðü ìçäåíéêÜ bytes.\n" +"Ìå --sparse=never áðïãïñåýåôå ôç äçìéïõñãßá áñáéþí áñ÷åßùí.\n" +"\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" + +#: src/cp.c:221 +#, fuzzy +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +"Ìåôïíïìáóßá ôçò ÐÇÃÇÓ óå ÐÑÏÏÑÉÓÌÏ Þ ìåôáêßíçóç ÐÇÃÇÓ(ÙÍ) óôï ÊÁÔÁËÏÃÏ.\n" +"\n" +" --backup=[ÅËÅÃ×ÏÓ] äçìéïõñãßá áíôéãñÜöïõ áóöáëåßáò ãéá êÜèå " +"áñ÷åßï\n" +" ðñïïñéóìïý\n" +" -b üðùò ôï --backup áëëÜ äåí áðáéôåß ðáñÜìåôñï\n" +" -f, --force äéáãñáöÞ õðáñ÷üíôùí êáôáëüãùí, ÷ùñßò\n" +" åðéâåâáßùóç\n" +" -i, --interactive åðéâåâáßùóç ðñéí ôç äéáãñáöÞ\n" +" --strip-trailing-slashes áöáßñåóç ÷áñáêôÞñùí êáèÝôùí óôï ôÝëïò\n" +" ãñáììÞò áðü êÜèå ÐÇÃÇ\n" +" -S, --suffix=ÊÁÔÁËÇÎÇ ðáñÜêáìøç ôçò óõíÞèçò êáôÜëçîçò áíôéãñÜöùí\n" +" áóöáëåßáò\n" +" --target-directory=ÊÁÔÁËÏÃÏÓ ìåôáêßíçóç üëùí ôùí ïñéóìÜôùí ÐÇÃÇÓ\n" +" óôïí ÊÁÔÁËÏÃÏ\n" +" -u, --update ìåôáöïñÜ ìüíï ôùí ðáëáéüôåñùí Þ åîïëïêëÞñïõ\n" +" íÝùí áñ÷åßùí\n" +" -v, --verbose åîÞãçóç ôïõ ôé óõìâáßíåé\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +"\n" + +#: src/cp.c:230 +#, fuzzy +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +"ÁíôéãñáöÞ ôçò ÐÇÃÇò óôï ÐÑÏÏÑÉÓÌÏÓ Þ ðïëëáðëÝò ÐÇÃÇ(ÅÓ) óôï ÊÁÔÁËÏÃÏ.\n" +"\n" +" -a, --archive ôï ßäéï ìå -dpR\n" +" --backup=[ÅËÅÃ×ÏÓ] äçìéïõñãßá áíôéãñÜöïõ áóöáëåßáò ãéá êÜèå " +"áñ÷åßï\n" +" ðñïïñéóìïý\n" +" -b üðùò ôï --backup áëëÜ äåí áðáéôåß ðáñÜìåôñï\n" +" -d, --no-dereference äéáôÞñçóç óõìâïëéêþí óõíäÝóìùí\n" +" -f, --force äéáãñáöÞ õðáñ÷üíôùí ðñïïñéóìþí, ÷ùñßò\n" +" åðéâåâáßùóç äéáãñáöÞò\n" +" -i, --interactive áðáßôçóç äéáâåâáßùóçò äéáãñáöÞò ðñéí ôç\n" +" äéáãñáöÞ ëüãù åðéêÜëõøçò\n" +" -l, --link äçìéïõñãßá óõíäÝóìùí áíôß áíôéãñÜöùí\n" +" -p, --preserve äéáôÞñçóç ÷áñáêôçñéóôéêþí ôùí áñ÷åßùí, áí\n" +" åßíáé äõíáôüí\n" +" -P, --parents ðñïóèÞêç äéáäñïìÞò ôçò ðçãÞò óôï ÊÁÔÁËÏÃÏÓ\n" +" -r áíôéãñáöÞ áíáäñïìéêÜ, ôïõò ìç-êáôáëüãïõò óáí\n" +" áñ÷åßá\n" +" ÐÑÏÅÉÄÏÐÏÉÇÓÇ: êÜíôå ÷ñÞóç ôïõ -R üôáí\n" +" ðñüêåéôå íá áíôéãñÜøåôå åéäéêÜ áñ÷åßá üðùò\n" +" FIFO Þ ôï /dev/zero\n" +" --sparse=WHEN Ýëåã÷ïò ôçò äçìéïõñãßáò áñáéþí (sparse)\n" +" áñ÷åßùí\n" +" -R, --recursive áíôéãñáöÞ êáôáëüãùí áíáäñïìéêÜ\n" +" --strip-trailing-slashes áðïìÜêñõíóç ïôéäÞðïôå êÜèåôùí ðïõ Ýðïíôáé " +"áðü\n" +" êÜèå üñéóìá ÐÇÃÇÓ\n" +" -s, --symbolic-link äçìéïõñãßá óõìâïëéêþí óõíäÝóìùí áíôß\n" +" áíôéãñÜöùí\n" +" -S, --suffix=ÊÁÔÁËÇÎÇ ðáñÜêáìøç ôçò óõíçèéóìÝíçò êáôÜëçîçò ôùí\n" +" áíôéãñÜöùí áóöáëåßáò\n" +" --target-directory=ÊÁÔÁËÏÃÏÓ ìåôáêßíçóå üëá ôá ïñßóìáôá ãéá ÐÇÃÇ óôï\n" +" ÊÁÔÁËÏÃÏÓ\n" +" -u, --update áíôéãñáöÞ ìüíï üôáí ôï áñ÷åßï ÐÇÃÇ åßíáé\n" +" íåþôåñï áðü ôï áñ÷åßï ÐÑÏÏÑÉÓÌÏÓ Þ üôáí\n" +" ôï áñ÷åßï ðñïïñéóìüò äåí õðÜñ÷åé\n" +" -v, --verbose åîÞãçóç ôïõ ôß ãßíåôáé\n" +" -x, --one-file-system ðáñáìïíÞ óôï ôñÝ÷ïí óýóôçìá áñ÷åßùí\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +"\n" +"¸î ïñéóìïý, ôá áñáßá (sparse) áñ÷åßá ÐÇÃÇÓ áíáãùñßæïíôáé ìå Ýíá ü÷é ôüóï\n" +"êáëü åõñåóôéêü áëãüñéèìï êáé ôï áíôßóôïé÷ï áñ÷åßï ÐÑÏÏÑÉÓÌÏÕ ãßíåôáé áñáéü\n" +"åðßóçò. ÁõôÞ åßíáé ç óõìðåñéöïñÜ ôçò åðéëïãÞò --sparse=auto. ÅðéëÝîôå\n" +"--sparse=always ãéá ôç äçìéïõñãßá áñáéþí áñ÷åßùí ÐÑÏÏÑÉÓÌÏÕ ïðüôå ôï áñ÷åßï\n" +"ÐÇÃÇ ðåñéÝ÷åé áñêåôÜ ìåãÜëåò óåéñÝò áðü ìçäåíéêÜ bytes.\n" +"Ìå --sparse=never áðïãïñåýåôå ôç äçìéïõñãßá áñáéþí áñ÷åßùí.\n" +"\n" + +#: src/cp.c:239 +#, fuzzy +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"Ç êáôÜëçîç ôùí áíôéãñÜöùí áóöáëåßáò åßíáé ôï `~', åêôüò áí ôåèåß ìå ôï\n" +"--suffix Þ ôï SIMPLE_BACKUP_SUFFIX.\n" +"Ï Ýëåã÷ïò Ýêäïóçò ìðïñåß íá ôåèåß ìå ôçí åðéëïãÞ --backup Þ ìÝóù ôçò\n" +"ìåôáâëçôÞò ðåñéâÜëëïíôïò VERSION_CONTROL. Ïé äõíáôÝò ôéìÝò åßíáé:\n" +"\n" +" none,off íá ìç äçìéïõñãïýíôáé áíôßãñáäá áóöáëåßáò (áêüìá êáé\n" +" áí äßíåôáé --backup)\n" +" numbered, t äçìéïõñãßá áñéèìçìÝíùí áíôéãñÜöùí áóöáëåßáò\n" +" existing, nil áñéèìçìÝíùí, áí õðÜñ÷ïõí áñéèìçìÝíá áíôßãñáöá, " +"äéáöïñåôéêÜ\n" +" áðëÜ áíôßãñáöá\n" +" simple, never ðÜíôá äçìéïõñãßá áðëþí áíôéãñÜöùí\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +#, fuzzy +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +"Ç êáôÜëçîç ôùí áíôéãñÜöùí áóöáëåßáò åßíáé ôï `~', åêôüò áí ôåèåß ìå ôï\n" +"--suffix Þ ôï SIMPLE_BACKUP_SUFFIX.\n" +"Ï Ýëåã÷ïò Ýêäïóçò ìðïñåß íá ôåèåß ìå ôçí åðéëïãÞ --backup Þ ìÝóù ôçò\n" +"ìåôáâëçôÞò ðåñéâÜëëïíôïò VERSION_CONTROL. Ïé äõíáôÝò ôéìÝò åßíáé:\n" +"\n" +" none,off íá ìç äçìéïõñãïýíôáé áíôßãñáäá áóöáëåßáò (áêüìá êáé\n" +" áí äßíåôáé --backup)\n" +" numbered, t äçìéïõñãßá áñéèìçìÝíùí áíôéãñÜöùí áóöáëåßáò\n" +" existing, nil áñéèìçìÝíùí, áí õðÜñ÷ïõí áñéèìçìÝíá áíôßãñáöá, " +"äéáöïñåôéêÜ\n" +" áðëÜ áíôßãñáöá\n" +" simple, never ðÜíôá äçìéïõñãßá áðëþí áíôéãñÜöùí\n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +"Óáí åéäéêÞ ðåñßðôùóç, ç cp äçìéïõñãåß áíôßãñáöá ôçò ÐÇÃÇÓ üôáí ïé åðéëïãÝò\n" +"êáé ôá ÐÇÃÇ êáé ÐÑÏÏÑÉÓÌÏÓ Ý÷ïõí ôï ßäéï üíïìá, ãéá Ýíá õðÜñ÷ïí, êáíïíéêü " +"áñ÷åßï.\n" + +#: src/cp.c:325 +#, fuzzy, c-format +msgid "failed to preserve times for %s" +msgstr "äéáôÞñçóç ùñþí óôï %s" + +# +#: src/cp.c:349 +#, fuzzy, c-format +msgid "failed to preserve permissions for %s" +msgstr "áäõíáìßá áëëáãÞò éäéïêôçóßáò óôï %s" + +# +#: src/cp.c:434 +#, fuzzy, c-format +msgid "cannot make directory %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +#, fuzzy +msgid "missing file argument" +msgstr "ðñïóðÝñáóìá ïñßóìáôïò" + +# +#: src/cp.c:498 +#, fuzzy +msgid "missing destination file" +msgstr "Ý÷åé ðáñáëçöèåß ç ëßóôá ìå ôá ðåäßá" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, fuzzy, c-format +msgid "accessing %s" +msgstr "äéáãñáöÞ êáôáëüãïõ %s\n" + +# +#: src/cp.c:546 +#, fuzzy, c-format +msgid "%s: specified target is not a directory" +msgstr "ôï `%s' õðÜñ÷åé Þäç Üëëá äåí åßíáé êáôÜëïãïò" + +#: src/cp.c:554 +#, fuzzy, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "" +"áíôéãñáöÞ ðïëëáðëþí áñ÷åßùí, áëëÜ ôï ôåëåõôáßï üñéóìá (%s) äåí åßíáé " +"êáôÜëïãïò" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "" +"üôáí äéáôçñïýíôáé ôá ìïíïðÜôéá, ôï ôåëåõôáßï üñéóìá ðñÝðåé íá åßíáé êáôÜëïãïò" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"ðñïåéäïðïßçóç: ôï --version-control (-V) äå ÷ñçóéìïðïéåßôáé ðëÝïí·\n" +"ç õðïóôÞñçîç ãéá áõôü èá ðÜøåé óå êÜðïéá ìåëëïíôéêÞ Ýêäïóç. ÊÜíôå\n" +"÷ñÞóç ôïõ --backup=%s óôç èÝóç ôïõ." + +# +#: src/cp.c:972 src/ln.c:464 +#, fuzzy +msgid "symbolic links are not supported on this system" +msgstr "ðñïåéäïðïßçóç: ôï --pid=PID äåí õðïóôçñßæåôáé óå áõôü ôï óýóôçìá" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "áäõíáìßá äçìéïõñãßáò óèåíáñþí(hard) êáé óõìâïëéêþí óõíäÝóìùí" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "åßäïò áíôéãñÜöïõ áóöÜëåéáò" + +# +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "Óôéïýáñô ÊÝìð êáé ÍôÝéâéíô ÌáêÝíæç" + +# +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "óöÜëìá áíÜãíùóçò" + +# +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "ç åßóïäïò åîáöáíßóôçêå" + +# +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s: áñéèìüò ãñáììÞò Ýîù áðü ôá üñéá" + +# +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: `%s': áñéèìüò ãñáììÞò Ýîù áðü ôá üñéá" + +# +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr " óôçí åðáíÜëçøç %d\n" + +# +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s: `%s': äåí âñÝèçêå ôáßñéáóìá" + +# +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "óöÜëìá óôçí áíåýñåóç ìÝóù êáíïíéêÞò Ýêöñáóçò" + +# +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "óöÜëìá åããñáöÞò ãéá ôï `%s'" + +# +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "%s: áíáìåíüôáí `+' Þ `-' ìåôÜ ôï äéá÷ùñéóôÞ" + +# +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s: áíáìåíüôáí áêÝñáéïò ìåôÜ ôï `%c'" + +# +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "%s: ôï `}' áðáéôåßôáé üôáí äçëþíïíôáé ïé åðáíáëÞøåéò" + +# +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "%s}: áðáéôåßôáé áêÝñáéïò ìåôáîý ôùí `{' êáé `}'" + +# +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s: ï ôåëåóôÞò ôåñìáôéóìïý `%c' Ý÷åé ðáñáëçöèåß" + +# +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: ìç Ýãêõñç êáíïíéêÞ Ýêöñáóç: %s" + +# +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "%s: ìç Ýãêõñç ìïñöÞ" + +# +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s: ï áñéèìüò ãñáììÞò ðñÝðåé íá åßíáé ìåãáëýôåñïò áðü ôï ìçäÝí" + +# +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "" +"ï áñéèìüò ãñáììÞò `%s' åßíáé ìéêñüôåñïò áðü ôïí ðñïçãïýìåíï áñéèìü ãñáììÞò, %" +"s" + +# +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "" +"ðñïåéäïðïßçóç: ï áñéèìüò ãñáììÞò `%s' åßíáé ßäéïò ìå áõôüí ôçò ðñïçãïýìåíçò " +"ãñáììÞò" + +# +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "Ý÷åé ðáñáëçöèåß ï äçëùôÞò ìåôáôñïðÞò óôçí êáôÜëçîç" + +# +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "ìç Ýãêõñïò äçëùôÞò ìåôáôñïðÞò óôçí êáôÜëçîç: %c" + +# +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "ìç Ýãêõñïò äçëùôÞò ìåôáôñïðÞò óôçí êáôÜëçîç: \\%.3o" + +# +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "Ý÷åé ðáñáëçöèåß ç äÞëùóç ìåôáôñïðÞò %% óôçí êáôÜëçîç" + +# +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "ðÜñá ðïëëÝò äçëþóåéò ìåôáôñïðÞò óôçí êáôÜëçîç" + +# +#: src/csplit.c:1441 +#, c-format +msgid "%s: invalid number" +msgstr "%s: ìç Ýãêõñïò áñéèìüò" + +# +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ]... ÁÑ×ÅÉÏ ÌÏÑÖÇ...\n" + +# +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" + +# +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" + +# +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" + +# +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" + +# +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" + +# +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "" + +# +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÅÓ]... [ÁÑ×ÅÉÏ]...\n" + +# +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" + +# +#: src/cut.c:185 +#, fuzzy +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" +"Áíáäßðëùóç ãñáììþí åéóüäïõ óå êÜèå ÁÑ×ÅÉÏ (êáíïíéêÞ åßóïäïò åî ïñéóìïý),\n" +"ãñÜöïíôáò óôçí êáíïíéêÞ Ýîïäï.\n" +"\n" +" -b, --bytes ìÝôñçóç bytes áíôß óôçëþí\n" +" -s, --spaces áíáäßðëùóç óå äéáóôÞìáôá ìüíï\n" +" -w, --width=ÐËÁÔÏÓ ÷ñÞóç ÐËÁÔÏÓ óôÞëåò áíôß ãéá 80\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" + +# +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" + +# +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +# +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "ìç Ýãêõñï byte Þ ëßóôá ðåäßùí" + +# +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "ìüíï Ýíá åßäïò ëßóôáò ìðïñåß íá ïñéóôåß" + +# +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "Ý÷åé ðáñáëçöèåß ç ëßóôá ìå ôéò èÝóåéò" + +# +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "Ý÷åé ðáñáëçöèåß ç ëßóôá ìå ôá ðåäßá" + +# +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "ï äéá÷ùñéóôÞò ðñÝðåé íá åßíáé Ýíáò ìüíï ÷áñáêôÞñáò" + +# +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "ðñÝðåé íá ïñßóåôå ëßóôá áðü bytes, ÷áñáêôÞñåò Þ ðåäßá" + +# +#: src/cut.c:720 +#, fuzzy +msgid "an input delimiter may be specified only when operating on fields" +msgstr "Ýíáò äéá÷ùñéóôÞò ìðïñåß íá ïñéóôåß ìüíï üôáí ëåéôïõñãïýìå ìå ðåäßá" + +# +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" +"ç áðüêñõøç ãñáììþí ðïõ äåí Ý÷ïõí äéá÷ùñéóôÝò Ý÷åé íüçìá\n" +"\tìüíï üôáí ëåéôïõñãïýìå ìå ðåäßá" + +#: src/date.c:117 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" +"×ñÞóç: %s [ÅÐÉËÏÃÇ]... [+ÌÏÑÖÇ]\n" +" Þ: %s [ÅÐÉËÏÃÇ] [ÌÌÇÇùùëë[[ÕÕ]××][.ää]]\n" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" + +# +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "êáíïíéêÞ åßóïäïò" + +# +#: src/date.c:268 src/date.c:460 +#, fuzzy, c-format +msgid "invalid date `%s'" +msgstr "ìç Ýãêõñïò áñéèìüò ðåäßïõ: `%s'" + +# +#: src/date.c:364 +#, fuzzy +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "ïé åðéëïãÝò --string êáé --check åßíáé áìïéâáßùò áðïêëåéüìåíåò" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "" +"Ïé åðéëïãÝò ãéá íá åêôõðùèåß êáé íá ïñéóôåß ç þñá äåí ìðïñïýí íá\n" +"÷ñçóéìïðïéçèïýí ðáñÜëëçëá." + +# +#: src/date.c:377 +#, fuzzy, c-format +msgid "too many non-option arguments: %s%s" +msgstr "ðÜñá ðïëëÜ ïñßóìáôá ðïõ äåí Ý÷ïõí åðéëïãÝò" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" +"Ç ðáñÜìåôñïò `%s' äåí îåêéíÜ ìå ôï ðñüèåìá `+' üðùò èá Ýðñåðå.\n" +"Ïôáí ÷ñçóéìïðïéÞôå ìéá åðéëïãÞ ãéá íá êáèïñßóåôå ôçí(ôéò) çìåñïìçíßá(åò), \n" +"êÜèå ðáñÜìåôñïò ðïõ äåí åßíáé åðéëïãÞ ðñÝðåé íá åßíáé äéáìïñöùìÝíç Ýôóé\n" +"þóôå íá îåêéíÜåé ìå ôï `+'." + +# +#: src/date.c:397 +#, fuzzy +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "äå ìðïñïýí íá äçëþíïíôáé áñ÷åßá üôáí ãßíåôáé ÷ñÞóç ôïõ --string" + +#: src/date.c:433 +msgid "undefined" +msgstr "ÌÞ ïñéóìÝíï" + +# +#: src/date.c:435 +#, fuzzy +msgid "cannot get time of day" +msgstr "äåí åßíáé äõíáôü íá ãßíåé äéá÷ùñéóìüò óå ðåñéóóüôåñïõò áðü Ýíá ôñüðï" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "Äåí ìðïñåß íá ôåèåß ç çìåñïìçíßá." + +# +#: src/dd.c:43 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "Ðùë Ñïýìðéí êáé ÍôÝéâéíô ÌáêÝíæç" + +# +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ] [ÁÑ×ÅÉÏ]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "%s+%s åããñáöÝò ìÝóá\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "%s+%s åããñáöÝò Ýîù\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "ìçäåíéóìÝíç åããñáöÞ êáé ãñÜøéìï ðÜíù óå áõôÞ (truncated)" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "ìçäåíéóìÝíåò åããñáöÝò êáé ãñÜøéìï ðÜíù óå áõôÝò (truncated)" + +# +#: src/dd.c:382 +#, fuzzy, c-format +msgid "closing input file %s" +msgstr "äçìéïõñãßá áñ÷åßïõ `%s'\n" + +#: src/dd.c:385 +#, fuzzy, c-format +msgid "closing output file %s" +msgstr "äéáãñáöÞ êáôáëüãïõ %s\n" + +# +#: src/dd.c:469 +#, fuzzy, c-format +msgid "writing to %s" +msgstr "óöÜëìá åããñáöÞò %s" + +# +#: src/dd.c:501 +#, fuzzy, c-format +msgid "invalid conversion: %s" +msgstr "ìç Ýãêõñï åßäïò áëöáñéèìçôéêïý `%s'" + +# +#: src/dd.c:557 +#, fuzzy, c-format +msgid "unrecognized option %s" +msgstr "áðáñÜäåêôç åðéëïãÞ `-%c'" + +# +#: src/dd.c:610 +#, fuzzy, c-format +msgid "unrecognized option %s=%s" +msgstr "áðáñÜäåêôç åðéëïãÞ `-%c'" + +# +#: src/dd.c:616 +#, fuzzy, c-format +msgid "invalid number %s" +msgstr "ìç Ýãêõñïò áñéèìüò" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"ìüíï Ýíá conv óôï {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" + +# +#: src/dd.c:1170 src/dd.c:1188 +#, fuzzy, c-format +msgid "opening %s" +msgstr "óöÜëìá áíÜãíùóçò %s" + +# +#: src/dd.c:1196 +#, fuzzy +msgid "file offset out of range" +msgstr "%s: áñéèìüò ãñáììÞò Ýîù áðü ôá üñéá" + +#: src/dd.c:1214 +#, fuzzy, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "äéáãñáöÞ êáôáëüãïõ %s\n" + +#: src/df.c:49 +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "" + +#: src/df.c:153 +msgid "Filesystem Type" +msgstr "" + +#: src/df.c:155 +msgid "Filesystem " +msgstr "" + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr "" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr "" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr "" + +#: src/df.c:167 +#, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr "" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr "" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr "" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" + +#: src/df.c:859 +#, fuzzy, c-format +msgid "file system type %s both selected and excluded" +msgstr "ôï óýóôçìá áñ÷åßùí `%s' åßíáé êáé åðåëåãìÝíï êáé áðïêëåéþìåíï" + +#: src/df.c:903 +msgid "Warning: " +msgstr "Ðñïåéäïðïßçóç:" + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "%sáäõíáìßá áíÜãíùóçò ðßíáêá ðñïóáñôçìÝíùí óõóôÞìáôïò áñ÷åßùí" + +# +#: src/dircolors.c:103 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÅÓ]... [ÁÑ×ÅÉÏ]...\n" + +#: src/dircolors.c:104 +#, fuzzy +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"ÅìöÜíéóç åíôïëþí ãéá íá ôåèïýí óôç ìåôáâëçôÞ ðåñéâÜëëïíôïò LS_COLORS.\n" +"\n" +"ÅðéëïãÞ ìïñöÞò åîüäïõ:\n" +" -b, --sh, --bourne-shell åìöÜíéóç êþäéêá Bourne shell ãéá íá ôåèåß óôçí " +"LS_COLORS\n" +" -c, --csh, --c-shell åìöÜíéóç êþäéêá C shell ãéá íá ôåèåß óôçí " +"LS_COLORS\n" +" -p, --print-database åìöÜíéóç åî ïñéóìïý ñýèìéóçò\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +"\n" +"Áí ïñßæåôáé ÁÑ×ÅÉÏ, áíáãéãíþóêåôáé ãéá íá äéåõêñéíéóôåß ðïéá ÷ñþìáôá íá " +"÷ñçóéìïðïéçèïýí ãéá \n" +"êÜèå åßäïò áñ÷åßïõ êáé êáôÜëçîçò. ÄéáöïñåôéêÜ, ÷ñçóéìïðïéÞôáé ìéá Ýôïéìç " +"âÜóç.\n" +"Ãéá ëåðôïìÝñéåò ãéá ôç ìïñöÞ ôùí áñ÷åßùí áõôþí, ôñÝîôå `dircolors --print-" +"database'.\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" + +# +#: src/dircolors.c:299 +#, fuzzy, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s: ìç Ýãêõñïò áñéèìüò äåõôåñïëÝðôùí" + +# +#: src/dircolors.c:371 +#, fuzzy, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s: ìç áíáãíùñßóéìç åðéëïãÞ `%c%s'\n" + +# src/dircolors.c:372 +#: src/dircolors.c:372 +msgid "" +msgstr "<åóùôåñéêü>" + +#: src/dircolors.c:467 +#, fuzzy +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" +"Ïé åðéëïãÝò ãéá ðåñéôïëïãßá êáé 'stty-readable' ôõðïé åîüäïõ åßíáé\n" +"áðïêëåéóôéêÜ áìïéâáßåò." + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" +"äå ìðïñïýí íá ÷ñçóéìïðïéçèïýí ïñßóìáôá ÁÑ×ÅÉÏÕ ìå ôçí åðéëïãÞ\n" +"åìöÜíéóçò ôçò åóùôåñéêÞò âÜóçò ôçò dircolor" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "äåí õðÜñ÷åé ìåôáâëçôÞ ðåñéâÜëëïíôïò SHELL, êáé äåí äüèçêå åßäïò öëïéïý" + +#: src/dirname.c:33 src/pathchk.c:59 +msgid "David MacKenzie and Jim Meyering" +msgstr "" + +# +#: src/dirname.c:46 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ]... [ÅÉÓÏÄÏÓ [ÅÎÏÄÏÓ]]\n" + +#: src/dirname.c:51 +#, fuzzy +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" +"Åêôõðþíåé ôï ÏÍÏÌÁ áöáéñþíôáò ôï áêïëïõèïýìåíï /óôïé÷åßï. ÅÜí ôï üíïìá äåí\n" +"ðåñéÝ÷åé `/' ôï óýìâïëï `.' äçëþíåé ôïí ôñÝ÷ùí êáôÜëïãï\n" +"\n" +" --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +" --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" + +# +#: src/du.c:49 +#, fuzzy +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "Ðùë Ñïýìðéí êáé ÍôÝéâéíô ÌáêÝíæç" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" + +# +#: src/du.c:337 +#, fuzzy, c-format +msgid "cannot change to parent of directory %s" +msgstr "áäýíáôç ç áëëáãÞ óôï êáôÜëïãï %s" + +# +#: src/du.c:345 +#, fuzzy, c-format +msgid "cannot change to directory %s" +msgstr "áäýíáôç ç áëëáãÞ óôï êáôÜëïãï %s" + +# +#: src/du.c:352 +#, fuzzy, c-format +msgid "cannot read directory %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "óýíïëï" + +# +#: src/du.c:641 +#, fuzzy, c-format +msgid "invalid maximum depth %s" +msgstr "ìç Ýãêõñïò áñéèìüò ðåäßïõ: `%s'" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "" +"äåí åßíáé äõíáôü íá äåé÷ôåß ðåñßëçøç êáé íá åìöáíéóôïýí üëåò ïé êáôá÷ùñßóåéò" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "ðñïåéäïðïßçóç: ç ðåñßëçøç åßíáé üìïéï ìå --max-depth=0" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "ðñïåéäïðïßçóç: ç ðåñßëçøç Ýñ÷åôáé óå áíôßöáóç ìå ôï --max-depth=%d" + +# +#: src/echo.c:77 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÅÓ]... [ÁÑ×ÅÉÏ]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +# +#: src/env.c:93 +#, fuzzy +msgid "Richard Mlynarik and David MacKenzie" +msgstr "Ñßôóáñíô ÓôÜëìáí êáé ÍôÝéâéíô ÌáêÝíæç" + +# +#: src/env.c:119 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÅÓ]... [ÁÑ×ÅÉÏ]...\n" + +#: src/env.c:122 +#, fuzzy +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" +"Ôßèåôáé óå êÜèå ÌÅÔÁÂËÇÔÇ ôïõ ðåñéâÜëëïíôïò ç ÔÉÌÇ åêôåëåßôáé ç ÅÍÔÏËÇ.\n" +"\n" +" -i, --ignore-environment Åêêßíçóç ìå Üäåéï ðåñéâÜëëïí\n" +" -u, --unset=VARIABLE Áöáéñåßôáé ç ÌÅÔÁÂËÇÔÇ áðï ôï ðåñéâáëëïí\n" +" --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +" --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" +"\n" +"Åíá áðëü - õðïíïåßôáé -i. Åáí äåí õðÜñ÷åé ÅÍÔÏËÇ, åêôõðþíåôáé ôï\n" +"ðåñéâáëëïí ðïõ äçìéïõñãÞèçêå.\n" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" + +# +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +# +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" + +# +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" + +# +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "ôï ìÝãåèïò óôçëïãíþìïíá ðåñéÝ÷åé ìç Ýãêõñï ÷áñáêôÞñá" + +# +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "ôï ìÝãåèïò óôçëïãíþìïíá äå ìðïñåß íá åßíáé 0" + +# +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "ôá ìåãÝèç ôïõ óôçëïãíþìïíá ðñÝðåé íá åßíáé êáôÜ áýîïõóá óåéñÜ" + +# +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "" + +# +#: src/expr.c:90 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ]... [ÅÉÓÏÄÏÓ [ÅÎÏÄÏÓ]]\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" +"\n" +"ÐñïóÝ÷ôå ïôé ðïëëïß ôåëåóôÝò(operators) ÷ñåéÜæïíôáé ÷áñáêôÞñåò äéáöõãÞò Þ\n" +"åéóáãùãéêÜ ãéá ôá êåëýöç (shells).\n" +"Ïé óõãêñßóåéò åßíáé áñéèìçôéêÝò åÜí êáé ïé äõï ÐÁÑÁÌåôñïé åßíáé áñéèìïß,\n" +"Þ áëëéþò ëåîéêïãñáöéêïß.\n" +"Ôï ôáßñéáóìá ìå ðñüôõðï åðéóôñÝöåé ôçí áëõóßäá ðïõ âñÝèçêå ìåôáîý\n" +"\\( êáé \\) Þ êåíü. Åáí \\( êáé \\) äåí ÷ñçóéìïðïéÞèçêáí, ôïôå åðéóôñÝöåé\n" +"ôïí áñéèìü ôùí ÷áñáêôÞñùí ðïõ ôáßñéáîáí Þ 0.\n" + +# +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +#, fuzzy +msgid "syntax error" +msgstr "êáíïíéêü óöÜëìá" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" +"ÐÑÏÓÏ×Ç: Ôï BRE äåí åßíáé óõìâáôü ìå äéÜöïñá óõóôÞìáôá: `%s':\n" +"ç ÷ñçóéìïðïßçóç `^' ãéá ôïí ðñþôï ÷áñáêôÞñá ìéáò åêöñáóçò äåí åßíáé\n" +"óõìâáôÞ; Áãíïåßôáé." + +# +#: src/expr.c:586 src/expr.c:625 +#, fuzzy +msgid "non-numeric argument" +msgstr "üñéï ïñßóìáôïò" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "" + +# +#: src/factor.c:74 +#, fuzzy, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ]... [ÅÉÓÏÄÏÓ [ÅÎÏÄÏÓ]]\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" + +#: src/factor.c:85 +#, fuzzy +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" +"Åêôõðþíåé ôïõò ðñþôïõò ðáñÜãïíôåò êÜèå ÁÑÉÈÌÏÕ.\n" +"\n" +" --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +" --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" +"\n" +"Åêôõðþíåé ôïõò ðñþôïõò ðáñÜãïíôåò üëùí ôùí êáèïñéóìÝíùí áêÝñáéùí ÁÑÉÈÌÙÍ.\n" +"ÅÜí äåí Ý÷ïõí äïèåß ðáñÜìåôñïé óôçí ãñáììÞ åíôïëþí, ôïôå åéóÜãïíôáé áðï ôçí\n" +"ôõðéêÞ åßóïäï.\n" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "%s' äåí åßíáé éó÷ýùí èåôéêüò áêÝñáéïò." + +#: src/false.c:34 +#, fuzzy, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"×ñÞóç: %s [ÏÍÏÌÁ]\n" +" Þ: %s ÅÐÉËÏÃÇ\n" +"Åêôõðþíåé ôï üíïìá(hostname) ôïõ óõóôÞìáôïò.\n" +"\n" +" --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +" --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" + +# +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "×ñÞóç: %s [-ØÇÖÉÁ] [ÅÐÉËÏÃÇ]... [ÁÑ×ÅÉÏ]...\n" + +# +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" + +# +#: src/fmt.c:280 +#, fuzzy +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" +"Ìïñöïðïßçóç îáíÜ êÜèå ðáñáãñÜöïõ óôï ÁÑ×ÅÉÏ(Á), ãñÜöïíôáò óôçí êáíïíéêÞ " +"Ýîïäï.\n" +"Áí êáíÝíá ÁÑ×ÅÉÏ äåí Ý÷åé ïñéóôåß Þ ôï ÁÑ×ÅÉÏ åßíáé ôï `-', áíÜãíùóç áðü " +"êáíïíéêÞ åßóïäï.\n" +"\n" +"Õðï÷ñåùôéêÜ ïñßóìáôá óôéò ìáêñÝò åðéëïãÝò åßíáé õðï÷ñåùôéêÜ ãéá óýíôïìåò " +"åðéëïãÝò åðßóçò.\n" +" -c, --crown-margin äéáôÞñçóå ôçí åóï÷Þ ôùí äýï ðñþôùí ãñáììþí\n" +" -p, --prefix=ÁËÖÁÑÉÈ óõíäýáóå ìüíï ãñáììÝò ìå ÁËÖÁÑÉÈÌçôéêü ùò " +"ðñüèåìá\n" +" -s, --split-only ÷þñéóå óôá äýï ôéò ìáêñÝò ãñáììÝò áëëÜ ÷ùñßò " +"ãÝìéóìá îáíÜ\n" +" -t, --tagged-paragraph ç åóï÷Þ ôçò ðñþôçò ãñáììÞò íá åßíáé äéáöïñåôéêÞ " +"áðü ôç äåýôåñç\n" +" -u, --uniform-spacing Ýíá äéÜóôçìá ìåôáîý ëÝîåùí, äýï ìåôÜ áðü " +"ðñïôÜóåéò\n" +" -w, --width=ÁÑÉÈÌÏÓ ìÝãéóôï ðëÜôïò ãñáììÞò (åî ïñéóìïý 75 óôÞëåò)\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +"\n" +"Óôï -wÁÑÉÈÌÏÓ, ôï ãñÜììá `w' ìðïñåß íá ðáñáëçöèåß.\n" + +# +#: src/fmt.c:286 +#, fuzzy +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" +"Ìïñöïðïßçóç îáíÜ êÜèå ðáñáãñÜöïõ óôï ÁÑ×ÅÉÏ(Á), ãñÜöïíôáò óôçí êáíïíéêÞ " +"Ýîïäï.\n" +"Áí êáíÝíá ÁÑ×ÅÉÏ äåí Ý÷åé ïñéóôåß Þ ôï ÁÑ×ÅÉÏ åßíáé ôï `-', áíÜãíùóç áðü " +"êáíïíéêÞ åßóïäï.\n" +"\n" +"Õðï÷ñåùôéêÜ ïñßóìáôá óôéò ìáêñÝò åðéëïãÝò åßíáé õðï÷ñåùôéêÜ ãéá óýíôïìåò " +"åðéëïãÝò åðßóçò.\n" +" -c, --crown-margin äéáôÞñçóå ôçí åóï÷Þ ôùí äýï ðñþôùí ãñáììþí\n" +" -p, --prefix=ÁËÖÁÑÉÈ óõíäýáóå ìüíï ãñáììÝò ìå ÁËÖÁÑÉÈÌçôéêü ùò " +"ðñüèåìá\n" +" -s, --split-only ÷þñéóå óôá äýï ôéò ìáêñÝò ãñáììÝò áëëÜ ÷ùñßò " +"ãÝìéóìá îáíÜ\n" +" -t, --tagged-paragraph ç åóï÷Þ ôçò ðñþôçò ãñáììÞò íá åßíáé äéáöïñåôéêÞ " +"áðü ôç äåýôåñç\n" +" -u, --uniform-spacing Ýíá äéÜóôçìá ìåôáîý ëÝîåùí, äýï ìåôÜ áðü " +"ðñïôÜóåéò\n" +" -w, --width=ÁÑÉÈÌÏÓ ìÝãéóôï ðëÜôïò ãñáììÞò (åî ïñéóìïý 75 óôÞëåò)\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +"\n" +"Óôï -wÁÑÉÈÌÏÓ, ôï ãñÜììá `w' ìðïñåß íá ðáñáëçöèåß.\n" + +# +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" + +# +#: src/fmt.c:345 +#, fuzzy, c-format +msgid "invalid width option: `%s'" +msgstr "ìç Ýãêõñï åßäïò áëöáñéèìçôéêïý `%s'" + +# +#: src/fmt.c:385 +#, fuzzy, c-format +msgid "invalid width: `%s'" +msgstr "ìç Ýãêõñïò áñéèìüò ðåäßïõ: `%s'" + +# +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" + +# +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" + +# +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "" + +# +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "ìç Ýãêõñïò áñéèìüò áðü óôÞëåò: `%s'" + +# +#: src/head.c:92 +#, fuzzy +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"ÅìöÜíéóç ôùí 10 ðñþôùí ãñáììþí áðü êÜèå ÁÑ×ÅÉÏ óôçí êáíïíéêÞ Ýîïäï.\n" +"Ìå ðåñéóóüôåñá áðü Ýíá ÁÑ×ÅÉÏ, íá ðñïçãçèåß åðéóÝëéäï ìå ôï üíïìá ôïõ " +"áñ÷åßïõ.\n" +"×ùñßò ÁÑ×ÅÉÏ Þ üôáí ôï ÁÑ×ÅÉÏ åßíáé ôï -, áíÜãíùóç áðü ôçí êáíïíéêÞ åßóïäï.\n" +"\n" +" -c, --bytes=ÌÅÃÅÈÏÓ åìöÜíéóç ôùí ðñþôùí ÌÅÃÅÈÏÓ bytes\n" +" -n, --lines=ÁÑÉÈÌÏÓ åìöÜíéóç ôùí ðñþôùí ÁÑÉÈÌÏÓ ãñáììþí áíôß ôùí " +"ðñþôùí 10\n" +" -q, --quiet, --silent íá ìçí ôõðþíïíôáé åðéóÝëéäá ìå ôá ïíüìáôá " +"áñ÷åßùí\n" +" -v, --verbose íá ôõðþíïíôáé ðÜíôá åðéóÝëéäá ìå ôá ïíüìáôá " +"áñ÷åßùí\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +"\n" +"Ôï ÌÅÃÅÈÏÓ ìðïñåß íá Ý÷åé êáôÜëçîç ìå ðïëëáðëáóéáóôÞ: b ãéá 512, k ãéá 1K, m " +"ãéá 1 Meg.\n" +"Áí ÷ñçóéìïðïéåßôáé ôï -VALUE óáí ðñþôç ÅÐÉËÏÃÇ, áíÜãíùóå -c ÔÉÌÇ üôáí\n" +"Ýíáò áðü ôïõò ðïëëáðëáóéáóôÝò bkm áêïëïõèåß óõíåíùìÝíïò, äéáöïñåôéêÜ " +"áíÜãíùóå -n ÔÉÌÇ\n" + +# +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" + +# +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" + +# +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" + +# +#: src/head.c:190 +#, fuzzy, c-format +msgid "cannot reposition file pointer for %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "%s: ôï %s åßíáé ôüóï ìåãÜëï ðïõ äå ìðïñåß íá áíáðáñáóôáèåß" + +# +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "áñéèìüò ãñáììþí" + +# +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "áñéèìüò áðü bytes" + +# +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "ìç Ýãêõñïò áñéèìüò áðü ãñáììÝò" + +# +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "ìç Ýãêõñïò áñéèìüò áðü bytes" + +# +#: src/head.c:341 +#, c-format +msgid "unrecognized option `-%c'" +msgstr "áðáñÜäåêôç åðéëïãÞ `-%c'" + +# +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "" + +#: src/hostid.c:48 +#, fuzzy, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" +"Åêôõðþíåé ôï üíïìá ôïõ ôñÝ÷ïíôïò ÷ñÞóôç.\n" +"\n" +" --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +" --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" + +#: src/hostname.c:67 +#, fuzzy, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" +"×ñÞóç: %s [ÏÍÏÌÁ]\n" +" Þ: %s ÅÐÉËÏÃÇ\n" +"Åêôõðþíåé ôï üíïìá(hostname) ôïõ óõóôÞìáôïò.\n" +"\n" +" --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +" --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" + +# +#: src/hostname.c:104 +#, fuzzy, c-format +msgid "cannot set hostname to `%s'" +msgstr "áäõíáìßá åêôÝëåóçò ioctl óôï `%s'" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "" +"Äåí ìðïñåß íá ôåèåß ôï üíïìá óõóôÞìáôïò. Ëåßðåé áõôÞ ç ëåéôïõñãßá áðï ôï\n" +"óýóôçìá" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "Äåí ìðïñåß íá êáèïñéóôåß ôï üíïìá ôïõ óõóôÞìáôïò" + +# +#: src/id.c:36 +#, fuzzy +msgid "Arnold Robbins and David MacKenzie" +msgstr "Ðùë Ñïýìðéí êáé ÍôÝéâéíô ÌáêÝíæç" + +# +#: src/id.c:87 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ]... ÓÕÍÏËÏ1 [ÓÕÍÏËÏ2]\n" + +#: src/id.c:88 +#, fuzzy +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" +"Åêôýðùíåé ðëçñïöïñßåò ðïõ áöïñïýí åíá ×ÑÇÓÔÇ, Þ ôïí ôñÝ÷ïíôá ÷ñÞóôç.\n" +"\n" +" -a Áãíïåßôáé, ãéá óõìâáôïôçôá ìå ðáëéüôåñåò åêäüóåéò\n" +" -g, --group Åêôõðþíåé ìüíï ôéò ôáõôüôçôåò ïìÜäùí\n" +" -G, --groups Åêôõðþíåé ìüíï ôéò óõìðëçñùìáôéêÝò ïìÜäåò\n" +" -n, --name Åêôõðþíåé üíïìá áíôß ãéá áñéèìü, ãéá ôçí -ugG\n" +" -r, --real Åêôõðþíåé ôçí ðñáãìáôéêÞ ôáõôüôçôá (real id) áíôß ôçò\n" +" éó÷ýïõóáò ôáõôüôçôáò ÷ñÞóôç (effective id), ãéá ôçí -ugG\n" +" -u, --user Åêôõðþíåé ìüíï ôçí ðñáãìáôéêÞ ôáõôüôçôá\n" +" --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +" --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" +"\n" +"×ùñßò êáìéÜ ÅÐÉËÏÃÇ, åêôõðþíåé ìéá ÷ñÞóéìç óåéñÜ ðëçñïöïñéþí.\n" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" + +# +#: src/id.c:162 +#, fuzzy +msgid "cannot print only user and only group" +msgstr "äåí åßíáé äõíáôü íá ðáñáëçöèåß ÷ñÞóôçò êáé ïìÜäá" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "" +"Äåí ìðïñåß íá åêôõðùèïýí ìüíï ïíüìáôá Þ ðñáãìáôéêÞ ôáõôüôçôá(read ID) óå\n" +"ôõðéêÞ ìïñöÞ" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "%s: Äåí õðÜñ÷åé ôÝôïéïò ÷ñÞóôçò." + +#: src/id.c:212 +#, fuzzy, c-format +msgid "cannot find name for user ID %u" +msgstr "%s: äåí ìðïñåé íá âñåèåß üíïìá ÷ñÞóôç ãéá ôï 'UID' %u\n" + +# +#: src/id.c:235 +#, fuzzy, c-format +msgid "cannot find name for group ID %u" +msgstr "äåí åßíáé äõíáôü íá ðáñáëçöèåß ÷ñÞóôçò êáé ïìÜäá" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "Äåí ìðïñåß íá ðáñèåß ï óõìðëçñùìáôéêüò êáôÜëïãïò ïìÜäùí." + +#: src/id.c:385 +msgid " groups=" +msgstr " ïìÜäåò=" + +#: src/install.c:269 +#, fuzzy +msgid "the strip option may not be used when installing a directory" +msgstr "" +"Ç áëõóßäá ìïñöÞò äåí ðñÝðåé íá êáèïñßæåôáé üôáí åêôõðþíïíôáé\n" +"áëõóßäåò ìå ßóá ìÞêç." + +# +#: src/install.c:292 src/mkdir.c:140 +#, fuzzy, c-format +msgid "invalid mode %s" +msgstr "ìç Ýãêõñïò áñéèìüò ðåäßïõ: `%s'" + +# +#: src/install.c:307 src/install.c:371 +#, fuzzy, c-format +msgid "creating directory %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +#: src/install.c:332 +#, fuzzy, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "" +"åãêáôÜóôáóç ðïëëáðëþí áñ÷åßùí, áëëÜ ôï ôåëåõôáßï üñéóìá (%s) äåí åßíáé " +"êáôÜëïãïò" + +# +#: src/install.c:435 +#, fuzzy, c-format +msgid "%s is a directory" +msgstr "ôï `%s' õðÜñ÷åé Þäç Üëëá äåí åßíáé êáôÜëïãïò" + +# +#: src/install.c:495 +#, fuzzy, c-format +msgid "cannot obtain time stamps for %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/install.c:507 +#, fuzzy, c-format +msgid "cannot set time stamps for %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/install.c:528 +#, fuzzy +msgid "fork system call failed" +msgstr "åéäéêü áñ÷åßï ìðëïê" + +#: src/install.c:532 +#, fuzzy +msgid "cannot run strip" +msgstr "Äåí åßíáé äõíáôüí íá åêôåëåóôåß ôï %s" + +# +#: src/install.c:539 +#, fuzzy +msgid "strip failed" +msgstr "áðïôõ÷ßá åããñáöÞò" + +# +#: src/install.c:560 +#, fuzzy, c-format +msgid "invalid user %s" +msgstr "ìç Ýãêõñïò ÷ñÞóôçò" + +# +#: src/install.c:578 +#, fuzzy, c-format +msgid "invalid group %s" +msgstr "ìç Ýãêõñç ïìÜäá" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"×ñÞóç: %s [ÅÐÉËÏÃÇ]... ÐÇÃÇ ÐÑÏÏÑÉÓÌÏÓ (1ç ìïñöÞ)\n" +" Þ: %s [ÅÐÉËÏÃÇ]... ÐÇÃÇ... ÊÁÔÁËÏÃÏÓ (2ç ìïñöÞ)\n" +" Þ: %s -d [ÅÐÉËÏÃÇ]... ÊÁÔÁËÏÃÏÓ... (3ç ìïñöÞ)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +#, fuzzy +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"Ç êáôÜëçîç ôùí áíôéãñÜöùí áóöáëåßáò åßíáé ôï `~', åêôüò áí ôåèåß ìå ôï\n" +"--suffix Þ ôï SIMPLE_BACKUP_SUFFIX.\n" +"Ï Ýëåã÷ïò Ýêäïóçò ìðïñåß íá ôåèåß ìå ôçí åðéëïãÞ --backup Þ ìÝóù ôçò\n" +"ìåôáâëçôÞò ðåñéâÜëëïíôïò VERSION_CONTROL. Ïé äõíáôÝò ôéìÝò åßíáé:\n" +"\n" +" none,off íá ìç äçìéïõñãïýíôáé áíôßãñáäá áóöáëåßáò (áêüìá êáé\n" +" áí äßíåôáé --backup)\n" +" numbered, t äçìéïõñãßá áñéèìçìÝíùí áíôéãñÜöùí áóöáëåßáò\n" +" existing, nil áñéèìçìÝíùí, áí õðÜñ÷ïõí áñéèìçìÝíá áíôßãñáöá, " +"äéáöïñåôéêÜ\n" +" áðëÜ áíôßãñáöá\n" +" simple, never ðÜíôá äçìéïõñãßá áðëþí áíôéãñÜöùí\n" + +# +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ]... ÁÑ×ÅÉÏ1 ÁÑ×ÅÉÏ2\n" + +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" + +# +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" + +# +#: src/join.c:165 +#, fuzzy +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" +"Óýãêñéóç ôáîéíïìçìÝíùí áñ÷åßùí ÁÑÉÓÔÅѼ_ÁÑ×ÅºÏ êáé ÄÅÎɼ_ÁÑןÏ, áíÜ " +"ãñáììÞ.\n" +"\n" +" -1 áðüêñõøç ìïíáäéêþí ãñáììþí óôï áñéóôåñü áñ÷åßï\n" +" -2 áðüêñõøç ìïíáäéêþí ãñáììþí óôï äåîéü áñ÷åßï\n" +" -3 áðüêñõøç ìïíáäéêþí ãñáììþí êáé óôá äýï áñ÷åßá\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" + +# +#: src/join.c:645 +#, c-format +msgid "invalid field specifier: `%s'" +msgstr "ìç Ýãêõñïò äçëùôÞò ðåäßïõ: `%s'" + +# +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, c-format +msgid "invalid field number: `%s'" +msgstr "ìç Ýãêõñïò áñéèìüò ðåäßïõ: `%s'" + +# +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "ìç Ýãêõñïò áñéèìüò áñ÷åßïõ óôç äÞëùóç ðåäßïõ: `%s'" + +# +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "ìç Ýãêõñïò áñéèìüò ðåäßïõ ãéá ôï áñ÷åßï 1: `%s'" + +# +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "ìç Ýãêõñïò áñéèìüò ðåäßïõ ãéá ôï áñ÷åßï 2: `%s'" + +# +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "ðÜñá ðïëëÜ ïñßóìáôá ðïõ äåí Ý÷ïõí åðéëïãÝò" + +# +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "ðÜñá ðïëëÜ ïñßóìáôá ðïõ äåí Ý÷ïõí åðéëïãÝò" + +# +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "êáé ôá äýï áñ÷åßá äå ìðïñåß íá åßíáé ç êáíïíéêÞ åßóïäïò" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" + +#: src/kill.c:106 +#, fuzzy +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" +"ÁíôéãñÜöåé ôçí ôõðéêÞ åßóïäï óå êÜèå ÁÑ×ÅÉÏ, êáé óôçí ôõðéêÞ Ýîïäï.\n" +"\n" +" -a, --append ÐñïóèÝôåé óôï ÁÑ×ÅÉÏ(á), ÷ùñßò íá ãñÜöåé\n" +" ðÜíù áðï ôá õðÜñ÷ïíôá\n" +" -i, --ignore-interrupts Áãíïåß óÞìáôá äéáêïðÞò\n" +" --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +" --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" + +# +#: src/kill.c:163 +#, fuzzy, c-format +msgid "%s: invalid signal" +msgstr "%s: ìç Ýãêõñïò ðåñéãñáöÝáò äéåñãáóßáò (PID)" + +# +#: src/kill.c:262 +#, fuzzy, c-format +msgid "missing operand after `%s'" +msgstr "%s: áíáìåíüôáí áêÝñáéïò ìåôÜ ôï `%c'" + +# +#: src/kill.c:274 +#, fuzzy, c-format +msgid "%s: invalid process id" +msgstr "%s: ìç Ýãêõñç ìïñöÞ" + +# +#: src/kill.c:327 +#, fuzzy, c-format +msgid "invalid option -- %c" +msgstr "%s: ìç Ýãêõñç åðéëïãÞ -- %c\n" + +#: src/kill.c:336 +#, fuzzy, c-format +msgid "%s: multiple signals specified" +msgstr "\\%c: Ìç Ýãêõñç äéáöõãÞ." + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "" + +# +#: src/link.c:51 +#, fuzzy, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ]... [ÅÉÓÏÄÏÓ [ÅÎÏÄÏÓ]]\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" + +# +#: src/link.c:98 +#, fuzzy, c-format +msgid "cannot create link %s to %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/ln.c:39 +#, fuzzy +msgid "Mike Parker and David MacKenzie" +msgstr "Óêïô ÌðÜñôñáì êáé ÍôÝéâéíô ÌáêÝíæç" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "" +"%s: ðñïåéäïðïßçóç: ç äçìéïõñãßá óèåíáñïý óõíäÝóìïõ óå óõìâïëéêü,\n" +"äåí åßíáé ìåôáöåñôÞ" + +#: src/ln.c:174 +#, fuzzy, c-format +msgid "%s: hard link not allowed for directory" +msgstr "Ôï `%s' äåí åßíáé êáôÜëïãïò." + +# +#: src/ln.c:246 +#, fuzzy, c-format +msgid "%s: cannot overwrite directory" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +#: src/ln.c:251 +#, fuzzy, c-format +msgid "%s: replace %s? " +msgstr "%s: áíôéêáôÜóôáóç ôïõ `%s'; " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: Ôï áñ÷åßï õðÜñ÷åé Þäç" + +# +#: src/ln.c:304 +#, fuzzy, c-format +msgid "create symbolic link %s to %s" +msgstr "óõìâïëéêüò óýíäåóìïò" + +#: src/ln.c:305 +#, fuzzy, c-format +msgid "create hard link %s to %s" +msgstr "äçìéïõñãßá óèåíáñïý óõíäÝóìïõ `%s' óôï `%s'" + +#: src/ln.c:319 +#, fuzzy, c-format +msgid "creating symbolic link %s to %s" +msgstr "äçìéïõñãßá óõìâïëéêïý óõíäÝóìïõ `%s' óôï `%s'" + +#: src/ln.c:320 +#, fuzzy, c-format +msgid "creating hard link %s to %s" +msgstr "äçìéïõñãßá óèåíáñïý óõíäÝóìïõ `%s' óôï `%s'" + +#: src/ln.c:339 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"×ñÞóç: %s [ÅÐÉËÏÃÇ]... ÔÅËÅÕÔÁÉÏÓ\n" +" Þ: %s [ÅÐÉËÏÃÇ]... ÐÑÙÔÏÓ ÔÅËÅÕÔÁÉÏÓ\n" +" Þ: %s [ÅÐÉËÏÃÇ]... ÐÑÙÔÏÓ ÁÕÎÇÓÇ ÔÅËÅÕÔÁÉÏÓ\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" + +# +#: src/ln.c:521 +#, fuzzy, c-format +msgid "%s: specified target directory is not a directory" +msgstr "ôï `%s' õðÜñ÷åé Þäç Üëëá äåí åßíáé êáôÜëïãïò" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "" +"üôáí äçìéïõñãÞôå ðïëëáðëïýò óõíäÝóìïõò, ôï ôåëåõôáßï üñéóìá ðñÝðåé íá åßíáé " +"êáôÜëïãïò" + +# +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ] [ÁÑ×ÅÉÏ]...\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" + +# +#: src/logname.c:99 +#, fuzzy, c-format +msgid "%s: no login name\n" +msgstr "%s: ìç Ýãêõñïò áñéèìüò" + +# +#: src/ls.c:673 +#, fuzzy +msgid "%b %e %Y" +msgstr "%b %e %H:%M %Y" + +# +#: src/ls.c:681 +#, fuzzy +msgid "%b %e %H:%M" +msgstr "%b %e %H:%M %Y" + +#: src/ls.c:1307 +#, fuzzy, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "áãíïåßôáé ìç Ýãêõñï ðëÜôïò óôç ìåôáâëçôÞ ðåñéâÜëëïíôïò COLUMNS: %s" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "áãíïåßôáé ìç Ýãêõñï ðëÜôïò óôç ìåôáâëçôÞ ðåñéâÜëëïíôïò COLUMNS: %s" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "" +"áãíïåßôáé ìç Ýãêõñï ìÝãåèïò ïñéæüíôéïõ óôçëïèÝôç óôç ìåôáâëçôÞ ðåñéâÜëëïíôïò " +"TABSIZE: %s" + +# +#: src/ls.c:1482 +#, fuzzy, c-format +msgid "invalid line width: %s" +msgstr "ìç Ýãêõñïò áñéèìüò ðåäßïõ: `%s'" + +# +#: src/ls.c:1556 +#, fuzzy, c-format +msgid "invalid tab size: %s" +msgstr "ìç Ýãêõñï åßäïò áëöáñéèìçôéêïý `%s'" + +# +#: src/ls.c:1722 +#, fuzzy, c-format +msgid "invalid time style format %s" +msgstr "ìç Ýãêõñï üñéóìá %s ãéá %s" + +# +#: src/ls.c:2054 +#, fuzzy, c-format +msgid "unrecognized prefix: %s" +msgstr "áðáñÜäåêôç åðéëïãÞ `-%c'" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "" +"ôéìÞ ðïõ äå ìðïñåß íá áíáãíùñéóôåß óôç ìåôáâëçôÞ ðåñéâÜëëïíôïò LS_COLORS" + +# +#: src/ls.c:2145 +#, fuzzy, c-format +msgid "cannot determine device and inode of %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/ls.c:2155 +#, fuzzy, c-format +msgid "not listing already-listed directory: %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/ls.c:2208 src/remove.c:929 +#, fuzzy, c-format +msgid "reading directory %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +#: src/ls.c:2603 +#, fuzzy, c-format +msgid "cannot compare file names %s and %s" +msgstr "äåí åßíáé äõíáôü íá äçìéïõñãçèåß ôï %s `%s' óôï `%s'" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" + +#: src/ls.c:3784 +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" + +#: src/ls.c:3799 +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" + +#: src/ls.c:3831 +#, fuzzy +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -g (áãíïåßôáé)\n" +" -G, --no-group íá ìçí åìöáíßæïíôáé ðëçñïöïñßåò ïìÜäáò\n" +" -h, --human-readable åìöÜíéóç ìåãåèþí óå áíèñùðßíùò áíáãíþóéìç\n" +" ìïñöÞ (ð.÷. 1Ê 234M 2G)\n" +" -H, --si üðùò ðáñáðÜíù, áëëÜ ìå äõíÜìåéò ôïõ 1000 áíôß\n" +" ôïõ 1024\n" +" --indicator-style=ËÅÊÔÉÊÏ ðñïóèÞêç äåßêôç ËÅÊÔÉÊÏ óôéò êáôá÷ùñßóåéò\n" +" ïíïìÜôùí:\n" +" none (åî ïñéóìïý), classify (-F), file-type\n" +" (-p)\n" +" -i, --inode åìöÜíéóç äåßêôç êÜèå áñ÷åßïõ\n" +" -I, --ignore=PATTERN íá ìçí åìöáíßæïíôáé áíáöåñüìåíåò êáôá÷ùñßóåéò \n" +" ðïõ ôáéñßáæïõí óôï PATTERN ôïõ öëïéïý\n" +" -k, --kilobytes üðùò --block-size=1024\n" +" -l ÷ñÞóç ìáêñïóêåëïýò åßäïõò åìöÜíéóçò\n" +" -L, --dereference åìöÜíéóç êáôá÷ùñßóåùí ðïõ äåß÷íïõí ïé\n" +" óõìâïëéêïß óýíäåóìïé\n" +" -m óõìðëÞñùóç ôïõ ðëÜôïõò ìå ëßóôá áðü\n" +" êáôá÷ùñßóåéò äéá÷ùñéæüìåíùí ìå êüììá\n" +" -n, --numeric-uid-gid åìöÜíéóç áñéèìçôéêþí UID êáé GID áíôß ãéá\n" +" ïíüìáôá\n" +" -N, --literal åìöÜíéóç áêáôÝñãáóôùí êáôá÷ùñßóåùí (ð.÷. íá " +"ìçí\n" +" ôõã÷Üíïõí\n" +" åéäéêÞò åðåîåñãáóßáò ïé ÷áñáêôÞñåò åëÝã÷ïõ)\n" +" -o ÷ñÞóç ìáêñïóêåëïýò åìöÜíéóçò ÷ùñßò ðëçñïöïñßåò\n" +" ïìÜäáò\n" +" -p, --file-type ðñïóèÞêç åíäåßîçò (Ýíá áðü /=@|) óôéò\n" +" êáôá÷ùñßóåéò\n" +" -q, --hide-control-chars åìöÜíéóç ôïõ ? áíôß ôùí ìç-åêôõðþóéìùí\n" +" ÷áñáêôÞñùí\n" +" --show-control-chars åìöÜíéóç ìç åêôõðþóéìùí ÷áñáêôÞñùí üðùò åßíáé\n" +" (åî ïñéóìïý åêôüò áí ôï ðñüãñáììá åßíáé ôï\n" +" ls êáé ç Ýîïäïò åßíáé ôï ôåñìáôéêü)\n" +" -Q, --quote-name åìöÜíéóç êáôá÷ùñßóåùí ìÝóá óå äéðëÜ åéóáãùãéêÜ\n" +" --quoting-style=ËÅÊÔÉÊÏ ÷ñÞóç ìïñöÞò ËÅÊÔÉÊÏ óôçí åìöÜíéóç ïíïìÜôùí\n" +" êáôá÷ùñßóåùí:\n" +" literal, shell, shell-always, c, escape\n" +" -r, --reverse áíôßóôñïöç óåéñÜ óôçí ôáîéíüìçóç\n" +" -R, --recursive åìöÜíéóç õðïêáôáëüãùí áíáäñïìéêÜ\n" +" -s, --size åìöÜíéóç ìåãÝèïõò êÜèå áñ÷åßïõ, óå ìðëïê\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" + +# +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "" + +# +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +# +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" + +# +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" + +# +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" + +# +#: src/md5sum.c:385 +#, fuzzy, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "%s: %lu: åóöáëìÝíá ìïñöïðïéçìÝíç ãñáììÞ áèñïßóìáôïò åëÝã÷ïõ MD5" + +# +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "%s: ÁÍÅÐÉÔÕ×ÅÓ Üíïéãìá Þ áíÜãíùóç\n" + +# +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "ÁÍÅÐÉÔÕ×ÅÓ" + +# +#: src/md5sum.c:431 +msgid "OK" +msgstr "ÅÍÔÁÎÇ" + +# +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%s: óöÜëìá áíÜãíùóçò" + +# +#: src/md5sum.c:457 +#, fuzzy, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "" +"%s: äå âñÝèçêáí êáíïíéêÜ ìïñöïðïéçìÝíåò ãñáììÝò áèñïéóìÜôùí åëÝã÷ïõ MD5" + +# +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "ÐÑÏÅÉÄÏÐÏÉÇÓÇ: %d áðü %d áíáöåñüìåíá %s äåí Þôáí äõíáôü íá áíáãíùóôïýí" + +# +#: src/md5sum.c:473 +msgid "file" +msgstr "áñ÷åßï" + +# +#: src/md5sum.c:473 +msgid "files" +msgstr "áñ÷åßá" + +# +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "ÐÑÏÅÉÄÏÐÏÉÇÓÇ: %d áðü %d õðïëüãéóáí óå %s ÄÅÍ ôáßñéáîáí" + +# +#: src/md5sum.c:482 +msgid "checksum" +msgstr "Üèñïéóìá åëÝã÷ïõ" + +# +#: src/md5sum.c:482 +msgid "checksums" +msgstr "áèñïßóìáôá åëÝã÷ïõ" + +# +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" +"ïé åðéëïãÝò --binary êáé --text äåí Ý÷ïõí óçìáóßá üôáí åðéâåâáéþíïíôáé " +"áèñïßóìáôá åëÝã÷ïõ" + +# +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "ïé åðéëïãÝò --string êáé --check åßíáé áìïéâáßùò áðïêëåéüìåíåò" + +# +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "" +"ç åðéëïãÞ --status Ý÷åé Ýííïéá ìüíï óôçí åðéâåâáßùóç áèñïéóìÜôùí åëÝã÷ïõ" + +# +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "ç åðéëïãÞ --warn Ý÷åé Ýííïéá ìüíï óôçí åðéâåâáßùóç áèñïéóìÜôùí åëÝã÷ïõ" + +# +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "äå ìðïñïýí íá äçëþíïíôáé áñ÷åßá üôáí ãßíåôáé ÷ñÞóç ôïõ --string" + +# +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "ìüíï Ýíá üñéóìá ìðïñåß íá äçëþíåôáé üôáí ãßíåôáé ÷ñÞóç ôïõ --check" + +# +#: src/mkdir.c:61 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ] [ÁÑ×ÅÉÏ]...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" + +#: src/mkdir.c:69 +#, fuzzy +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +"Äçìéïõñãßá ÊÁÔÁËÏÃÏÕ(ÙÍ), áí äåí õðÜñ÷ïõí Þäç.\n" +"\n" +" -m, --mode=ÄÉÊÁÉÙÌÁÔÁ ïñéóìüò äéêáéùìÜôùí (üðùò óôç chmod), êáé ü÷é " +"rwxrwxrwx - umask\n" +" -p, --parents ÷ùñßò óöÜëìá üôáí ï êáôÜëïãïò õðÜñ÷åé, äçìéïõñãßá " +"ãïíéêþí êáôáëüãùí\n" +" üðïõ ÷ñåéÜæåôáé\n" +" -v, --verbose åìöÜíéóç ìçíýìáôïò ãéá êÜèå êáôÜëïãï ðïõ äçìéïõñãåßôáé\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#: src/mkdir.c:113 +#, fuzzy, c-format +msgid "created directory %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/mkdir.c:190 +#, fuzzy, c-format +msgid "cannot set permissions of directory %s" +msgstr "áäõíáìßá áëëáãÞò éäéïêôçóßáò óôï %s" + +# +#: src/mkfifo.c:55 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ] [ÁÑ×ÅÉÏ]...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" + +#: src/mkfifo.c:63 src/mknod.c:64 +#, fuzzy +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" +"Äçìéïõñãßá åðþíõìùí óùëçíþóåùí (FIFOs) ìå ôï äïèÝí ÏÍÏÌÁ(ÔÁ).\n" +"\n" +" -m, --mode=ÄÉÊÁÉÙÌÁ ïñéóìüò äéêáéùìÜôùí (üðùò óôç chmod), ü÷é a=rw - " +"umask\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "áñ÷åßá fifo äåí õðïóôçñßæïíôáé" + +# +#: src/mkfifo.c:123 src/mknod.c:127 +#, fuzzy +msgid "invalid mode" +msgstr "ìç Ýãêõñïò áñéèìüò" + +# +#: src/mkfifo.c:142 +#, fuzzy, c-format +msgid "cannot set permissions of fifo %s" +msgstr "áäõíáìßá áëëáãÞò éäéïêôçóßáò óôï %s" + +# +#: src/mknod.c:55 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ]... ÓÕÍÏËÏ1 [ÓÕÍÏËÏ2]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" + +#: src/mknod.c:76 +#, fuzzy +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"Äçìéïõñãßá åéäéêïý áñ÷åßïõ ÏÍÏÌÁ ôïõ äïèÝíôïò ÅÉÄÏÕÓ.\n" +"\n" +" -m, --mode=ÄÉÊÁÉÙÌÁ ïñéóìüò äéêáéùìÜôùí (üðùò óôç chmod), ü÷é a=rw - " +"umask\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +"\n" +"MAJOR MINOR äåí åðéôñÝðïíôáé ãéá ÅÉÄÏÓ p, äéáöïñåôéêÜ åßíáé õðï÷ñåùôéêÜ.\n" +"Ôï ÅÉÄÏÓ ìðïñåß íá åßíáé: \n" +"\n" +" b äçìéïõñãßá åéäéêïý ìðëïê (ìå åíôáìßåõóç) áñ÷åßïõ\n" +" c, u äçìéïõñãßá åéäéêïý áñ÷åßïõ ÷áñáêôÞñùí (÷ùñßò åíôáìßåõóç)\n" +" p äçìéïõñãßá áñ÷åßïõ FIFO\n" + +# +#: src/mknod.c:141 +#, fuzzy +msgid "wrong number of arguments" +msgstr "ðïëý ëßãá ïñßóìáôá" + +# +#: src/mknod.c:153 +#, fuzzy +msgid "block special files not supported" +msgstr "åéäéêü áñ÷åßï ìðëïê" + +# +#: src/mknod.c:162 +#, fuzzy +msgid "character special files not supported" +msgstr "åéäéêü áñ÷åßï ÷áñáêôÞñùí" + +#: src/mknod.c:171 +#, fuzzy +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" +"üôáí äçìéïõñãïýíôáé åéäéêÜ áñ÷åßá ìðëïê, ïé major êáé minor\n" +"áñéèìïß óõóêåõÞò ðñÝðåé íá ïñßæïíôáé" + +# +#: src/mknod.c:186 +#, fuzzy, c-format +msgid "invalid major device number %s" +msgstr "ìç Ýãêõñïò áñ÷éêüò áñéèìüò ãñáììÞò: `%s'" + +# +#: src/mknod.c:191 +#, fuzzy, c-format +msgid "invalid minor device number %s" +msgstr "ìç Ýãêõñïò áñ÷éêüò áñéèìüò ãñáììÞò: `%s'" + +# +#: src/mknod.c:196 +#, fuzzy, c-format +msgid "invalid device %s %s" +msgstr "ìç Ýãêõñï üñéóìá %s ãéá %s" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "" +"major êáé minor áñéèìïß óõóêåõÞò äåí ðñÝðåé íá ïñßæïíôáé óôá áñ÷åßá fifo" + +# +#: src/mknod.c:231 +#, fuzzy, c-format +msgid "cannot set permissions of %s" +msgstr "áäõíáìßá áëëáãÞò éäéïêôçóßáò óôï %s" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" + +#: src/mv.c:339 +#, fuzzy +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Ìåôïíïìáóßá ôçò ÐÇÃÇÓ óå ÐÑÏÏÑÉÓÌÏ Þ ìåôáêßíçóç ÐÇÃÇÓ(ÙÍ) óôï ÊÁÔÁËÏÃÏ.\n" +"\n" +" --backup=[ÅËÅÃ×ÏÓ] äçìéïõñãßá áíôéãñÜöïõ áóöáëåßáò ãéá êÜèå " +"áñ÷åßï\n" +" ðñïïñéóìïý\n" +" -b üðùò ôï --backup áëëÜ äåí áðáéôåß ðáñÜìåôñï\n" +" -f, --force äéáãñáöÞ õðáñ÷üíôùí êáôáëüãùí, ÷ùñßò\n" +" åðéâåâáßùóç\n" +" -i, --interactive åðéâåâáßùóç ðñéí ôç äéáãñáöÞ\n" +" --strip-trailing-slashes áöáßñåóç ÷áñáêôÞñùí êáèÝôùí óôï ôÝëïò\n" +" ãñáììÞò áðü êÜèå ÐÇÃÇ\n" +" -S, --suffix=ÊÁÔÁËÇÎÇ ðáñÜêáìøç ôçò óõíÞèçò êáôÜëçîçò áíôéãñÜöùí\n" +" áóöáëåßáò\n" +" --target-directory=ÊÁÔÁËÏÃÏÓ ìåôáêßíçóç üëùí ôùí ïñéóìÜôùí ÐÇÃÇÓ\n" +" óôïí ÊÁÔÁËÏÃÏ\n" +" -u, --update ìåôáöïñÜ ìüíï ôùí ðáëáéüôåñùí Þ åîïëïêëÞñïõ\n" +" íÝùí áñ÷åßùí\n" +" -v, --verbose åîÞãçóç ôïõ ôé óõìâáßíåé\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +"\n" + +# +#: src/mv.c:467 +#, fuzzy, c-format +msgid "specified target, %s is not a directory" +msgstr "ôï `%s' õðÜñ÷åé Þäç Üëëá äåí åßíáé êáôÜëïãïò" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "" +"üôáí ìåôáêéíïýíôáé ðïëëáðëÜ áñ÷åßá, ôï ôåëåõôáßï üñéóìá ðñÝðåé íá åßíáé " +"êáôÜëïãïò" + +# +#: src/nice.c:67 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ] [ÁÑ×ÅÉÏ]...\n" + +#: src/nice.c:68 +#, fuzzy +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" +"Åêôåëåß ôçí ÅÍÔÏËÇ ìå ìéá ðñïóáñìïãÞ ôçò ðñïôåñáéüôçôáò.\n" +"×ùñßò êáìéÜ ÅÍÔÏËÇ, åêôõðþíåé ôçí ôñÝ÷ïõóá ðñïãñáììáôéóìÝíç ðñïôåñáéüôçôá.\n" +"Åî'ïñéóìïý Þ ðñïóáñìïãÞ åßíáé 10. Ôï ðåäßï êõìáßíåôáé áðï -20 (õøçëüôåñç \n" +"ðñïôåñáéüôçôá) ìÝ÷ñé 19 (ç ÷áìçëüôåñç).\n" +"\n" +" -ÌÅÔÁÂÏËÇ áõîÜíåé ôçí ðñïôåñáéüôçôá óýìöùíá ìå ôç ÌÅÔÁÂÏËÇ " +"-n, --adjustment=AJUST üìïéï ôïõ -ÌÅÔÁÂÏËÇ\n" +" --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +" --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" + +# +#: src/nice.c:109 src/nice.c:122 +#, fuzzy, c-format +msgid "invalid option `%s'" +msgstr "ìç Ýãêõñï åßäïò áëöáñéèìçôéêïý `%s'" + +# +#: src/nice.c:147 +#, fuzzy, c-format +msgid "invalid priority `%s'" +msgstr "ìç Ýãêõñïò áñéèìüò ðåäßïõ: `%s'" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "Ìéá åíôïëÞ ðñÝðåé íá äßíåôáé ìå ìéá ðñïóáñìïãÞ (ðñïôåñáéüôçôáò)." + +# +#: src/nice.c:178 src/nice.c:187 +#, fuzzy +msgid "cannot get priority" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/nice.c:192 +#, fuzzy +msgid "cannot set priority" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "Óêïô ÌðÜñôñáì êáé ÍôÝéâéíô ÌáêÝíæç" + +# +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +# +#: src/nl.c:188 +#, fuzzy +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" +"ÅããñáöÞ êÜèå áñ÷åßïõ óôçí êáíïíéêÞ Ýîïäï, ôåëåõôáßá ãñáììÞ ðñþôá.\n" +"×ùñßò ÁÑ×ÅÉÏ, Þ üôáí ôï áñ÷åßï åßíáé ôï -, áíÜãíùóç áðü ôçí êáíïíéêÞ " +"åßóïäï.\n" +"\n" +" -b, --before ôïðïèÝôçóç ôïõ äéá÷ùñéóôÞ ðñéí áíôß ãéá ìåôÜ\n" +" -r, --regex ìåôÜöñáóç ôïõ äéá÷ùñéóôÞ ùò êáíïíéêÞ Ýêöñáóç\n" +" -s, --separator=ÁËÖÁÑÉÈÌ ÷ñÞóç ÁËÖÁÑÉÈÌçôéêïý ùò äéá÷ùñéóôÞò áíôß ôïõ " +"÷áñáêôÞñá íÝáò ãñáììÞò\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" + +# +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" + +# +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" + +# +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" + +# +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "ìç Ýãêõñïò áñ÷éêüò áñéèìüò ãñáììÞò: `%s'" + +# +#: src/nl.c:514 +#, c-format +msgid "invalid line number increment: `%s'" +msgstr "ìç Ýãêõñç áýîçóç óôïí áñéèìü åíôïëÞò: `%s'" + +# +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "ìç Ýãêõñïò áñéèìüò áðü êåíÝò ãñáììÝò: `%s'" + +# +#: src/nl.c:541 +#, c-format +msgid "invalid line number field width: `%s'" +msgstr "ìç Ýãêõñïò ìÞêïò ðåäßïõ áñéèìïý ãñáììÞò: `%s'" + +# +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"×ñÞóç: %s [ÅÐÉËÏÃÇ]... [ÁÑ×ÅÉÏ]...\n" +" Þ: %s --traditional [ÁÑ×ÅÉÏ] [[+]ÈÅÓÇ [[+]×ÁÑÁÊÔÇÑÉÓÔÉÊÏ]]\n" + +# +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +# +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "" + +# +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" + +# +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" + +# +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" + +# +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" + +# +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" + +# +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" + +# +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" + +# +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" + +# +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" + +# +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "ìç Ýãêõñï åßäïò áëöáñéèìçôéêïý `%s'" + +# +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" +"ìç Ýãêõñï åßäïò áëöáñéèìçôéêïý `%s';\n" +"áõôü ôï óýóôçìá äåí ðáñÝ÷åé ôïí åóùôåñéêü ôýðï äåäïìÝíùí %lu-byte" + +# +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" +"ìç Ýãêõñï åßäïò áëöáñéèìçôéêïý `%s';\n" +"áõôü ôï óýóôçìá äåí ðáñÝ÷åé ôïí åóùôåñéêü ôýðï äåäïìÝíùí êéíçôÞò " +"õðïäéáóôïëÞò %lu-byte" + +# +#: src/od.c:917 +#, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "ìç Ýãêõñïò ÷áñáêôÞñáò `%c' óôï ôýðï áëöáñéèìçôéêïý `%s'" + +# +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "áäõíáìßá ðñïóðÝñáóçò ìåôÜ ôï ôÝëïò ôçò óõíäõáóìÝíçò åéóüäïõ" + +# +#: src/od.c:1397 +msgid "old-style offset" +msgstr "ðáëáéïý åßäïõò èÝóç" + +# +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "" + +# +#: src/od.c:1717 +msgid "skip argument" +msgstr "ðñïóðÝñáóìá ïñßóìáôïò" + +# +#: src/od.c:1725 +msgid "limit argument" +msgstr "üñéï ïñßóìáôïò" + +# +#: src/od.c:1735 +msgid "minimum string length" +msgstr "åëÜ÷éóôï ìÝãåèïò áëöáñéèìçôéêïý" + +# +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "ôï %s åßíáé ðïëý ìåãÜëï" + +# +#: src/od.c:1804 +msgid "width specification" +msgstr "äÞëùóç ðëÜôïõò" + +# +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "êáíÝíá åßäïò äå ìðïñåß íá äçëùèåß üôáí ôõðþíïíôáé áëöáñéèìçôéêÜ" + +# +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "ìç Ýãêõñïò äåýôåñïò ôåëåóôÞò óå êáôÜóôáóç óõìâáôüôçôáò `%s'" + +# +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "" +"óå êáôÜóôáóç óõìâáôüôçôáò, ôá ôåëåõôáßá äýï ïñßóìáôá ðñÝðåé íá åßíáé èÝóåéò" + +# +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "ç êáôÜóôáóç óõìâáôüôçôáò õðïóôçñßæåé ôï ðïëý ôñßá ïñßóìáôá" + +# +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "" + +# +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "%d: fmt=\"%s\" ðëÜôïò=%d\n" + +# +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "" + +# +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "ç êáíïíéêÞ åßóïäïò åßíáé êëåéóìÝíç" + +# +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +# +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" + +# +#: src/pathchk.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÅÓ]... [ÁÑ×ÅÉÏ]...\n" + +#: src/pathchk.c:147 +#, fuzzy +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" +"Äéáãíþóôçêáí ìÞ óõìâáôÝò ìå Üëëá óõóôÞìáôá óõíôÜîåéò óôï ÏÍÏÌÁ.\n" +"\n" +" -p, --portability ÅëÝã÷åé ãéá üëá ôá óõóôÞìáôá POSIX, ü÷é ìüíï ãéá\n" +" ôï ôñÝ÷ïí.\n" +" --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +" --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" + +# +#: src/pathchk.c:237 +#, fuzzy, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "ôï ìÝãåèïò óôçëïãíþìïíá ðåñéÝ÷åé ìç Ýãêõñï ÷áñáêôÞñá" + +# +#: src/pathchk.c:257 +#, fuzzy, c-format +msgid "`%s' is not a directory" +msgstr "ôï `%s' õðÜñ÷åé Þäç Üëëá äåí åßíáé êáôÜëïãïò" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "Ï êáôÜëïãïò `%s' äåí åßíáé ðñïóéôüò." + +#: src/pathchk.c:355 +#, fuzzy, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "Ôï üíïìá `%s' Ý÷åé ìÞêïò %d. ÎåðåñíÜ ôï %d ðïõ åßíáé ôï üñéï." + +#: src/pathchk.c:381 +#, fuzzy, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "Ç äéáäñïìÞ `%s' Ý÷åé ìÞêïò %d. ÎåðåñíÜ ôï %d ðïõ åßíáé ôï üñéï." + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "" + +#: src/pinky.c:292 +#, fuzzy +msgid "Login name: " +msgstr "%s: Äåí õðÜñ÷åé üíïìá ÷ñÞóôç (login name).\n" + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "" + +#: src/pinky.c:298 +msgid "???\n" +msgstr "" + +# +#: src/pinky.c:318 +#, fuzzy +msgid "Directory: " +msgstr "êáôÜëïãïò" + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "" + +#: src/pinky.c:341 +msgid "Project: " +msgstr "" + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "" + +#: src/pinky.c:386 +msgid "Login" +msgstr "" + +#: src/pinky.c:388 +#, fuzzy +msgid "Name" +msgstr "ðì" + +#: src/pinky.c:389 +msgid " TTY" +msgstr "" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "" + +#: src/pinky.c:392 +msgid "When" +msgstr "" + +#: src/pinky.c:395 +msgid "Where" +msgstr "" + +# +#: src/pinky.c:469 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÅÓ]... [ÁÑ×ÅÉÏ]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" + +# +#: src/pinky.c:574 +#, fuzzy +msgid "no username specified; at least one must be specified when using -l" +msgstr "äå ìðïñïýí íá äçëþíïíôáé áñ÷åßá üôáí ãßíåôáé ÷ñÞóç ôïõ --string" + +# +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "Ðéô ÔåñÌÜô êáé Ñüëáíô ×Ýìðíåñ" + +# +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "`--pages' ìç Ýãêõñï üñéï áðü áñéèìïýò óåëßäùí: `%s'" + +# +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "`--pages' ìç Ýãêõñïò áñéèìüò áñ÷éêÞò óåëßäáò: `%s'" + +# +#: src/pr.c:829 +#, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "`--pages' ìç Ýãêõñïò áñéèìüò ôåëéêÞò óåëßäáò: `%s'" + +# +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "" +"`--pages' ï áñéèìüò áñ÷éêÞò óåëßäáò åßíáé ìåãáëýôåñïò áðü ôçò ôåëéêÞò óåëßäáò" + +# +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "`--pages=ÐÑÙÔÇ_ÓÅËÉÄÁ[:ÔÅËÅÕÔÁÉÁ_ÓÅËÉÄÁ]' áðïõóßá ïñßóìáôïò" + +# +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "`--columns=ÓÔÇËÇ' ìç Ýãêõñïò áñéèìüò óôçëþí: `%s'" + +# +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "`-l ÌÇÊÏÓ_ÓÅËÉÄÁÓ' ìç Ýãêõñïò áñéèìüò ãñáììþí: `%s'" + +# +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "`-N ÁÑÉÈÌÏÓ' ìç Ýãêõñïò áñéèìüò áñ÷éêÞò óåëßäáò: `%s'" + +# +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "`-o ÐÅÑÉÈÙÑÉÏ' ìç Ýãêõñç èÝóç ãñáììÞò: `%s'" + +# +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "`-w ÐËÁÔÏÓ_ÓÅËÉÄÁÓ' ìç Ýãêõñïò áñéèìüò ÷áñáêôÞñùí : `%s'" + +# +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "`-W ÐËÁÔÏÓ_ÓÅËÉÄÁÓ' ìç Ýãêõñïò áñéèìüò ÷áñáêôÞñùí : `%s'" + +# +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "%b %e %H:%M %Y" + +# +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "Äåí åßíáé äõíáôü íá äçëùèåß áñéèìüò óôçëþí óôçí ðáñÜëëçëç åêôýðùóç." + +# +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "Äåí åßíáé äõíáôü íá äçëùèåß óåéñéáêÞ êáé ðáñÜëëçëç åêôýðùóç." + +# +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "`-%c' åðéðëÝïí ÷áñáêôÞñåò Þ ìç Ýãêõñïò áñéèìüò óôï üñéóìá: `%s'" + +# +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "ôï ðëÜôïò óåëßäáò åßíáé ðïëý óôåíü" + +# +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "" +"ï áñ÷éêüò áñéèìüò óåëßäáò åßíáé ìåãáëýôåñïò áðü ôï óõíïëéêü áñéèìü óåëßäùí: `" +"%d'" + +# +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "Óåëßäá %d" + +# +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" + +# +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" + +# +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" + +# +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" + +# +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" + +# +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" + +# +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" + +# +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" + +# +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr "" + +# +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" + +# +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" + +# +#: src/pr.c:2849 +#, fuzzy +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" +"Óýãêñéóç ôáîéíïìçìÝíùí áñ÷åßùí ÁÑÉÓÔÅѼ_ÁÑ×ÅºÏ êáé ÄÅÎɼ_ÁÑןÏ, áíÜ " +"ãñáììÞ.\n" +"\n" +" -1 áðüêñõøç ìïíáäéêþí ãñáììþí óôï áñéóôåñü áñ÷åßï\n" +" -2 áðüêñõøç ìïíáäéêþí ãñáììþí óôï äåîéü áñ÷åßï\n" +" -3 áðüêñõøç ìïíáäéêþí ãñáììþí êáé óôá äýï áñ÷åßá\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" + +#: src/printenv.c:43 +msgid "David MacKenzie and Richard Mlynarik" +msgstr "" + +#: src/printenv.c:63 +#, fuzzy, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" +"ÅÜí êáìéÜ ÌÅÔÁÂËÇÔÇ ôïõ ðåñéâÜëïíôïò äåí êáèïñéóôåß, ôéò åêôõðþíåé üëåò.\n" +"\n" +" --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +" --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "" +"ÐÑÏÓÏ×Ç: %s: ïé ÷áñáêôÞñåò ðïõ áêïëïõèïýóáí ôïí ÷áñáêôÞñá óôáèåñÜ áãíïÞèçêáí." + +# +#: src/printf.c:100 +#, fuzzy, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ]... [ÅÉÓÏÄÏÓ [ÅÎÏÄÏÓ]]\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "%s: áíáìåíüôáí áñéèìçôéêÞ ôéìÞ." + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "%s: ç ôéìÞ äåí Ý÷åé ðëÞñùò ìåôáôñáðåß." + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "Ëåßðåé ï äåêáåîáäéêüò áñéèìüò óôïí ÷áñáêôÞñá äéáöõãÞò." + +# +#: src/printf.c:292 +#, fuzzy, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "ìç Ýãêõñç ôÜîç ÷áñáêôÞñùí `%s'" + +# +#: src/printf.c:472 +#, fuzzy, c-format +msgid "invalid field width: %s" +msgstr "ìç Ýãêõñïò áñéèìüò ðåäßïõ: `%s'" + +# +#: src/printf.c:498 +#, fuzzy, c-format +msgid "invalid precision: %s" +msgstr "ìç Ýãêõñï åßäïò áëöáñéèìçôéêïý `%s'" + +# +#: src/printf.c:519 +#, fuzzy, c-format +msgid "%%%c: invalid directive" +msgstr "%s: ìç Ýãêõñç ìïñöÞ" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "×ñÞóç: %s ÌÏÑÖÇ [ÐÁÑÁÌÅÔÑÏÉ...]\n" + +#: src/printf.c:594 +#, fuzzy, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "ÐÑÏÓÏ×Ç: ïé õðåñâïëéêÝò ðáñÜìåôñïé áãíïÞèçêáí." + +# +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "%s (ãéá êáíïíéêÞ Ýêöñáóç `%s')" + +# +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"×ñÞóç: %s [ÅÐÉËÏÃÇ]... [ÅÉÓÏÄÏÓ]... (÷ùñßò -G)\n" +" Þ: %s -G [ÅÐÉËÏÃÇ]... [ÅÉÓÏÄÏÓ [ÅÎÏÄÏÓ]]\n" + +# +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" + +# +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" + +# +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" + +# +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" + +# +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" + +# +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" + +# +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" + +# +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" + +# +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" + +# +#: src/pwd.c:74 +#, fuzzy +msgid "ignoring non-option arguments" +msgstr "ðÜñá ðïëëÜ ïñßóìáôá ðïõ äåí Ý÷ïõí åðéëïãÝò" + +# +#: src/pwd.c:78 +#, fuzzy +msgid "cannot get current directory" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/readlink.c:69 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÅÓ]... [ÁÑ×ÅÉÏ]...\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" + +# +#: src/remove.c:394 +#, fuzzy, c-format +msgid "cannot chdir from %s to .." +msgstr "áäýíáôç ç áëëáãÞ óôï êáôÜëïãï %s" + +#: src/remove.c:407 src/remove.c:488 +#, fuzzy, c-format +msgid "cannot lstat `.' in %s" +msgstr "Äåí åßíáé äõíáôüí íá åêôåëåóôåß ôï %s" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "" + +# +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, fuzzy, c-format +msgid "cannot lstat %s" +msgstr "áäýíáôç ç áëëáãÞ äéêáéùìÜôùí óôï %s" + +# +#: src/remove.c:603 +#, fuzzy, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/remove.c:604 +#, fuzzy, c-format +msgid "%s: descend into directory %s? " +msgstr "áäýíáôç ç áëëáãÞ óôï êáôÜëïãï %s" + +#: src/remove.c:614 +#, fuzzy, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: äéáãñáöÞ ðñïóôáôåõìÝíïõ áðü åããñáöÞ êáôáëüãïõ `%s'; " + +#: src/remove.c:615 +#, fuzzy, c-format +msgid "%s: remove %s %s? " +msgstr "%s: äéáãñáöÞ ôïõ `%s'; " + +#: src/remove.c:639 +#, fuzzy, c-format +msgid "removed %s\n" +msgstr "äéáãñáöÞ êáôáëüãïõ %s\n" + +# +#: src/remove.c:654 src/remove.c:1059 +#, fuzzy, c-format +msgid "removed directory: %s\n" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, fuzzy, c-format +msgid "cannot remove directory %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/remove.c:815 +#, fuzzy, c-format +msgid "cannot open directory %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/remove.c:896 src/remove.c:1002 +#, fuzzy, c-format +msgid "cannot chdir from %s to %s" +msgstr "áäýíáôç ç áëëáãÞ óôï êáôÜëïãï %s" + +#: src/remove.c:904 +#, fuzzy, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +"ÐÑÏÅÉÄÏÐÏÉÇÓÇ: ÊõêëéêÞ äïìÞ êáôáëüãïõ.\n" +"Áõôü ó÷åäüí óßãïõñá óçìáßíåé üôé Ý÷åôå Ýíá êáôåóôñáììÝíï óýóôçìá áñ÷åßùí.\n" +"ÃÍÙÓÔÏÐÏÉÇÓÔÅ ÔÏ ÓÔÏ ÄÉÁ×ÅÉÑÉÓÔÇ ÓÕÓÔÇÌÁÔÏÓ.\n" +"Ïé ðáñáêÜôù äýï êáôÜëïãïé Ý÷ïõí ôçí ßäéá ôéìÞ i-êüìâïõ:\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "äåí åßíáé äõíáôü íá äéáãñáöïýí ôá `.' Þ `..'" + +# +#: src/rm.c:60 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "Ðùë Ñïýìðéí êáé ÍôÝéâéíô ÌáêÝíæç" + +# +#: src/rm.c:99 src/touch.c:244 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÅÓ]... [ÁÑ×ÅÉÏ]...\n" + +#: src/rm.c:100 +#, fuzzy +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"ÄéáãñáöÞ (unlink) ÁÑ×ÅÉÏÕ(ÙÍ).\n" +"\n" +" -d, --directory äéáãñáöÞ êáôáëüãïõ, áêüìá êáé áí äåí åßíáé Üäåéïò " +"(ìüíï\n" +" õðåñ÷ñÞóôçò)\n" +" -f, --force áãíüçóå áñ÷åßá ðïõ äåí õðÜñ÷ïõí, ÷ùñßò åðéâåâáßùóç\n" +" -i, --interactive åðéâåâáßùóç ðñéí êÜèå äéáãñáöÞ prompt\n" +" -r, -R, --recursive äéáãñáãÞ ôùí ðåñéå÷ïìÝíùí ôùí êáôáëüãùí áíáäñïìéêÜ\n" +" -v, --verbose åîÞãçóç ôïõ ôé óõìâáßíåé\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +"\n" +"Ãéá ôç äéáãñáöÞ åíüò áñ÷åßïõ ðïõ ôï üíïìá ôïõ îåêéíÜ ìå `-', ãéá ðáñÜäåéãìá\n" +"`-foo', êÜíôå ÷ñÞóç ìéáò áðü ôéò ðáñáêÜôù åíôïëÝò:\n" +" %s -- -foo\n" +" %s ./-foo\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" + +# +#: src/rmdir.c:116 src/rmdir.c:217 +#, fuzzy, c-format +msgid "removing directory, %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/rmdir.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÅÓ]... [ÁÑ×ÅÉÏ]...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" + +#: src/rmdir.c:154 +#, fuzzy +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +"ÄéáãñáöÞ ÊÁÔÁËÏÃÏÕ(ÙÍ), áí åßíáé Üäåéïò(ïé).\n" +"\n" +" --ignore-fail-on-non-empty\n" +" áãíüçóå êÜèå ìåìïíùìÝíç áðïôõ÷ßá üôáí ï êáôÜëïãïò\n" +" äåí åßíáé Üäåéïò\n" +" -p, --parents äéáãñáöÞ ÊÁÔÁËÏÃÙÍ, Ýðåéôá ðñïóðÜèåéá äéáãñáöÞò êÜèå\n" +" êáôáëüãïõ ôçò äéáäñïìÞò. Ð.÷., `rmdir -p a/b/c' \n" +" åßíáé ðáñüìïéï ìå `rmdir a/b/c a/b a'.\n" +" -v, --verbose åìöÜíéóç äéáãíùóôéêïý ãéá êÜèå êáôÜëïãï ðïõ åðåîåñãÜæåôáé\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#: src/seq.c:82 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"×ñÞóç: %s [ÅÐÉËÏÃÇ]... [ÅÉÓÏÄÏÓ]... (÷ùñßò -G)\n" +" Þ: %s -G [ÅÐÉËÏÃÇ]... [ÅÉÓÏÄÏÓ [ÅÎÏÄÏÓ]]\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" + +#: src/seq.c:96 +#, fuzzy, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" +"Åêôõðþíåé ôïõò áñéèìïýò áðï ôïí ÐÑÙÔÏ ìÝ÷ñé ôïí ÔÅËÅÕÔÁÉÏ,\n" +"áõîÜíïíôáò êáôá ÁÕÎÇÓÇ.\n" +"\n" +" -f, --format ÄÉÁÌÏÑÖÙÓÇ ÷ñçóéìïðïéåß ôç ÄÉÁÌÏÑÖÙÓÇ ôçò printf(3)\n" +" (åî'ïñéóìïý: %%g)\n" +" -s, --separator ÁËÕÓÉÄÁ\n" +" ÷ñçóéìïðïéåß ôçí ÁËÕÓÉÄÁ ãéá íá ÷ùñßóåé ôïõò \n" +" áñéèìïýò (åî'ïñéóìïý: \\n)\n" +" -w, --equal-width åîéóþíåé ôï ìÞêïò ðñïóèÝôïíôáò ìçäåíéêÜ\n" +" --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +" --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" +"\n" +"ÅÜí ÐÑÙÔÏÓ Þ ÁÕÎÇÓÇ ðáñáëåéöèïõí, èåùñïýíôáé 1 åî'ïñéóìïý.\n" +"ÐÑÙÔÏÓ, ÁÕÎÇÓÇ, ÔÅËÅÕÔÁÉÏÓ åðåîåñãÜæïíôáé óáí ôéìÝò êéíçôÞò õðïäéáóôïëÞò.\n" +"Ç ÁÕÎÇÓÇ ðñÝðåé íá åßíáé èåôéêÞ åáí ï\n" +"ÐÑÙÔÏÓ åßíáé ìéêñüôåñïò áðï ôïí ÔÅËÅÕÔÁÉÏ êáé áñíçôéêüò óôçí Üëëç " +"ðåñßðôùóç.\n" +"Ïôáí äßíåôáé, ç ðáñÜìåôñïò ÄÉÁÌÏÑÖÙÓÇ ðñÝðåé íá ðåñéÝ÷åé áêñéâþò ìßá áðü\n" +"ôéò äéáìïñöþóåéò ôçò printf ãéá êéíçôÞò õðïäéáóôïëÞò áñéèìü %%e, %%f, or %%" +"g.\n" + +# +#: src/seq.c:119 +#, fuzzy, c-format +msgid "invalid floating point argument: %s" +msgstr "ìç Ýãêõñïò áñ÷éêüò áñéèìüò ãñáììÞò: `%s'" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" +"Ïôáí ç áñ÷éêÞ ôéìÞ åßíáé ìåãáëýôåñç ôïõ üñéïõ,\n" +"ç áýîçóç ðñÝðåé íá åßíáé áñíçôéêÞ." + +# +#: src/seq.c:213 +#, fuzzy +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" +"ôï üñéóìá Ýíáñîçò ðåäßïõ áñéèìïý óôçí åðéëïãÞ `-k' ðñÝðåé íá åßíáé èåôéêüò" + +# +#: src/seq.c:423 +#, fuzzy, c-format +msgid "invalid format string: `%s'" +msgstr "ìç Ýãêõñï åßäïò áëöáñéèìçôéêïý `%s'" + +# +#: src/seq.c:445 +#, fuzzy +msgid "format string may not be specified when printing equal width strings" +msgstr "êáíÝíá åßäïò äå ìðïñåß íá äçëùèåß üôáí ôõðþíïíôáé áëöáñéèìçôéêÜ" + +# +#: src/shred.c:160 +#, fuzzy, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ] [ÁÑ×ÅÉÏ]...\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" + +#: src/shred.c:174 +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" + +#: src/shred.c:808 +#, fuzzy, c-format +msgid "%s: cannot rewind" +msgstr "Äåí åßíáé äõíáôüí íá åêôåëåóôåß ôï %s" + +# src/shred.c:1067 +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "%s: ðÝñáóìá %lu/%lu (%s)..." + +# +#: src/shred.c:868 +#, fuzzy, c-format +msgid "%s: error writing at offset %s" +msgstr "óöÜëìá åããñáöÞò %s" + +# +#: src/shred.c:897 +#, fuzzy, c-format +msgid "%s: file too large" +msgstr "ôï áñ÷åßï ìçäåíßóôçêå" + +# src/shred.c:1154 +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "%s: ðÝñáóìá %lu/%lu (%s)...%s" + +# src/shred.c:1149 +#: src/shred.c:936 +#, fuzzy, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "%s: ðÝñáóìá %lu/%lu (%s)...%s/%s" + +# +#: src/shred.c:1195 +#, fuzzy, c-format +msgid "%s: invalid file type" +msgstr "%s: ìç Ýãêõñïò áñéèìüò ãñáììþí" + +# src/shred.c:1424 +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s: ôï áñ÷åßï Ý÷åé áñíçôéêü ìÝãåèïò" + +# +#: src/shred.c:1265 +#, fuzzy, c-format +msgid "%s: error truncating" +msgstr "ôï áñ÷åßï ìçäåíßóôçêå" + +# src/shred.c:1483 +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "%s: áäõíáìßá äéÜëõóçò ìüíï-ðñïóèÞêç ðåñéãñáöÝá áñ÷åßïõ" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "%s: äéáãñÜöåôáé" + +# +#: src/shred.c:1412 +#, fuzzy, c-format +msgid "%s: renamed to %s" +msgstr "%s: óöÜëìá áíÜãíùóçò" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s: äéåãñÜöåé" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "%s: äå ìðïñåß íá äéáãñáöåß" + +# +#: src/shred.c:1551 +#, fuzzy, c-format +msgid "%s: invalid number of passes" +msgstr "%s: ìç Ýãêõñïò áñéèìüò äåõôåñïëÝðôùí" + +# +#: src/shred.c:1568 +#, fuzzy, c-format +msgid "%s: invalid file size" +msgstr "%s: ìç Ýãêõñïò áñéèìüò ãñáììþí" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "" + +#: src/sleep.c:52 +#, fuzzy, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" +"Ðáýóç ãéá Ýíáí ÁÑÉÈÌÏ äåõôåñïëÝðôùí.\n" +"Ôï ÅÐÉÈÇÌÁ ìðïñåß íá åßíáé: s ãéá äåõôåñüëåðôá, m ãéá ëåðôÜ, h ãéá þñåò\n" +"Þ d ãéá ìÝñåò.\n" +"\n" +" --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +" --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" + +# +#: src/sleep.c:155 +#, fuzzy, c-format +msgid "invalid time interval `%s'" +msgstr "ìç Ýãêõñïò áñéèìüò ðåäßïõ: `%s'" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "" + +# +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "" + +# +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" + +# +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" + +# +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" + +# +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" + +# +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" + +# +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" + +# +#: src/sort.c:324 +#, fuzzy +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" +"ÈÅÓÇ åßíáé F[.C][OPTS], üðïõ F åßíáé ï áñéèìüò ðåäßïõ êáé C ç èÝóç ôïõ\n" +"÷áñáêôÞñá óôï ðåäßï, êáé ôá äýï ìåôñçìÝíá áðü ôï Ýíá ìå -k Þ áðü ôï ìçäÝí\n" +"ìå ôçí åêôüò ÷ñÞóçò ìïñöÞ. Ôï OPTS áðáñôßæåôáé áðü Ýíá Þ ðåñéóóüôåñá áðü\n" +"ôá Mbdfinr· áõôü ïõóéáóôéêÜ áðåíåñãïðïéåß ôéò êáèïëéêÝò ñõèìßóåéò -Mbdfinr\n" +"ãéá ôï êëåéäß áõôü. Áí äåí ïñßæåôáé êëåéäß, íá ãßíåé ÷ñÞóç ïëüêëçñçò ôçò\n" +"ãñáììÞò ãéá êëåéäß. ×ùñßò ÁÑ×ÅÉÏ, Þ üôáí ôï ARXEIO åßíáé ôï -, áíÜãíùóç\n" +"áðü ôçí êáíïíéêÞ åßóïäï.\n" + +# +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" + +# +#: src/sort.c:444 +#, fuzzy +msgid "cannot create temporary file" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/sort.c:467 +msgid "open failed" +msgstr "áðïôõ÷ßá áíïßãìáôïò" + +# +#: src/sort.c:487 src/sort.c:2496 +#, fuzzy +msgid "close failed" +msgstr "óöÜëìá êëåéóßìáôïò áñ÷åßïõ" + +# +#: src/sort.c:495 +msgid "write failed" +msgstr "áðïôõ÷ßá åããñáöÞò" + +# +#: src/sort.c:641 +#, fuzzy +msgid "sort size" +msgstr "ìÝãåèïò ìðëïê" + +# +#: src/sort.c:715 +msgid "stat failed" +msgstr "" + +# +#: src/sort.c:972 +msgid "read failed" +msgstr "áðïôõ÷ßá áíÜãíùóçò" + +# +#: src/sort.c:1570 +#, fuzzy, c-format +msgid "%s: %s:%s: disorder: " +msgstr "%s: %s:%d: ü÷é óå óåéñÜ: " + +# +#: src/sort.c:1574 +msgid "standard error" +msgstr "êáíïíéêü óöÜëìá" + +# +#: src/sort.c:2032 +#, fuzzy, c-format +msgid "%s: invalid field specification `%s'" +msgstr "ìç Ýãêõñç äÞëùóç ðåäßïõ `%s'" + +# +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "" + +# +#: src/sort.c:2064 +#, fuzzy, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "ìç Ýãêõñï üñéóìá %s ãéá `%s'" + +# +#: src/sort.c:2298 +#, fuzzy +msgid "invalid number after `-'" +msgstr "ìç Ýãêõñïò áñéèìüò áðü bytes" + +# +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +#, fuzzy +msgid "invalid number after `.'" +msgstr "ìç Ýãêõñïò áñéèìüò áðü bytes" + +# +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "" + +# +#: src/sort.c:2338 +#, fuzzy +msgid "invalid number at field start" +msgstr "ìç Ýãêõñïò áñéèìüò áðü ãñáììÝò" + +# +#: src/sort.c:2342 src/sort.c:2370 +#, fuzzy +msgid "field number is zero" +msgstr "ìç Ýãêõñïò áñéèìüò ðåäßïõ: `%s'" + +# +#: src/sort.c:2351 +msgid "character offset is zero" +msgstr "" + +# +#: src/sort.c:2366 +#, fuzzy +msgid "invalid number after `,'" +msgstr "ìç Ýãêõñïò áñéèìüò áðü bytes" + +# +#: src/sort.c:2411 +#, fuzzy, c-format +msgid "multi-character tab `%s'" +msgstr "ìç Ýãêõñç ôÜîç ÷áñáêôÞñùí `%s'" + +# +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "" + +# +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ] [ÅÉÓÏÄÏÓ [ÐÑÏÈÅÌÁ]]\n" + +# +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" + +# +#: src/split.c:108 +#, fuzzy, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" +"¸îïäïò ôìçìÜôùí óôáèåñïý ìåãÝèïõò áðü ôçí ÅÉÓÏÄÏ óå ÐÑÏÈÅÌÁaa, " +"ÐÑÏÈÅÌÁab, ...; åî ïñéóìïý\n" +"ÐÑÏÈÅÌÁ åßíáé ôï `x'. ×ùñßò ÅÉÓÏÄÏ, Þ üôáí ç ÅÉÓÏÄÏÓ åßíáé ôï -, áíÜãíùóç " +"áðü ôçí êáíïíéêÞ åßóïäï.\n" +"\n" +" -b, --bytes=ÌÅÃÅÈÏÓ ôïðïèÝôçóç ÌÅÃÅÈÏÓ bytes óå êÜèå áñ÷åßï åîüäïõ\n" +" -C, --line-bytes=ÌÅÃÅÈÏÓ ôïðïèÝôçóç ôï ðïëý ÌÅÃÅÈÏÓ bytes áðü ãñáììÝò óå " +"êÜèå áñ÷åßï åîüäïõ\n" +" -l, --lines=ÁÑÉÈÌÏÓ ôïðïèÝôçóç ÁÑÉÈÌÏÓ ãñáììþí óå êÜèå áñ÷åßïõ åîüäïõ\n" +" -ÁÑÉÈÌÏÓ ßäéï ìå -l ÁÑÉÈÌÏÓ\n" +" --verbose åêôýðùóç äéáãíùóôéêïý óôï êáíïíéêü óöÜëìá ìüëéò " +"ðñéí\n" +" áíïé÷ôåß êÜèå áñ÷åßï åîüäïõ\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +"\n" +"ÌÅÃÅÈÏÓ ìðïñåß íá Ý÷åé ðñüèåìá ðïëëáðëáóéáóôÞ: b ãéá 512, k ãéá 1K, m ãéá 1 " +"Meg.\n" + +# +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" + +# +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "" + +# +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "äçìéïõñãßá áñ÷åßïõ `%s'\n" + +# +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "äåí åßíáé äõíáôü íá ãßíåé äéá÷ùñéóìüò óå ðåñéóóüôåñïõò áðü Ýíá ôñüðï" + +# +#: src/split.c:394 +#, fuzzy, c-format +msgid "%s: invalid suffix length" +msgstr "%s: ìç Ýãêõñïò áñéèìüò ãñáììþí" + +# +#: src/split.c:408 src/split.c:434 +#, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: ìç Ýãêõñïò áñéèìüò áðü bytes" + +# +#: src/split.c:421 +#, c-format +msgid "%s: invalid number of lines" +msgstr "%s: ìç Ýãêõñïò áñéèìüò ãñáììþí" + +# +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "" + +# +#: src/split.c:483 +msgid "invalid number" +msgstr "ìç Ýãêõñïò áñéèìüò" + +# +#: src/stat.c:326 +#, fuzzy +msgid "*** invalid date/time ***" +msgstr "ìç Ýãêõñïò áñéèìüò ðåäßïõ: `%s'" + +# +#: src/stat.c:608 +#, fuzzy, c-format +msgid "cannot read file system information for %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/stat.c:684 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ] [ÁÑ×ÅÉÏ]...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" + +#: src/stty.c:504 +#, fuzzy +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" +"Åêôõðþíåé Þ áëëÜæåé ôá ÷áñáêôçñéóôéêÜ ôïõ ôåñìáôéêïý.\n" +"\n" +" -a, --all åêôõðþíåé üëá ôá ÷áñáêôçñéóôéêÜ óå áíáãíþóéìç ìïñöÞ\n" +" -g, --save åêôõðþíåé üëá ôá ÷áñáêôçñéóôéêÜ óå ìïñöÞ áíáãíþóéìç áðï\n" +" ôï `stty'\n" +" --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +" --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" +"\n" +"Ðñïåñáéôéêü - ðñéí ôçí ÅÊËÏÃÇ óçìáßíåé Üñíçóç. Ôï * óçìáßíåé ìéá\n" +"ÅÊËÏÃÇ ìç POSIX. Ôï óýóôçìá êáèïñßæåé ðïéÝò åðéëïãÝò åßíáé äéáèÝóéìåò.\n" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" + +#: src/stty.c:570 +#, fuzzy +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" +"\n" +"ÅðéëïãÝò åëÝã÷ïõ:\n" +" [-]clocal Áðåíåñãïðïéåß ôá óÞìáôá åëÝ÷ãïõ ôïõ modem\n" +" [-]cread ÅðéôñÝðåé ôçí ëÞøç ôùí åéóáãùìÝíùí\n" +"* [-]crtscts Åíåñãïðïéåß ôçí RTS/CTS ÷åéñáøßá\n" +" csN ÈÝôåé ôï ìÝãåèïò ôùí ÷áñáêôÞñùí óå N bits,\n" +" N ìåôáîý [5..8]\n" +" [-]cstopb ×ñçóéìïðïéåß 2 bits äéáêïðÞò áíá ÷áñáêôÞñá (Ýíá ìå `-')\n" +" [-]hup Ìåôáäßäåé óÞìá êëåéóßìáôïò üôáí ç ôåëåõôáßá åöáñìïãÞ\n" +" êëåßóåé ôï tty\n" +" [-]hupcl Ïìïéï ìå ôï [-]hup\n" +" [-]parenb Äçìéïõñãåß bit éóüôçìßáò óôçí Ýîïäï êáé ðåñéìÝíåé bit\n" +" éóüôçìßáò óôçí åßóïäï\n" +" [-]parodd ÈÝôåé ðåñéôÞ éóïôçìßá (áêüìá êáé ìå `-')\n" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:608 +#, fuzzy +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" +"\n" +"ÅðéëïãÝò åîüäïõ:\n" +"* bsN Ôýðïò êáèõóôÝñçóçò ðéóùäéáóôÞìáôïò, N ìåôáîý [0..1]\n" +"* crN Ôýðïò êáèõóôÝñçóçò åðéóôñïöÞò äñïìÝá, N ìåôáîý [0..3]\n" +"* ffN Ôýðïò êáèõóôÝñçóçò áëëáãÞò óåëßäáò, N ìåôáîý [0..1]\n" +"* nlN Ôýðïò êáèõóôÝñçóçò áëëáãÞò óåéñÜò, N ìåôáîý [0..1]\n" +"* [-]ocrnl ÌåôáôñÝðåé ôçí `åðéóôñïöÞ äñïìÝá' óå `íÝá ãñáììÞ'\n" +"* [-]ofdel ×ñçóéìïðïéåß ÷áñáêôÞñåò óâçóßìáôïò ãéá ãÝìéóìá áíôß\n" +" ôùí êåíþí ÷áñáêôÞñùí\n" +"* [-]ofill ×ñçóéìïðïéåß ÷áñáêôÞñåò ãåìßóìáôïò áíôß ÷ñïíïìÝôñçóçò ãéá\n" +" ôéò êáèõóôåñÞóåéò\n" +"* [-]olcuc ÌåôáôñÝðåé ôá ìéêñÜ óå êåöáëáßá\n" +"* [-]onlcr ÌåôáôñÝðåé ôçí `íåá ãñáììÞ' óå `åðéóôñïöÞ äñïìÝá-íåá " +"ãñáììÞ'\n" +"* [-]onlret Ç `íåá ãñáììÞ' ðñïêáëåß `åðéóôñïöÞ äñïìÝá'\n" +"* [-]onocr Äåí åêôõðþíåé `åðéóôñïöÞ äñïìÝá' óôçí ðñþôç óôÞëç\n" +" [-]opost Åêôåëåß ìéá ðñï-åðåîåñãáóìÝíç Ýîïäï\n" +"* tabN Ôýðïò êáèõóôÝñçóçò ôçò ïñéæüíôéáò ðéíáêïðïßçóçò, \n" +" N ìåôáîý [0..3]\n" +"* tabs Ïìïéï ìå tab0\n" +"* -tabs Ïìïéï ìå tab3\n" +"* vtN Ôýðïò êáèõóôÝñçóçò ôçò êÜèåôçò ðéíáêïðïßçóçò, N ìåôáîý " +"[0..1]\n" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" +"\n" +"×åéñßæåôáé ôçí 'tty' ãñáììÞ ðïõ óõíäÝåôáé ìå ôçí ôõðéêÞ åßóïäï. ×ùñßò\n" +"ðáñáìÝôñïõò, åêôõðþíåé ôçí ôá÷ýôçôá, ôçí êáôÜóôáóç ôçò ãñáììÞò, êáé\n" +"ôéò åöáñìïóìÝíåò ìåôáôñïðÝò áðü ôï 'stty sane'. Óôéò åðéëïãÝò, ï\n" +"×ÁÑáêôÞñáò åêëáìâÜíåôáé êõñéïëåêôéêÜ, Þ êùäéêïðïéåßôáé ïðùò ^c, 0x37, 0177\n" +"Þ 127. EéäéêÝò ôéìÝò üðùò ^- Þ ôï undef áðåíåñãïðïéïýóáí ôïõò åéäéêïýò\n" +"÷áñáêôÞñåò.\n" + +# +#: src/stty.c:787 +#, fuzzy +msgid "only one device may be specified" +msgstr "ìüíï Ýíá üñéóìá ìðïñåß íá äçëùèåß" + +# +#: src/stty.c:882 +#, fuzzy +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "ïé åðéëïãÝò --string êáé --check åßíáé áìïéâáßùò áðïêëåéüìåíåò" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "" +"Ïôáí êáèïñßæåôáé Ýíáò ôýðïò åîüäïõ, ïé êáôáóôÜóåéò ëåéôïõñãßáò (modes)\n" +"äåí åßíáé äõíáôüí íá ïñéóôïýí" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "" + +# +#: src/stty.c:957 src/stty.c:1064 +#, fuzzy, c-format +msgid "invalid argument `%s'" +msgstr "ìç Ýãêõñï üñéóìá %s ãéá %s" + +# +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, fuzzy, c-format +msgid "missing argument to `%s'" +msgstr "áóáöÝò üñéóìá %s ãéá %s" + +#: src/stty.c:1117 +#, fuzzy, c-format +msgid "%s: unable to perform all requested operations" +msgstr "" +"ÔõðéêÞ åßóïäïò: áäýíáôïí íá ðñáãìáôïðïéÞèïõí üëåò ôéò æçôïýìåíåò\n" +"ëåéôïõñãßåò" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "íåá_êáôÜóôáóç: êáôÜóôáóç ëåéôïõñãßáò\n" + +#: src/stty.c:1462 +#, fuzzy, c-format +msgid "%s: no size information for this device" +msgstr "Äåí õðÜñ÷ïõí ðëçñïöïñßåò ìåãÝèïõò ãé'áõôü ôï ðåñéöåñåéáêü" + +# +#: src/stty.c:1944 +#, fuzzy, c-format +msgid "invalid integer argument `%s'" +msgstr "ìç Ýãêõñç áýîçóç óôïí áñéèìü åíôïëÞò: `%s'" + +#: src/su.c:289 +msgid "Password:" +msgstr "Óõíèçìáôéêü:" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "getpass(): äåí åßíáé äõíáôüí íá áíïé÷ôåß ôï /dev/tty" + +# +#: src/su.c:350 +#, fuzzy +msgid "cannot set groups" +msgstr "äåí åßíáé äõíáôü íá ðáñáëçöèåß ÷ñÞóôçò êáé ïìÜäá" + +# +#: src/su.c:354 +#, fuzzy +msgid "cannot set group id" +msgstr "äåí åßíáé äõíáôü íá ðáñáëçöèåß ÷ñÞóôçò êáé ïìÜäá" + +# +#: src/su.c:356 +#, fuzzy +msgid "cannot set user id" +msgstr "äåí åßíáé äõíáôü íá ðáñáëçöèåß ÷ñÞóôçò êáé ïìÜäá" + +# +#: src/su.c:437 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÅÓ]... [ÁÑ×ÅÉÏ]...\n" + +#: src/su.c:438 +#, fuzzy +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" +"ÁëëÜæåé ôçí éó÷ýïõóá ôáõôüôçôá (effective id) ÷ñÞóôç êáé ïìÜäáò óå áõôÝò\n" +"ôïõ ×ÑÇÓÔÇ.\n" +"\n" +" -, -l, --login ÌåôáôñÝðåé ôï êÝëõöïò (shell) óå êÝëõöïò " +"åéóüäïõ\n" +" -c, --commmand=ÅÍÔÏËÇ ÓôÝëíåé ôçí ÅÍÔÏËÇ óôï öëïéü ìå -c\n" +" -f, --fast ÓôÝëíåé -f óôï öëïéü (ãéá csh Þ tcsh)\n" +" -m, --preserve-environment Äåí îáíáèÝôåé ôéò ìåôáâëçôÝò ôïõ " +"ðåñéâÜëëïíôïò\n" +" -p Ïìïéï ìå -m\n" +" -s, --shell=ÊÅËÕÖÏÓ Åêôåëåß ôï ÊÅËÕÖÏÓ åáí /etc/shells ôï " +"åðéôñÝðåé\n" +" --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +" --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" +"\n" +"Åáí áðëü - õðïíïåßôáé -l. ÅÜí ç ðáñÜìåôñïò ×ÑÇÓÔÇÓ äåí äßíåôáé,\n" +"èåùñåßôáé ïôé åßíáé ï `root'.\n" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "ï ÷ñÞóôçò %s äåí õðÜñ÷åé" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "ëÜèïò óõíèçìáôéêü" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "÷ñçóéìïðïéåßôáé ôï ðåñéïñéóìÝíï êÝëõöïò (restricted shell) %s" + +# +#: src/su.c:580 +#, fuzzy, c-format +msgid "warning: cannot change directory to %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "" + +# +#: src/sum.c:64 +#, fuzzy +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" +"Åêôýðùóç áèñïéóìÜôùí åëÝã÷ïõ êáé ìåôñçôÝò ìðëïê ãéá êÜèå ÁÑ×ÅÉÏ.\n" +"\n" +" -r õðåñíßêçóç ôïõ -s, ÷ñÞóç ôïõ BSD áëãïñßèìïõ áèñïßóìáôïò, " +"÷ñÞóç ìðëïê 1Ê\n" +" -s, --sysv ÷ñÞóç System V áëãïñßèìïõ áèñïßóìáôïò, ÷ñÞóç ìðëïê 512 " +"bytes\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +"\n" +"×ùñßò ÁÑ×ÅÉÏ, Þ üôáí ôï áñ÷åßï åßíáé ôï -, áíÜãíùóç áðü ôçí êáíïíéêÞ " +"åßóïäï.\n" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" + +# +#: src/sync.c:70 src/tty.c:112 +#, fuzzy +msgid "ignoring all arguments" +msgstr "ðÜñá ðïëëÜ ïñßóìáôá" + +# +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr "" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +"\n" + +# +#: src/sys2.h:494 +#, fuzzy +msgid " --version output version information and exit\n" +msgstr "" +"ÅìöÜíéóç Üèñïéóìá åëÝã÷ïõ CRC êáé áñéèìü bytes ãéá êÜèå ÁÑ×ÅÉÏ.\n" +"\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "" + +# +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +# +#: src/tac.c:139 +#, fuzzy +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" +"ÅããñáöÞ êÜèå áñ÷åßïõ óôçí êáíïíéêÞ Ýîïäï, ôåëåõôáßá ãñáììÞ ðñþôá.\n" +"×ùñßò ÁÑ×ÅÉÏ, Þ üôáí ôï áñ÷åßï åßíáé ôï -, áíÜãíùóç áðü ôçí êáíïíéêÞ " +"åßóïäï.\n" +"\n" +" -b, --before ôïðïèÝôçóç ôïõ äéá÷ùñéóôÞ ðñéí áíôß ãéá ìåôÜ\n" +" -r, --regex ìåôÜöñáóç ôïõ äéá÷ùñéóôÞ ùò êáíïíéêÞ Ýêöñáóç\n" +" -s, --separator=ÁËÖÁÑÉÈÌ ÷ñÞóç ÁËÖÁÑÉÈÌçôéêïý ùò äéá÷ùñéóôÞò áíôß ôïõ " +"÷áñáêôÞñá íÝáò ãñáììÞò\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "stdin: óöÜëìá áíÜãíùóçò" + +# +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "ï äéá÷ùñéóôÞò äå ìðïñåß íá åßíáé êåíüò" + +# +#: src/tail.c:49 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "Ðùë Ñïýìðéí êáé ÍôÝéâéíô ÌáêÝíæç" + +# +#: src/tail.c:238 +#, fuzzy, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"ÅìöÜíéóç ôùí 10 ðñþôùí ãñáììþí áðü êÜèå ÁÑ×ÅÉÏ óôçí êáíïíéêÞ Ýîïäï.\n" +"Ìå ðåñéóóüôåñá áðü Ýíá ÁÑ×ÅÉÏ, íá ðñïçãçèåß åðéóÝëéäï ìå ôï üíïìá ôïõ " +"áñ÷åßïõ.\n" +"×ùñßò ÁÑ×ÅÉÏ Þ üôáí ôï ÁÑ×ÅÉÏ åßíáé ôï -, áíÜãíùóç áðü ôçí êáíïíéêÞ åßóïäï.\n" +"\n" +" -c, --bytes=ÌÅÃÅÈÏÓ åìöÜíéóç ôùí ðñþôùí ÌÅÃÅÈÏÓ bytes\n" +" -n, --lines=ÁÑÉÈÌÏÓ åìöÜíéóç ôùí ðñþôùí ÁÑÉÈÌÏÓ ãñáììþí áíôß ôùí " +"ðñþôùí 10\n" +" -q, --quiet, --silent íá ìçí ôõðþíïíôáé åðéóÝëéäá ìå ôá ïíüìáôá " +"áñ÷åßùí\n" +" -v, --verbose íá ôõðþíïíôáé ðÜíôá åðéóÝëéäá ìå ôá ïíüìáôá " +"áñ÷åßùí\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +"\n" +"Ôï ÌÅÃÅÈÏÓ ìðïñåß íá Ý÷åé êáôÜëçîç ìå ðïëëáðëáóéáóôÞ: b ãéá 512, k ãéá 1K, m " +"ãéá 1 Meg.\n" +"Áí ÷ñçóéìïðïéåßôáé ôï -VALUE óáí ðñþôç ÅÐÉËÏÃÇ, áíÜãíùóå -c ÔÉÌÇ üôáí\n" +"Ýíáò áðü ôïõò ðïëëáðëáóéáóôÝò bkm áêïëïõèåß óõíåíùìÝíïò, äéáöïñåôéêÜ " +"áíÜãíùóå -n ÔÉÌÇ\n" + +# +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" + +# +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" + +# +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" + +# +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" + +# +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" + +# +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" + +# +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "êëåßóéìï ôïõ %s (fd=%d)" + +# +#: src/tail.c:391 +#, fuzzy, c-format +msgid "%s: cannot seek to offset %s" +msgstr "áäõíáìßá åêôÝëåóçò ioctl óôï `%s'" + +# +#: src/tail.c:395 +#, fuzzy, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +#: src/tail.c:400 +#, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "" + +# +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "ôï `%s' åßíáé ìç-ðñïóðåëÜóéìï" + +# +#: src/tail.c:835 +#, fuzzy, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "" +"%s: áäýíáôç ç áêïëïýèçóç ôïõ ôÝëïõò áõôïý ôïõ åßäïõò áñ÷åßïõ· ðáñÜêáìøç" + +# +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "ôï `%s' Ý÷åé ãßíåé ðñïóðåëÜóéìï" + +# +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "ôï `%s' åìöáíßóôçêå· áêïëïýèçóç ôÝëïõò íÝïõ áñ÷åßïõ" + +# +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "ôï `%s' Ý÷åé áíôéêáôáóôáèåß· áêïëïýèçóç ôÝëïõò íÝïõ áñ÷åßïõ" + +# +#: src/tail.c:1000 +#, fuzzy, c-format +msgid "%s: file truncated" +msgstr "ôï áñ÷åßï ìçäåíßóôçêå" + +# +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "äåí õðïëåßðïíôáé áñ÷åßá" + +# +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "" +"%s: áäýíáôç ç áêïëïýèçóç ôïõ ôÝëïõò áõôïý ôïõ åßäïõò áñ÷åßïõ· ðáñÜêáìøç" + +# +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "%c: ìç Ýãêõñïò ÷áñáêôÞñáò êáôÜëçîçò óå åêôüò ÷ñÞóçò åðéëïãÞ" + +# +#: src/tail.c:1405 +#, fuzzy, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"Ðñïåéäïðïßçóç: äåí åßíáé ìåôáöÝñóéìï íá ãßíåôå ÷ñÞóç äýï Þ ðåñéóóüôåñï " +"ïñéóìÜôùí\n" +"ãéá áñ÷åßá ìå ôï åêôüò ÷ñÞóçò óõíôáêôéêü (%s). ÊÜíôå ÷ñÞóç ôïõ éóïäýíáìïõ -n " +"Þ -c\n" +"óôç ðåñßðôùóç áõôÞ." + +# +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"Ðñïåéäïðïßçóç: äåí åßíáé ìåôáöÝñóéìï íá ãßíåôå ÷ñÞóç äýï Þ ðåñéóóüôåñï " +"ïñéóìÜôùí\n" +"ãéá áñ÷åßá ìå ôï åêôüò ÷ñÞóçò óõíôáêôéêü (%s). ÊÜíôå ÷ñÞóç ôïõ éóïäýíáìïõ -n " +"Þ -c\n" +"óôç ðåñßðôùóç áõôÞ." + +# +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "" + +# +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "" + +# +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "" +"%s: ìç Ýãêõñïò ìÝãéóôïò áñéèìüò áðü ÷ùñßò ìåôáâïëÞ `stats' ìåôáîý áíïéãìÜôùí" + +# +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "%s: ìç Ýãêõñïò ìÝãéóôïò áñéèìüò áðü äéáäï÷éêÝò áëëáãÝò ìåãÝèïõò" + +# +#: src/tail.c:1534 +#, c-format +msgid "%s: invalid PID" +msgstr "%s: ìç Ýãêõñïò ðåñéãñáöÝáò äéåñãáóßáò (PID)" + +# +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: ìç Ýãêõñïò áñéèìüò äåõôåñïëÝðôùí" + +# +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "" +"ðñïåéäïðïßçóç: ôï --retry åßíáé ÷ñÞóéìï ìüíï ìå ðáñáêïëïýèçóç âÜóç ïíüìáôïò" + +# +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "" +"ðñïåéäïðïßçóç: ï ðåñéãñáöÝáò äéåñãáóßáò áãíïåßôå· ôï --pid=PID åßíáé ÷ñÞóéìï " +"ìüíï óå ðáñáêïëïýèçóç" + +# +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "ðñïåéäïðïßçóç: ôï --pid=PID äåí õðïóôçñßæåôáé óå áõôü ôï óýóôçìá" + +# +#: src/tee.c:33 +#, fuzzy +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "Ñßôóáñíô ÓôÜëìáí êáé ÍôÝéâéíô ÌáêÝíæç" + +#: src/tee.c:64 +#, fuzzy +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" +"ÁíôéãñÜöåé ôçí ôõðéêÞ åßóïäï óå êÜèå ÁÑ×ÅÉÏ, êáé óôçí ôõðéêÞ Ýîïäï.\n" +"\n" +" -a, --append ÐñïóèÝôåé óôï ÁÑ×ÅÉÏ(á), ÷ùñßò íá ãñÜöåé\n" +" ðÜíù áðï ôá õðÜñ÷ïíôá\n" +" -i, --ignore-interrupts Áãíïåß óÞìáôá äéáêïðÞò\n" +" --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +" --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "Áíáìåíüôáí ðáñÜìåôñïò.\n" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "Áíáìåíüôáí áêÝñáéá Ýêöñáóç %s\n" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "áíáìåíüôáí ')'\n" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "áíáìåíüôáí ')', áëëÜ âñÝèçêå %s\n" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "%s: Áíáìåíüôáí ìïíáäéáßïò ÷åéñéóôÞò.\n" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "%s: Áíáìåíüôáí äõáäéêüò ÷åéñéóôÞò.\n" + +#: src/test.c:424 +msgid "before -lt" +msgstr "ðñéí -lt" + +#: src/test.c:432 +msgid "after -lt" +msgstr "ìåôÜ -lt" + +#: src/test.c:446 +msgid "before -le" +msgstr "ðñéí -le" + +#: src/test.c:453 +msgid "after -le" +msgstr "ìåôÜ -le" + +#: src/test.c:469 +msgid "before -gt" +msgstr "ðñéí -gt" + +#: src/test.c:476 +msgid "after -gt" +msgstr "ìåôÜ -gt" + +#: src/test.c:490 +msgid "before -ge" +msgstr "ðñéí -ge" + +#: src/test.c:497 +msgid "after -ge" +msgstr "ìåôÜ -ge" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "-nt äåí äÝ÷åôáé -l\n" + +#: src/test.c:526 +msgid "before -ne" +msgstr "ðñéí -ne" + +#: src/test.c:533 +msgid "after -ne" +msgstr "ìåôÜ -ne" + +#: src/test.c:549 +msgid "before -eq" +msgstr "ðñéí -eq" + +#: src/test.c:556 +msgid "after -eq" +msgstr "ìåôÜ -eq" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "-ef äåí äÝ÷åôáé -l\n" + +#: src/test.c:586 +#, fuzzy +msgid "-ot does not accept -l\n" +msgstr "-nt äåí äÝ÷åôáé -l\n" + +# +#: src/test.c:593 +#, fuzzy +msgid "unknown binary operator" +msgstr "¶ãíùóôï óöÜëìá óõóôÞìáôïò" + +#: src/test.c:781 +#, fuzzy +msgid "after -t" +msgstr "ìåôÜ -lt" + +# +#: src/test.c:979 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ]... [ÅÉÓÏÄÏÓ [ÅÎÏÄÏÓ]]\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" + +#: src/test.c:1009 +#, fuzzy +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" +"\n" +" ( ÅÊÖÑÁÓÇ ) Ç ÅÊÖÑÁÓÇ åßíáé áëçèéíÞ\n" +" ! ÅÊÖÑÁÓÇ Ç ÅÊÖÑÁÓÇ åßíáé øåýôéêç\n" +" ÅÊÖÑÁÓÇ1 -a ÅÊÖÑÁÓÇ2 Êáé ç ÅÊÖÑÁÓÇ1 êáé ç ÅÊÖÑÁÓÇ2\n" +" åßíáé áëçèéíÝò\n" +" ÅÊÖÑÁÓÇ1 -o ÅÊÖÑÁÓÇ2 Ïõôå ç ÅÊÖÑÁÓÇ1 ïýôå ÅÊÖÑÁÓÇ2 åßíáé áëçèéíÝò\n" +"\n" +" [-n] ÁËÕÓÉÄÁ Ôï ìÞêïò ôçò ÁËÕÓÉÄÁÓ äåí åßíáé ìçäÝí\n" +" -z ÁËÕÓÉÄÁ Ôï ìÞêïò ôçò ÁËÕÓÉÄÁÓ åßíáé ìçäÝí\n" +" ÁËÕÓÉÄÁ1 = ÁËÕÓÉÄÁ2 Ïé áëõóßäåò åßíáé ßóåò\n" +" ÁËÕÓÉÄÁ1 != ÁËÕÓÉÄÁ2 Ïé áëõóßäåò äåí åßíáé ßóåò\n" +"\n" +" ÁÊÅÑÁÉÏÓ1 -eq ÁÊÅÑÁÉÏÓ2 Ï ÁÊÅÑÁÉÏÓ1 åßíáé ßóïò ìå ôïí ÁÊÅÑÁÉÏ2\n" +" ÁÊÅÑÁÉÏÓ1 -ge ÁÊÅÑÁÉÏÓ2 Ï ÁÊÅÑÁÉÏÓ1 åßíáé ìåãáëýôåñïò Þ ßóïò ôïõ\n" +" ÁÊÅÑÁÉÏY2\n" +" ÁÊÅÑÁÉÏÓ1 -gt ÁÊÅÑÁÉÏÓ2 Ï ÁÊÅÑÁÉÏÓ1 åßíáé ìåãáëýôåñïò ôïõ ÁÊÅÑÁÉÏÕ2\n" +" ÁÊÅÑÁÉÏÓ1 -le ÁÊÅÑÁÉÏÓ2 Ï ÁÊÅÑÁÉÏÓ1 åßíáé ìéêñüôåñïò Þ ßóïò ôïõ\n" +" ÁÊÅÑÁÉÏÕ2\n" +" ÁÊÅÑÁÉÏÓ1 -lt ÁÊÅÑÁÉÏÓ2 O ÁÊÅÑÁÉÏÓ1 åßíáé ìéêñüôåñïò ôïõ ÁÊÅÑÁÉÏÕ2\n" +" ÁÊÅÑÁÉÏÓ1 -ne ÁÊÅÑÁÉÏÓ2 Ï ÁÊÅÑÁÉÏÓ1 äåí åßíáé ßóïò ìå ôïí ÁÊÅÑÁÉÏ2\n" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" + +# ___ +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" +"\n" +"ÐñïóÝ÷ôå ïôé ïé ðáñåíèÝóåéò ÷ñåéÜæïíôáé ôïõò ÷áñáêôÞñåò äéáöõãÞò \n" +"(ð.÷. `\\') ãéá êåëýöç (shells).\n" +"Åíáò ÁÊÅÑÁÉÏÓ ìðïñåß åðßóçò íá åßíáé -l ÁËÕÓÉÄÁ, ôï ïðïßï åêôéìÜôáé\n" +"óôï ìÞêïò ôçò ÁËÕÓÉÄÁÓ.\n" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "ôï `]' ëåßðåé\n" + +# +#: src/test.c:1125 +#, fuzzy +msgid "too many arguments\n" +msgstr "ðÜñá ðïëëÜ ïñßóìáôá" + +# +#: src/touch.c:39 +#, fuzzy +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "Ðùë Ñïýìðéí êáé ÍôÝéâéíô ÌáêÝíæç" + +# +#: src/touch.c:164 src/touch.c:179 +#, fuzzy, c-format +msgid "creating %s" +msgstr "äçìéïõñãßá áñ÷åßïõ `%s'\n" + +# +#: src/touch.c:222 +#, fuzzy, c-format +msgid "cannot touch %s" +msgstr "áäýíáôç ç áëëáãÞ äéêáéùìÜôùí óôï %s" + +#: src/touch.c:228 +#, fuzzy, c-format +msgid "setting times of %s" +msgstr "äéáôÞñçóç ùñþí óôï %s" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" + +# +#: src/touch.c:311 src/touch.c:331 +#, fuzzy, c-format +msgid "invalid date format %s" +msgstr "ìç Ýãêõñï üñéóìá %s ãéá %s" + +# +#: src/touch.c:355 +#, fuzzy +msgid "cannot specify times from more than one source" +msgstr "äåí åßíáé äõíáôü íá ãßíåé äéá÷ùñéóìüò óå ðåñéóóüôåñïõò áðü Ýíá ôñüðï" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "" + +# +#: src/touch.c:399 +#, fuzzy +msgid "file arguments missing" +msgstr "ðïëý ëßãá ïñßóìáôá" + +# +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ]... ÓÕÍÏËÏ1 [ÓÕÍÏËÏ2]\n" + +# +#: src/tr.c:331 +#, fuzzy +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" +"ÌåôÜöñáóç, óõìðýêíùóç êáé/ç äéáãñáöÞ ÷áñáêôÞñùí áðü ôçí êáíïíéêÞ åßóïäï,\n" +"ãñÜöïíôáò óôç êáíïíéêÞ Ýîïäï.\n" +"\n" +" -c, --complement ÷ñÞóç ôïõ óõìðëçñþìáôïò ôïõ ÓÕÍÏËÏ1\n" +" -d, --delete äéáãñáöÞ ÷áñáêôÞñùí áðü ôï ÓÕÍÏËÏ1, ü÷é ìåôÜöñáóç\n" +" -s, --squeeze-repeats áíôéêáôÜóôáóç áêïëïõèßáò ÷áñáêôÞñùí ìå Ýíá\n" +" -t, --truncate-set1 ðñþôá åëÜôôùóå ôï ÓÕÍÏËÏ1 óôï ìÝãåèïò ôïõ ÓÕÍÏËÏ2\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" + +# +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" + +# +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" + +# +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" + +# +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" + +# +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" + +# +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" +"ðñïåéäïðïßçóç: ï áóáöÞò ïêôáäéêüò äéáöõãÞò \\%c%c%c ìåôáöñÜæåôáé\n" +"ùò ôçí áêïëïõèßá äýï bytes \\0%c%c, `%c'" + +# +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "ìç Ýãêõñç äéáöõãÞ ìå ðéóùêÜèåôï óôï ôÝëïò ôïõ áëöáñéèìçôéêïý" + +# +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "ìç Ýãêõñç äéáöõãÞ ìå ðéóùêÜèåôï `\\%c'`" + +# +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "ôá Üêñç ôïõ äéáóôÞìáôïò `%s-%s' åßíáé óå áíôßóôñïöç óåéñÜ" + +# +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "ìç Ýãêõñç ìÝôñçóç åðáíÜëçøçò `%s' óôç êáôáóêåõÞ [c*n]" + +# +#: src/tr.c:999 +#, fuzzy +msgid "missing character class name `[::]'" +msgstr "ìç Ýãêõñç ôÜîç ÷áñáêôÞñùí `%s'" + +# +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "" + +# +#: src/tr.c:1025 +#, c-format +msgid "invalid character class `%s'" +msgstr "ìç Ýãêõñç ôÜîç ÷áñáêôÞñùí `%s'" + +# +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "%s: ï ôåëåóôÞò éóïäõíáìßáò ôÜîçò ðñÝðåé íá åßíáé Ýíáò ìüíï ÷áñáêôÞñáò" + +# +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "ç äïìÞ åðáíÜëçøçò [c*] äå ìðïñåß íá åìöáíßæåôáé óôï áëöáñéèìçôéêü1" + +# +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "ìüíï ìéá äïìÞ åðáíÜëçøçò [c*] ìðïñåß íá åìöáíéóôåß óôï áëöáñéèìçôéêü2" + +# +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "" +"åêöñÜóåéò [=c=] äåí ìðïñïýí íá åìöáíßæïíôáé óôï áëöáñéèìçôéêü 2 óôç ìåôÜöñáóç" + +# +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "" +"üôáí äåí áðïêüðôåôáé ôï óýíïëï1, ôï áëöáñéèìçôéêü 2 ðñÝðåé íá ìçí åßíáé êåíü" + +# +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" +"üôáí ãßíåôáé ìåôÜöñáóç ìå óõìðëÞñùìá ôÜîçò ÷áñáêôÞñùí,\n" +"ôï áëöáñéèìçôéêü 2 ðñÝðåé íá áíôéóôïé÷ßæåé üëïõò ôïõò ÷áñáêôÞñåò óôçí " +"ðåñéï÷Þ ìå Ýíá" + +# +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" +"óôç ìåôÜöñáóç, ïé ìüíåò êëÜóåéò ÷áñáêôÞñùí ðïõ ìðïñïýí íá åìöáíéóôïýí\n" +"óôï áëöáñéèìçôéêü 2 åßíáé `upper' êáé `lower'" + +# +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "ç äïìÞ [c*] ìðïñåß íá åìöáíéóôåß óôï áëöáñéèìçôéêü2 ìüíï óôç ìåôÜöñáóç" + +# +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "äýï áëöáñéèìçôéêÜ ðñÝðåé íá äßíïíôáé óôç ìåôÜöñáóç" + +# +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "" +"äýï áëöáñéèìçôéêÜ ðñÝðåé íá äßíïíôáé üôáí ãßíïíôáé äéáãñáöÞ êáé\n" +"óõìðõêíþóåéò åðáíáëÞøåùí" + +# +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" +"ìüíï Ýíá áëöáñéèìçôéêü ìðïñåß íá äïèåß üôáí ãßíåôáé äéáãñáöÞ ÷ùñßò\n" +"óõìðõêíþóåéò åðáíáëÞøåùí" + +# +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "" +"ôïõëÜ÷éóôïí Ýíá áëöáñéèìçôéêü ðñÝðåé íá äßíåôáé üôáí óõìðõêíþíïíôáé\n" +"åðáíáëÞøåéò" + +# +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "êáêþò óôïé÷éóìÝíç äïìÞ [:upper:] êáé/Þ [:lower:]" + +# +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" + +#: src/true.c:34 +#, fuzzy, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"×ñÞóç: %s [ÏÍÏÌÁ]\n" +" Þ: %s ÅÐÉËÏÃÇ\n" +"Åêôõðþíåé ôï üíïìá(hostname) ôïõ óõóôÞìáôïò.\n" +"\n" +" --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +" --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" + +# +#: src/tsort.c:97 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"×ñÞóç: %s [ÅÐÉËÏÃÇ] [ÁÑ×ÅÉÏ]\n" +"ÅããñáöÞ ðëÞñïõò ôáîéíïìçìÝíçò ëßóôáò óå óõìöùíßá ìå ôç ìåñéêÞ ôáîéíüìçóç\n" +"óôï ÁÑ×ÅÉÏ. ×ùñßò ÁÑ×ÅÉÏ, Þ üôáí ôï áñ÷åßï åßíáé ôï -, áíÜãíùóç áðü ôçí\n" +"êáíïíéêÞ åßóïäï.\n" +"\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "%s: ç åßóïäïò ðåñéÝ÷åé âñü÷ï:" + +# +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "ìüíï Ýíá üñéóìá ìðïñåß íá äçëùèåß" + +#: src/tty.c:63 +#, fuzzy +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" +"Åêôõðþíåé ôï üíïìá ôïõ ôåñìáôéêïý ðïõ åßíáé óõíäåäåìÝíï ìå ôçí ôõðéêÞ " +"Ýîïäï.\n" +"\n" +" -s, --silent, --quiet Äåí åêôõðþíåé ôßðïôá, åðéóôñÝöåé ìüíï êáôÜóôáóç\n" +" åîüäïõ\n" +" --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +" --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "äåí åßíáé tty'" + +#: src/uname.c:111 +#, fuzzy +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" +"Åêôõðþíåé óõãêåêñéìÝíåò ðëçñïöïñßåò óõóôÞìáôïò.\n" +"×ùñßò ÅÐÉËÏÃÇ, üìïéï ìå -s.\n" +"\n" +" -a, --all Åêôõðþíåé üëåò ôéò ðëçñïöïñßåò\n" +" -m, --machine Åêôõðþíåé ôïí ôýðï ôçò ìç÷áíÞò (hardware)\n" +" -n, --nodename Åêôõðþíåé ôï üíïìá ôïõ äéêôõáêïý êüìâïõ ôïõ\n" +" õðïëïãéóôÞ (network node hostname)\n" +" -r, --release Åêôõðþíåé ôçí áíáèåþñçóç Ýêäïóçò ôïõ ëåéôïõñãéêïý\n" +" óõóôÞìáôïò\n" +" -s, --sysname Åêôõðþíåé ôï üíïìá ôïõ ëåéôïõñãéêïý óõóôÞìáôïò\n" +" -p, --processor Åêôõðþíåé ôïí ôýðï ôïõ åðåîåñãáóôÞ\n" +" -v Åêôõðþíåé ôçí Ýêäïóç ôïõ ëåéôïõñãéêïý óõóôÞìáôïò\n" +" --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +" --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" + +# +#: src/uname.c:226 +#, fuzzy +msgid "cannot get system name" +msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#: src/unexpand.c:379 +#, fuzzy +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"ÌåôáôñïðÞ äéáóôçìÜôùí óå êÜèå ÁÑ×ÅÉÏ óå óôçëïèÝôåò, ãñÜöïíôáò óôçí êáíïíéêÞ " +"Ýîïäï.\n" +"×ùñßò ÁÑ×ÅÉÏ, Þ üôáí ôï áñ÷åßï åßíáé ôï -, áíÜãíùóç áðü ôçí êáíïíéêÞ " +"åßóïäï.\n" +"\n" +" -a, --all ìåôáôñïðÞ üëùí ôùí ëåõêþí ÷áñáêôÞñùí, áíôß ìüíï ôùí " +"áñ÷éêþí\n" +" -t, --tabs=ÁÑÉÈÌÏÓ ïé óôçëïèÝôåò íá Ý÷ïõí áðüóôáóç ÁÑÉÈÌÏÓ áíôß 8\n" +" -t, --tabs=ËÉÓÔÁ ÷ñÞóç ëßóôáò ÷ùñéóìÝíçò ìå êüììá ãéá ôç äÞëùóç ôçò " +"èÝóçò ôùí óôçëïèåôþí\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +"\n" +"Áíôß ãéá -t ÁÑÉÈÌÏÓ Þ -t ËÉÓÔÁ, -ÁÑÉÈÌÏÓ Þ -ËÉÓÔÁ ìðïñïýí íá " +"÷ñçóéìïðïéçèïýí.\n" + +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" + +# +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "" + +# +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ]... [ÅÉÓÏÄÏÓ [ÅÎÏÄÏÓ]]\n" + +# +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" + +# +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" + +# +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" + +# +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr "" + +# +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" + +# +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "óöÜëìá áíÜãíùóçò %s" + +# +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "óöÜëìá åããñáöÞò %s" + +# +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "" + +# +#: src/uniq.c:473 src/uniq.c:498 +#, fuzzy +msgid "invalid number of fields to skip" +msgstr "ìç Ýãêõñïò áñéèìüò ðåäßùí ðñïò ðñïóðÝñáóç: `%s'" + +# +#: src/uniq.c:507 +#, fuzzy +msgid "invalid number of bytes to skip" +msgstr "ìç Ýãêõñïò áñéèìüò bytes ðñïò ðñïóðÝñáóç: `%s'" + +# +#: src/uniq.c:516 +#, fuzzy +msgid "invalid number of bytes to compare" +msgstr "ìç Ýãêõñïò áñéèìüò áðü bytes ðñïò óýãêñéóç: `%s'" + +# +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "" + +# +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "" +"åêôýðùóç üëùí ôùí äéðëþí ãñáììþí êáé ìåôñçôþí åðáíáëÞøåùí äåí Ý÷åé Ýííïéá" + +# +#: src/unlink.c:51 +#, fuzzy, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ]... [ÅÉÓÏÄÏÓ [ÅÎÏÄÏÓ]]\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" + +# +#: src/unlink.c:99 +#, fuzzy, c-format +msgid "cannot unlink %s" +msgstr "áäýíáôç ç áëëáãÞ äéêáéùìÜôùí óôï %s" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "Äåí åßíáé äõíáôüí íá âñåèåß ç þñá åêêßíçóçò" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr " %2d:%02d%s up " + +#: src/uptime.c:140 +msgid "am" +msgstr "ðì" + +#: src/uptime.c:140 +msgid "pm" +msgstr "ìì" + +#: src/uptime.c:142 +#, fuzzy, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "ìÝñá" +msgstr[1] "ìÝñá" + +# +#: src/uptime.c:144 +#, fuzzy, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "ìç Ýãêõñïò ÷ñÞóôçò" +msgstr[1] "ìç Ýãêõñïò ÷ñÞóôçò" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr ", ÌÝóïò üñïò öüñôïõ: %.2f" + +# +#: src/uptime.c:191 src/users.c:118 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÅÓ]... [ÁÑ×ÅÉÏ]...\n" + +#: src/uptime.c:192 +#, fuzzy, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Åêôõðþíåé ôïí êáôÜëïãï ôùí åíåñãþí ÷ñçóôþí óýìöùíá ìå ôï ÁÑ×ÅÉÏ.\n" +"Åáí ôï ÁÑ×ÅÉÏ äåí ðñïóäéïñßæåôáé, ÷ñçóéìïðïéåßôáé ôï %s.\n" +"Ôï %s óáí ÁÑ×ÅÉÏ åßíáé êïéíü.\n" +"\n" +" --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +" --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" + +# +#: src/users.c:35 +#, fuzzy +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "Óêïô ÌðÜñôñáì êáé ÍôÝéâéíô ÌáêÝíæç" + +#: src/users.c:119 +#, fuzzy, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Åêôõðþíåé ôïí êáôÜëïãï ôùí åíåñãþí ÷ñçóôþí óýìöùíá ìå ôï ÁÑ×ÅÉÏ.\n" +"Åáí ôï ÁÑ×ÅÉÏ äåí ðñïóäéïñßæåôáé, ÷ñçóéìïðïéåßôáé ôï %s.\n" +"Ôï %s óáí ÁÑ×ÅÉÏ åßíáé êïéíü.\n" +"\n" +" --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +" --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" + +# +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "Ðùë Ñïýìðéí êáé ÍôÝéâéíô ÌáêÝíæç" + +# +#: src/wc.c:129 +#, fuzzy +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" +"ÅìöÜíéóç ìåôñçôþí ãñáììþí, ëÝîåùí êáé byte ãéá êÜèå ÁÑ×ÅÉÏ, êáé ìéá ãñáììÞ " +"óõíüëùí\n" +"áí ïñßæïíôáé ðåñéóóüôåñï áðü Ýíá ÁÑ×ÅÉÁ. ×ùñßò ÁÑ×ÅÉÏ, Þ üôáí ôï áñ÷åßï " +"åßíáé ôï -,\n" +"áíÜãíùóç áðü ôçí êáíïíéêÞ åßóïäï.\n" +" -c, --bytes, --chars åìöÜíéóç ôïõ óõíüëïõ ôùí bytes\n" +" -l, --lines åìöÜíéóç ôïõ óõíüëïõ ôùí ãñáììþí\n" +" -L, --max-line-length åìöÜíéóç ôïõ ìÞêïõò ôçò ìåãáëýôåñçò ãñáììÞò\n" +" -w, --words åìöÜíéóç ôïõ óõíüëïõ ôùí ëÝîåùí\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#: src/wc.c:137 +#, fuzzy +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" +"ÅìöÜíéóç Üèñïéóìá åëÝã÷ïõ CRC êáé áñéèìü bytes ãéá êÜèå ÁÑ×ÅÉÏ.\n" +"\n" +" --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +" --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "" + +#: src/who.c:223 +msgid " old " +msgstr "ðáëéÜ" + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "" + +#: src/who.c:446 +msgid "clock change" +msgstr "" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" +"\n" +"# ÷ñÞóôåò=%u\n" + +#: src/who.c:498 +msgid "NAME" +msgstr "" + +#: src/who.c:498 +msgid "LINE" +msgstr "ÃÑÁÌÌÇ" + +#: src/who.c:498 +msgid "TIME" +msgstr "" + +# +#: src/who.c:498 +#, fuzzy +msgid "IDLE" +msgstr "ÁÍÅÐÉÔÕ×ÅÓ" + +#: src/who.c:498 +msgid "PID" +msgstr "" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "" + +#: src/who.c:499 +msgid "EXIT" +msgstr "" + +# +#: src/who.c:574 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ]... ÁÑ×ÅÉÏ1 ÁÑ×ÅÉÏ2\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" + +#: src/whoami.c:53 +#, fuzzy +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" +"Åêôõðþíåé ôïí ÷ñÞóôç ðïõ óõíäÝåôáé ìå ôçí ôñÝ÷ïõóá éó÷ýïõóá ôáõôüôçôá\n" +"(effective id) ÷ñçóôç. Ïìïéï ìå: id -un.\n" +"\n" +" --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +" --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "%s: äåí ìðïñåé íá âñåèåß üíïìá ÷ñÞóôç ãéá ôï 'UID' %u\n" + +# +#: src/yes.c:49 +#, fuzzy, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ]... [ÅÉÓÏÄÏÓ [ÅÎÏÄÏÓ]]\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" + +# +#, fuzzy +#~ msgid "\\%c: invalid escape" +#~ msgstr "%s: ìç Ýãêõñç ìïñöÞ" + +# +#~ msgid "program error" +#~ msgstr "óöÜëìá ðñïãñÜììáôïò" + +# +#~ msgid "stack overflow" +#~ msgstr "õðåñ÷åßëéóç óôïßâáò" + +#, fuzzy +#~ msgid "cannot convert time" +#~ msgstr "Äåí ìðïñåß íá ôåèåß ç çìåñïìçíßá." + +# +#, fuzzy +#~ msgid "cannot format time" +#~ msgstr "áäýíáôç ç áëëáãÞ äéêáéùìÜôùí óôï %s" + +# +#, fuzzy +#~ msgid "cannot change to `..' from directory %s" +#~ msgstr "áäýíáôç ç áëëáãÞ óôï êáôÜëïãï %s" + +# +#, fuzzy +#~ msgid "missing file arguments" +#~ msgstr "ðïëý ëßãá ïñßóìáôá" + +#, fuzzy +#~ msgid "environment variable, QUOTING_STYLE" +#~ msgstr "áãíïåßôáé ìç Ýãêõñï ðëÜôïò óôç ìåôáâëçôÞ ðåñéâÜëëïíôïò COLUMNS: %s" + +# +#, fuzzy +#~ msgid "%s: is so large that it is not representable" +#~ msgstr "%s: ôï %s åßíáé ôüóï ìåãÜëï ðïõ äå ìðïñåß íá áíáðáñáóôáèåß" + +# +#, fuzzy +#~ msgid "cannot execute %s" +#~ msgstr "áäýíáôç ç áëëáãÞ äéêáéùìÜôùí óôï %s" + +# +#, fuzzy +#~ msgid "cannot run %s" +#~ msgstr "áäýíáôç ç áëëáãÞ äéêáéùìÜôùí óôï %s" + +# +#, fuzzy +#~ msgid "Try %s --help' for more information.\n" +#~ msgstr "ÄïêéìÜóôå `%s --help' ãéá ðåñéóóüôåñç âïÞèåéá.\n" + +# +#, fuzzy +#~ msgid "preserving permissions for %s" +#~ msgstr "áäõíáìßá áëëáãÞò éäéïêôçóßáò óôï %s" + +#, fuzzy +#~ msgid "cannot lstat `.'" +#~ msgstr "Äåí ìðïñåß íá ôåèåß ç çìåñïìçíßá." + +# +#, fuzzy +#~ msgid "closing directory %s" +#~ msgstr "áäýíáôç ç áëëáãÞ óôï êáôÜëïãï %s" + +# +#, fuzzy +#~ msgid "%s: remove directory %s? " +#~ msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +#, fuzzy +#~ msgid "%s: directory %s is write protected; descend into it anyway? " +#~ msgstr "" +#~ "%s: ï êáôÜëïãïò `%s' ðñïóôáôåýåôáé áðü åããñáöÞ· äéÜó÷õóç óå áõôü " +#~ "ðáñïëáõôÜ; " + +#~ msgid "removing all entries of directory %s\n" +#~ msgstr "äéáãñáöÞ üëùí ôùí åããñáöþí ôïõ êáôáëüãïõ %s\n" + +#~ msgid "continue? " +#~ msgstr "óõíÝ÷åéá; " + +# +#, fuzzy +#~ msgid "cannot change back to directory %s via `..'" +#~ msgstr "áäýíáôç ç áëëáãÞ óôï êáôÜëïãï %s" + +# +#, fuzzy +#~ msgid "%s: remove directory %s%s? " +#~ msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +#~ msgid " (might be nonempty)" +#~ msgstr " (ìðïñåß íá ìçí åßíáé Üäåéï)" + +#, fuzzy +#~ msgid "removing the directory itself: %s\n" +#~ msgstr "ÐÑÏÓÏ×Ç: äåí åßíáé äõíáôüí íá áëëá÷ôåß ï êáôÜëïãïò óå %s" + +# +#, fuzzy +#~ msgid "cannot remove current directory %s" +#~ msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +#, fuzzy +#~ msgid "" +#~ "ERROR: the source file %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after opening it), the numbers\n" +#~ "are %lu/%lu. That means that while this program was running,\n" +#~ "the file was replaced with another one. Skipping this file." +#~ msgstr "" +#~ "ÓÖÁËÌÁ: ï êáôÜëïãïò `%s' åß÷å áñ÷éêÜ áñéèìïýò óõóêåõÞò/é-êüìâïõ\n" +#~ "%lu/%lu, áëëÜ ôþñá (ìåôÜ áðü Ýíá chdir óå áõôüí), ïé áñéèìïß ãéá ôï `.'\n" +#~ "åßíáé %lu/%lu. Áõôü óçìáßíåé üôé êáôÜ ôçí åêôÝëåóç ôçò rm, o êáôÜëïãïò\n" +#~ "áíôéêáôáóôÜèçêå ìå åßôå Ýíá Üëëï êáôÜëïãï Þ ìå Ýíá óýíäåóìï óå Üëëï " +#~ "êáôÜëïãï." + +#, fuzzy +#~ msgid "" +#~ "ERROR: the directory %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after a chdir into it), the numbers for `.'\n" +#~ "are %lu/%lu. That means that while rm was running, the directory\n" +#~ "was replaced with either another directory or a link to another directory." +#~ msgstr "" +#~ "ÓÖÁËÌÁ: ï êáôÜëïãïò `%s' åß÷å áñ÷éêÜ áñéèìïýò óõóêåõÞò/é-êüìâïõ\n" +#~ "%lu/%lu, áëëÜ ôþñá (ìåôÜ áðü Ýíá chdir óå áõôüí), ïé áñéèìïß ãéá ôï `.'\n" +#~ "åßíáé %lu/%lu. Áõôü óçìáßíåé üôé êáôÜ ôçí åêôÝëåóç ôçò rm, o êáôÜëïãïò\n" +#~ "áíôéêáôáóôÜèçêå ìå åßôå Ýíá Üëëï êáôÜëïãï Þ ìå Ýíá óýíäåóìï óå Üëëï " +#~ "êáôÜëïãï." + +#, fuzzy +#~ msgid "" +#~ "ERROR: the directory %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after changing into at least one subdirectory\n" +#~ "and changing back via `..'), the numbers for `.' are %lu/%lu.\n" +#~ "That means that while rm was running, a partially-removed subdirectory\n" +#~ "was moved to a different position in the file system hierarchy." +#~ msgstr "" +#~ "ÓÖÁËÌÁ: ï êáôÜëïãïò `%s' åß÷å áñ÷éêÜ áñéèìïýò óõóêåõÞò/é-êüìâïõ\n" +#~ "%lu/%lu, áëëÜ ôþñá (ìåôÜ áðü Ýíá chdir óå áõôüí), ïé áñéèìïß ãéá ôï `.'\n" +#~ "åßíáé %lu/%lu. Áõôü óçìáßíåé üôé êáôÜ ôçí åêôÝëåóç ôçò rm, o êáôÜëïãïò\n" +#~ "áíôéêáôáóôÜèçêå ìå åßôå Ýíá Üëëï êáôÜëïãï Þ ìå Ýíá óýíäåóìï óå Üëëï " +#~ "êáôÜëïãï." + +#, fuzzy +#~ msgid " or: %s [-acm] MMDDhhmm[YY] FILE... (obsolete)\n" +#~ msgstr " ç : %s [-acm] MMDDhhmm[YY] ÁÑ×ÅÉÏ... (äåí åßíáé óå ÷ñÞóç)\n" + +# +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "ÅìöÜíéóç Üèñïéóìá åëÝã÷ïõ CRC êáé áñéèìü bytes ãéá êÜèå ÁÑ×ÅÉÏ.\n" +#~ "\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "ÅìöÜíéóç Üèñïéóìá åëÝã÷ïõ CRC êáé áñéèìü bytes ãéá êÜèå ÁÑ×ÅÉÏ.\n" +#~ "\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "ÅìöÜíéóç Üèñïéóìá åëÝã÷ïõ CRC êáé áñéèìü bytes ãéá êÜèå ÁÑ×ÅÉÏ.\n" +#~ "\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "ÅìöÜíéóç Üèñïéóìá åëÝã÷ïõ CRC êáé áñéèìü bytes ãéá êÜèå ÁÑ×ÅÉÏ.\n" +#~ "\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "ÅìöÜíéóç Üèñïéóìá åëÝã÷ïõ CRC êáé áñéèìü bytes ãéá êÜèå ÁÑ×ÅÉÏ.\n" +#~ "\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "ÅìöÜíéóç Üèñïéóìá åëÝã÷ïõ CRC êáé áñéèìü bytes ãéá êÜèå ÁÑ×ÅÉÏ.\n" +#~ "\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "ÅìöÜíéóç Üèñïéóìá åëÝã÷ïõ CRC êáé áñéèìü bytes ãéá êÜèå ÁÑ×ÅÉÏ.\n" +#~ "\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "ÅìöÜíéóç Üèñïéóìá åëÝã÷ïõ CRC êáé áñéèìü bytes ãéá êÜèå ÁÑ×ÅÉÏ.\n" +#~ "\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "ÅìöÜíéóç Üèñïéóìá åëÝã÷ïõ CRC êáé áñéèìü bytes ãéá êÜèå ÁÑ×ÅÉÏ.\n" +#~ "\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "ÅìöÜíéóç Üèñïéóìá åëÝã÷ïõ CRC êáé áñéèìü bytes ãéá êÜèå ÁÑ×ÅÉÏ.\n" +#~ "\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "ÅìöÜíéóç Üèñïéóìá åëÝã÷ïõ CRC êáé áñéèìü bytes ãéá êÜèå ÁÑ×ÅÉÏ.\n" +#~ "\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +#~ msgid "" +#~ "Change the group membership of each FILE to GROUP.\n" +#~ "\n" +#~ " -c, --changes like verbose but report only when a change is " +#~ "made\n" +#~ " --dereference affect the referent of each symbolic link, " +#~ "rather\n" +#~ " than the symbolic link itself\n" +#~ " -h, --no-dereference affect symbolic links instead of any referenced " +#~ "file\n" +#~ " (available only on systems that can change the\n" +#~ " ownership of a symlink)\n" +#~ " -f, --silent, --quiet suppress most error messages\n" +#~ " --reference=RFILE use RFILE's group rather than the specified\n" +#~ " GROUP value\n" +#~ " -R, --recursive operate on files and directories recursively\n" +#~ " -v, --verbose output a diagnostic for every file processed\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "ÁëëáãÞ ôçò óõììåôï÷Þò óå ïìÜäá êÜèå áñ÷åßïõ ÁÑ×ÅÉÏ óôçí ÏÌÁÄÁ.\n" +#~ "\n" +#~ " -c, --changes üðùò ôï \"--verbose\" áëëÜ åìöÜíéóç ìçíýìáôïò " +#~ "ìüíï\n" +#~ " üôáí ãßíåôáé áëëáãÞ\n" +#~ " --dereference áëëáãÞ óôï áíáöåñüìåíï áñ÷åßï êÜèå óõìâïëéêïý\n" +#~ " óõíäÝóìïõ áíôß óôïí ßäéï ôïí óýíäåóìï\n" +#~ " -h, --no-dereference ôñïðïðïßçóç ìüíï ôùí óõìâïëéêþí óõíäÝóìùí áíôß " +#~ "óôá\n" +#~ " áíáöåñüìåíá áñ÷åßá (äéáèÝóéìï ìüíï óôá " +#~ "óõóôÞìáôá\n" +#~ " ðïõ åðéôñÝðïõí ôçí áëëáãÞ éäéïêôÞôç óå " +#~ "óõìâïëéêü\n" +#~ " óýíäåóìï)\n" +#~ " -f, --silent, --quiet áðïöõãÞ åìöÜíéóçò ôùí ðåñéóóüôåñùí ìçíõìÜôùí\n" +#~ " óöÜëìáôïò\n" +#~ " --reference=ÁÑ×ÅÉÏÁÍÁÖÏÑÁÓ ÷ñÞóç ôçò ïìÜäáò ôïõ ÁÑ×ÅÉÏÁÍÁÖÏÑÁÓ\n" +#~ " áíôß ôéò ôéìÞò ÏÌÁÄÁ\n" +#~ " -R, --recursive áíáäñïìéêÝò áëëáãÝò óôá áñ÷åßá êáé óôïõò\n" +#~ " êáôáëüãïõò\n" +#~ " -v, --verbose åìöÜíéóç äéáãíùóôéêþí ìçíõìÜôùí ãéá êÜèå " +#~ "áñ÷åßï\n" +#~ " ðïõ åðåîåñãÜæåôáé\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +#, fuzzy +#~ msgid "" +#~ "Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +#~ "\n" +#~ " -c, --changes like verbose but report only when a change is " +#~ "made\n" +#~ " --dereference affect the referent of each symbolic link, " +#~ "rather\n" +#~ " than the symbolic link itself\n" +#~ " -h, --no-dereference affect symbolic links instead of any referenced " +#~ "file\n" +#~ " (available only on systems that can change the\n" +#~ " ownership of a symlink)\n" +#~ " --from=CURRENT_OWNER:CURRENT_GROUP\n" +#~ " change the owner and/or group of each file only " +#~ "if\n" +#~ " its current owner and/or group match those " +#~ "specified\n" +#~ " here. Either may be omitted, in which case a " +#~ "match\n" +#~ " is not required for the omitted attribute.\n" +#~ " -f, --silent, --quiet suppress most error messages\n" +#~ " --reference=RFILE use RFILE's owner and group rather than\n" +#~ " the specified OWNER:GROUP values\n" +#~ " -R, --recursive operate on files and directories recursively\n" +#~ " -v, --verbose output a diagnostic for every file processed\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "ÁëëáãÞ ôïõ éäéïêôÞôç êáé/Þ ôçò ïìÜäá ãéá êÜèå áñ÷åßï, óå ÉÄÉÏÊÔÇÔÇ êáé/ç " +#~ "ÏÌÁÄÁ.\n" +#~ "\n" +#~ " -c, --changes üðùò ôï \"--verbose\" áëëÜ åìöÜíéóç ìçíýìáôïò " +#~ "ìüíï\n" +#~ " üôáí ãßíåôáé áëëáãÞ\n" +#~ " --dereference áëëáãÞ óôï áíáöåñüìåíï áñ÷åßï êÜèå óõìâïëéêïý\n" +#~ " óõíäÝóìïõ áíôß óôïí ßäéï ôï óýíäåóìï\n" +#~ " -h, --no-dereference ôñïðïðïßçóç ìüíï ôùí óõìâïëéêþí óõíäÝóìùí áíôß " +#~ "óôá\n" +#~ " áíáöåñüìåíá áñ÷åßá (äéáèÝóéìï ìüíï óôá " +#~ "óõóôÞìáôá\n" +#~ " ðïõ åðéôñÝðïõí ôçí áëëáãÞ éäéïêôÞôç óå " +#~ "óõìâïëéêü\n" +#~ " óýíäåóìï)\n" +#~ " --from=ÔÑÅ×ÙÍ_ÉÄÉÏÊÔÇÔÇÓ:ÔÑÅ×ÏÕÓÁ_ÏÌÁÄÁ\n" +#~ " áëëáãÞ ôïõ éäéïêôÞôç êáé/Þ ôçò ïìÜäáò êÜèå " +#~ "áñ÷åßïõ ìüíï\n" +#~ " áí ï ôñÝ÷ùí éäéïêôÞôçò êáé/Þ ïìÜäá ôáéñéÜæïõí ìå " +#~ "ôéò\n" +#~ " ôéìÝò åäþ. ¸íá áðü ôá äýï ìðïñåß íá ðáñáëçöèåß, " +#~ "ïðüôå\n" +#~ " äåí áðáéôåßôáé ôáßñéáóìá óôï ðáñáëåéðüìåíç " +#~ "éäéüôçôá.\n" +#~ " -f, --silent, --quiet áðïöõãÞ åìöÜíéóçò ôùí ðåñéóóüôåñùí ìçíõìÜôùí\n" +#~ " óöÜëìáôïò\n" +#~ " --reference=ÁÑ×ÅÉÏÁÍÁÖÏÑÁÓ ÷ñÞóç ôïõ éäéïêôÞôç êáé ôçò ïìÜäáò\n" +#~ " ôïõ ÁÑ×ÅÉÏÁÍÁÖÏÑÁÓ áíôß ôùí ôéìþí ÉÄÉÏÊÔÇÔÇÓ:" +#~ "ÏÌÁÄÁ\n" +#~ " -R, --recursive áëëáãÝò óôá áñ÷åßá êáé óôïõò êáôáëüãïõò " +#~ "áíáäñïìéêÜ\n" +#~ " -v, --verbose åìöÜíéóç äéáãíùóôéêþí ìçíõìÜôùí ãéá êÜèå " +#~ "áñ÷åßï\n" +#~ " ðïõ åðåîåñãÜæåôáé\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "Ï éäéïêôÞôçò äåí áëëÜæåé áí Ý÷åé ðáñáëçöèåß. Ç ïìÜäá äåí áëëÜæåé áí Ý÷åé\n" +#~ "ðáñáëçöèåß, ôñïðïðïéåßôáé óôç âáóéêÞ ïìÜäá ÷ñÞóôç áí ôïðïèåôçèåß ï\n" +#~ "÷áñáêôÞñáò 'Üíù-êÜôù ôåëßá'. Ï ÉÄÉÏÊÔÇÔÇÓ êáé ç ÏÌÁÄÁ ìðïñïýí íá Ý÷ïõí\n" +#~ "åßôå áñéèìçôéêÞ åßôå óõìâïëéêÞ ôéìÞ.\n" + +#, fuzzy +#~ msgid "" +#~ " -l, --link link files instead of copying\n" +#~ " -L, --dereference always follow symbolic links\n" +#~ " -p same as --preserve=mode,ownership," +#~ "timestamps\n" +#~ " --preserve[=ATTR_LIST] preserve the specified attributes " +#~ "(default:\n" +#~ " mode,ownership,timestamps), if possible\n" +#~ " additional attributes: links, all\n" +#~ " --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +#~ " --parents append source path to DIRECTORY\n" +#~ " -P same as `--no-dereference'\n" +#~ " -r copy recursively, non-directories as " +#~ "files\n" +#~ " WARNING: use -R instead when you might " +#~ "copy\n" +#~ " special files like FIFOs or /dev/zero\n" +#~ " --remove-destination remove each existing destination file " +#~ "before\n" +#~ " attempting to open it (contrast with --" +#~ "force)\n" +#~ msgstr "" +#~ "ÁíôéãñáöÞ ôçò ÐÇÃÇò óôï ÐÑÏÏÑÉÓÌÏÓ Þ ðïëëáðëÝò ÐÇÃÇ(ÅÓ) óôï ÊÁÔÁËÏÃÏ.\n" +#~ "\n" +#~ " -a, --archive ôï ßäéï ìå -dpR\n" +#~ " --backup=[ÅËÅÃ×ÏÓ] äçìéïõñãßá áíôéãñÜöïõ áóöáëåßáò ãéá êÜèå " +#~ "áñ÷åßï\n" +#~ " ðñïïñéóìïý\n" +#~ " -b üðùò ôï --backup áëëÜ äåí áðáéôåß " +#~ "ðáñÜìåôñï\n" +#~ " -d, --no-dereference äéáôÞñçóç óõìâïëéêþí óõíäÝóìùí\n" +#~ " -f, --force äéáãñáöÞ õðáñ÷üíôùí ðñïïñéóìþí, ÷ùñßò\n" +#~ " åðéâåâáßùóç äéáãñáöÞò\n" +#~ " -i, --interactive áðáßôçóç äéáâåâáßùóçò äéáãñáöÞò ðñéí ôç\n" +#~ " äéáãñáöÞ ëüãù åðéêÜëõøçò\n" +#~ " -l, --link äçìéïõñãßá óõíäÝóìùí áíôß áíôéãñÜöùí\n" +#~ " -p, --preserve äéáôÞñçóç ÷áñáêôçñéóôéêþí ôùí áñ÷åßùí, áí\n" +#~ " åßíáé äõíáôüí\n" +#~ " -P, --parents ðñïóèÞêç äéáäñïìÞò ôçò ðçãÞò óôï " +#~ "ÊÁÔÁËÏÃÏÓ\n" +#~ " -r áíôéãñáöÞ áíáäñïìéêÜ, ôïõò ìç-êáôáëüãïõò " +#~ "óáí\n" +#~ " áñ÷åßá\n" +#~ " ÐÑÏÅÉÄÏÐÏÉÇÓÇ: êÜíôå ÷ñÞóç ôïõ -R üôáí\n" +#~ " ðñüêåéôå íá áíôéãñÜøåôå åéäéêÜ áñ÷åßá " +#~ "üðùò\n" +#~ " FIFO Þ ôï /dev/zero\n" +#~ " --sparse=WHEN Ýëåã÷ïò ôçò äçìéïõñãßáò áñáéþí (sparse)\n" +#~ " áñ÷åßùí\n" +#~ " -R, --recursive áíôéãñáöÞ êáôáëüãùí áíáäñïìéêÜ\n" +#~ " --strip-trailing-slashes áðïìÜêñõíóç ïôéäÞðïôå êÜèåôùí ðïõ Ýðïíôáé " +#~ "áðü\n" +#~ " êÜèå üñéóìá ÐÇÃÇÓ\n" +#~ " -s, --symbolic-link äçìéïõñãßá óõìâïëéêþí óõíäÝóìùí áíôß\n" +#~ " áíôéãñÜöùí\n" +#~ " -S, --suffix=ÊÁÔÁËÇÎÇ ðáñÜêáìøç ôçò óõíçèéóìÝíçò êáôÜëçîçò ôùí\n" +#~ " áíôéãñÜöùí áóöáëåßáò\n" +#~ " --target-directory=ÊÁÔÁËÏÃÏÓ ìåôáêßíçóå üëá ôá ïñßóìáôá ãéá ÐÇÃÇ " +#~ "óôï\n" +#~ " ÊÁÔÁËÏÃÏÓ\n" +#~ " -u, --update áíôéãñáöÞ ìüíï üôáí ôï áñ÷åßï ÐÇÃÇ åßíáé\n" +#~ " íåþôåñï áðü ôï áñ÷åßï ÐÑÏÏÑÉÓÌÏÓ Þ üôáí\n" +#~ " ôï áñ÷åßï ðñïïñéóìüò äåí õðÜñ÷åé\n" +#~ " -v, --verbose åîÞãçóç ôïõ ôß ãßíåôáé\n" +#~ " -x, --one-file-system ðáñáìïíÞ óôï ôñÝ÷ïí óýóôçìá áñ÷åßùí\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "¸î ïñéóìïý, ôá áñáßá (sparse) áñ÷åßá ÐÇÃÇÓ áíáãùñßæïíôáé ìå Ýíá ü÷é ôüóï\n" +#~ "êáëü åõñåóôéêü áëãüñéèìï êáé ôï áíôßóôïé÷ï áñ÷åßï ÐÑÏÏÑÉÓÌÏÕ ãßíåôáé " +#~ "áñáéü\n" +#~ "åðßóçò. ÁõôÞ åßíáé ç óõìðåñéöïñÜ ôçò åðéëïãÞò --sparse=auto. ÅðéëÝîôå\n" +#~ "--sparse=always ãéá ôç äçìéïõñãßá áñáéþí áñ÷åßùí ÐÑÏÏÑÉÓÌÏÕ ïðüôå ôï " +#~ "áñ÷åßï\n" +#~ "ÐÇÃÇ ðåñéÝ÷åé áñêåôÜ ìåãÜëåò óåéñÝò áðü ìçäåíéêÜ bytes.\n" +#~ "Ìå --sparse=never áðïãïñåýåôå ôç äçìéïõñãßá áñáéþí áñ÷åßùí.\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "Copy a file, converting and formatting according to the options.\n" +#~ "\n" +#~ " bs=BYTES force ibs=BYTES and obs=BYTES\n" +#~ " cbs=BYTES convert BYTES bytes at a time\n" +#~ " conv=KEYWORDS convert the file as per the comma separated keyword " +#~ "list\n" +#~ " count=BLOCKS copy only BLOCKS input blocks\n" +#~ " ibs=BYTES read BYTES bytes at a time\n" +#~ " if=FILE read from FILE instead of stdin\n" +#~ " obs=BYTES write BYTES bytes at a time\n" +#~ " of=FILE write to FILE instead of stdout\n" +#~ " seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +#~ " skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "BLOCKS and BYTES may be followed by the following multiplicative " +#~ "suffixes:\n" +#~ "xM M, c 1, w 2, b 512, kD 1000, k 1024, MD 1,000,000, M 1,048,576,\n" +#~ "GD 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +#~ "Each KEYWORD may be:\n" +#~ "\n" +#~ " ascii from EBCDIC to ASCII\n" +#~ " ebcdic from ASCII to EBCDIC\n" +#~ " ibm from ASCII to alternated EBCDIC\n" +#~ " block pad newline-terminated records with spaces to cbs-size\n" +#~ " unblock replace trailing spaces in cbs-size records with newline\n" +#~ " lcase change upper case to lower case\n" +#~ " notrunc do not truncate the output file\n" +#~ " ucase change lower case to upper case\n" +#~ " swab swap every pair of input bytes\n" +#~ " noerror continue after read errors\n" +#~ " sync pad every input block with NULs to ibs-size; when used\n" +#~ " with block or unblock, pad with spaces rather than NULs\n" +#~ msgstr "" +#~ "ÁíôéãñáöÞ áñ÷åßïõ, ìåôáôñïðÞ êáé ìïñöïðïßçóç âÜóç ôùí åðéëïãþí.\n" +#~ "\n" +#~ " bs=BYTES åðéâïëÞ ibs=BYTES êáé obs=BYTES\n" +#~ " cbs=BYTES ìåôáôñïðÞ BYTES bytes ôç öïñÜ\n" +#~ " conv=ËÅÊÔÉÊÁ ìåôáôñïðÞ óýìöùíá ìå ôç äéá÷ùñéæüìåíç ìå êüììá " +#~ "ëßóôáëåêôéêþí\n" +#~ " count=ÌÐËÏÊ áíôéãñáöÞ ìüíï BLOCKS ìðëïê åéóüäïõ\n" +#~ " ibs=BYTES áíÜãíùóç BYTES bytes ôç öïñÜ\n" +#~ " if=ÁÑ×ÅÉÏ áíÜãíùóç áðü ÁÑ×ÅÉÏ áíôß áðü ôç êáíïíéêÞ åßóïäï\n" +#~ " obs=BYTES åããñáöÞ BYTES bytes ôç öïñÜ\n" +#~ " of=ÁÑ×ÅÉÏ åããñáöÞ óôï ÁÑ×ÅÉÏ áíôß óôç êáíïíéêÞ Ýîïäï, ÷ùñßò " +#~ "åðéêÜëõøç\n" +#~ " seek=ÌÐËÏÊ ðáñÜëçøç ôùí ÌÐËÏÊ ìðëïê ìåãÝèïõò obs óôçí áñ÷Þ ôçò " +#~ "åîüäïõ\n" +#~ " skip=ÌÐËÏÊ ðáñÜëçøç ôùí ÌÐËÏÊ ìðëïê ìåãÝèïõò ibs óôçí áñ÷Þ ôçò " +#~ "åéóüäïõ\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "ôï BYTES ìðïñåß íá öÝñåé ôéò åðüìåíåò ðïëëáðëáóéáóôéêÝò êáôáëÞîåéò:\n" +#~ "xM M, c 1, w 2, b 512, kD 1000, k 1024, MD 1,000,000, M 1,048,576,\n" +#~ "GD 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +#~ "ÊÜèå ËÅÊÔÉÊÏ ìðïñåß íá åßíáé:\n" +#~ "\n" +#~ " ascii áðü EBCDIC óå ASCII\n" +#~ " ebcdic áðü ASCII óå EBCDIC\n" +#~ " ibm áðü ASCII óå åííáëáêôéêü EBCDIC\n" +#~ " block óõìðëÞñùóç ôùí åããñáöþí ðïõ ôåñìáôßæïíôáé ìå ôï ÷áñáêôÞñá" +#~ "\t áëëáãÞò ãñáììÞò ìå ôï ÷áñáêôÞñá äéáóôÞìáôïò ãéá " +#~ "ó÷çìáôéóìü ìåãÝèïõò cbs\n" +#~ " unblock áíôéêáôÜóôáóç ôåëéêþí äéáóôçìÜôùí óôéò åããñáöÝò cbs ìå " +#~ "÷áñáêôÞñá áëëáãÞò ãñáììÞò\n" +#~ " lcase áëëáãÞ êåöáëáßùí óå ðåæÜ\n" +#~ " notrunc áðïöõãÞ äçìéïõñãßáò áñ÷åßïõ åîüäïõ üôáí õðÜñ÷åé áñ÷åßï\n" +#~ "\t ìå ôï ßäéï üíïìá\n" +#~ " ucase áëëáãÞ ðåæþí óå êåöáëáßá\n" +#~ " swab áíôéêáôÜóôáóç ìåôáîý ôïõò êÜèå æåõãáñéïý áðü bytes åéóüäïõ\n" +#~ " noerror óõíÝ÷éóç áêüìá êáé ìå óöÜëìáôá áíÜãíùóçò\n" +#~ " sync óõìðëÞñùóç êÜèå ìðëïê åéóüäïõ ìå NUL ãéá íá ó÷çìáôéóôåß " +#~ "ìÝãåèïò ibs\n" + +#~ msgid "" +#~ "Show information about the filesystem on which each FILE resides,\n" +#~ "or all filesystems by default.\n" +#~ "\n" +#~ " -a, --all include filesystems having 0 blocks\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " -H, --si likewise, but use powers of 1000 not 1024\n" +#~ " -i, --inodes list inode information instead of block usage\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l, --local limit listing to local filesystems\n" +#~ " -m, --megabytes like --block-size=1048576\n" +#~ " --no-sync do not invoke sync before getting usage info " +#~ "(default)\n" +#~ " -P, --portability use the POSIX output format\n" +#~ " --sync invoke sync before getting usage info\n" +#~ " -t, --type=TYPE limit listing to filesystems of type TYPE\n" +#~ " -T, --print-type print filesystem type\n" +#~ " -x, --exclude-type=TYPE limit listing to filesystems not of type " +#~ "TYPE\n" +#~ " -v (ignored)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "ÅìöÜíéóç ðëçñïöïñéþí ãéá ôï óýóôçìá áñ÷åßùí óôï ïðïßï êÜèå ÁÑ×ÅÉÏ " +#~ "âñßóêåôáé\n" +#~ "Þ üëùí ôùí óõóôçìÜôùí áñ÷åßùí åî ïñéóìïý.\n" +#~ "\n" +#~ " -a, --all óõìðåñßëçøç óõóôçìÜôùí áñ÷åßùí ìå 0 ìðëïê\n" +#~ " --block-size=ÌÅÃÅÈÏÓ ÷ñÞóç ÌÅÃÅÈÏÓ-byte ìðëïê\n" +#~ " -h, --human-readable åìöÜíéóç ìåãåèþí óå áíèñùðßíùò áíáãíþóéìç ìïñöÞ " +#~ "(ð.÷. 1Ê 234Ì 2G)\n" +#~ " -H, --si üðùò ðáñáðÜíù, áëëÜ ìå äõíÜìåéò ôïõ 1000 áíôß ôïõ " +#~ "1024\n" +#~ " -i, --inodes åìöÜíéóç ðëçñïöïñéþí êüìâùí-ä áíôß ÷ñÞóçò ôùí " +#~ "ìðëïê\n" +#~ " -k, --kilobytes üðùò --block-size=1024\n" +#~ " -m, --megabytes üðùò like --block-size=1048576\n" +#~ " --no-sync íá ìç êëçèåß ç sync ðñéí ðáñèïýí ðëçñïöïñßåò " +#~ "÷ñÞóçò(åî ïñéóìïý)\n" +#~ " -P, --portability ÷ñÞóç ôçò ìïñöÞò åîüäïõ POSIX\n" +#~ " --sync êëÞóç ôçò sync ðñéí ôç ëÞøç ðëçñïöïñéþí ÷ñÞóçò\n" +#~ " -t, --type=ÅÉÄÏÓ ðåñéïñéóìüò åìöÜíéóçò óôá óõóôÞìáôá áñ÷åßùí ôïõ " +#~ "åßäïõò ÅÉÄÏÓ\n" +#~ " -T, --print-type åìöÜíéóç ôï åßäïò ôïõ óõóôÞìáôïò áñ÷åßùí\n" +#~ " -x, --exclude-type=ÅÉÄÏÓ ðåñéïñéóìüò åìöÜíéóçò óõóôÞìáôïò áñ÷åßùí óå " +#~ "ü÷é åßäïò ÅÉÄÏÓ\n" +#~ " -v (áãíïåßôáé)\n" +#~ " --help åìöÜíéóç áõôÞò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +#~ msgid "" +#~ "Summarize disk usage of each FILE, recursively for directories.\n" +#~ "\n" +#~ " -a, --all write counts for all files, not just directories\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -b, --bytes print size in bytes\n" +#~ " -c, --total produce a grand total\n" +#~ " -D, --dereference-args dereference PATHs when symbolic link\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " -H, --si likewise, but use powers of 1000 not 1024\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l, --count-links count sizes many times if hard linked\n" +#~ " -L, --dereference dereference all symbolic links\n" +#~ " -m, --megabytes like --block-size=1048576\n" +#~ " -S, --separate-dirs do not include size of subdirectories\n" +#~ " -s, --summarize display only a total for each argument\n" +#~ " -x, --one-file-system skip directories on different filesystems\n" +#~ " -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +#~ "FILE.\n" +#~ " --exclude=PAT Exclude files that match PAT.\n" +#~ " --max-depth=N print the total for a directory (or file, with --" +#~ "all)\n" +#~ " only if it is N or fewer levels below the " +#~ "command\n" +#~ " line argument; --max-depth=0 is the same as\n" +#~ " --summarize\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "ÐåñéëçðôéêÞ åìöÜíéóç ÷ñÞóçò äßóêïõ ãéá êÜèå ÁÑ×ÅÉÏ, áíáäñïìéêÜ ãéá " +#~ "êáôáëüãïõò.\n" +#~ "\n" +#~ " -a, --all åìöÜíéóç ôéìþí ãéá üëá ôá áñ÷åßá, ü÷é ìüíï ãéá\n" +#~ " êáôáëüãïõò\n" +#~ " --block-size=ÌÅÃÅÈÏÓ ÷ñÞóç ÌÅÃÅÈÏÓ-byte ìðëïê\n" +#~ " -b, --bytes åìöÜíéóç ìåãåèþí óå byte\n" +#~ " -c, --total åìöÜíéóç ôåëéêïý ìåãÝèïõò\n" +#~ " -D, --dereference-args áíáäßðëùóç ÌÏÍÏÐÁÔÉÙÍ üôáí õðÜñ÷åé óõìâïëéêüò\n" +#~ " óýíäåóìïò\n" +#~ " -h, --human-readable åìöÜíéóç ìåãåèþí óå åýêïëç êáé áíáãíþóéìç ìïñöÞ\n" +#~ " (ð.÷. 1K 234M 2G)\n" +#~ " -H, --si üðùò ðáñáðÜíù, áëëÜ ìå äõíÜìåéò ôïõ 1000 áíôß ôïõ " +#~ "1024\n" +#~ " -k, --kilobytes üðùò --block-size=1024\n" +#~ " -l, --count-links ìÝôñçìá ìåãåèþí ðïëëÝò öïñÝò áí åßíáé óèåíáñÜ\n" +#~ " óõíäåäåìÝíá(hard linked)\n" +#~ " -L, --dereference áíáäßðëùóç üëùí ôùí óõìâïëéêþí óõíäÝóìùí\n" +#~ " -m, --megabytes üðùò --block-size=1048576\n" +#~ " -S, --separate-dirs ÷ùñßò íá óõìðåñéëáìâÜíåôáé ôï ìÝãåèïò ôùí " +#~ "õðïêáôáëüãùí\n" +#~ " -s, --summarize åìöÜíéóç ìüíï óõíüëïõ ãéá êÜèå üñéóìá\n" +#~ " -x, --one-file-system ðáñÜëçøç êáôáëüãùí óå äéáöïñåôéêÜ óõóôÞìáôá " +#~ "áñ÷åßùí\n" +#~ " -X ÁÑ×ÅÉÏ, --exclude-from=ÁÑ×ÅÉÏ ÐáñÜëçøç áñ÷åßùí ìå ìïñöÞ ðïõ\n" +#~ " ôáéñéÜæåé ìÝóá óôï ÁÑ×ÅÉÏ\n" +#~ " --exclude=ÌÏÑÖÇ ÐáñÜëçøç áñ÷åßùí ôçò ìïñöÞò ÌÏÑÖÇ.\n" +#~ " --max-depth=N åìöÜíéóç ôïõ óõíïëéêïý åíüò êáôáëüãïõ (Þ " +#~ "áñ÷åßïõ,\n" +#~ " ìå --all)\n" +#~ " ìüíï áí åßíáé N Þ ëéãüôåñá åðßðåäá êÜôù áðü ôï\n" +#~ " üñéóìá ôçò ãñáììÞò åíôïëþí· --max-depth=0 " +#~ "åßíáé\n" +#~ " ßäéï ìå --summarize\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +#~ msgid "" +#~ "In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +#~ "the existing DIRECTORY, while setting permission modes and owner/group.\n" +#~ "In the third format, create all components of the given DIRECTORY(ies).\n" +#~ "\n" +#~ " --backup[=CONTROL] make a backup of each existing destination file\n" +#~ " -b like --backup but does not accept an argument\n" +#~ " -c (ignored)\n" +#~ " -d, --directory treat all arguments as directory names; create all\n" +#~ " components of the specified directories\n" +#~ " -D create all leading components of DEST except the " +#~ "last,\n" +#~ " then copy SOURCE to DEST; useful in the 1st " +#~ "format\n" +#~ " -g, --group=GROUP set group ownership, instead of process' current " +#~ "group\n" +#~ " -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-" +#~ "xr-x\n" +#~ " -o, --owner=OWNER set ownership (super-user only)\n" +#~ " -p, --preserve-timestamps apply access/modification times of SOURCE " +#~ "files\n" +#~ " to corresponding destination files\n" +#~ " -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +#~ " -S, --suffix=SUFFIX override the usual backup suffix\n" +#~ " -v, --verbose print the name of each directory as it is created\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Óôéò ðñþôåò äýï ìïñöÝò, áíôéãñÜöåé ôç ÐÇÃÇ óôï ÐÑÏÏÑÉÓÌÏ Þ ðïëëáðëÝò " +#~ "ÐÇÃÅÓ\n" +#~ "(ÐÇÃÇ) óôïí õðÜñ÷ïí ÊÁÔÁËÏÃÏ, åíþ ôßèåíôáé äéêáéþìáôá áñ÷åßïõ êáé\n" +#~ "éäéïêôÞôçò/ïìÜäá. Óôç ôñßôç ìïñöÞ, äçìéïõñãßá üëùí ôùí óõóôáôéêþí ôïõ " +#~ "äïèÝíôïò\n" +#~ "ÊÁÔÁËÏÃÏÕ(ÙÍ).\n" +#~ "\n" +#~ " --backup=[ÅËÅÃ×ÏÓ] äçìéïõñãßá áíôéãñÜöïõ áóöáëåßáò ãéá êÜèå áñ÷åßï\n" +#~ " ðñïïñéóìïý\n" +#~ " -b üðùò ôï --backup áëëÜ äåí áðáéôåß ðáñÜìåôñï\n" +#~ " -c (áãíïåßôáé)\n" +#~ " -d, --directory ìåôá÷åßñçóç üëùí ôùí ïñéóìÜôùí ùò ïíüìáôá " +#~ "êáôáëüãùí·\n" +#~ " äçìéïõñãßá üëùí ôùí óõóôáôéêþí ôùí äïèÝíôùí " +#~ "êáôáëüãùí\n" +#~ " -D äçìéïõñãßá üëùí ôùí ðñïðïñåõüìåíùí óõóôáôéêþí ôïõ\n" +#~ " ÐÑÏÏÑÉÓÌÏÕ åêôüò ôïõ ôåëåõôáßïõ, êáé áíôÝãñáøå ôç " +#~ "ÐÇÃÇ\n" +#~ " óôï ÐÑÏÏÑÉÓÌÏ· ÷ñÞóéìï óôçí ðñþôç ìïñöÞ\n" +#~ " -g, --group=ÏÌÁÄÁ ïñéóìüò éäéïêôçóßáò ïìÜäáò, áíôß ôçò ôñÝ÷ïõóáò ôçò\n" +#~ " äéåñãáóßáò\n" +#~ " -m, --mode=ÄÉÊÁÉÙÌÁÔÁ ïñéóìüò äéêáéùìÜôùí (üðùò ìå chmod), áíôß ôïõ\n" +#~ " rwxr-xr-x\n" +#~ " -o, --owner=ÉÄÉÏÊÔÇÔÇÓ ïñéóìüò éäéïêôÞôç (ìüíï õðåñ÷ñÞóôçò)\n" +#~ " -p, --preserve-timestamps äéáôÞñçóç ôùí çìåñïìçíéþí ðñüóâáóçò/" +#~ "ôñïðïðïßçóçò\n" +#~ " ôùí áñ÷åßùí ÐÇÃÇÓ\n" +#~ " -s, --strip áðáëïéöÞ ðéíÜêùí óõìâüëùí, ìüíï ãéá 1ç êáé 2ç " +#~ "ìïñöÞ\n" +#~ " -S, --suffix=ÊÁÔÁËÇÎÇ ðáñÜêáìøç ôçò óõíçèéóìÝíçò êáôÜëçîçò áñ÷åßùí " +#~ "áóöáëåßáò\n" +#~ " -v, --verbose åìöÜíéóç ôïõ ïíüìáôïò êÜèå êáôáëüãïõ êáèþò " +#~ "äçìéïõñãåßôáé\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" + +#~ msgid "" +#~ "Create a link to the specified TARGET with optional LINK_NAME.\n" +#~ "If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +#~ "created in the current directory. When using the second form with more\n" +#~ "than one TARGET, the last argument must be a directory; create links\n" +#~ "in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +#~ "links with --symbolic. When creating hard links, each TARGET must " +#~ "exist.\n" +#~ "\n" +#~ " --backup[=CONTROL] make a backup of each existing destination " +#~ "file\n" +#~ " -b like --backup but does not accept an " +#~ "argument\n" +#~ " -d, -F, --directory hard link directories (super-user only)\n" +#~ " -f, --force remove existing destination files\n" +#~ " -n, --no-dereference treat destination that is a symlink to a\n" +#~ " directory as if it were a normal file\n" +#~ " -i, --interactive prompt whether to remove destinations\n" +#~ " -s, --symbolic make symbolic links instead of hard links\n" +#~ " -S, --suffix=SUFFIX override the usual backup suffix\n" +#~ " --target-directory=DIRECTORY specify the DIRECTORY in which to " +#~ "create\n" +#~ " the links\n" +#~ " -v, --verbose print name of each file before linking\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Äçìéïõñãßá óõíäÝóìïõ óôïí áíáöåñüìåíï ÐÑÏÏÑÉÓÌÏ ìå ðñïáéñåôéêü\n" +#~ "ÏÍÏÌÁ_ÓÕÍÄÅÓÌÏÕ. Áí ôï ÏÍÏÌÁ_ÓÕÍÄÅÓÌÏÕ Ý÷åé ðáñáëçöèåß, íá äçìéïõñãçèåß\n" +#~ "óýíäåóìïò ìå ôçí ßäéá âÜóç ïíüìáôïò üðùò ï ðñïïñéóìüò, óôï ôñÝ÷ïí " +#~ "êáôÜëïãï.\n" +#~ "¼ôáí ãßíåôå ÷ñÞóç ôçò äåýôåñçò ìïñöÞò ìå ðåñéóóüôåñïõò áðü Ýíáí " +#~ "ÐÑÏÏÑÉÓÌÏÕÓ,\n" +#~ "ôï ôåëåõôáßï üñéóìá ðñÝðåé íá åßíáé êáôÜëïãïò· äçìéïõñãßá óõíäÝóìùí óôï\n" +#~ "ÊÁÔÁËÏÃÏ ãéá êÜèå ÐÑÏÏÑÉÓÌÏ. Äçìéïõñãßá óèåíáñþí óõíäÝóìùí åî ïñéóìïý,\n" +#~ "óõìâïëéêþí óõíäÝóìùí ìå --symbolic.\n" +#~ "¼ôáí äçìéïõñãïýíôáé óèåíáñïß óýíäåóìïé, êÜèå ÐÑÏÏÑÉÓÌÏÓ ðñÝðåé íá " +#~ "ðñïûðÜñ÷åé.\n" +#~ "\n" +#~ " --backup=[ÅËÅÃ×ÏÓ] äçìéïõñãßá áíôéãñÜöïõ áóöáëåßáò ãéá êÜèå " +#~ "áñ÷åßï\n" +#~ " ðñïïñéóìïý\n" +#~ " -b üðùò ôï --backup áëëÜ äåí áðáéôåß " +#~ "ðáñÜìåôñï\n" +#~ " -d, -F, --directory óèåíáñïß óýíäåóìïé óå êáôáëüãïõò (ìüíï\n" +#~ " õðåñ÷ñÞóôçò)\n" +#~ " -f, --force äéáãñáöÞ õðáñ÷üíôùí áñ÷åßùí ðñïïñéóìïý\n" +#~ " -n, --no-dereference ìåôá÷åßñçóç ðñïïñéóìþí ðïõ åßíáé óýíäåóìïò " +#~ "óå\n" +#~ " êáôÜëïãï óá íá Þôáí êáíïíéêü áñ÷åßï\n" +#~ " -i, --interactive åðéâåâáßùóç ãéá äéáãñáöÞ ðñïïñéóìþí\n" +#~ " -s, --symbolic äçìéïõñãßá óõìâïëéêþí óõíäÝóìùí áíôß " +#~ "óèåíáñþí\n" +#~ " -S, --suffix=ÊÁÔÁËÇÎÇ ðáñÜêáìøç ôçò óõíçèçóìÝíçò êáôÜëçîçò " +#~ "áñ÷åßùí\n" +#~ " áóöáëåßáò\n" +#~ " --target-directory=ÊÁÔÁËÏÃÏÓ ïñéóìüò ÊÁÔÁËÏÃÏÕ óôïí ïðïßï èá\n" +#~ " äçìéïõñãçèïýí óýíäåóìïé\n" +#~ " -v, --verbose åìöÜíéóç ïíüìáôïò êÜèå áñ÷åßïõ ðñéí ôç " +#~ "óýíäåóç\n" +#~ " -V, --version-control=ËÅÎÇ ðáñÜêáìøç ôïõ óõíçèçóìÝíïõ åëÝã÷ïõ " +#~ "Ýêäïóçò\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "List information about the FILEs (the current directory by default).\n" +#~ "Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +#~ "\n" +#~ " -a, --all do not hide entries starting with .\n" +#~ " -A, --almost-all do not list implied . and ..\n" +#~ " -b, --escape print octal escapes for nongraphic " +#~ "characters\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -B, --ignore-backups do not list implied entries ending with ~\n" +#~ " -c with -lt: sort by, and show, ctime (time of " +#~ "last\n" +#~ " modification of file status information)\n" +#~ " with -l: show ctime and sort by name\n" +#~ " otherwise: sort by ctime\n" +#~ " -C list entries by columns\n" +#~ " --color[=WHEN] control whether color is used to distinguish " +#~ "file\n" +#~ " types. WHEN may be `never', `always', or " +#~ "`auto'\n" +#~ " -d, --directory list directory entries instead of contents\n" +#~ " -D, --dired generate output designed for Emacs' dired " +#~ "mode\n" +#~ " -f do not sort, enable -aU, disable -lst\n" +#~ " -F, --classify append indicator (one of */=@|) to entries\n" +#~ " --format=WORD across -x, commas -m, horizontal -x, long -" +#~ "l,\n" +#~ " single-column -1, verbose -l, vertical -C\n" +#~ " --full-time like -l --time-style=full-iso\n" +#~ msgstr "" +#~ "ÐáñÜèåóç ðëçñïöïñéþí ãéá ôá ÁÑ×ÅÉÁ (åî ïñéóìïý ï ôñÝ÷ïí êáôÜëïãïò).\n" +#~ "Ôáîéíüìçóç êáôá÷ùñßóåùí áëöáâçôéêÜ, áí êáíÝíá áðü ôá -cftuSUX Þ --sort " +#~ "äåí\n" +#~ "Ý÷åé ïñéóôåß.\n" +#~ "\n" +#~ " -a, --all íá ìçí áðïêñýðôïíôáé ïé êáôá÷ùñßóåéò ðïõ\n" +#~ " áñ÷ßæïõí ìå .\n" +#~ " -A, --almost-all íá ìçí åìöáíßæïíôáé ôá . êáé .. ðïõ\n" +#~ " åîõðáêïýïíôáé\n" +#~ " -b, --escape åìöÜíéóç ïêôáäéêþí áñéèìþí äéáöõãÞò ãéá ìç\n" +#~ " åìöáíéæüìåíïõò ÷áñáêôÞñåò\n" +#~ " --block-size=ÌÅÃÅÈÏÓ ÷ñÞóç ÌÅÃÅÈÏÓ-byte ìðëïê\n" +#~ " -B, --ignore-backups íá ìçí åìöáíßæïíôáé êáôá÷ùñßóåéò ðïõ " +#~ "êáôáëÞãïõí\n" +#~ " óå ~\n" +#~ " -c ìå -lt: ôáîéíüìçóç áíÜëïãá, êáé åìöÜíéóç,\n" +#~ " ôçò þñáò ôåëåõôáßáò ôñïðïðïßçóçò ôùí " +#~ "ðëçñï-\n" +#~ " öïñéþí êáôÜóôáóçò ôïõ áñ÷åßïõ (ctime),\n" +#~ " ìå -l: åìöÜíéóç ôïõ ctime êáé ôáîéíüìçóç\n" +#~ " âÜóç ïíüìáôïò,\n" +#~ " äéáöïñåôéêÜ, ôáîéíüìçóç âÜóç ctime\n" +#~ " -C åìöÜíéóç êáôá÷ùñßóåùí óå óôÞëåò\n" +#~ " --color[=ÐÏÔÅ] Ýëåã÷ïò ðüôå ôï ÷ñþìá ÷ñçóéìïðïéåßôáé ãéá " +#~ "íá\n" +#~ " äéá÷ùñßóåé ôá åßäç áñ÷åßùí\n" +#~ " Ôï ÐÏÔÅ ìðïñåß íá åßíáé `never', `always' " +#~ "Þ\n" +#~ " `auto'\n" +#~ " -d, --directory åìöÜíéóç êáôá÷ùñßóåùí êáôáëüãïõ áíôß\n" +#~ " ðåñéå÷ïìÝíùí\n" +#~ " -D, --dired ôï áðïôÝëåóìá íá åßíáé ôçò ìïñöÞò ôçò\n" +#~ " êáôÜóôáóçò dired ôïõ Emacs\n" +#~ " -f íá ìç ôáîéíïìïýíôáé, åíåñãïðïßçóç ìå -aU,\n" +#~ " áðåíåñãïðïßçóç ìå -lst\n" +#~ " -F, --classify ðñïóèÞêç ÷áñáêôÞñá êáôçãïñïðïßçóçò óôéò\n" +#~ " êáôá÷þñéóåéò\n" +#~ " (Ýíá áðü ôá */=@|)\n" +#~ " --format=ËÅÊÔÉÊÏ êáôÜ ìÞêïò across -x, êüììáôá commas -m,\n" +#~ " ïñéæüíôéá horizontal -x, ìáêñïóêåëÞ long -" +#~ "l,\n" +#~ " ìßá óôÞëç single-column -1, ðåñéöñáóôéêÜ\n" +#~ " verbose -l, êÜèåôá vertical -C\n" +#~ " --full-time åìöÜíéóç ðëÞñçò þñáò êáé ðëÞñçò çìåñïìçíßáò\n" + +#, fuzzy +#~ msgid "" +#~ " -g like -l, but do not list owner\n" +#~ " -G, --no-group inhibit display of group information\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " --si likewise, but use powers of 1000 not 1024\n" +#~ " -H, --dereference-command-line follow symbolic links on the command " +#~ "line\n" +#~ " --indicator-style=WORD append indicator with style WORD to entry " +#~ "names:\n" +#~ " none (default), classify (-F), file-type (-" +#~ "p)\n" +#~ " -i, --inode print index number of each file\n" +#~ " -I, --ignore=PATTERN do not list implied entries matching shell " +#~ "PATTERN\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l use a long listing format\n" +#~ " -L, --dereference when showing file information for a " +#~ "symbolic\n" +#~ " link, show information for the file the " +#~ "link\n" +#~ " references rather than for the link " +#~ "itself\n" +#~ " -m fill width with a comma separated list of " +#~ "entries\n" +#~ msgstr "" +#~ " -g (áãíïåßôáé)\n" +#~ " -G, --no-group íá ìçí åìöáíßæïíôáé ðëçñïöïñßåò ïìÜäáò\n" +#~ " -h, --human-readable åìöÜíéóç ìåãåèþí óå áíèñùðßíùò áíáãíþóéìç\n" +#~ " ìïñöÞ (ð.÷. 1Ê 234M 2G)\n" +#~ " -H, --si üðùò ðáñáðÜíù, áëëÜ ìå äõíÜìåéò ôïõ 1000 " +#~ "áíôß\n" +#~ " ôïõ 1024\n" +#~ " --indicator-style=ËÅÊÔÉÊÏ ðñïóèÞêç äåßêôç ËÅÊÔÉÊÏ óôéò " +#~ "êáôá÷ùñßóåéò\n" +#~ " ïíïìÜôùí:\n" +#~ " none (åî ïñéóìïý), classify (-F), file-" +#~ "type\n" +#~ " (-p)\n" +#~ " -i, --inode åìöÜíéóç äåßêôç êÜèå áñ÷åßïõ\n" +#~ " -I, --ignore=PATTERN íá ìçí åìöáíßæïíôáé áíáöåñüìåíåò " +#~ "êáôá÷ùñßóåéò \n" +#~ " ðïõ ôáéñßáæïõí óôï PATTERN ôïõ öëïéïý\n" +#~ " -k, --kilobytes üðùò --block-size=1024\n" +#~ " -l ÷ñÞóç ìáêñïóêåëïýò åßäïõò åìöÜíéóçò\n" +#~ " -L, --dereference åìöÜíéóç êáôá÷ùñßóåùí ðïõ äåß÷íïõí ïé\n" +#~ " óõìâïëéêïß óýíäåóìïé\n" +#~ " -m óõìðëÞñùóç ôïõ ðëÜôïõò ìå ëßóôá áðü\n" +#~ " êáôá÷ùñßóåéò äéá÷ùñéæüìåíùí ìå êüììá\n" +#~ " -n, --numeric-uid-gid åìöÜíéóç áñéèìçôéêþí UID êáé GID áíôß ãéá\n" +#~ " ïíüìáôá\n" +#~ " -N, --literal åìöÜíéóç áêáôÝñãáóôùí êáôá÷ùñßóåùí (ð.÷. íá " +#~ "ìçí\n" +#~ " ôõã÷Üíïõí\n" +#~ " åéäéêÞò åðåîåñãáóßáò ïé ÷áñáêôÞñåò " +#~ "åëÝã÷ïõ)\n" +#~ " -o ÷ñÞóç ìáêñïóêåëïýò åìöÜíéóçò ÷ùñßò " +#~ "ðëçñïöïñßåò\n" +#~ " ïìÜäáò\n" +#~ " -p, --file-type ðñïóèÞêç åíäåßîçò (Ýíá áðü /=@|) óôéò\n" +#~ " êáôá÷ùñßóåéò\n" +#~ " -q, --hide-control-chars åìöÜíéóç ôïõ ? áíôß ôùí ìç-åêôõðþóéìùí\n" +#~ " ÷áñáêôÞñùí\n" +#~ " --show-control-chars åìöÜíéóç ìç åêôõðþóéìùí ÷áñáêôÞñùí üðùò " +#~ "åßíáé\n" +#~ " (åî ïñéóìïý åêôüò áí ôï ðñüãñáììá åßíáé " +#~ "ôï\n" +#~ " ls êáé ç Ýîïäïò åßíáé ôï ôåñìáôéêü)\n" +#~ " -Q, --quote-name åìöÜíéóç êáôá÷ùñßóåùí ìÝóá óå äéðëÜ " +#~ "åéóáãùãéêÜ\n" +#~ " --quoting-style=ËÅÊÔÉÊÏ ÷ñÞóç ìïñöÞò ËÅÊÔÉÊÏ óôçí åìöÜíéóç " +#~ "ïíïìÜôùí\n" +#~ " êáôá÷ùñßóåùí:\n" +#~ " literal, shell, shell-always, c, escape\n" +#~ " -r, --reverse áíôßóôñïöç óåéñÜ óôçí ôáîéíüìçóç\n" +#~ " -R, --recursive åìöÜíéóç õðïêáôáëüãùí áíáäñïìéêÜ\n" +#~ " -s, --size åìöÜíéóç ìåãÝèïõò êÜèå áñ÷åßïõ, óå ìðëïê\n" + +#, fuzzy +#~ msgid "" +#~ " -S sort by file size\n" +#~ " --sort=WORD extension -X, none -U, size -S, time -t,\n" +#~ " version -v\n" +#~ " status -c, time -t, atime -u, access -u, use " +#~ "-u\n" +#~ " --time=WORD show time as WORD instead of modification " +#~ "time:\n" +#~ " atime, access, use, ctime or status; use\n" +#~ " specified time as sort key if --sort=time\n" +#~ " --time-style=WORD show times using style WORD:\n" +#~ " full-iso, iso, locale, posix-iso\n" +#~ " -t sort by modification time\n" +#~ " -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +#~ " -u with -lt: sort by, and show, access time\n" +#~ " with -l: show access time and sort by " +#~ "name\n" +#~ " otherwise: sort by access time\n" +#~ " -U do not sort; list entries in directory " +#~ "order\n" +#~ " -v sort by version\n" +#~ " -w, --width=COLS assume screen width instead of current " +#~ "value\n" +#~ " -x list entries by lines instead of by columns\n" +#~ " -X sort alphabetically by entry extension\n" +#~ " -1 list one file per line\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "By default, color is not used to distinguish types of files. That is\n" +#~ "equivalent to using --color=none. Using the --color option without the\n" +#~ "optional WHEN argument is equivalent to using --color=always. With\n" +#~ "--color=auto, color codes are output only if standard output is " +#~ "connected\n" +#~ "to a terminal (tty).\n" +#~ msgstr "" +#~ " -S ôáîéíüìçóç âÜóç ôïõ ìåãÝèïõò áñ÷åßïõ\n" +#~ " --sort=ËÅÊÔÉÊÏ êáôÜëçîç -X, ôßðïôá -U, ìÝãåèïò -S, þñá -t\n" +#~ " Ýêäïóç -v,\n" +#~ " êáôÜóôáóç -c, þñá -t, þñá ðñüóâáóçò -u\n" +#~ " --time=ËÅÊÔÉÊÏ åìöÜíéóç þñáò óáí ËÅÊÔÉÊÏ áíôß ôçò þñáò\n" +#~ " ôñïðïðïßçóçò:\n" +#~ " atime, access, use, ctime Þ status· ÷ñÞóç\n" +#~ " êëåéäéïý ôáîéíüìçóçò ôçí äïóìÝíç þñá áí\n" +#~ " --sort=time\n" +#~ " -t ôáîéíüìçóç âÜóç þñáò ôñïðïðïßçóçò\n" +#~ " -T, --tabsize=ÓÔÇËÅÓ èåþñçóå ôïõò ïñéæüíôéïõò óôçëïèÝôåò " +#~ "ìåãÝèïõò\n" +#~ " ÓÔÇËÅÓ áíôß ãéá 8\n" +#~ " -u ôáîéíüìçóç âÜóç ÷ñüíïõ ôåëåõôáßáò " +#~ "ðñüóâáóçò·\n" +#~ " ìå -l: åìöÜíéóç ôïõ atime\n" +#~ " -U ÷ùñßò ôáîéíüìçóç· åìöÜíéóç êáôá÷ùñÞóåùí óå\n" +#~ " öõóéêÞ óåéñÜ\n" +#~ " -v ôáîéíüìçóç âÜóç Ýêäïóçò\n" +#~ " -w, --width=ÓÔÇËÅÓ èåþñçóå ðëÜôïò ïèüíçò ÓÔÇËÅÓ áíôß ôñå÷ïýóçò\n" +#~ " ôéìÞò\n" +#~ " -x åìöÜíéóçò êáôá÷ùñßóåùí áíÜ ãñáììÝò áíôß ãéá " +#~ "óôÞëåò\n" +#~ " -X áëöáâçôéêÞ ôáîéíüìçóç âÜóç êáôÜëçîçò\n" +#~ " -1 åìöÜíéóç åíüò áñ÷åßïõ áíÜ ãñáììÞ\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "Åî ïñéóìïý, ôï ÷ñþìá äå ÷ñçóéìïðïéåßôáé óôï äéá÷ùñéóìü ôùí áñ÷åßùí " +#~ "áíÜëïãá ìå ôï åßäïò. ÄçëÜäç, åßíáé óáí íá åßíáé --color=none. Ìå ôçí " +#~ "åðéëïãÞ\n" +#~ "--color ÷ùñßò ôï ðñïáéñåôéêü üñéóìá WHEN åßíáé óõíþíõìï ìå\n" +#~ "--color=always. Ìå --color=auto, ïé ÷ñùìáôéêÝò ðëçñïöïñßåò åìöáíßæïíôáé\n" +#~ "üôáí ç êáíïíéêÞ Ýîïäïò óõíäÝåôáé ìå ôåñìáôéêü (tty).\n" + +# src/shred.c:463 +#, fuzzy +#~ msgid "" +#~ "Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +#~ "for even very expensive hardware probing to recover the data.\n" +#~ "\n" +#~ " -f, --force change permissions to allow writing if necessary\n" +#~ " -n, --iterations=N Overwrite N times instead of the default (%d)\n" +#~ " -s, --size=N shred this many bytes (suffixes like k, M, G accepted)\n" +#~ " -u, --remove truncate and remove file after overwriting\n" +#~ " -v, --verbose show progress\n" +#~ " -x, --exact do not round file sizes up to the next full block\n" +#~ " -z, --zero add a final overwrite with zeros to hide shredding\n" +#~ " - shred standard output\n" +#~ " --help display this help and exit\n" +#~ " --version print version information and exit\n" +#~ "\n" +#~ "Delete FILE(s) if --remove (-u) is specified. The default is not to " +#~ "remove\n" +#~ "the files because it is common to operate on device files like /dev/hda,\n" +#~ "and those files usually should not be removed. When operating on " +#~ "regular\n" +#~ "files, most people use the --remove option.\n" +#~ "\n" +#~ "CAUTION: Note that shred relies on a very important assumption:\n" +#~ "that the filesystem overwrites data in place. This is the traditional\n" +#~ "way to do things, but many modern filesystem designs do not satisfy this\n" +#~ "assumption. The following are examples of filesystems on which shred is\n" +#~ "not effective:\n" +#~ "\n" +#~ "* log-structured or journaled filesystems, such as those supplied with\n" +#~ " AIX and Solaris (and JFS, ReiserFS, XFS, etc.)\n" +#~ "\n" +#~ "* filesystems that write redundant data and carry on even if some writes\n" +#~ " fail, such as RAID-based filesystems\n" +#~ "\n" +#~ "* filesystems that make snapshots, such as Network Appliance's NFS " +#~ "server\n" +#~ "\n" +#~ "* filesystems that cache in temporary locations, such as NFS\n" +#~ " version 3 clients\n" +#~ "\n" +#~ "* compressed filesystems\n" +#~ "\n" +#~ "In addition, file system backups and remote mirrors may contain copies\n" +#~ "of the file that cannot be removed, and that will allow a shredded file\n" +#~ "to be recovered later.\n" +#~ msgstr "" +#~ "ÄéáãñáöÞ áñ÷åßïõ ìå áóöÜëåéá, ðñþôá ãñÜöïíôáò ðÜíù ôïõ ãéá íá ÷áèåß\n" +#~ "ôï ðåñéå÷üìåíü ôïõ.\n" +#~ " -f, --force áëëáãÞ äéêáéùìÜôùí ãéá íá åðéôñáðåß ç åããñáöÞ, áí " +#~ "áðáéôåßôáé\n" +#~ " -n, --iterations=N ÅããñáöÞ áðü åðÜíù Í öïñÝò áíôß ôïõ êáíïíéêïý (%d)\n" +#~ " -s, --size=N äéÜëõóç Í bytes (êáôáëÞîåéò üðùò k, M, G åßíáé äåêôÝò)\n" +#~ " -u, --remove ìçäÝíéóå êáé äéÝãñáøå ôï áñ÷åßï ìåôÜ ôï ãñÜøéìï áðü " +#~ "ðÜíù\n" +#~ " -v, --verbose åìöÜíéóç ðñïüäïõ\n" +#~ " -x, --exact íá ìç óôïããõëïðïéïýíôáé ôá ìåãÝèç áñ÷åßùí ìÝ÷ñé ôï " +#~ "åðüìåíï ðëÞñåò ìðëüê\n" +#~ " -z, --zero ðñïóèÞêç åíüò ôåëéêïý ãñáøßìáôïò áðü ðÜíù ìå ìçäåíéêÜ " +#~ "ãéá íá áðïêñõöôåß ç äéÜëõóç\n" +#~ " - äéÜëõóç ôçò êáíïíéêÞò åîüäïõ\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "FIXME maybe add more discussion here?" + +# +#, fuzzy +#~ msgid "" +#~ "Force changed blocks to disk, update the super block.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "ÅìöÜíéóç Üèñïéóìá åëÝã÷ïõ CRC êáé áñéèìü bytes ãéá êÜèå ÁÑ×ÅÉÏ.\n" +#~ "\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +#~ msgid "" +#~ "Update the access and modification times of each FILE to the current " +#~ "time.\n" +#~ "\n" +#~ " -a change only the access time\n" +#~ " -c, --no-create do not create any files\n" +#~ " -d, --date=STRING parse STRING and use it instead of current time\n" +#~ " -f (ignored)\n" +#~ " -m change only the modification time\n" +#~ " -r, --reference=FILE use this file's times instead of current time\n" +#~ " -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current " +#~ "time\n" +#~ " --time=WORD set time given by WORD: access atime use (same " +#~ "as -a)\n" +#~ " modify mtime (same as -m)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Note that the three time-date formats recognized for the -d and -t " +#~ "options\n" +#~ "and for the obsolescent argument are all different.\n" +#~ msgstr "" +#~ "ÅíçìÝñùóç ôùí çìåñïìçíéþí êáé ùñþí ðñüóâáóçò êáé ôñïðïðïßçóçò ãéá êÜèå " +#~ "ÁÑ×ÅÉÏ óôç ôñÝ÷ïõóá çìåñïìçíßá êáé þñá.\n" +#~ "\n" +#~ " -a áëëáãÞ ìüíï ôçò çìåñïìçíßáò ðñüóâáóçò\n" +#~ " -c ÷ùñßò äçìéïõñãßá áñ÷åßùí\n" +#~ " -d, --date=ÁËÖÁÑÉÈÌÇÔÉÊÏ åðåîåñãáóßá ôïõ ÁËÖÁÑÉÈÌÇÔÉÊÏÕ êáé ÷ñÞóç\n" +#~ " ôïõ áíôß ôéò ôñÝ÷ïõóáò çìåñïìçíßáò\n" +#~ " -f (áãíïåßôáé)\n" +#~ " -m áëëáãÞ ìüíï ôçò çìåñïìçíßáò ôñïðïðïßçóçò\n" +#~ " -r, --reference=ÁÑ×ÅÉÏ ÷ñÞóç ôùí çìåñïìçíéþí ôïõ áñ÷åßïõ ôïýôïõ áíôß\n" +#~ " ôçò ôñÝ÷ïõóáò çìåñïìçíßáò\n" +#~ " -t ÇÌÅÑÏÌÇÍÉÁ ÷ñÞóç MMDDhhmm[[CC]YY][.ss] áíôß ôñÝ÷ïõóáò\n" +#~ " çìåñïìçíßáò/þñáò\n" +#~ " --time=ËÅÊÔÉÊÏ ïñéóìüò çìåñïìçíßáò äïèåßóáò áðü ôï ËÅÊÔÉÊÏ:\n" +#~ " access atime use (üðùò ôï -a)\n" +#~ " modify mtime (ßäéï ìå -m)\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "ËÜâåôå õð üøéí üôé ïé ôñåéò ìïñöÝò þñá/çìåñïìçíßáò ðïõ\n" +#~ "áíáãíùñßæïíôáé ãéá ôéò åðéëïãÝò -d êáé -t êáèþò êáé ôçí åðéëïãÞ ðïõ\n" +#~ "áãíïåßôáé, åßíáé üëåò äéáöïñåôéêÝò.\n" + +# +#, fuzzy +#~ msgid "Copyright (C) 2001 Free Software Foundation, Inc." +#~ msgstr "ÐíåõìáôéêÜ Äéêáéþìáôá (C) 1999 Free Software Foundation, Inc." + +#~ msgid "" +#~ "when creating character special files, major and minor device\n" +#~ "numbers must be specified" +#~ msgstr "" +#~ "üôáí äçìéïõñãïýíôáé åéäéêÜ áñ÷åßá ÷áñáêôÞñùí, ïé major êáé minor\n" +#~ "áñéèìïß óõóêåõÞò ðñÝðåé íá ïñßæïíôáé" + +#~ msgid "group of %s changed to %s\n" +#~ msgstr "ç ïìÜäá ôïõ %s Üëëáîå óå %s\n" + +#, fuzzy +#~ msgid "ownership of %s changed to " +#~ msgstr "ï éäéïêôÞôçò ôïõ %s Üëëáîå óå " + +#, fuzzy +#~ msgid "you are not a member of group %s" +#~ msgstr "äåí åßóôå ìÝëïò ôçò ïìÜäáò `%s'" + +# +#, fuzzy +#~ msgid "cannot make fifo %s" +#~ msgstr "áäýíáôç ç áëëáãÞ äéêáéùìÜôùí óôï %s" + +# +#, fuzzy +#~ msgid "cannot change permissions for %s" +#~ msgstr "áäõíáìßá áëëáãÞò éäéïêôçóßáò óôï %s" + +# +#, fuzzy +#~ msgid "cannot remove old link to %s" +#~ msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#~ msgid "virtual memory exhausted" +#~ msgstr "ç éäåáôÞ ìíÞìç åîáíôëÞèçêå" + +# +#~ msgid "Memory exhausted" +#~ msgstr "Ç ìíÞìç åîáíôëÞèçêå" + +# +#, fuzzy +#~ msgid "cannot create directory `%s'" +#~ msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#, fuzzy +#~ msgid "cannot remove `%s'" +#~ msgstr "áäýíáôç ç áëëáãÞ äéêáéùìÜôùí óôï %s" + +# +#, fuzzy +#~ msgid "specified target, `%s' is not a directory" +#~ msgstr "ôï `%s' õðÜñ÷åé Þäç Üëëá äåí åßíáé êáôÜëïãïò" + +#~ msgid "`%s' and `%s' are the same file" +#~ msgstr "ôá `%s' êáé `%s' åßíáé ôï ßäéï áñ÷åßï" + +# +#, fuzzy +#~ msgid "cannot backup `%s'" +#~ msgstr "áäýíáôç ç áëëáãÞ äéêáéùìÜôùí óôï %s" + +# +#, fuzzy +#~ msgid "cannot un-backup `%s'" +#~ msgstr "áäýíáôç ç áëëáãÞ äéêáéùìÜôùí óôï %s" + +# +#~ msgid "cannot chmod %s" +#~ msgstr "áäýíáôç ç áëëáãÞ äéêáéùìÜôùí óôï %s" + +# +#, fuzzy +#~ msgid "`%s' exists but is not a directory" +#~ msgstr "ôï `%s' õðÜñ÷åé Þäç Üëëá äåí åßíáé êáôÜëïãïò" + +# src/cp.c:758 src/ln.c:454 src/mv.c:432 +#~ msgid "--version-control" +#~ msgstr "--version-control" + +#~ msgid "create %s %s to %s" +#~ msgstr "äçìéïõñãßá %s %s óôï %s" + +#~ msgid "hard link" +#~ msgstr "óèåíáñüò óýíäåóìïò" + +#~ msgid "link" +#~ msgstr "óýíäåóìïò" + +# +#, fuzzy +#~ msgid "current directory" +#~ msgstr "êáôÜëïãïò" + +# +#, fuzzy +#~ msgid "starting directory" +#~ msgstr "êáôÜëïãïò" + +# src/copy.c:549 +#~ msgid "%s -> %s (backup)\n" +#~ msgstr "%s -> %s (áíôßãñáöï áóöáëåßáò)\n" + +# +#, fuzzy +#~ msgid "" +#~ "Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +#~ " or: %s [OPTION]... TARGET... DIRECTORY\n" +#~ msgstr "" +#~ "×ñÞóç: %s [ÅÐÉËÏÃÇ]... [ÅÉÓÏÄÏÓ]... (÷ùñßò -G)\n" +#~ " Þ: %s -G [ÅÐÉËÏÃÇ]... [ÅÉÓÏÄÏÓ [ÅÎÏÄÏÓ]]\n" + +# +#, fuzzy +#~ msgid "Usage: %s [OPTION]... EXISTING_DIR NEW_DIR\n" +#~ msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ]... ÓÕÍÏËÏ1 [ÓÕÍÏËÏ2]\n" + +#, fuzzy +#~ msgid "cannot rename `.' or `..'" +#~ msgstr "Äåí ìðïñåß íá êáèïñéóôåß ôï üíïìá ôïõ óõóôÞìáôïò" + +#~ msgid "sparse type" +#~ msgstr "áñáéü åßäïò" + +# +#, fuzzy +#~ msgid "%s is closed" +#~ msgstr "ç êáíïíéêÞ åßóïäïò åßíáé êëåéóìÝíç" + +#~ msgid "time type" +#~ msgstr "åßäïò þñáò" + +#~ msgid "format type" +#~ msgstr "åßäïò ìïñöÞò" + +#~ msgid "colorization criterion" +#~ msgstr "êñéôÞñéï ÷ñùìáôéóìïý" + +#~ msgid "indicator style" +#~ msgstr "ìïñöÞ êáôçãïñïðïéçôÞ" + +#~ msgid "quoting style" +#~ msgstr "ìïñöÞ ðáñÜèåóçò" + +#~ msgid "time selector" +#~ msgstr "åðéëïãÝáò ÷ñüíïõ" + +#~ msgid "" +#~ "the option for counting 1MB blocks may not be used\n" +#~ "with the portable output format" +#~ msgstr "" +#~ "ç åðéëïãÞ ìÝôñçóçò ôùí 1M ìðëïê äå ìðïñåß íá ÷ñçóéìïðïéçèåß\n" +#~ "ìå ôç óõìâáôÞ ìïñöÞ åîüäïõ" + +#, fuzzy +#~ msgid "removing non-directory %s\n" +#~ msgstr "ÐÑÏÓÏ×Ç: äåí åßíáé äõíáôüí íá áëëá÷ôåß ï êáôÜëïãïò óå %s" + +# +#, fuzzy +#~ msgid "remove directory `%s'%s? " +#~ msgstr "áäýíáôç ç äçìéïõñãßá êáôáëüãïõ `%s'" + +# +#, fuzzy +#~ msgid "Usage: %s [OPTION]... GROUP FILE...\n" +#~ msgstr "×ñÞóç: %s [ÅÐÉËÏÃÅÓ]... [ÁÑ×ÅÉÏ]...\n" + +#~ msgid "cannot move `%s' across filesystems: Not a regular file" +#~ msgstr "" +#~ "áäõíáìßá ìåôáêßíçóçò ôïõ `%s' ìåôáîý óõóôçìÜôùí áñ÷åßùí: Äåí åßíáé " +#~ "êáíïíéêü áñ÷åßï" + +#~ msgid "%s: replace `%s', overriding mode %04o? " +#~ msgstr "%s: áíôéêáôÜóôáóç ôïõ `%s', ðáñÜêáìøç äéêáéùìÜôùí %04o; " + +#~ msgid "%s: remove %s`%s', overriding mode %04o? " +#~ msgstr "%s: äéáãñáöÞ ôïõ %s`%s', ðáñáêÜðôùíôáò ôá äéêáéþìáôá %04o; " + +#~ msgid "%s: descend directory `%s', overriding mode %04o? " +#~ msgstr "" +#~ "%s: äéáãñáöÞ êáé ôïõ êáôáëüãïõ `%s', ðáñáêÜìðôùíôáò ôá äéêáéþìáôá %04o; " + +#~ msgid "%s: remove directory `%s' (might be nonempty)? " +#~ msgstr "%s: äéáãñáöÞ êáôáëüãïõ `%s' (ìðïñåß íá ìçí åßíáé Üäåéï); " + +#~ msgid "days" +#~ msgstr "ìÝñåò" + +#~ msgid "users" +#~ msgstr "÷ñÞóôåò" + +#, fuzzy +#~ msgid "" +#~ "Display the current time in the given FORMAT, or set the system date.\n" +#~ "\n" +#~ " -d, --date=STRING display time described by STRING, not `now'\n" +#~ " -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +#~ msgstr "" +#~ "Åêôõðþíç ôçí çìåñïìçíßá óôç äïóìÝíç ìïñöÞ, Þ èÝôåé ôçí þñá ôïõ " +#~ "óõóôÞìáôïò.\n" +#~ "\n" +#~ " -d, --date=ÌÏÑÖÇ Åêôõðþíåé ôçí þñá ðïõ êáèïñßæåôáé áðï ôçí " +#~ "ÌÏÑÖÇ,\n" +#~ " åêôüò ôçò äåóìåõìÝíçò ëÝîçò `now'\n" +#~ " -f, --file=ÁÑ×ÅÉÏ Ïìïéá ìå ôçí --date ãéá êÜèå ãñáììç ôïõ " +#~ "áñ÷åßïõ\n" +#~ " ðïõ ðåñéÝ÷åé ôéò çìåñïìçíßåò\n" +#~ " -r, --reference=ÁÑ×ÅÉÏ Åêôõðþíåé ôçí ôåëåõôáßá çìåñïìçíßá " +#~ "ôñïðïðïßçóçò\n" +#~ " ôïõ áñ÷åßïõ\n" +#~ " -R, --rfc-822 Åêôõðþíåé ôçí çìåñïìçíßá óýìöùíá ìå ôï RFC-" +#~ "822\n" +#~ " -s, --set=ÌÏÑÖÇ ÈÝôåé ôçí çìåñïìçíßá ðïõ ðåñéãñÜöåôáé áðï ôçí\n" +#~ " ÌÏÑÖÇ\n" +#~ " -u, --utc, --universal Åêôõðþíåé Þ èÝôåé ôçí ðáãêüóìéá þñá(UTC)\n" +#~ " --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +#~ " --version Åêôõðþíåé ðëçñïöïñßåò ãéá ôçí Ýêäïóç êáé " +#~ "ôåñìáôßæåé\n" + +# +#, fuzzy +#~ msgid "" +#~ "Run COMMAND with root directory set to NEWROOT.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +#~ msgstr "" +#~ "ÅìöÜíéóç Üèñïéóìá åëÝã÷ïõ CRC êáé áñéèìü bytes ãéá êÜèå ÁÑ×ÅÉÏ.\n" +#~ "\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "FORMAT controls the output. The only valid option for the second form\n" +#~ "specifies Coordinated Universal Time. Interpreted sequences are:\n" +#~ "\n" +#~ " %%%% a literal %%\n" +#~ " %%a locale's abbreviated weekday name (Sun..Sat)\n" +#~ " %%A locale's full weekday name, variable length (Sunday..Saturday)\n" +#~ " %%b locale's abbreviated month name (Jan..Dec)\n" +#~ " %%B locale's full month name, variable length (January..December)\n" +#~ " %%c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +#~ " %%C century (year divided by 100 and truncated to an integer) [00-" +#~ "99]\n" +#~ " %%d day of month (01..31)\n" +#~ " %%D date (mm/dd/yy)\n" +#~ " %%e day of month, blank padded ( 1..31)\n" +#~ " %%h same as %%b\n" +#~ " %%H hour (00..23)\n" +#~ " %%I hour (01..12)\n" +#~ " %%j day of year (001..366)\n" +#~ " %%k hour ( 0..23)\n" +#~ " %%l hour ( 1..12)\n" +#~ " %%m month (01..12)\n" +#~ " %%M minute (00..59)\n" +#~ " %%n a newline\n" +#~ " %%p locale's AM or PM\n" +#~ " %%r time, 12-hour (hh:mm:ss [AP]M)\n" +#~ " %%s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +#~ " %%S second (00..60)\n" +#~ " %%t a horizontal tab\n" +#~ " %%T time, 24-hour (hh:mm:ss)\n" +#~ " %%u day of week (1..7); 1 represents Monday\n" +#~ " %%U week number of year with Sunday as first day of week (00..53)\n" +#~ " %%V week number of year with Monday as first day of week (01..53)\n" +#~ " %%w day of week (0..6); 0 represents Sunday\n" +#~ " %%W week number of year with Monday as first day of week (00..53)\n" +#~ " %%x locale's date representation (mm/dd/yy)\n" +#~ " %%X locale's time representation (%%H:%%M:%%S)\n" +#~ " %%y last two digits of year (00..99)\n" +#~ " %%Y year (1970...)\n" +#~ " %%z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +#~ " %%Z time zone (e.g., EDT), or nothing if no time zone is " +#~ "determinable\n" +#~ "\n" +#~ "By default, date pads numeric fields with zeroes. GNU date recognizes\n" +#~ "the following modifiers between `%%' and a numeric directive.\n" +#~ "\n" +#~ " `-' (hyphen) do not pad the field\n" +#~ " `_' (underscore) pad the field with spaces\n" +#~ msgstr "" +#~ "\n" +#~ "Ç ÌÏÑÖÇ åëÝã÷åé ôçí åêôýðùóç. Ç ìüíç éó÷ýïõóá åðéëïãÞ ãéá ôçí äåõôåñç " +#~ "öüñìá\n" +#~ "êáèïñßæåé ôçí ðáãêüóìéá þñá(UTC). Ïé óåéñÝò ðïõ åñìçíåýïíôáé åéíáé:\n" +#~ "\n" +#~ " %%%% Ï ÷áñáêôÞñáò %%\n" +#~ " %%a Ôá ôïðéêÜ ïíüìáôá ôùí çìåñþí ôçò åâäïìÜäáò (Êõñ..Óáâ)\n" +#~ " %%A Ôá ïëüêëçñá ôïðéêÜ ïíüìáôá ôùí çìåñþí ôçò åâäïìÜäáò\n" +#~ " ìå ìåôáâëçôü ìÞêïò (ÊõñéáêÞ..Óáââáôï)\n" +#~ " %%b Ôá ôïðéêÜ ïíüìáôá ôùí ìçíþí (Éáí..Äåê)\n" +#~ " %%B Ôá ïëüêëçñá ôïðéêÜ ïíüìáôá ôùí ìçíþí ìåôáâëçôïý ìÞêïõò\n" +#~ " (ÉáíïõÜñéïò..ÄåêÝìâñéïò)\n" +#~ " %%c Ç ôïðéêÞ çìåñïìçíßá êáé þñá (Óáâ 04 Íïå 12:02:33 EÅT 1989)\n" +#~ " %%d Ç ìÝñá ôïõ ìÞíá (01..31)\n" +#~ " %%D Çìåñïìçíßá (ìì/çç/÷÷)\n" +#~ " %%d Ç ìÝñá ôïõ ìÞíá, ìå Ýíá êåíü ( 1..31)\n" +#~ " %%h Ïìïßùò ìå %%b\n" +#~ " %%H Ùñá (00..23)\n" +#~ " %%I Ùñá (01..12)\n" +#~ " %%j Ç ìÝñá ôïõ ÷ñüíïõ áñéèìçôéêÜ (001..366)\n" +#~ " %%k Ùñá ( 0..23)\n" +#~ " %%l Ùñá ( 1..12)\n" +#~ " %%m ÌÞíáò (01..12)\n" +#~ " %%M Ëåðôü (00..59)\n" +#~ " %%n Ìéá íÝá ãñáììÞ\n" +#~ " %%p Ôïðéêü ÌÌ Þ ÐÌ\n" +#~ " %%r Ùñá, 12-ùñá (ùù:ëë:ää [ÌÐ]M)\n" +#~ " %%s Äåõôåñüëåðôá áðü 00:00:00, Éáí 1, 1970 (ìéá åðÝêôáóç ôçò GNU)\n" +#~ " %%S Äåõôåñüëåðôá (00..61)\n" +#~ " %%t Ïñéæüíôéá êáôÜôáîç óå ðßíáêá (tab)\n" +#~ " %%T Ùñá, 24-ùñá (ùù:ëë:ää)\n" +#~ " %%U Ï áñéèìüò ôçò åâäïìÜäáò ôïõ ÷ñüíïõ ìå ôçí ÊõñéáêÞ íá åßíáé\n" +#~ " ç ðñþôç ìÝñá ôçò åâäïìÜäáò (00..53)\n" +#~ " %%V Ï áñéèìüò ôçò åâäïìÜäáò ôïõ ÷ñüíïõ ìå ôçí ÄåõôÝñá íá åßíáé\n" +#~ " ç ðñþôç ìÝñá ôçò åâäïìÜäáò (01..52)\n" +#~ " %%w ÌÝñá ôçò åâäïìÜäáò (0..6); Ôï 0 ðáñéóôÜ ôçí ÊõñéáêÞ\n" +#~ " %%W Ï áñéèìüò ôçò åâäïìÜäáò ôïõ ÷ñüíïõ ìå ôçí ÄåõôÝñá íá åßíáé ç " +#~ "ðñþôç\n" +#~ " ìÝñá ôçò åâäïìÜäáò (00..53)\n" +#~ " %%x ÔïðéêÞ áíáðáñÜóôáóç ôçò çìåñïìçíßáò (ÌÌ/ÇÇ/××)\n" +#~ " %%X ÔïðéêÞ áíáðáñÜóôáóç ôçò þñáò (%%Ù:%%Ë:%%Ä)\n" +#~ " %%y Ôá äýï ôåëåõôáßá øçößá ôçò ÷ñïíéÜò (00..99)\n" +#~ " %%Y ×ñüíïò (1970...)\n" +#~ " %%z Ç æþíç þñáò óå ìïñöÞ áñéèìçôéêÞ óýìöùíá ìå ôï RFC-822 (-0500)\n" +#~ " (ìéá ìç ôõðéêÞ åðÝêôáóç)\n" +#~ " %%Z Æþíç þñáò (ð.÷. EDT), Þ ôßðïôá åáí äåí Ý÷åé êáèïñéóôåß æþíç þñáò\n" +#~ "\n" +#~ "Åî'ïñéóìïý, ôá áñéèìçôéêÜ óôïé÷åßá ôçò çìåñïìçíßáò óõìðëçñþíïíôáé ìå " +#~ "ìçäåíéêÜ.\n" +#~ "Ôï GNU date áíáãíùñßæåé ôïõò ðáñáêÜôù ìåôáôñïðåßò ìåôáîý `%%' êáé\n" +#~ "áñéèìçôéêÞò êáôåõèõíôÞñéáò ãñáììÞò.\n" +#~ " `-' (ðáýëá) Íá ìçí óõìðëçñþèåß ôï ðåäßï\n" +#~ " `_' (õðïãñÜììéóç) Íá óõìðëçñùèåß ôï ðåäßï ìå êåíÜ\n" + +#, fuzzy +#~ msgid "" +#~ "Echo the STRING(s) to standard output.\n" +#~ "\n" +#~ " -n do not output the trailing newline\n" +#~ " -e enable interpretation of the backslash-escaped " +#~ "characters\n" +#~ " listed below\n" +#~ " -E disable interpretation of those sequences in STRINGs\n" +#~ " --help display this help and exit (should be alone)\n" +#~ " --version output version information and exit (should be alone)\n" +#~ "\n" +#~ "Without -E, the following sequences are recognized and interpolated:\n" +#~ "\n" +#~ " \\NNN the character whose ASCII code is NNN (octal)\n" +#~ " \\\\ backslash\n" +#~ " \\a alert (BEL)\n" +#~ " \\b backspace\n" +#~ " \\c suppress trailing newline\n" +#~ " \\f form feed\n" +#~ " \\n new line\n" +#~ " \\r carriage return\n" +#~ " \\t horizontal tab\n" +#~ " \\v vertical tab\n" +#~ msgstr "" +#~ "Åêôõðþíåé ôçí ÁËÕÓÉÄÁ óôçí ôõðéêÞ Ýîïäï.\n" +#~ "\n" +#~ " -n Íá ìçí åêôõðùèåß íåá ãñáììÞ óôï ôÝëïò\n" +#~ " -e (äåí ÷ñçóéìïðïéåßôáé)\n" +#~ " -E Áðåíåñãïðïéåß ôçí ðáñåìâïëÞ ìåñéêþí äéáäï÷þí óôçí \n" +#~ " ÁËÕÓÉÄÁ\n" +#~ " --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +#~ " --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" +#~ "\n" +#~ "×ùñßò ôçí -E, ïé äéáäï÷Ýò ðïõ áêïëïõèïýí áíáãíùñßæïíôáé êáé " +#~ "ðáñáìâÜëïíôáé:\n" +#~ "\n" +#~ " \\NNN Ï ÷áñáêôÞñáò ðïõ ï ASCII êùäéêüò ôïõ åßíáé NNN (óôï ïêôáäéêü)\n" +#~ " \\\\ Ï ÷áñáêôÞñáò `\\'\n" +#~ " \\a Ç÷ïò áöýðíéóçò\n" +#~ " \\b ÐéóùäéÜóôçìá\n" +#~ " \\c Ðáýåé ôçí íåá óåéñÜ óôï ôÝëïò\n" +#~ " \\f ÁëëáãÞ óåëßäáò\n" +#~ " \\n ÍÝá óåéñÜ\n" +#~ " \\r ÅðéóôñïöÞ ôïõ äñïìÝá\n" +#~ " \\t Ïñéæüíôéá êáôÜôáîç óå ðßíáêá (tab)\n" +#~ " \\v ÊÜèåôç êáôáîç óå ðßíáêá\n" + +#, fuzzy +#~ msgid "" +#~ "Print the value of EXPRESSION to standard output. A blank line below\n" +#~ "separates increasing precedence groups. EXPRESSION may be:\n" +#~ "\n" +#~ " ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +#~ "\n" +#~ " ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +#~ "\n" +#~ " ARG1 < ARG2 ARG1 is less than ARG2\n" +#~ " ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +#~ " ARG1 = ARG2 ARG1 is equal to ARG2\n" +#~ " ARG1 != ARG2 ARG1 is unequal to ARG2\n" +#~ " ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +#~ " ARG1 > ARG2 ARG1 is greater than ARG2\n" +#~ "\n" +#~ " ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +#~ " ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +#~ "\n" +#~ " ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +#~ " ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +#~ " ARG1 %% ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +#~ "\n" +#~ " STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +#~ "\n" +#~ " match STRING REGEXP same as STRING : REGEXP\n" +#~ " substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +#~ " index STRING CHARS index in STRING where any CHARS is found, or " +#~ "0\n" +#~ " length STRING length of STRING\n" +#~ " + TOKEN interpret TOKEN as a string, even if it is " +#~ "a\n" +#~ " keyword like `match' or an operator like " +#~ "`/'\n" +#~ "\n" +#~ " ( EXPRESSION ) value of EXPRESSION\n" +#~ msgstr "" +#~ "Åêôõðþíåé ôçí ôéìÞ ôçò ÅÊÖÑÁÓÇ óôçí ôõðéêÞ Ýîïäï. Ìéá êåíÞ ãñáììÞ,\n" +#~ " ðéï êÜôù, ÷ùñßæåé óå ïìÜäåò ìå áýîïõóá ðñïôåñáéüôçôá.\n" +#~ "Ç ÅÊÖÑÁÓÇ ìðïñåß íá åßíáé:\n" +#~ "\n" +#~ " ÐÁÑÁÌ1 | ÐÁÑÁÌ2 ÐÁÑÁÌ1 áí äåí åßíáé êåíÞ Þ 0, áëëéþò ÐÁÑÁÌ2\n" +#~ "\n" +#~ " ÐÁÑÁÌ1 & ÐÁÑÁÌ2 ÐÁÑÁÌ1 åáí êáìéÜ áðü ôéò ðáñáìÝôñïõò äåí åéíáé " +#~ "êåíÞ\n" +#~ " Þ ìçäÝí, áëëéþò 0\n" +#~ "\n" +#~ " ÐÁÑÁÌ1 < ÐÁÑÁÌ2 ÐÁÑÁÌ1 åßíáé ìéêñüôåñç ôçò ÐÁÑÁÌ2\n" +#~ " ÐÁÑÁÌ1 <= ÐÁÑÁÌ2 ÐÁÑÁÌ1 åßíáé ìéêñüôåñç Þ ßóç ôçò ÐÁÑÁÌ2\n" +#~ " ÐÁÑÁÌ1 = ÐÁÑÁÌ2 ÐÁÑÁÌ1 åßíáé ßóç ìå ÐÁÑÁÌ2\n" +#~ " ÐÁÑÁÌ1 != ÐÁÑÁÌ2 ÐÁÑÁÌ1 äåí åßíáé ßóç ìå ôçí ÐÁÑÁÌ2\n" +#~ " ÐÁÑÁÌ1 >= ÐÁÑÁÌ2 ÐÁÑÁÌ1 åßíáé ìåãáëýôåñç Þ ßóç ôçò ÐÁÑÁÌ2\n" +#~ " ÐÁÑÁÌ1 > ÐÁÑÁÌ2 ÐÁÑÁÌ1 åßíáé ìåãáëýôåñç ôçò ÐÁÑÁÌ2\n" +#~ "\n" +#~ " ÐÁÑÁÌ1 + ÐÁÑÁÌ2 Ôï áñéèìçôéêü Üèñïéóìá ôùí ÐÁÑÁÌ1 êáé ÐÁÑÁÌ2\n" +#~ " ÐÁÑÁÌ1 - ÐÁÑÁÌ2 Ç áñéèìçôéêÞ äéáöïñÜ ôçò ÐÁÑÁÌ1 ìå ôçí ÐÁÑÁÌ2\n" +#~ "\n" +#~ " ÐÁÑÁÌ1 * ÐÁÑÁÌ2 Ôï áñéèìçôéêü ãéíüìåíï ôùí ÐÁÑÁÌ1 êáé ÐÁÑÁÌ2\n" +#~ " ÐÁÑÁÌ1 / ÐÁÑÁÌ2 Ôï áñéèìçôéêü ðçëßêï ôçò ÐÁÑÁÌ1 äéá ôçò ÐÁÑÁÌ2\n" +#~ " ÐÁÑÁÌ1 %% ÐÁÑÁÌ2 Ôï õðüëïéðï ôçò ÐÁÑÁÌ1 äéá ôçí ÐÁÑÁÌ2\n" +#~ "\n" +#~ " ÁËÕÓÉÄÁ : ÊÁÍ_ÅÊÖ\n" +#~ " Ôáßñéáóìá ôçò ÊÁÍ_ÅÊÖ ìåóá óôçí ÁËÕÓÉÄÁ\n" +#~ "\n" +#~ " match ÁËÕÓÉÄÁ ÊÁÍ_ÅÊÖ\n" +#~ " Oìïéï ìå ÁËÕÓÉÄÁ : ÊÁÍ_ÅÊÖ\n" +#~ " substr ÁËÕÓÉÄÁ ÈÅÓÇ ÌÇÊÏÓ\n" +#~ " Aöáéñåß áðï ôçí ÁËÕÓÉÄÁ, áñ÷ßæïíôáò áðï ôçí ÈÅÓÇ\n" +#~ " (ìåôñþíôáò áðï ôï 1) \n" +#~ " index ÁËÕÓÉÄÁ ÔéìÞ ôçò èÝóçò ôïõ ×ÁÑÁÊÔÇÑÁ åÜí âñåèåß óôçí\n" +#~ " ÁËÕÓÉÄÁ, áëëéþò 0\n" +#~ " length ÁËÕÓÉÄÁ ÌÞêïò ôçò ÁËÕÓÉÄÁÓ\n" +#~ "\n" +#~ " ( EÊÖÑÁÓÇ ) ÔéìÞ ôçò ÅÊÖÑÁÓÇÓ\n" + +#, fuzzy +#~ msgid "" +#~ "Print ARGUMENT(s) according to FORMAT.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "FORMAT controls the output as in C printf. Interpreted sequences are:\n" +#~ "\n" +#~ " \\\" double quote\n" +#~ " \\0NNN character with octal value NNN (0 to 3 digits)\n" +#~ " \\\\ backslash\n" +#~ " \\a alert (BEL)\n" +#~ " \\b backspace\n" +#~ " \\c produce no further output\n" +#~ " \\f form feed\n" +#~ " \\n new line\n" +#~ " \\r carriage return\n" +#~ " \\t horizontal tab\n" +#~ " \\v vertical tab\n" +#~ " \\xNNN byte with hexadecimal value NNN (1 to 3 digits)\n" +#~ "\n" +#~ " \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +#~ " \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +#~ " %%%% a single %%\n" +#~ " %%b ARGUMENT as a string with `\\' escapes interpreted\n" +#~ "\n" +#~ "and all C format specifications ending with one of diouxXfeEgGcs, with\n" +#~ "ARGUMENTs converted to proper type first. Variable widths are handled.\n" +#~ msgstr "" +#~ "Åêôõðþíåé ôéò ÐÁÑÁÌÅÔÑÏÕÓ óýìöùíá ìç ôçí ÌÏÑÖÇ.\n" +#~ "\n" +#~ " --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +#~ " --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" +#~ "\n" +#~ "Ç ÌÏÑÖÇ åëÝã÷åé ôçí Ýîïäï üðùò ç óõíÜñôçóç printf() óôçí C.\n" +#~ "Ïé óåéñÝò ðïõ åñìçíåýïíôáé åéíáé:\n" +#~ "\n" +#~ " \\\" ÅéóáãùãéêÜ\n" +#~ " \\0NNN Ï ÷áñáêôÞñáò ìå ïêôáäéêÞ ôéìÞ NNN (0 ìÝ÷ñé 3 øçößá)\n" +#~ " \\\\ Ï ÷áñáêôÞñáò `\\'\n" +#~ " \\a Ç÷ïò áöýðíéóçò\n" +#~ " \\b ÐéóùäéÜóôçìá\n" +#~ " \\c ÓôáìáôÜåé ôçí åêôõðþóç\n" +#~ " \\f ÁëëáãÞ óåëßäáò\n" +#~ " \\n ÁëëáãÞ ãñáììÞò\n" +#~ " \\r ÅðéóôñïöÞ äñïìÝá\n" +#~ " \\t Ïñéæüíôéá êáôÜôáîç óå ðßíáêá (tab)\n" +#~ " \\v ÊÜèåôç êáôÜôáîç óå ðßíáêá\n" +#~ " \\xNNN Ï ÷áñáêôÞñáò ìå äåêáåîáäéêÞ ôéìÞ NNN (1 ìÝ÷ñé 3 øçößá)\n" +#~ "\n" +#~ " %%%% Ï ÷áñáêôÞñáò `%%'\n" +#~ " %%b Ïé ÐÁÑÁÌÅÔÑÏÉ óáí áëõóßäá ìå ôïõò ÷áñáêôÞñåò äéáöõãÞò `\\'\n" +#~ " åñìçíåõìÝíïõò\n" +#~ "\n" +#~ "åðßóçò üëá ôá ÷áñáêôçñéóôéêÜ ôçò ìïñöÞò óôç C, ðïõ ëÞãïõí\n" +#~ "óå Ýíá áðï ôá diouxXfeEgGcs, ìå ôçí ÐÁÑÁÌÅÔÑÏ íá Ý÷åé ìåôáôñáðåß\n" +#~ "óôïí óùóôü ôýðï.\n" +#~ "Ïé ìåôáâëçôÝò ìåôáâëçôïý ìÞêïò õðïóôçñßæïíôáé.\n" + +# +#, fuzzy +#~ msgid "" +#~ "Print the full filename of the current working directory.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "ÅìöÜíéóç Üèñïéóìá åëÝã÷ïõ CRC êáé áñéèìü bytes ãéá êÜèå ÁÑ×ÅÉÏ.\n" +#~ "\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Special characters:\n" +#~ " * dsusp CHAR CHAR will send a terminal stop signal once input " +#~ "flushed\n" +#~ " eof CHAR CHAR will send an end of file (terminate the input)\n" +#~ " eol CHAR CHAR will end the line\n" +#~ " * eol2 CHAR alternate CHAR for ending the line\n" +#~ " erase CHAR CHAR will erase the last character typed\n" +#~ " intr CHAR CHAR will send an interrupt signal\n" +#~ " kill CHAR CHAR will erase the current line\n" +#~ " * lnext CHAR CHAR will enter the next character quoted\n" +#~ " quit CHAR CHAR will send a quit signal\n" +#~ " * rprnt CHAR CHAR will redraw the current line\n" +#~ " start CHAR CHAR will restart the output after stopping it\n" +#~ " stop CHAR CHAR will stop the output\n" +#~ " susp CHAR CHAR will send a terminal stop signal\n" +#~ " * swtch CHAR CHAR will switch to a different shell layer\n" +#~ " * werase CHAR CHAR will erase the last word typed\n" +#~ msgstr "" +#~ "\n" +#~ "Åéäéêïß ÷áñáêôÞñåò:\n" +#~ "* dsusp ×ÁÑ Ï ×ÁÑ èá ìåôáäþóåé óÞìá áíáóôïëÞò ôåñìáôéêïý áìÝóùò " +#~ "ìüëéò\n" +#~ " ç åßóïäïò áäåéÜóåé\n" +#~ " eof ×ÁÑ Ï ×ÁÑ èá ìåôáäþóåé Ýíá ôåëïò áñ÷åßïõ (ôÝëïò åéóüäïõ)\n" +#~ " eol ×ÁÑ Ï ×ÁÑ èá ìåôáäþóåé Ýíá ôåëïò ãñáììÞò\n" +#~ "* eol2 ×ÁÑ Åíáëáêôéêüò ×ÁÑ ãéá ôÝëïò ãñáììÞò\n" +#~ " erase ×ÁÑ Ï ×ÁÑ èá óâÞóåé ôïí ôåëåõôáßï ÷áñáêôÞñá ðïõ " +#~ "ðëçêôñïëïãÞèçêå\n" +#~ " intr ×ÁÑ Ï ×ÁÑ èá ìåôáäþóåé óÞìá äéáêïðÞò\n" +#~ " kill ×ÁÑ Ï ×ÁÑ èá óâÞóåé ôçí ôñÝ÷ïõóá ãñáììÞ\n" +#~ "* lnext ×ÁÑ Ï ×ÁÑ èá åéóÜãåé ôïí åðüìåíï ÷áñáêôÞñá óå åéóáãùãéêÜ\n" +#~ " quit ×ÁÑ Ï ×ÁÑ èá ìåôáäüóåé óÞìá ôÝëïõò\n" +#~ "* rprnt ×ÁÑ Ï ×ÁÑ èá îáíáæùãñáößóåé ôçí ôñÝ÷ïõóá ãñáììÞ\n" +#~ " start ×ÁÑ Ï ×ÁÑ èá îáíáñ÷ßóåé ôçí Ýîïäï ìåôÜ ôï óôáìáôçìÜ ôçò\n" +#~ " stop ×ÁÑ Ï ×ÁÑ èá óôáìáôÞóåé ôçí Ýîïäï\n" +#~ " susp ×ÁÑ Ï ×ÁÑ èá ìåôáäþóåé óÞìá áíáóôïëÞò ôåñìáôéêïý\n" +#~ "* swtch ×ÁÑ Ï ×ÁÑ èá åðéôñÝøåé ôçí ìåôáöïñÜ óå äéáöïñåôéêÞ óôñþóç " +#~ "êåëýöïõò\n" +#~ " (shell layer)\n" +#~ "* werase ×ÁÑ Ï ×ÁÑ èá óâÞóåé ôçí ôåëåõôáßá ëÝîç ðïõ ðëçêôñïëïãÞèçêå\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Special settings:\n" +#~ " N set the input and output speeds to N bauds\n" +#~ " * cols N tell the kernel that the terminal has N columns\n" +#~ " * columns N same as cols N\n" +#~ " ispeed N set the input speed to N\n" +#~ " * line N use line discipline N\n" +#~ " min N with -icanon, set N characters minimum for a completed " +#~ "read\n" +#~ " ospeed N set the output speed to N\n" +#~ " * rows N tell the kernel that the terminal has N rows\n" +#~ " * size print the number of rows and columns according to the " +#~ "kernel\n" +#~ " speed print the terminal speed\n" +#~ " time N with -icanon, set read timeout of N tenths of a second\n" +#~ msgstr "" +#~ "\n" +#~ "ÅéäéêÝò åêëïãÝò:\n" +#~ " N ÈÝôåé ôçí ôá÷ýôçôá åßóïäïõ êáé Ýîïäïõ óå Í baud\n" +#~ "* cols N Ðëçñïöïñåß ôïí ðõñÞíá ïôé ôï ôåñìáôéêü Ý÷åé N óôÞëåò\n" +#~ "* columns N Ïìïéï ìå ôï cols N\n" +#~ " ispeed N ÈÝôåé ôçí ôá÷ýôçôá åéóüäïõ óå N\n" +#~ "* line N ×ñçóéìïðïéåß ôçí óõìðåñéöïñÜ ãñáììÞò N\n" +#~ " min N Ìáæß ìå -icanon, èÝôåé óå N ôïí áñéèìü ÷áñáêôÞñùí\n" +#~ " áðáñáßôçôùí ãéá ìéá ðëÞñç áíÜãíùóç\n" +#~ " ospeed N ÈÝôåé ôçí ôá÷ýôçôá åîüäïõ óå N\n" +#~ "* rows N Ðëçñïöïñåß ôïí ðõñÞíá üôé ôï ôåñìáôéêü Ý÷åé N óåéñÝò\n" +#~ "* size Åêôõðþíåé ôïí áñéèìü ãñáììþí êáé óôåéëþí\n" +#~ " óýìöùíá ìå ôïí ðõñÞíá\n" +#~ " speed Åêôõðþíåé ôçí ôá÷ýôçôá ôïõ ôåñìáôéêïý\n" +#~ " time N Ìáæß ìå -icanon, èÝôåé ôï ÷ñïíüìåôñï ôÝñìáôéóìïý ôçò\n" +#~ " áíåíåñãÞò áíÜãíùóçò óå N äÝêáôá äåõôåñïëÝðôïõ\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Input settings:\n" +#~ " [-]brkint breaks cause an interrupt signal\n" +#~ " [-]icrnl translate carriage return to newline\n" +#~ " [-]ignbrk ignore break characters\n" +#~ " [-]igncr ignore carriage return\n" +#~ " [-]ignpar ignore characters with parity errors\n" +#~ " * [-]imaxbel beep and do not flush a full input buffer on a " +#~ "character\n" +#~ " [-]inlcr translate newline to carriage return\n" +#~ " [-]inpck enable input parity checking\n" +#~ " [-]istrip clear high (8th) bit of input characters\n" +#~ " * [-]iuclc translate uppercase characters to lowercase\n" +#~ " * [-]ixany let any character restart output, not only start " +#~ "character\n" +#~ " [-]ixoff enable sending of start/stop characters\n" +#~ " [-]ixon enable XON/XOFF flow control\n" +#~ " [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +#~ " [-]tandem same as [-]ixoff\n" +#~ msgstr "" +#~ "\n" +#~ "ÅðéëïãÝò åéóüäïõ:\n" +#~ " [-]brkint Ôï 'break' ðñïêáëåß Ýíá óÞìá äéáêïðÞò\n" +#~ " [-]icrnl ÌåôáôñÝðåé ôçí `åðáíáöïñÜ äñïìÝá' óå `íÝá ãñáììÞ'\n" +#~ " [-]ignbrk Áãíïåß ôïõò ÷áñáêôÞñåò äéáêïðÞò (break)\n" +#~ " [-]igncr Áãíïåß ôçí åðáíáöïñÜ äñïìÝá\n" +#~ " [-]ignpar Áãíïåß ôïõò ÷áñáêôÞñåò ìå ëÜèç éóïôçìßáò\n" +#~ "* [-]imaxbel Åíåñãïðïéåß ôïí Þ÷ï êáé äåí áäåéÜæåé Ýíá ãåìÜôï buffer\n" +#~ " åéóüäïõ ìå ôçí Üöéîç åíüò ÷áñáêôÞñá\n" +#~ " [-]inlcr ÌåôáôñÝðåé ôçí `íåá ãñáììç' óå `åðáíáöïñÜ äñïìÝá'\n" +#~ " [-]inpck Åíåñãïðïéåß ôçí åðáëÞèåõóç éóïôçìßáò åéóüäïõ\n" +#~ " [-]istrip Áöáéñåß ôï õøçëü bit (8ï) ôùí ÷áñáêôÞñùí åéóüäïõ\n" +#~ "* [-]iuclc ÌåôáôñÝðåé ôá êåöáëáßá óå ìéêñÜ\n" +#~ "* [-]ixany ÁöÞíåé êÜèå ÷áñáêôÞñá íá îáíáñ÷ßóåé ôçí Ýîïäï, ü÷é ìïíï " +#~ "ôïí\n" +#~ " ÷áñáêôÞñá åêêßíçóçò\n" +#~ " [-]ixoff Åíåñãïðïéåß ôçí áðïóôïëÞ ÷áñáêôÞñùí áñ÷Þ/ôÝëïò\n" +#~ " [-]ixon Åíåñãïðïéåß ôïí XON/XOFF Ýëåã÷ïò ñïÞò\n" +#~ " [-]parmrk Äåß÷íåé ôá ëÜèç éóüôçìßáò (ìå ìéá óåéñÜ ÷áñáêôÞñùí 255-" +#~ "0)\n" +#~ " [-]tandem Ïìïéï ìå [-]ixoff\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Local settings:\n" +#~ " [-]crterase echo erase characters as backspace-space-backspace\n" +#~ " * crtkill kill all line by obeying the echoprt and echoe settings\n" +#~ " * -crtkill kill all line by obeying the echoctl and echok settings\n" +#~ " * [-]ctlecho echo control characters in hat notation (`^c')\n" +#~ " [-]echo echo input characters\n" +#~ " * [-]echoctl same as [-]ctlecho\n" +#~ " [-]echoe same as [-]crterase\n" +#~ " [-]echok echo a newline after a kill character\n" +#~ " * [-]echoke same as [-]crtkill\n" +#~ " [-]echonl echo newline even if not echoing other characters\n" +#~ " * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +#~ " [-]icanon enable erase, kill, werase, and rprnt special " +#~ "characters\n" +#~ " [-]iexten enable non-POSIX special characters\n" +#~ " [-]isig enable interrupt, quit, and suspend special characters\n" +#~ " [-]noflsh disable flushing after interrupt and quit special " +#~ "characters\n" +#~ " * [-]prterase same as [-]echoprt\n" +#~ " * [-]tostop stop background jobs that try to write to the terminal\n" +#~ " * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +#~ msgstr "" +#~ "\n" +#~ "ÔïðéêÝò åðéëïãÝò:\n" +#~ " [-]crterase ÐñïóèÝôåé ç÷þ óôïí ÷áñáêôÞñá óâçóßìáôïò óýìöùíá ìå ôçí " +#~ "óåéñÜ\n" +#~ " ðéóùäéÜóôçìá-äéÜóôçìá-ðéóùäéÜóôçìá\n" +#~ "* crtkill Óêïôþíåé üëç ôçí ãñáììÞ õðáêïýïíôáò óôéò åðéëïãÝò\n" +#~ " 'echoprt' êáé 'echoe'\n" +#~ "* -crtkill Óêïôþíåé üëç ôçí ãñáììÞ õðáêïýïíôáò óôéò åðéëïãÝò\n" +#~ " 'echoctl' êáé 'echok'\n" +#~ "* [-]ctlecho ÐñïóèÝôåé ç÷þ óôïõò ÷áñáêôÞñåò åëÝã÷ïõ óôç óçìåéïãñáößá\n" +#~ " êáðÝëï (`^c')\n" +#~ " [-]echo ÐñïóèÝôåé ç÷þ óôïõò åéóáãþìåíïõò ÷áñáêôÞñåò\n" +#~ "* [-]echoctl Ïìïéï ìå [-]ctlecho\n" +#~ " [-]echoe Ïìïéï ìå [-]crterase\n" +#~ " [-]echok ÐñïóèÝôåé `íåá ãñáììÞ' ìåôÜ áðï Ýíá `kill' ÷áñáêôÞñá * [-]" +#~ "echoke Ïìïéï [-]crtkill\n" +#~ " [-]echonl ÐñïóèÝôåé ç÷þ óôç `íÝá ãñáììÞ' áêüìç êáé áí äåí " +#~ "óõìâáßíåé\n" +#~ " ãéá ôïõò Üëëïõò ÷áñáêôÞñåò\n" +#~ "* [-]echoprt ÐñïóèÝôåé ç÷þ óôïõò óâçóìÝíïõò ÷áñáêôÞñåò ðñïò ôá " +#~ "ðßóù ìåôáîý `\\' êáé '/'\n" +#~ " [-]icanon Åíåñãïðïéåß ôïõò åéäéêïýò ÷áñáêôÞñåò\n" +#~ " 'erase', 'kill', 'werase', êáé 'rprnt'\n" +#~ " [-]iexten Åíåñãïðïéåß ôïõò ìç-POSIX åéäéêïýò ÷áñáêôÞñåò\n" +#~ " [-]isig Åíåñãïðïéåß ôïõò åéäéêïýò ÷áñáêôÞñåò\n" +#~ " 'interrupt', 'quit', êáé 'suspend'\n" +#~ " [-]noflsh Áðåíåñãïðïéåß ôï Üäåéáóìá ìåôÜ ôïõò åéäéêïýò ÷áñáêôÞñåò\n" +#~ " 'interrupt' êáé 'quit'\n" +#~ "* [-]prterase Ïìïéï ìå [-]echoprt\n" +#~ "* [-]tostop ÓôáìáôÜ ôéò äïõëåéÝò óôï ðáñáóêÞíéï ðïõ ðñïóðáèïýí íá\n" +#~ " ãñÜøïõí óôï ôåñìáôéêü\n" +#~ "* [-]xcase Ìáæé ìå ôï 'icanon', äéáöåýãåé ìå `\\'\n" +#~ " ãéá ôá êåöáëáßá\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Combination settings:\n" +#~ " * [-]LCASE same as [-]lcase\n" +#~ " cbreak same as -icanon\n" +#~ " -cbreak same as icanon\n" +#~ " cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +#~ " icanon, eof and eol characters to their default values\n" +#~ " -cooked same as raw\n" +#~ " crt same as echoe echoctl echoke\n" +#~ " dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +#~ " kill ^u\n" +#~ " * [-]decctlq same as [-]ixany\n" +#~ " ek erase and kill characters to their default values\n" +#~ " evenp same as parenb -parodd cs7\n" +#~ " -evenp same as -parenb cs8\n" +#~ " * [-]lcase same as xcase iuclc olcuc\n" +#~ " litout same as -parenb -istrip -opost cs8\n" +#~ " -litout same as parenb istrip opost cs7\n" +#~ " nl same as -icrnl -onlcr\n" +#~ " -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +#~ " oddp same as parenb parodd cs7\n" +#~ " -oddp same as -parenb cs8\n" +#~ " [-]parity same as [-]evenp\n" +#~ " pass8 same as -parenb -istrip cs8\n" +#~ " -pass8 same as parenb istrip cs7\n" +#~ " raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +#~ " -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +#~ " -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +#~ " -raw same as cooked\n" +#~ " sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +#~ " -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +#~ " -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +#~ " isig icanon iexten echo echoe echok -echonl -noflsh\n" +#~ " -xcase -tostop -echoprt echoctl echoke, all special\n" +#~ " characters to their default values.\n" +#~ msgstr "" +#~ "\n" +#~ "ÓõíäõáóôéêÝò åðéëïãÝò:\n" +#~ "* [-]LCASE Ïìïéï ìå [-]lcase\n" +#~ " cbreak Ïìïéï ìå -icanon\n" +#~ " -cbreak Ïìïéï ìå icanon\n" +#~ " cooked Ïìïéï ìå brkint ignpar istrip icrnl ixon opost isig\n" +#~ " icanon, eof êáé eol óôéò åî'ïñéóìïý ôéìÝò ôïõò\n" +#~ " -cooked Ïìïéï ìå raw\n" +#~ " crt Ïìïéï ìå echoe echoctl echoke\n" +#~ " dec Ïìïéï ìå echoe echoctl echoke -ixany intr ^c erase 0177\n" +#~ " kill ^u\n" +#~ "* [-]decctlq Ïìïéï ìå [-]ixany\n" +#~ " ek `erase' êáé `kill' ÷áñáêôÞñåò óôéò åî'ïñéóìïý ôéìÝò ôïõò\n" +#~ " evenp Ïìïéï ìå parenb -parodd cs7\n" +#~ " -evenp Ïìïéï ìå -parenb cs8\n" +#~ "* [-]lcase Ïìïéï ìå xcase iuclc olcuc\n" +#~ " litout Ïìïéï ìå -parenb -istrip -opost cs8\n" +#~ " -litout Ïìïéï ìå parenb istrip opost cs7\n" +#~ " nl Ïìïéï ìå -icrnl -onlcr\n" +#~ " -nl Ïìïéï ìå icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +#~ " oddp Ïìïéï ìå parenb parodd cs7\n" +#~ " -oddp Ïìïéï ìå -parenb cs8\n" +#~ " [-]parity Ïìïéï ìå [-]evenp\n" +#~ " pass8 Ïìïéï ìå -parenb -istrip cs8\n" +#~ " -pass8 Ïìïéï ìå parenb istrip cs7\n" +#~ " raw Ïìïéï ìå -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +#~ " -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +#~ " -imaxbel -opost -isig -icanon -xcase min 1 öïñÜ 0\n" +#~ " -raw Ïìïéï ìå cooked\n" +#~ " sane Ïìïéï ìå cread -ignbrk brkint -inlcr -igncr icrnl\n" +#~ " -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +#~ " -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +#~ " isig icanon iexten echo echoe echok -echonl -noflsh\n" +#~ " -xcase -tostop -echoprt echoctl echoke, êáé üëïõò ôïõò\n" +#~ " åéäéêïýò ÷áñáêôÞñåò ìå ôéò åî'ïñéóìïý ôéìÝò ôïõò.\n" + +# +#, fuzzy +#~ msgid "" +#~ "Exit with the status determined by EXPRESSION.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "EXPRESSION is true or false and sets exit status. It is one of:\n" +#~ msgstr "" +#~ "ÅìöÜíéóç Üèñïéóìá åëÝã÷ïõ CRC êáé áñéèìü bytes ãéá êÜèå ÁÑ×ÅÉÏ.\n" +#~ "\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode " +#~ "numbers\n" +#~ " FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +#~ " FILE1 -ot FILE2 FILE1 is older than FILE2\n" +#~ "\n" +#~ " -b FILE FILE exists and is block special\n" +#~ " -c FILE FILE exists and is character special\n" +#~ " -d FILE FILE exists and is a directory\n" +#~ " -e FILE FILE exists\n" +#~ " -f FILE FILE exists and is a regular file\n" +#~ " -g FILE FILE exists and is set-group-ID\n" +#~ " -h FILE FILE exists and is a symbolic link (same as -L)\n" +#~ " -G FILE FILE exists and is owned by the effective group ID\n" +#~ " -k FILE FILE exists and has its sticky bit set\n" +#~ " -L FILE FILE exists and is a symbolic link (same as -h)\n" +#~ " -O FILE FILE exists and is owned by the effective user ID\n" +#~ " -p FILE FILE exists and is a named pipe\n" +#~ " -r FILE FILE exists and is readable\n" +#~ " -s FILE FILE exists and has a size greater than zero\n" +#~ " -S FILE FILE exists and is a socket\n" +#~ " -t [FD] file descriptor FD (stdout by default) is opened on a " +#~ "terminal\n" +#~ " -u FILE FILE exists and its set-user-ID bit is set\n" +#~ " -w FILE FILE exists and is writable\n" +#~ " -x FILE FILE exists and is executable\n" +#~ msgstr "" +#~ "\n" +#~ " ÁÑ×ÅÉÏ1 -ef ÁÑ×ÅÉÏ2 ÁÑ×ÅÉÏ1 êáé ÁÑ×ÅÉÏ2 Ý÷ïõí ôï ßäéï íïýìåñï\n" +#~ " óõóêåõÞò êáé inode\n" +#~ " ÁÑ×ÅÉÏ1 -nt ÁÑ×ÅÉÏ2 ÁÑ×ÅÉÏ1 åßíáé ðéï ðñüóöáôï (çìåñïìçíßá " +#~ "ìåôáôñïðÞò)\n" +#~ " áðï ôï ÁÑ×ÅÉÏ2\n" +#~ " ÁÑ×ÅÉÏ1 -ot ÁÑ×ÅÉÏ2 ÁÑ×ÅÉÏ1 åßíáé ðéï ðáëéü áðï ôï ÁÑ×ÅÉÏ2\n" +#~ "\n" +#~ " -b ÁÑ×ÅÉÏ ÁÑ×ÅÉÏ õðÜñ÷åé êáé åßíáé áñ÷åßï ôýðïõ block\n" +#~ " -c ÁÑ×ÅÉÏ ÁÑ×ÅÉÏ õðÜñ÷åé êáé åßíáé åéäéêïý ôýðïõ ÷áñáêôÞñùí\n" +#~ " -d ÁÑ×ÅÉÏ ÁÑ×ÅÉÏ õðÜñ÷åé êáé åßíáé êáôÜëïãïò\n" +#~ " -e ÁÑ×ÅÉÏ ÁÑ×ÅÉÏ õðÜñ÷åé\n" +#~ " -f ÁÑ×ÅÉÏ ÁÑ×ÅÉÏ õðÜñ÷åé êáé åßíáé êáíïíéêïý ôýðïõ\n" +#~ " -g ÁÑ×ÅÉÏ ÁÑ×ÅÉÏ õðÜñ÷åé êáé ôï bit 'set-group-ID' Ý÷åé ôåèåß\n" +#~ " -G ÁÑ×ÅÉÏ ÁÑ×ÅÉÏ õðÜñ÷åé êáé áíÞêåé óôçí éó÷ýïõóá ôáõôüôçôá\n" +#~ " (effective id) ïìÜäáò\n" +#~ " -k ÁÑ×ÅÉÏ ÁÑ×ÅÉÏ õðÜñ÷åé êáé ôï bit 'sticky' Ý÷åé ôåèåß\n" +#~ " -L ÁÑ×ÅÉÏ ÁÑ×ÅÉÏ õðÜñ÷åé êáé åßíáé óõìâïëéêÞ óýíäåóç (symbolic " +#~ "link)\n" +#~ " -O ÁÑ×ÅÉÏ ÁÑ×ÅÉÏ õðÜñ÷åé êáé áíÞêåé óôçí éó÷ýïõóá ôáõôüôçôá ÷ñÞóôç\n" +#~ " -p ÁÑ×ÅÉÏ ÁÑ×ÅÉÏ õðÜñ÷åé êáé åßíáé áñ÷åßï ôýðïõ named pipe\n" +#~ " -r ÁÑ×ÅÉÏ ÁÑ×ÅÉÏ õðÜñ÷åé êáé åßíáé áíáãíþóéìï\n" +#~ " -s ÁÑ×ÅÉÏ ÁÑ×ÅÉÏ õðÜñ÷åé êáé Ý÷åé ìÝãåèïò èåôéêü\n" +#~ " -S ÁÑ×ÅÉÏ ÁÑ×ÅÉÏ õðÜñ÷åé êáé åßíáé ôïõ ôýðïõ socket\n" +#~ " -t [ÐÁ] Ï ðåñéãñáöçôçò áñ÷åßïõ (FD) (ôõðéêÞ Ýîïäïò åî'ïñéóìïý)\n" +#~ " åßíáé áíïé÷ôüò óå Ýíá ôåñìáôéêü\n" +#~ " -u ÁÑ×ÅÉÏ ÁÑ×ÅÉÏ õðÜñ÷åé êáé ôï bit 'set-user-ID' Ý÷åé ôåèåß\n" +#~ " -w ÁÑ×ÅÉÏ ÁÑ×ÅÉÏ õðÜñ÷åé êáé åßíáé åããñÜøéìï\n" +#~ " -x ÁÑ×ÅÉÏ ÁÑ×ÅÉÏ õðÜñ÷åé êáé åßíáé åêôåëÝóéìï\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " -a, --all same as -b -d --login -p -r -t -T -u\n" +#~ " -b, --boot time of last system boot\n" +#~ " -d, --dead print dead processes\n" +#~ " -H, --heading print line of column headings\n" +#~ " -i, --idle add idle time as HOURS:MINUTES, . or old\n" +#~ " (deprecated, use -u)\n" +#~ " --login print system login processes\n" +#~ " (equivalent to SUS -l)\n" +#~ " -l, --lookup attempt to canonicalize hostnames via DNS\n" +#~ " (-l is deprecated, use --lookup)\n" +#~ " -m only hostname and user associated with stdin\n" +#~ " -p, --process print active processes spawned by init\n" +#~ " -q, --count all login names and number of users logged on\n" +#~ " -r, --runlevel print current runlevel\n" +#~ " -s, --short print only name, line, and time (default)\n" +#~ " -t, --time print last system clock change\n" +#~ " -T, -w, --mesg add user's message status as +, - or ?\n" +#~ " -u, --users lists users logged in\n" +#~ " --message same as -T\n" +#~ " --writable same as -T\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "If FILE is not specified, use %s. %s as FILE is common.\n" +#~ "If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +#~ msgstr "" +#~ "\n" +#~ " -H, --heading Åêôõðþíåé ãñáììÞ ìå ôéò åðéêåöáëßäåò ôùí óôçëþí\n" +#~ " -i, -u, --idle ÐñïóèÝôåé ôïí ÷ñüíï ðïõ ï ÷ñÞóôçò åßíáé áäñáíÞò\n" +#~ " óôç ìïñöÞ ÙÑÅÓ:ËÅÐÔÁ, . Þ 'ðáëéÜ'\n" +#~ " -m Ìüíï ôï üíïìá ôïõ óõóôÞìáôïò (hostname) êáé\n" +#~ " ôïí ÷ñÞóôç ðïõ óõíäÝåôáé ìå ôçí ôõðéêÞ åßóïäï\n" +#~ " -q, --count Åêôõðþíåé üëåò ôéò åíåñãÝò óõíäÝóåéò êáé ôïí áñéèìü " +#~ "ôùí\n" +#~ " ÷ñçóôþí ðïõ âñßóêïíôáé óôï óýóôçìá\n" +#~ " -s (áãíïåßôáé)\n" +#~ " -T, -w, --mesg Åêôõðþíåé ôçí êáôÜóôáóç ìçíõìÜôùí ôïõ ÷ñÞóôç ìå +, - " +#~ "Þ ?\n" +#~ " --message Ïìïéï ìå -T\n" +#~ " --writable Ïìïéï ìå -T\n" +#~ " --help Åêôõðþíåé áõôÞ ôçí âïÞèåéá êáé ôåñìáôßæåé\n" +#~ " --version Åêôõðþíåé ðëçñïöïñßåò Ýêäïóçò êáé ôåñìáôßæåé\n" +#~ "\n" +#~ "Åáí ÁÑ×ÅÉÏ äåí êáèïñßæåôáé, ÷ñçóéìïðïéåßôáé ôï %s.\n" +#~ "Ôï %s óáí ÁÑ×ÅÉÏ åßíáé êïéíü. ÅÜí ÐÁÑÁÌ1 êáé ÐÁÑÁÌ2 äïèïýí,\n" +#~ "ôï -m åííïåßôáé: `am i' Þ `mom likes' åßíáé óõíçèéóìÝíá.\n" + +# +#, fuzzy +#~ msgid "" +#~ "Repeatedly output a line with all specified STRING(s), or `y'.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "ÅìöÜíéóç Üèñïéóìá åëÝã÷ïõ CRC êáé áñéèìü bytes ãéá êÜèå ÁÑ×ÅÉÏ.\n" +#~ "\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +#~ msgid "cannot get processor type" +#~ msgstr "Äåí åßíáé äõíáôüí íá âñåèåß ï ôýðïò ôïõ åðåîåñãáóôÞ." + +#~ msgid "USER" +#~ msgstr "×ÑÇÓÔÇÓ" + +#~ msgid "MESG " +#~ msgstr "ÌÇÍÌ " + +#~ msgid "LOGIN-TIME " +#~ msgstr "ÙÑÁ-ÅÉÓÏÄÏÕ " + +#~ msgid "FROM\n" +#~ msgstr "ÁÐÏ\n" + +#~ msgid "" +#~ msgstr "<Ìç ïñéóìÝíï>" + +#, fuzzy +#~ msgid "Usage: %s [-v]\n" +#~ msgstr "×ñÞóç: %s [ÅÐÉËÏÃÇ]\n" + +# +#, fuzzy +#~ msgid "Usage: %s [OPTION]... [VARIABLE]...\n" +#~ msgstr "×ñÞóç: %s [ÅÐÉËÏÃÅÓ]... [ÁÑ×ÅÉÏ]...\n" + +# +#, fuzzy +#~ msgid "Usage: %s [OPTION]... NUMBER[SUFFIX]\n" +#~ msgstr "×ñÞóç: %s [ÅÐÉËÏÃÅÓ]... [ÁÑ×ÅÉÏ]...\n" + +# +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "(obsolete) If -VALUE is used as first OPTION, same as -c VALUE when one " +#~ "of\n" +#~ "multipliers bkm follows concatenated, else same as -n VALUE.\n" +#~ msgstr "" +#~ "ÅìöÜíéóç ôùí 10 ðñþôùí ãñáììþí áðü êÜèå ÁÑ×ÅÉÏ óôçí êáíïíéêÞ Ýîïäï.\n" +#~ "Ìå ðåñéóóüôåñá áðü Ýíá ÁÑ×ÅÉÏ, íá ðñïçãçèåß åðéóÝëéäï ìå ôï üíïìá ôïõ " +#~ "áñ÷åßïõ.\n" +#~ "×ùñßò ÁÑ×ÅÉÏ Þ üôáí ôï ÁÑ×ÅÉÏ åßíáé ôï -, áíÜãíùóç áðü ôçí êáíïíéêÞ " +#~ "åßóïäï.\n" +#~ "\n" +#~ " -c, --bytes=ÌÅÃÅÈÏÓ åìöÜíéóç ôùí ðñþôùí ÌÅÃÅÈÏÓ bytes\n" +#~ " -n, --lines=ÁÑÉÈÌÏÓ åìöÜíéóç ôùí ðñþôùí ÁÑÉÈÌÏÓ ãñáììþí áíôß ôùí " +#~ "ðñþôùí 10\n" +#~ " -q, --quiet, --silent íá ìçí ôõðþíïíôáé åðéóÝëéäá ìå ôá ïíüìáôá " +#~ "áñ÷åßùí\n" +#~ " -v, --verbose íá ôõðþíïíôáé ðÜíôá åðéóÝëéäá ìå ôá ïíüìáôá " +#~ "áñ÷åßùí\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "Ôï ÌÅÃÅÈÏÓ ìðïñåß íá Ý÷åé êáôÜëçîç ìå ðïëëáðëáóéáóôÞ: b ãéá 512, k ãéá " +#~ "1K, m ãéá 1 Meg.\n" +#~ "Áí ÷ñçóéìïðïéåßôáé ôï -VALUE óáí ðñþôç ÅÐÉËÏÃÇ, áíÜãíùóå -c ÔÉÌÇ üôáí\n" +#~ "Ýíáò áðü ôïõò ðïëëáðëáóéáóôÝò bkm áêïëïõèåß óõíåíùìÝíïò, äéáöïñåôéêÜ " +#~ "áíÜãíùóå -n ÔÉÌÇ\n" + +# +#, fuzzy +#~ msgid "" +#~ " +POS1 [-POS2] start a key at POS1, end it before POS2 " +#~ "(origin 0)\n" +#~ " Warning: this option is obsolete\n" +#~ msgstr "" +#~ "Óýãêñéóç ôáîéíïìçìÝíùí áñ÷åßùí ÁÑÉÓÔÅѼ_ÁÑ×ÅºÏ êáé ÄÅÎɼ_ÁÑןÏ, áíÜ " +#~ "ãñáììÞ.\n" +#~ "\n" +#~ " -1 áðüêñõøç ìïíáäéêþí ãñáììþí óôï áñéóôåñü áñ÷åßï\n" +#~ " -2 áðüêñõøç ìïíáäéêþí ãñáììþí óôï äåîéü áñ÷åßï\n" +#~ " -3 áðüêñõøç ìïíáäéêþí ãñáììþí êáé óôá äýï áñ÷åßá\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "ÅìöÜíéóç Üèñïéóìá åëÝã÷ïõ CRC êáé áñéèìü bytes ãéá êÜèå ÁÑ×ÅÉÏ.\n" +#~ "\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "ÅìöÜíéóç Üèñïéóìá åëÝã÷ïõ CRC êáé áñéèìü bytes ãéá êÜèå ÁÑ×ÅÉÏ.\n" +#~ "\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "ÅìöÜíéóç Üèñïéóìá åëÝã÷ïõ CRC êáé áñéèìü bytes ãéá êÜèå ÁÑ×ÅÉÏ.\n" +#~ "\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "ÅìöÜíéóç Üèñïéóìá åëÝã÷ïõ CRC êáé áñéèìü bytes ãéá êÜèå ÁÑ×ÅÉÏ.\n" +#~ "\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "ÅìöÜíéóç Üèñïéóìá åëÝã÷ïõ CRC êáé áñéèìü bytes ãéá êÜèå ÁÑ×ÅÉÏ.\n" +#~ "\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#, fuzzy +#~ msgid "" +#~ "Convert tabs in each FILE to spaces, writing to standard output.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -i, --initial do not convert TABs after non whitespace\n" +#~ " -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +#~ msgstr "" +#~ "ÌåôáôñïðÞ óôçëïãíùìüíùí óå êÜèå ÁÑ×ÅÉÏ óå äéáóôÞìáôá, ìå åããñáöÞ óôçí " +#~ "êáíïíéêÞ Ýîïäï.\n" +#~ "×ùñßò ÁÑ×ÅÉÏ Þ üôáí ôï ÁÑ×ÅÉÏ åßíáé ôï -, áíÜãíùóç áðü ôçí êáíïíéêÞ " +#~ "åßóïäï.\n" +#~ "\n" +#~ " -i, --initial íá ìç ìåôáôñáðïýí ôá TAB ìåôÜ áðü ìç-ëåõêïýò " +#~ "÷áñáêôÞñåò\n" +#~ " -t, --tabs=ÁÑÉÈÌ ïé óôçëïãíþìïíåò íá Ý÷ïõí ìÝãåèïò ÁÑÉÈÌüò " +#~ "÷áñáêôÞñåò, ü÷é 8\n" +#~ " -t, --tabs=ËÉÓÔÁ ÷ñÞóç ëßóôáò äéá÷ùñéóìÝíçò ìå êüììáôá ãéá ïñéóìü " +#~ "èÝóåùí óôçëïãíùìüíùí\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "Áíôß ãéá -t ÁÑÉÈÌÏÓ Þ -t ËÉÓÔÁ, -ÁÑÉÈÌÏÓ Þ -ËÉÓÔÁ ìðïñïýí íá " +#~ "÷ñçóéìïðïéçèïýí.\n" + +# +#, fuzzy +#~ msgid "" +#~ " -t, --tabs=LIST use comma separated list of explicit tab positions\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n" +#~ msgstr "" +#~ "ÌåôáôñïðÞ óôçëïãíùìüíùí óå êÜèå ÁÑ×ÅÉÏ óå äéáóôÞìáôá, ìå åããñáöÞ óôçí " +#~ "êáíïíéêÞ Ýîïäï.\n" +#~ "×ùñßò ÁÑ×ÅÉÏ Þ üôáí ôï ÁÑ×ÅÉÏ åßíáé ôï -, áíÜãíùóç áðü ôçí êáíïíéêÞ " +#~ "åßóïäï.\n" +#~ "\n" +#~ " -i, --initial íá ìç ìåôáôñáðïýí ôá TAB ìåôÜ áðü ìç-ëåõêïýò " +#~ "÷áñáêôÞñåò\n" +#~ " -t, --tabs=ÁÑÉÈÌ ïé óôçëïãíþìïíåò íá Ý÷ïõí ìÝãåèïò ÁÑÉÈÌüò " +#~ "÷áñáêôÞñåò, ü÷é 8\n" +#~ " -t, --tabs=ËÉÓÔÁ ÷ñÞóç ëßóôáò äéá÷ùñéóìÝíçò ìå êüììáôá ãéá ïñéóìü " +#~ "èÝóåùí óôçëïãíùìüíùí\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "Áíôß ãéá -t ÁÑÉÈÌÏÓ Þ -t ËÉÓÔÁ, -ÁÑÉÈÌÏÓ Þ -ËÉÓÔÁ ìðïñïýí íá " +#~ "÷ñçóéìïðïéçèïýí.\n" + +# +#, fuzzy +#~ msgid "" +#~ "Wrap input lines in each FILE (standard input by default), writing to\n" +#~ "standard output.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --bytes count bytes rather than columns\n" +#~ " -s, --spaces break at spaces\n" +#~ " -w, --width=WIDTH use WIDTH columns instead of 80\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Áíáäßðëùóç ãñáììþí åéóüäïõ óå êÜèå ÁÑ×ÅÉÏ (êáíïíéêÞ åßóïäïò åî ïñéóìïý),\n" +#~ "ãñÜöïíôáò óôçí êáíïíéêÞ Ýîïäï.\n" +#~ "\n" +#~ " -b, --bytes ìÝôñçóç bytes áíôß óôçëþí\n" +#~ " -s, --spaces áíáäßðëùóç óå äéáóôÞìáôá ìüíï\n" +#~ " -w, --width=ÐËÁÔÏÓ ÷ñÞóç ÐËÁÔÏÓ óôÞëåò áíôß ãéá 80\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#, fuzzy +#~ msgid "" +#~ "Write lines consisting of the sequentially corresponding lines from\n" +#~ "each FILE, separated by TABs, to standard output.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +#~ " -s, --serial paste one file at a time instead of in " +#~ "parallel\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "ÅìöÜíéóç ãñáììþí ðïõ áðáñôßæïíôáé áðü ôéò óåéñéáêÜ áíôßóôïé÷åò ãñáììÝò " +#~ "áðü\n" +#~ "êÜèå ÁÑ×ÅÉÏ, ÷ùñéóìÝíåò ìå TABs, óôçí êáíïíéêÞ Ýîïäï.\n" +#~ "×ùñßò ÁÑ×ÅÉÏ, Þ üôáí ôï áñ÷åßï åßíáé ôï -, áíÜãíùóç áðü ôçí êáíïíéêÞ " +#~ "åßóïäï.\n" +#~ "\n" +#~ " -d, --delimiters=ËÉÓÔÁ åðáíá÷ñçóéìïðïßçóç ÷áñáêôÞñùí áðü ôç ËÉÓÔÁ áíôß " +#~ "ãéá TABs\n" +#~ " -s, --serial åðéêüëëçóç åíüò áñ÷åßïõ ôç öïñÜ áíôß ðáñÜëëçëá\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" + +# +#, fuzzy +#~ msgid "" +#~ " -NUMBER same as -l NUMBER\n" +#~ " --verbose print a diagnostic to standard error just\n" +#~ " before each output file is opened\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +#~ msgstr "" +#~ "¸îïäïò ôìçìÜôùí óôáèåñïý ìåãÝèïõò áðü ôçí ÅÉÓÏÄÏ óå ÐÑÏÈÅÌÁaa, " +#~ "ÐÑÏÈÅÌÁab, ...; åî ïñéóìïý\n" +#~ "ÐÑÏÈÅÌÁ åßíáé ôï `x'. ×ùñßò ÅÉÓÏÄÏ, Þ üôáí ç ÅÉÓÏÄÏÓ åßíáé ôï -, " +#~ "áíÜãíùóç áðü ôçí êáíïíéêÞ åßóïäï.\n" +#~ "\n" +#~ " -b, --bytes=ÌÅÃÅÈÏÓ ôïðïèÝôçóç ÌÅÃÅÈÏÓ bytes óå êÜèå áñ÷åßï åîüäïõ\n" +#~ " -C, --line-bytes=ÌÅÃÅÈÏÓ ôïðïèÝôçóç ôï ðïëý ÌÅÃÅÈÏÓ bytes áðü ãñáììÝò " +#~ "óå êÜèå áñ÷åßï åîüäïõ\n" +#~ " -l, --lines=ÁÑÉÈÌÏÓ ôïðïèÝôçóç ÁÑÉÈÌÏÓ ãñáììþí óå êÜèå áñ÷åßïõ " +#~ "åîüäïõ\n" +#~ " -ÁÑÉÈÌÏÓ ßäéï ìå -l ÁÑÉÈÌÏÓ\n" +#~ " --verbose åêôýðùóç äéáãíùóôéêïý óôï êáíïíéêü óöÜëìá ìüëéò " +#~ "ðñéí\n" +#~ " áíïé÷ôåß êÜèå áñ÷åßï åîüäïõ\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "ÌÅÃÅÈÏÓ ìðïñåß íá Ý÷åé ðñüèåìá ðïëëáðëáóéáóôÞ: b ãéá 512, k ãéá 1K, m ãéá " +#~ "1 Meg.\n" + +# +#, fuzzy +#~ msgid "" +#~ "Write each FILE to standard output, last line first.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --before attach the separator before instead of after\n" +#~ msgstr "" +#~ "ÅããñáöÞ êÜèå áñ÷åßïõ óôçí êáíïíéêÞ Ýîïäï, ôåëåõôáßá ãñáììÞ ðñþôá.\n" +#~ "×ùñßò ÁÑ×ÅÉÏ, Þ üôáí ôï áñ÷åßï åßíáé ôï -, áíÜãíùóç áðü ôçí êáíïíéêÞ " +#~ "åßóïäï.\n" +#~ "\n" +#~ " -b, --before ôïðïèÝôçóç ôïõ äéá÷ùñéóôÞ ðñéí áíôß ãéá ìåôÜ\n" +#~ " -r, --regex ìåôÜöñáóç ôïõ äéá÷ùñéóôÞ ùò êáíïíéêÞ Ýêöñáóç\n" +#~ " -s, --separator=ÁËÖÁÑÉÈÌ ÷ñÞóç ÁËÖÁÑÉÈÌçôéêïý ùò äéá÷ùñéóôÞò áíôß ôïõ " +#~ "÷áñáêôÞñá íÝáò ãñáììÞò\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" + +# +#, fuzzy +#~ msgid "" +#~ "Print the last %d lines of each FILE to standard output.\n" +#~ "With more than one FILE, precede each with a header giving the file " +#~ "name.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " --retry keep trying to open a file even if it is\n" +#~ " inaccessible when tail starts or if it " +#~ "becomes\n" +#~ " inaccessible later -- useful only with -f\n" +#~ msgstr "" +#~ "ÅìöÜíéóç ôùí 10 ðñþôùí ãñáììþí áðü êÜèå ÁÑ×ÅÉÏ óôçí êáíïíéêÞ Ýîïäï.\n" +#~ "Ìå ðåñéóóüôåñá áðü Ýíá ÁÑ×ÅÉÏ, íá ðñïçãçèåß åðéóÝëéäï ìå ôï üíïìá ôïõ " +#~ "áñ÷åßïõ.\n" +#~ "×ùñßò ÁÑ×ÅÉÏ Þ üôáí ôï ÁÑ×ÅÉÏ åßíáé ôï -, áíÜãíùóç áðü ôçí êáíïíéêÞ " +#~ "åßóïäï.\n" +#~ "\n" +#~ " -c, --bytes=ÌÅÃÅÈÏÓ åìöÜíéóç ôùí ðñþôùí ÌÅÃÅÈÏÓ bytes\n" +#~ " -n, --lines=ÁÑÉÈÌÏÓ åìöÜíéóç ôùí ðñþôùí ÁÑÉÈÌÏÓ ãñáììþí áíôß ôùí " +#~ "ðñþôùí 10\n" +#~ " -q, --quiet, --silent íá ìçí ôõðþíïíôáé åðéóÝëéäá ìå ôá ïíüìáôá " +#~ "áñ÷åßùí\n" +#~ " -v, --verbose íá ôõðþíïíôáé ðÜíôá åðéóÝëéäá ìå ôá ïíüìáôá " +#~ "áñ÷åßùí\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "Ôï ÌÅÃÅÈÏÓ ìðïñåß íá Ý÷åé êáôÜëçîç ìå ðïëëáðëáóéáóôÞ: b ãéá 512, k ãéá " +#~ "1K, m ãéá 1 Meg.\n" +#~ "Áí ÷ñçóéìïðïéåßôáé ôï -VALUE óáí ðñþôç ÅÐÉËÏÃÇ, áíÜãíùóå -c ÔÉÌÇ üôáí\n" +#~ "Ýíáò áðü ôïõò ðïëëáðëáóéáóôÝò bkm áêïëïõèåß óõíåíùìÝíïò, äéáöïñåôéêÜ " +#~ "áíÜãíùóå -n ÔÉÌÇ\n" + +# +#, fuzzy +#~ msgid "" +#~ " -t, --tabs=NUMBER have tabs NUMBER characters apart instead of 8\n" +#~ " -t, --tabs=LIST use comma separated list of explicit tab positions\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n" +#~ msgstr "" +#~ "ÌåôáôñïðÞ óôçëïãíùìüíùí óå êÜèå ÁÑ×ÅÉÏ óå äéáóôÞìáôá, ìå åããñáöÞ óôçí " +#~ "êáíïíéêÞ Ýîïäï.\n" +#~ "×ùñßò ÁÑ×ÅÉÏ Þ üôáí ôï ÁÑ×ÅÉÏ åßíáé ôï -, áíÜãíùóç áðü ôçí êáíïíéêÞ " +#~ "åßóïäï.\n" +#~ "\n" +#~ " -i, --initial íá ìç ìåôáôñáðïýí ôá TAB ìåôÜ áðü ìç-ëåõêïýò " +#~ "÷áñáêôÞñåò\n" +#~ " -t, --tabs=ÁÑÉÈÌ ïé óôçëïãíþìïíåò íá Ý÷ïõí ìÝãåèïò ÁÑÉÈÌüò " +#~ "÷áñáêôÞñåò, ü÷é 8\n" +#~ " -t, --tabs=ËÉÓÔÁ ÷ñÞóç ëßóôáò äéá÷ùñéóìÝíçò ìå êüììáôá ãéá ïñéóìü " +#~ "èÝóåùí óôçëïãíùìüíùí\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "Áíôß ãéá -t ÁÑÉÈÌÏÓ Þ -t ËÉÓÔÁ, -ÁÑÉÈÌÏÓ Þ -ËÉÓÔÁ ìðïñïýí íá " +#~ "÷ñçóéìïðïéçèïýí.\n" + +# +#, fuzzy +#~ msgid "" +#~ "Output pieces of FILE separated by PATTERN(s) to files `xx01', " +#~ "`xx02', ...,\n" +#~ "and output byte counts of each piece to standard output.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --suffix-format=FORMAT use sprintf FORMAT instead of %%d\n" +#~ " -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +#~ " -k, --keep-files do not remove output files on errors\n" +#~ " -n, --digits=DIGITS use specified number of digits instead of 2\n" +#~ " -s, --quiet, --silent do not print counts of output file sizes\n" +#~ " -z, --elide-empty-files remove empty output files\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Read standard input if FILE is -. Each PATTERN may be:\n" +#~ "\n" +#~ " INTEGER copy up to but not including specified line number\n" +#~ " /REGEXP/[OFFSET] copy up to but not including a matching line\n" +#~ " %%REGEXP%%[OFFSET] skip to, but not including a matching line\n" +#~ " {INTEGER} repeat the previous pattern specified number of " +#~ "times\n" +#~ " {*} repeat the previous pattern as many times as " +#~ "possible\n" +#~ "\n" +#~ "A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +#~ msgstr "" +#~ "ÐáñÞãáãå ôìÞìáôá áðü ôï ÁÑ×ÅÉÏ äéá÷ùñéóìÝíá áðü ÌÏÑÖÇ(ÅÓ) óå áñ÷åßá " +#~ "`xx01', `xx02', ...,\n" +#~ "êáé åìöÜíéóå ôïõò áñéèìïýò ôùí byte êÜèå ôìÞìáôïò óôçí êáíïíéêÞ Ýîïäï.\n" +#~ "\n" +#~ " -b, --suffix-format=ÌÏÑÖÇ ÷ñÞóç ìïñöÞò áëÜ sprintf áíôß ôïõ %%d\n" +#~ " -f, --prefix=ÊÁÔÁËÇÎÇ ÷ñÞóç ÊÁÔÁËÇÎÇò áíôß ôïõ `xx'\n" +#~ " -k, --keep-files íá ìç äéáãñáöïýí ôá áñ÷åßá åîüäïõ óå " +#~ "ðåñßðôùóç óöáëìÜôùí\n" +#~ " -n, --digits=ØÇÖÉÁ ÷ñÞóç ØÇÖÉÁ áñéèìü øçößùí áíôß 2\n" +#~ " -s, --quiet, --silent íá ìçí åìöáíéóôïýí ïé ìåôñÞóåéò ôùí ìåãåèþí " +#~ "ôùí áñ÷åßùí\n" +#~ " -z, --elide-empty-files äéáãñáöÞ ôùí êåíþí áñ÷åßùí\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "ÁíÜãíùóç áðü êáíïíéêÞ åßóïäï åÜí ÁÑ×ÅÉÏ åßíáé ôï -. ÊÜèå ÌÏÑÖÇ ìðïñåß íá " +#~ "åßíáé:\n" +#~ "\n" +#~ " ÁÊÅÑÁÉÏÓ áíôéãñáöÞ ìÝ÷ñé, áëëÜ ÷ùñßò óõìðåñßëçøç, áñéèìü " +#~ "ãñáììÞò\n" +#~ " /ÊÁÍÅÊÖ/[ÈÅÓÇ] áíôéãñáöÞ ìÝ÷ñé, áëëÜ ÷ùñßò óõìðåñßëçøç, ìéáò " +#~ "ãñáììÞò ðïõ ôáéñéÜæåé\n" +#~ " %%ÊÁÍÅÊÖ%%[ÈÅÓÇ] ðáñÝêáìøå óå, áëëÜ ÷ùñßò óõìðåñßëçøç ãñáììÞò ðïõ " +#~ "ôáéñéÜæåé\n" +#~ " {ÁÊÅÑÁÉÏÓ} åðáíÜëçøç ôçò ðñïçãïýìåíçò ìïñöÞò ÁÊÅÑÁÉÏÓ öïñÝò\n" +#~ " {*} åðáíÜëçøç ôçò ðñïçãïýìåíçò ìïñöÞò üóïí ôï äõíáôü " +#~ "ðåñéóóüôåñåò öïñÝò\n" +#~ "\n" +#~ "Ç ÈÅÓÇ ãñáììÞò åßíáé Ýíá õðï÷ñåùôéêü `+' Þ `-' áêïëïõèïýìåíï áðü Ýíá " +#~ "èåôéêü áêÝñáéï.\n" + +# +#, fuzzy +#~ msgid "" +#~ "Print selected parts of lines from each FILE to standard output.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --bytes=LIST output only these bytes\n" +#~ " -c, --characters=LIST output only these characters\n" +#~ " -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +#~ " -f, --fields=LIST output only these fields; also print any line\n" +#~ " that contains no delimiter character, unless\n" +#~ " the -s option is specified\n" +#~ " -n (ignored)\n" +#~ " -s, --only-delimited do not print lines not containing delimiters\n" +#~ " --output-delimiter=STRING use STRING as the output delimiter\n" +#~ " the default is to use the input delimiter\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +#~ "range, or many ranges separated by commas. Each range is one of:\n" +#~ "\n" +#~ " N N'th byte, character or field, counted from 1\n" +#~ " N- from N'th byte, character or field, to end of line\n" +#~ " N-M from N'th to M'th (included) byte, character or field\n" +#~ " -M from first to M'th (included) byte, character or field\n" +#~ "\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ msgstr "" +#~ "ÅìöÜíéóç åðéëåãìÝíùí ôìçìÜôùí áðü ãñáììÝò áðü êÜèå ÁÑ×ÅÉÏ óôçí êáíïíéêÞ " +#~ "Ýîïäï.\n" +#~ "\n" +#~ " -b, --bytes=ËÉÓÔÁ åìöÜíéóç ìüíï áõôþí ôùí bytes\n" +#~ " -c, --characters=ËÉÓÔÁ åìöÜíéóç ìüíï áõôþí ôùí ÷áñáêôÞñùí\n" +#~ " -d, --delimiter=ÄÉÁ×ÙÑ ÷ñÞóç ÄÉÁ×ÙÑéóôÞ áíôß TAB ãéá äéá÷ùñéóôÞ " +#~ "ðåäßïõ\n" +#~ " -f, --fields=ËÉÓÔÁ åìöÜíéóç ìüíï áõôþí ôùí ðåäßùí\n" +#~ " -n (áãíïåßôå)\n" +#~ " -s, --only-delimited íá ìçí åìöáíéóôïýí ãñáììÝò ðïõ äåí ðåñéÝ÷ïõí " +#~ "äéá÷ùñéóôÝò\n" +#~ " --output-delimiter=ÁËÖÁÑÉÈ ÷ñÞóç ÁËÖÁÑÉÈÌÇÔÉÊÏÕ ãéá äéá÷ùñéóôÞ " +#~ "åîüäïõ\n" +#~ " ôï åî ïñéóìïý åßíáé ç ÷ñÞóç ôïõ äéá÷ùñéóôÞ " +#~ "åéóüäïõ\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "×ñÞóç åíüò êáé ìüíïõ áðü ôá -b, -c Þ -f. ÊÜèå ËÉÓÔÁ áðáñôßæåôáé áðü Ýíá " +#~ "äéÜóôçìá\n" +#~ "Þ ðïëëÜ äéáóôÞìáôá äéá÷ùñéóìÝíá ìå êüììáôá. ÊÜèå äéÜóôçìá åßíáé Ýíá " +#~ "áðü:\n" +#~ "\n" +#~ " N N-ïóôü byte, ÷áñáêôÞñá Þ ðåäßï, ìåôñçìÝíï áðü ôï 1\n" +#~ " N- áðü ôï N-ïóôü byte, ÷áñáêôÞñá Þ ðåäßï, ìÝ÷ñé ôÝëïò ãñáììÞò\n" +#~ " N-M áðü Í-ïóôü ìÝ÷ñé Ì-ïóôü (óõìðåñéëáìâáíïìÝíùí) byte, ÷áñáêôÞñá Þ " +#~ "ðåäßï\n" +#~ " -M áðü ðñþôï Ýùò Ì-ïóôü (óõìðåñéëáìâáíïìÝíùí) byte, ÷áñáêôÞñá Þ " +#~ "ðåäßï\n" +#~ "\n" +#~ "×ùñßò ÁÑ×ÅÉÏ Þ üôáí áñ÷åßï åßíáé ôï -, áíÜãíùóç áðü êáíïíéêÞ åßóïäï.\n" + +# +#~ msgid "" +#~ "For each pair of input lines with identical join fields, write a line to\n" +#~ "standard output. The default join field is the first, delimited\n" +#~ "by whitespace. When FILE1 or FILE2 (not both) is -, read standard " +#~ "input.\n" +#~ "\n" +#~ " -a SIDE print unpairable lines coming from file SIDE\n" +#~ " -e EMPTY replace missing input fields with EMPTY\n" +#~ " -i, --ignore-case ignore differences in case when comparing fields\n" +#~ " -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +#~ " -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +#~ " -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +#~ " -o FORMAT obey FORMAT while constructing output line\n" +#~ " -t CHAR use CHAR as input and output field separator\n" +#~ " -v SIDE like -a SIDE, but suppress joined output lines\n" +#~ " -1 FIELD join on this FIELD of file 1\n" +#~ " -2 FIELD join on this FIELD of file 2\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +#~ "else fields are separated by CHAR. Any FIELD is a field number counted\n" +#~ "from 1. FORMAT is one or more comma or blank separated specifications,\n" +#~ "each being `SIDE.FIELD' or `0'. Default FORMAT outputs the join field,\n" +#~ "the remaining fields from FILE1, the remaining fields from FILE2, all\n" +#~ "separated by CHAR.\n" +#~ msgstr "" +#~ "Ãéá êÜèå æåýãïò áðü ãñáììÝò åéóüäïõ ìå üìïéá ðåäßá óõíÝíùóçò, åìöÜíéóç " +#~ "ìéáò\n" +#~ "ãñáììÞò óôçí êáíïíéêÞ Ýîïäï. Ôï åî ïñéóìïý ðåäßï óõíÝíùóçò åßíáé ôï " +#~ "ðñþôï,\n" +#~ "äéá÷ùñéóìÝíï ìå ëåõêü ÷áñáêôÞñá. ¼ôáí ôï ÁÑ×ÅÉÏ1 Þ ÁÑ×ÅÉÏ2 (ü÷é êáé ôá " +#~ "äýï)\n" +#~ "åßíáé ôï -, áíÜãíùóç áðü ôçí êáíïíéêÞ åßóïäï.\n" +#~ "\n" +#~ " -a ÌÅÑÏÓ åìöÜíéóç áôáßñéáóôùí ãñáììþí, ðñïåñ÷üìåíåò áðü ôï " +#~ "áñ÷åßï ÌÅÑÏÓ\n" +#~ " -e ÊÅÍÏ áíôéêáôÜóôáóç åëëéðþí ðåäßùí åéóüäïõ ìå ÊÅÍÏ\n" +#~ " -i, --ignore-case áãíüçóç äéáöïñþí ìåôáîý ðåæþí/êåöáëáßùí üôáí " +#~ "óõãêñßíïíôáé ðåäßá\n" +#~ " -j ÐÅÄÉÏ (äåí åßíáé óå ÷ñÞóç) éóïäýíáìå ìå `-1 FIELD -2 " +#~ "FIELD'\n" +#~ " -j1 ÐÅÄÉÏ (äåí åßíáé óå ÷ñÞóç) éóïäýíáìï ìå `-1 FIELD'\n" +#~ " -j2 ÐÅÄÉÏ (äåí åßíáé óå ÷ñÞóç) éóïäýíáìï ìå `-2 FIELD'\n" +#~ " -o ÌÏÑÖÇ ÷ñÞóç ôïõ ÌÏÑÖÇ óôçí êáôáóêåõÞ ôçò ãñáììÞò åîüäïõ\n" +#~ " -t ×ÁÑÁÊÔ ÷ñÞóç ×ÁÑÁÊÔÞñá ãéá äéá÷ùñéóôÞ ðåäßïõ ãéá åßóïäï êáé " +#~ "Ýîïäï\n" +#~ " -v ÌÅÑÏÓ üðùò -a ÌÅÑÏÓ, áëëÜ ìå áðüêñõøç ôùí óõíåíùìÝíùí " +#~ "ãñáììþí åîüäïõ\n" +#~ " -1 ÐÅÄÉÏ óõíÝíùóç óå áõôü ôï ÐÅÄÉÏ ôïõ áñ÷åßïõ 1\n" +#~ " -2 ÐÅÄÉÏ óõíÝíùóç óå áõôü ôï ðåäßï ôïõ áñ÷åßïõ 2\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "Åêôüò áí äßíåôáé -t ×ÁÑÁÊÔÞñáò, ôá ðñïðïñåõüìåíá êåíÜ äéá÷ùñßæïõí ôá " +#~ "ðåäßá\n" +#~ "êáé áãíïïýíôáé, äéáöïñåôéêÜ ôá ðåäßá ÷ùñßæïíôáé áðü ôï ×ÁÑÁÊÔÞñá.\n" +#~ "ÏðïéïäÞðïôå ÐÅÄÉÏ åßíáé Ýíáò áñéèìüò ðåäßïõ ìåôñïýìåíïò áðü ôï 1.\n" +#~ "Ç ÌÏÑÖÇ åßíáé ìéá Þ ðåñéóóüôåñåò äçëþóåéò äéá÷ùñéóìÝíåò ìå êüììá Þ êåíü,\n" +#~ "ìå ôï êáèÝíá íá åßíáé `ÌÅÑÏÓ.ÐÅÄÉÏ' Þ `0'. Ç åî ïñéóìïý ÌÏÑÖÇ åìöáíßæåé\n" +#~ "ôï ðåäßï óõíÝíùóçò, ôá õðüëïéðá ðåäßá áðü ôï ÁÑ×ÅÉÏ1, ôá õðüëïéðá ðåäßá\n" +#~ "áðü ôï ÁÑ×ÅÉÏ2, üëá äéá÷ùñéóìÝíá áðü ôï ×ÁÑÁÊÔÞñá.\n" + +# +#, fuzzy +#~ msgid "" +#~ "Usage: %s [OPTION] [FILE]...\n" +#~ " or: %s [OPTION] --check [FILE]\n" +#~ "Print or check %s (%d-bit) checksums.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ " -b, --binary read files in binary mode (default on DOS/" +#~ "Windows)\n" +#~ " -c, --check check %s sums against given list\n" +#~ " -t, --text read files in text mode (default)\n" +#~ "\n" +#~ "The following two options are useful only when verifying checksums:\n" +#~ " --status don't output anything, status code shows " +#~ "success\n" +#~ " -w, --warn warn about improperly formated checksum lines\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "The sums are computed as described in %s. When checking, the input\n" +#~ "should be a former output of this program. The default mode is to print\n" +#~ "a line with checksum, a character indicating type (`*' for binary, ` ' " +#~ "for\n" +#~ "text), and name for each FILE.\n" +#~ msgstr "" +#~ "×ñÞóçe: %s [ÅÐÉËÏÃÇ] [ÁÑ×ÅÉÏ]...\n" +#~ " Þ: %s [ÅÐÉËÏÃÇ] --check [ÁÑ×ÅÉÏ]\n" +#~ "ÅìöÜíéóç Þ Ýëåã÷ïò áèñïéóìÜôùí åëÝã÷ïõ MD5.\n" +#~ "×ùñßò ÁÑ×ÅÉÏ, Þ üôáí ôï áñ÷åßï åßíáé ôï -, áíÜãíùóç áðü ôçí êáíïíéêÞ " +#~ "åßóïäï.\n" +#~ "\n" +#~ " -b, --binary áíÜãíùóç áñ÷åßùí óå äõáäéêÞ êáôÜóôáóç (åî " +#~ "ïñéóìïý ãéá DOS/Windows)\n" +#~ " -c, --check Ýëåã÷ïò áèñïéóìÜôùí MD5 óå ó÷Ýóç ìå äïóìÝíç " +#~ "ëßóôá\n" +#~ " -t, --text áíÜãíùóç áñ÷åßùí óå êáôÜóôáóç êåéìÝíïõ (åî " +#~ "ïñéóìïý)\n" +#~ "\n" +#~ "Ïé åðüìåíåò äýï åðéëïãÝò åßíáé ÷ñÞóéìåò ìüíï óôçí åðéâåâáßùóç áèñïéóìÜôùí " +#~ "åëÝã÷ïõ:\n" +#~ " --status íá ìçí åìöáíéóôåß ôßðïôá, ï êþäéêáò êáôÜóôáóçò " +#~ "äçëþíåé ôçí åðéôõ÷ßá\n" +#~ " -w, --warn ðñïåéäïðïßçóå ãéá áíôéêáíïíéêÜ ìïñöïðïéçìÝíåò " +#~ "ãñáììÝò ìå áèñïßóìáôá åëÝã÷ïõ MD5\n" +#~ "\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "Ôá áèñïßóìáôá õðïëïãßæïíôáé üðùò ðåñéãñÜöåôáé óôï RFC 1321. Óôïí Ýëåã÷ï, " +#~ "ç åßóïäïò\n" +#~ "èá ðñÝðåé íá åßíáé ìéá ðñïçãïýìåíç Ýîïäïò áõôïý ôïõ ðñïãñÜììáôïò. Ç åî " +#~ "ïñéóìïý êáôÜóôáóç\n" +#~ "åßíáé íá åêôõðþíåôáé ìéá ãñáììÞ ìå ôï Üèñïéóìá åëÝã÷ïõ, Ýíá ÷áñáêôÞñá " +#~ "Ýíäåéîçò ôýðïõ\n" +#~ "(`*' ãéá äõáäéêü, ` ' ãéá êåßìåíï), êáé ôï üíïìá ãéá êÜèå ÁÑ×ÅÉÏ.\n" + +# +#, fuzzy +#~ msgid "" +#~ "Write each FILE to standard output, with line numbers added.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +#~ " -d, --section-delimiter=CC use CC for separating logical pages\n" +#~ " -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +#~ " -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +#~ " -i, --page-increment=NUMBER line number increment at each line\n" +#~ " -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +#~ "one\n" +#~ " -n, --number-format=FORMAT insert line numbers according to " +#~ "FORMAT\n" +#~ " -p, --no-renumber do not reset line numbers at logical " +#~ "pages\n" +#~ " -s, --number-separator=STRING add STRING after (possible) line " +#~ "number\n" +#~ " -v, --first-page=NUMBER first line number on each logical page\n" +#~ " -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +#~ "two delimiter characters for separating logical pages, a missing\n" +#~ "second character implies :. Type \\\\ for \\. STYLE is one of:\n" +#~ "\n" +#~ " a number all lines\n" +#~ " t number only nonempty lines\n" +#~ " n number no lines\n" +#~ " pREGEXP number only lines that contain a match for REGEXP\n" +#~ "\n" +#~ "FORMAT is one of:\n" +#~ "\n" +#~ " ln left justified, no leading zeros\n" +#~ " rn right justified, no leading zeros\n" +#~ " rz right justified, leading zeros\n" +#~ "\n" +#~ msgstr "" +#~ "ÅìöÜíéóç êÜèå ÁÑ×ÅÉÏÕ óôçí êáíïíéêÞ Ýîïäï, ìå ðñüóèåóç áñéèìþí ãñáììÞò.\n" +#~ "×ùñßò ÁÑ×ÅÉÏ, Þ üôáí ôï áñ÷åßï åßíáé ôï -, áíÜãíùóç áðü ôçí êáíïíéêÞ " +#~ "åßóïäï.\n" +#~ "\n" +#~ " -b, --body-numbering=ÓÔÕË ÷ñÞóç ÓÔÕË óôçí áñßèìçóç ôùí ãñáììþí " +#~ "ôïõ\n" +#~ " êõñßïõ ìÝñïõò\n" +#~ " -d, --section-delimiter=CC ÷ñÞóç ôïõ CC óôï ÷ùñéóìü ëïãéêþí " +#~ "óåëßäùí\n" +#~ " -f, --footer-numbering=ÓÔÕË ÷ñÞóç ÓÔÕË óôçí áñßèìçóç ôùí ãñáììþí " +#~ "ôïõ\n" +#~ " õðïóÝëéäïõ\n" +#~ " -h, --header-numbering=ÓÔÕË ÷ñÞóç ÓÔÕË óôçí áñßèìçóç ôùí ãñáììþí " +#~ "ôïõ\n" +#~ " åðéóÝëéäïõ\n" +#~ " -i, --page-increment=ÁÑÉÈÌÏÓ áýîçóç áñéèìïý ãñáììÞò óå êÜèå ãñáììÞ\n" +#~ " -l, --join-blank-lines=ÁÑÉÈÌÏÓ ïìÜäá áðü ÁÑÉÈÌÏÓ êåíþí ãñáììþí ðïõ\n" +#~ " ìåôñïýíôáé ùò ìßá\n" +#~ " -n, --number-format=ÌÏÑÖÇ åéóáãùãÞ áñßèìçóç ãñáììþí óýìöùíá ìå " +#~ "ÌÏÑÖÇ\n" +#~ " -p, --no-renumber íá ìç ìçäåíßæåôáé ç áñßèìçóç ãñáììþí " +#~ "óôéò\n" +#~ " ëïãéêÝò óåëßäåò\n" +#~ " -s, --number-separator=ÁËÖÁÑÉÈÌ ðñüóèåóç ÁËÖÁÑÉÈÌçôéêïý ìåôÜ áðü " +#~ "(ðéèáíü)\n" +#~ " áñéèìü ãñáììÞò\n" +#~ " -v, --first-page=ÁÑÉÈÌÏÓ ðñþôïò áñéèìüò ãñáììÞò óå êÜèå ëïãéêÞ " +#~ "óåëßäá\n" +#~ " -w, --number-width=ÁÑÉÈÌÏÓ ÷ñÞóç ÁÑÉÈÌÏÓ áðü óôÞëåò ãéá áñéèìïýò " +#~ "ãñáììÞò\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé " +#~ "Ýîïäïò\n" +#~ "\n" +#~ "Åî ïñéóìïý, åßíáé -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC åßíáé\n" +#~ "äýï ÷áñáêôÞñåò äéá÷ùñéóìïý ãéá ôï ÷ùñéóìü ôùí ëïãéêþí óåëßäùí, ç áðïõóßá\n" +#~ "äåýôåñïõ ÷áñáêôÞñá õðïäçëþíåé :. ÃñÜøôå \\\\ ãéá \\. Ôï ÓÔÕË åßíáé Ýíá " +#~ "áðü:\n" +#~ "\n" +#~ " a áñéèìüò ãñáììþí\n" +#~ " t áñßèìçóç ìüíï ìç êåíþí ãñáììþí\n" +#~ " n íá ìçí áñéèìçèïýí ïé ãñáììÝò\n" +#~ " pÊÁÍÅÊÖ íá áñéèìçèïýí ìüíï ãñáììÝò ðïõ ðåñéÝ÷ïõí ôáßñéáóìá ãéá ôçí\n" +#~ " ÊÁÍïíéêÞ ¸ÊÖñáóç\n" +#~ "\n" +#~ "ÌÏÑÖÇ åßíáé Ýíá áðü:\n" +#~ "\n" +#~ " ln óôïß÷éóç óôá áñéóôåñÜ, ÷ùñßò ðñïðïñåõüìåíá ìçäåíéêÜ\n" +#~ " rn óôïß÷éóç óôá äåîéÜ, ÷ùñßò ðñïðïñåõüìåíá ìçäåíéêÜ\n" +#~ " rz óôïß÷éóç óôá äåîéÜ, ÷ùñßò ðñïðïñåõüìåíá ìçäåíéêÜ\n" +#~ "\n" + +# +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Write an unambiguous representation, octal bytes by default,\n" +#~ "of FILE to standard output. With more than one FILE argument,\n" +#~ "concatenate them in the listed order to form the input.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -A, --address-radix=RADIX decide how file offsets are printed\n" +#~ " -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +#~ " -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +#~ " -s, --strings[=BYTES] output strings of at least BYTES graphic " +#~ "chars\n" +#~ " -t, --format=TYPE select output format or formats\n" +#~ " -v, --output-duplicates do not use * to mark line suppression\n" +#~ " -w, --width[=BYTES] output BYTES bytes per output line\n" +#~ " --traditional accept arguments in pre-POSIX form\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Pre-POSIX format specifications may be intermixed, they accumulate:\n" +#~ " -a same as -t a, select named characters\n" +#~ " -b same as -t oC, select octal bytes\n" +#~ " -c same as -t c, select ASCII characters or backslash escapes\n" +#~ " -d same as -t u2, select unsigned decimal shorts\n" +#~ " -f same as -t fF, select floats\n" +#~ " -h same as -t x2, select hexadecimal shorts\n" +#~ " -i same as -t d2, select decimal shorts\n" +#~ " -l same as -t d4, select decimal longs\n" +#~ " -o same as -t o2, select octal shorts\n" +#~ " -x same as -t x2, select hexadecimal shorts\n" +#~ msgstr "" +#~ "ÅìöÜíéóç ìéáò ÷ùñßò áóÜöåéåò áíáðáñÜóôáóç, ìå ïêôáäéêÜ bytes åî ïñéóìïý,\n" +#~ "ôïõ ÁÑ×ÅÉÏ óôç êáíïíéêÞ Ýîïäï. ×ùñßò ÁÑ×ÅÉÏ, Þ üôáí ôï áñ÷åßï åßíáé ôï " +#~ "-,\n" +#~ "áíÜãíùóç áðü ôçí êáíïíéêÞ åßóïäï.\n" +#~ "\n" +#~ " -A, --address-radix=RADIX åðéëïãÞ ôïõ ðþò åêôõðþíïíôáé ïé èÝóåéò " +#~ "áñ÷åßïõ\n" +#~ " -j, --skip-bytes=BYTES ðñïóðÝñáóìá ôùí ðñþôùí BYTES bytes åéóüäïõ " +#~ "áðü\n" +#~ " êÜèå áñ÷åßï\n" +#~ " -N, --read-bytes=BYTES ðåñéïñéóìüò ôçò åìöÜíéóçò óôá ðñþôá BYTES\n" +#~ " byte åéóüäïõ ãéá êÜèå áñ÷åßï\n" +#~ " -s, --strings[=BYTES] åìöÜíéóç áëöáñéèìçôéêþí ìå ôïõëÜ÷éóôïí " +#~ "BYTES\n" +#~ " ãñáöéêïýò ÷áñáêôÞñåò\n" +#~ " -t, --format=ÅÉÄÏÓ åðéëïãÞ ìïñöÞò åîüäïõ Þ ìïñöÝò\n" +#~ " -v, --output-duplicates íá ìç ÷ñçóéìïðïéçèåß * íá ãéá õðïäçëþóåé\n" +#~ " áðüññéøç ãñáììÞò\n" +#~ " -w, --width[=BYTES] åìöÜíéóç BYTES bytes ãéá êÜèå ãñáììÞ " +#~ "åîüäïõ\n" +#~ " --traditional áðïäï÷Þ ïñéóìÜôùí óå ðñï-POSIX ìïñöÞ\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "ïé ðñï-POSIX äçëþóåéò ìïñöþí ìðïñïýí íá áíáìéãíýïíôáé, äñïõí ðñïóèåôéêÜ:\n" +#~ " -a ßäéï ìå -t a, åðéëïãÞ äïèÝíôùí ÷áñáêôÞñùí\n" +#~ " -b ßäéï ìå -t oC, åðéëïãÞ ïêôáäéêþí bytes\n" +#~ " -c ßäéï ìå -t c, åðéëïãÞ ÷áñáêôÞñùí ASCII Þ äéáöõãÝò ìå ðéóùêÜèåôï\n" +#~ " -d ßäéï ìå -t u2, åðéëïãÞ ìç-ðñïóçìáóìÝíùí äåêáäéêþí ìéêñþí áêÝñáéùí\n" +#~ " -f ßäéï ìå -t fF, åðéëïãÞ áñéèìþí êéíçôÞò õðïäéáóôïëÞò\n" +#~ " -h ßäéï ìå -t x2, åðéëïãÞ äåêáåîáäéêþí ìéêñþí áêåñáßùí\n" +#~ " -i ßäéï ìå -t d2, åðéëïãÞ äåêáäéêþí ìéêñþí áêåñáßùí\n" +#~ " -l ßäéï ìå -t d4, åðéëïãÞ äåêáäéêþí áêåñáßùí\n" +#~ " -o ßäéï ìå -t o2, åðéëïãÞ ïêôáäéêþí ìéêñþí áêåñáßùí\n" +#~ " -x ßäéï ìå -t x2, åðéëïãÞ äåêáåîáäéêþí ìéêñþí áêåñáßùí\n" + +# +#~ msgid "" +#~ "\n" +#~ "For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +#~ "is the pseudo-address at first byte printed, incremented when dump is\n" +#~ "progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +#~ "hexadecimal, suffixes maybe . for octal and b multiply by 512.\n" +#~ "\n" +#~ "TYPE is made up of one or more of these specifications:\n" +#~ "\n" +#~ " a named character\n" +#~ " c ASCII character or backslash escape\n" +#~ " d[SIZE] signed decimal, SIZE bytes per integer\n" +#~ " f[SIZE] floating point, SIZE bytes per integer\n" +#~ " o[SIZE] octal, SIZE bytes per integer\n" +#~ " u[SIZE] unsigned decimal, SIZE bytes per integer\n" +#~ " x[SIZE] hexadecimal, SIZE bytes per integer\n" +#~ "\n" +#~ "SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +#~ "sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +#~ "sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +#~ "for sizeof(double) or L for sizeof(long double).\n" +#~ "\n" +#~ "RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +#~ "BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +#~ "with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix " +#~ "to\n" +#~ "any type adds a display of printable characters to the end of each line\n" +#~ "of output. -s without a number implies 3. -w without a number implies " +#~ "32.\n" +#~ "By default, od uses -A o -t d2 -w 16.\n" +#~ msgstr "" +#~ "\n" +#~ "Ãéá ôçí ðáëáéüôåñç óýíôáîç (äåýôåñç ìïñöÞ êëÞóçò), ç ÈÅÓÇ åßíáé -j ÈÅÓÇ.\n" +#~ "Ôï ×ÁÑÁÊÔÇÑÉÓÔÉÊÏ åßíáé ç øåõäï-äéåýèõíóç óôï ðñþôï byte ðïõ ôõðþíåôáé,\n" +#~ "áõîáíüìåíï êáèþò ç Ýîïäïò ðñïïäåýåé. Ãéá ÈÅÓÇ êáé ×ÁÑÁÊÔÇÑÉÓÔÉÊÏ, ôï\n" +#~ "ðñüèåìá 0x Þ 0X äçëþíåé äåêáåîáäéêü, ïé êáôáëÞîåéò ßóùò. Ãéá ïêôáäéêÜ " +#~ "êáé\n" +#~ "b ðïëëáðëáóéÜóôå ìå 512.\n" +#~ "\n" +#~ "Ôï ÅÉÄÏÓ áðáñôßæåôáé áðü ìéá Þ ðåñéóóüôåñåò áðü ôéò ðáñáêÜôù äçëþóåéò:\n" +#~ "\n" +#~ " a äïèÝí ÷áñáêôÞñáò\n" +#~ " c ÷áñáêôÞñáò ASCII Þ äéáöõãÞ ìå ðéóùêÜèåôï\n" +#~ " d[ÌÅÃÅÈÏÓ] ðñïóçìáóìÝíïò äåêáäéêüò, ÌÅÃÅÈÏÓ bytes áíÜ áêÝñáéï\n" +#~ " f[ÌÅÃÅÈÏÓ] êéíçôÞò õðïäéáóôïëÞò, ÌÅÃÅÈÏÓ bytes áíÜ áêÝñáéï\n" +#~ " o[ÌÅÃÅÈÏÓ] ïêôáäéêüò, ÌÅÃÅÈÏÓ bytes áíÜ áêÝñáéï\n" +#~ " u[ÌÅÃÅÈÏÓ] ÷ùñßò ðñüóçìï äåêáäéêüò, ÌÅÃÅÈÏÓ bytes áíÜ áêÝñáéï\n" +#~ " x[ÌÅÃÅÈÏÓ] äåêáåîáäéêü, ÌÅÃÅÈÏÓ bytes áíÜ áêÝñáéï\n" +#~ "\n" +#~ "Ôï ÌÅÃÅÈÏÓ åßíáé Ýíáò áñéèìüò. Ãéá ôï ÅÉÄÏÓ, ôï ÌÅÃÅÈÏÓ ìðïñåß íá åßíáé " +#~ "C\n" +#~ "ãéá sizeof(char), S ãéá sizeof(short), I ãéá sizeof(int) Þ L ãéá\n" +#~ "sizeof(long). Áí ôï ÅÉÄÏÓ åßíáé f, ôï ÌÅÃÅÈÏÓ ìðïñåß åðßóçò íá åßíáé F\n" +#~ "ãéá sizeof(float), D ãéá sizeof(double) Þ L ãéá sizeof(long double).\n" +#~ "\n" +#~ "Ç ÂÁÓÇ åßíáé d ãéá äåêáäéêü, o ãéá ïêôáäéêü, x ãéá äåêáåîáäéêü Þ n ãéá " +#~ "ôßðïôá.\n" +#~ "Ôï BYTES åßíáé äåêáåîáäéêü áí Ý÷åé ðñüèåìá 0x Þ 0X, ðïëëáðëáóéÜæåôáé ìå " +#~ "512\n" +#~ "áí Ý÷åé êáôÜëçîç b, ìå 1024 áí Ý÷åé k êáé ìå 1048576 áí Ý÷åé m. " +#~ "ÐñïóèÝôïíôáò\n" +#~ "ôçí êáôÜëçîç z óå êÜèå åßäïò, ðñïóèÝôåé ôçí åìöÜíéóç ôùí åêôõðþóéìùí\n" +#~ "÷áñáêôÞñùí óôï ôÝëïò êÜèå ãñáììÞò ôçò åîüäïõ. Ôï -s ÷ùñßò áñéèìü " +#~ "õðïäçëþíåé\n" +#~ "3. Ôï -w ÷ùñßò áñéèìü õðïäçëþíåé 32.\n" +#~ "Åî ïñéóìïý, ç od ÷ñçóéìïðïéåß -A o -t d2 -w 16.\n" + +# +#, fuzzy +#~ msgid "" +#~ "Paginate or columnate FILE(s) for printing.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +#~ " begin [stop] printing with page FIRST_[LAST_]PAGE\n" +#~ " -COLUMN, --columns=COLUMN\n" +#~ " produce COLUMN-column output and print columns down,\n" +#~ " unless -a is used. Balance number of lines in the\n" +#~ " columns on each page.\n" +#~ " -a, --across print columns across rather than down, used together\n" +#~ " with -COLUMN\n" +#~ " -c, --show-control-chars\n" +#~ " use hat notation (^G) and octal backslash notation\n" +#~ " -d, --double-space\n" +#~ " double space the output\n" +#~ " -D, --date-format=FORMAT\n" +#~ " use FORMAT for the header date\n" +#~ " -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +#~ " expand input CHARs (TABs) to tab WIDTH (8)\n" +#~ " -F, -f, --form-feed\n" +#~ " use form feeds instead of newlines to separate pages\n" +#~ " (by a 3-line page header with -F or a 5-line header\n" +#~ " and trailer without -F)\n" +#~ msgstr "" +#~ "Óåëéäïðïßçóç Þ óôçëïðïßçóç ÁÑ×ÅÉÏÕ(ÙÍ) ãéá åêôýðùóç.\n" +#~ "\n" +#~ " +ÐÑÙÔÇ_ÓÅËÉÄÁ[:ÔÅËÅÕÔÁÉÁ_ÓÅËÉÄÁ], --pages=ÐÑÙÔÇ_ÓÅËÉÄÁ[:" +#~ "ÔÅËÅÕÔÁÉÁ_ÓÅËÉÄÁ]\n" +#~ " Ýíáñîç [äéáêïðÞ] åêôýðùóçò ìå óåëßäá\n" +#~ " ÐÑÙÔÇ_[ÔÅËÅÕÔÁÉÁ_]ÓÅËÉÄÁ\n" +#~ " -ÓÔÇËÇ, --columns=ÓÔÇËÇ\n" +#~ " ðáñáãùãÞ åîüäïõ ìå ÓÔÇËÇ-óôÞëåò êáé åêôýðùóç óôçëþí\n" +#~ " ðñïò ôá êÜôù, åêôüò áí ÷ñçóéìïðïéåßôáé ôï -a.\n" +#~ " Éóïññüðçóç ôïõ áñéèìïý ãñáììþí óôéò óôÞëåò êÜèå\n" +#~ " óåëßäáò.\n" +#~ " -a, --across åìöÜíéóç óôçëþí êáôÜ ìÞêïò áíôß ðñïò ôá êÜôù, óå " +#~ "÷ñÞóç\n" +#~ " ìå -ÓÔÇËÇ\n" +#~ " -c, --show-control-chars\n" +#~ " ÷ñÞóç áíáðáñÜóôáóçò ìå êáðÝëï (^G) êáé ïêôáäéêÞò\n" +#~ " áíáðáñÜóôáóçò ìå ðéóùêÜèåôï\n" +#~ " -d, --double-space\n" +#~ " äéðëÜ äéáóôÞìáôá óôçí Ýîïäï\n" +#~ " -e[×ÁÑÁÊÔ[ÐËÁÔÏÓ]], --expand-tabs[=×ÁÑÁÊÔ[ÐËÁÔÏÓ]]\n" +#~ " áíÜðôõîç ×ÁÑÁÊÔÞñùí åéóüäïõ (TABs) óå óôçëïèÝôç ìå\n" +#~ " ðëÜôïò ÐËÁÔÏÓ(8)\n" +#~ " -F, -f, --form-feed\n" +#~ " ÷ñÞóç ÷áñáêôÞñùí áëëáãÞò óåëßäáò áíôß ÷áñáêôÞñùí " +#~ "íÝáò\n" +#~ " ãñáììÞò ãéá ÷ùñéóìü óåëßäùí\n" +#~ " (-F ãéá åðéóÝëéäï 3 ãñáììþí Þ åðéóÝëéäï 5 ãñáììþí\n" +#~ " êáé áêüëïõèï ÷ùñßò -F)\n" + +# +#, fuzzy +#~ msgid "" +#~ " -h HEADER, --header=HEADER\n" +#~ " use a centered HEADER instead of filename in page " +#~ "header,\n" +#~ " -h \"\" prints a blank line, don't use -h\"\"\n" +#~ " -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +#~ " replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +#~ " -J, --join-lines merge full lines, turns off -W line truncation, no " +#~ "column\n" +#~ " alignment, -S[STRING] sets separators\n" +#~ " -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +#~ " set the page length to PAGE_LENGTH (66) lines\n" +#~ " (default number of lines of text 56, and with -F 63)\n" +#~ " -m, --merge print all files in parallel, one in each column,\n" +#~ " truncate lines, but join lines of full length with -" +#~ "J\n" +#~ " -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +#~ " number lines, use DIGITS (5) digits, then SEP (TAB),\n" +#~ " default counting starts with 1st line of input file\n" +#~ " -N NUMBER, --first-line-number=NUMBER\n" +#~ " start counting with NUMBER at 1st line of first\n" +#~ " page printed (see +FIRST_PAGE)\n" +#~ " -o MARGIN, --indent=MARGIN\n" +#~ " offset each line with MARGIN (zero) spaces, do not\n" +#~ " affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +#~ " -r, --no-file-warnings\n" +#~ " omit warning when a file cannot be opened\n" +#~ msgstr "" +#~ " -h ÅÐÉÓÅËÉÄÏ, --header=ÅÐÉÓÅËÉÄÏ\n" +#~ " ÷ñÞóç êåíôñáñéóìÝíïõ ÅÐÉÓÅËÉÄÏÕ áíôß ôïõ ïíüìáôïò\n" +#~ " áñ÷åßïõ óôï åðéóÝëéäï,\n" +#~ " ìå ìáêñÜ åðéóÝëéäá ìðïñåß íá ãßíåé áðïêïðÞ áðü ôá " +#~ "áñéóôåñÜ,\n" +#~ " -h \"\" ôõðþíåé ìéá êåíÞ ãñáììÞ, ìçí êÜíåôå ÷ñÞóç ôïõ " +#~ "-h\"\"\n" +#~ " -i[×ÁÑÁÊÔ[ÐËÁÔÏÓ]], --output-tabs[=×ÁÑÁÊÔ[ÐËÁÔÏÓ]]\n" +#~ " áíôéêáôÜóôáóç äéáóôçìÜôùí ìå ×ÁÑÁÊÔÞñá(TABs) óå " +#~ "ìÞêïò\n" +#~ " óôçëïèÝôç ÐËÁÔÏÓ(8)\n" +#~ " -J, --join-lines óõíÝíùóç ãåìÜôùí ãñáììþí, áðåíåñãïðïéåß ìçäåíéóìü\n" +#~ " ãñáììÞò ôïõ -W, ÷ùñßò\n" +#~ " óôïß÷éóç óôÞëçò, -S[ÁËÖÁÑÉÈÌ] èÝôåé äéá÷ùñéóôÝò\n" +#~ " -l ÌÇÊÏÓ_ÓÅËÉÄÁÓ, --length=ÌÇÊÏÓ_ÓÅËÉÄÁÓ\n" +#~ " èÝôåé ôï ìÞêïò óåëßäáò óå ÌÇÊÏÓ_ÓÅËÉÄÁÓ (66) ãñáììÝò\n" +#~ " (åî ïñéóìïý áñéèìüò ãñáììþí êåéìÝíïõ åßíáé 56, êáé " +#~ "ìå\n" +#~ " -F 63)\n" +#~ " -m, --merge åêôýðùóç üëùí ôùí áñ÷åßùí ðáñÜëëçëá, Ýíá óå êÜèå " +#~ "óôÞëç,\n" +#~ " ìçäåíéóìüò ãñáììþí Üëëá óõíÝíùóç ãñáììþí ðëÞñïõò " +#~ "ìÞêïõò\n" +#~ " ìå -J\n" +#~ " -n[ÄÉÁ×[ØÇÖÉÁ]], --number-lines[=ÄÉÁ×[ØÇÖÉÁ]]\n" +#~ " áñßèìçóç ãñáììþí, ÷ñÞóç ØÇÖÉÁ (5) øçößá, ìåôÜ ÄÉÁ× " +#~ "(TAB),\n" +#~ " åî ïñéóìïý ìÝôñçóç îåêéíÜ ìå ôç ðñþôç ãñáììÞ ôïõ\n" +#~ " áñ÷åßïõ åéóüäïõ\n" +#~ " -N ÁÑÉÈÌÏÓ, --first-line-number=ÁÑÉÈÌÏÓ\n" +#~ " Ýíáñîç ìÝôñçóçò ìå ÁÑÉÈÌÏÓ óôç ðñþôç ãñáììÞ ôçò " +#~ "ðñþôçò\n" +#~ " óåëßäáò\n" +#~ " ðïõ åêôõðþíåôáé(äåßôå +ÐÑÙÔÇ_ÓÅËÉÄÁ)\n" +#~ " -o ÐÅÑÉÈÙÑÉÏ, --indent=ÐÅÑÉÈÙÑÉÏ\n" +#~ " ðáñÝìâáëå êÜèå ãñáììÞ ìå ÐÅÑÉÈÙÑÉÏ (ìçäÝí) " +#~ "äéáóôÞìáôá,\n" +#~ " íá ìçí åðçñåáóôïýí ôá -w Þ -W, ôï ÐÅÑÉÈÙÑÉÏ èá " +#~ "ðñïóôåèåß\n" +#~ " óôï ÐËÁÔÏÓ_ÓÅËÉÄÁÓ\n" +#~ " -r, --no-file-warnings\n" +#~ " ðáñÜëçøç ðñïåéäïðïßçóçò üôáí ôï áñ÷åßï äåí ìðïñåß íá\n" +#~ " áíïé÷ôåß\n" + +# +#~ msgid "" +#~ " -s[CHAR],--separator[=CHAR]\n" +#~ " separate columns by a single character, default for " +#~ "CHAR\n" +#~ " is the character without -w and 'no char' with -" +#~ "w\n" +#~ " -s[CHAR] turns off line truncation of all 3 column\n" +#~ " options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +#~ " -S[STRING], --sep-string[=STRING]\n" +#~ " separate columns by an optional STRING, don't use\n" +#~ " -S \"STRING\", -S only: No separator used (same as -S" +#~ "\"\"),\n" +#~ " without -S: Default separator with -J and " +#~ "\n" +#~ " otherwise (same as -S\" \"), no effect on column " +#~ "options\n" +#~ " -t, --omit-header omit page headers and trailers\n" +#~ " -T, --omit-pagination\n" +#~ " omit page headers and trailers, eliminate any " +#~ "pagination\n" +#~ " by form feeds set in input files\n" +#~ " -v, --show-nonprinting\n" +#~ " use octal backslash notation\n" +#~ " -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +#~ " set page width to PAGE_WIDTH (72) characters for\n" +#~ " multiple text-column output only, -s[char] turns off " +#~ "(72)\n" +#~ " -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +#~ " set page width to PAGE_WIDTH (72) characters always,\n" +#~ " truncate lines, except -J option is set, no " +#~ "interference\n" +#~ " with -S or -s\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +#~ "FILE is -, read standard input.\n" +#~ msgstr "" +#~ " -s[×ÁÑÁÊÔ],--separator[=×ÁÑÁÊÔ]\n" +#~ " äéá÷ùñéóìüò óôçëþí ìå Ýíá ÷áñáêôÞñá, åî ïñéóìïý ôéìÞ\n" +#~ " ãéá ×ÁÑÁÊÔ\n" +#~ " åßíáé ôï ÷ùñßò -w êáé 'ü÷é ÷áñáêô' ìå -w\n" +#~ " -s[×ÁÑÁÊÔ] áðåíåñãïðïéåß ôï ìçäåíéóìü ãñáììÞò áðü " +#~ "üëåò\n" +#~ " (3) ôçò åðéëïãÝò\n" +#~ " óôÞëçò (-ÓÔÇËÇ|-a -ÓÔÇËÇ|-m) åêôüò áí Ý÷åé ôåèåß ôï -" +#~ "w\n" +#~ " -S[ÁËÖÁÑÉÈÌ], --sep-string[=ÁËÖÁÑÉÈÌ]\n" +#~ " äéá÷ùñéóìüò óôçëþí áðü Ýíá ðñïáéñåôéêü ÁËÖÁÑÉÈÌ, íá " +#~ "ìçí\n" +#~ " êÜíåôå ÷ñÞóç ôïõ -S \"ÁËÖÁÑÉÈÌ\",\n" +#~ " ìüíï -S : Äåí ÷ñçóéìïðïéåßôáé äéá÷ùñéóôÞò (ßäéï ìå\n" +#~ " -S\"\"),\n" +#~ " ÷ùñßò -S: Åî ïñéóìïý äéá÷ùñéóôÞò ìå -J êáé\n" +#~ " <äéÜóôçìá> äéáöïñåôéêÜ (ßäéï ìå -S\" \"), ÷ùñßò\n" +#~ " åðßäñáóç óå åðéëïãÝò ãéá óôÞëåò\n" +#~ " -t, --omit-header ðáñÜëçøç åðéóÝëéäùí êáé áêïëïýèùí\n" +#~ " -T, --omit-pagination\n" +#~ " ðáñÜëçøç åðéóÝëéäùí êáé áêïëïýèùí, åëá÷éóôïðïßçóç " +#~ "êÜèå\n" +#~ " óåëéäïðïßçóçò áðü `form feeds' ðïõ Ý÷ïõí ôõ÷üí " +#~ "ôåèåß\n" +#~ " óôá áñ÷åßá åéóüäïõ\n" +#~ " -v, --show-nonprinting\n" +#~ " ÷ñÞóç ïêôáäéêÞò êùäéêïãñáöÞò ìå ðéóùêÜèåôï\n" +#~ " -w ÐËÁÔÏÓ_ÓÅËÉÄÁÓ, --width=ÐËÁÔÏÓ_ÓÅËÉÄÁÓ\n" +#~ " ïñéóìüò ðëÜôïõò óåëßäáò óå ÐËÁÔÏÓ_ÓÅËÉÄÁÓ (72)\n" +#~ " ÷áñáêôÞñåò ãéá\n" +#~ " ðïëëáðëÞ Ýîïäï óôçëþí ìå êåßìåíï ìüíï, -s[÷áñáêô]\n" +#~ " áðåíåñãïðïéåß (72)\n" +#~ " -W ÐËÁÔÏÓ_ÓÅËÉÄÁÓ, --page-width=ÐËÁÔÏÓ_ÓÅËÉÄÁÓ\n" +#~ " ïñéóìüò ðëÜôïõò óåëßäáò óå ÐËÁÔÏÓ_ÓÅËÉÄÁÓ (72)\n" +#~ " ÷áñáêôÞñåò ðÜíôá,\n" +#~ " ìçäåíéóìüò ãñáììþí, åêôüò áí Ý÷åé ôåèåß -J, êáìßá\n" +#~ " ðáñåìâïëÞ\n" +#~ " ìå -S Þ -s\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "Ôï -T åííïåßôå áðü ôï -l nn üðïõ nn <= 10 Þ <= 3 ìå -F. ×ùñßò ÁÑ×ÅÉÏ, Þ\n" +#~ "üôáí ôï áñ÷åßï åßíáé ôï -, áíÜãíùóç áðü ôçí êáíïíéêÞ åßóïäï.\n" + +# +#, fuzzy +#~ msgid "" +#~ "Output a permuted index, including context, of the words in the input " +#~ "files.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -A, --auto-reference output automatically generated " +#~ "references\n" +#~ " -C, --copyright display Copyright and copying " +#~ "conditions\n" +#~ " -G, --traditional behave more like System V `ptx'\n" +#~ " -F, --flag-truncation=STRING use STRING for flagging line " +#~ "truncations\n" +#~ " -M, --macro-name=STRING macro name to use instead of `xx'\n" +#~ " -O, --format=roff generate output as roff directives\n" +#~ " -R, --right-side-refs put references at right, not counted in -" +#~ "w\n" +#~ " -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +#~ " -T, --format=tex generate output as TeX directives\n" +#~ " -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +#~ " -b, --break-file=FILE word break characters in this FILE\n" +#~ " -f, --ignore-case fold lower case to upper case for " +#~ "sorting\n" +#~ " -g, --gap-size=NUMBER gap size in columns between output " +#~ "fields\n" +#~ " -i, --ignore-file=FILE read ignore word list from FILE\n" +#~ " -o, --only-file=FILE read only word list from this FILE\n" +#~ " -r, --references first field of each line is a reference\n" +#~ " -t, --typeset-mode - not implemented -\n" +#~ " -w, --width=NUMBER output width in columns, reference " +#~ "excluded\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +#~ msgstr "" +#~ "Õðï÷ñåùôéêÜ ïñßóìáôá ãéá ìáêñÝò åðéëïãÝò åßíáé õðï÷ñåùôéêÜ ãéá óýíôïìåò\n" +#~ "åðéëïãÝò åðßóçò.\n" +#~ "\n" +#~ " -A, --auto-reference åìöÜíéóç áõôüìáôá ðáñáãüìåíåò áíáöïñÝò\n" +#~ " -C, --copyright åìöÜíéóç Copyright êáé êáíüíåò " +#~ "áíôéãñáöÞò\n" +#~ " -G, --traditional óõìðåñéöïñÜ ðåñéóóüôåñï üìïéá ìå ôïõ " +#~ "System\n" +#~ " V ôçí `ptx'\n" +#~ " -F, --flag-truncation=ÁËÖÁÑÉÈÌ ÷ñÞóç ÁËÖÁÑÉÈÌ ãéá õðïäÞëùóç " +#~ "ìçäåíéóìïý\n" +#~ " ãñáììþí\n" +#~ " -M, --macro-name=ÁËÖÁÑÉÈÌ üíïìá ìáêñïåíôïëÞò ðñïò ÷ñÞóç áíôß ôïõ " +#~ "`xx'\n" +#~ " -O, --format=roff äçìéïõñãßá åîüäïõ ùò åíôïëÝò roff\n" +#~ " -R, --right-side-refs ôïðïèÝôçóç áíáöïñþí óôá äåîéÜ, ÷ùñßò íá\n" +#~ " ìåôñþíôáé óôï -w\n" +#~ " -S, --sentence-regexp=ÊÁÍÅÊÖ ãéá ôï ôÝëïò ãñáììþí Þ ôï ôÝëïò ôùí " +#~ "ðñïôÜóåùí\n" +#~ " -T, --format=tex äçìéïõñãßá åîüäïõ ùò åíôïëÝò TeX\n" +#~ " -W, --word-regexp=ÊÁÍÅÊÖ ÷ñÞóç ÊÁÍïíéêÞò ÅÊÖñáóçò óôï ôáßñéáóìá " +#~ "êÜèå\n" +#~ " ëÝîçò-êëåéäß\n" +#~ " -b, --break-file=ÁÑ×ÅÉÏ ç ëÝîç óðÜåé ôïõò ÷áñáêôÞñåò óå áõôü ôï\n" +#~ " ÁÑ×ÅÉÏ\n" +#~ " -f, --ignore-case áíáäßðëùóç ðåæþí óå êåöáëáßá ãéá ôçí\n" +#~ " ôáîéíüìçóç\n" +#~ " -g, --gap-size=ÁÑÉÈÌÏÓ ìÝãåèïò äéÜêåíïõ óôéò óôÞëåò ìåôáîý " +#~ "ðåäßùí\n" +#~ " åîüäïõ\n" +#~ " -i, --ignore-file=ÁÑ×ÅÉÏ áíÜãíùóç ëßóôá ëÝîåùí ðñïò áãíüçóç áðü " +#~ "ÁÑ×ÅÉÏ\n" +#~ " -o, --only-file=ÁÑ×ÅÉÏ áíÜãíùóç ìüíï ëßóôá ëÝîåùí áðü áõôü ôï " +#~ "ÁÑ×ÅÉÏ\n" +#~ " -r, --references ðñþôï ðåäßá êÜèå ãñáììÞò åßíáé ìéá " +#~ "áíáöïñÜ\n" +#~ " -t, --typeset-mode - äåí Ý÷åé õëïðïéçèåß -\n" +#~ " -w, --width=ÁÑÉÈÌÏÓ ðëÜôïò åîüäïõ óå óôÞëåò, ìå åîáßñåóç " +#~ "ôùí\n" +#~ " áíáöïñþí\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "×ùñßò ÁÑ×ÅÉÏ, Þ üôáí ôï áñ÷åßï åßíáé ôï -, áíÜãíùóç áðü ôçí êáíïíéêÞ " +#~ "åßóïäï.\n" +#~ "Åßíáé `-F /' åî ïñéóìïý.\n" + +# +#, fuzzy +#~ msgid "" +#~ "Other options:\n" +#~ "\n" +#~ " -c, --check check whether input is sorted; do not sort\n" +#~ " -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin " +#~ "1)\n" +#~ " -m, --merge merge already sorted files; do not sort\n" +#~ " -o, --output=FILE write result to FILE instead of standard " +#~ "output\n" +#~ " -s, --stable stabilize sort by disabling last-resort " +#~ "comparison\n" +#~ " -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +#~ " -t, --field-separator=SEP use SEP instead of non- to whitespace " +#~ "transition\n" +#~ " -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %" +#~ "s\n" +#~ " multiple options specify multiple " +#~ "directories\n" +#~ " -u, --unique with -c: check for strict ordering\n" +#~ " otherwise: output only the first of an " +#~ "equal run\n" +#~ " -z, --zero-terminated end lines with 0 byte, not newline\n" +#~ " +POS1 [-POS2] start a key at POS1, end it before POS2 " +#~ "(origin 0)\n" +#~ " Warning: this option is obsolescent\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "ÅìöÜíéóç ôáîéíïìçìÝíçò óõíÝíùóçò üëùí ôùí ÁÑ×ÅÉÏ(ÙÍ) óôçí êáíïíéêÞ " +#~ "Ýîïäï.\n" +#~ "\n" +#~ " +ÈÅÓÇ1 [-ÈÅÓÇ2] áñ÷Þ êëåéäéïý óôç ÈÅÓÇ1, ôåñìáôéóìüò *ðñéí* ôç " +#~ "ÈÅÓÇ2\n" +#~ " (åêôüò ÷ñÞóçò)\n" +#~ " áñéèìïß ðåäßùí êáé èÝóåéò ÷áñáêôÞñùí áñéèìïýíôáé\n" +#~ " áñ÷ßæïíôáò áðü ôï ìçäÝí (óå áíôßèåóç ìå ôçí " +#~ "åðéëïãÞ -k)\n" +#~ " -b áãíüçóç ðñïðïñåõüìåíùí êåíþí óå ðåäßá ôáîéíüìçóçò Þ " +#~ "êëåéäéÜ\n" +#~ " -c Ýëåã÷ïò áí ôá äïèÝíôá áñ÷åßá åßíáé Þäç ôáîéíïìçìÝíá, " +#~ "íá\n" +#~ " ìçí ôáîéíïìçèïýí\n" +#~ " -d íá èåùñçèïýí ìüíï ïé ÷áñáêôÞñåò [a-zA-Z0-9 ] óôá " +#~ "êëåéäéÜ\n" +#~ " -f áíáäßðëùóç ðåæþí ÷áñáêôÞñùí óå êåöáëáßá óôá êëåéäéÜ\n" +#~ " -g óýãêñéóç óýìöùíá ìå ôç ãåíéêÞ áñéèìçôéêÞ ôéìÞ, èåþñçóå " +#~ "-b\n" +#~ " -i èåþñçóå ìüíï ôïõò ÷áñáêôÞñåò [\\040-\\0176] óôá " +#~ "êëåéäéÜ\n" +#~ " -k ÈÅÓÇ1[,ÈÅÓÇ2] Ýíáñîç êëåéäéïý óôç èÝóç ÈÅÓÇ1, ôåñìáôéóôüò *óôç* " +#~ "ÈÅÓÇ2\n" +#~ " áñéèìïß ðåäßùí êáé èÝóåéò ÷áñáêôÞñùí áñéèìïýíôáé\n" +#~ " áñ÷ßæïíôáò áðü ôï Ýíá (óå áíôßèåóç ìå ôç âáóéóìÝíç " +#~ "óôï\n" +#~ " ìçäÝí ìïñöÞ +ÈÅÓÇ)\n" +#~ " -m óõíÝíùóç ìüíï ôáîéíïìçìÝíùí áñ÷åßùí, íá ìç ãßíåé " +#~ "ôáîéíüìçóç\n" +#~ " -M óýãêñéóç (Üãíùóôï) < `ÉÁÍ' < ... < `ÄÅÊ', èåþñçóå -b\n" +#~ " -n óýãêñéóç óýìöùíá ìå ôç áëöáñéèìçôéêÞ áñéèìçôéêÞ ôéìÞ, " +#~ "èåþñçóå -b\n" +#~ " -o ARXEIO åããñáöÞ áðïôåëÝóìáôïò óôï ÁÑ×ÅÉÏ áíôß óôçí êáíïíéêÞ " +#~ "Ýîïäï\n" +#~ " -r áíôéóôñïöÞ ôùí áðïôåëåóìÜôùí ôùí óõãêñßóåùí\n" +#~ " -s óôáèåñïðïßçóç ôçò ôáîéíüìçóçò ìå áðåíåñãïðïßçóç ôç\n" +#~ " óýãêñéóçò ôåëåõôáßáò åëðßäáò\n" +#~ " -t ÄÉÁ× ÷ñÞóç ÄÉÁ×ùñéóôÞ áíôß ôçò ìåôÜóôáóçò áðü ìç-êåíü óå\n" +#~ " ëåõêü ÷áñáêôÞñá\n" +#~ " -T ÊÁÔÁËÏÃÏÓ ÷ñÞóç ÊÁÔÁËÏÃÏÓ ãéá ðñïóùñéíÜ áñ÷åßá, ü÷é ôï $TMPDIR Þ " +#~ "%s\n" +#~ " -u ìå -c, Ýëåã÷ïò ãéá áõóôçñÞ ôïðïèÝôçóç óå óåéñÜ\n" +#~ " ìå -m, ìüíï Ýîïäïò ôïõ ðñþôïõ áðü ìéá ßóç áêïëïõèßá\n" +#~ " -z ôåñìáôéóìüò ãñáììþí ìå 0 byte, ü÷é ìå íÝá ãñáììÞ, ãéá\n" +#~ " ôç find -print0\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" + +# +#, fuzzy +#~ msgid "" +#~ "Print the last %d lines of each FILE to standard output.\n" +#~ "With more than one FILE, precede each with a header giving the file " +#~ "name.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " --retry keep trying to open a file even if it is\n" +#~ " inaccessible when tail starts or if it " +#~ "becomes\n" +#~ " inaccessible later -- useful only with -f\n" +#~ " -c, --bytes=N output the last N bytes\n" +#~ " -f, --follow[={name|descriptor}]\n" +#~ " output appended data as the file grows;\n" +#~ " -f, --follow, and --follow=descriptor are\n" +#~ " equivalent\n" +#~ " -F same as --follow=name --retry\n" +#~ " -n, --lines=N output the last N lines, instead of the last %" +#~ "d\n" +#~ " --max-unchanged-stats=N\n" +#~ " with --follow=name, reopen a FILE which has " +#~ "not\n" +#~ " changed size after N (default %d) iterations\n" +#~ " to see if it has been unlinked or renamed\n" +#~ " (this is the usual case of rotated log files)\n" +#~ " --pid=PID with -f, terminate after process ID, PID dies\n" +#~ " -q, --quiet, --silent never output headers giving file names\n" +#~ " -s, --sleep-interval=S with -f, each iteration lasts approximately S\n" +#~ " (default 1) seconds\n" +#~ " -v, --verbose always output headers giving file names\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Åêôýðùóç ôùí ôåëåõôáßùí %d ãñáììþí êÜèå ÁÑ×ÅÉÏÕ óôçí êáíïíéêÞ Ýîïäï.\n" +#~ "Ìå ðåñéóóüôåñï áðü Ýíá ÁÑ×ÅÉÁ, íá ôõðùèåß ðñþôá êåöáëßäá ìå ôï üíïìá ôïõ\n" +#~ "áñ÷åßïõ.\n" +#~ "×ùñßò ÁÑ×ÅÉÏ, Þ üôáí ôï ÁÑ×ÅÉÏ åßíáé ôï -, áíÜãíùóç áðü ôçí êáíïíéêÞ " +#~ "åßóïäï.\n" +#~ "\n" +#~ " --retry óõíÝ÷éóç ðñïóðÜèåéáò áíïßãìáôïò áñ÷åßïõ áêüìá " +#~ "êáé\n" +#~ " áí áõôü äåí åßíáé ðñïóðåëÜóéìï üôáí ç tail \n" +#~ " åêêéíåßôáé Þ áí ãßíåôáé ìç-ðñïóðåëÜóéìï " +#~ "ìåôÜ\n" +#~ " ÷ñÞóéìï ìüíï ìå ôçí ðáñÜìåôñï -f\n" +#~ " -c, --bytes=N åìöÜíéóç ôùí ôåëåõôáßùí N bytes\n" +#~ " -f, --follow[={name|descriptor}] åìöÜíéóç ðñïóôéèÝìåíùí äåäïìÝíùí " +#~ "üðùò\n" +#~ " áõîÜíåôáé ôï áñ÷åßï· ôá -f, --follow êáé\n" +#~ " --follow=descriptor åßíáé éóïäýíáìá\n" +#~ " -n, --lines=N åìöÜíéóç ôùí ôåëåõôáßùí Í ãñáììþí, áíôß ôùí\n" +#~ " ôåëåõôáßùí %d\n" +#~ " --max-unchanged-stats=N äåßôå ôçí ôåêìçñßùóç ôïõ texinfo\n" +#~ " (åî ïñéóìïý åßíáé %d)\n" +#~ " --max-consecutive-size-changes=N äåßôå ôçí ôåêìçñßùóç ôïõ texinfo\n" +#~ " (åî ïñéóìïý åßíáé %d)\n" +#~ " --pid=PID ìå -f, ôåñìáôéóìüò üôáí ç äéåñãáóßá ìå\n" +#~ " ôáõôüôçôá åñãáóßáò PID ðåèÜíåé\n" +#~ " -q, --quiet, --silent íá ìçí åêôõðþíïíôáé êåöáëßäåò ìå ôá ïíüìáôá " +#~ "ôùí\n" +#~ " áñ÷åßùí\n" +#~ " -s, --sleep-interval=S ìå -f, ðáýóç ãéá S äåõôåñüëåðôá ìåôáîý " +#~ "åðáíáëÞøåùí\n" +#~ " -v, --verbose ðÜíôá íá ôõðþíïíôáé êåöáëßäåò ìå ïíüìáôá " +#~ "áñ÷åßùí\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "Áí ï ðñþôïò ÷áñáêôÞñáò ôïõ Í (áñéèìüò byte Þ ãñáììþí) åßíáé `+',\n" +#~ "ôýðùóå áñ÷ßæïíôáò ìå ôï Í-ïóôü áíôéêåßìåíï áðü ôçí áñ÷Þ ôïõ êÜèå " +#~ "áñ÷åßïõ,\n" +#~ "äéáöïñåôéêÜ, ôýðùóå ôá ôåëåõôáßá Í áíôéêåßìåíá ôïõ áñ÷åßïõ. Ôï Í ìðïñåß\n" +#~ "íá Ý÷åé ðïëëáðëáóéáóôéêü ðñüèåìá:\n" +#~ "b ãéá 512, k ãéá 1024, m ãéá 1048576 (1 Meg). Ìéá ðñþôç ÅÐÉËÏÃÇ ìå -" +#~ "ÔÉÌÇ\n" +#~ "Þ +ÔÉÌÇ èåùñåßôáé ãéá -n ÔÉÌÇ Þ -n +ÔÉÌÇ åêôüò áí ç ÔÉÌÇ Ý÷åé Ýíá áðü " +#~ "ôéò\n" +#~ "ðïëëáðëáóéáóôéêÝò êáôáëÞîåéò [bkm], óôçí ïðïßá ðåñßðôùóç ãßíåôáé ÷ñÞóç " +#~ "ùò\n" +#~ "-c ÔÉÌÇ Þ -c +TIMH.\n" +#~ "\n" +#~ "Ìå --follow (-f), ç tail åî ïñéóìïý ðáñáêïëïõèåß ôïí ðåñéãñáöÝá áñ÷åßïõ,\n" +#~ "ðïõ óçìáßíåé üôé áêüìá êáé áí ôï áñ÷åßï ìåôïíïìáóèåß, ç tail èá " +#~ "óõíå÷ßóåé\n" +#~ "íá ôï ðáñáêïëïõèåß. ÁõôÞ ç åî ïñéóìïý óõìðåñéöïñÜ äåí åßíáé åðéèõìçôÞ " +#~ "üôáí\n" +#~ "èÝëåôå íá ðáñáêïëïõèÞóåôå ôï ðñáãìáôéêü üíïìá ôïõ áñ÷åßïõ êáé ü÷é ôïí " +#~ "ðåñé-\n" +#~ "ãñáöÝá áñ÷åßïõ (ð.÷. ðåñéóôñïöÞ áñ÷åßïõ êáôáãñáöþí). ÊÜíôå ÷ñÞóç ôïõ\n" +#~ "--follow=name óôçí ðåñßðôùóç áõôÞ. Áõôü ðñïêáëåß ôçí tail íá " +#~ "ðáñáêïëïõèåß\n" +#~ "ôï áñ÷åßï ìå ôï óõãêåêñéìÝíï üíïìá áíïßãïíôáò ôï ðåñéïäéêÜ ãéá íá äåé áí\n" +#~ "Ý÷åé äéáãñáöåß êáé åðáíáäçìéïõñãçèåß áðü êÜðïéï Üëëï ðñüãñáììá.\n" + +# +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "SETs are specified as strings of characters. Most represent themselves.\n" +#~ "Interpreted sequences are:\n" +#~ "\n" +#~ " \\NNN character with octal value NNN (1 to 3 octal digits)\n" +#~ " \\\\ backslash\n" +#~ " \\a audible BEL\n" +#~ " \\b backspace\n" +#~ " \\f form feed\n" +#~ " \\n new line\n" +#~ " \\r return\n" +#~ " \\t horizontal tab\n" +#~ " \\v vertical tab\n" +#~ " CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +#~ " [CHAR*] in SET2, copies of CHAR until length of SET1\n" +#~ " [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +#~ " [:alnum:] all letters and digits\n" +#~ " [:alpha:] all letters\n" +#~ " [:blank:] all horizontal whitespace\n" +#~ " [:cntrl:] all control characters\n" +#~ " [:digit:] all digits\n" +#~ " [:graph:] all printable characters, not including space\n" +#~ " [:lower:] all lower case letters\n" +#~ " [:print:] all printable characters, including space\n" +#~ " [:punct:] all punctuation characters\n" +#~ " [:space:] all horizontal or vertical whitespace\n" +#~ " [:upper:] all upper case letters\n" +#~ " [:xdigit:] all hexadecimal digits\n" +#~ " [=CHAR=] all characters which are equivalent to CHAR\n" +#~ msgstr "" +#~ "\n" +#~ "Ôá ÓÕÍÏËÁ ïñßæïíôáé ùò áëöáñéèìçôéêÜ. Ôá ðåñéóóüôåñá áíôéðñïóùðåýïõí ôïí " +#~ "åáõôü ôïõò.\n" +#~ "Ïé ìåôáöñáóìÝíåò áêïëïõèßåò åßíáé:\n" +#~ "\n" +#~ " \\NNN ÷áñáêôÞñáò ìå ïêôáäéêÞ ôéìÞ NNN (1 ìå 3 ïêôáäéêÜ " +#~ "øçößá)\n" +#~ " \\\\ ðéóùêÜèåôïò\n" +#~ " \\a ç÷çôéêü êïõäïýíé\n" +#~ " \\b `backspace'\n" +#~ " \\f `form feed'\n" +#~ " \\n `new line'\n" +#~ " \\r `return'\n" +#~ " \\t ïñéæüíôéïò óôçëïèÝôçò\n" +#~ " \\v êÜèåôïò óôçëïèÝôçò\n" +#~ " ×ÁÑÁÊÔ1-×ÁÑÁÊÔ2 üëïé ïé ÷áñáêôÞñåò áðü ×ÁÑÁÊÔ1 ìÝ÷ñé ×ÁÑÁÊÔ2 óå " +#~ "áýîïõóá óåéñÜ\n" +#~ " [×ÁÑÁÊÔ1-×ÁÑÁÊÔ2] üðùò ×ÁÑÁÊÔ1-×ÁÑÁÊÔ2, áí êáé ôá äýï ÓÕÍÏËÏ1, " +#~ "ÓÕÍÏËÏ2 ôï êÜíïõí ÷ñÞóç\n" +#~ " [×ÁÑÁÊÔ*] óôï ÓÕÍÏËÏ2, áíôéãñÜöåé ôï ×ÁÑÁÊÔÞñá ìÝ÷ñé ôï ìÞêïò " +#~ "ôïõ ÓÕÍÏËÏ1\n" +#~ " [×ÁÑÁÊÔ*ÅÐÁÍÁË] ÅÐÁÍÁËçøç áíôßãñáöá ôïõ ×ÁÑÁÊÔÞñá, ÅÐÁÍÁË åßíáé " +#~ "ïêôáäéêü áí áñ÷ßæåé áðü 0\n" +#~ " [:alnum:] üëïé ïé ÷áñáêôÞñåò êáé ôá øçößá\n" +#~ " [:alpha:] üëïé ïé ÷áñáêôÞñåò\n" +#~ " [:blank:] üëïé ïé ïñéæüíôéïé ëåõêïß ÷áñáêôÞñåò\n" +#~ " [:cntrl:] üëïé ïé ÷áñáêôÞñåò åëÝã÷ïõ\n" +#~ " [:digit:] üëá ôá øçößá\n" +#~ " [:graph:] üëïé ïé åêôõðþóéìïé ÷áñáêôÞñåò, ÷ùñßò ôï äéÜóôçìá\n" +#~ " [:lower:] üëá ôá ðåæÜ ãñÜììáôá\n" +#~ " [:print:] üëïé ïé åêôõðþóéìïé ÷áñáêôÞñåò, ìáæß ìå ôï äéÜóôçìá\n" +#~ " [:punct:] üëá ïé ÷áñáêôÞñåò ôïíéóìïý\n" +#~ " [:space:] üëïé ïé ïñéæüíôéïé Þ êÜèåôïé ëåõêïß ÷áñáêôÞñåò\n" +#~ " [:upper:] üëïé ïé êåöáëáßïé ÷áñáêôÞñåò\n" +#~ " [:xdigit:] üëá ôá äåêáåîáäéêÜ øçößá\n" +#~ " [=×ÁÑÁÊÔ=] üëïé ïé ÷áñáêôÞñåò ðïõ åßíáé éóïäýíáìïé ìå ôï ×ÁÑÁÊÔ\n" + +# +#, fuzzy +#~ msgid "" +#~ "Discard all but one of successive identical lines from INPUT (or\n" +#~ "standard input), writing to OUTPUT (or standard output).\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -c, --count prefix lines by the number of occurrences\n" +#~ " -d, --repeated only print duplicate lines\n" +#~ " -D, --all-repeated[=delimit-method] print all duplicate lines\n" +#~ " delimit-method={none(default),prepend,separate)}\n" +#~ " Delimiting is done with blank lines.\n" +#~ " -f, --skip-fields=N avoid comparing the first N fields\n" +#~ " -i, --ignore-case ignore differences in case when comparing\n" +#~ " -s, --skip-chars=N avoid comparing the first N characters\n" +#~ " -u, --unique only print unique lines\n" +#~ " -w, --check-chars=N compare no more than N characters in lines\n" +#~ " -N same as -f N\n" +#~ " +N same as -s N (obsolescent; will be withdrawn)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "A field is a run of whitespace, then non-whitespace characters.\n" +#~ "Fields are skipped before chars.\n" +#~ msgstr "" +#~ "ÁðïâïëÞ üëåò åêôüò áðü ôéò óõíå÷üìåíåò üìïéåò ãñáììÝò áðü ôçí ÅÉÓÏÄÏ\n" +#~ "(Þ êáíïíéêÞ åßóïäï), ãñÜöïíôáò óôçí Ýîïäï (Þ êáíïíéêÞ Ýîïäï).\n" +#~ "\n" +#~ " -c, --count áñéèìüò ôùí åìöáíßóåùí óôçí áñ÷Þ ôùí ãñáììþí\n" +#~ " -d, --repeated åìöÜíéóç ìüíï äéðëþí ãñáììþí\n" +#~ " -D, --all-repeated åìöÜíéóç üëùí ôùí äéðëþí ãñáììþí\n" +#~ " -f, --skip-fields=N áðïöõãÞ óýãêñéóçò ôùí ðñþôùí N ðåäßùí\n" +#~ " -i, --ignore-case áãíüçóç äéáöïñþí ìåôáîý ðåæþí/êåöáëáßùí óôéò " +#~ "óõãêñßóåéò\n" +#~ " -s, --skip-chars=N áãíüçóç óýãêñéóçò ôùí ðñþôùí Í ÷áñáêôÞñùí\n" +#~ " -u, --unique åìöÜíéóç ìüíï ôùí ìïíáäéêþí ãñáììþí\n" +#~ " -w, --check-chars=N óýãêñéóç ü÷é ðáñáðÜíù áðü Í ÷áñáêôÞñåò óôç " +#~ "ãñáììÞ\n" +#~ " -N ßäéï ìå -f N\n" +#~ " +N ßäéï ìå -s N\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "Ðåäßï åßíáé ìéá óåéñÜ áðü ëåõêïýò ÷áñáêôÞñåò, êáé ìåôÜ ìç-ëåõêïß " +#~ "÷áñáêôÞñåò.\n" +#~ "Ôá ðåäßá ðñïóðåñíþíôáé ðñéí ôïõò ÷áñáêôÞñåò.\n" + +# +#~ msgid "" +#~ "when using the old-style +POS and -POS key specifiers,\n" +#~ "the +POS specifier must come first" +#~ msgstr "" +#~ "¼ôáí ãßíåôå ÷ñÞóç ðáëéïý-óôõë äçëùôþí +ÈÅÓÇ êáé -ÈÅÓÇ,\n" +#~ "ï äçëùôÞò +ÈÅÓÇ ðñÝðåé íá Ýñ÷åôáé ðñþôïò" + +# +#~ msgid "option `-k' requires an argument" +#~ msgstr "ç åðéëïãÞ `-k' áðáéôåß Ýíá üñéóìá" + +# +#~ msgid "starting field spec has `.' but lacks following character offset" +#~ msgstr "" +#~ "ç äÞëùóç Ýíáñîçò ðåäßïõ Ý÷åé `.' áëëÜ ôçò ëåßðåé ç èÝóç åðüìåíïõ ÷áñáêôÞñá" + +# +#, fuzzy +#~ msgid "" +#~ "starting field character offset argument to the `-k' option must be " +#~ "positive" +#~ msgstr "" +#~ "ôï üñéóìá Ýíáñîçò ðåäßïõ áñéèìïý óôçí åðéëïãÞ `-k'\n" +#~ "ðñÝðåé íá åßíáé èåôéêüò" + +# +#~ msgid "field specification has `,' but lacks following field spec" +#~ msgstr "ç äÞëùóç ðåäßïõ Ý÷åé `,' áëëÜ ôçò ëåßðåé ç äÞëùóç åðüìåíïõ ðåäßïõ" + +# +#~ msgid "ending field number argument to the `-k' option must be positive" +#~ msgstr "" +#~ "ôï üñéóìá ôÝñìáôïò ðåäßïõ áñéèìïý óôçí åðéëïãÞ `-k' ðñÝðåé íá åßíáé " +#~ "èåôéêüò" + +# +#~ msgid "ending field spec has `.' but lacks following character offset" +#~ msgstr "" +#~ "ç äÞëùóç ôÝñìáôïò ðåäßïõ Ý÷åé `.' áëëÜ ôçò ëåßðåé ç èÝóç åðüìåíïõ " +#~ "÷áñáêôÞñá" + +# +#~ msgid "option `-o' requires an argument" +#~ msgstr "ç åðéëïãÞ `-o' áðáéôåß Ýíá üñéóìá" + +# +#, fuzzy +#~ msgid "option `-S' requires an argument" +#~ msgstr "ç åðéëïãÞ `-k' áðáéôåß Ýíá üñéóìá" + +# +#~ msgid "option `-t' requires an argument" +#~ msgstr "ç åðéëïãÞ `-t' áðáéôåß Ýíá üñéóìá" + +# +#~ msgid "option `-T' requires an argument" +#~ msgstr "ç åðéëïãÞ `-T' áðáéôåß Ýíá üñéóìá" + +# +#~ msgid "%s: unrecognized option `-%c'\n" +#~ msgstr "%s: ìç áíáãíùñßóéìç åðéëïãÞ `-%c'\n" + +# +#~ msgid "%s%*s%s%*sPage" +#~ msgstr "%s%*s%s%*sÓåëßäá" + +# +#~ msgid "flushing file" +#~ msgstr "ïëïêëÞñùóç áñ÷åßïõ" + +# +#~ msgid "" +#~ "specified number of bytes `%s' is larger than the maximum\n" +#~ "representable value of type `long'" +#~ msgstr "" +#~ "ï äçëùìÝíïò áñéèìüò bytes `%s' åßíáé ìåãáëýôåñïò áðü ôï ìÝãéóôï\n" +#~ "ðïõ ìðïñåß íá áíáðáñáóôáèåß áðü ôï ôýðï äåäïìÝíùí `long'" + +# +#~ msgid "could not find loop" +#~ msgstr "áäõíáìßá åýñåóçò âñü÷ïõ" + +# +#~ msgid "%s: cannot follow end of non-regular file" +#~ msgstr "%s: áäõíáìßá áêïëïýèçóçò ôÝëïõò ìç-êáíïíéêïý áñ÷åßïõ" + +# +#~ msgid "" +#~ "\n" +#~ "Report bugs to ." +#~ msgstr "" +#~ "\n" +#~ "ÁíáöÝñáôå óöÜëìáôá óôï ." + +# +#~ msgid "`%s' has reappeared" +#~ msgstr "ôï `%s' åìöáíßóôçêå îáíÜ" + +# +#, fuzzy +#~ msgid "" +#~ "Convert tabs in each FILE to spaces, writing to standard output.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ " -i, --initial do not convert TABs after non whitespace\n" +#~ " -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +#~ " -t, --tabs=LIST use comma separated list of explicit tab positions\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n" +#~ msgstr "" +#~ "ÌåôáôñïðÞ äéáóôçìÜôùí óå êÜèå ÁÑ×ÅÉÏ óå óôçëïèÝôåò, ãñÜöïíôáò óôçí " +#~ "êáíïíéêÞ Ýîïäï.\n" +#~ "×ùñßò ÁÑ×ÅÉÏ, Þ üôáí ôï áñ÷åßï åßíáé ôï -, áíÜãíùóç áðü ôçí êáíïíéêÞ " +#~ "åßóïäï.\n" +#~ "\n" +#~ " -a, --all ìåôáôñïðÞ üëùí ôùí ëåõêþí ÷áñáêôÞñùí, áíôß ìüíï ôùí " +#~ "áñ÷éêþí\n" +#~ " -t, --tabs=ÁÑÉÈÌÏÓ ïé óôçëïèÝôåò íá Ý÷ïõí áðüóôáóç ÁÑÉÈÌÏÓ áíôß 8\n" +#~ " -t, --tabs=ËÉÓÔÁ ÷ñÞóç ëßóôáò ÷ùñéóìÝíçò ìå êüììá ãéá ôç äÞëùóç ôçò " +#~ "èÝóçò ôùí óôçëïèåôþí\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "Áíôß ãéá -t ÁÑÉÈÌÏÓ Þ -t ËÉÓÔÁ, -ÁÑÉÈÌÏÓ Þ -ËÉÓÔÁ ìðïñïýí íá " +#~ "÷ñçóéìïðïéçèïýí.\n" + +# +#~ msgid "" +#~ "Reformat each paragraph in the FILE(s), writing to standard output.\n" +#~ "If no FILE or if FILE is `-', read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -c, --crown-margin preserve indentation of first two lines\n" +#~ " -p, --prefix=STRING combine only lines having STRING as prefix\n" +#~ " -s, --split-only split long lines, but do not refill\n" +#~ " -t, --tagged-paragraph indentation of first line different from " +#~ "second\n" +#~ " -u, --uniform-spacing one space between words, two after sentences\n" +#~ " -w, --width=NUMBER maximum line width (default of 75 columns)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "In -wNUMBER, the letter `w' may be omitted.\n" +#~ msgstr "" +#~ "Ìïñöïðïßçóç îáíÜ êÜèå ðáñáãñÜöïõ óôï ÁÑ×ÅÉÏ(Á), ãñÜöïíôáò óôçí êáíïíéêÞ " +#~ "Ýîïäï.\n" +#~ "Áí êáíÝíá ÁÑ×ÅÉÏ äåí Ý÷åé ïñéóôåß Þ ôï ÁÑ×ÅÉÏ åßíáé ôï `-', áíÜãíùóç áðü " +#~ "êáíïíéêÞ åßóïäï.\n" +#~ "\n" +#~ "Õðï÷ñåùôéêÜ ïñßóìáôá óôéò ìáêñÝò åðéëïãÝò åßíáé õðï÷ñåùôéêÜ ãéá óýíôïìåò " +#~ "åðéëïãÝò åðßóåéò.\n" +#~ " -c, --crown-margin äéáôÞñçóå ôçí åóï÷Þ ôùí äýï ðñþôùí ãñáììþí\n" +#~ " -p, --prefix=ÁËÖÁÑÉÈ óõíäýáóå ìüíï ãñáììÝò ìå ÁËÖÁÑÉÈÌçôéêü ùò " +#~ "ðñüèåìá\n" +#~ " -s, --split-only ÷þñéóå óôá äýï ôéò ìáêñÝò ãñáììÝò áëëÜ ÷ùñßò " +#~ "ãÝìéóìá îáíÜ\n" +#~ " -t, --tagged-paragraph ç åóï÷Þ ôçò ðñþôçò ãñáììÞò íá åßíáé " +#~ "äéáöïñåôéêÞ áðü ôç äåýôåñç\n" +#~ " -u, --uniform-spacing Ýíá äéÜóôçìá ìåôáîý ëÝîåùí, äýï ìåôÜ áðü " +#~ "ðñïôÜóåéò\n" +#~ " -w, --width=ÁÑÉÈÌÏÓ ìÝãéóôï ðëÜôïò ãñáììÞò (åî ïñéóìïý 75 " +#~ "óôÞëåò)\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "Óôï -wÁÑÉÈÌÏÓ, ôï ãñÜììá `w' ìðïñåß íá ðáñáëçöèåß.\n" + +# +#~ msgid "" +#~ "Print first 10 lines of each FILE to standard output.\n" +#~ "With more than one FILE, precede each with a header giving the file " +#~ "name.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ " -c, --bytes=SIZE print first SIZE bytes\n" +#~ " -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +#~ " -q, --quiet, --silent never print headers giving file names\n" +#~ " -v, --verbose always print headers giving file names\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +#~ "If -VALUE is used as first OPTION, read -c VALUE when one of\n" +#~ "multipliers bkm follows concatenated, else read -n VALUE.\n" +#~ msgstr "" +#~ "ÅìöÜíéóç ôùí 10 ðñþôùí ãñáììþí áðü êÜèå ÁÑ×ÅÉÏ óôçí êáíïíéêÞ Ýîïäï.\n" +#~ "Ìå ðåñéóóüôåñá áðü Ýíá ÁÑ×ÅÉÏ, íá ðñïçãçèåß åðéóÝëéäï ìå ôï üíïìá ôïõ " +#~ "áñ÷åßïõ.\n" +#~ "×ùñßò ÁÑ×ÅÉÏ Þ üôáí ôï ÁÑ×ÅÉÏ åßíáé ôï -, áíÜãíùóç áðü ôçí êáíïíéêÞ " +#~ "åßóïäï.\n" +#~ "\n" +#~ " -c, --bytes=ÌÅÃÅÈÏÓ åìöÜíéóç ôùí ðñþôùí ÌÅÃÅÈÏÓ bytes\n" +#~ " -n, --lines=ÁÑÉÈÌÏÓ åìöÜíéóç ôùí ðñþôùí ÁÑÉÈÌÏÓ ãñáììþí áíôß ôùí " +#~ "ðñþôùí 10\n" +#~ " -q, --quiet, --silent íá ìçí ôõðþíïíôáé åðéóÝëéäá ìå ôá ïíüìáôá " +#~ "áñ÷åßùí\n" +#~ " -v, --verbose íá ôõðþíïíôáé ðÜíôá åðéóÝëéäá ìå ôá ïíüìáôá " +#~ "áñ÷åßùí\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "Ôï ÌÅÃÅÈÏÓ ìðïñåß íá Ý÷åé êáôÜëçîç ìå ðïëëáðëáóéáóôÞ: b ãéá 512, k ãéá " +#~ "1K, m ãéá 1 Meg.\n" +#~ "Áí ÷ñçóéìïðïéåßôáé ôï -VALUE óáí ðñþôç ÅÐÉËÏÃÇ, áíÜãíùóå -c ÔÉÌÇ üôáí\n" +#~ "Ýíáò áðü ôïõò ðïëëáðëáóéáóôÝò bkm áêïëïõèåß óõíåíùìÝíïò, äéáöïñåôéêÜ " +#~ "áíÜãíùóå -n ÔÉÌÇ\n" + +# +#~ msgid "" +#~ "This program is free software; you can redistribute it and/or modify\n" +#~ "it under the terms of the GNU General Public License as published by\n" +#~ "the Free Software Foundation; either version 2, or (at your option)\n" +#~ "any later version.\n" +#~ "\n" +#~ "This program is distributed in the hope that it will be useful,\n" +#~ "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +#~ "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +#~ "GNU General Public License for more details.\n" +#~ "\n" +#~ "You should have received a copy of the GNU General Public License\n" +#~ "along with this program; if not, write to the Free Software Foundation,\n" +#~ "Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +#~ msgstr "" +#~ "Áõôü ôï ðñüãñáììá åßíáé åëåýèåñï ëïãéóìéêü· ìðïñåßôå íá ôï \n" +#~ "åðáíáäéáíåßìåôå êáé/Þ íá ôï ôñïðïðïéÞóåôå õðü ôïõò üñïõò ôçò \n" +#~ "ÃåíéêÞò Äçìüóéáò ¢äåéáò ×ñÞóåùò Ëïãéóìéêïý GNU (GNU General Public\n" +#~ "Licence) üðùò áõôÞ äçìïóéåýôçêå áðü ôï ºäñõìá Åëåýèåñïõ Ëïãéóìéêïý\n" +#~ "(Free Software Foundation), åßôå óôçí Ýêäïóç 2, Þ (êáôÜ åðéëïãÞ óáò)\n" +#~ "ïðïéáäÞðïôå ìåôáãåíÝóôåñç Ýêäïóç.\n" +#~ "\n" +#~ "Áõôü ôï ðñüãñáììá äéáíÝìåôáé ìå ôçí åëðßäá üôé èá öáíåß ÷ñÞóéìï,\n" +#~ "áëëÜ ×ÙÑÉÓ ÊÁÌÉÁ ÅÃÃÕÇÓÇ, ÷ùñßò êáí ôçí åããýçóç ×ÑÇÓÉÌÏÔÇÔÁÓ ÃÉÁ \n" +#~ "ÓÕÃÊÅÊÑÉÌÅÍÏ ÓÊÏÐÏ. Ðáñáêáëþ áíáôñÝîôå óôç ÃåíéêÞ Äçìüóéá ¢äåéá \n" +#~ "×ñÞóçò Ëïãéóìéêïý GNU ãéá ðåñéóóüôåñåò ëåðôïìÝñåéåò.\n" +#~ "\n" +#~ "Èá ðñÝðåé íá Ý÷åôå ëÜâåé Ýíá áíôßôõðï ôçò Üäåéáò áõôÞò ìáæß ìå\n" +#~ "áõôü ôï ðñüãñáììá. ÅÜí ü÷é, ãñÜøôå óôï ºäñõìá Åëåýèåñïõ Ëïãéóìéêïý\n" +#~ "(Free Software Foundation) óôç äéåýèõíóç Free Software Foundation,\n" +#~ "Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" + +# +#~ msgid "" +#~ "Write sorted concatenation of all FILE(s) to standard output.\n" +#~ "\n" +#~ " +POS1 [-POS2] start a key at POS1, end it *before* POS2 " +#~ "(obsolescent)\n" +#~ "\t\t field numbers and character offsets are numbered\n" +#~ " starting with zero (contrast with the -k option)\n" +#~ " -b ignore leading blanks in sort fields or keys\n" +#~ " -c check if given files already sorted, do not sort\n" +#~ " -d consider only [a-zA-Z0-9 ] characters in keys\n" +#~ " -f fold lower case to upper case characters in keys\n" +#~ " -g compare according to general numerical value, imply -" +#~ "b\n" +#~ " -i consider only [\\040-\\0176] characters in keys\n" +#~ " -k POS1[,POS2] start a key at POS1, end it *at* POS2\n" +#~ "\t\t field numbers and character offsets are numbered\n" +#~ " starting with one (contrast with zero-based +POS " +#~ "form)\n" +#~ " -m merge already sorted files, do not sort\n" +#~ " -M compare (unknown) < `JAN' < ... < `DEC', imply -b\n" +#~ " -n compare according to string numerical value, imply -b\n" +#~ " -o FILE write result on FILE instead of standard output\n" +#~ " -r reverse the result of comparisons\n" +#~ " -s stabilize sort by disabling last resort comparison\n" +#~ " -t SEP use SEParator instead of non- to whitespace " +#~ "transition\n" +#~ " -T DIRECTORY use DIRECTORY for temporary files, not $TMPDIR or %s\n" +#~ " -u with -c, check for strict ordering;\n" +#~ " with -m, only output the first of an equal sequence\n" +#~ " -z end lines with 0 byte, not newline, for find -print0\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "ÅìöÜíéóç ôáîéíïìçìÝíçò óõíÝíùóçò üëùí ôùí ÁÑ×ÅÉÏ(ÙÍ) óôçí êáíïíéêÞ " +#~ "Ýîïäï.\n" +#~ "\n" +#~ " +ÈÅÓÇ1 [-ÈÅÓÇ2] áñ÷Þ êëåéäéïý óôç ÈÅÓÇ1, ôåñìáôéóìüò *ðñéí* ôç " +#~ "ÈÅÓÇ2\n" +#~ " (åêôüò ÷ñÞóçò)\n" +#~ " áñéèìïß ðåäßùí êáé èÝóåéò ÷áñáêôÞñùí áñéèìïýíôáé\n" +#~ " áñ÷ßæïíôáò áðü ôï ìçäÝí (óå áíôßèåóç ìå ôçí " +#~ "åðéëïãÞ -k)\n" +#~ " -b áãíüçóç ðñïðïñåõüìåíùí êåíþí óå ðåäßá ôáîéíüìçóçò Þ " +#~ "êëåéäéÜ\n" +#~ " -c Ýëåã÷ïò áí ôá äïèÝíôá áñ÷åßá åßíáé Þäç ôáîéíïìçìÝíá, " +#~ "íá\n" +#~ " ìçí ôáîéíïìçèïýí\n" +#~ " -d íá èåùñçèïýí ìüíï ïé ÷áñáêôÞñåò [a-zA-Z0-9 ] óôá " +#~ "êëåéäéÜ\n" +#~ " -f áíáäßðëùóç ðåæþí ÷áñáêôÞñùí óå êåöáëáßá óôá êëåéäéÜ\n" +#~ " -g óýãêñéóç óýìöùíá ìå ôç ãåíéêÞ áñéèìçôéêÞ ôéìÞ, èåþñçóå " +#~ "-b\n" +#~ " -i èåþñçóå ìüíï ôïõò ÷áñáêôÞñåò [\\040-\\0176] óôá " +#~ "êëåéäéÜ\n" +#~ " -k ÈÅÓÇ1[,ÈÅÓÇ2] Ýíáñîç êëåéäïý óôç èÝóç ÈÅÓÇ1, ôåñìáôéóôüò *óôç* " +#~ "ÈÅÓÇ2\n" +#~ " áñéèìïß ðåäßùí êáé èÝóåéò ÷áñáêôÞñùí áñéèìïýíôáé\n" +#~ " áñ÷ßæïíôáò áðü ôï Ýíá (óå áíôßèåóç ìå ôç âáóéóìÝíç " +#~ "óôï\n" +#~ " ìçäÝí ìïñöÞ +ÈÅÓÇ)\n" +#~ " -m óõíÝíùóç ìüíï ôáîéíïìçìÝíùí áñ÷åßùí, íá ìç ãßíåé " +#~ "ôáîéíüìçóç\n" +#~ " -M óýãêñéóç (Üãíùóôï) < `ÉÁÍ' < ... < `ÄÅÊ', èåþñçóå -b\n" +#~ " -n óýãêñéóç óýìöùíá ìå ôç áëöáñéèìçôéêÞ áñéèìçôéêÞ ôéìÞ, " +#~ "èåþñçóå -b\n" +#~ " -o ARXEIO åããñáöÞ áðïôåëÝóìáôïò óôï ÁÑ×ÅÉÏ áíôß óôçí êáíïíéêÞ " +#~ "Ýîïäï\n" +#~ " -r áíôéóôñïöÞ ôùí áðïôåëåóìÜôùí ôùí óõãêñßóåùí\n" +#~ " -s óôáèåñïðïßçóç ôçò ôáîéíüìçóçò ìå áðåíåñãïðïßçóç ôç\n" +#~ " óýãêñéóçò ôåëåõôáßáò åëðßäáò\n" +#~ " -t ÄÉÁ× ÷ñÞóç ÄÉÁ×ùñéóôÞ áíôß ôçò ìåôÜóôáóçò áðü ìç-êåíü óå\n" +#~ " ëåõêü ÷áñáêôÞñá\n" +#~ " -T ÊÁÔÁËÏÃÏÓ ÷ñÞóç ÊÁÔÁËÏÃÏÓ ãéá ðñïóùñéíÜ áñ÷åßá, ü÷é ôï $TMPDIR Þ " +#~ "%s\n" +#~ " -u ìå -c, Ýëåã÷ïò ãéá áõóôçñÞ ôïðïèÝôçóç óå óåéñÜ\n" +#~ " ìå -m, ìüíï Ýîïäïò ôïõ ðñþôïõ áðü ìéá ßóç áêïëïõèßá\n" +#~ " -z ôåñìáôéóìüò ãñáììþí ìå 0 byte, ü÷é ìå íÝá ãñáììÞ, ãéá\n" +#~ " ôç find -print0\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" + +# +# xxx Check punctation +# 2001-12-02 11:12:55 CET -ke- +#~ msgid "" +#~ "\n" +#~ "Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +#~ "-t may be used only when translating. SET2 is extended to length of\n" +#~ "SET1 by repeating its last character as necessary. Excess characters\n" +#~ "of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +#~ "expand in ascending order; used in SET2 while translating, they may\n" +#~ "only be used in pairs to specify case conversion. -s uses SET1 if not\n" +#~ "translating nor deleting; else squeezing uses SET2 and occurs after\n" +#~ "translation or deletion.\n" +#~ msgstr "" +#~ "\n" +#~ "ÌåôÜöñáóç óõìâáßíåé üôáí äå äßíåôáé ôï -d êáé åìöáíßæïíôáé êáé ôá äýï\n" +#~ "ÓÕÍÏËÏ1 êáé ÓÕÍÏËÏ2. Ôï -t ìðïñåß íá ÷ñçóéìïðïéçèåß ìüíï óôç ìåôÜöñáóç\n" +#~ "Ôï ÓÕÍÏËÏ2 áíáðôýóóåôáé óôï ìÞêïò ôïõ ÓÕÍÏËÏ1 ìå åðáíÜëçøç ôïõ " +#~ "ôåëåõôáßïõ\n" +#~ "÷áñáêôÞñá, üðùò ÷ñåéÜæåôáé. ÊáôÜ õðÝñâáóç ÷áñáêôÞñåò ôïõ ÓÕÍÏËÏ2 " +#~ "áãíïïýíôáé\n" +#~ "Ìüíï ôá [:lower:] êáé [:upper:] åããõüíôáé ôçí áíÜðôõîç óå áýîïõóá óåéñÜ·\n" +#~ "üôáí ÷ñçóéìïðïéïýíôáé óôï ÓÕÍÏËÏ2 óôç ìåôÜöñáóç, ìðïñïýí íá " +#~ "÷ñçóéìïðïéçèïýí\n" +#~ "ìüíï óå æåýãç ãéá íá ïñßóïõí ìåôáôñïðÞ ìåôáîý ðåæþí/êåöáëáßùí. Ôï -s\n" +#~ "êÜíåé ÷ñÞóç ôïõ ÓÕÍÏËÏ1 áí äå ìåôáöñÜæåé Þ äéáãñÜöåé· äéáöïñåôéêÜ " +#~ "óõìðõêíþíåé\n" +#~ "êÜíùíôáò ÷ñÞóç ôïõ ÓÕÍÏËÏ2 êáé óõìâáßíåé ìåôÜ áðü ìåôÜöñáóç Þ äéáãñáöÞ\n" + +# +#, fuzzy +#~ msgid "" +#~ "Convert spaces in each FILE to tabs, writing to standard output.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ " -a, --all convert all whitespace, instead of initial " +#~ "whitespace\n" +#~ " -t, --tabs=NUMBER have tabs NUMBER characters apart instead of 8\n" +#~ " -t, --tabs=LIST use comma separated list of explicit tab positions\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n" +#~ msgstr "" +#~ "ÌåôáôñïðÞ äéáóôçìÜôùí óå êÜèå ÁÑ×ÅÉÏ óå óôçëïèÝôåò, ãñÜöïíôáò óôçí " +#~ "êáíïíéêÞ Ýîïäï.\n" +#~ "×ùñßò ÁÑ×ÅÉÏ, Þ üôáí ôï áñ÷åßï åßíáé ôï -, áíÜãíùóç áðü ôçí êáíïíéêÞ " +#~ "åßóïäï.\n" +#~ "\n" +#~ " -a, --all ìåôáôñïðÞ üëùí ôùí ëåõêþí ÷áñáêôÞñùí, áíôß ìüíï ôùí " +#~ "áñ÷éêþí\n" +#~ " -t, --tabs=ÁÑÉÈÌÏÓ ïé óôçëïèÝôåò íá Ý÷ïõí áðüóôáóç ÁÑÉÈÌÏÓ áíôß 8\n" +#~ " -t, --tabs=ËÉÓÔÁ ÷ñÞóç ëßóôáò ÷ùñéóìÝíçò ìå êüììá ãéá ôç äÞëùóç ôçò " +#~ "èÝóçò ôùí óôçëïèåôþí\n" +#~ " --help åìöÜíéóç áõôÞò ôçò âïÞèåéáò êáé Ýîïäïò\n" +#~ " --version åìöÜíéóç ðëçñïöïñéþí Ýêäïóçò êáé Ýîïäïò\n" +#~ "\n" +#~ "Áíôß ãéá -t ÁÑÉÈÌÏÓ Þ -t ËÉÓÔÁ, -ÁÑÉÈÌÏÓ Þ -ËÉÓÔÁ ìðïñïýí íá " +#~ "÷ñçóéìïðïéçèïýí.\n" diff --git a/src/apps/bin/coreutils-5.0/po/en@boldquot.header b/src/apps/bin/coreutils-5.0/po/en@boldquot.header new file mode 100644 index 0000000000..fedb6a06d1 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/en@boldquot.header @@ -0,0 +1,25 @@ +# All this catalog "translates" are quotation characters. +# The msgids must be ASCII and therefore cannot contain real quotation +# characters, only substitutes like grave accent (0x60), apostrophe (0x27) +# and double quote (0x22). These substitutes look strange; see +# http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html +# +# This catalog translates grave accent (0x60) and apostrophe (0x27) to +# left single quotation mark (U+2018) and right single quotation mark (U+2019). +# It also translates pairs of apostrophe (0x27) to +# left single quotation mark (U+2018) and right single quotation mark (U+2019) +# and pairs of quotation mark (0x22) to +# left double quotation mark (U+201C) and right double quotation mark (U+201D). +# +# When output to an UTF-8 terminal, the quotation characters appear perfectly. +# When output to an ISO-8859-1 terminal, the single quotation marks are +# transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to +# grave/acute accent (by libiconv), and the double quotation marks are +# transliterated to 0x22. +# When output to an ASCII terminal, the single quotation marks are +# transliterated to apostrophes, and the double quotation marks are +# transliterated to 0x22. +# +# This catalog furthermore displays the text between the quotation marks in +# bold face, assuming the VT100/XTerm escape sequences. +# diff --git a/src/apps/bin/coreutils-5.0/po/en@quot.header b/src/apps/bin/coreutils-5.0/po/en@quot.header new file mode 100644 index 0000000000..a9647fc35c --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/en@quot.header @@ -0,0 +1,22 @@ +# All this catalog "translates" are quotation characters. +# The msgids must be ASCII and therefore cannot contain real quotation +# characters, only substitutes like grave accent (0x60), apostrophe (0x27) +# and double quote (0x22). These substitutes look strange; see +# http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html +# +# This catalog translates grave accent (0x60) and apostrophe (0x27) to +# left single quotation mark (U+2018) and right single quotation mark (U+2019). +# It also translates pairs of apostrophe (0x27) to +# left single quotation mark (U+2018) and right single quotation mark (U+2019) +# and pairs of quotation mark (0x22) to +# left double quotation mark (U+201C) and right double quotation mark (U+201D). +# +# When output to an UTF-8 terminal, the quotation characters appear perfectly. +# When output to an ISO-8859-1 terminal, the single quotation marks are +# transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to +# grave/acute accent (by libiconv), and the double quotation marks are +# transliterated to 0x22. +# When output to an ASCII terminal, the single quotation marks are +# transliterated to apostrophes, and the double quotation marks are +# transliterated to 0x22. +# diff --git a/src/apps/bin/coreutils-5.0/po/es.gmo b/src/apps/bin/coreutils-5.0/po/es.gmo new file mode 100644 index 0000000000..fec9cb87ea Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/es.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/es.po b/src/apps/bin/coreutils-5.0/po/es.po new file mode 100644 index 0000000000..d1fd9ccdd2 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/es.po @@ -0,0 +1,10145 @@ +# Mensajes en español para GNU coreutils. +# Copyright (C) 2002, 2003 Free Software Foundation, Inc. +# Santiago Vila Doncel , 2002, 2003. +# +# La primera versión de esta traducción se hizo combinando las traducciones +# existentes de fileutils, textutils y sh-utils, en las cuales también +# colaboraron Enrique Melero Gómez y Cristian Othón Martínez Vera. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU coreutils 4.5.10\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2003-03-14 15:07+0100\n" +"Last-Translator: Santiago Vila Doncel \n" +"Language-Team: Spanish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8-bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "argumento %s inválido para %s" + +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "argumento %s ambiguo para %s" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "Los argumentos válidos son:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "error de escritura" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "Error del sistema desconocido" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "fichero regular vacío" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "fichero regular" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "directorio" + +#: lib/file-type.c:48 +msgid "block special file" +msgstr "fichero especial de bloques" + +#: lib/file-type.c:51 +msgid "character special file" +msgstr "fichero especial de caracteres" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "`fifo'" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "enlace simbólico" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "`socket'" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "cola de mensajes" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "semáforo" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "objeto de memoria compartida" + +#: lib/file-type.c:71 +msgid "weird file" +msgstr "fichero extraño" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: la opción `%s' es ambigua\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: la opción `--%s' no admite ningún argumento\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: la opción `%c%s' no admite ningún argumento\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: la opción `%s' requiere un argumento\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: opción no reconocida `--%s'\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: opción no reconocida `%c%s'\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: opción ilegal -- %c\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: opción inválida -- %c\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: la opción requiere un argumento -- %c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: la opción `-W %s' es ambigua\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: la opción `-W %s' no admite ningún argumento\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "tamaño del bloque" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "no se puede volver al directorio de trabajo inicial" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "no se puede crear el directorio %s" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%s existe pero no es un directorio" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "no se puede cambiar el propietario y/o el grupo de %s" + +#: lib/makepath.c:338 +#, c-format +msgid "cannot chdir to directory %s" +msgstr "no se puede cambiar al directorio %s" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "no se pueden cambiar los permisos de %s" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "memoria agotada" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "`" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "'" + +# Esto es para responder "sí" cuando nos pregunte. +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[sS]" + +# Y esto es para responder "no" cuando nos pregunte. +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[nN]" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "la función iconv no es utilizable" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "la función iconv no está disponible" + +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "carácter fuera de rango" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "no se puede convertir U+%04X al conjunto de caracteres local" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "no se puede convertir U+%04X al conjunto de caracteres local: %s" + +# Me niego a considerar "inválido" como palabra "políticamente incorrecta". +# Si algún "impedido físico" lee este mensaje y se molesta por ello, entonces +# es que además de impedido físico es tonto, pues todo el mundo sabe que, +# *en el contexto informático*, inválido e ilegal significan +# "no permitido por la causa que sea". +# Luego, que unas veces sea inválido y otras ilegal, son matices que el +# original tiene y creo necesario respetar en la traducción. +# +# [ Tomás Bautista sugiere "inexistente", y también para grupo ] +# +# FIXME: +# Eso sí, un día tendré que preguntar a los de GNU en qué se diferencia +# "invalid" de "not allowed" de "not recognized" y todo eso... sv +# +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "usuario inválido" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "grupo inválido" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "no se puede obtener el grupo de login de un UID numérico" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "no se puede omitir tanto el usuario como el grupo" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "Escrito por %s.\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +"Esto es software libre; vea el código fuente para las condiciones de copia.\n" +"No hay NINGUNA garantía; ni siquiera de COMERCIABILIDAD o IDONEIDAD PARA UN\n" +"FIN DETERMINADO.\n" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "la comparación de cadenas falló" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "Establezca LC_ALL='C' para solucionar este problema de forma temporal." + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "Las cadenas comparadas eran %s y %s." + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Pruebe `%s --help' para más información.\n" + +#: src/basename.c:54 +#, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"Modo de empleo: %s NOMBRE [SUFIJO]\n" +" o bien: %s OPCIÓN\n" + +#: src/basename.c:59 +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" +"Muestra NOMBRE eliminando cualquier componente de directorio que lo " +"preceda.\n" +"Si se especifica, también elimina un SUFIJO final.\n" +"\n" + +# Véase "A bug's life". +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"Comunicar bichos a <%s>.\n" + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "número de argumentos insuficiente" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "demasiados argumentos" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "Torbjorn Granlund y Richard M. Stallman" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "Modo de empleo: %s [OPCIÓN] [FICHERO]...\n" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" +"Concatena FICHERO(s), o la entrada estándar, en la salida estándar.\n" +"\n" +" -A, --show-all lo mismo que -vET\n" +" -b, --number-nonblank numera las líneas que no están vacías\n" +" -e lo mismo que -vE\n" +" -E, --show-ends muestra '$' al final de cada línea\n" +" -n, --number numera todas las líneas\n" +" -s, --squeeze-blank nunca muestra más de una línea vacía,\n" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" +" -t equivalente a -vT\n" +" -T, --show-tabs muestra los caracteres de tabulación como ^I\n" +" -u (sin efecto)\n" +" -v, --show-nonprinting utiliza la notación ^ y M-, salvo para LFD y TAB\n" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"Sin FICHERO, o cuando FICHERO es -, lee la entrada estándar.\n" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" +"\n" +" -B, --binary usa escrituras binarias al dispositivo de " +"consola.\n" +"\n" + +# Al igual que en fileutils donde también se hace mención a alguna llamada +# del sistema, creo que se debería traducir por algo así como: +# "No se puede realizar la llamada de sistema "ioctl" sobre..." +# creo que es más "self-explanatory" +# Sí, tienes razón em+ +# FIXME: Comunicar al autor. sv +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "no se puede ejecutar la función `ioctl' sobre `%s'" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "salida estándar" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s: los ficheros de entrada y salida son el mismo" + +#: src/cat.c:858 +msgid "closing standard input" +msgstr "cierre de la entrada estándar" + +#: src/cat.c:861 +msgid "closing standard output" +msgstr "cierre de la salida estándar" + +# Nota: se refiere al grupo número 0. +# La convención nulo=cero también existe en español, al menos en el +# lenguaje matemático. Por eso he preferido respetar el matiz. +#: src/chgrp.c:93 +msgid "cannot change to null group" +msgstr "no se puede cambiar al grupo nulo" + +#: src/chgrp.c:102 +#, c-format +msgid "invalid group name %s" +msgstr "nombre de grupo inválido %s" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "número de grupo" + +#: src/chgrp.c:109 +#, c-format +msgid "invalid group number %s" +msgstr "número de grupo inválido %s" + +#: src/chgrp.c:126 +#, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Modo de empleo: %s [OPCIÓN]... GRUPO FICHERO...\n" +" o bien: %s [OPCIÓN]... --reference=FICHERO-R FICHERO...\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Cambia la pertenencia de grupo de cada FICHERO a GRUPO.\n" +"\n" +" -c, --changes como `verbose' pero informa sólo de los cambios\n" +" --dereference afecta al referente de cada enlace simbólico, en " +"lugar\n" +" de al propio enlace simbólico\n" + +# ¿? ¿Existe el verbo "referenciar"? ¿Habría que poner referir? +# +# Sí, que yo sepa ... :) (yo me referencio, tu te referencias ... :). ipg +# +# Muy bueno :-) Ahora sí que lo veo claro. Ya lo he cambiado en todas +# partes, excepto en algunos sitios donde busco una alternativa mejor. sv +# +# Yo creo que referido != referenciado, y este último es el que debería de +# ponerse según lo que pienso... uac +# +# Pues Iñaky me convenció de que referenciado era un "palabro" (palabra +# que no existe, inventada). ¿Estás seguro de que existe? +# (Esto me recuerda el palabro "influenciar", a mucha gente se le olvida +# que se dice *influir*). sv +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" +" -h, --no-dereference afecta a los enlaces simbólicos en lugar de a los\n" +" ficheros referidos (disponible solamente en " +"sistemas\n" +" que pueden cambiar el propietario de un enlace\n" +" simbólico)\n" + +# He traducido "diagnostic" por "mensaje". ¿Alguna idea mejor? +# `diagnóstico' ... ¿no? ipg +# +# Rotundamente no. En español esa palabra solamente se usa en el +# ámbito médico. "a nivel de hospitales" :-) sv +# +# pero en este caso, queda mejor (a mi parecer) `mensaje' ipg +# +# Menos mal :-) sv +# +# Y a mí que no me gusta `mensaje'... pero no encuentro alternativa. Quizá +# `muestra lo realizado para/con/sobre cada fichero' tb +# +# Aunque prefiero mensaje, dejaré aquí tu sugerencia. +# (Creo que es la mejor que me han hecho al respecto). sv +# +# sugiero que se especificara qué tipo de mensaje se muestra ya que un +# "diagnostic" no es un mensaje cualquiera... uac +# +# Bueno, en este caso, por el contexto creo que no hace falta ser más +# explícito, si dice "muestra un mensaje" y la opción se llama "verbose", +# está claro que no es un mensaje de correo electrónico. sv +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet suprime la mayoría de los mensajes de error\n" +" --reference=FICH_R utiliza el grupo de FICH_R en lugar del GRUPO\n" +" especificado\n" +" -R, --recursive opera sobre ficheros y directorios recursivamente\n" +" -v, --verbose muestra un mensaje por cada fichero procesado\n" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, c-format +msgid "failed to get attributes of %s" +msgstr "fallo al obtener los permisos de %s" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "obteniendo nuevos permisos de %s" + +# ¿Y "el modo de... se cambió a..."? tb +# Eso me da la impresión de que no es chmod quien los ha cambiado. +# quiero decir, que así parece que "se cambió solo". +# (aunque sea meramente un matiz). sv +# +# A mí también me parece más adecuado "se cambió a", aunque me gusta más +# "se ha cambiado a" o "ha cambiado a"... uac +# +# Pensaré esto sincronizadamente con los otros. sv +# +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "el modo de %s cambia a %04lo (%s)\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "fallo al cambiar el modo de %s a %04lo (%s)\n" + +# al igual que con chgrp y por coherencia me parece más adecuado: +# "ha permanecido"... uac +# +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "el modo de %s permanece como %04lo (%s)\n" + +#: src/chmod.c:179 +#, c-format +msgid "changing permissions of %s" +msgstr "cambiando los permisos de %s" + +#: src/chmod.c:242 +#, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Modo de empleo: %s [OPCIÓN]... MODO[,MODO]... FICHERO...\n" +" o bien: %s [OPCIÓN]... MODO-OCTAL FICHERO...\n" +" o bien: %s [OPCIÓN]... --reference=FICHERO-R FICHERO...\n" + +#: src/chmod.c:248 +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"Cambia el modo de cada FICHERO a MODO.\n" +"\n" +" -c, --changes como `verbose' pero sólo informa de los cambios\n" +" -f, --silent, --quiet suprime la mayoría de los mensajes de error\n" +" -v, --verbose muestra un mensaje por cada fichero procesado\n" +" --reference=FICH_R utiliza el modo de FICH_R en lugar del valor MODO\n" +" -R, --recursive cambia ficheros y directorios recursivamente\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" +"\n" +"Cada MODO es una o más de las letras ugoa, uno de los símbolos +-= y\n" +"una o más de las letras rwxXstugo.\n" + +#: src/chmod.c:320 +#, c-format +msgid "invalid character %s in mode string %s" +msgstr "carácter %s inválido en la cadena de modo %s" + +#: src/chmod.c:361 +#, c-format +msgid "invalid mode string: %s" +msgstr "cadena de modo inválida %s" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "ni el enlace simbólico %s ni su referente ha cambiado\n" + +#: src/chown-core.c:143 +#, c-format +msgid "changed ownership of %s to %s\n" +msgstr "cambiado el propietario de %s a %s\n" + +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "cambiado el grupo de %s a %s\n" + +#: src/chown-core.c:148 +#, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "fallo al cambiar el propietario de %s a %s\n" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "fallo al cambiar el grupo de %s a %s\n" + +# No sé si sería mejor "se mantiene como propietario de %s a " tb +# No está mal. Lo pensaré. sv +# +# al igual que con el msgid anterior esta propuesta me parece mejor... uac +# ¿Alguien más? :-) sv +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "el propietario de %s permanece como %s\n" + +# por la misma razón que en el msgid anterior, creo que debería ser algo así +# como "ha permanecido" o algo similar... uac +# Siguiendo con lo anterior, en este caso me parece que queda mucho más feo +# en pasado que en presente (razón para dejarlos los dos en presente). +# De todas formas, tendré que pensarlo un poco más despacio. sv +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "el grupo de %s permanece como %s\n" + +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "cambiando el propietario de %s" + +#: src/chown-core.c:327 +#, c-format +msgid "changing group of %s" +msgstr "cambiando el grupo de %s" + +#: src/chown-core.c:345 +#, c-format +msgid "unable to restore permissions of %s" +msgstr "no se pueden restablecer los permisos de %s" + +#: src/chown.c:99 +#, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Modo de empleo: %s [OPCIÓN]... PROPIETARIO[:[GRUPO]] FICHERO...\n" +" o bien: %s [OPCIÓN]... :[GRUPO] FICHERO...\n" +" o bien: %s [OPCIÓN]... --reference=FICHERO-R FICHERO...\n" + +# La línea del "verbose", "da detalles de lo que va haciendo" es +# realmente sosa, ¿alguna sugerencia que la mejore? +# (¿o quizá no hay mucho que mejorar?) +# +# Opera verbosamente (ya sé que es pero ... pero es lo que se +# me ocurrió a mí) :) ipg +# +# Con sinceridad, "verbosamente" me parece un "palabro". sv +# +# ¿Y "muestra en detalle los cambios" ? em +# +# Eso tiene el problema siguiente: "Lo que va haciendo" puede ser +# cambiar unas cosas sí y otras no. No son sólo los cambios. sv +# +# ¿más sugerencias? sv+ +# "muestra mensajes sólo cuando hay algún cambio" tb +# Vale. Aceptado. Es casi igual pero un poquito mejor. sv +# +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Cambia el propietario y/o grupo de cada FICHERO a PROPIETARIO y/o GRUPO.\n" +"\n" +" -c, --changes como verbose pero informa solamente cuando se " +"efectúa\n" +" un cambio\n" +" --dereference afecta al referente al que apunta cada enlace\n" +" simbólico, en vez de al propio enlace simbólico\n" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" +" --from=PROPIETARIO_ACTUAL:GRUPO_ACTUAL\n" +" cambia el propietario y/o el grupo de cada fichero\n" +" solamente si su propietario y/o grupo actual " +"coinciden\n" +" con los especificados aquí. Se puede omitir " +"cualquiera\n" +" de los dos, en cuyo caso no se requiere " +"coincidencia\n" +" para el atributo omitido.\n" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet suprime la mayoría de los mensajes de error\n" +" --reference=FICH_R utiliza el propietario y el grupo de FICH_R en " +"lugar\n" +" de los valores PROPIETARIO:GRUPO especificados\n" +" -R, --recursive opera sobre ficheros y directorios recursivamente\n" +" -v, --verbose muestra un mensaje por cada fichero procesado\n" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" +"\n" +"El propietario no cambia si se omite. El grupo no cambia si se omite, pero\n" +"cambia al grupo de login implícitamente con `:'. PROPIETARIO y GRUPO pueden " +"ser\n" +"numéricos o simbólicos.\n" + +#: src/chroot.c:45 +#, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"Modo de empleo: %s NUEVO_RAÍZ [ORDEN...]\n" +" o bien: %s OPCIÓN\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "Ejecuta ORDEN siendo NUEVO_RAÍZ el directorio raíz.\n" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" +"\n" +"Si no se especifica ninguna orden, ejecuta ``${SHELL} -i''\n" +"(por omisión: /bin/sh).\n" + +#: src/chroot.c:84 +#, c-format +msgid "cannot change root directory to %s" +msgstr "no se puede cambiar el directorio raíz a %s" + +#: src/chroot.c:87 +msgid "cannot chdir to root directory" +msgstr "no se puede cambiar al directorio raíz" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "%s: fichero demasiado largo" + +#: src/cksum.c:282 +#, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"Modo de empleo: %s [FICHERO]...\n" +" o bien: %s [OPCIÓN]\n" + +# ¿¿?? ¿¿Porqué has reformateado para que tengan la misma longitud? ipg +# Me parece que queda más bonito, después de instalar el .po y ver +# un par de mensajes tal y como aparecían creí necesario formatearlo +# un poco. Todavía no hay una regla de formateo oficial para GNU, pero +# es de esperar que dentro de poco la haya. em+ +# +# A mí, la verdad, se me hace harto difícil leer con más de un espacio +# entre medias ... *lo odio* ;). ipg +# +# A ver qué os parece la siguiente regla, nunca la había escrito, pero no +# me la acabo de inventar, creo que es la regla implícita que he estado +# usando desde el principio: +# +# Regla de formateo: Ninguna línea excederá de 80 columnas. Cuando haya un +# especificador de formato (tal y como %s) se debe tener en cuenta que +# resultará sustituido por una palabra cuya longitud habrá que estimar. +# +# Hay algunas que pueden ser más largas aposta, porque sean reformateadas +# a pelo. Además, en muchos casos será casi imposible hacer una estimación. +# ipg +# +# En los textos que explican para qué sirve cada opción, se respetará en la +# medida de lo posible la distancia de tabulación del original. Solamente está +# justificado cambiar dicha distancia cuando haya dificultad en respetar +# el límite de 80 columnas. +# +# Ok. ipg +# +# De acuerdo con la regla, *no* está justificado disminuir la distancia +# en la siguiente cadena, así que la dejo como el original. sv +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" +"Muestra la suma de comprobación CRC y el número de bytes de cada FICHERO.\n" +"\n" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "Richard Stallman y David MacKenzie" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "Modo de empleo: %s [OPCIÓN]... FICHERO1 FICHERO2\n" + +# ¿¿cómo se puede explicar esto mejor?? +# A mí me parece que está bien ... :-? ipg +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" +"Compara los ficheros ordenados FICHERO_IZQUIERDO y FICHERO_DERECHO,\n" +"línea por línea.\n" +"\n" +" -1 suprime las líneas que sólo están en el izquierdo\n" +" -2 suprime las líneas que sólo están en el derecho\n" +" -3 suprime las líneas que aparecen en los dos\n" + +#: src/copy.c:162 src/du.c:332 +#, c-format +msgid "cannot access %s" +msgstr "no se puede acceder a %s" + +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "no se puede abrir %s para lectura" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, c-format +msgid "cannot fstat %s" +msgstr "no se puede efectuar `fstat' sobre %s" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "saltando el fichero %s, ya que fue reemplazado mientras se copiaba" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, c-format +msgid "cannot remove %s" +msgstr "no se puede borrar %s" + +#: src/copy.c:277 +#, c-format +msgid "cannot create regular file %s" +msgstr "no se puede crear el fichero regular %s" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, c-format +msgid "reading %s" +msgstr "leyendo %s" + +#: src/copy.c:362 +#, c-format +msgid "cannot lseek %s" +msgstr "no se puede efectuar `lseek' sobre %s" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, c-format +msgid "writing %s" +msgstr "escribiendo %s" + +#: src/copy.c:409 src/copy.c:415 +#, c-format +msgid "closing %s" +msgstr "cerrando %s" + +# SIoNO +#: src/copy.c:610 +#, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: ¿sobreescribir %s, sustituyendo el modo %04lo? (s/n) " + +# SIoNO +#: src/copy.c:616 +#, c-format +msgid "%s: overwrite %s? " +msgstr "%s: ¿sobreescribir %s? (s/n) " + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, c-format +msgid "cannot stat %s" +msgstr "no se puede efectuar `stat' sobre %s" + +#: src/copy.c:820 +#, c-format +msgid "omitting directory %s" +msgstr "se omite el directorio %s" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "atención: se ha especificado el fichero origen %s más de una vez" + +#: src/copy.c:866 src/ln.c:237 +#, c-format +msgid "%s and %s are the same file" +msgstr "%s y %s son el mismo fichero" + +#: src/copy.c:876 +#, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "no se puede sobreescribir el no directorio %s con el directorio %s" + +#: src/copy.c:893 +#, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "no se sobreescribirá el fichero %s recién creado con %s" + +#: src/copy.c:904 +#, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "no se puede sobreescribir el directorio %s con un no directorio" + +#: src/copy.c:965 +#, c-format +msgid "cannot overwrite directory %s" +msgstr "no se puede sobreescribir el directorio %s" + +#: src/copy.c:974 +#, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "no se puede sobreescribir un directorio con un no directorio: %s -> %s" + +# Nota: Este backing up *no* es un gerundio. +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "respaldar %s destruiría el original; %s no se mueve" + +# Nota: Este backing up *tampoco* es un gerundio. +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "respaldar %s destruiría el original; %s no se copia" + +#: src/copy.c:1013 src/ln.c:273 +#, c-format +msgid "cannot backup %s" +msgstr "no se puede respaldar %s" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr " (respaldo: %s)" + +#: src/copy.c:1099 +#, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "no se puede copiar un directorio, %s, dentro de sí mismo, %s" + +#: src/copy.c:1106 +#, c-format +msgid "will not create hard link %s to directory %s" +msgstr "no se crea el enlace duro %s al directorio %s" + +#: src/copy.c:1132 +#, c-format +msgid "cannot create hard link %s to %s" +msgstr "crea el enlace duro %s a %s" + +#: src/copy.c:1186 +#, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "no se puede mover %s a un directorio de sí mismo, %s" + +#: src/copy.c:1229 +#, c-format +msgid "cannot move %s to %s" +msgstr "no se puede mover %s a %s" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "" +"falló el movimiento entre distintos dispositivos: de %s a %s;\n" +"no se puede borrar el objetivo" + +# Nota: Pongo "el" y no "un" porque no todos los enlaces simbólicos +# cíclicos son imposibles de copiar, por ejemplo: +# ln -s bb bb +# mkdir aa +# cp -d bb aa +# ls -l aa +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "no se puede copiar el enlace simbólico cíclico %s" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "" +"%s: solamente se pueden crear enlaces simbólicos relativos\n" +"en el directorio actual" + +#: src/copy.c:1353 +#, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "no se puede crear el enlace simbólico %s a %s" + +#: src/copy.c:1364 +#, c-format +msgid "cannot create link %s" +msgstr "no se puede crear el enlace %s" + +# Dudo mucho que exista traducción de `fifo', pero si a alguien se le ocurre +# alguna, por favor, que me diga en qué libro aparece y cuánta gente lo usa +# (el término, no el libro). +# +# FIFO es un acrónimo (First-In, First-Out) ... Primero-que-Entra, +# Primero-que-Sale (PEPS) ... no queda muy bien ¿no? :) ipg +# +# Lo sé, lo sé, pero no está el horno para bollos de inventarse +# acrónimos en español que nadie usaría (*ni siquiera nosotros*). sv +# +# Lo que sí te digo es que es 'la' fifo. Y ya puestos, yo usaría, en todo +# caso, 'pila fifo' em +# +# Es que no es "el fifo" ni "la fifo" sino "el [fichero] fifo" +# Es un tipo especial de fichero. +# Para que te quedes tranquilo, añado la palabra "fichero". sv+ +# +# Ya... y `fifo' no es un fichero, sino una `cola'. tb +# +# Creo que se refiere a un "named pipe", de los que se crean con mkfifo. +# Y es un fichero sólo en tanto que está en un determinado directorio, +# como los dispositivos en /dev. +# ¿Debo entender que propones eliminar fichero? +# (¿y poner además "la cola"?). sv +# +# No exactamente. Quiero decir que `fifo' es una cola ---lo decía por toda +# la discusión anterior---, pero como esta cola está construida sobre un +# fichero, pues... Y me temo que "fichero para `fifo'" sería ya demasiado. +# Más vale que lo dejes como está. tb +# +# Por una vez, y sin que sirva de precedente, Santiago, me pongo de +# tu lado :) Déjalo como está :D ipg +# +# Gracias a los dos. sv +#: src/copy.c:1389 src/mkfifo.c:133 +#, c-format +msgid "cannot create fifo %s" +msgstr "no se puede crear el fichero `fifo' %s" + +#: src/copy.c:1403 +#, c-format +msgid "cannot create special file %s" +msgstr "no se puede crear el fichero especial %s" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, c-format +msgid "cannot read symbolic link %s" +msgstr "no se puede leer el enlace simbólico %s" + +#: src/copy.c:1440 +#, c-format +msgid "cannot create symbolic link %s" +msgstr "no se puede crear el enlace simbólico %s" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, c-format +msgid "failed to preserve ownership for %s" +msgstr "fallo al conservar el propietario de %s" + +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "%s tiene un tipo de fichero desconocido" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "se conserva las fechas de %s" + +#: src/copy.c:1531 +#, c-format +msgid "failed to preserve authorship for %s" +msgstr "fallo al conservar el autor de %s" + +#: src/copy.c:1549 +#, c-format +msgid "setting permissions for %s" +msgstr "estableciendo los permisos de %s" + +# Nota: Asegurarse de que significa eso. +# Probablemente quiera decir que "no se puede recuperar `%s'" de la copia +# de seguridad. tb +#: src/copy.c:1571 src/ln.c:326 +#, c-format +msgid "cannot un-backup %s" +msgstr "no se puede restaurar %s" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s -> %s (restauración)\n" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "Torbjorn Granlund, David MacKenzie, y Jim Meyering" + +#: src/cp.c:164 src/mv.c:311 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"Modo de empleo: %s [OPCIÓN]... ORIGEN DESTINO\n" +" o bien: %s [OPCIÓN]... ORIGEN... DIRECTORIO\n" +" o bien: %s [OPCIÓN]... --target-directory=DIRECTORIO ORIGEN...\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Copia ORIGEN a DESTINO, o varios ORIGEN(es) a DIRECTORIO.\n" +"\n" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" +"Los argumentos obligatorios para las opciones largas son también " +"obligatorios\n" +"para las opciones cortas.\n" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" +" -a, --archive lo mismo que -dpR\n" +" --backup[=CONTROL] crea una copia de seguridad de cada fichero " +"de\n" +" destino que exista\n" +" -b como --backup pero no acepta ningún " +"argumento\n" +" --copy-contents copia el contenido de los ficheros " +"especiales\n" +" cuando opera recursivamente\n" +" -d lo mismo que --no-dereference --" +"preserve=link\n" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" +" --no-dereference no sigue los enlaces simbólicos\n" +" -f, --force borra los destinos que ya existan, sin " +"preguntar\n" +" -i, --interactive pide confirmación antes de sobreescribir\n" +" -H sigue los enlaces simbólicos de la línea\n" +" de órdenes\n" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" +" -l, --link enlaza ficheros en lugar de copiarlos\n" +" -L, --dereference sigue siempre los enlaces simbólicos\n" +" -p igual que --preserve=mode,ownership," +"timestamps\n" +" --preserve[=LISTA_ATTR] conserva si puede los atributos " +"especificados,\n" +" (por omisión: mode,ownership,timestamps)\n" +" atributos adicionales: links, all\n" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" +" --no-preserve=LISTA_ATTR no conserva los atributos especificados\n" +" --parents añade el directorio de origen a DIRECTORIO\n" +" -P lo mismo que `--no-dereference'\n" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" +" -R, -r, --recursive copia recursivamente, los no directorios " +"como\n" +" ficheros\n" +" --remove-destination borra cada fichero de destino que exista " +"antes\n" +" de intentar abrirlo (compárese con --" +"force).\n" + +#: src/cp.c:209 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +" --reply={yes,no,query} especifica cómo tratar la pregunta acerca " +"de\n" +" un fichero de destino que ya exista\n" +" --sparse=CUÁNDO controla la creación de ficheros dispersos\n" +" --strip-trailing-slashes elimina todas las barras finales de cada\n" +" argumento ORIGEN\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" +" -s, --symbolic-link crea enlaces simbólicos en lugar de " +"copiarlos\n" +" -S, --suffix=SUFIJO reemplaza el sufijo de respaldo habitual\n" +" --target-directory=DIRECTORIO mueve todos los argumentos ORIGEN al\n" +" directorio DIRECTORIO\n" + +#: src/cp.c:221 +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +" -u, --update copia solamente cuando el fichero ORIGEN es\n" +" más moderno que el fichero de destino,\n" +" o cuando falta el fichero de destino\n" +" -v, --verbose da detalles sobre lo que se va haciendo\n" +" -x, --one-file-system permanece en este sistema de ficheros\n" + +# ¿"crude" es simple o sencillo? +# +# `a lo bruto' o `simple'. +# Yo prefiero `simple'. ipg +# - - - - - - - - - - - - - - - - - +# Nota sobre la traducción de "backup": +# "backup" es sustantivo y verbo, y tiene dos posibles traducciones. +# +# La "verborreica": +# "backup" -> copia de seguridad +# "to backup" -> crear una copia de seguridad +# +# La "corta": +# "backup" -> respaldo +# "to backup" -> respaldar +# (esta traducción aparece en algún programa de Hewlett Packard). +# +# Dado que la "verborreica" queda muy larga (sobre todo cuando es un verbo), +# he decidido usar unas veces una y otras veces la otra, según el caso. +# +# Nota: Los ficheros `sparse' son una especie de +# ficheros con "huecos" (trozos con muchos ceros seguidos). +# Parece ser que hay un sistema que se encarga de acordarse +# en dónde están los huecos para no tener que almacenar tantos bytes. sv+ +# +# "same as" -> "igual que". "Lo mismo que" no termina de convencerme. tb +# es que en inglés también hay "equal to". sv +# Ya. Pero la cuestión no es cómo se dice en inglés, sino cómo se expresa +# la misma idea en español normalmente. tb +# Bueno, yo le digo "lo mismo que"... sv +# +# -x: tampoco me gusta cómo se explica, aunque en el manual sí que lo deja +# bien claro... yo lo pondría algo parecido a: +# +# "no lee [sobre] más de un sistema de ficheros" o +# más parecido al manual: "evita subdirectorios en otros sistemas de ficheros" +# uac +# +# La traducción me parece correcta y fiel. +# Si de verdad te parece que está mal explicado, se lo digo al autor. sv +# +#: src/cp.c:230 +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +"\n" +"Por omisión, los ficheros ORIGEN `sparse' se detectan mediante una simple\n" +"heurística y los correspondientes ficheros DESTINO se crean también " +"`sparse'.\n" +"Este es el comportamiento con --sparse=auto. Al especificar --sparse=always " +"se\n" +"crea un fichero DESTINO `sparse' cuando el fichero ORIGEN contiene una " +"sucesión\n" +"de bytes cero suficientemente larga.\n" +"Utilice --sparse=never para inhibir la creación de ficheros `sparse'.\n" +"\n" + +#: src/cp.c:239 +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"El sufijo de respaldo es `~', a menos que se establezca con --suffix o con\n" +"SIMPLE_BACKUP_SUFFIX. El método de control de versión se puede seleccionar\n" +"con la opción --backup o a través de la variable de entorno " +"VERSION_CONTROL.\n" +"Estos son los valores:\n" +"\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +" none, off nunca realiza copias de seguridad (incluso si se da la\n" +" opción --backup)\n" +" numbered, t crea copias de seguridad numeradas\n" +" existing, nil numeradas si existen copias de seguridad numeradas,\n" +" simples en caso contrario\n" +" simple, never siempre crea copias de seguridad simples\n" + +# Revisar esto un poco. Especialmente la última línea. +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +"Como caso especial, cp crea una copia de seguridad de ORIGEN cuando se " +"utilizan\n" +"las opciones `force' y `backup', y ORIGEN y DESTINO tienen el mismo nombre " +"para\n" +"un nombre de fichero regular existente.\n" + +#: src/cp.c:325 +#, c-format +msgid "failed to preserve times for %s" +msgstr "fallo al conservar la fecha de %s" + +#: src/cp.c:349 +#, c-format +msgid "failed to preserve permissions for %s" +msgstr "fallo al conservar los permisos de %s" + +#: src/cp.c:434 +#, c-format +msgid "cannot make directory %s" +msgstr "no se puede crear el directorio %s" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +msgid "missing file argument" +msgstr "falta un fichero como argumento" + +#: src/cp.c:498 +msgid "missing destination file" +msgstr "falta el fichero de destino" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "accediendo a %s" + +#: src/cp.c:546 +#, c-format +msgid "%s: specified target is not a directory" +msgstr "%s: el objetivo especificado no es un directorio" + +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "" +"se copian varios ficheros, pero el último argumento %s\n" +"no es un directorio" + +# Nota: Mejor no traducir "path" y "directory" de la misma forma dentro +# de la misma frase. +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "cuando se conservan rutas de acceso, el destino debe ser un directorio" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"atención: --version-control (-V) está obsoleta; su soporte será eliminado\n" +"en alguna versión posterior. Utilice --backup=%s en su lugar." + +#: src/cp.c:972 src/ln.c:464 +msgid "symbolic links are not supported on this system" +msgstr "este sistema no admite enlaces simbólicos" + +# ¿? HARD ¿duro o fuerte? +# +# Yo lo dejaría en duro ... (queda más heavy :) ipg +# +# Me inclino por fuerte. em +# +# ¿bibliografía? +# (¿en qué libros os basáis?) sv+ +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "no se puede crear un enlace que sea duro y simbólico al mismo tiempo" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "tipo de respaldo" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "Stuart Kemp y David MacKenzie" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "error de lectura" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "la entrada dejó de existir" + +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s: número de línea fuera de rango" + +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: `%s': número de línea fuera de rango" + +# ??? +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr " repetido %d\n" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s: `%s': ocurrencia no encontrada" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "error en la búsqueda de la expresión regular" + +# %s debe de ser un fichero, ¿no? si es así a mí me parece "más natural": +# "en %s" e incluso quizás "sobre %s"... o quizás no... ahí queda eso +# Lo cambio em+ +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "error al escribir `%s'" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "%s: se esperaba un `+' ó un `-' después del delimitador" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s: se esperaba un número entero después de `%c'" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "%s: se requiere un `}' después del número de repeticiones" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "%s}: entre `{' y `}' debe especificarse un número entero" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s: falta el delimitador de cierre `%c'" + +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: la expresión regular no es válida: %s" + +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "%s: plantilla inválida" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s: el número de línea debe ser mayor que cero" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "el número de línea `%s' es menor que el número de línea anterior, %s" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "atención: el número de línea `%s' es el mismo que el anterior" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "falta el especificador de conversión en el sufijo" + +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "el especificador de conversión indicado en el sufijo no es válido: %c" + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "" +"el especificador de conversión indicado en el sufijo no es válido: \\%.3o" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "falta el especificador de conversión %% en el sufijo" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "demasiados especificadores de conversión %% en el sufijo" + +#: src/csplit.c:1441 +#, c-format +msgid "%s: invalid number" +msgstr "%s: número inválido" + +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "Modo de empleo: %s [OPCIÓN]... FICHERO PLANTILLA...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" +"Escribe los trozos de FICHERO que estén separados por PLANTILLA(s) en " +"ficheros\n" +"`xx01', `xx02' y muestra el tamaño de cada trozo en la salida estándar.\n" +"\n" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" +" -b, --suffix-format=FORMATO usa formato `sprintf' en vez de %d\n" +" -f, --prefix=PREFIJO usa PREFIJO en vez de `xx'\n" +" -k, --keep-files no borra los ficheros de salida si hay " +"errores\n" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" +" -n, --digits=DÍGITOS usa el número especificado de DÍGITOS\n" +" en vez de 2\n" +" -s, --quiet, --silent no muestra el tamaño de los ficheros creados\n" +" -z, --elide-empty-files borra los ficheros de salida vacíos\n" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" +"\n" +"Lee la entrada estándar si FICHERO es `-'. Cada PLANTILLA puede ser:\n" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" +"\n" +"Lee la entrada estándar si FICHERO es `-'. Cada PLANTILLA puede ser:\n" +"\n" +" NÚMERO_LÍNEA copia a partir de este número de línea excluida ella\n" +" /EXPREG/[DESPLAZ] copia sin incluir las líneas que coincidan con EXPREG\n" +" %%EXPREG%%[DESPLAZ] comienza a partir de la línea que coincida con " +"EXPREG\n" +" {NÚMERO ENTERO} repite la plantilla especificada un número de veces\n" +" {*} repite la plantilla especificada todas las veces " +"posibles\n" +"\n" +"Un DESPLAZamiento de línea es un número entero precedido de `+' o de `-'.\n" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie, y Jim Meyering" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "Modo de empleo: %s [OPCIÓN]... [FICHERO]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" +"Extrae las partes seleccionadas de cada FICHERO en la salida estándar:\n" +"\n" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" +" -b, --bytes=LISTA muestra solamente estos bytes\n" +" -c, --characters=LISTA muestra solamente estos caracteres\n" +" -d, --delimiter=DELIM usa DELIM en vez de caracteres de tabulación\n" +" para delimitar los campos\n" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" +" -f, --fields=LISTA muestra solamente estos campos; también muestra\n" +" cualquier línea que no tenga un carácter\n" +" delimitador, a menos que se especifique la\n" +" opción -s\n" +" -n (no tiene efecto)\n" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" +" -s, --only-delimited no muestra las líneas que no contienen\n" +" delimitadores\n" +" --output-delimiter=CADENA utiliza CADENA como el delimitador del\n" +" resultado. Por omisión se utiliza el\n" +" delimitador de la entrada\n" + +# Pregunta: ¿por qué se ha eliminado lo de "N-ésimo byte..."? ¿Por espacio? +# Respuesta: en la posicion N = enésimo em+ +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"Utilice una y sólo una de las opciones -b, -c ó -f. Cada LISTA se compone\n" +"de uno o de más rangos separados por comas. Los rangos pueden ser:\n" +"\n" +" N El byte, carácter o campo en la posición N contado desde 1\n" +" N- A partir del byte, carácter o campo en la posición N, hasta el " +"final\n" +" de la línea\n" +" N-M Desde el byte, carácter o campo que ocupa la posición N hasta el de\n" +" la posición M\n" +" -M desde el primero hasta el byte, carácter o campo de la posición M\n" +"\n" +"Lee la entrada estándar si no se especifica FICHERO o es `-'.\n" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "la lista de bytes o campos no es válida" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "solamente se puede especificar un tipo de lista" + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "falta la lista de posiciones" + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "falta la lista de campos" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "el delimitador debe ser un sólo carácter" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "se debe indicar una lista de bytes, caracteres o campos" + +#: src/cut.c:720 +msgid "an input delimiter may be specified only when operating on fields" +msgstr "" +"sólo se puede especificar un delimitador de entrada cuando se procesan campos" + +# FIXME: Comunicar al autor lo de los tabs. sv+ +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" +"suprimir las líneas no delimitadas solamente tiene sentido\n" +"cuando se procesan campos" + +# Pongo AA en vez de YY. sv +# Pongo SS de siglo en vez de CC. sv +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" +"Modo de empleo: %s [OPCIÓN]... [+FORMATO]\n" +" o bien: %s [-u|--utc|--universal] [MMDDhhmm[[SS]AA][.ss]]\n" + +# UTC = Tiempo Universal Coordinado, antiguo GMT (Greenwich Mean Time, +# Hora Media de Greenwich). gerardo +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" +"Muestra la hora actual en el FORMATO dado, o establece la fecha del " +"sistema.\n" +"\n" +" -d, --date=CADENA muestra la hora descrita por CADENA, no `now'\n" +" -f, --file=FICHERO_FECHA igual que --date por cada línea de " +"FICHERO_FECHA\n" +" -IE_TIEMPO, --iso-8601[=E_TIEMPO] muestra una cadena de fecha/hora según " +"la norma\n" +" ISO-8601. E_TIEMPO=`fecha' (o nada) para la " +"fecha\n" +" solamente, `horas', `minutos', o `segundos'\n" +" para la fecha y la hora con la precisión " +"indicada\n" +" --iso-8601 sin E_TIEMPO significa usar `date'\n" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" +" -r, --reference=FICHERO muestra la fecha de última modificación de " +"FICHERO\n" +" -R, --rfc-822 muestra la cadena de fecha que cumple con RFC-" +"822\n" +" -s, --set=CADENA establece la hora descrita por CADENA\n" +" -u, --utc, --universal muestra o establece el Tiempo Universal " +"Coordinado\n" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" +"\n" +"FORMATO controla la salida. La única opción válida para la segunda forma\n" +"especifica Tiempo Universal Coordinado. Las secuencias interpretadas son:\n" +"\n" +" %% un % literal\n" +" %a el nombre local abreviado de la semana (Dom..Sáb)\n" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" +" %A el nombre local completo de la semana, de longitud variable\n" +" (Domingo..Sábado)\n" +" %b el nombre local abreviado del mes (Ene..Dic)\n" +" %B el nombre local completo del mes, de longitud variable\n" +" (Enero..Diciembre)\n" +" %c la fecha y hora local (Sab Nov 04 12:02:33 EST 1989)\n" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" +" %C siglo (año dividido por 100 y truncado a entero) [00-99]\n" +" %d el día del mes (01..31)\n" +" %D la fecha (mm/dd/aa)\n" +" %e el día del mes, completado con espacios ( 1..31)\n" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" +" %F lo mismo que %Y-%m-%d\n" +" %g el año de 2 dígitos que corresponde a la semana %V\n" +" %G el año de 4 dígitos que corresponde a la semana %V\n" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" +" %h igual que %b\n" +" %H la hora (00..23)\n" +" %I la hora (01..12)\n" +" %j el día del año (001..366)\n" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" +" %k la hora ( 0..23)\n" +" %l la hora ( 1..12)\n" +" %m el mes (01..12)\n" +" %M los minutos (00..59)\n" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" +" %n un carácter de nueva línea\n" +" %N nanosegundos (000000000..999999999)\n" +" %p AM o PM local en mayúsculas (blanco en muchos locales)\n" +" %P am o pm local en minúsculas (blanco en muchos locales)\n" +" %r la hora, en formato de 12 horas (hh:mm:ss [AP]M)\n" +" %R la hora, en formato de 24 horas (hh:mm:ss [AP]M)\n" +" %s los segundos desde `00:00:00 1970-01-01 UTC' (una extensión de GNU)\n" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" +" %S los segundos (00..60); el 60 es necesario para los segundos " +"intercalares\n" +" %t un tabulador horizontal\n" +" %T la hora, en formato de 24 horas (hh:mm:ss)\n" +" %u día de la semana (1..7); 1 representa lunes\n" + +# ¿Es realmente correcta la W? Casi coincide con %V +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" +" %U el número de la semana del año con Domingo como primer día de la\n" +" semana (00..53)\n" +" %V el número de la semana del año con Lunes como primer día de la\n" +" semana (01..53)\n" +" %w el día de la semana (0..6); 0 representa Domingo\n" +" %W el número de la semana en el año con lunes como primer día de\n" +" la semana (00..53)\n" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" +" %x la representación local de la fecha (dd/mm/aa)\n" +" %X la representación local de la hora (%H:%M:%S)\n" +" %y los últimos dos dígitos del año (00..99)\n" +" %Y el año (1970...)\n" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" +" %z la zona horaria numérica estilo RFC-822 (-0500)\n" +" (una extensión no estándar)\n" +" %Z la zona horaria (p.e., EDT), o nada si no es determinable la\n" +" zona horaria\n" +"\n" +"Por omisión, date rellena los campos numéricos con ceros. GNU date\n" +"reconoce los siguientes modificadores entre `%%' y una directiva numérica.\n" +"\n" +" `-' (guión) no rellena el campo\n" +" `_' (subrayado) rellena el campo con espacios\n" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "entrada estándar" + +#: src/date.c:268 src/date.c:460 +#, c-format +msgid "invalid date `%s'" +msgstr "fecha inválida `%s'" + +# Cualquier cosa menos poner "fechas a imprimir". +#: src/date.c:364 +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "las opciones para especificar la fecha son mutuamente excluyentes" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "" +"las opciones para mostrar y establecer la hora no se pueden utilizar a la vez" + +#: src/date.c:377 +#, c-format +msgid "too many non-option arguments: %s%s" +msgstr "demasiados argumentos que no son opciones: %s%s" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" +"el argumento `%s' carece del signo `+' inicial;\n" +"cuando se utiliza una opción para especificar fecha(s), cualquier argumento\n" +"que no sea una opción debe ser una cadena de formato que comience con `+'." + +#: src/date.c:397 +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "" +"no se puede especificar una cadena de formato cuando se usa\n" +"la opción --rfc-822 (-R)" + +# Nota: Se refiere con toda probabilidad a una fecha o a una hora. +#: src/date.c:433 +msgid "undefined" +msgstr "no definida" + +#: src/date.c:435 +msgid "cannot get time of day" +msgstr "no se puede obtener la hora del día" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "no se puede establecer la fecha" + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "Paul Rubin, David MacKenzie, y Stuart Kemp" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "Modo de empleo: %s [OPCIÓN]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" +"Copia un fichero, convirtiendo y dándole formato de acuerdo con las " +"opciones.\n" +"\n" +" bs=BYTES establece ibs=BYTES y obs=BYTES\n" +" cbs=BYTES convierte BYTES bytes cada vez\n" +" conv=PALABRAS convierte el fichero según la lista de palabras clave\n" +" separadas por comas\n" +" count=BLOQUES copia solamente BLOQUES bloques de entrada\n" +" ibs=BYTES lee BYTES bytes cada vez\n" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" +" if=FICHERO lee del FICHERO en lugar de la entrada estándar (stdin)\n" +" obs=BYTES escribe BYTES bytes cada vez\n" +" of=FICHERO escribe en FICHERO en lugar de la salida estándar\n" +" seek=BLOQUES se salta BLOQUES bloques de tamaño obs al comienzo del\n" +" resultado\n" +" skip=BLOQUES se salta BLOQUES bloques de tamaño ibs al comienzo de la\n" +" entrada\n" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" +"\n" +"BLOQUES y BYTES pueden estar seguidos por los siguientes sufijos\n" +"multiplicativos:\n" +"xM M, c 1, w 2, b 512, kB 1.000, k 1.024, MB 1.000.000, M 1.048.576\n" +"GB 1.000.000.000, G 1.073.741.824, y así sucesivamente para T, P, E, Z, Y.\n" +"Cada PALABRA puede ser:\n" +"\n" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" +" ascii de EBCDIC a ASCII\n" +" ebcdic de ASCII a EBCDIC\n" +" ibm de ASCII a EBCDIC alternado\n" +" block rellena los registros terminados en nueva línea con espacios " +"hasta\n" +" el tamaño de cbs\n" +" unblock sustituye los espacios que sobran en los registros de tamaño " +"cbs\n" +" con un carácter de nueva línea\n" +" lcase cambia las mayúsculas a minúsculas\n" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" +" notrunc no trunca el fichero de salida\n" +" ucase cambia las minúsculas a mayúsculas\n" +" swab intercambia cada pareja de bytes de entrada\n" +" noerror continúa después de los errores de lectura\n" +" sync rellena cada bloque de entrada con NULs hasta el tamaño de ibs;\n" +" cuando se utiliza con block o unblock, rellena con espacios\n" +" en lugar de con NULos\n" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "%s+%s registros leídos\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "%s+%s registros escritos\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "registro truncado" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "registros truncados" + +#: src/dd.c:382 +#, c-format +msgid "closing input file %s" +msgstr "cerrando el fichero de entrada %s" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "cerrando el fichero de salida %s" + +#: src/dd.c:469 +#, c-format +msgid "writing to %s" +msgstr "escribiendo en %s" + +#: src/dd.c:501 +#, c-format +msgid "invalid conversion: %s" +msgstr "conversión inválida: %s" + +#: src/dd.c:557 +#, c-format +msgid "unrecognized option %s" +msgstr "opción no reconocida %s" + +#: src/dd.c:610 +#, c-format +msgid "unrecognized option %s=%s" +msgstr "opción no reconocida %s=%s" + +#: src/dd.c:616 +#, c-format +msgid "invalid number %s" +msgstr "número inválido %s" + +# Nota: El `conv' es el mismo que aparece más adelante como +# "conv=KEYWORD", por lo tanto *no* se debe traducir. +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"sólo una `conv' en {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock},\n" +"{unblock,sync}" + +# Se admiten sugerencias. +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" +"atención: solucionando provisionalmente un bicho del núcleo\n" +"relacionado con lseek para el fichero (%s) de mt_type=0x%0lx;\n" +"consulte la lista de tipos en " + +#: src/dd.c:1170 src/dd.c:1188 +#, c-format +msgid "opening %s" +msgstr "abriendo %s" + +# No me acaba de sonar bien lo de fuera de rango. +# Se admiten sugerencias. sv +#: src/dd.c:1196 +msgid "file offset out of range" +msgstr "desplazamiento de fichero fuera de rango" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "avanzando %s bytes pasados en el fichero de salida %s" + +#: src/df.c:49 +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "Torbjorn Granlund, David MacKenzie, Larry McVoy, y Paul Eggert" + +#: src/df.c:153 +msgid "Filesystem Type" +msgstr "S.ficheros Tipo" + +#: src/df.c:155 +msgid "Filesystem " +msgstr "S.ficheros " + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr " Nodos-i NUsados NLibres NUso%%" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Tamaño Usado Disp Uso%%" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Tamaño Usado Disp Uso%%" + +# Nota: %-4s es para que justifique a la izquierda. +# El espacio inicial es necesario para que la palabra Bloques no aparezca +# pegada a la palabra Tipo cuando se usa df -T. +#: src/df.c:167 +#, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr " Bloques de %-4s Usado Dispon Ocupado" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr " Bloques de %-4s Usado Dispon Uso%%" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr " Montado en\n" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" +"Muestra información sobre el sistema de ficheros en el que reside cada " +"FICHERO,\n" +"o por omisión sobre todos los sistemas de ficheros.\n" +"\n" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" +" -a, --all incluye los sistemas de ficheros con 0 bloques\n" +" -B, --block-size=TAM utiliza bloques de TAM bytes\n" +" -h, --human-readable imprime los tamaños en formato legible (p.e. 1K 234M " +"2G)\n" +" -H, --si análogo, pero utiliza potencias de 1000 y no de 1024\n" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" +" -i, --inodes muestra la información de nodos-i en lugar del uso\n" +" de bloques\n" +" -k como --block-size=1K\n" +" -l, --local limita el listado a los sistemas de ficheros " +"locales\n" +" --no-sync no llama a sync antes de obtener el modo de empleo\n" +" (por defecto)\n" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" +" -P, --portability utiliza el formato POSIX para el resultado\n" +" --sync llama a sync antes de obtener el modo de empleo\n" +" -t, --type=TIPO restringe el listado a sistemas de ficheros de tipo " +"TIPO\n" +" -T, --print-type muestra el tipo del sistema de ficheros\n" +" -x, --exclude-type=TIPO restringe el listado a los sistemas de ficheros " +"que\n" +" no son del tipo TIPO\n" +" -v (no tiene efecto)\n" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" +"\n" +"TAMAÑO puede ser (o puede ser un entero seguido opcionalmente por) uno\n" +"de los siguientes: kB 1.000, K 1.024, MB 1.000.000, M 1.048.576, y así\n" +"en adelante para G, T, P, E, Z, Y.\n" + +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "el sistema de ficheros %s está simultánemente seleccionado y excluido" + +#: src/df.c:903 +msgid "Warning: " +msgstr "Atención: " + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "%sno se puede leer la tabla de sistemas de ficheros montados" + +#: src/dircolors.c:103 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "Modo de empleo: %s [OPCIÓN]... [FICHERO]\n" + +#: src/dircolors.c:104 +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"Produce órdenes para establecer la variable de entorno LS_COLORS.\n" +"\n" +"Para determinar el formato del resultado:\n" +" -b, --sh, --bourne-shell produce código en Bourne shell para\n" +" establecer LS_COLORS\n" +" -c, --csh, --c-shell produce código en C-shell para\n" +" establecer LS_COLORS\n" +" -p, --print-database muestra los valores por defecto\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" +"\n" +"Si se especifica FICHERO, se lee para determinar qué colores usar para " +"cuáles\n" +"tipos de ficheros y extensiones. En caso contrario, se utiliza una base de\n" +"datos precompilada. Para más información acerca del formato de estos " +"ficheros,\n" +"ejecute `dircolors --print-database'.\n" + +#: src/dircolors.c:299 +#, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s:%lu: línea inválida; falta el segundo elemento" + +#: src/dircolors.c:371 +#, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s:%lu: palabra clave no reconocida %s" + +#: src/dircolors.c:372 +msgid "" +msgstr "" + +#: src/dircolors.c:467 +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" +"las opciones para mostrar la base de datos interna de dircolors y\n" +"para seleccionar una sintaxis para el shell son mutuamente excluyentes" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" +"no se pueden usar argumentos de tipo FICHERO con la opción para mostrar\n" +"la base de datos interna de dircolors" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "" +"no hay variable de entorno SHELL, y no se ha especificado la opción\n" +"del tipo de shell" + +#: src/dirname.c:33 src/pathchk.c:59 +msgid "David MacKenzie and Jim Meyering" +msgstr "David MacKenzie y Jim Meyering" + +#: src/dirname.c:46 +#, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"Modo de empleo: %s NOMBRE\n" +" o bien: %s OPCIÓN\n" + +#: src/dirname.c:51 +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" +"Muestra NOMBRE con sus /componentes finales eliminados; si NOMBRE no tiene\n" +"/'s, el resultado es `.' (representando el directorio actual).\n" +"\n" + +#: src/du.c:49 +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, y Jim Meyering" + +# La palabra "desreferencia" es horrenda. Dudo incluso de que exista. +# ¿Sugerencias? +# "Deja de referenciar", "Elimina referencia/s a" (Sólo es sugerencia) tb +# La consevaremos, a ver si junto varias. sv +# +# ¿Por qué no algo tan simple y comprensible como "no hace referencia a"? uac +# +# Lo pensaré despacito. sv +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" +"Muestra un resumen del uso de disco para cada FICHERO, recursivamente para\n" +"directorios.\n" +"\n" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" +" -a, --all muestra resultados para todos los ficheros, no sólo\n" +" para los directorios\n" +" --apparent-size muestra los tamaños aparentes, en lugar del uso de\n" +" disco; el tamaño aparente es normalmente más " +"pequeño,\n" +" puede ser más grande debido a agujeros en " +"ficheros\n" +" dispersos, fragmentación interna, etc.\n" +" -B, --block-size=TAM utiliza bloques de TAM bytes\n" +" -b, --bytes equivalente a `--apparent-size --block-size=1'\n" +" -c, --total produce un \"total\"\n" +" -D, --dereference-args desreferencia los FICHEROs que son enlaces " +"simbólicos\n" + +# prefiero enlaces duros a fuertes em +# +# En esto no os ponéis de acuerdo. +# Creo que lo acabaremos preguntando en "spanglish". sv+ +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" +" -h, --human-readable muestra los tamaños de forma legible\n" +" (p.ej., 1K 234M 2G)\n" +" -H, --si análogo, pero utiliza potencias de 1000 y no de " +"1024\n" +" -k como --block-size=1K\n" +" -l, --count-links cuenta los tamaños varias veces si hay enlaces " +"fuertes\n" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" +" -L, --dereference desreferencia todos los enlaces simbólicos\n" +" -S, --separate-dirs no incluye el tamaño de los subdirectorios\n" +" -s, --summarize muestra solamente un total para cada argumento\n" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" +" -x, --one-file-system se salta los directorios de otros sistemas de " +"ficheros\n" +" -X FICH, --exclude-from=FICH Excluye los ficheros que coinciden con\n" +" cualquier patrón en FICH.\n" +" --exclude=PATRÓN Excluye los ficheros que coinciden con PATRÓN.\n" +" --max-depth=N muestra el total para un directorio (o fichero,\n" +" con --all) solamente si está N o menos niveles por\n" +" debajo del argumento de la línea de órdenes;\n" +" --max-depth=0 es lo mismo que --summarize\n" + +#: src/du.c:337 +#, c-format +msgid "cannot change to parent of directory %s" +msgstr "no se puede cambiar al directorio padre de %s" + +#: src/du.c:345 +#, c-format +msgid "cannot change to directory %s" +msgstr "no se puede cambiar al directorio %s" + +#: src/du.c:352 +#, c-format +msgid "cannot read directory %s" +msgstr "no se puede leer el directorio %s" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "total" + +#: src/du.c:641 +#, c-format +msgid "invalid maximum depth %s" +msgstr "profundidad máxima inválida %s" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "no se puede al mismo tiempo resumir y mostrar todas las entradas" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "atención: resumir es lo mismo que usar --max-depth=0" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "atención: resumir entra en conflicto con --max-depth=%d" + +#: src/echo.c:77 +#, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "Modo de empleo: %s [OPCIÓN]... [CADENA]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" +"Repite la(s) CADENA(s) por la salida estándar.\n" +"\n" +" -n no muestra el carácter final de nueva línea\n" +" -e activa la interpretación de caracteres escapados con una\n" +" barra invertida que se listan más abajo\n" +" -E desactiva la interpretación de esas secuencias en CADENAs\n" + +# alerta (BEL) -> pitido audible (BEL) em+ +# Vale que no es alerta, pero yo creo que debería ser campana. sv+ +# +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" +"\n" +"Sin -E, las siguientes secuencias son reconocidas e intercaladas:\n" +"\n" +" \\NNN el carácter cuyo código es NNN (octal)\n" +" \\\\ barra invertida\n" +" \\a campana (BEL)\n" +" \\b retroceso\n" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\c suprime los caracteres de nueva línea finales\n" +" \\f avance de página (form feed)\n" +" \\n nueva línea\n" +" \\r retorno de carro\n" +" \\t tabulador horizontal\n" +" \\v tabulador vertical\n" + +#: src/env.c:93 +msgid "Richard Mlynarik and David MacKenzie" +msgstr "Richard Mlynarik y David MacKenzie" + +#: src/env.c:119 +#, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "" +"Modo de empleo: %s [OPCIÓN]... [-] [NOMBRE=VALOR]... [ORDEN [ARGUMENTO]...]\n" + +#: src/env.c:122 +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" +"Asigna a cada NOMBRE el VALOR en el entorno y ejecuta ORDEN.\n" +"\n" +" -i, --ignore-environment comienza con un entorno vacío\n" +" -u, --unset=NOMBRE borra la variable del entorno\n" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" +"\n" +"Un simple - implica -i. Si no hay ORDEN, muestra el entorno resultante.\n" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Convierte las tabulaciones de cada FICHERO en espacios, escribiendo el\n" +"resultado en la salida estándar. Si no se especifica FICHERO o FICHERO\n" +"es `-', lee la entrada estándar.\n" +"\n" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" +" -i, --initial sólo convierte las tabulaciones iniciales de cada " +"línea\n" +" -t, --tabs=NÚMERO usa N espacios en cada tabulación, en vez de 8\n" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" +" -t, --tabs=LISTA usa la LISTA de posiciones separadas por comas para\n" +" definir las posiciones de tabulación\n" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "el tamaño de tabulación contiene un carácter inválido" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "el tamaño de tabulación no puede ser 0" + +# ??? Mejor que el original, lo estoy dejando :-) +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "las posiciones de tabulación deben ir en orden creciente" + +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "la opción `-LISTA' está obsoleta; utilice `-t LISTA'" + +#: src/expr.c:90 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"Modo de empleo: %s EXPRESIÓN\n" +" o bien: %s OPCIÓN\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" +"\n" +"Muestra el valor de la EXPRESIÓN en la salida estándar. Una línea en blanco\n" +"debajo separa los grupos de prioridad creciente. La EXPRESIÓN puede ser:\n" +"\n" +" ARG1 | ARG2 ARG1 si no es nulo ni 0, de otra manera ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 si ningún argumento es nulo o 0, de otra manera 0\n" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" +"\n" +" ARG1 < ARG2 ARG1 es menor que ARG2\n" +" ARG1 <= ARG2 ARG1 es menor o igual que ARG2\n" +" ARG1 = ARG2 ARG1 es igual a ARG2\n" +" ARG1 != ARG2 ARG1 es distinto de ARG2\n" +" ARG1 >= ARG2 ARG1 es mayor o igual que ARG2\n" +" ARG1 > ARG2 ARG1 es mayor que ARG2\n" +"\n" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" +"\n" +" ARG1 + ARG2 suma aritmética de ARG1 y ARG2\n" +" ARG1 - ARG2 diferencia aritmética de ARG1 y ARG2\n" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" +"\n" +" ARG1 * ARG2 producto aritmético de ARG1 y ARG2\n" +" ARG1 / ARG2 cociente aritmético de ARG1 dividido entre ARG2\n" +" ARG1 % ARG2 residuo aritmético de ARG1 dividido entre ARG2\n" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" +"\n" +" CADENA : EXPREG búsqueda de expresiones regulares REGEXP en CADENA\n" +"\n" +" match CADENA EXPREG igual que CADENA : EXPREG\n" +" substr CADENA POS LONG subcadena de CADENA, POS se cuenta partiendo de " +"1\n" +" index CADENA CARacteres índice en CADENA donde cualquier CARácter es\n" +" encontrado, ó 0\n" +" length CADENA longitud de CADENA\n" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" +" + TOKEN interpreta TOKEN como una cadena, incluso si " +"es\n" +" una palabra clave como `match' o un operador\n" +" como `/'\n" +"\n" +" ( EXPRESIÓN ) valor de EXPRESIÓN\n" + +# Aquí no estoy muy conforme con quoted -> colocado entre comillas +# ¿Acaso no sería mejor comentado? cfuga +# Bueno, realmente sería "citado". Comentado se aplica más bien a estas +# líneas que tienen un "#" al principio. +# me parece mejor lo que hay ahora que comentado. sv +# Sugerencia: emparejada -> que coincide con. cfuga +# Por mí, bien. Se trata de "string matching", es decir que una cadena +# coincide (en el sentido de que "encaja") con una determinada expresión +# regular. Lo de match-emparejada lo solemos usar para llaves o comillas +# que deben estar por parejas (una al principio y otra al final). sv +# +# ¿¿Escapados?? = colocados entre secuencias de escape. +# No sería exacto, porque así das a entender que debe haber una secuencia +# de escape antes y otra después. +# +# ¿No habría que poner "shell" entre comillas: `shell', ya que no lo +# traducimos por "concha" (para los argentinos y otros: xoxo) ni +# "caparazón" o "envoltorio"? (Conste que he visto estas palabras en +# libros) Ya que es una palabra inglesa con traducción española, si +# bien algo inconveniente quizá. gerardo +# Es un neologismo. Creo que en español lo mejor es llamarle también shell. +# No conozco ninguna traducción que haya prosperado. +# Piensa en que tampoco ponemos entre comillas hardware ni software. sv +# Es distinto. Las traducciones de hardware ("cacharrería") y +# software ("logical") son demasiado forzadas. No hay traducción +# aceptable. De "shell" sí hay, aunque la verdad es que a mí no me +# gustan tampoco. En fin, tú mandas. Aquí me rindo. gerardo +# Gracias. Si se te ocurre alguna ingeniosa traducción de shell, que nos +# guste a los dos, *y que estés dispuesta a usarla en tu lenguaje cotidiano* +# me avisas. No creo que suceda. sv +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" +"\n" +"Advierta que muchos operadores necesitan ser escritos con secuencias de " +"escape\n" +"o encerrados entre comillas para los shells.\n" +"Las comparaciones son aritméticas si ambos ARGs son números, de otra manera\n" +"son lexicográficas.\n" +"Las coincidencias de expresiones regulares devuelven la cadena emparejada\n" +"entre \\( y \\) o nulo; si no se utilizan \\( y \\), devuelven el número de\n" +"caracteres coincidentes ó 0.\n" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +msgid "syntax error" +msgstr "error de sintaxis" + +# Portable = transportable (sugerencia: gerardo) +# Me gusta más "portable". sv +# +# A mí no, pero como el traductor eres tú... :-( ¿Tú dices por +# ejemplo: "voy a portar un mueble de una habitación a otra"? "¡Hay +# que ver lo de la huelga de portes y camioneros...!" "Este televisor +# es muy grande para ser de 14'', es incómodo de portar"... etc... +# gerardo +# +# No te niego que son buenos tus ejemplos. Pero dime: +# ¿De verdad dirías que DJGPP es un "transporte" de GNU CC a MS-DOS? +# (Erosión, transporte y sedimentación). +# +# Al final me convenciste. Ahora estoy intrigado: +# ¿Aparecerá en algún sitio más? sv +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" +"atención: ERB no transportable: `%s': utilizar `^' como el primer carácter\n" +"de la expresión regular básica no es transportable; no se tendrá en cuenta" + +#: src/expr.c:586 src/expr.c:625 +msgid "non-numeric argument" +msgstr "argumento no numérico" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "división por cero" + +#: src/factor.c:74 +#, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"Modo de empleo: %s [NÚMERO]...\n" +" o bien: %s OPCIÓN\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" +"Muestra los factores de cada NÚMERO.\n" +"\n" + +#: src/factor.c:85 +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" +"\n" +" Muestra los factores primos de cada NÚMERO entero especificado. Si\n" +" no se especifican argumentos en la línea de órdenes, se leen de la\n" +" entrada estándar.\n" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "`%s' no es un entero positivo válido" + +# FIXME: There options ... abbreviated: <- ¿no faltan los dos puntos? sv +#: src/false.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Modo de empleo: %s [argumentos que no se tienen en cuenta]\n" +" o bien: %s OPCIÓN\n" +"Sale con un código de estado que indica fallo.\n" +"\n" +"Estos nombres de opciones no se pueden abreviar:\n" +"\n" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "Modo de empleo: %s [-DÍGITOS] [OPCIÓN]... [FICHERO]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" +"Reformatea cada párrafo de FICHERO(s), escribiendo en la salida estándar.\n" +"Si no se especifica FICHERO o FICHERO es `-', lee la entrada estándar.\n" +"\n" + +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" +" -c, --crown-margin mantiene la sangría en las dos primeras líneas\n" +" -p, --prefix=CADENA junta sólo las líneas que comiencen con CADENA\n" +" -s, --split-only divide las líneas largas de manera que quepan\n" +" en el ancho especificado, pero no junta líneas\n" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" +" -t, --tagged-paragraph establece la sangría de la primera línea " +"diferente\n" +" de la segunda línea\n" +" -u, --uniform-spacing pone un espacio entre palabras, dos entre " +"frases\n" +" -w, --width=NÚMERO establece el ancho de línea máximo (por " +"defecto,\n" +" 75 columnas)\n" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" +"\n" +"En `-wNÚMERO' se puede omitir la letra `w'.\n" + +#: src/fmt.c:345 +#, c-format +msgid "invalid width option: `%s'" +msgstr "opción de ancho inválida: `%s'" + +#: src/fmt.c:385 +#, c-format +msgid "invalid width: `%s'" +msgstr "ancho inválido: `%s'" + +# Sugerencia: "Ajusta ... de cada FICHERO, o de la entrada ..." sv +# A mí me gusta como está. ipg +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" +"Ajusta el ancho de las líneas en cada FICHERO (por omisión la entrada\n" +"estándar), y escribe el resultado en la salida estándar\n" +"\n" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" +" -b, --bytes cuenta bytes en vez de columnas\n" +" -s, --spaces corta la línea por los espacios\n" +" -w, --width=ANCHO utiliza ANCHO columnas en vez de 80\n" + +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "la opción `%s' está obsoleta; utilice `%s'" + +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "el número de columnas no es válido `%s'" + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Muestra las primeras líneas de cada FICHERO en la salida estándar.\n" +"Si se especifican varios FICHERO(s), se muestra el nombre de cada uno.\n" +"Si no se especifica FICHERO o FICHERO es `-', lee la entrada estándar.\n" +"\n" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" +" -c, --bytes=TAMAÑO muestra los primeros TAMAÑO bytes\n" +" -n, --lines=N muestra las N primeras líneas en vez de 10\n" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" +" -q, --quiet, --silent no muestra las cabeceras con el nombre del " +"fichero\n" +" -v, --verbose muestra siempre las cabeceras con el nombre del\n" +" fichero\n" + +# Creo que es importante que se especifique en +# +# ...BYTES puede tener un sufijo... que el sufijo es un factor... +# Sí, no me gustaba tal y como estaba em +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" +"\n" +"BYTES puede tener un factor indicado con el sufijo: b para 512, k para 1K,\n" +"m para 1Meg\n" + +#: src/head.c:190 +#, c-format +msgid "cannot reposition file pointer for %s" +msgstr "no se puede reposicionar el puntero a fichero para %s" + +# Eso de "representable" no me suena muy bien, ¿podrías explicar a qué se +# refiere?, incluso me parecen dos mensajes distintos... +# +# Pues un número, es un concepto abstracto, y su representación son +# cosas como 1, 2 3i em+ +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "%s: %s es tan grande que no es representable" + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "número de líneas" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "número de bytes" + +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "el número de líneas no es válido" + +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "el número de bytes no es válido" + +#: src/head.c:341 +#, c-format +msgid "unrecognized option `-%c'" +msgstr "opción no reconocida '-%c'" + +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "la opción `-%s' está obsoleta; utilice `-%c %.*s%.*s%s'" + +#: src/hostid.c:48 +#, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" +"Modo de empleo: %s\n" +" o bien: %s OPCIÓN\n" +"Muestra el identificador numérico (en hexadecimal) del `host' actual.\n" +"\n" + +# Host = huésped (vale, vale, no me peguéi má, me retracto, ab +# renuncio: gerardo :-) +# +# Pues no te lo vas a creer, pero en el libro de Infovía de Telefónica +# ponen anfitrión y se quedan tan anchos. +# Esto no lo tengo claro del todo todavía. sv +# +# ¿Y por qué no? "Huésped" en español se refiere tanto al hospedador +# como al hospedado. En nuestro caso "host" es el ordenador u/o/y +# cacharro informático que hospeda en su seno un servicio, programa o +# lo que sea. El anfitrión, para distinguir. Como he dicho otras +# veces, "los angloparlantes dicen _anfitrión_ o _huésped_ en su +# idioma. ¿Por qué nosotros no en el nuestro?" +# gerardo +# +# ¿Porque siempre dudamos entre anfitrión o huésped? +# (Como el asno de Buridán) +# ¿O tal vez porque nadie se ha atrevido jamás? +# A mí me da miedo ser el primero. sv +#: src/hostname.c:67 +#, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" +"Modo de empleo: %s [NOMBRE]\n" +" o bien: %s OPCIÓN\n" +"Muestra o establece el nombre del `host' del sistema actual.\n" +"\n" + +#: src/hostname.c:104 +#, c-format +msgid "cannot set hostname to `%s'" +msgstr "no se puede establecer el nombre del `host' en `%s'" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "" +"no se puede cambiar el nombre de `host'; este sistema carece de esa capacidad" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "no se puede determinar el nombre del `host'" + +#: src/id.c:36 +msgid "Arnold Robbins and David MacKenzie" +msgstr "Arnold Robbins y David MacKenzie" + +#: src/id.c:87 +#, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "Modo de empleo: %s [OPCIÓN]... [USUARIO]\n" + +#: src/id.c:88 +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" +"Muestra información del USUARIO, o del usuario actual.\n" +" -a sin efecto, para compatibilidad con otras versiones\n" +" -g, --group muestra sólo el ID de grupo\n" +" -G, --groups muestra sólo los grupos suplementarios\n" +" -n, --name muestra un nombre en lugar de un número, para -ugG\n" +" -r, --real muestra el ID real en lugar del ID efectivo, para -ugG\n" +" -u, --user muestra sólo el ID del usuario\n" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" +"\n" +"Sin ninguna OPCIÓN, muestra un conjunto útil de información sobre la " +"identidad.\n" + +# No se puedeN imprimir ... en plural, que son varias cosas las que no +# se pueden imprimir. gerardo +# Precisamente, lo que dice el mensaje es que es una sola cosa +# la que se imprime, sin quedar claro cuál de las dos (usuario o grupo) +# es esa única cosa. sv +# En cualquier caso, el "no se puede" se refiere a un *hecho*: +# "imprimir solamente el usuario y solamente el grupo" sv +#: src/id.c:162 +msgid "cannot print only user and only group" +msgstr "no se puede imprimir solamente el usuario y solamente el grupo" + +# Cambio un poco este mensaje. Si el anterior habla en singular, prefiero +# que este también lo haga. Después de todo la orden id solamente +# acepta un usuario. +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "" +"no se puede imprimir solamente el nombre o el ID real en el formato\n" +"predeterminado" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "%s: No existe ese usuario" + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "no se puede encontrar el nombre para el usuario con ID %u" + +#: src/id.c:235 +#, c-format +msgid "cannot find name for group ID %u" +msgstr "no se puede encontrar el nombre para el grupo con ID %u" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "no se puede obtener la lista de grupos suplementarios" + +#: src/id.c:385 +msgid " groups=" +msgstr " grupos=" + +#: src/install.c:269 +msgid "the strip option may not be used when installing a directory" +msgstr "la opción strip no se puede usar cuando se instala un directorio" + +#: src/install.c:292 src/mkdir.c:140 +#, c-format +msgid "invalid mode %s" +msgstr "modo inválido %s" + +#: src/install.c:307 src/install.c:371 +#, c-format +msgid "creating directory %s" +msgstr "creando el directorio %s" + +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "" +"se instalan varios ficheros, pero el último argumento %s\n" +"no es un directorio" + +#: src/install.c:435 +#, c-format +msgid "%s is a directory" +msgstr "%s es un directorio" + +#: src/install.c:495 +#, c-format +msgid "cannot obtain time stamps for %s" +msgstr "no se puede obtener la fecha de %s" + +#: src/install.c:507 +#, c-format +msgid "cannot set time stamps for %s" +msgstr "no se puede establecer la fecha de %s" + +# Esta generó en su día una gran discusión, pues el original no era tan +# explicativo. Finalmente, el autor (Jim Meyering) accedió amablemente a +# cambiar el msgid original a como está ahora. +# (Antes decía simplemente "cannot fork"). +# Gracias a este cambio, tanto el original como la traducción son claros +# y precisos, pero sin llegar a ser verborreicos. +#: src/install.c:528 +msgid "fork system call failed" +msgstr "falló la llamada al sistema `fork'" + +#: src/install.c:532 +msgid "cannot run strip" +msgstr "no se puede ejecutar strip" + +#: src/install.c:539 +msgid "strip failed" +msgstr "strip falló" + +#: src/install.c:560 +#, c-format +msgid "invalid user %s" +msgstr "usuario inválido %s" + +#: src/install.c:578 +#, c-format +msgid "invalid group %s" +msgstr "grupo inválido %s" + +# Aprovecho que en iso-8859-1 existen 1º y 1ª ... +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"Modo de empleo: %s [OPCIÓN]... ORIGEN DESTINO (1ª forma)\n" +" o bien: %s [OPCIÓN]... ORIGEN... DIRECTORIO (2ª forma)\n" +" o bien: %s -d [OPCIÓN]... DIRECTORIO... (3ª forma)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" +"En las dos primeras formas, copia ORIGEN a DESTINO o varios ORIGEN(es) al\n" +"DIRECTORIO existente, mientras se establecen los permisos y el\n" +"propietario/grupo. En la tercera forma, crea todos los componentes\n" +"del/de los DIRECTORIO(s) dado(s).\n" +"\n" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" +" --backup[=CONTROL] crea una copia de seguridad de cada fichero de\n" +" destino que exista\n" +" -b como --backup pero no acepta ningún argumento\n" +" -c (sin efecto)\n" +" -d, --directory trata todos los argumentos como nombres de " +"directorios\n" +" crea todos los componentes de los directorios\n" +" especificados\n" + +# FIXME: El "create all" está un poco descolocado. +# +# "given DIRECTORY" -> "DIRECTORIO que se indica" o "indicado" tb +# Bueno, dejaré la sugerencia. Me gusta más "dado" porque es más corto +# y si no tendría que usar otra línea más. sv +# +# Estoy con tb, creo que "indicado" explica mejor... uac +# Lo pensaré. ¿Alguien más? sv +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" +" -D crea todos los componentes iniciales de DESTINO\n" +" excepto el último, y entonces copia ORIGEN a " +"DESTINO\n" +" útil en la 1ª forma\n" +" -g, --group=GRUPO establece la propiedad de grupo, en lugar del " +"grupo\n" +" actual del proceso\n" +" -m, --mode=MODO establece los permisos (como en chmod), en lugar\n" +" de rwxr-xr-x\n" +" -o, --owner=PROPIETARIO establece la propiedad (sólo super-usuario)\n" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" +" -p, --preserve-timestamps aplica las fechas de acceso/modificación de los\n" +" ficheros ORIGEN a los ficheros de destino\n" +" correspondientes\n" +" -s, --strip elimina las tablas de símbolos, sólo para las\n" +" formas 1ª y 2ª\n" +" -v, --verbose muestra el nombre de cada directorio conforme se\n" +" van creando\n" +" -S, --suffix=SUFIJO reemplaza el sufijo de respaldo habitual\n" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"\n" +"El sufijo de respaldo es `~', a menos que se establezca con --suffix o con\n" +"SIMPLE_BACKUP_SUFFIX. El método de control de versión se puede seleccionar\n" +"con la opción --backup o a través de la variable de entorno " +"VERSION_CONTROL.\n" +"Estos son los valores:\n" +"\n" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "Modo de empleo: %s [OPCIÓN]... FICHERO1 FICHERO2\n" + +# Sugerencia: no los dos a la vez -> pero no ambos. sv +# ¿Pero no ambos a la vez? em +# Eso es repetir el "both". sv +# En lugar de `no los dos a la vez' ¿`nunca los dos a la vez'? ipg +# Eso está mucho mejor em +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" +"Muestra una línea en la salida estándar por cada par de líneas que " +"contengan\n" +"campos idénticos. El campo a comparar por defecto es el primero, delimitado\n" +"por un espacio en blanco. Si FICHERO1 o FICHERO2 es `-' (nunca dos a la " +"vez),\n" +"lee la entrada estándar.\n" +"\n" +" -a NUMFICH muestra una línea por cada línea no emparejable del\n" +" fichero NUMFICH, donde NUMFICH es 1 o 2, " +"correspondiendo\n" +" a FICHERO1 o FICHERO2\n" +" -e VACÍO reemplaza los campos inexistentes por VACÍO\n" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" +" -i, --ignore-case no atiende a las diferencias entre mayúsculas y " +"minúsculas\n" +" -j CAMPO (Obsoleto) equivalente a '-1 CAMPO -2 CAMPO'\n" +" -j1 CAMPO (Obsoleto) equivalente a '-1 CAMPO'\n" +" -j2 CAMPO (Obsoleto) equivalente a '-2 CAMPO'\n" +" -o FORMATO utiliza FORMATO para mostrar las líneas de salida\n" +" -t CARÁCTER Usa CARÁCTER como delimitador de campos, en la entrada y " +"en\n" +" la salida\n" + +#: src/join.c:165 +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" +" -v NUMFICH Como -a NUMFICH, pero no muestra las líneas emparejadas\n" +" -1 CAMPO usa este campo del fichero 1\n" +" -2 CAMPO usa este campo del fichero 2\n" + +# Creo que "si no, los campos se separan con CARÁCTER" es redundante, +# por supuesto al igual que en la versión english. +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" +"\n" +"A menos que se especifique -t CARÁCTER, los espacios en blanco separan " +"campos\n" +"y son pasados por alto, si no, los campos se separan con CARÁCTER. CAMPO es " +"el\n" +"número de campo contado a partir de 1. FORMATO es una lista de elementos de " +"la\n" +"forma `NUMFICH.CAMPO' ó `0', separada por comas o por espacios en blanco. " +"El\n" +"FORMATO por defecto muestra el campo que empareja, los restantes campos de\n" +"FICHERO1 y los de FICHERO2, todos separados por CARÁCTER.\n" + +#: src/join.c:645 +#, c-format +msgid "invalid field specifier: `%s'" +msgstr "la especificación del campo no es válida: `%s'" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, c-format +msgid "invalid field number: `%s'" +msgstr "número de campo inválido: `%s'" + +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "número de fichero inválido en la especificación del campo: `%s'" + +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "número de campo inválido para el fichero 1: `%s'" + +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "número de campo inválido para el fichero 2: `%s'" + +# No sé en qué caso se muestra este mensaje pero creo que es _muy_ ambiguo... +# creo que la solución que se adopta en el siguiente mensaje sería más +# apropiada... +# +# Ahora sí lo has arreglado... +# Decía "número de argumentos insuficiente". +# Pongo "demasiados argumentos". +# Con esto ya están "igualados" este y el siguiente. sv +# +# El único problema ahora es que te comes lo de "non-option", ese matiz +# se pierde en la traducción. sv+ +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "demasiados argumentos" + +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "número de argumentos insuficiente" + +# Me refiero a que si sabe la causa exacta del error, ¿por qué ofrece +# el error de sistema: "No such device"? +# ¿¿Acaso hay sistemas con stdin1 y stdin2?? :-) +# +# Eso es lo de menos :) em+ +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "los dos ficheros no pueden ser a la vez la entrada estándar" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" +"Modo de empleo: %s [-s SEÑAL | -SEÑAL ] PID...\n" +" o bien: %s -l [SEÑAL]...\n" +" o bien: %s -t [SEÑAL]...\n" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" +"Envía señales a los procesos, o lista señales.\n" +"\n" + +#: src/kill.c:106 +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" +" -s, --signal=SEÑAL, -SEÑAL \n" +" especifica el nombre o ek número de la señal que se " +"enviará\n" +" -l, --list lista los nombres de las señales, o convierte nombres " +"de\n" +" señales en números o viceversa\n" +" -t, --table muestra una tabla de información sobre señales\n" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" +"\n" +"SEÑAL puede ser un nombre de señal como `HUP', o un número de señal como " +"`1',\n" +"o un estado de salida de un proceso terminado por una señal.\n" +"PID es un entero; si es negativo identifica al grupo de un proceso.\n" + +#: src/kill.c:163 +#, c-format +msgid "%s: invalid signal" +msgstr "%s: señal inválida" + +#: src/kill.c:262 +#, c-format +msgid "missing operand after `%s'" +msgstr "falta un operando después de `%s'" + +#: src/kill.c:274 +#, c-format +msgid "%s: invalid process id" +msgstr "%s: identificador de proceso inválido" + +#: src/kill.c:327 +#, c-format +msgid "invalid option -- %c" +msgstr "opción inválida -- %c" + +#: src/kill.c:336 +#, c-format +msgid "%s: multiple signals specified" +msgstr "%s: se han especificado varias señales" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "se han especificado varias opciones -l o -t" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "no se puede combinar la señal con -l o -t" + +#: src/link.c:51 +#, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"Modo de empleo: %s FICHERO1 FICHERO2\n" +" o bien: %s OPCIÓN\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" +"Llama a la función link para crear un enlace llamado FICHERO2 a un FICHERO1\n" +"que ya exista.\n" +"\n" + +#: src/link.c:98 +#, c-format +msgid "cannot create link %s to %s" +msgstr "no se puede crear el enlace duro %s a %s" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "Mike Parker y David MacKenzie" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "" +"%s: atención: crear un enlace duro a un enlace simbólico\n" +"no es transportable" + +#: src/ln.c:174 +#, c-format +msgid "%s: hard link not allowed for directory" +msgstr "%s: no se permiten enlaces fuertes para directorios" + +#: src/ln.c:246 +#, c-format +msgid "%s: cannot overwrite directory" +msgstr "%s: no se puede sobreescribir un directorio" + +# SIoNO +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "%s: ¿reemplazar %s? (s/n) " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: El fichero existe" + +#: src/ln.c:304 +#, c-format +msgid "create symbolic link %s to %s" +msgstr "crea el enlace simbólico %s a %s" + +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "crea el enlace duro %s a %s" + +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "creando el enlace simbólico %s a %s" + +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "creando el enlace duro %s a %s" + +#: src/ln.c:339 +#, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"Modo de empleo: %s [OPCIÓN]... OBJETIVO [NOMBRE_DEL_ENLACE]\n" +" o bien: %s [OPCIÓN]... OBJETIVO... DIRECTORIO\n" +" o bien: %s [OPCIÓN]... --target-directory=DIRECTORIO OBJETIVO...\n" + +# ... y de lo de poner la coletilla "y finaliza" en +# las opciones --version y --help :) ipg +# Si convences a Enrique de que la coletilla se puede quitar, te apoyo. sv +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" +"Crea un enlace al OBJETIVO especificado con el NOMBRE_DEL_ENLACE opcional.\n" +"Si se omite NOMBRE_DEL_ENLACE, se crea un enlace en el directorio actual\n" +"con el mismo nombre base que el OBJETIVO. Cuando se utiliza la segunda " +"forma\n" +"con más de un OBJETIVO, el último argumento debe ser un directorio; crea\n" +"enlaces en DIRECTORIO para cada OBJETIVO. Por omisión, se crean enlaces " +"duros.\n" +"Con --symbolic se crean enlaces simbólicos. Cuando se crean enlaces duros,\n" +"todos los OBJETIVOs deben existir.\n" +"\n" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" +" --backup[=CONTROL] crea una copia de seguridad de cada fichero " +"de\n" +" destino que ya exista\n" +" -b como --backup pero no acepta ningún argumento\n" +" -d, -F, --directory enlaza directorios con un enlace duro\n" +" (solamente super-usuario)\n" +" -f, --force borra los ficheros destino que ya existan\n" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" +" -n, --no-dereference trata un destino que sea un enlace simbólico " +"a\n" +" un directorio como si fuera un fichero normal\n" +" -i, --interactive pregunta si se borran los destinos\n" +" -s, --symbolic crea enlaces simbólicos en vez de enlaces " +"duros\n" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" +" -S, --suffix=SUFIJO reemplaza el sufijo de respaldo habitual\n" +" --target-directory=DIRECTORIO especifica el DIRECTORIO en el que se\n" +" crearán los enlaces\n" +" -v, --verbose imprime el nombre de cada fichero antes\n" +" de crear el enlace\n" + +#: src/ln.c:521 +#, c-format +msgid "%s: specified target directory is not a directory" +msgstr "%s: el directorio objetivo especificado no es un directorio" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "" +"cuando se crean varios enlaces, el último argumento debe ser un directorio" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "Modo de empleo: %s [OPCIÓN]\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" +"Muestra el nombre del usuario actual.\n" +"\n" + +# login name = nombre de usuario ? +# login = [registro de] entrada ? "login" viene de "to log" +# (registrar) y de "in"; es el procedimiento que usan en edificios +# importantes con guardia de seguridad cuando uno para entrar tiene que +# identificarse, firmar, acreditarse, y te dan una tarjetita para la +# solapa. Todo ello trasladado al mundo informático, donde uno se +# acredita con el nombre de usuario y la clave. Pero bueno, si creéis +# que es mejor dejar la palabra en inglés, me callo. gerardo +# No me parece mal del todo. Lo pensaré. sv +#: src/logname.c:99 +#, c-format +msgid "%s: no login name\n" +msgstr "%s: no hay ningún nombre de `login'\n" + +#: src/ls.c:673 +msgid "%b %e %Y" +msgstr "%b %e %Y" + +#: src/ls.c:681 +msgid "%b %e %H:%M" +msgstr "%b %e %H:%M" + +#: src/ls.c:1307 +#, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "" +"se descarta el valor inválido de la variable de entorno QUOTING_STYLE: %s" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "se descarta el ancho inválido de la variable de entorno COLUMNS: %s" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "" +"se descarta el tamaño de `tab' inválido de la variable de entorno TABSIZE: %s" + +#: src/ls.c:1482 +#, c-format +msgid "invalid line width: %s" +msgstr "ancho de línea inválido: %s" + +#: src/ls.c:1556 +#, c-format +msgid "invalid tab size: %s" +msgstr "tamaño del `tab' inválido: %s" + +#: src/ls.c:1722 +#, c-format +msgid "invalid time style format %s" +msgstr "formato de estilo de fecha inválido %s" + +#: src/ls.c:2054 +#, c-format +msgid "unrecognized prefix: %s" +msgstr "prefijo no reconocido: %s" + +# Según el Collins, to parse = analizar (en un contexto gramático, como es el +# caso). +# "valor para la variable de entorno LS_COLORS no analizable" +# --> y dos letras menos... +# +# sinceramente, no creo que después de LS_COLORS, /bin/ls se vaya a leer el +# Quijote... +# +# Es que sí es perfectamente analizable. Lo que pasa es que el resultado +# del análisis es que no entiende lo que quiere decir, por eso +# es ininteligible... (Si de verdad no fuera analizable, no daría +# error, sino que produciría un "core dump" o algo así). sv +# +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "valor ininteligible para la variable de entorno LS_COLORS" + +#: src/ls.c:2145 +#, c-format +msgid "cannot determine device and inode of %s" +msgstr "no se puede determinar el dispositivo y el nodo-i de %s" + +#: src/ls.c:2155 +#, c-format +msgid "not listing already-listed directory: %s" +msgstr "no se muestra el directorio ya mostrado: %s" + +#: src/ls.c:2208 src/remove.c:929 +#, c-format +msgid "reading directory %s" +msgstr "leyendo el directorio %s" + +# Lo mismo de antes. +#: src/ls.c:2603 +#, c-format +msgid "cannot compare file names %s and %s" +msgstr "no se pueden comparar los nombres de fichero %s y %s" + +# Yo dejaría verbose en verbosamente. ipg +# +# Eso es un "palabro". sv +# +# He cambiado la última línea ( muestra la fecha completa y la hora completa ) +# además ahora cabe en 80 cols em +# +# Vale, pues ahora me entra una duda (que antes no salió a relucir) +# ¿"la fecha y la hora completa" o "la fecha y la hora completas"? +# De momento he puesto lo segundo. sv+ +# +# Si dices la primera puede llegar a entender que la hora es la única +# completa... mientras que la segunda no. uac +# +# (Efectivamente. sv) +# +# Creo que correctas son las dos +# pero para lo que aquí se quiere decir le toca la segunda... ¿no? uac +# +# Eso es lo que me parece. Gracias. sv +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" +"Muestra información acerca de los FICHEROs (del directorio actual por " +"defecto).\n" +"Ordena las entradas alfabéticamente si no se especifica ninguna de las\n" +"opciones -cftuSUX ni --sort.\n" +"\n" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" +" -a, --all no oculta las entradas que comienzan con .\n" +" -A, --almost-all no muestra las entradas . y .. implícitas\n" +" --author imprime el autor de cada fichero\n" +" -b, --escape imprime escapes octales para los caracteres no\n" +" gráficos\n" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" +" --block-size=TAMAÑO utiliza bloques de TAMAÑO bytes\n" +" -B, --ignore-backups no muestra la entradas que terminan con ~\n" +" -c con -lt: ordena por ctime y muestra ctime " +"(fecha\n" +" de última modificación del fichero)\n" +" con -l: muestra ctime y ordena por nombre\n" +" en cualquier otro caso: ordena por ctime\n" + +#: src/ls.c:3784 +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" +" -C muestra las entradas por columnas\n" +" --color[=CUÁNDO] especifica si se usará color para distinguir " +"los\n" +" tipos de ficheros. CUÁNDO puede ser `never',\n" +" `always' o `auto'\n" +" -d, --directory muestra las entradas de los directorios en " +"lugar\n" +" de sus contenidos, y no sigue los enlaces\n" +" simbólicos\n" +" -D, --dired genera el resultado para el modo `dired' de " +"Emacs\n" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" +" -f no ordena, utiliza -aU, no utiliza -lst\n" +" -F, --classify añade un indicador (uno de */=@|) a las " +"entradas\n" +" --format=PALABRA across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time como -l --time-style=full-iso\n" + +#: src/ls.c:3799 +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" +" -g como -l, pero no muestra el propietario\n" +" -G, --no-group no muestra la información del grupo\n" +" -h, --human-readable muestra los tamaños de forma legible\n" +" (p.e. 1K 234M 2G)\n" +" --si análogo, pero utilizando potencias de 1000,\n" +" no de 1024\n" +" -H, --dereference-command-line\n" +" sigue los enlaces simbólicos en la línea de\n" +" órdenes\n" +" --dereference-command-line-symlink-to-dir\n" +" sigue cada enlace simbólico en la línea de\n" +" órdenes que apunte a un directorio\n" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" +" --indicator-style=PALABRA añade un indicador con estilo PALABRA a " +"los\n" +" nombres de las entradas: none " +"(predeterminado),\n" +" classify (-F), file-type (-p)\n" +" -i, --inode muestra el número de nodo-i de cada fichero\n" +" -I, --ignore=PATRÓN no lista las entradas que coincidan (encajen)\n" +" con PATRÓN de shell\n" +" -k como --block-size=1K\n" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" +" -l utiliza un formato de listado largo\n" +" -L, --dereference al mostrar la información de un fichero para " +"un\n" +" enlace simbólico, muestra la información del\n" +" fichero al que apunta el enlace en lugar de " +"la\n" +" del propio enlace\n" +" -m rellena el ancho con una lista de entradas\n" +" separadas por comas\n" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" +" -n, --numeric-uid-gid como -l, pero muestra los UIDs y GIDs " +"numéricos\n" +" -N, --literal muestra los nombres literalmente (no trata p." +"ej.\n" +" los caracteres de control de forma especial)\n" +" -o como -l, pero no muestra el grupo\n" +" -p --file-type añade un indicador (uno de /=@|) a las " +"entradas\n" + +# La opción "-r, --reverse" literalmente hubiera sido +# "invierte el orden al ordenar", pero eso sería muy "reflunflante". +# +# "utiliza el formato de listado largo sin el grupo"--> +# "...sin el campo grupo", no sé por qué te sabe mal ser más explícito +# cuando no se alarga mucho el mensaje. Como tú mismo dices... uac +# +# Lo dejo así por estética. Una palabra más me obligaría a usar +# una línea más, y quedaría más feo. Si digo "sin el grupo", queda +# claro que el grupo no sale. sv +# +#: src/ls.c:3831 +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -q, --hide-control-chars imprime ? en lugar de los caracteres no " +"gráficos\n" +" --show-control-chars muestra los caracteres no gráficos tal y como\n" +" son (predeterminado a menos que el programa " +"sea\n" +" `ls' y la salida sea un terminal)\n" +" -Q, --quote-name encierra los nombres de las entradas entre\n" +" comillas\n" +" --quoting-style=PALABRA utiliza el estilo de cita PALABRA para los\n" +" nombres de las entradas:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" +" -r, --reverse invierte el orden, en su caso\n" +" -R, --recursive muestra los subdirectorios recursivamente\n" +" -s, --size muestra el tamaño de cada fichero, en bloques\n" + +# Nota: ctime, extension, none, etc. son posibles "WORD"s, +# por lo tanto, *no* deben traducirse, o de lo contrario el programa +# no las reconocería. +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" +" -S ordena los ficheros por tamaño\n" +" --sort=PALABRA extension -X, none -U, size -S, time -t, " +"version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=PALABRA muestra la fecha según PALABRA, en lugar de la\n" +" fecha de modificación:\n" +" atime, access, use, ctime ó status; utiliza\n" +" la fecha especificada como clave de " +"ordenación\n" +" si --sort=time\n" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" +" --time-style=ESTILO muestra la fecha utilizando el estilo ESTILO:\n" +" full-iso, long-iso, iso, locale, +FORMATO\n" +" FORMATO se interpreta como en `date'; si " +"FORMATO\n" +" es FORMATO1FORMATO2, FORMATO1 se\n" +" aplica a los ficheros no recientes y FORMATO2\n" +" a los ficheros recientes; si ESTILO está " +"precedido\n" +" por `posix-', ESTILO surte efecto solamente " +"fuera\n" +" del local POSIX\n" +" -t ordena por la fecha de modificación\n" +" -T, --tabsize=COLS establece los topes de tabulación a cada COLS\n" +" en lugar de 8\n" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" +" -u con -lt: ordena por atime y muestra atime " +"(fecha\n" +" de último acceso al fichero)\n" +" con -l: muestra atime y ordena por nombre\n" +" en cualquier otro caso: ordena por atime\n" +" -U no ordena; muestra las entradas en el orden " +"del\n" +" directorio\n" +" -v ordena por versión\n" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" +" -w, --width=COLS establece el ancho de la pantalla en lugar del\n" +" valor actual\n" +" -x muestra las entradas por líneas en vez de por\n" +" columnas\n" +" -X ordena alfabéticamente por la extensión de la\n" +" entrada\n" +" -1 muestra un fichero por cada línea\n" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" +"\n" +"Por defecto, no se emplea color para distinguir los tipos de ficheros. Esto\n" +"equivale a usar --color=none. Usar la opción --color sin el argumento " +"opcional\n" +"CUÁNDO equivale a usar --color=always. Con --color=auto, sólo se muestran\n" +"los códigos de color si la salida estándar está conectada a un terminal " +"(tty).\n" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "Ulrich Drepper y Scott Miller" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"Modo de empleo: %s [OPCIÓN] [FICHERO]...\n" +" o bien: %s [OPCIÓN] --check [FICHERO]\n" +"\n" +"Muestra o comprueba sumas de comprobación %s (de %d bits).\n" +"Si no se especifica FICHERO o FICHERO es `-', lee la entrada estándar.\n" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" +"\n" +" -b, --binary lee los ficheros en modo binario (por omisión en\n" +" DOS/Windows)\n" +" -c, --check comprueba las sumas %s con la lista dada\n" +" -t, --text lee los ficheros en modo de texto (por defecto)\n" +"\n" + +# Creo que no es fiel decir: +# "no muestra nada, el valor de retorno indica el estado\n" +# y que sería mejor decir algo así como: +# "...el resultado [del chequeo | comprobación]..." +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" +"Las siguientes dos opciones son útiles al verificar sumas de comprobación:\n" +" --status no muestra nada, el valor de retorno indica el\n" +" resultado\n" +" -w, --warn avisa de las líneas de comprobación de sumas\n" +" que no están correctamente formateadas\n" +"\n" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" +"\n" +"Las sumas se calculan tal y como se describe en %s. Al comprobar, la\n" +"entrada debe ser un resultado anterior de llamar a este programa. Por " +"defecto\n" +"se muestra una línea con la suma de comprobación, un carácter indicando el " +"tipo\n" +"de fichero (`*' para binario, ` ' para texto), y el nombre de cada FICHERO.\n" + +# ¡¡Jau!! Yo venir en son de paz y aceptar propuesta de rostro pálido :). +# ¿Tu fumar pipa de la paz? Yo tener maría de la buena X'D (ya quisiera...) ipg +# +# ¡¡Jau²!! Yo hacer otra propuesta, mía propuesta no ser formateada +# propuesta, yo tener pánico a verborreicos como este... +# "...de comprobación MD5 con formato erróneo." +# +# ipg: ¿y crece por allí? ¡con el frío que hace! }:-) +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "%s: %lu: línea de suma de comprobación %s con formato erróneo" + +# Sí, ( no hace falta leerse los coding standards para saberlo, aunque ahí lo +# puedes encontrar también ) %s es el nombre del programa. em +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "%s: FALLO al abrir o leer\n" + +# Puestos a simplificar, a lo mejor podrías poner simplemente +# "coincide" o "no coincide". Cualquiera que use el programa sabe +# perfectamente qué es lo que coincide y lo que no. sv+ +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "La suma no coincide" + +# Yo estoy en contra de utilizar el Ok, por otra parte ahí va mi propuesta +# que se parece mucho a la de Santiago: +# Correcto/incorrecto, o sea no se refieren al resultado de la suma sino +# a la comprobación.... es simple y corto... como el mensaje original.... +# +#: src/md5sum.c:431 +msgid "OK" +msgstr "La suma coincide" + +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%s: error de lectura" + +# Me pregunto y no me contesto: ¿Qué podrá ser el segundo %s? +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "" +"%s: no se encontraron líneas de suma de comprobación %s con formato correcto" + +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "ATENCIÓN: no se pudieron leer %d de %d %s listados" + +#: src/md5sum.c:473 +msgid "file" +msgstr "fichero" + +#: src/md5sum.c:473 +msgid "files" +msgstr "ficheros" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "ATENCIÓN: %d de las %d %s calculada(s) NO coincidieron" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "suma de comprobación" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "sumas de comprobación" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" +"las opciones --binary y --text no tienen sentido cuando se verifican sumas\n" +"de comprobación" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "las opciones --string y --check son mutuamente excluyentes" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "" +"la opción --status sólo tiene sentido cuando se verifican sumas de " +"comprobación" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "" +"la opción --warn sólo tiene sentido cuando se verifican sumas de comprobación" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "no se puede especificar FICHERO cuando se usa --string" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "cuando se utiliza --check sólo se puede especificar un argumento" + +#: src/mkdir.c:61 +#, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "Modo de empleo: %s [OPCIÓN] DIRECTORIO...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" +"Crea los DIRECTORIO(s), si no existen ya.\n" +"\n" + +#: src/mkdir.c:69 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +"Crea el/los DIRECTORIO(s), si no existen ya.\n" +"\n" +" -m, --mode=MODE establece los permisos (como en chmod), en lugar\n" +" de rwxrwxrwx - umask\n" +" -p, --parents no hay error si existen, crea los directorios padres en\n" +" caso necesario\n" +" -v, --verbose muestra un mensaje por cada directorio creado\n" + +#: src/mkdir.c:113 +#, c-format +msgid "created directory %s" +msgstr "se ha creado el directorio %s" + +#: src/mkdir.c:190 +#, c-format +msgid "cannot set permissions of directory %s" +msgstr "no se pueden establecer los permisos del directorio %s" + +#: src/mkfifo.c:55 +#, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "Modo de empleo: %s [OPCIÓN] NOMBRE...\n" + +# ¿"pipe" es lo mismo que "named pipe"?. +# ¿Algún experto en Unix que me lo sepa decir? +# +# Yo mismo me lo contesto después de hacer el siguiente experimento: +# +# mkfifo furufú +# ls > furufú +# (se queda esperando). +# Si ahora hacemos (en otra sesión) cat < furufú, ¡sorpresa! +# Sale el resultado del ls, y se "desbloquea" la otra sesión. +# +# Esto es una "named pipe". Aparece un fichero cuyo primer atributo +# es la letra p. Además, con DIRCOLORS sale de color rojito, y con la opción +# -F de ls sale una barrita vertical al final |. +# +# ¿Cómo se llama en español? Y si nadie le ha puesto nombre, ¿cómo +# debería llamarse? ¿tubería nombrada? ¿tubería con nombre? +# Me inclino por lo segundo, de momento. +# +# Tiiiiio ... ¡¡es como querer traducir socket!! ipg +# +# [ ¿y qué hay de malo en ello? ] sv +# +# Me horroriza. Espero que uses el convenio de poner el original entre +# comillas. Tubería nombrada tampoco me gusta, pero no se me ocurre +# nada em +# *Ya* está FIFO entre paréntesis. No hay posibilidad de confusión. sv+ +# +# Sólo para que lo tengáis en cuenta: +# DNS= Domain Named Service --> Servicio de Dominios Nombrado. +# --> Servicio Nombrado de Dominios. +# Tanto monta, monta tanto... +# Nunca lo he visto como lo ponéis aquí. uac +# +# Supongo que te refieres al "named" del "named pipe". +# Habrá que pensarlo bastante, me temo. sv +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" +"Crea tuberías con nombre (FIFOs) con los NOMBREs dados.\n" +"\n" + +#: src/mkfifo.c:63 src/mknod.c:64 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" +" -m, --mode=MODO establece los permisos (como en chmod), en lugar\n" +" de a=rw - umask\n" + +# Pues fifo file es precisamente lo mismo que un named pipe, mira +# por donde :) , así que ya sabes, a tomar una determinación em +# +# Por regla general suelo respetar el original todo lo que puedo. +# Si en inglés existe "fifo file" y "named pipe" y son sinónimos, no veo nada +# malo en que en español exista "fichero `fifo'" y +# "tubería con nombre (named pipe)", como sinónimos. sv +# +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "los ficheros `fifo' no están soportados" + +# Utilizo "inválido" en lugar de "no válido", porque la palabra existe, +# y no usarla es empobrecer el idioma. +# +# Si a alguien le parece más natural "no válido", deberíamos discutir +# esto al mismo tiempo que la "retroreferencia" de Iñaky. +# +#: src/mkfifo.c:123 src/mknod.c:127 +msgid "invalid mode" +msgstr "modo inválido" + +#: src/mkfifo.c:142 +#, c-format +msgid "cannot set permissions of fifo %s" +msgstr "no se pueden establecer los permisos del fichero `fifo' %s" + +# Nota: El que no sepa que major y minor es principal y secundario +# es que no sabe inglés. Esto viene hasta en el Collins de bolsillo. +#: src/mknod.c:55 +#, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "Modo de empleo: %s [OPCIÓN]... NOMBRE TIPO [PRINCIPAL SECUNDARIO]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" +"Crea el fichero especial NOMBRE del TIPO dado.\n" +"\n" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" +"\n" +"Deben especificarse tanto PRINCIPAL como SECUNDARIO cuando el TIPO es b, c ó " +"u,\n" +"y debe omitirse cuando el TIPO es p. Si PRINCIPAL o SECUNDARIO comienzan con " +"0x\n" +"o 0X, se interpreta como hexadecimal; en caso contrario, si comienza con 0,\n" +"como octal, en caso contrario, como decimal. TIPO puede ser:\n" + +#: src/mknod.c:76 +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"\n" +" b crea un fichero especial de bloques (buffered)\n" +" c, u crea un fichero especial de caracteres (unbuffered)\n" +" p crea un `FIFO'\n" + +#: src/mknod.c:141 +msgid "wrong number of arguments" +msgstr "número incorrecto de argumentos" + +#: src/mknod.c:153 +msgid "block special files not supported" +msgstr "los ficheros especiales de bloques no están soportados" + +#: src/mknod.c:162 +msgid "character special files not supported" +msgstr "los ficheros especiales de caracteres no están soportados" + +#: src/mknod.c:171 +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" +"cuando se crean ficheros especiales, se deben especificar los\n" +"números de dispositivo principal y secundario" + +#: src/mknod.c:186 +#, c-format +msgid "invalid major device number %s" +msgstr "número principal de dispositivo inválido %s" + +#: src/mknod.c:191 +#, c-format +msgid "invalid minor device number %s" +msgstr "número secundario de dispositivo inválido %s" + +#: src/mknod.c:196 +#, c-format +msgid "invalid device %s %s" +msgstr "dispositivo inválido %s %s" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "" +"los números de dispositivo principal y secundario no se pueden especificar\n" +"para ficheros `fifo'" + +#: src/mknod.c:231 +#, c-format +msgid "cannot set permissions of %s" +msgstr "no se pueden establecer los permisos de %s" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "Mike Parker, David MacKenzie, y Jim Meyering" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Renombra ORIGEN a DESTINO, o mueve ORIGEN(es) a DIRECTORIO.\n" +"\n" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" +" --backup[=CONTROL] crea una copia de seguridad antes de borrar\n" +" -b como --backup pero no acepta ningún " +"argumento\n" +" -f, --force no pregunta nunca antes de sobreescribir\n" +" equivalente a --reply=yes\n" +" -i, --interactive pide confirmación antes de sobreescribir\n" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" +" --reply={yes,no,query} especifica cómo tratar la pregunta acerca " +"de\n" +" un fichero de destino que ya exista\n" +" --strip-trailing-slashes elimina todas las barras finales de cada\n" +" argumento ORIGEN\n" +" -S, --suffix=SUFIJO reemplaza el sufijo de respaldo habitual\n" + +#: src/mv.c:339 +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +" --target-directory=DIRECTORIO mueve todos los argumentos ORIGEN al\n" +" directorio DIRECTORIO\n" +" -u, --update mueve solamente cuando el fichero " +"ORIGEN\n" +" es más moderno que el fichero de " +"destino,\n" +" o cuando falta el fichero de destino\n" +" -v, --verbose da detalles de lo que va haciendo\n" + +# FIXME: Falta una coma en el original. sv +#: src/mv.c:467 +#, c-format +msgid "specified target, %s is not a directory" +msgstr "el objetivo especificado, %s, no es un directorio" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "al mover varios ficheros, el último argumento debe ser un directorio" + +#: src/nice.c:67 +#, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "Modo de empleo: %s [OPCIÓN] [ORDEN [ARG]...]\n" + +# scheduling priority -> prioridad de ejecución +# ¿Hay algo mejor? cfuga +# prioridad de planificación. Aunque quizá "ejecución", si no tan +# ajustado y exacto, se entienda mejor. gerardo +# Vale. Me quedo con ejecución, pero dejo aquí la otra posibilidad. sv +#: src/nice.c:68 +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" +"Ejecuta ORDEN con una prioridad de ejecución ajustada.\n" +"Si no hay ORDEN, muestra la prioridad de ejecución actual. AJUSTE es 10\n" +"por omisión. El rango abarca desde -20 (mayor prioridad) hasta 19 (menor).\n" +"\n" +" -n, --adjustment=AJUSTE incrementa la prioridad primero por AJUSTE\n" + +#: src/nice.c:109 src/nice.c:122 +#, c-format +msgid "invalid option `%s'" +msgstr "opción inválida `%s'" + +#: src/nice.c:147 +#, c-format +msgid "invalid priority `%s'" +msgstr "prioridad inválida `%s'" + +# Me parece mejor: "Con un ajuste debe darse una orden" +# Lo consideraré. Esta frase es realmente fea. sv +# Vale, lo cambio, pero añado una coma. +# (Antes decía: debe darse una orden con un ajuste). +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "con un ajuste, debe darse una orden" + +#: src/nice.c:178 src/nice.c:187 +msgid "cannot get priority" +msgstr "no se puede obtener la prioridad" + +#: src/nice.c:192 +msgid "cannot set priority" +msgstr "no se puede establecer la prioridad" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "Scott Bartram y David MacKenzie" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Escribe cada FICHERO en la salida estándar, con las líneas numeradas.\n" +"Si no se especifica FICHERO o FICHERO es `-', lee la entrada estándar.\n" +"\n" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" +" -b, --body-numbering=ESTILO usa ESTILO para la numeración de las líneas\n" +" -d, --section-delimiter=CC usa CC para separar páginas\n" +" -f, --footer-numbering=ESTILO usa ESTILO para numerar las líneas finales\n" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" +" -h, --header-numbering=ESTILO usa ESTILO para numerar las líneas de " +"cabecera\n" +" -i, --page-increment=NÚMERO incrementa en NÚMERO el número de línea en\n" +" cada línea\n" +" -l, --join-blank-lines=NÚMERO un grupo de NÚMERO líneas vacías se cuentan\n" +" como una sola\n" +" -n, --number-format=FORMATO inserta los números de línea con FORMATO\n" +" -p, --no-renumber no reinicializa el número de líneas para " +"cada\n" +" página\n" +" -s, --number-separator=CADENA añade CADENA despúes del número de línea\n" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" +" -v, --first-page=NÚMERO primer número de línea para cada página\n" +" -w, --number-width=ANCHO usa ANCHO columnas para los números de " +"línea\n" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" +"\n" +"Por omisión es `-v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn'. `CC' son dos\n" +"caracteres delimitadores para separar páginas; si sólo se especifica uno\n" +"de ellos, el otro se supone:`.'\n" +"Utilícese \\\\ para obtener \\. ESTILO puede ser uno de lo siguientes:\n" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" +"\n" +" a numera todas las líneas\n" +" t numera sólo las líneas no vacías\n" +" n no numera ninguna línea\n" +" pEXPREG numera sólo las líneas que coinciden con la expresión regular " +"REGEXP\n" +"\n" +"FORMATO es uno de los siguientes:\n" +"\n" +" ln justificación a la izquierda, sin ceros a la izquierda\n" +" rn justificación a la derecha, sin ceros a la izquierda\n" +" rz justificación a la derecha, con ceros a la izquierda\n" +"\n" + +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "número de comienzo de línea inválido: `%s'" + +#: src/nl.c:514 +#, c-format +msgid "invalid line number increment: `%s'" +msgstr "incremento de línea inválido: `%s'" + +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "número de líneas vacías inválido: `%s'" + +#: src/nl.c:541 +#, c-format +msgid "invalid line number field width: `%s'" +msgstr "ancho para el número de línea inválido: `%s'" + +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"Modo de empleo: %s [OPCIÓN]... [FICHERO]...\n" +" o bien: %s --traditional [FICHERO] [[+]DESPLAZAMIENTO [[+]ETIQUETA]\n" + +# Creo que si pones `-' en vez de -, deberías consultarlo primero con +# el autor. Además, no lo has cambiado en todas partes. sv+ +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"\n" +"Escribe una representación inequívoca, por defecto en base ocho, de FICHERO\n" +"en la salida estándar. Si no se especifica FICHERO o FICHERO es `-', lee la\n" +"entrada estándar.\n" +"\n" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "" +"Todos los argumentos para las opciones largas son obligatorios para las\n" +"opciones cortas.\n" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" +" -A, --address-radix=BASE indica cómo se han de mostrar las posiciones\n" +" del fichero\n" +" -j, --skip-bytes=BYTES descarta los primeros BYTES bytes de cada " +"fichero\n" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" +" -N, --read-bytes=BYTES restringe la salida a BYTES bytes por fichero\n" +" -s, --strings[=BYTES] muestra cadenas de caracteres de al menos " +"BYTES\n" +" caracteres gráficos\n" +" -t, --format=TIPO selecciona el formato o formatos de salida\n" +" -v, --output-duplicates no usa * para indicar líneas repetidas\n" +" -w, --width[=BYTES] muestra BYTES bytes por línea de salida\n" +" --traditional acepta los argumentos en formato tradicional\n" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" +"\n" +"Las especificaciones de formato tradicionales pueden estar mezcladas y\n" +"se acumulan:\n" +" -a lo mismo que -t a, selecciona los caracteres nombrados\n" +" -b lo mismo que -t oC, selecciona bytes en base octal\n" +" -c lo mismo que -t c, selecciona caracteres ASCII o secuencias de " +"escape\n" +" -d lo mismo que -t u2, selecciona decimales cortos sin signo\n" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" +" -f lo mismo que -t fF, selecciona números en coma flotante\n" +" -h lo mismo que -t x2, selecciona hexadecimales cortos\n" +" -i lo mismo que -t d2, selecciona decimales cortos\n" +" -l lo mismo que -t d4, selecciona decimales largos\n" +" -o lo mismo que -t o2, selecciona octales cortos\n" +" -x lo mismo que -t x2, selecciona hexadecimales cortos\n" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" +"\n" +"En la sintaxis antigua, DESPLAZAMIENTO significa -j DESPLAZAMIENTO. " +"ETIQUETA\n" +"es la pseudodirección del primer byte mostrado, que se incrementa a la vez\n" +"que se va procesando el volcado. Para DESPLAZAMIENTO y ETIQUETA, el prefijo\n" +"0x ó 0X indica hexadecimal, los sufijos pueden ser `.' para octal y `b' " +"para\n" +"bloques de 512 bytes.\n" +"\n" +"TIPO se construye con una o más de las siguientes especificaciones:\n" +"\n" +" a un determinado carácter\n" +" c carácter ASCII o secuencia de escape (\\999)\n" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" +" d[TAMAÑO] decimal con signo, TAMAÑO bytes por cada entero\n" +" f[TAMAÑO] coma flotante, TAMAÑO bytes por cada entero\n" +" o[TAMAÑO] octal, TAMAÑO bytes por cada entero\n" +" u[TAMAÑO] decimal sin signo, TAMAÑO bytes por cada entero\n" +" x[TAMAÑO] hexadecimal, TAMAÑO bytes por cada entero\n" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" +"\n" +"TAMAÑO es un número. Para los TIPOs d, o, u ó x, TAMAÑO puede ser también:\n" +"C para `sizeof(char)', S para `sizeof(short)', I para `sizeof(int)' ó L " +"para\n" +"`sizeof(long)'. Si TIPO es f, TAMAÑO puede ser también F para `sizeof" +"(float)',\n" +" D para `sizeof(double)' ó L para `sizeof(long double)'.\n" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" +"\n" +"BASE es d para decimal, o para octal, x para hexadecimal o n para ninguna.\n" +"BYTES es hexadecimal con 0x ó 0X como prefijo, se multiplica por 512 si el\n" +"sufijo es b, por 1024 si es k y por 1048576 si es m. Si se añade el sufijo\n" +"z a cualquier tipo, se añade un visor de caracteres imprimibles al final de\n" +"cada línea del resultado. " + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" +"--string sin ningún número implica 3. --width sin ningún número implica 32.\n" +"Por omisión, od usa `-A o -t d2 -w 16'.\n" + +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "tipo de cadena inválido `%s'" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" +"tipo de cadena inválido `%s';\n" +"este sistema no posee el tipo de entero de %lu bytes" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" +"tipo de cadena inválido `%s';\n" +"este sistema no dispone de un tipo de coma flotante de %lu bytes" + +#: src/od.c:917 +#, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "carácter inválido `%c' en la cadena de tipo `%s'" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "" +"no se puede saltar a un punto que está más allá de la entrada combinada" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "desplazamiento al estilo antiguo" + +# `set' -> [set] ... no deberíamos cambiar la terminología original, so pena +# de hacernos la picha un lío ... (opino, vamos :) ipg +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "" +"la base de la dirección de salida no es válida `%c'; debe ser uno de [doxn]" + +#: src/od.c:1717 +msgid "skip argument" +msgstr "pasando por alto este argumento" + +# ¿Tiene sentido? ¿No sería `argumento límite'? (no tengo las fuentes, +# sorry O:) ipg +# No lo sé, yo tengo las fuentes, pero a primera vista no concluyo em+ +# +# a ver si te acuerdas la próxima vez y "pegas" el trocito de código donde esté, +# así podremos discutir sobre ello.... +# FIXME: Asegurarse de que significa eso. sv+ +#: src/od.c:1725 +msgid "limit argument" +msgstr "limitando este argumento" + +# ¿longitud mínima de cadena? Es que si no, me suena a spanglish :) ipg +# ok em+ +#: src/od.c:1735 +msgid "minimum string length" +msgstr "longitud mínima de cadena" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "%s es demasiado grande" + +#: src/od.c:1804 +msgid "width specification" +msgstr "especificación de ancho" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "no se puede especificar tipo cuando se vuelcan cadenas" + +# aunque con "operando no válido" se pueda llegar a la misma conclusión, +# creo que lo que propongo es mucho más claro... +# Creo que está bien así y de la otra forma, a mí me suena igual em+ +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "segundo operando inválido en el modo de compatibilidad `%s'" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "" +"en el modo de compatibilidad, los dos últimos argumentos deben ser\n" +"desplazamientos" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "el modo de compatibilidad admite como mucho tres argumentos" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "atención: ancho %lu inválido; se usará %d en su lugar" + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "%d: fmt=\"%s\" ancho=%d\n" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "David M. Ihnat y David MacKenzie" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "la entrada estándar está cerrada" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Escribe secuencialmente en la salida estándar cada línea de los FICHEROs\n" +"especificados, separadas por tabuladores.\n" +"Si no se especifica FICHERO o FICHERO es `-', lee la entrada estándar.\n" +"\n" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" +" -d, delimiters=LISTA usa los caracteres indicados en LISTA en lugar de\n" +" tabuladores\n" +" -s, --serial usa un fichero cada vez, en lugar de hacerlo en\n" +" paralelo\n" + +#: src/pathchk.c:146 +#, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "Modo de empleo: %s [OPCIÓN]... [NOMBRE]...\n" + +# Sugerencia: "no sólo este"-> "no sólo éste" gerardo +# ¿Estás seguro? sv +# ¡¡SÍ!! Observa: "todos los sistemas... no sólo este sistema" +# "todos los sistemas... no sólo éste." +# En el primer caso, "este" es adjetivo, y en el 2º, adverbio. +# La RAE dice que la tilde es optativa si no hay ambigüedad posible. +# Yo creo que es mejor ponerla siempre. +# +# Yo prefiero no ponerla si no hay ambigüedad... sv +#: src/pathchk.c:147 +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" +"Diagnostica construcciones no portables en NOMBRE\n" +"\n" +" -p, --portability comprueba para todos los sistemas POSIX, no sólo este\n" + +# Aquí también pongo transportable. +#: src/pathchk.c:237 +#, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "la ruta de acceso `%s' contiene el carácter no transportable `%c'" + +#: src/pathchk.c:257 +#, c-format +msgid "`%s' is not a directory" +msgstr "`%s' no es un directorio" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "el directorio `%s' es inaccesible" + +#: src/pathchk.c:355 +#, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "el nombre `%s' tiene longitud %ld; excede el límite de %ld" + +#: src/pathchk.c:381 +#, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "la ruta de acceso `%s' tiene longitud %d; excede el límite de %ld" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "Joseph Arceneaux, David MacKenzie, y Kaveh Ghazi" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "Nombre de usuario: " + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "En la vida real: " + +#: src/pinky.c:298 +msgid "???\n" +msgstr "???\n" + +#: src/pinky.c:318 +msgid "Directory: " +msgstr "Directorio: " + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "Shell: " + +#: src/pinky.c:341 +msgid "Project: " +msgstr "Proyecto: " + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "Plan:\n" + +# FIXME: Sin el contexto es difícil. +#: src/pinky.c:386 +msgid "Login" +msgstr "Login" + +#: src/pinky.c:388 +msgid "Name" +msgstr "Nombre" + +#: src/pinky.c:389 +msgid " TTY" +msgstr " TTY" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "Inactivo" + +#: src/pinky.c:392 +msgid "When" +msgstr "Cuándo" + +#: src/pinky.c:395 +msgid "Where" +msgstr "Dónde" + +#: src/pinky.c:469 +#, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "Modo de empleo: %s [OPCIÓN]... [USUARIO]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" +"\n" +" -l usa el formato ancho para el resultado\n" +" -b omite el directorio inicial y shell del usuario en " +"formato\n" +" ancho\n" +" -h omite el fichero project del usuario en formato largo\n" +" -p omite el fichero plan del usuario en formato largo\n" +" -s usa el formato corto (este es el predeterminado)\n" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" +" -f omite la línea de cabeceras de columnas en formato corto\n" +" -w omite el nombre completo del usuario en formato corto\n" +" -i omite el nombre completo del usuario y el `host' remoto\n" +" en formato corto\n" +" -q omite el nombre completo del usuario, el `host' remoto\n" +" y el tiempo inactivo en formato corto\n" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" +"\n" +"Un programa `finger' sencillo; muestra información del usuario.\n" +"El fichero utmp será %s.\n" + +#: src/pinky.c:574 +msgid "no username specified; at least one must be specified when using -l" +msgstr "" +"no se ha especificado ningún nombre de usuario, hay que especificar al\n" +"menos uno cuando se usa -l" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "Pete TerMaat y Roland Huebner" + +# FIXME: El original es horrible. +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "`--pages' rango de número de páginas inválido: `%s'" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "`--pages' número de página de comienzo inválido: `%s'" + +#: src/pr.c:829 +#, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "`--pages' número de página final inválido: `%s'" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "" +"`--pages' el número de página de comienzo es mayor que el número de página " +"final" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "`--pages=PRIMERA_PÁGINA[:ÚLTIMA_PÁGINA]' falta un argumento" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "`--columns=COLUMNAS' número de columnas inválido: `%s'" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "`-l LONGITUD_PÁGINA' el número de líneas no es válido: `%s'" + +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "`-N NÚMERO' número de comienzo de línea inválido: `%s'" + +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "`-o MARGEN' el desplazamiento de línea no es válido: `%s'" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "`-w ANCHO_PÁGINA' número inválido de caracteres: `%s'" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "`-W ANCHO_PÁGINA' número de caracteres inválido: `%s'" + +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "%b %e %H:%M %Y" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "" +"No se puede especificar un número de columnas cuando se escribe en paralelo." + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "" +"No se puede especificar a la vez impresión en paralelo y transversalmente." + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "`-%c' sobran caracteres, o número inválido en el argumento: `%s'" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "ancho de página demasiado estrecho" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "" +"el número de página de comienzo es mayor que el número total de páginas: `%d'" + +# ¿Y cómo se asegura uno de esto?, pregunto. sv +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "Página %d" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" +"Pagina o encolumna FICHERO(s) para su impresión.\n" +"\n" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" +" +PRIMERA_PAGINA[:ÚLTIMA_PAGINA], --pages=PRIMERA_PAGINA[:ÚLTIMA_PAGINA]\n" +" comienza [termina] a imprimir por PRIMERA_[ÚLTIMA_]" +"PÁGINA\n" +" -COLUMNAS, --columns=COLUMNAS\n" +" muestra una salida en COLUMNAS columnas e imprime las\n" +" columnas, a menos que se especifique -a. Equilibra el\n" +" número de líneas de cada columna en cada página.\n" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" +" -a, --across crea las columnas transversalmente en lugar de en " +"paralelo,\n" +" se utiliza junto con -COLUMNAS\n" +" -c, --show-control-chars\n" +" muestra los caracteres de control con notación\n" +" gorro (^G) o secuencias de escape octales\n" +" -d, --double-space\n" +" salida con espaciado doble\n" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" +" -D, --date-format=FORMATO\n" +" utiliza FORMATO para la fecha de la cabecera\n" +" -e[CARÁCTER[ANCHO]], --expand-tabs[CARÁCTER[ANCHO]]\n" +" sustituye el carácter de tabulación (o el CARÁCTER) por\n" +" ANCHO (8) espacios\n" +" -F, -f, --form-feed\n" +" utiliza saltos de página en lugar de caracteres de " +"nueva\n" +" línea para separar páginas (con una cabecera de página " +"de 3\n" +" líneas con -f o una cabecera y una cola de 5 líneas sin -" +"F)\n" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" +" -h CABECERA, --header=CABECERA\n" +" utiliza una CABECERA centrada en lugar del nombre del\n" +" fichero en la cabecera de la página, -h \"\" muestra\n" +" una línea en blanco. No usar -h\"\"\n" +" -i[CARÁCTER[ANCHO]], --output-tabs[CARÁCTER[ANCHO]]\n" +" reemplaza los espacios con tabulaciones (o con " +"CARÁCTER)\n" +" de ancho ANCHO (8)\n" +" -J, --join-lines mezcla líneas completas, desactiva el truncamiento de\n" +" líneas -W, no alinea las columnas, --sep-string" +"[=CADENA]\n" +" establece los separadores\n" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" +" -l LONG_PÁGINA, --length=LONG_PÁGINA\n" +" establece la longitud de la página en el número " +"indicado\n" +" por defecto 66, o 56 si se especifica -f 63\n" +" -m, --merge muestra todos los ficheros en paralelo, uno en cada " +"columna,\n" +" trunca líneas, pero une líneas de longitud completa con -" +"J\n" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" +" -n[SEP[DÍGITOS]], --number-lines[=SEP[DÍGITOS]]\n" +" numera las líneas, utiliza DÍGITOS (5) dígitos, luego " +"SEP\n" +" (TAB), la cuenta predeterminada comienza con la primera\n" +" línea del fichero de entrada\n" +" -N NÚMERO, --first-line-number=NÚMERO\n" +" comienza a contar con NÚMERO en la primera línea de la\n" +" primera página impresa (véase +PRIMERA_PÁGINA)\n" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" +" -o MARGEN, --indent=MARGEN\n" +" desplaza cada línea con MARGEN (cero) espacios, no " +"afecta\n" +" a -w ni a -W, MARGEN será añadido a ANCHO_PÁGINA\n" +" -r, --no-file-warnings\n" +" omite el aviso cuando no se puede abrir un fichero\n" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" +" -s[CAR], --separator[=CAR]\n" +" separa las columnas mediante un solo carácter, el valor\n" +" predeterminado de CAR es el carácter de sin -w y\n" +" 'ningún carácter' con -w. La opción -s[CAR] desactiva " +"el\n" +" truncamiento de líneas de las 3 opciones de columnas\n" +" (-COLUMN|-a -COLUMN|-m) excepto si se usa -w.\n" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr " -SCADENA, --sep-string[=CADENA]\n" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" +" separa las columnas mediante CADENA,\n" +" sin -S: El separador predeterminado es con -J\n" +" y en caso contrario (lo mismo que -S\" \"), \n" +" no hay ningún efecto en las opciones de columnas\n" +" -t, --omit-header no muestra cabeceras ni colas\n" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" +" -T, --omit-pagination\n" +" no muestra cabeceras ni colas, descarta cualquier\n" +" formato de página establecido con saltos de página en\n" +" los ficheros de entrada\n" +" -v, --show-nonprinting\n" +" usa la notación octal de barra invertida\n" +" -w ANCHO_PÁGINA, --width=ANCHO_PÁGINA\n" +" establece el ancho de página en ANCHO_PÁGINA caracteres\n" +" (por omisión, 72) solamente para salida de texto en " +"varias\n" +" columnas, -s[car] lo desactiva (72)\n" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" +" -W ANCHO_PÁGINA, --page-width=ANCHO_PÁGINA\n" +" establece el ancho de página siempre en ANCHO_PÁGINA\n" +" caracteres (por omisión 72), trunca las líneas, excepto " +"si\n" +" se usa la opción -J, no interfiere con las opciones -S o " +"-s\n" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" +"\n" +"-l nn implica -T cuando nn <= 10 ( ó <= 3 con -F). Si no se especifica " +"ningún\n" +"FICHERO, o cuando FICHERO es -, lee la entrada estándar.\n" + +#: src/printenv.c:43 +msgid "David MacKenzie and Richard Mlynarik" +msgstr "David MacKenzie y Richard Mlynarik" + +#: src/printenv.c:63 +#, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" +"Modo de empleo: %s [VARIABLE]...\n" +" o bien: %s OPCIÓN\n" +"Si no se especifica ninguna VARIABLE de entorno, las muestra todas.\n" +"\n" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "" +"atención: %s: los caracteres que siguen a la constante de caracteres\n" +"no se han tenido en cuenta" + +#: src/printf.c:100 +#, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"Modo de empleo: %s FORMATO [ARGUMENTO]...\n" +" o bien: %s OPCIÓN\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" +"Muestra ARGUMENTO(s) de acuerdo a FORMATO.\n" +"\n" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" +"\n" +"FORMATO controla la salida como la función printf de C. Las secuencias\n" +"interpretadas son:\n" +"\n" +" \\\" dobles comillas\n" +" \\0NNN el carácter con valor octal NNN (0 a 3 dígitos)\n" +" \\\\ barra invertida\n" + +# alerta (BEL) ? mejor, pitido audible (BEL) em+ +# campana. sv+ +# ¿Manejada? . ¿Qué te parece 'Se considera el ancho variable' em +# A ver si te gusta lo que he puesto. sv+ +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" +" \\a campana (BEL)\n" +" \\b carácter de retroceso (backspace)\n" +" \\c no produce más salida\n" +" \\f avance de página (form feed)\n" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\n nueva línea\n" +" \\r retorno de carro\n" +" \\t tabulador horizontal\n" +" \\v tabulador vertical\n" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" +" \\xNN el byte con valor hexadecimal NN (de 1 a 2 dígitos)\n" +"\n" +" \\uNNNN el carácter con valor hexadecimal NNNN (4 dígitos)\n" +" \\UNNNNNNNN el carácter con valor hexadecimal NNNNNNNN (8 dígitos)\n" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" +" %% un sólo %\n" +" %b ARGUMENTO como una cadena con secuencias de escape `\\'\n" +" interpretadas\n" +"\n" +"En todas las especificaciones de formato en C que terminan con un miembro\n" +"de diouxXfeEgGcs, los ARGUMENTOs se convierten al tipo adecuado primero.\n" +"Se admiten anchuras variables.\n" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "%s: se esperaba un valor numérico" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "%s: valor no completamente convertido" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "falta un número hexadecimal en la secuencia de escape" + +#: src/printf.c:292 +#, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "el nombre de carácter universal \\%c%0*x es inválido" + +#: src/printf.c:472 +#, c-format +msgid "invalid field width: %s" +msgstr "ancho de campo inválido: %s" + +#: src/printf.c:498 +#, c-format +msgid "invalid precision: %s" +msgstr "precisión inválida: %s" + +#: src/printf.c:519 +#, c-format +msgid "%%%c: invalid directive" +msgstr "%%%c: directiva inválida" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "Modo de empleo: %s formato [argumento...]\n" + +#: src/printf.c:594 +#, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "atención: se descartan los argumentos que sobran, comenzando por `%s'" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "%s (para la expresión regular `%s')" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"Modo de empleo: %s [OPCIÓN]... [ENTRADA]... (sin -G)\n" +" o bien: %s -G [OPCIÓN]... [ENTRADA [SALIDA]]\n" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" +"Muestra un índice permutado, incluyendo contexto, de las palabras\n" +"de los ficheros de entrada.\n" + +# Usaría 'se comporta' en vez de 'comportarse' em+ +# Sentence = frase em +# Ok a los dos :) ipg +# 'genera salida' lo cambiaría por 'genera' o 'muestra' em+ +# Pongo `genera el resultado con' ipg +# Por último, 'da información' me resulta antipático, me inclino +# por 'informa' em+ +# Ya, esa se me pasó ... yastá :) ipg +# Perdón, pero lo de 'leer de' no me gusta , prefiero 'leer' a secas em+ +# ok ipg +# +# Sugerencia: usa -> utiliza. sv +# Hmmm ... prefiero `usa', es más corto e igual de explicativo. Tampoco +# es en exceso coloquial como para no parecer medianamente serio ;) ipg +# +# ¡Pero en mkid me aceptaste la sugerencia! ¿Por qué aquí no? :-) sv +# No sabría decirte ... por el contexto, quizá ... ipg +# +# Bien, pues razóname por qué un contexto es más apropiado para usa +# y el otro es más apropiado para utiliza. sv +# +# ¡Psche! ... es cuestión muy psicológica. Si te fijas, a mí me parece +# un contexto de PM (Persona Mayor, malpensao ;) para ello, y a tí +# no. Creo que no hay por qué darle muchas vueltas ... +# +# Sugerencia (en -F) marcar las líneas -> señalar las líneas. sv +# Prefiero marcar, para mi señala se refiere más a una acción activa, +# `señalar' algún objeto, apuntar a él, no ser un objeto pasivo que +# hace que te fijes en el objeto, que es lo que será la cadena. ipg +# +# He cambiado un poco lo de "Los argumentos obligatorios...". sv +# aunque todavía no es igual que el que tenía yo... +# Vale gracias :) me gusta más. Dile a Enrique que los revise en +# textutils. ipg +# +# Sugerencia: directivas TeX -> instrucciones TeX. sv +# Aquí prefiero ser fiel al original, ya que hay una traducción +# exacta e unívoca de una a otro (¡¡la función buena persona!! ;). ipg +# ... salvo que "directiva" me recuerda cantidad a las +# "directivas de la Unión Europea" sv +# A las que ni Cristo hace puto caso :) ipg +# +# Propongo: "Considera las minúsculas como mayúsculas para ordenar". sv +# +# Ahí estás considerando que convierte todo a mayúsculas ... ipg +# +# En absoluto: Estamos diciendo que las *considera como*, no que las +# convierta, y sólo *para ordenar*. Léelo bien, hombre. sv +# ¿qué tal `No distingue entre mayúsculas y minúsculas al ordenar'? +# (la pongo por ahora en espera de críticas ;) ipg +# +# No está mal, pero lo que yo proponía da más detalles sobre lo que +# hace internamente. Por ejemplo, ¿cómo sabes en qué lugar quedan los códigos +# que hay entre los de las mayúsculas y las minúsculas si solamente dices +# que "considera iguales las mayúsculas y las minúsculas"? sv +# +# Perdona Santiago, pero eso yo lo veo innecesario. Al usuario le da +# *igual* (o al menos le debería) cómo funcione internamente el hecho +# de considerar iguales las mayúsculas y las minúsculas, y el cómo se +# ordene, además de que dependerá del LOCALE, es casi irrelevante, porque +# creo (y digo creo) que las funciones de ordenación (strcoll && friends) +# siempre usan una secuencia de ordenación definida. En mi sistema +# usan la de ascii, pero porque yo no tengo definida la secuencia de +# ordenación para el castellano. Resumiendo: creo que la razón de +# `la posición de los códigos que hay entre mayúsculas y minúsculas' +# no es siempre aplicable. +# Uso mi frase, ¿ok? :) ipg +# +# Bueno, no es tan importante, pero me intriga por qué el autor +# quiso indicar eso dando más información de la que tú das +# en la traducción. sv +# Emoción, intriga, dolor de barriga :) ipg +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" +" -A, --auto-reference muestra automáticamente las referencias\n" +" generadas\n" +" -C, --copyright muestra el Copyright y las condiciones\n" +" de copia\n" +" -G, --traditional se comporta como el `ptx' de System V\n" +" -F, --flag-truncation=CADENA usa CADENA para marcar las líneas " +"truncadas\n" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" +" -M, --macro-name=CADENA usa CADENA como nombre de macro en lugar\n" +" de `xx'\n" +" -O, --format=roff genera el resultado con directivas roff\n" +" -R, --right-side-refs pone las referencias a la derecha,\n" +" sin contarlas en -w\n" +" -S, --sentence-regexp=EXPR-REG para finales de línea o frase\n" +" -T, --format=tex genera salida como directivas TeX\n" + +# ¿Alquien sabe qué coño es gap? No lo he encontrado en el diccionario .. ipg +# Pues gap suele ser una especie de desplazamiento o desajuste, +# lo traduciría aquí como separación em+ +# Gracias. ipg +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" +" -W, --word-regexp=EXPR-REG usa EXPR-REG para encontrar las palabras " +"clave\n" +" -b, --break-file=ARCHIVO toma de ARCHIVO los caracteres que definen\n" +" las palabras\n" +" -f, --ignore-case no distingue entre mayúsculas y minúsculas\n" +" al ordenar\n" +" -g, --gap-size=NÚMERO separación en columnas entre campos de " +"salida\n" +" -i, --ignore-file=ARCHIVO lee la lista de palabras a pasar por\n" +" alto de ARCHIVO\n" +" -o, --only-file=ARCHIVO lee la lista de palabras a mantener de\n" +" ARCHIVO\n" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" +" -r, --references el primer campo de la línea es una " +"referencia\n" +" -t, --typeset-mode - no implementado -\n" +" -w, --width=NÚMERO anchura de la salida en columnas,\n" +" excluyendo referencias\n" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" +"\n" +"Si no se especifica ARCHIVO o ARCHIVO es `-', lee de la entrada estándar.\n" +"Se toma `-F /' por defecto.\n" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" +"Este programa es software libre; puede ser redistribuido y/o\n" +"modificado bajo los términos de la Licencia Pública General de\n" +"GNU tal y como se publica por la Free Software Foundation; bien\n" +"en su versión 2, o (a su elección) cualquier versión posterior.\n" +"\n" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" +"Este programa se distribuye con la esperanza de que sea útil,\n" +"pero SIN NINGUNA GARANTÍA; ni siquiera la garantía implícita de\n" +"COMERCIABILIDAD o IDONEIDAD PARA UN FIN DETERMINADO. Véase la\n" +"Licencia Pública General de GNU para más detalles.\n" +"\n" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" +"Usted debería haber recibido una copia de la Licencia Pública\n" +"General de GNU junto con este programa; en caso contrario, escriba\n" +"a la Free Software Foundation, Inc., 59 Temple Place - Suite 330,\n" +"Boston, MA 02111-1307, EE.UU.\n" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" +"Muestra el nombre de fichero completo del directorio de trabajo actual.\n" +"\n" + +#: src/pwd.c:74 +msgid "ignoring non-option arguments" +msgstr "los argumentos que no son opciones no serán tenidos en cuenta" + +#: src/pwd.c:78 +msgid "cannot get current directory" +msgstr "no se puede obtener el directorio actual" + +#: src/readlink.c:69 +#, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "Modo de empleo: %s [OPCIÓN]... FICHERO\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" +"Muestra el valor de un enlace simbólico en la salida estándar.\n" +"\n" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" +" -f, --canonicalize canonicaliza siguiendo cada enlace simbólico\n" +" de cada componente del camino dado recursivamente\n" +" -n, --no-newline no muestra la nueva línea final\n" +" -q, --quiet,\n" +" -s, --silent suprime la mayoría de los mensajes de error\n" +" -v, --verbose informa de los errores\n" + +#: src/remove.c:394 +#, c-format +msgid "cannot chdir from %s to .." +msgstr "no se puede cambiar de %s a .." + +#: src/remove.c:407 src/remove.c:488 +#, c-format +msgid "cannot lstat `.' in %s" +msgstr "no se puede efectuar `lstat' sobre `.' en %s" + +# FIXME: ¿Por qué el original no dice inode, si es que es eso lo que quiere +# decir? +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "%s ha cambiado dev/nodo-i" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, c-format +msgid "cannot lstat %s" +msgstr "no se puede efectuar `lstat' sobre %s" + +# SIoNO +#: src/remove.c:603 +#, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "%s: ¿descender al directorio protegido contra escritura %s? (s/n) " + +# SIoNO +#: src/remove.c:604 +#, c-format +msgid "%s: descend into directory %s? " +msgstr "%s: ¿descender al directorio %s? (s/n) " + +# SIoNO +#: src/remove.c:614 +#, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: ¿borrar el %s %s protegido contra escritura? (s/n) " + +# Convendría saber qué son los `%s'. Ver el código fuente. +# El segundo es el nombre del fichero que se va a borrar, pero +# ¿y el primero? +# +# SIoNO +#: src/remove.c:615 +#, c-format +msgid "%s: remove %s %s? " +msgstr "%s: ¿borrar el %s %s? (s/n) " + +#: src/remove.c:639 +#, c-format +msgid "removed %s\n" +msgstr "%s borrado\n" + +#: src/remove.c:654 src/remove.c:1059 +#, c-format +msgid "removed directory: %s\n" +msgstr "directorio borrado: %s\n" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, c-format +msgid "cannot remove directory %s" +msgstr "no se puede borrar el directorio %s" + +#: src/remove.c:815 +#, c-format +msgid "cannot open directory %s" +msgstr "no se puede abrir el directorio %s" + +#: src/remove.c:896 src/remove.c:1002 +#, c-format +msgid "cannot chdir from %s to %s" +msgstr "no se puede cambiar del directorio %s al %s" + +# "Esto quiere decir que seguramente el sistema..." tb +# Eso sería "This means that almost certainly you have..." sv +# Me gusta más tal y como está ahora. sv +# Creo que tienes razón. Esta es un poco difícil. Es que parece que quiere +# indicar que "esto muy probablemente indique que" o "con casi total +# seguridad esto se debe a que tiene un sistema de ficheros corrupto". +# Pero... tb +# Lo pensaré. sv +#: src/remove.c:904 +#, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +"ATENCIÓN: Estructura de directorios circular.\n" +"Esto quiere decir seguramente que el sistema de ficheros está corrupto.\n" +"COMUNÍQUELO AL ADMINISTRADOR DEL SISTEMA.\n" +"El siguiente directorio es parte del ciclo:\n" +" %s\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "no se puede borrar `.' o `..'" + +#: src/rm.c:60 +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "Paul Rubin, David MacKenzie, Richard Stallman, y Jim Meyering" + +#: src/rm.c:99 src/touch.c:244 +#, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "Modo de empleo: %s [OPCIÓN]... FICHERO...\n" + +# prompt es "preguntar" o "pedir confirmación". +# No me gusta nada cómo me ha quedado el verbose. Se admiten sugerencias. +# +# ¿Por qué no utilizar la forma que has utilizado anteriormente en este caso? +# "da detalles...", creo que explicar no pega ni con cola... +# +# ¿Y en inglés sí te pega? sv +# +#: src/rm.c:100 +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Borra (desenlaza) el/los FICHERO(s).\n" +"\n" +" -d, --directory desenlaza FICHERO, incluso si es un directorio no " +"vacío\n" +" (solamente super-usuario)\n" +" -f, --force descarta los ficheros que no existan, sin preguntar\n" +" -i, --interactive pide confirmación antes de borrar\n" +" -r, -R, --recursive borra los contenidos de los directorios " +"recursivamente\n" +" -v, --verbose explica lo que va haciendo\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" +"\n" +"Para borrar un fichero cuyo nombre comience con un `-', por ejemplo `-fu',\n" +"utilice una de las siguientes órdenes:\n" +" %s -- -fu\n" +"\n" +" %s ./-fu\n" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" +"\n" +"Tenga en cuenta que si utiliza rm para borrar un fichero, normalmente es\n" +"posible recuperar el contenido de ese fichero. Si quiere mayor seguridad\n" +"de que el contenido es realmente irrecuperable, considere utilizar shred.\n" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, c-format +msgid "removing directory, %s" +msgstr "borrando el directorio, %s" + +#: src/rmdir.c:146 +#, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "Modo de empleo: %s [OPCIÓN]... DIRECTORIO...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" +"Borra el/los DIRECTORIO(s), si están vacíos.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" no tiene en cuenta los fallos que se producen únicamente\n" +" porque un directorio no está vacío\n" + +#: src/rmdir.c:154 +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +" -p, --parents borra DIRECTORIO, y luego intenta borrar cada componente\n" +" de directorio de ese camino. P. ej. `rmdir -p a/b/c' es\n" +" similar a `rmdir a/b/c a/b a'.\n" +" -v, --verbose muestra un mensaje por cada directorio procesado\n" + +#: src/seq.c:82 +#, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"Modo de empleo: %s [OPCIÓN]... ÚLTIMO\n" +" o bien: %s [OPCIÓN]... PRIMERO ÚLTIMO\n" +" o bien: %s [OPCIÓN]... PRIMERO INCREMENTO ÚLTIMO\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" +"Muestra los números desde PRIMERO hasta ÚLTIMO, en incrementos de " +"INCREMENTO.\n" +"\n" +" -f, --format=FORMATO utiliza un FORMATO de estilo printf(3)\n" +" (por omisión: %g)\n" +" -s, --separador=CADENA utiliza CADENA para separar los números\n" +" (por omisión: \\n)\n" +" -w, --equal-width iguala el ancho rellenando con ceros\n" + +#: src/seq.c:96 +#, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" +"\n" +"Si se omiten PRIMERO o INCREMENTO, el valor predeterminado es 1.\n" +"PRIMERO, INCREMENTO y ÚLTIMO se interpretan como valores de coma flotante.\n" +"INCREMENTO debe ser positivo si PRIMERO es menor que ÚLTIMO, de otra " +"manera,\n" +"negativo. Cuando se da el argumento FORMATO, debe contener exactamente uno\n" +"de los formatos estilo printf para coma flotante %e, %f, o %g\n" + +#: src/seq.c:119 +#, c-format +msgid "invalid floating point argument: %s" +msgstr "argumento de coma flotante inválido: %s" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" +"cuando el valor inicial es mayor que el límite,\n" +"el incremento debe ser negativo" + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" +"cuando el valor inicial es menor que el límite,\n" +"el incremento debe ser positivo" + +#: src/seq.c:423 +#, c-format +msgid "invalid format string: `%s'" +msgstr "cadena de formato inválida: `%s'" + +#: src/seq.c:445 +msgid "format string may not be specified when printing equal width strings" +msgstr "" +"la cadena de formato no debe especificarse cuando se muestran\n" +"cadenas de la misma anchura" + +#: src/shred.c:160 +#, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "Modo de empleo: %s [OPCIONES] FICHERO [...]\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" +"Sobreescribe los FICHERO(s) especificados repetidamente, para hacer más " +"difícil\n" +"la recuperación de los datos incluso utilizando hardware muy costoso.\n" +"\n" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" +" -f, --force cambia los permisos para permitir la escritura si es " +"necesario\n" +" -n, --iterations=N sobreescribe N veces en vez de lo predeterminado (%d)\n" +" -s, --size=N efectúa el `shred' sobre este número de bytes\n" +" (se permiten los sufijos K, M y G)\n" + +#: src/shred.c:174 +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" +" -u, --remove trunca y borra el fichero después de sobreescribirlo\n" +" -v, --verbose muestra el progreso\n" +" -x, --exact no redondea hacia arriba los tamaños de los ficheros hasta " +"el\n" +" siguiente bloque completo; este es el comportamiento\n" +" predeterminado para los ficheros no regulares\n" +" -z, --zero añade una sobreescritura final con ceros para ocultar la\n" +" acción de esta orden\n" +" - efectúa shred en la salida estándar\n" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" +"\n" +"Borra los FICHERO(s) si se especifica --remove (-u). La acción " +"predeterminada\n" +"es no borrar los ficheros porque es habitual operar sobre ficheros de\n" +"dispositivo como /dev/hda, y dichos ficheros normalmente no se deben " +"borrar.\n" +"Cuando se opera sobre ficheros regulares, la mayor parte de la gente utiliza " +"la\n" +"opción --remove.\n" +"\n" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" +"PRECAUCIÓN: Tenga en cuenta que shred se basa en una importante suposición:\n" +"que el sistema de ficheros sobreescribe los datos en el mismo sitio. Esta " +"es\n" +"la forma tradicional de hacer las cosas, pero muchos diseños modernos de\n" +"sistemas de ficheros no satisfacen esta suposición. Los siguientes son " +"ejemplos\n" +"de sistemas de ficheros en los que shred no es efectivo:\n" +"\n" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" +"* sistemas de ficheros con estructura de registro o con versiones, como\n" +" los que suministran AIX y Solaris (y JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* sistemas de ficheros que escriben datos redundantes y siguen adelante\n" +" incluso si algunas escrituras fallan, tales como los sistemas de ficheros\n" +" basados en RAID\n" +"\n" +"* sistemas de ficheros que hacen `snapshots', tales como el servidor NFS de\n" +" Network Appliance\n" +"\n" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" +"* sistemas de ficheros que hacen caché en sitios temporales, tales como\n" +" los clientes de NFS versión 3\n" +"\n" +"* sistemas de ficheros comprimidos\n" +"\n" +"Además, respaldos del sistema de ficheros y espejos remotos pueden contener\n" +"copias del fichero que no se pueden borrar, y eso permite recuperar después " +"un\n" +"fichero al que se le haya hecho shred.\n" + +#: src/shred.c:808 +#, c-format +msgid "%s: cannot rewind" +msgstr "%s: no se puede rebobinar" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "%s: paso %lu/%lu (%s)..." + +#: src/shred.c:868 +#, c-format +msgid "%s: error writing at offset %s" +msgstr "%s: error al escribir en el desplazamiento %s" + +#: src/shred.c:897 +#, c-format +msgid "%s: file too large" +msgstr "%s: fichero demasiado grande" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "%s: paso %lu/%lu (%s)...%s" + +#: src/shred.c:936 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "%s: paso %lu/%lu (%s)...%s/%s %d%%" + +#: src/shred.c:1195 +#, c-format +msgid "%s: invalid file type" +msgstr "%s: tipo de fichero inválido" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s: el fichero tiene un tamaño negativo" + +#: src/shred.c:1265 +#, c-format +msgid "%s: error truncating" +msgstr "%s: error al truncar" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "%s: no se puede efectuar shred un descriptor de fichero de sólo añadir" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "%s: borrando" + +#: src/shred.c:1412 +#, c-format +msgid "%s: renamed to %s" +msgstr "%s: renombrado a %s" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s: borrado" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "%s: no se puede borrar" + +#: src/shred.c:1551 +#, c-format +msgid "%s: invalid number of passes" +msgstr "%s: número inválido de pasos" + +#: src/shred.c:1568 +#, c-format +msgid "%s: invalid file size" +msgstr "%s: tamaño de fichero inválido" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "Jim Meyering y Paul Eggert" + +#: src/sleep.c:52 +#, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" +"Modo de empleo: %s NÚMERO[SUFIJO]...\n" +" o bien: %s OPCIÓN\n" +"Hace una pausa de NÚMERO segundos. El SUFIJO puede ser `s' para segundos\n" +"(predeterminado), `m' para minutos, `h' para horas o `d' para días.\n" +"Al contrario de la mayoría de las implementaciones que exigen que NÚMERO " +"sea\n" +"un entero, aquí NÚMERO puede ser un número de coma flotante arbitrario.\n" +"\n" + +#: src/sleep.c:155 +#, c-format +msgid "invalid time interval `%s'" +msgstr "intervalo de tiempo inválido `%s'" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "no se puede leer el reloj de tiempo real" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "Mike Haertel y Paul Eggert" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" +"Muestra la concatenación ordenada de todos los FICHERO(s) en la salida\n" +"estándar.\n" +"\n" +"Opciones de ordenación:\n" +"\n" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" +" -b, --ignore-leading-blanks descarta los espacios en blanco al principio\n" +" -d, --dictionary-order considera sólo los caracteres alfanuméricos\n" +" y los espacios\n" +" -f, --ignore-case convierte las minúsculas en mayúsculas\n" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" +" -g, --general-numeric-sort compara de acuerdo con el valor numérico\n" +" -i, --ignore-nonprinting considera sólo los caracteres imprimibles\n" +" -M, --month-sort compara (desconocido) < 'JAN' < ... < `DEC'\n" +" -n, --numeric-sort compara de acuerdo con el valor numérico de\n" +" la cadena\n" +" -r, --reverse invierte el resultado de las comparaciones\n" +"\n" + +# Sugerencia para la -c: +# comprueba si los ficheros ya están ordenados, pero no los ordena. +# Si lo que buscas es algo corto, sugiero cambiar "y no ordena" +# por "pero no ordena", o bien "sin ordenar[los]". sv+ +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" +"Otras opciones:\n" +"\n" +" -c, --check comprueba si la entrada están ordenada; no ordena\n" +" -k, --key=POS1[,POS2] comienza una clave en POS1 y la termina en POS2\n" +" (origen 1)\n" +" -m, --merge mezcla ficheros que ya están ordenados, no ordena\n" +" -o, --output=FICHERO escribe el resultado en FICHERO, en lugar de la\n" +" salida estándar\n" +" -s, --stable estabiliza la ordenación desactivando la\n" +" comparación de último recurso\n" +" -S, --buffer-size=TAMAÑO utiliza TAMAÑO para el búfer de memoria " +"principal\n" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" +" -t, --field-separator=SEP usa SEP en lugar de la transición a\n" +" un no espacio\n" +" -T, --temporary-directory=DIR usa DIR para los ficheros temporales,\n" +" no $TMPDIR ni %s\n" +" -u, --unique con -c, comprueba estrictamente el orden\n" +" en otro caso; muestra solamente la primera de\n" +" una tanda igual\n" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" +" -z, --zero-terminated termina las líneas con el byte 0, no con nueva " +"línea\n" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" +"\n" +"POS es F[.C][OPCIONES], donde F es el número de campo y C la posición del\n" +"carácter en el campo. OPCIONES se compone de una o más de las opciones de\n" +"ordenación de una letra, lo cual deshabilita las opciones de ordenación\n" +"global para esa clave. Si no se da ninguna clave, usa la línea entera\n" +"como clave.\n" +"\n" +"TAMAÑO puede estar seguido por lo siguientes sufijos multiplicativos:\n" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" +"% 1% de memoria, b 1, K 1024 (predeterminado), etc con M, G, T, P, E, Z, Y.\n" +"\n" +"Si no se especifica ningún FICHERO o FICHERO es `-', lee la entrada\n" +"estándar.\n" +"\n" +"*** ATENCIÓN ***\n" +"El locale especificado en el entorno afecta a la forma de ordenación.\n" +"Establezca LC_ALL=C para obtener la forma de ordenación tradicional que\n" +"utiliza los valores de los bytes originales.\n" + +#: src/sort.c:444 +msgid "cannot create temporary file" +msgstr "no se puede crear un fichero temporal" + +#: src/sort.c:467 +msgid "open failed" +msgstr "fallo al abrir" + +#: src/sort.c:487 src/sort.c:2496 +msgid "close failed" +msgstr "error al cerrar" + +#: src/sort.c:495 +msgid "write failed" +msgstr "error al escribir" + +# ¿Es esto correcto? ¿Qué significa? +#: src/sort.c:641 +msgid "sort size" +msgstr "tamaño de la ordenación" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "fallo en `stat'" + +#: src/sort.c:972 +msgid "read failed" +msgstr "fallo al leer" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "%s: %s:%s: fuera de secuencia: " + +#: src/sort.c:1574 +msgid "standard error" +msgstr "salida de error estándar" + +#: src/sort.c:2032 +#, c-format +msgid "%s: invalid field specification `%s'" +msgstr "%s: especificación de campo inválida `%s'" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "%s: contador `%.*s' demasiado grande" + +#: src/sort.c:2064 +#, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "%s: contador inválido al comienzo de `%s'" + +#: src/sort.c:2298 +msgid "invalid number after `-'" +msgstr "número inválido después de`-'" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +msgid "invalid number after `.'" +msgstr "número inválido después de `.'" + +# No estoy muy seguro. Comprobar. +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "carácter extraño en el especificador de campo" + +#: src/sort.c:2338 +msgid "invalid number at field start" +msgstr "número inválido al comienzo del campo" + +#: src/sort.c:2342 src/sort.c:2370 +msgid "field number is zero" +msgstr "el número de campo es cero" + +#: src/sort.c:2351 +msgid "character offset is zero" +msgstr "el desplazamiento de caracteres es cero" + +#: src/sort.c:2366 +msgid "invalid number after `,'" +msgstr "número inválido después de `,'" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "tab multicarácter `%s'" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "el operando extra `%s' no está permitido con -c" + +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "Modo de empleo: %s [OPCIÓN] [FICHERO [PREFIJO]]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" +"Corta FICHERO en trozos de tamaño fijo y los vuelca en PREFIJOaa, " +"PREFIJOab...\n" +"El prefijo por defecto es `x'. Si no se especifica FICHERO, o fichero es " +"`-',\n" +"lee la entrada estándar.\n" +"\n" + +# FIXME: ¿Ahora dos espacios es el estándar para mensajes de continuación? +# (before each output file...) +#: src/split.c:108 +#, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" +" -a, --suffix-length=N utiliza sufijos de longitud N (por omisión %d)\n" +" -b, --bytes=BYTES escribe BYTES bytes en cada fichero de salida\n" +" -C, --line-bytes=BYTES escribe un máximo de BYTES bytes sin cortar " +"líneas\n" +" -l, --lines=NÚMERO pone NÚMERO de líneas en cada fichero de salida\n" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" +" --verbose muestra un diagnóstico en la salida de error\n" +" estándar antes de que cada fichero sea abierto\n" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "Se han agotado los sufijos para los ficheros de salida" + +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "creando fichero `%s'\n" + +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "no se puede trocear de varias formas distintas" + +#: src/split.c:394 +#, c-format +msgid "%s: invalid suffix length" +msgstr "%s: longitud del sufijo inválida" + +#: src/split.c:408 src/split.c:434 +#, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: número de bytes inválido" + +#: src/split.c:421 +#, c-format +msgid "%s: invalid number of lines" +msgstr "%s: número de líneas inválido" + +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "la opción `-%d' está obsoleta; utilice `-l %d'" + +#: src/split.c:483 +msgid "invalid number" +msgstr "número inválido" + +#: src/stat.c:326 +msgid "*** invalid date/time ***" +msgstr "*** fecha/hora inválida ***" + +#: src/stat.c:608 +#, c-format +msgid "cannot read file system information for %s" +msgstr "no se puede leer la información del sistema de ficheros para %s" + +#: src/stat.c:684 +#, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "Modo de empleo: %s [OPCIÓN] FICHERO...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" +"Muestra el estado del fichero o del sistema de ficheros.\n" +"\n" +" -f, --filesystem muestra el estado del sistema de ficheros en lugar " +"del\n" +" estado del fichero\n" +" -c --format=FORMATO utiliza el FORMATO especificado en lugar del\n" +" predeterminado\n" +" -L, --dereference sigue los enlaces\n" +" -t, --terse muestra la información de manera escueta\n" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" +"\n" +"Formatos válidos para ficheros (sin --filesystem)\n" +"\n" +" %A Derechos de acceso en forma legible\n" +" %a Derechos de acceso en octal\n" +" %B El tamaño en bytes de cada bloque indicado por `%b'\n" +" %b Número de bloques asignados (véase %B)\n" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" +" %D Número de dispositivo en hexadecimal\n" +" %d Número de dispositivo en decimal\n" +" %F Tipo de fichero\n" +" %f Modo en hexadecimal\n" +" %G Nombre de grupo del propietario\n" +" %g ID del grupo del propietario\n" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" +" %h Número de enlaces duros\n" +" %i Número de nodo-i\n" +" %N Nombre de fichero entrecomillado desreferenciado si era un enlace\n" +" simbólico\n" +" %n Nombre del fichero\n" +" %o tamaño del bloque de E/S\n" +" %s Tamaño total, en bytes\n" +" %T Tipo de dispositivo secundario en hexadecimal\n" +" %t Tipo de dispositivo principal en hexadecimal\n" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" +" %U Nombre de usuario del propietario\n" +" %u ID de usuario del propietario\n" +" %X Fecha de último acceso como segundos desde la Época\n" +" %x Fecha de último acceso\n" +" %Y Fecha de última modificación como segundos desde la Época\n" +" %y Fecha de última modificación\n" +" %Z Fecha de último cambio como segundos desde la Época\n" +" %z Fecha de último cambio\n" +"\n" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" +"Formatos válidos para sistemas de ficheros:\n" +"\n" +" %a Bloques libres disponibles para el no superusuario\n" +" %b Total de bloques de datos en el sistema de ficheros\n" +" %c Total de nodos de ficheros en el sistema de ficheros\n" +" %d Nodos de ficheros libres en el sistema de ficheros\n" +" %f Bloques libres en el sistema de ficheros\n" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" +" %i id del sistema de ficheros en hexadecimal\n" +" %l Longitud máxima de los nombres de ficheros\n" +" %n Nombre del fichero\n" +" %s Tamaño de bloque de transferencia óptima\n" +" %T Tipo de forma legible\n" +" %t Tipo en hexadecimal\n" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" +"Modo de empleo: %s [-F DISPOSITIVO] [--file=DISPOSITIVO] [OPCIONES]...\n" +" o bien: %s [-F DISPOSITIVO] [--file=DISPOSITIVO] [-a|--all]\n" +" o bien: %s [-F DISPOSITIVO] [--file=DISPOSITIVO] [-g|--save]\n" + +# Eso de los "humanos" en español suena un poco raro. ¿no? sv +# Por acuerdo, usamos 'el' terminal em+ +# Añado comillas en '-' em+ +# FIXME. Comunicar primero al autor. sv+ +# Sistema subyacente ?? , mejor dejar 'sistema' a secas em+ +# Depende, ¿qué ocurre con los compiladores cruzados? +#: src/stty.c:504 +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" +"Muestra o establece las características de la terminal\n" +"\n" +" -a, --all muestra todos los valores actuales en forma legible para\n" +" humanos\n" +" -g, --save muestra todos los valores actuales en forma legible para\n" +" ttys\n" +" -F, --file=DISP abre y utiliza el DISPositivo especificado en lugar de la\n" +" entrada estándar\n" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" +"\n" +"Un - opcional antes de VALOR indica negación. Un * marca valores no POSIX.\n" +"El sistema subyacente define qué valores están disponibles.\n" + +# Contexto del shell ? , ¿qué es eso? em+ +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" +"\n" +"Caracteres especiales:\n" +" * dsusp CAR el CARácter enviará una señal de alto a la terminal una " +"vez\n" +" que se haya limpiado la entrada\n" +" eof CAR el CARácter enviará un fin de línea (termina la entrada)\n" +" eol CAR el CARácter terminará la línea\n" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" +" * eol2 CAR CARácter alternativo para terminar la línea\n" +" erase CAR el CARácter borrará el último carácter tecleado\n" +" intr CAR el CARácter enviará una señal de interrupción\n" +" kill CAR el CARácter borrará la línea actual\n" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" +" * lnext CAR el CARácter introducirá el siguiente carácter comentado\n" +" quit CAR el CARácter enviará una señal de salida\n" +" * rprnt CAR el CARácter redibujará la línea actual\n" +" start CAR el CARácter reiniciará la salida después de haberla " +"detenido\n" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" +" stop CAR el CARácter detendrá la salida\n" +" susp CAR el CARácter enviará una señal de alto a la terminal\n" +" * swtch CAR el CARácter establecerá un contexto diferente de shell\n" +" * werase CAR el CARácter borrará la última palabra tecleada\n" + +# FIXME: Falta un espacio ¿? +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" +"\n" +"Valores especiales:\n" +" N establece la velocidad de entrada y salida a N baudios\n" +" * cols N dice al núcleo que la terminal tiene N columnas\n" +" * columns N igual que cols N\n" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" +" ispeed N establece la velocidad de entrada a N\n" +" * line N utiliza la disciplina de línea N\n" +" min N con -icanon, establece a N caracteres como mínimo para una\n" +" lectura completada\n" +" ospeed N establece la velocidad de salida a N\n" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" +" * rows N dice al núcleo que la terminal tiene N líneas\n" +" * size muestra el número de líneas y columnas de acuerdo con el " +"núcleo\n" +" speed muestra la velocidad de la terminal\n" +" time N con -icanon, establece el tiempo fuera de lectura en N\n" +" décimas de segundo\n" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" +"\n" +"Valores de control:\n" +" [-]clocal desactiva las señales de control del módem\n" +" [-]cread permite que se reciba entrada\n" +" * [-]crtscts permite negociación RTS/CTS\n" +" csN establece el tamaño del carácter en N bits, N en [5..8]\n" + +# ## en -cread -> permite que se reciba entrada +# ## vale. +#: src/stty.c:570 +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" +" [-]cstopb utiliza dos bits de paro por carácter (uno con `-')\n" +" [-]hup manda una señal de colgar cuando el último proceso cierra\n" +" la tty\n" +" [-]hupcl igual que [-]hup\n" +" [-]parenb genera un bit de paridad en la salida y espera un bit de\n" +" paridad en la entrada\n" +" [-]parodd establece paridad impar (incluso con `-')\n" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" +"\n" +"Valores de entrada:\n" +" [-]brkint `breaks' causan una señal de interrupción\n" +" [-]icrnl traduce el retorno de carro a nueva línea\n" +" [-]ignbrk descarta los caracteres de `break'\n" +" [-]igncr descarta los retornos de carro\n" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" +" [-]ignpar descarta los caracteres con error de paridad\n" +" * [-]imaxbel emite un pitido y no limpia un búfer de entrada lleno con " +"un\n" +" carácter\n" +" [-]inlcr traduce nueva línea a retorno de carro\n" +" [-]inpck permite la revisión de paridad de entrada\n" +" [-]istrip borra el bit alto (8º) de los caracteres de entrada\n" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" +" * [-]iuclc traduce de caracteres en mayúscula a minúscula\n" +" * [-]ixany deja que cualquier carácter reinicie la entrada, no sólo\n" +" el carácter de inicio\n" +" [-]ixoff permite el envío de caracteres de inicio/alto\n" +" [-]ixon permite el control de flujo XON/XOFF\n" +" [-]parmrk marca errores de paridad (con la secuencia de caracteres " +"255-0)\n" +" [-]tandem igual que [-]ixoff\n" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" +"\n" +"Valores de salida:\n" +" * bsN estilo de retardo de retroceso, N en [0..1]\n" +" * crN estilo de retardo de retorno de carro, N en [0..3]\n" +" * ffN estilo de retardo de salto de página, N en [0..1]\n" +" * nlN estilo de retardo de nueva línea, N in [0..1]\n" + +#: src/stty.c:608 +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" +" * [-]ocrnl traduce retorno de carro a nueva línea\n" +" * [-]ofdel utiliza caracteres de borrado para relleno en lugar de\n" +" caracteres nulos\n" +" * [-]ofill utiliza caracteres de relleno en lugar de tiempo para " +"retardos\n" +" * [-]olcuc traduce caracteres en minúscula a mayúscula\n" +" * [-]onlcr traduce nueva línea a retorno de carro-nueva línea\n" +" * [-]onlret nueva línea realiza un retorno de carro\n" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" +" * [-]onocr no muestra retornos de carro en la primera columna\n" +" [-]opost postprocesa salida\n" +" * tabN estilo de retardo de tabulador horizontal, N en [0..3]\n" +" * tabs igual que tab0\n" +" * -tabs igual que tab3\n" +" * vtN estilo de retardo de tabulador vertical, N en [0..1]\n" + +# lo del carácter de matar es un poco fuerte, ¿no? sv +# echo = muestra, mejor que repite, aquí, creo. gerardo +# perdería parte del significado. sv +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" +"\n" +"Valores locales:\n" +" [-]crterase repite los caracteres de borrado como\n" +" retroceso-espacio-retroceso\n" +" * crtkill mata toda la línea obedeciendo los valores echoprt y echoe\n" +" * -crtkill mata toda la línea obedeciendo los valores echoctl y echok\n" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" +" * [-]ctlecho repite los caracteres de control en notación gorro (`^c')\n" +" [-]echo repite los caracteres de entrada\n" +" * [-]echoctl igual que [-]ctlecho\n" +" [-]echoe igual que [-]crterase\n" +" [-]echok repite una nueva línea después de un carácter de matar\n" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" +" * [-]echoke igual que [-]crtkill\n" +" [-]echonl repite nueva línea aún si no está repitiendo otros " +"caracteres\n" +" * [-]echoprt repite los caracteres borrados en orden inverso, entre\n" +" `\\' y '/'\n" +" [-]icanon permite los caracteres especiales erase, kill, werase,\n" +" y rprnt\n" +" [-]iexten permite caracteres especiales no-POSIX\n" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" +" [-]isig permite los caracteres especiales interrupt, quit, y " +"suspend\n" +" [-]noflsh no permite limpieza después de los caracteres especiales\n" +" interrupt y quit\n" +" * [-]prterase igual que [-]echoprt\n" +" * [-]tostop detiene trabajos en `background' que tratan de escribir a\n" +" la terminal\n" +" * [-]xcase con icanon, escapa con `\\' para caracteres en mayúscula\n" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" +"\n" +"Valores de combinación:\n" +" * [-]LCASE igual que [-]lcase\n" +" cbreak igual que -icanon\n" +" -cbreak igual que icanon\n" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" +" cooked igual que caracteres brkint ignpar istrip icrnl ixon\n" +" opost isig icanon, eof y eol a sus valores por omisión\n" +" -cooked igual que raw\n" +" crt igual que echoe echoctl echoke\n" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" +" dec igual que echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq igual que [-]ixany\n" +" ek caracteres erase y kill a sus valores por omisión\n" +" evenp igual que parenb -parodd cs7\n" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" +" -evenp igual que -parenb cs8\n" +" * [-]lcase igual que xcase iuclc olcuc\n" +" litout igual que -parenb -istrip -opost cs8\n" +" -litout igual que parenb istrip opost cs7\n" +" nl igual que -icrnl -onlcr\n" +" -nl igual que icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" +" oddp igual que parenb parodd cs7\n" +" -oddp igual que -parenb cs8\n" +" [-]parity igual que [-]evenp\n" +" pass8 igual que -parenb -istrip cs8\n" +" -pass8 igual que parenb istrip cs7\n" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" +" raw igual que -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw igual que cooked\n" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" +" sane igual que cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, y todos los\n" +" caracteres especiales a sus valores por omisión.\n" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" +"\n" +"Maneja la línea tty conectada a la entrada estándar. Sin argumentos,\n" +"muestra la tasa de baudios, la disciplina de línea, y desviaciones con\n" +"respecto de `stty sane'. En valores, el CARácter es tomado literalmente,\n" +"o codificado como en ^c, 0x37, 0177 ó 127; los valores especiales ^- o\n" +"undef son utilizados para no permitir caracteres especiales.\n" + +#: src/stty.c:787 +msgid "only one device may be specified" +msgstr "sólo se puede especificar un dispositivo" + +#: src/stty.c:882 +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "" +"las opciones para estilos de salida explícitos y legibles para terminal son\n" +"mutuamente excluyentes" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "" +"cuando se especifica un estilo de salida, no se pueden establecer los modos" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "%s: no se pudo reiniciar el modo `non-blocking'" + +#: src/stty.c:957 src/stty.c:1064 +#, c-format +msgid "invalid argument `%s'" +msgstr "argumento inválido `%s'" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, c-format +msgid "missing argument to `%s'" +msgstr "falta el argumento de `%s'" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "%s: no se pudieron realizar todas las operaciones solicitadas" + +# Me temo que new_mode no se puede traducir. sv +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "new_mode: modo\n" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "%s: no hay información sobre tamaño para este dispositivo" + +#: src/stty.c:1944 +#, c-format +msgid "invalid integer argument `%s'" +msgstr "argumento entero inválido `%s'" + +#: src/su.c:289 +msgid "Password:" +msgstr "Contraseña:" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "getpass: no se puede abrir /dev/tty" + +# Aquí habla de "groups", en plural. No se pueden establecer los +# grupos. gerardo +# Cierto, eso es literalmente, pero: ¿"su" puede cambiar a varios grupos +# o a uno cada vez? sv +#: src/su.c:350 +msgid "cannot set groups" +msgstr "no se puede establecer el grupo" + +#: src/su.c:354 +msgid "cannot set group id" +msgstr "no se puede establecer el id del grupo" + +#: src/su.c:356 +msgid "cannot set user id" +msgstr "no se puede establecer el id del usuario" + +#: src/su.c:437 +#, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "Modo de empleo: %s [OPCIÓN]... [-] [USUARIO [ARG]...]\n" + +# login shell no lo traduciría em+ +# Caparazón de entrada. Bueno, vale, `shell' de entrada. gerardo +# Si acaso shell de inicio. Pero sólo si acaso. sv +#: src/su.c:438 +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" +"Cambia el identificador efectivo de usuario y de grupo al del USUARIO.\n" +"\n" +" -, -l, --login hace al shell un shell de `login'\n" +" -c, --command=ORDEN pasa una sola ORDEN al shell con -c\n" +" -f, --fast pasa -f al shell (para csh o tcsh)\n" +" -m, --preserve-environment no borra las variables de entorno\n" +" -p igual que -m\n" +" -s, --shell=SHELL ejecuta SHELL si /etc/shells lo permite\n" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" +"\n" +"Un simple - implica -l. Si no se da el USUARIO, se supone root.\n" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "el usuario %s no existe" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "contraseña incorrecta" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "usando el shell restringido %s" + +#: src/su.c:580 +#, c-format +msgid "warning: cannot change directory to %s" +msgstr "atención: no se puede cambiar al directorio %s" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "Kayvan Aghaiepour y David MacKenzie" + +# usa bloques -> con bloques ... así no se repite tanto :) ipg +# Creo que está bien así em+ +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" +"Muestra la suma de comprobación y el número de bloques para cada FICHERO.\n" +"\n" +" -r incompatible con -s, usa el algoritmo de BSD, con bloques de " +"1K\n" +" -s, --sysv usa el algoritmo de System V, con bloques de 512 bytes\n" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" +"Guarda los bloques cambiados en el disco, actualiza el superbloque.\n" +"\n" + +#: src/sync.c:70 src/tty.c:112 +msgid "ignoring all arguments" +msgstr "no se tendrá en cuenta ningún argumento" + +# ¿Qué tal poner --help y --version como los puse yo en diff y find? +# --help Muestra esta ayuda., +# -v --version Da información sobre la versión del programa. +# Lo digo por aquello que hablamos que el `y finaliza' sobra, ya +# que es el comportamiento que se define. ipg +# +# Vale, si convences a Enrique... sv +# +# Apúntame a la propuesta. tb +# +# Pues entonces ya somos tres. Habría que hablarlo seriamente... sv +# +# Aunque ya lo hemos puesto así en todos sitios ... casi podríamos +# dejarlo (daño no hace, eso sí es verdad) ipg +# +# Lo dejaremos para otra ocasión. Ya os avisaré. sv +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr " --help muestra esta ayuda y finaliza\n" + +#: src/sys2.h:494 +msgid " --version output version information and exit\n" +msgstr " --version informa de la versión y finaliza\n" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "Jay Lepreau y David MacKenzie" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Escribe cada FICHERO en la salida estándar comenzando por la última línea\n" +"Si no se especifica FICHERO o FICHERO es `-', lee la entrada estándar.\n" +"\n" + +#: src/tac.c:139 +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" +" -b, --before añade el separador antes de cada línea, en lugar\n" +" de añadirlo después\n" +" -r, --regex interpreta el separador como una expresión " +"regular\n" +" -s, --separator=CADENA usa CADENA como separador, en lugar de un salto " +"de\n" +" línea\n" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "stdin: error de lectura" + +# "la cadena" ¿de dónde sale eso? sv +# Bueno, siempre he traducido array por cadena, cuando +# he tenido que hacerlo. Lo siento +# ¿Qué pongo? ¿secuencia de caracteres nula? em+ +# ¿Y "el separador no puede ser vacío"? sv +# La única cosa que es vacía de la que he oido hablar es el famoso +# conjunto ese. Las demás cosas o están vacías o no están, pero +# no 'son' vacías em +# Yo pondría `el separador no puede ser nulo'. No es muy ortodoxo, +# pero no queda mal. ipg +# Por mí de acuerdo, lo cambio em +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "el separador no puede ser nulo" + +#: src/tail.c:49 +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "Paul Rubin, David MacKenzie, Ian Lance Taylor, y Jim Meyering" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Muestra las últimas %d líneas de cada FICHERO en la salida estándar.\n" +"Con más de un FICHERO, precede a cada grupo de líneas con una cabecera.\n" +"Si no se especifica FICHERO o FICHERO es `-', lee la entrada estándar.\n" +"\n" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" +" --retry sigue intentando abrir un fichero incluso si es\n" +" inaccesible cuando tail comienza o si se " +"vuelve\n" +" inaccesible más tarde -- útil solamente con -f\n" +" -c, --bytes=N muestra los últimos N bytes\n" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" +" -f, --follow[={name|descriptor}] muestra a medida que el fichero crece;\n" +" -f, --follow, y --follow=descriptor son\n" +" equivalentes\n" +" -F lo mismo que --follow=name --retry\n" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" +" -n, --lines muestra las últimas N líneas en lugar de %d\n" +" --max-unchanged-stats=N\n" +" con --follow=name, reabre un FICHERO que no ha\n" +" cambiado de tamaño después de N (por omisión %d)\n" +" iteraciones, para ver si ha sido borrado o\n" +" renombrado (este es el caso usual para ficheros\n" +" de registro que rotan)\n" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" +" --pid=PID con -f, termina después de que el ID del " +"proceso,\n" +" PID, muere\n" +" -q, --quiet, --silent no presenta cabeceras para cada fichero\n" +" -s, --sleep-interval=S con -f, espera aproximadamente S segundos entre\n" +" iteraciones (por omisión 1.0)\n" +" -v, --verbose presenta siempre las cabeceras para cada fichero\n" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" +"\n" +"Si el primer carácter de N (el número de bytes o líneas) es un `+',\n" +"comienza a mostrar en el elemento N-ésimo contando desde el principio\n" +"de cada fichero, en otro caso, muestra los últimos N elementos del\n" +"fichero. N puede tener diferentes sufijos que indican un factor:\n" +"b para 512, k para 1024, m para 1048576 (1 Mega).\n" +"\n" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" +"Con --follow (-f), tail de forma predeterminada seguirá el descriptor del\n" +"fichero, lo que significa que si se renombra un fichero al que se le hace " +"tail\n" +"tail continuará siguiendo su final. " + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" +"Este comportamiento predeterminado no es\n" +"deseable cuando lo que de verdad quiere seguir es el nombre real del " +"fichero,\n" +"no el descriptor del fichero (p.ej: rotación de ficheros de registro). " +"Utilice\n" +"--follow=nombre en tal caso. Esto hace que tail siga el fichero mencionado\n" +"reabriéndolo periódicamente para ver si ha sido borrado o recreado por " +"algún\n" +"otro programa.\n" + +# df=descriptor de fichero, por supuesto... sv +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "cerrando %s (df=%d)" + +#: src/tail.c:391 +#, c-format +msgid "%s: cannot seek to offset %s" +msgstr "%s: no se puede desplazar a la posición %s" + +#: src/tail.c:395 +#, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "%s: no se puede desplazar a la posición relativa %s" + +#: src/tail.c:400 +#, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "%s: no se puede desplazar a la posición relativa al final %s" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "`%s' se ha vuelto inaccesible" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "" +"`%s' ha sido reemplazado por un fichero al que no se le puede hacer tail;\n" +"abandono con este nombre" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "`%s' se ha vuelto accesible" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "`%s' ha aparecido; siguiendo el final del nuevo fichero" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "`%s' ha sido reemplazado; siguiendo el final del nuevo fichero" + +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "%s: fichero truncado" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "no queda ningún fichero" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "" +"%s: no se puede seguir el final de este tipo de fichero; abandono\n" +"con este nombre" + +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "%c: el sufijo es inválido en una opción obsoleta" + +# FIXME: Es muy raro que después de ; se use mayúscula. +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"demasiados argumentos; Cuando se utiliza la opción de sintaxis obsoleta de\n" +"tail (%s) no puede haber más de un fichero como argumento. Utilice la " +"opción\n" +"equivalente -n ó -c en su lugar." + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"Atención: no es transportable usar dos o más ficheros como argumentos con " +"la\n" +"opción de sintaxis obsoleta (%s). Utilice la opción equivalente -n ó -c\n" +"en su lugar." + +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "la opción `%s' está obsoleta; utilice `%s-%c %.*s'" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "%s es más grande que el tamaño máximo de fichero para este sistema" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "%s: número máximo de stats entre aperturas inválido" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "%s: número máximo de cambios de tamaño consecutivos inválido" + +#: src/tail.c:1534 +#, c-format +msgid "%s: invalid PID" +msgstr "%s: PID inválido" + +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: número de segundos inválido" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "atención: --retry solamente es útil cuando se sigue por nombre" + +# FIXME: "when following"? when following by what? sv +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "atención: PID descartado; --pid=PID solamente es útil cuando se sigue" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "atención: no se admite --pid=PID en este sistema" + +#: src/tee.c:33 +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "Mike Parker, Richard M. Stallman, y David MacKenzie" + +#: src/tee.c:64 +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" +"Copia la entrada estándar a cada FICHERO, y también a salida estándar.\n" +"\n" +" -a, --append añade a los FICHEROs dados, no los sobreescribe\n" +" -i, --ignore-interrupts no hace caso a las señales de interrupción\n" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "se esperaba un argumento\n" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "se esperaba una expresión entera %s\n" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "se esperaba ')'\n" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "se esperaba ')', se encontró %s\n" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "%s: se esperaba un operador unario\n" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "%s: se esperaba un operador binario\n" + +#: src/test.c:424 +msgid "before -lt" +msgstr "antes de -lt" + +#: src/test.c:432 +msgid "after -lt" +msgstr "después de -lt" + +#: src/test.c:446 +msgid "before -le" +msgstr "antes de -le" + +#: src/test.c:453 +msgid "after -le" +msgstr "después de -le" + +#: src/test.c:469 +msgid "before -gt" +msgstr "antes de -gt" + +#: src/test.c:476 +msgid "after -gt" +msgstr "después de -gt" + +#: src/test.c:490 +msgid "before -ge" +msgstr "antes de -ge" + +#: src/test.c:497 +msgid "after -ge" +msgstr "después de -ge" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "-nt no acepta -l\n" + +#: src/test.c:526 +msgid "before -ne" +msgstr "antes de -ne" + +#: src/test.c:533 +msgid "after -ne" +msgstr "después de -ne" + +#: src/test.c:549 +msgid "before -eq" +msgstr "antes de -eq" + +#: src/test.c:556 +msgid "after -eq" +msgstr "después de -eq" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "-ef no acepta -l\n" + +#: src/test.c:586 +msgid "-ot does not accept -l\n" +msgstr "-ot no acepta -l\n" + +#: src/test.c:593 +msgid "unknown binary operator" +msgstr "operador binario desconocido" + +#: src/test.c:781 +msgid "after -t" +msgstr "después de -t" + +#: src/test.c:979 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"Modo de empleo: %s EXPRESIÓN\n" +" o bien: [ EXPRESIÓN ]\n" +" o bien: %s OPCIÓN\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" +"Termina con el estado determinado por EXPRESIÓN.\n" +"\n" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" +"\n" +"La EXPRESIÓN es verdadera o falsa y determina el estado de salida. Es una " +"de:\n" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" +"\n" +" ( EXPRESIÓN ) la EXPRESIÓN es verdadera\n" +" ! EXPRESIÓN la EXPRESIÓN es falsa\n" +" EXPRESIÓN1 -a EXPRESIÓN2 la EXPRESIÓN1 y la EXPRESIÓN2 son verdaderas\n" +" EXPRESIÓN1 -o EXPRESIÓN2 la EXPRESIÓN1 o la EXPRESIÓN2 es verdadera\n" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" +"\n" +" [-n] CADENA la longitud de la CADENA es distinta de cero\n" +" -z CADENA la longitud de la CADENA es igual a cero\n" +" CADENA1 = CADENA2 las cadenas son iguales\n" +" CADENA1 != CADENA2 las cadenas no son iguales\n" + +#: src/test.c:1009 +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" +"\n" +" ENTERO1 -eq ENTERO2 el ENTERO1 es igual a ENTERO2\n" +" ENTERO1 -ge ENTERO2 el ENTERO1 es mayor o igual que ENTERO2\n" +" ENTERO1 -gt ENTERO2 el ENTERO1 es mayor que ENTERO2\n" +" ENTERO1 -le ENTERO2 el ENTERO1 es menor o igual que ENTERO2\n" +" ENTERO1 -lt ENTERO2 el ENTERO1 es menor que ENTERO2\n" +" ENTERO1 -ne ENTERO2 el ENTERO1 no es igual a ENTERO2\n" + +# named pipe -> no lo traduciría em+ +# Yo sí, pero pongo named pipe entre paréntesis. sv+ +# mayor a -> mayor 'que' em+ +# nodo-i -> nodo-í (con acento, porque es de índice) gerardo +# No, es el i que se pone por ejemplo en $a_i$ (para que me entiendas :-) +# ¿Tú crees? Yo diría que "inode numbers" es "números de +# nodo-índice", o "número-í". gerardo +# +# Además en el Kernighan y Ritchie viene nodo-i. +# Bueno... y "ligar", y "header", y... (malditas traducciones) +# +# La letra "i" se utiliza muchísimo como índice (soy matemático). +# Pero jamás la he visto acentuada por ese motivo yendo sola. +# +# bit sticky -> bit pegajoso (sugerencia: gerardo) +# Esto es demasiado fuerte... sv +# +# Ouh yeahh!! ¿Y por qué no? Es un juego de palabras entre "S(ave) T(ext) +# I(mage)"-cky y la palabra "pegajoso", pues el código se queda +# "pegado" en la memoria. (O se quedaba, hoy día esto no vale para +# nada.) Iron Maiden +# +# ¡Al fin, alguien me lo explica! No está nada mal. +# Entonces ¿se podría decir el "bit STI"? +# Ya sabes que cuando uno intenta traducir un juego de palabras, lo que +# suele suceder es que se lo carga (o bien traduce solamente el juego +# de palabras perdiendo su verdadero significado). +# +# En cambio sí traducís el bit SUID/SGID +# por-una-cosa-muy-larga. Sugiero dejar las siglas SUID o SGID. gerardo +# ¿Quieres decir que propones traducir "set-group-ID" por "SGID"? +# Esto me parecería una buena solución. +# +# socket = enchufe. gerardo +# Este también es un poco fuerte. ¿Conoces a alguien (además de a tí mismo) +# que utilice este término y se quede tan ancho? +# ¿Por qué enchufe y no (por ejemplo) conector? sv +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" +"\n" +" FICHERO1 -ef FICHERO2 el FICHERO1 y FICHERO2 tienen los mismos números " +"de\n" +" dispositivo y de nodo-i\n" +" FICHERO1 -nt FICHERO2 el FICHERO1 es más moderno (fecha de " +"modificación)\n" +" que FICHERO2\n" +" FICHERO1 -ot FICHERO2 el FICHERO1 es más antiguo que FICHERO2\n" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" +"\n" +" -b FICHERO el FICHERO existe y es un fichero especial de bloques\n" +" -c FICHERO el FICHERO existe y es un fichero especial de caracteres\n" +" -d FICHERO el FICHERO existe y es un directorio\n" +" -e FICHERO el FICHERO existe\n" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" +" -f FICHERO el FICHERO existe y es un fichero regular\n" +" -g FICHERO el FICHERO existe y tiene cambio-de-ID-de-grupo\n" +" -G FICHERO el FICHERO existe y su propietario es el ID efectivo de grupo\n" +" -k FICHERO el FICHERO existe y tiene activo su bit `sticky'\n" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" +" -L FICHERO el FICHERO existe y es un enlace simbólico\n" +" -O FICHERO el FICHERO existe y su propietario es el ID efectivo de " +"usuario\n" +" -p FICHERO el FICHERO existe y es una tubería nombrada (named pipe)\n" +" -r FICHERO el FICHERO existe y puede leerse\n" +" -s FICHERO el FICHERO existe y tiene un tamaño mayor a cero\n" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" +" -S FICHERO el FICHERO existe y es un `socket'\n" +" -t [DA] el descriptor de fichero DA (salida estándar por omisión)\n" +" está abierto en una terminal\n" +" -u FICHERO el FICHERO existe y su bit de cambio-de-ID-de-usuario está " +"activo\n" +" -w FICHERO el FICHERO existe y puede escribirse\n" +" -x FICHERO el FICHERO existe y puede ejecutarse\n" + +# No me acaba de gustar el "Advierta". Se admiten sugerencias. +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" +"\n" +"Advierta que los paréntesis deben ser precedidos por caracteres de escape\n" +"(p.e. barras invertidas) para los shells.\n" +"ENTERO también puede ser -l CADENA, que evalúa la longitud de la CADENA.\n" + +# Ni idea de lo que puede ser. Esperemos que el autor lo corrija y +# entonces lo traduciremos convenientemente :-) +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "FIXME: ksb y mjb" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "falta un `]'\n" + +#: src/test.c:1125 +msgid "too many arguments\n" +msgstr "demasiados argumentos\n" + +#: src/touch.c:39 +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, y Randy Smith" + +#: src/touch.c:164 src/touch.c:179 +#, c-format +msgid "creating %s" +msgstr "creando %s" + +#: src/touch.c:222 +#, c-format +msgid "cannot touch %s" +msgstr "no se puede efectuar `touch' sobre %s" + +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "estableciendo la fecha de %s" + +# En este texto de ayuda, para no estar repitiendo siempre "fecha/hora", he +# decidido llamar simplemente "fecha" a la "combinación de la fecha y la hora". +# (o sea, "time stamp" -> fecha) +# Por el contexto, no creo que haya confusión. +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" +"Actualiza la fecha de acceso y modificación de cada FICHERO a la\n" +"fecha actual.\n" +"\n" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" +" -a cambia solamente la fecha de acceso\n" +" -c, --no-create no crea ningún fichero\n" +" -d, --date=CADENA examina y utiliza CADENA en lugar de la fecha " +"actual\n" +" -f (no tiene efecto)\n" +" -m cambia solamente la fecha de modificación\n" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" +" -r, --reference=FICHERO utiliza la fecha de este FICHERO en lugar de la " +"fecha\n" +" actual\n" +" -t FECHA utiliza [[SS]AA]MMDDhhmm[.ss] en lugar de la " +"fecha\n" +" actual\n" +" --time=PALABRA establece la fecha dada por PALABRA:\n" +" access atime use (lo mismo que -a)\n" +" modify mtime (lo mismo que -m)\n" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" +"\n" +"Tenga en cuenta que las opciones -d y -t aceptan formatos de\n" +"hora-fecha distintos.\n" + +#: src/touch.c:311 src/touch.c:331 +#, c-format +msgid "invalid date format %s" +msgstr "formato de fecha inválido %s" + +# (em) Nota: Este mensaje sale, por ejemplo, al escribir +# "touch logo -r . -t 10101010". +#: src/touch.c:355 +msgid "cannot specify times from more than one source" +msgstr "no se puede especificar la fecha de dos formas distintas" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "" +"atención `touch %s' está obsoleto, use `touch -t %04d%02d%02d%02d%02d.%02d'" + +# Esto salió parecido en wdiff y hubo que pensarlo bastante... +# +# A mí me parece más que correcto, otra opción, aunque a mí no me gustan más: +# "faltan ficheros como argumentos" -> no claro +# "faltan argumentos de tipo fichero/FICHERO" uac +# +# Creo que exactamente esas dos posibilidades aparecen +# en wdiff como "finalistas" :-) sv +# +#: src/touch.c:399 +msgid "file arguments missing" +msgstr "faltan argumentos (ficheros)" + +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "Modo de empleo: %s [OPCIÓN]... CONJUNTO1 [CONJUNTO2]\n" + +#: src/tr.c:331 +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" +"Traduce, comprime y/o borra caracteres de la entrada estándar, escribiendo\n" +"el resultado en la salida estándar.\n" +"\n" +" -c, --complement opera sobre el complemento (sobre cada carácter\n" +" que no coincida)\n" +" -d, --delete borra caracteres de CONJUNTO1, no traduce\n" +" -s, --squeeze-repeats remplaza cada sucesión de entrada de un carácter\n" +" repetido listado en CONJUNTO1 por una sola\n" +" aparición de dicho carácter\n" +" -t, --truncate-set1 trunca CONJUNTO1 a la longitud de CONJUNTO2\n" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" +"\n" +"Los CONJUNTOs se especifican como cadenas de caracteres. La mayoría se\n" +"representan a sí mismos.\n" +"Las secuencias válidas son las siguientes:\n" +"\n" +" \\NNN carácter con valor octal NNN (de uno a tres dígitos)\n" +" \\\\ barra invertida\n" +" \\a pitido audible (BEL)\n" +" \\b espacio hacia atrás\n" +" \\f salto de página\n" +" \\n salto de línea\n" +" \\r retorno de carro\n" +" \\t tabulación horizontal\n" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" +" \\v tabulación vertical\n" +" CAR1-CAR2 todos los caracteres comprendidos entre CAR1 y CAR2 " +"contados\n" +" en orden ascendente\n" +" [CAR*] en CONJUNTO2, copias de CAR hasta que se alcance la " +"longitud\n" +" de CONJUNTO1\n" +" [CAR*REPITE] copia REPITE veces CAR; REPITE es octal si comienza con 0\n" +" [:alnum:] todas las letras y dígitos\n" +" [:alpha:] todas las letras\n" +" [:blank:] todos los espacios en blanco horizontales\n" +" [:cntrl:] todos los caracteres de control\n" +" [:digit:] todos los dígitos\n" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" +" [:graph:] todos los caracteres imprimibles, sin incluir el espacio\n" +" [:lower:] todas las letras minúsculas\n" +" [:print:] todos los caracteres imprimibles, incluyendo el espacio\n" +" [:punct:] todos los caracteres de puntuación\n" +" [:space:] todos los espacios en blanco horizontales y verticales\n" +" [:upper:] todas las letras mayúsculas\n" +" [:xdigit:] todos los números hexadecimales\n" +" [=CAR=] todos los caracteres que son igual que CAR\n" + +# squeezing -> la compresión; lo has usado tú antes :) ipg +# se me pasó em+ +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" +"\n" +"Se produce la traducción si no se especifican CONJUNTO1 y CONJUNTO2, " +"siempre\n" +"y cuando no aparezca la opción -d. -t se puede usar sólo al traducir.\n" +"CONJUNTO2 se expande a la longitud de CONJUNTO1, repitiendo su último\n" +"carácter tantas veces como sea necesario. " + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" +"Los caracteres que sobran en\n" +"CONJUNTO2 no se tienen en cuenta. Solamente se garantiza que [:lower:]\n" +"y [:upper:] sean expandidos en orden ascendente; si se usa en\n" +"CONJUNTO2 al traducir, sólo se pueden usar en parejas, para\n" +"especificar conversión a mayúsculas. " + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" +"-s usa CONJUNTO1 si no se está\n" +"traduciendo ni borrando; si no, la compresión usa CONJUNTO2 después de\n" +"la traducción o el borrado.\n" + +# Me alegro de que te hayas comido el \t. Creo que lo mismo se puede hacer +# en otro msgstr que hay mucho más atrás. sv +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" +"atención: la secuencia de escape octal ambigua \\%c%c%c\n" +"se interpreta como la secuencia de 2 bytes \\0%c%c, `%c'" + +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "secuencia de escape inválida al final de la cadena" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "secuencia de escape inválida `\\%c'" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "los extremos del rango en `%s-%s' están en orden inverso" + +# También necesito aquí ayuda em +# Yo creo que queda bien. ipg +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "número de repeticiones `%s' inválido en la especificación [c*n]" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "falta el nombre de la clase de caracteres `[::]'" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "falta el carácter de clase de equivalencia `[==]'" + +#: src/tr.c:1025 +#, c-format +msgid "invalid character class `%s'" +msgstr "clase de carácter inválido `%s'" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "%s: el operador de equivalencia de clase debe ser un sólo carácter" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "el operador de repetición [c*] no puede aparecer en cadena1" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "en cadena2 sólo puede aparecer un operador de repetición [c*]" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "las expresiones [=c=] no pueden aparecer en cadena2 al traducir" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "si no se está truncando conjunto1, cadena2 debe ser no vacía" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" +"cuando se traducen con clases de caracteres complementarias (que no " +"coinciden),\n" +"cadena2 debe hacer corresponder todos los caracteres del dominio a uno solo" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" +"cuando se traduce, las únicas clases de caracteres que pueden aparecer en\n" +"cadena2 son 'upper' y 'lower'" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "las expresiones [c*] sólo pueden aparecer en cadena2 al traducir" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "se deben proporcionar dos cadenas al traducir" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "" +"cuando se borra y se comprimen repeticiones se deben proporcionar dos cadenas" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" +"cuando se borra sin comprimir repeticiones sólo se puede especificar una " +"cadena" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "" +"cuando se comprimen repeticiones se debe especificar al menos una cadena" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "las construcciones [:upper:] y/o [:lower:] están desalinedas" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" +"correspondencia inválida; cuando se traduce, cualquier construcción [:lower] " +"o\n" +"[:upper:] en la cadena1 debe de estar alineada con la correpondiente\n" +"construcción ([:upper:] o [:lower:], respectivamente) en cadena2" + +#: src/true.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Modo de empleo: %s [argumentos que no se tienen en cuenta]\n" +" o bien: %s OPCIÓN\n" +"Sale con un código de estado que indica éxito.\n" +"\n" +"Los nombres de estas opciones no se pueden abreviar:\n" +"\n" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Modo de empleo: %s [OPCIÓN] [FICHERO]\n" +"Escribe una lista completamente ordenada consistente con el orden parcial " +"en\n" +"FICHERO. Sin ningún FICHERO, o cuando FICHERO es -, lee la entrada " +"estándar.\n" +"\n" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "%s: la entrada contiene un bucle:" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "sólo se puede especificar un argumento" + +#: src/tty.c:63 +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" +"Muestra el nombre de fichero de la terminal conectada a la salida estándar.\n" +"\n" +" -s, --silent, --quiet no muestra nada, sólo devuelve un valor de salida\n" + +# "No es una terminal", ¿no se entendería mejor? gerardo +# Depende. La terminal se refiere a la terminal física, mientras que +# tty se refiere al dispositivo "lógico". Es como cuando envías +# el resultado a una tubería o a un tty. ¿Qué opinas? sv +# +# Bueno, fale. Pero ¿es "un tty" o "una tty"? gerardo +# +# Depende: ¿Sabes como averiguar si una tortuga es macho o hembra? +# Se le hacen cosquillas en la barriga, si se pone contento es +# macho, y si se pone contenta es hembra :-) +# En este caso yo diría que es así: "no es un [dispositivo] tty" sv +#: src/tty.c:120 +msgid "not a tty" +msgstr "no es un `tty'" + +# Nota: En Linux, uname -r da como resultado la versión del `kernel' +# mientras que uname -v de como resultado la fecha de compilación. +# (una especie de sub-versión). +# +# Por sugerencia de Gerardo, pongo distribución para uname -r. +# +# Aquí parece que hay algo de confusión entre -v que da la versión del +# S.O. y --version, que da la versión del POGRAMA uname. ¿No +# deberíamos especificarlo un poco? Por ejemplo: +# --version Informa sobre la versión de este programa y finaliza. +# Finalizo: gerardo +# Piensa, piensa... Resumiendo: +# --version informa de la versión de este programa y acaba\n +# +# No creo que sea necesario, las opciones --help y --version van siempre +# al final y son obligatorias de acuerdo con las +# "normas de programación de GNU" (GNU coding standards). +# Por cierto, ¿te parece apropiada esta traducción de los "coding standards"? +# (La verdad es que nunca se me había ocurrido traducirlo hasta ahora mismo). +# +# Aunque es cierto que --release da lo que nosotros llamaríamos +# "versión" (p. ej.: 2.0.0) y -v da la sub-versión (con guión, +# efectivamente :-). Lo mismo observo en Digital UNIX. gerardo +# +# ¿Podrías decirme lo que observas en Digital UNIX exactamente? +#: src/uname.c:111 +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" +"Muestra cierta información del sistema. Sin ninguna OPCIÓN, igual que -s.\n" +"\n" +" -a, --all muestra toda la información\n" +" -s, --sysname muestra el nombre del sistema operativo\n" +" -n, --nodename muestra el nombre de `host' del nodo de red de la " +"máquina\n" +" -r, --release muestra la distribución del sistema operativo\n" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" +" -v muestra la versión del sistema operativo\n" +" -m, --machine muestra el tipo de máquina (hardware)\n" +" -p, --processor muestra el tipo de procesador\n" +" -i, --hardware-platfrom muestra la plataforma de hardware\n" +" -o, --operating-system muestra el sistema operativo\n" + +#: src/uname.c:226 +msgid "cannot get system name" +msgstr "no se puede obtener el nombre del sistema" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Convierte los espacios de cada FICHERO en tabulaciones, escribiendo el\n" +"resultado en la salida estándar. Si no se especifica FICHERO o FICHERO\n" +"es `-', lee la entrada estándar.\n" +"\n" + +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" +" -a, --all convierte todos los espacios en blanco, no solo los\n" +" iniciales\n" +" --first-only convierte solamente los espacios en blanco iniciales\n" +" (deshabilita -a)\n" +" -t, --tabs=N usa N espacios en cada tabulación, en vez de 8 (activa -" +"a)\n" +" -t, --tabs=LISTA usa la LISTA de posiciones separadas por comas para\n" +" definir las posiciones de tabulación (activa -a)\n" + +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "la opción `-LISTA' está obsoleta; utilice `--first-only -t LISTA'" + +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "Modo de empleo: %s [OPCIÓN]... [ENTRADA [SALIDA]]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" +"Descarta todas las líneas sucesivas idénticas, menos una. de ENTRADA (o\n" +"entrada estándar), escribiendo en SALIDA (o en la salida estándar).\n" +"\n" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" +" -c, --count precede a las líneas con el número de ocurrencias\n" +" -d, --repeated muestra sólo las líneas duplicadas\n" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" +" -D, --all-repeated[=método] muestra todas las líneas duplicadas\n" +" método={none(predeterminado),prepend,separate}\n" +" La delimitación se hace con líneas en blanco.\n" +" -f, --skip-fields=N pasa por alto la comparación de los primeros N " +"campos\n" +" -i, --ignore-case pasa por alto las diferencias entra mayúsculas y\n" +" minúsculas\n" +" -s, --skip-chars=N pasa por alto la comparación de los primeros N " +"caracteres\n" +" -u, --unique muestra sólo las líneas que son únicas\n" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr "" +" -w, --check-chars=N sólo compara los primeros N caracteres de la línea\n" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" +"\n" +"Un campo es cada conjunto de caracteres separados por espacios.\n" +"Se pasan por alto los campos y después los caracteres.\n" + +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "error al leer %s" + +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "error al escribir en %s" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "operando extra `%s'" + +#: src/uniq.c:473 src/uniq.c:498 +msgid "invalid number of fields to skip" +msgstr "el número de campos que se deben saltar es inválido" + +#: src/uniq.c:507 +msgid "invalid number of bytes to skip" +msgstr "el número de bytes que se deben saltar es inválido" + +#: src/uniq.c:516 +msgid "invalid number of bytes to compare" +msgstr "el número de bytes que hay que comparar es inválido" + +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "la opción `-%lu' está obsoleta; utilice `-f %lu'" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "" +"mostrar todas las líneas duplicadas y los contadores de repetición\n" +"no tiene sentido" + +#: src/unlink.c:51 +#, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"Modo de empleo: %s FICHERO\n" +" o bien: %s OPCIÓN\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" +"Llama a la función unlink para borrar el FICHERO especificado.\n" +"\n" + +# Otra posibilidad sería "no se puede borrar el enlace `%s'". +# Mirarlo con calma. sv +# +# recordatorio: un fichero es _siempre_ un nodo-i que es enlazado por +# entrada/s en directorios, cuando se desenlaza el último enlace que une una +# entrada de directorio con el fichero, entonces y sólo entonces se borra +# físicamente.... uac +# +# Lo sé, lo sé. +# En este caso habría que investigar las causas por las que no se puede +# deshacer el tal enlace. Habrá que buscar al menos un ejemplo en el que +# aparezca este mensaje. sv +# +#: src/unlink.c:99 +#, c-format +msgid "cannot unlink %s" +msgstr "no se puede deshacer el enlace %s" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "no se puede obtener la fecha de arranque" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr " %2d:%02d%s funcionando " + +# Por indicación de Gerardo Aburruzaga, lo pongo con mayúsculas. +#: src/uptime.c:140 +msgid "am" +msgstr "AM" + +#: src/uptime.c:140 +msgid "pm" +msgstr "PM" + +#: src/uptime.c:142 +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d día" +msgstr[1] "%d días" + +#: src/uptime.c:144 +#, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "%d usuario" +msgstr[1] "%d usuarios" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr ", carga promedio: %.2f" + +#: src/uptime.c:191 src/users.c:118 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "Modo de empleo: %s [OPCIÓN]... [FICHERO]\n" + +#: src/uptime.c:192 +#, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Muestra la fecha/hora actual, el lapso de tiempo que el sistema lleva " +"arriba,\n" +"el número de usuarios en el sistema, y el número medio de trabajos\n" +"en la cola de ejecución en los últimos 1, 5 y 15 minutos.\n" +"Si no se especifica ningún FICHERO, se utiliza %s. Habitualmente,\n" +"FICHERO es %s\n" +"\n" + +#: src/users.c:35 +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "Joseph Arceneaux y David MacKenzie" + +# Nota: El primer %s era /etc/utmp y el segundo /etc/wtmp. +#: src/users.c:119 +#, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Muestra quién esta actualmente conectado de acuerdo con FICHERO.\n" +"Si no se especifica ningún FICHERO, se utiliza %s. Habitualmente,\n" +"FICHERO es %s\n" +"\n" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "Paul Rubin y David MacKenzie" + +#: src/wc.c:129 +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" +"Muestra el número de bytes, palabras y nuevas líneas para cada FICHERO, y " +"una\n" +"línea con el total si se especifica más de un FICHERO. Si no se especifica\n" +"ningún FICHERO, o si FICHERO es -, lee la entrada estándar.\n" +" -c, --bytes muestra el número de bytes\n" +" -m, --chars muestra el número de caracteres\n" +" -l, --lines muestra el número de líneas\n" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" +" -L, --max-line-length muestra la longitud de la línea más larga\n" +" -w, --words muestra el número de palabras\n" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "Joseph Arceneaux, David MacKenzie, y Michael Stone" + +#: src/who.c:223 +msgid " old " +msgstr " antiguo " + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "id=" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "term=" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "salida=" + +#: src/who.c:446 +msgid "clock change" +msgstr "cambio de reloj" + +# Se admiten sugerencias +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "`run-level'" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "último=" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" +"\n" +"Nº de usuarios=%u\n" + +# Estas palabrejas en mayúsculas son para la CABECERA de who. Yo que +# tú lo probaba, porque me temo que va a salir fatal, tendría que +# tener la traducción la misma longitud que el original. Habría que +# abreviar, aunque quizá acabemos de forma que no se entenderá +# nada. gerardo +# +# Si sale mal, nos quejaremos amargamente al autor. +# Quien mantiene esto actualmente (Jim Meyering) me ha hecho caso +# otras veces (si miras el ChangeLog de fileutils podrás comprobarlo) +# y es bastante comprensivo. +#: src/who.c:498 +msgid "NAME" +msgstr "NOMBRE" + +#: src/who.c:498 +msgid "LINE" +msgstr "LÍNEA" + +#: src/who.c:498 +msgid "TIME" +msgstr "TIEMPO" + +# Va a haber problemas por la longitud de la cadena... +# INACTIVO es más corto. VAGO mas aún (ouaahhh -bostezo-) gerardo +# Me gusta la idea, pero ¿es INACTIVO o INACTIVA? sv +# Como USUARIO, que también puede ser USUARIA. Si quieres ponerlo +# "políticamente c." (c.= correcto? carajote?): INACTIV@ gerardo :-) +# Odio la correción política. Lo dejaré en género "neutro", o sea +# en masculino (ya que en español, coinciden, que es lo que a muchos +# les cuesta digerir). +# De todas formas, ¿INACTIVO no es [TIEMPO] INACTIVO? sv +#: src/who.c:498 +msgid "IDLE" +msgstr "INACTIVO" + +#: src/who.c:498 +msgid "PID" +msgstr "PID" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "COMENTARIO" + +#: src/who.c:499 +msgid "EXIT" +msgstr "SALIDA" + +#: src/who.c:574 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "Modo de empleo: %s [OPCIÓN]... [ FICHERO | ARG1 ARG2 ]\n" + +# Nota: El primer %s era /etc/utmp y el segundo /etc/wtmp. +# Hay una ó con tilde que no debiera, pues no va entre cifras. gerardo +# Va entre cosas que no son letras. sv +# +# Que yo sepa, la RAE dice que la conjunción "o" debe llevar tilde +# cuando va entre guarismos, para que no se confunda con un cero. Si +# no hay ambigüedad puede omitirse, aunque se recomienda ponerlo. +# No tiene que ir entre "cosas que no son letras", sino entre cifras +# numéricas. Según la RAE. Cuando yo estudié Lingüística/Literatura, +# hace ya unos pocos años :-( gerardo +# +# Ya, pero me temo que la RAE no contemplaba (cuando dijo eso) +# otra cosa que no sean cifras o letras ¿o sí? sv +# +# ¿Al haber un signo menos a su izquierda no tiene la "o" posibilidad de ser +# confundida con un cero? sv +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" +"\n" +" -a, --all lo mismo que -b -d --login -p -r -t -T -u\n" +" -b, --boot tiempo del último inicio del sistema\n" +" -d, --dead muestra los procesos muertos\n" +" -H, --heading muestra la línea de encabezados de columnas\n" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" +" -i, --idle añade el tiempo inactivo del usuario como\n" +" HORAS:MINUTOS, . o antiguo (obsoleto, use -u)\n" +" --login muestra procesos de entrada en el sistema\n" +" (equivalente al -l de SUS)\n" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" +" -l, --lookup intenta canonicalizar los nombres de `host' a través del " +"DNS\n" +" -m sólo el nombre del `host' y de usuario asociado con\n" +" la entrada estándar\n" +" -p, --process muestra los procesos activos lanzados por init\n" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" +" -q, --count todos los nombres de entrada y número de usuarios\n" +" conectados\n" +" -r, --runlevel muestra el `runlevel' actual\n" +" -s, --short muestra sólo el nombre, línea y tiempo (predeterminado)\n" +" -t, --time muestra el último cambio en el reloj del sistema\n" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" +" -T, -w, --mesg añade el estado de mensajes del usuario como\n" +" +, - ó ?\n" +" -u, --users muestra los usuarios conectados\n" +" --message igual que -T\n" +" --writable igual que -T\n" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" +"\n" +"Si no se especifica ningún FICHERO, se utiliza %s. Habitualmente,\n" +"FICHERO es %s. Si se dan ARG1 y ARG2, se supone -m: habitualmente\n" +"`am i' o `mom likes'.\n" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "" +"Atención: -i será eliminado en versiones futuras; utilice -u en su lugar" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" +"Atención: el significado de `-l' cambiará en una versión futura para\n" +"estar de acuerdo con POSIX" + +#: src/whoami.c:53 +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" +"Muestra el nombre de usuario asociado con el identificador efectivo de\n" +"usuario actual. Equivalente a id -un.\n" +"\n" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "%s: no se puede encontrar el nombre de usuario para el UID %u\n" + +#: src/yes.c:49 +#, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"Modo de empleo: %s [CADENA]...\n" +" o bien: %s OPCIÓN\n" + +# Se aceptan sugerencias para `repetidamente'. cfuga +# (pues a mí no me disgusta). sv +# Es curioso que el 'y' esté compilado en "yes". En mi Digital UNIX, +# también internacionalizado y traducido, "yes" produce repetidamente +# "sí" para LANG=es_ES.ISO8859-1. Concretamente LC_MESSAGES. gerardo +# Curioso, ¿no romperá ningun `script'? sv +# Para lo poco que se usa "yes"... (me pasé dos años sin saber para +# qué c~%&# servía, y aún ahora creo que no sirve para nada). gerardo +# +# Sirve para hacer prácticas con la redirección de la salida... ( > ) +# +# Creo que es mejor dejarlo así. Con el programa "hello" pasa lo mismo: +# escribes "hello" y te responde "hola", lo cual no es lógico :-) +# Si no hay oportunidad de escribir "sí", para que salga una tira de +# eses, mejor olvidarse. sv +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" +"Muestra repetidamente una línea con todas las CADENA(s) especificadas, o " +"`y'.\n" +"\n" + +#~ msgid "\\%c: invalid escape" +#~ msgstr "\\%c: secuencia de escape inválida" + +#~ msgid "program error" +#~ msgstr "error del programa" + +#~ msgid "stack overflow" +#~ msgstr "desbordamiento de pila" + +#~ msgid "warning: unable to use large stack" +#~ msgstr "atención: no se puede usar una pila grande" + +#~ msgid "missing file arguments" +#~ msgstr "faltan argumentos (ficheros)" + +#~ msgid "cannot change to `..' from directory %s" +#~ msgstr "no se puede cambiar a `..' desde el directorio %s" + +#~ msgid "%s: is so large that it is not representable" +#~ msgstr "%s: es tan grande que no es representable" + +#~ msgid "preserving permissions for %s" +#~ msgstr "se conservan los permisos de %s" + +#~ msgid "cannot lstat `.'" +#~ msgstr "no se puede efectuar `lstat' sobre `.'" + +#~ msgid "closing directory %s" +#~ msgstr "cerrando el directorio %s" + +# SIoNO +#~ msgid "%s: remove directory %s? " +#~ msgstr "%s: ¿borrar el directorio %s? (s/n) " + +# SIoNO +#~ msgid "%s: directory %s is write protected; descend into it anyway? " +#~ msgstr "" +#~ "%s: el directorio %s está protegido contra escritura;\n" +#~ "¿descender en él, a pesar de todo? (s/n) " + +#~ msgid "removing all entries of directory %s\n" +#~ msgstr "borrando todas las entradas del directorio %s\n" + +#~ msgid "directory %s was replaced before being removed" +#~ msgstr "el directorio %s ha sido reemplazado antes de ser borrado" + +#~ msgid "cannot change back to directory %s via `..'" +#~ msgstr "no se puede volver al directorio %s a través de `..'" + +#~ msgid "subdirectory of %s was moved while being removed" +#~ msgstr "un subdirectorio de %s fue movido mientras era borrado" + +# SIoNO +#~ msgid "%s: remove directory %s%s? " +#~ msgstr "%s: ¿borrar el directorio %s%s? (s/n) " + +#~ msgid " (might be nonempty)" +#~ msgstr " (podría no estar vacío)" + +#~ msgid "removing the directory itself: %s\n" +#~ msgstr "se borró el propio directorio: %s\n" + +#~ msgid "cannot remove current directory %s" +#~ msgstr "no se puede borrar el directorio actual %s" + +# SIoNO +#~ msgid "continue? " +#~ msgstr "¿seguir? (s/n) " + +#~ msgid "" +#~ "ERROR: the source file %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after opening it), the numbers\n" +#~ "are %lu/%lu. That means that while this program was running,\n" +#~ "the file was replaced with another one. Skipping this file." +#~ msgstr "" +#~ "ERROR: el fichero origen %s inicialmente tenía números de dispositivo/" +#~ "nodo-i\n" +#~ "%lu/%lu, pero ahora (después de abrirlo), los números son %lu/%lu.\n" +#~ "Esto quiere decir que mientras este programa estaba funcionando, el " +#~ "fichero\n" +#~ "ha sido reemplazado por otro. Nos saltamos este fichero." + +# FIXME: ¿Por qué no "fork system call failed", como antes? +#~ msgid "cannot fork" +#~ msgstr "falló la llamada al sistema `fork'" + +#~ msgid "" +#~ "ERROR: the directory %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after a chdir into it), the numbers for `.'\n" +#~ "are %lu/%lu. That means that while rm was running, the directory\n" +#~ "was replaced with either another directory or a link to another directory." +#~ msgstr "" +#~ "ERROR: el directorio %s inicialmente tenía números de dispositivo/nodo-i\n" +#~ "%lu/%lu, pero ahora (después de un chdir dentro de él), los números para " +#~ "`.'\n" +#~ "son %lu/%lu. Esto quiere decir que mientras rm estaba funcionando,\n" +#~ "el directorio ha sido reemplazado por otro directorio o por un enlace a " +#~ "otro\n" +#~ "directorio." + +# Esta traducción me ha sorprendido verla, creo que "changed" debería +# traducirse como "ha cambiado". Además cuando estos mensajes "de +# diagnóstico" aparecen, la operación ya se ha realizado... uac +# +# Si solamente fuera por el modo verbal empleado en el original, +# estaría de acuerdo contigo. +# Sin duda esto es un mensaje de "diagnóstico" o "verbose", y como tal +# debe tratarse. +# La cosa está en si esos mensajes deben decirnos "lo que va ocurriendo" +# o "lo que ha ocurrido". En este mensaje concreto (no en general), me +# parece más apropiado que el programa nos diga "lo que va ocurriendo" +# y por eso utilizo el modo presente. +# Tal vez tengo la impresión de que al original le falta un "is": +# "group of %s is changed to %s". sv +#~ msgid "group of %s changed to %s\n" +#~ msgstr "el grupo de %s cambia a %s\n" + +# Normas de la casa: +# "El programa hablará al usuario de usted y no de tú". sv +#~ msgid "you are not a member of group `%s'" +#~ msgstr "usted no es miembro del grupo `%s'" + +#~ msgid "%s: invalid group number" +#~ msgstr "%s: número de grupo inválido" + +# Ya sé que no te gustará: "%s se cedió a " +# o "el propietario de %s es ahora " tb +# El segundo me gusta mucho más que el primero, pero a pesar de todo, prefiero +# usar el verbo cambiar, decir "es ahora" no da a entender tan claramente +# que se produce un cambio. sv +# +# A mí me gusta también "el propietario de %s es ahora", ¿por qué traducciones +# tan literales, si se pueden poner de una forma corta y más clara? uac +# +# En este caso, "es ahora" es menos claro que "cambia a" +# De la primera forma, te dice cómo queda pero te quedas con la duda +# de si antes estaba también así o no. +# Con "cambia a" te dice cómo queda y además sabes que antes estaba de otra +# forma distinta. sv +#~ msgid "owner of %s changed to " +#~ msgstr "el propietario de %s cambia a " + +#~ msgid "cannot change permissions for %s" +#~ msgstr "no se pueden cambiar los permisos de %s" + +#~ msgid "`%s' and `%s' are the same file" +#~ msgstr "`%s' y `%s' son el mismo fichero" + +#~ msgid "cannot backup `%s'" +#~ msgstr "no se puede respaldar `%s'" + +#~ msgid "cannot remove `%s'" +#~ msgstr "no se puede borrar `%s'" + +# Nota: Asegurarse de que significa eso. +# Probablemente quiera decir que "no se puede recuperar `%s'" de la copia +# de seguridad. tb +#~ msgid "cannot un-backup `%s'" +#~ msgstr "no se puede restaurar `%s'" + +#~ msgid "invalid mode `%s'" +#~ msgstr "modo inválido `%s'" + +#~ msgid "cannot create directory `%s'" +#~ msgstr "no se puede crear el directorio `%s'" + +#~ msgid "cannot make fifo `%s'" +#~ msgstr "No se puede crear el `fifo' `%s'" + +# El primer %s es "hardlink" o "symlink". +# Mantengo el "de" y toco madera. +#~ msgid "create %s %s to %s" +#~ msgstr "crea %s de %s a %s" + +# ¿? Duro o fuerte, según se mire. +# FIXME (pendiente). +#~ msgid "hard link" +#~ msgstr "enlace duro" + +#~ msgid "link" +#~ msgstr "enlace" + +#~ msgid "starting directory" +#~ msgstr "directorio de comienzo" + +#~ msgid "%s -> %s (backup)\n" +#~ msgstr "%s -> %s (copia de seguridad)\n" + +#~ msgid "" +#~ "Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +#~ " or: %s [OPTION]... TARGET... DIRECTORY\n" +#~ msgstr "" +#~ "Modo de empleo: %s [OPCIÓN]... OBJETIVO [NOMBRE_DEL_ENLACE]\n" +#~ " o bien: %s [OPCIÓN]... OBJETIVO... DIRECTORIO\n" + +#~ msgid "" +#~ "Usage: %s [OPTION]... SOURCE DEST\n" +#~ " or: %s [OPTION]... SOURCE... DIRECTORY\n" +#~ msgstr "" +#~ "Modo de empleo: %s [OPCIÓN]... ORIGEN DESTINO\n" +#~ " o bien: %s [OPCIÓN]... ORIGEN... DIRECTORIO\n" + +#~ msgid "--no-dereference (-h) is not supported on this system" +#~ msgstr "--no-dereference (-h) no está disponible en este sistema" + +#~ msgid "Usage: %s [OPTION]... EXISTING_DIR NEW_DIR\n" +#~ msgstr "Modo de empleo: %s [OPCIÓN]... DIR_EXISTENTE NUEVO_DIR\n" + +#~ msgid "cannot rename `.' or `..'" +#~ msgstr "no se puede renombrar `.' o `..'" + +# ¿ancestro? +# +# Sip :) Es la traducción. ipg +# +# Supongo que será un directorio que abarca a uno dado em+ +# No sé como te las apaqanas aquí, pero lo de ancestro no lo dejes, porfa +# +# ¿Sugerencias? sv+ +# ¿Qué es un ancestro? ¿Un predecesor? tb +# Ni idea. sv +# +# ancestro es un familiar ascendiente en el árbol genealógico (recordad que +# normalmente los árboles se dibujan de arriba hacia abajo) uac +# +# Si te digo la verdad, nunca me ha hecho gracia eso de que los árboles +# crezcan hacia abajo... sv +# +# Aunque ancestro creo que no estará mal, antecesor estará igual de bien y +# mucho más claro, ¿o no? uac +# +# Si no os han aclarado las ideas mis explicaciones, recordad cuando +# utilizáis el NOTESCAPES para ftpear y veis: "upper directory"= ".." uac +# +# Bueno, esto sería el "directorio superior", lo cual indica que en +# Netscape Communications Inc., los árboles también crecen al revés... :-) sv +# +# Bueno, vale. De momento lo cambio. Antes decía ancestro. +#~ msgid "`%s' is an ancestor of `%s'" +#~ msgstr "`%s' es un antecesor de `%s'" + +#~ msgid "%s is closed" +#~ msgstr "%s está cerrado" + +#~ msgid "out of memory" +#~ msgstr "memoria agotada" + +#~ msgid "%s: lseek" +#~ msgstr "%s: lseek" + +#~ msgid "%s: pass %lu/%lu (%s)...%lu/%lu K" +#~ msgstr "%s: paso %lu/%lu (%s)...%lu/%lu K" + +#~ msgid "%s: pass %lu/%lu (%s)...%lu K" +#~ msgstr "%s: paso %lu/%lu (%s)...%lu K" + +#~ msgid "%s: not a regular file; use -D to enable operations on devices" +#~ msgstr "" +#~ "%s: no es un fichero regular; utilice -D para activar las operaciones\n" +#~ "sobre dispositivos" + +#~ msgid "unable to allocate storage for %lu passes" +#~ msgstr "no se puede asignar espacio de almacenamiento para %lu pasos" + +#~ msgid "%s: cannot shred read-only file descriptor" +#~ msgstr "" +#~ "%s: no se puede ejecutar shred sobre un descriptor de fichero de sólo " +#~ "lectura" + +#~ msgid "%s: can't wipe stdout and print verbose messages to it" +#~ msgstr "" +#~ "%s: no se puede cepillar la salida estándar e imprimir mensajes " +#~ "explicativos" + +# FIXME: Decirle al autor que lo ponga como en fork. +#~ msgid "malloc failed" +#~ msgstr "falló la llamada al sistema `malloc'" + +#~ msgid "Unable to open `%s'" +#~ msgstr "No se puede abrir `%s'" + +#~ msgid "Unable to delete file `%s'" +#~ msgstr "No se puede borrar el fichero `%s'" + +#~ msgid "Can't fstat file `%s'" +#~ msgstr "No se puede ejecutar fstat sobre el fichero `%s'" + +# Un fichero `sparse' es un fichero que contiene muchos ceros seguidos, y +# que en algunos casos, el sistema operativo trata de forma especial. +# ¿tiene traducción? +# +# Creo que finalmente me decidiré por traducirlo como "disperso". +# (creo que Federico Rivas ya lo ha hecho así en tar). +# Tal vez añadiendo el sparse al final, para que todo el mundo se entere. sv +# O sea: tipo disperso (sparse). +# De momento lo dejo en `sparse'. +# FIXME. +#~ msgid "sparse type" +#~ msgstr "tipo `sparse'" + +# FIXME +# Esto sería "tipo de ordenación", +# pero como forma parte de un mensaje más largo que *no* +# está todavía internacionalizado, para evitar que, por ejemplo +# "ls --sort=ñ" dé como resultado "invalid tipo de ordenación `ñ'" +# lo dejo de momento en inglés, para no mezclar. +#~ msgid "sort type" +#~ msgstr "sort type" + +# FIXME +# Esto sería "tipo de fecha", +# pero como forma parte de un mensaje más largo que *no* +# está todavía internacionalizado, para evitar que, por ejemplo, +# "ls --time=ñ" dé como resultado "invalid tipo de fecha `ñ'" +# lo dejo de momento en inglés, para no mezclar. +#~ msgid "time type" +#~ msgstr "time type" + +# FIXME +# Esto sería "tipo de formato", +# pero como forma parte de un mensaje más largo que *no* +# está todavía internacionalizado, para evitar que, por ejemplo, +# "ls --format=ñ" dé como resultado "invalid tipo de formato `ñ'" +# lo dejo de momento en inglés, para no mezclar. +#~ msgid "format type" +#~ msgstr "format type" + +# Del diccionario de María Moliner: +# Colorear: Colorar. Teñir. Dar [Dar un] color a cierta cosa. +# Coloración: Acción de colorear. +#~ msgid "colorization criterion" +#~ msgstr "criterio de coloración" + +# De este no estoy muy seguro. +#~ msgid "indicator style" +#~ msgstr "estilo de indicación" + +# De este tampoco... +#~ msgid "quoting style" +#~ msgstr "estilo de cita" + +# FIXME +# o igual es hora, o tiempo, vaya usted a saber. Mirarlo bien. +#~ msgid "time selector" +#~ msgstr "selector de fecha" + +#~ msgid "" +#~ "the option for counting 1MB blocks may not be used\n" +#~ "with the portable output format" +#~ msgstr "" +#~ "la opción para contar bloques de 1MB no se puede usar\n" +#~ "con el formato de salida portable" + +# ¿adaptive es adaptable? +# ¿eh? +# +# Yo lo he mirado en el Collins y no está, por otra parte adaptable= adaptable +# (inglis= castellano)... uac +# +# Una cosa creo que está clara, se refiere a las opciones para especificar +# diferentes unidades de capacidad... y _creo_ que si pensamos en este sentido +# la traducción no es muy coherente... al menos en castellano... uac +# +# Yo lo cambiaría a algo como: +# "la opción para imprimir con unidades específicas no se puede usar..." uac +# +# Este tengo que pensarlo despacio. sv +#~ msgid "" +#~ "the option for printing with adaptive units may not be used\n" +#~ "with the portable output format" +#~ msgstr "" +#~ "la opción para imprimir con unidades adaptables no se puede usar\n" +#~ "con el formato de salida portable" + +#~ msgid "removing non-directory %s\n" +#~ msgstr "se borró el no directorio %s\n" + +# ¿Tal vez la interrogación de apertura va justo después de la coma? ipg +# +# Excelente pregunta. Esto parece el referéndum de la OTAN: +# Creo que el programa nos pregunta si queremos reemplazar un fichero +# por otro, para que contestemos que sí o que no. +# Al mismo tiempo, nos advierte de que, de llevarse a cabo el reemplazo +# de un fichero por otro, también el modo resultaría sustituído. +# +# Si esto es así, ¿dónde habría que poner la interrogación? +# O incluso: ¿Está bien el original? +# +# Creo que tal y como está, está bien. sv +# SIoNO +# +#~ msgid "%s: replace `%s', overriding mode %04o? " +#~ msgstr "%s: ¿reemplazar `%s', sustituyendo el modo %04o? (s/n) " + +# Yo no traduciría "regular file" literalmente... a mi entender en el Collins +# salen acepciones mucho mejores, como: +# fichero normal +# fichero corriente +# y esta que me la invento yo: fichero genérico. uac +# +# ¿Y una expresión regular? sv +# +# Aunque a decir verdad, eso de "normal" no me parece mal del todo, +# habrá que pensarlo seriamente. sv +# FIXME. +#~ msgid "cannot move `%s' across filesystems: Not a regular file" +#~ msgstr "" +#~ "no se puede mover `%s' de un sistema de ficheros a otro:\n" +#~ "No es un fichero regular" + +#~ msgid "Usage: %s [OPTION]... GROUP FILE...\n" +#~ msgstr "Modo de empleo: %s [OPCIÓN]... GRUPO FICHERO...\n" + +# Este overriding no es como el de "mv". +# ¿Tal vez el original no tiene sentido? +# (lo digo porque para borrar, el modo que importa es el del directorio, +# donde está lo que se va a borrar) +# +# overriding es pasar por alto em +# +# En general no, solamente en este caso. +# ¿Quieres decir que sugieres poner +# "..., pasando por alto el modo %04o"? sv+ +# +#~ msgid "%s: remove %s`%s', overriding mode %04o? " +#~ msgstr "%s: ¿borrar %s`%s', sustituyendo el modo %04o? (s/n) " + +# Este tendré que estudiarlo más. +# De momento lo dejo así. +# SIoNO +#~ msgid "%s: descend directory `%s', overriding mode %04o? " +#~ msgstr "" +#~ "%s: ¿descender al directorio `%s', sustituyendo el modo %04o? (s/n) " + +# SIoNO +#~ msgid "%s: remove directory `%s' (might be nonempty)? " +#~ msgstr "%s: ¿borrar el directorio `%s'? (podría no estar vacío) (s/n) " + +# [ Antes decía "...el punto de montaje para %s" ] +# No me gusta punto "de montaje". ¿Sugerencias? +# +# Como se monta en un directorio, se podría decir `directorio de montaje' +# De todas maneras, punto de montaje no queda tan mal ... :) ipg +# +# Esta es dura, nunca se me ocurrió pensar que habría que traducirlo +# un día. ... ¿Qué tal ... "lugar para montar" o "directorio en +# el que montar"? em +# +# Algo mejor. Pero no estoy seguro. Tengo que pensarlo. sv +# +# "No se puede encontrar el sitio para montar %s" Sólo es una +# sugerencia más. tb +# +# La conservaremos. +# ¿Más candidatos? sv +# +# ¿`punto de montaje de %s'? ipg +# +# Bien, este es uno de esos casos en los que uno decide salirse +# por la tangente. Espero que os guste así. +# Razones: El "punto" de montaje es siempre un directorio (¿o no?). +# Llamarle "punto" es emplear un lenguaje algo oscuro. +# Si alguien sabe de algún caso en el que el punto de montaje no sea +# un directorio, por favor que lo diga. sv +#~ msgid "cannot find mount point for %s" +#~ msgstr "no se puede encontrar el directorio para montar %s" + +#~ msgid "cannot execute %s" +#~ msgstr "no se puede ejecutar %s" + +#~ msgid "cannot run %s" +#~ msgstr "no se puede ejecutar %s" + +#~ msgid "cannot get processor type" +#~ msgstr "no se puede obtener el tipo de procesador" + +#~ msgid "USER" +#~ msgstr "USUARIO" + +# ¿Qué es eso de MESG? Si se refiere a si la tty acepta mensajes +# (orden mesg), ¿no habría que traducir MENS " o algo así? Porque +# "mensaje" en español no tiene ninguna G.erardo +# Ni idea. Investigarlo. sv +# Lo investigo por ti: un "who --help; who -H -T" te dará la +# pista. Estoy en lo correcto. Cámbialo. gerardo +# Efectivamente, who -H -T es muy esclarecedor. +# Pero no me acaba de convencer. Ese MESG no es necesariamente MENSAJES. +# Yo lo veo como una variable llamada MESG que puede tener dos valores +# distintos, "y" y "n", y que se cambia con la orden mesg. +# ¿Opiniones? +#~ msgid "MESG " +#~ msgstr "MESG " + +#~ msgid "LOGIN-TIME " +#~ msgstr "HORA DE CONEXIÓN " + +#~ msgid "FROM\n" +#~ msgstr "DESDE\n" + +# ¿Por qué no traducís "virtual"? gerardo +# Porque creo que el original está mal... +# Hoy en día todo es virtual... +# Me recuerda los viejos tiempos en los que había memoria convencional, +# extendida, expandida, superior... +# +# ¿Viejos tiempos? Hay muchíiisima gente con el maldito M$-DOG aún, y +# las BIOS siguen diciendo lo de "640 k" de memoria convencional, +# aunque tengas 64 MB. +# +# Me estás dando la razón. ¿Es que no pretendemos alejarnos de todo eso? +# (Tengo entendido que Linux pasa de la BIOS todo lo que puede). sv +# +# Francamente, prefiero pensar en que un programa intenta un malloc(), +# y si no lo consigue, entonces es que se ha agotado la memoria, así +# sin más. ¿qué opinas? sv +# +# Bueno, no es que esté mal, pero cuando el autor pone "virtual", se +# podría dejar, y tampoco estaría mal. Sí, no me recuerdes lo del +# ASCII :-) gerardo +# ¡Es verdad! :-) +# De todas formas esto habría que preguntárselo al gran jefe de GNU (RMS). +#~ msgid "virtual memory exhausted" +#~ msgstr "memoria agotada" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ "\n" +#~ "Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n" +#~ msgstr "" +#~ "\n" +#~ "En vez de `-t N' ó `-t LISTA' puede usarse -N ó -LISTA.\n" + +# ¿Qué tal dejar bien claro que "...en vez de 10 por defecto." aunque no +# ^^^^^^^^^^^ +# esté en la versión english? +# +#~ msgid "" +#~ "\n" +#~ "SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +#~ "If -VALUE is used as first OPTION, read -c VALUE when one of\n" +#~ "multipliers bkm follows concatenated, else read -n VALUE.\n" +#~ msgstr "" +#~ "\n" +#~ "TAMAÑO puede tener un sufijo: `b' para 512, `k' para 1K, `m' para 1 " +#~ "Megabyte.\n" +#~ "Se se utiliza -VALOR como primera OPCIÓN, se entiende como -c VALOR si " +#~ "va\n" +#~ "seguido por uno de los multiplicadores `b', `k' ó `m', si no, se " +#~ "entiende\n" +#~ "como -n VALOR.\n" + +#~ msgid "" +#~ " +POS1 [-POS2] start a key at POS1, end it before POS2 " +#~ "(origin 0)\n" +#~ " Warning: this option is obsolete\n" +#~ msgstr "" +#~ " +POS1 [-POS2] comienza una clave en POS1 y la termina antes\n" +#~ " de POS2. Atención: esta opción está obsoleta\n" + +#~ msgid "" +#~ "A first OPTION of -VALUE\n" +#~ "is treated like -n VALUE unless VALUE has one of the [bkm] suffix\n" +#~ "multipliers, in which case it is treated like -c VALUE.\n" +#~ msgstr "" +#~ "Si la primera\n" +#~ "OPCIÓN es -VALOR se trata como si fuese -n VALOR, a menos que VALOR " +#~ "tenga\n" +#~ "uno de los sufijos mencionados (bkm), en cuyo caso se trata como -c " +#~ "VALOR.\n" + +#~ msgid "" +#~ "A first option of +VALUE is treated like -+VALUE, but this usage is " +#~ "obsolete\n" +#~ "and support for it will be withdrawn.\n" +#~ "\n" +#~ msgstr "" +#~ "Si la primera opción es +VALOR se trata como -+VALOR, pero este uso\n" +#~ "está obsoleto, y su soporte desaparecerá.\n" + +#~ msgid "warning: `tail %s' is obsolete; use -n or -c instead" +#~ msgstr "atención: `tail %s' está obsoleto; utilice -n o -c en su lugar" + +#~ msgid "" +#~ "specified number of bytes `%s' is larger than the maximum\n" +#~ "representable value of type `long'" +#~ msgstr "" +#~ "el número especificado de bytes `%s' es más grande que el valor máximo\n" +#~ "representable de tipo `long'" + +#~ msgid "flushing file" +#~ msgstr "actualizando el fichero" + +#~ msgid "" +#~ "when using the old-style +POS and -POS key specifiers,\n" +#~ "the +POS specifier must come first" +#~ msgstr "" +#~ "cuando se utiliza el estilo de parámetros antiguo con +POS y -POS,\n" +#~ "el primero de ellos debe ser +POS" + +#~ msgid "" +#~ "the starting field number argument to the `-k' option must be positive" +#~ msgstr "" +#~ "el número que especifica el primer campo en la opción `-k' debe\n" +#~ "ser positivo" + +#~ msgid "starting field spec has `.' but lacks following character offset" +#~ msgstr "" +#~ "la especificación del campo de comienzo tiene `.' pero carece de número " +#~ "de\n" +#~ "desplazamiento de caracteres" + +#~ msgid "" +#~ "starting field character offset argument to the `-k' option\n" +#~ "must be positive" +#~ msgstr "" +#~ "el argumento de desplazamiento del campo de comienzo para la opción `-k'\n" +#~ "debe ser positivo." + +#~ msgid "field specification has `,' but lacks following field spec" +#~ msgstr "" +#~ "la especificación de campo tiene `,' pero no constan a continuación las\n" +#~ "especificaciones del campo" + +#~ msgid "ending field number argument to the `-k' option must be positive" +#~ msgstr "el número de campo final para la opción `-k' debe ser positivo" + +# Ídem. ipg +#~ msgid "ending field spec has `.' but lacks following character offset" +#~ msgstr "" +#~ "la especificación del campo de final tiene `.' pero no le sigue un\n" +#~ "desplazamiento de caracteres" + +#~ msgid "%s: cannot follow end of non-regular file" +#~ msgstr "%s: no se puede localizar el final de un fichero no regular" + +#~ msgid "could not find loop" +#~ msgstr "no se puede encontrar un bucle" + +#~ msgid "`%s' has reappeared" +#~ msgstr "`%s' ha reaparecido" + +#~ msgid "`-w PAGE_WIDTH' invalid column number: `%s'" +#~ msgstr "`-w ANCHO_PÁGINA' el número de columna no es válido: `%s'" + +#~ msgid "%s: extra characters in the argument to the `-%c' option: `%s'\n" +#~ msgstr "%s: sobran caracteres en el argumento de la opción `-%c' : `%s'\n" diff --git a/src/apps/bin/coreutils-5.0/po/et.gmo b/src/apps/bin/coreutils-5.0/po/et.gmo new file mode 100644 index 0000000000..5d1e62eae2 Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/et.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/et.po b/src/apps/bin/coreutils-5.0/po/et.po new file mode 100644 index 0000000000..cb18386ba5 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/et.po @@ -0,0 +1,8216 @@ +# Estonian translations for coreutils +# Copyright (C) 2000 Free Software Foundation, Inc. +# Toomas Soome , 2002. +# +msgid "" +msgstr "" +"Project-Id-Version: coreutils 4.5.10\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2003-03-15 16:14+0200\n" +"Last-Translator: Toomas Soome \n" +"Language-Team: Estonian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-15\n" +"Content-Transfer-Encoding: 8-bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "vigane argument %s võtmel `%s'" + +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "segane argument %s võtmele `%s'" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "Lubatud argumendid on:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "viga kirjutamisel" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "Tundmatu süsteemne viga" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "tavaline tühi fail" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "tavaline fail" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "Kataloog" + +#: lib/file-type.c:48 +msgid "block special file" +msgstr "blokkseadme fail" + +#: lib/file-type.c:51 +msgid "character special file" +msgstr "sümbolseadme fail" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "fifo" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "nimeviide" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "sokkel" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "teadete järjekord" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "semafor" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "jagatud mälu objekt" + +#: lib/file-type.c:71 +msgid "weird file" +msgstr "veider fail" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: võti `%s' on segane\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: võti `--%s' ei luba kasutada argumenti\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: võti `%c%s' ei luba kasutada argumenti\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: võti `%s' nõuab argumenti\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: tundmatu võti `--%s'\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: tundmatu võti `%c%s'\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: lubamatu võti -- %c\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: vigane võti -- %c\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: võti nõuab argumenti -- %c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: võti `-W %s' on segane\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: võti `-W %s' ei luba kasutada argumenti\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "bloki suurus" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "esialgsesse töökataloogi ei õnnestu tagasi minna" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "kataloogi `%s' ei õnnestu luua" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "`%s' on olemas, aga ei ole kataloog" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "%s omanikku ja/või gruppi ei õnnestu muuta" + +#: lib/makepath.c:338 +#, c-format +msgid "cannot chdir to directory %s" +msgstr "ei saa minna kataloogi %s" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "ei õnnestu muuta %s õigusi" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "mälu on otsas" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "`" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "'" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[jJ]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[eE]" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "iconv funktsioon ei ole kasutatav" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "iconv funktsioon puudub" + +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "sümbol on piirkonnast väljas" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "U+%04X ei saa lokaalsesse kooditabelisse teisendada" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "U+%04X ei saa lokaalsesse kooditabelisse teisendada: %s" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "vigane kasutaja" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "vigane grupp" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "ei leia numbrilise UID login gruppi" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "ainult kasutajat ja ainult gruppi ei saa trükkida" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "Kirjutanud: %s.\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +"See on vaba tarkvara; kopeerimistingimused leiate lähtetekstidest. Garantii\n" +"PUUDUB; ka müügiks või mingil eesmärgil kasutamiseks, vastavalt seadustega\n" +"lubatud piiridele.\n" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "sõnede võrdlus ebaõnnestus" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "Probleemist mööda saamiseks seadke LC_ALL=C." + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "Võrreldi sõnesid %s ja %s." + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Lisainfo saamiseks proovige `%s --help'.\n" + +#: src/basename.c:54 +#, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"Kasutamine: %s NIMI [SUFIKS]\n" +" või: %s VÕTI\n" + +#: src/basename.c:59 +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" +"Väljasta NIMI ilma eelnevate kataloogideta.\n" +"Kui määratud, eelmalda ka sufiks.\n" +"\n" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"Vigadest teatage palun aadressil <%s>.\n" + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "liiga vähe argumente" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "liiga palju argumente" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "Torbjorn Granlund ja Richard M. Stallman" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "Kasutamine: %s [VÕTI]... [FAIL]...\n" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" +"Liida FAILID või standardsisend standardväljundisse.\n" +"\n" +" -A, --show-all sama, kui -vET\n" +" -b, --number-nonblank mittetühjade väljundridade arv\n" +" -e sama, kui -vE\n" +" -E, --show-ends näita iga rea lõpus $\n" +" -n, --number kõikide väljundridade arv\n" +" -s, --squeeze-blank korraga ei väljasta üle ühe tühja rea\n" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" +" -t sama, kui -vT\n" +" -T, --show-tabs esita TAB süboleid kui ^I\n" +" -u (ignoreeritakse)\n" +" -v, --show-nonprinting kasuta ^ ja M- notatsiooni, v.a LFD ja TAB " +"korral\n" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"Kui FAIL puudub või on -, loe standardsisendit.\n" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" +"\n" +" -B, --binary kirjuta konsooliseadmele kahendmoodis.\n" +"\n" + +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "ioctl `%s' ei õnnestu" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "standardväljund" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s: sisendfail on väljundfail" + +#: src/cat.c:858 +msgid "closing standard input" +msgstr "sulen standardsisendi" + +#: src/cat.c:861 +msgid "closing standard output" +msgstr "sulen standardväljundi" + +#: src/chgrp.c:93 +msgid "cannot change to null group" +msgstr "gruppi ei saa eemaldada" + +#: src/chgrp.c:102 +#, c-format +msgid "invalid group name %s" +msgstr "vigane grupi nimi %s" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "grupi number" + +#: src/chgrp.c:109 +#, c-format +msgid "invalid group number %s" +msgstr "vigane grupi number %s" + +#: src/chgrp.c:126 +#, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Kasutamine: %s [VÕTI]... GRUPP FAIL\n" +" või: %s [VÕTI]... --reference=VFAIL FAIL...\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Muuda iga antud FAILi grupikuuluvust.\n" +"\n" +" -c, --changes teavita ainult muutustest\n" +" --dereference muuda nimeviite poolt viidatatvat, mitte viidet\n" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" +" -h, --no-dereference muuda viidatava asemel nimeviidet\n" +" (kasutatav süsteemides, kus saab muuta nimeviite\n" +" omanikku)\n" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet vaiki enamus vigadest\n" +" --reference=VFAIL kasuta esitatud grupi asemel VFAIL gruppi\n" +" -R, --recursive töötle faile ja katalooge rekursiivselt\n" +" -v, --verbose väljasta infot iga töödeldava faili kohta\n" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, c-format +msgid "failed to get attributes of %s" +msgstr "%s atribuutide lugemine ebaõnnestus" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "loen %s uusi atribuute" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "%s õigused on nüüd %04lo (%s)\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "ei õnnestu %s õiguste muutmine olekusse %04lo (%s)\n" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "%s õigused jäeti %04lo (%s)\n" + +#: src/chmod.c:179 +#, c-format +msgid "changing permissions of %s" +msgstr "muudan %s õigusi" + +#: src/chmod.c:242 +#, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Kasutamine: %s [VÕTI]... MOOD[,MOOD]... FAIL\n" +" või: %s [VÕTI]... KAHEKSAND-MOOD FAIL...\n" +" või: %s [VÕTI]... --reference=VFAIL FAIL...\n" + +#: src/chmod.c:248 +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"Muuda iga antud faili õiguseid.\n" +"\n" +" -c, --changes teavita ainult muutustest\n" +" -f, --silent, --quiet vaiki enamus vigadest\n" +" -v, --verbose väljasta infot iga töödeldava faili kohta\n" +" --reference=VFAIL kasuta esitatud õiguste asemel VFAIL õiguseid\n" +" -R, --recursive töötle faile ja katalooge rekursiivselt\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" +"\n" +"Iga MOODUS on üks või enam täht hulgast ugoa, üks sümbolitest +-= ja\n" +"üks või enam täht hulgast rwxXstugo.\n" + +#: src/chmod.c:320 +#, c-format +msgid "invalid character %s in mode string %s" +msgstr "vigane sümbol %s moodi sõnes %s" + +#: src/chmod.c:361 +#, c-format +msgid "invalid mode string: %s" +msgstr "vigane moodi sõne: %s" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "nii nimeviide %s kui ka viidatav fail jäeti muutmata\n" + +#: src/chown-core.c:143 +#, c-format +msgid "changed ownership of %s to %s\n" +msgstr "muutsin %s omanikuks %s\n" + +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "muutsin %s omanikgrupiks %s\n" + +#: src/chown-core.c:148 +#, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "ei õnnestu seada %s omanikuks %s\n" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "%s grupi muutmine grupiks %s ebaõnnestus\n" + +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "%s omanik säilitati kui %s\n" + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "%s grupp säilitati kui %s\n" + +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "muudan %s omanikku" + +#: src/chown-core.c:327 +#, c-format +msgid "changing group of %s" +msgstr "muudan %s gruppi" + +#: src/chown-core.c:345 +#, c-format +msgid "unable to restore permissions of %s" +msgstr "ei õnnestu taastada %s õigusi" + +#: src/chown.c:99 +#, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Kasutamine: %s [VÕTI]... OMANIK[:[GRUPP]] FAIL...\n" +" või: %s [VÕTI]... :GRUPP FAIL...\n" +" või: %s [VÕTI]... --reference=VFAIL FAIL...\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Muuda iga antud faili omanikku ja/või gruppi.\n" +"\n" +" -c, --changes teavita ainult muutustest\n" +" --dereference muuda nimeviite poolt viidatatvat, mitte viidet\n" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" +" --from=PRAEGUNE_OMANIK:PRAEGUNE_GRUPP\n" +" muuda iga antuf faili omanikku ja/või gruppi " +"ainult\n" +" juhul, kui kehtiv omanik ja/või grupp on samad\n" +" siin esitatutega. Emb-kumb võib olla ära jäetud,\n" +" sellisel juhul ei nõuta puuduva attribuudi " +"sobivust.\n" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet vaiki enamus vigadest\n" +" --reference=VFAIL kasuta esitatud OMANIK:GRUPP asemel VFAIL\n" +" omanikku ja gruppi\n" +" -R, --recursive töötle faile ja katalooge rekursiivselt\n" +" -v, --verbose väljasta infot iga töödeldava faili kohta\n" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" +"\n" +"Omanikku ei muudeta, kui ei ole määratud. Gruppi ei muudeta, kui ei ole\n" +"määratud, kui muudetakse primaarseks grupiks, kui kasutatakse sümbolit `:'.\n" +"Omanik ja grupp võivad olla antud nii numbrina kui ka nimena.\n" + +#: src/chroot.c:45 +#, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"Kasutamine: %s UUSJUUR [KÄSK...]\n" +" või: %s VÕTI\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" +"Käivita KÄSK kasutades juurkataloogina kataloogi UUSJUUR.\n" +"\n" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" +"\n" +"Kui käsklust ei antud, käivita ``${SHELL} -i'' (vaikimisi: /bin/sh).\n" + +#: src/chroot.c:84 +#, c-format +msgid "cannot change root directory to %s" +msgstr "%s ei õnnestu juurkataloogiks seada" + +#: src/chroot.c:87 +msgid "cannot chdir to root directory" +msgstr "ei saa minna juurkataloogi" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "%s: fail on liiga suur" + +#: src/cksum.c:282 +#, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"Kasutamine: %s [FAIL]...\n" +" või: %s [VÕTI]\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" +"Väljasta iga FAILI kohta CRC kontrollsumma ja baitide arv.\n" +"\n" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "Richard Mlynarik ja David MacKenzie" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "Kasutamine: %s [VÕTI]... VASAK_FAIL PAREM_FAIL\n" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" +"Võrdle ridahaaval järjestatud faile VASAK_FAIL ja PAREM_FAIL.\n" +"\n" +" -1 jäta vahele read, mis on ainult vasakus failis\n" +" -2 jäta vahele read, mis on ainult paremas failis\n" +" -3 jäta vahele read, mis on mõlemas failis\n" + +#: src/copy.c:162 src/du.c:332 +#, c-format +msgid "cannot access %s" +msgstr "%s ei saa kasutada" + +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "ei õnnestu avada %s lugemiseks" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, c-format +msgid "cannot fstat %s" +msgstr "fstat %s ei õnnestu" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "jätan %s vahele, kuna see asendati kopeerimise ajal" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, c-format +msgid "cannot remove %s" +msgstr "%s ei saa kustutada" + +#: src/copy.c:277 +#, c-format +msgid "cannot create regular file %s" +msgstr "ei õnnestu luua tavalist faili %s" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, c-format +msgid "reading %s" +msgstr "loen %s" + +#: src/copy.c:362 +#, c-format +msgid "cannot lseek %s" +msgstr "lseek %s ei õnnestu" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, c-format +msgid "writing %s" +msgstr "kirjutan %s" + +#: src/copy.c:409 src/copy.c:415 +#, c-format +msgid "closing %s" +msgstr "sulgen %s" + +#: src/copy.c:610 +#, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: kirjutan %s üle, kirjutan üle ka õigused %04lo? " + +#: src/copy.c:616 +#, c-format +msgid "%s: overwrite %s? " +msgstr "%s: kirjutan %s üle? " + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, c-format +msgid "cannot stat %s" +msgstr "stat %s ei õnnestu" + +#: src/copy.c:820 +#, c-format +msgid "omitting directory %s" +msgstr "jätan kataloogi %s vahele" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "hoiatus: lähtefail %s on esitatur enam kui korra" + +#: src/copy.c:866 src/ln.c:237 +#, c-format +msgid "%s and %s are the same file" +msgstr "%s ja %s on üks ja sama fail" + +#: src/copy.c:876 +#, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "ei saa üle kirjutada mitte-katataloogi %s kataloogiga %s" + +#: src/copy.c:893 +#, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "ei kirjuta üle just loodud faili %s failiga %s" + +#: src/copy.c:904 +#, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "kataloogi %s ei saa üle kirjutada mitte kataloogiga" + +#: src/copy.c:965 +#, c-format +msgid "cannot overwrite directory %s" +msgstr "kataloogi %s ei saa üle kirjutada" + +#: src/copy.c:974 +#, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "kataloogi ei saa tõsta mitte-kataloogi: %s -> %s" + +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "%s varundamine hävitaks allika; %s ei teisaldatud" + +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "%s varundamine hävitaks allika; %s ei kopeeritud" + +#: src/copy.c:1013 src/ln.c:273 +#, c-format +msgid "cannot backup %s" +msgstr "ei õnnestu luua %s varukoopiat" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr " (varukoopia: %s)" + +#: src/copy.c:1099 +#, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "kataloogi %s ei saa iseendasse, %s, kopeerida" + +#: src/copy.c:1106 +#, c-format +msgid "will not create hard link %s to directory %s" +msgstr "ei loo viidet %s kataloogile %s" + +#: src/copy.c:1132 +#, c-format +msgid "cannot create hard link %s to %s" +msgstr "ei õnnestu luua viidet %s -> %s" + +#: src/copy.c:1186 +#, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "%s ei saa tõsta iseenda alamkataloogi %s" + +#: src/copy.c:1229 +#, c-format +msgid "cannot move %s to %s" +msgstr "ei õnnestu tõsta %s -> %s" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "" +"seadmete-vaheline teisaldamine ebaõnnestus: %s -> %s; allikat ei saa " +"kustutada" + +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "tsüklilist nimeviita %s ei õnnestu kopeerida" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "%s: suhtelisi nimeviiteid saab luua ainult jooksvas kataloogis" + +#: src/copy.c:1353 +#, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "ei õnnestu luua nimeviidet %s -> %s" + +#: src/copy.c:1364 +#, c-format +msgid "cannot create link %s" +msgstr "ei õnnestu luua viidet %s" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, c-format +msgid "cannot create fifo %s" +msgstr "ei õnnestu luua fifot %s" + +#: src/copy.c:1403 +#, c-format +msgid "cannot create special file %s" +msgstr "ei õnnestu luua seadmefaili %s" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, c-format +msgid "cannot read symbolic link %s" +msgstr "ei õnnestu lugeda nimeviidet %s" + +#: src/copy.c:1440 +#, c-format +msgid "cannot create symbolic link %s" +msgstr "ei õnnestu luua nimeviidet %s" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, c-format +msgid "failed to preserve ownership for %s" +msgstr "%s omanikku ei õnnestu säilitada" + +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "%s on tundmatut tüüpi fail" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "jätan %s ajad muutmata" + +#: src/copy.c:1531 +#, c-format +msgid "failed to preserve authorship for %s" +msgstr "%s autorit ei õnnestu säilitada" + +#: src/copy.c:1549 +#, c-format +msgid "setting permissions for %s" +msgstr "sean %s õigusi" + +#: src/copy.c:1571 src/ln.c:326 +#, c-format +msgid "cannot un-backup %s" +msgstr "%s ei saa taastada" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s -> %s (taastamine)\n" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "Torbjorn Granlund, David MacKenzie ja Jim Meyering" + +#: src/cp.c:164 src/mv.c:311 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"Kasutamine: %s [VÕTI]... ALG SIHT\n" +" või: %s [VÕTI]... ALG... KATALOOG\n" +" või: %s [VÕTI]... --target-directory=KATALOOG ALG\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Kopeeri allikas sihtpunkti või kataloogi või mitu allikat kataloogi.\n" +"\n" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" +"Kohustuslikud argumendid pikkadele võtmetele on kohustuslikud ka " +"lühikestele.\n" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" +" -a, --archive sama kui -dpR\n" +" --backup[=KONTROLL] loo igast olemasolevast sihtfailist " +"varukoopia\n" +" -b nagu --backup aga ei kasuta argumenti\n" +" --copy-contents rekursiivses moodis kopeeri spets failide " +"sisu\n" +" -d sama kui --no-dereference --preserve=link\n" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" +" --no-dereference ära järgi nimeviiteid\n" +" -f, --force kui olemasolevat sihtfaili ei saa avada,\n" +" eemalda see ja proovi uuesti\n" +" -i, --interactive küsi enne ülekirjutamist\n" +" -H järgi käsureal antud nimeviiteid\n" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" +" -l, --link kopeerimise asemel loo failidele viited\n" +" -L, --dereference järgi alati nimeviiteid\n" +" -p sama kui --preserve=mode,ownership," +"timestamps\n" +" --preserve[=ATR_LOEND] säilita, kui võimalik, antud atribuudid\n" +" (vaikimisi: mode,ownership,timestamps)\n" +" täiendavad atribuudid: links, all\n" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" +" --no-preserve=ATR_LOEND ära säilita antud atribuute\n" +" --parents lisa allika tee kataloogi ette\n" +" -P sama kui `--no-dereference'\n" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" +" -R, -r, --recursive kopeeri kataloogid rekursiivselt\n" +" --remove-destination eemalda iga sihtfail enne selle avamist\n" +" (vastupidiselt võtmele --force)\n" + +#: src/cp.c:209 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +" --reply={yes,no,query} määra, kuidas vastata küsimustele\n" +" olemasolevate sihtfailide kohta\n" +" --sparse=MILLAL aukudega failide loomise tingimused\n" +" --strip-trailing-slashes eemalda igalt käsureal antud nimelt\n" +" lõpus olevad kaldkriipsud\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" +" -s, --symbolic-link loo kopeerimise asemel nimeviited\n" +" -S, --suffix=SUFIKS määra varukoopia järelliide\n" +" --target-directory=KATALOOG tõsta kõik antud allikad kataloogi\n" + +#: src/cp.c:221 +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +" -u, --update kopeeri ainult, kui allikas on uuem, kui\n" +" sihtfail või kui sihtfail puudub\n" +" -v, --verbose selgita, mis toimub\n" +" -x, --one-file-system püsi selles failisüsteemis\n" + +#: src/cp.c:230 +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +"\n" +"Vaikimisi üritatakse tuvastada aukudega faile robustse heuristilise\n" +"meetodiga ning vastav sihtfail luuakse samuti aukudega. Sellise käitumise\n" +"määrab võti --sparse=auto. Kasutage --sparse=always, et luua aukudega\n" +"sihtfail alati, kui lähefail sisaldab piisavalt pika järjendi null baite.\n" +"--sparse=never blokeerib aukudega failide loomise.\n" +"\n" + +#: src/cp.c:239 +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"Varukoopia sufiks on `~', kui seda ei ole muudetud võtmega --suffix või\n" +"keskkonnamuutujaga SIMPLE_BACKUP_SUFFIX. Versioonikontrolli meetodit saab\n" +"valida võtmega --backup või keskonnamuutujaga VERSION_CONTROL. Võimalikud\n" +"väärtused on järgnevad:\n" +"\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +" none, off varukoopiaid ei looda (isegi kui kasutati võtit --backup)\n" +" numbered, t loo nummerdatud varukoopiad\n" +" existing, nil nummerdatud, kui neid on, muidu lihtne\n" +" simple, never loo alati lihtsaid varukoopiaid\n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +"Erijuhuna loob cp varukoopia ka kopeeritavast, kui on kasutatud võtmeid\n" +"force ja backup ning ALLIKAS ja SIHT on sama nimi olemasoleval tavalisel\n" +"failil.\n" + +#: src/cp.c:325 +#, c-format +msgid "failed to preserve times for %s" +msgstr "%s aegu ei õnnestu säilitada" + +#: src/cp.c:349 +#, c-format +msgid "failed to preserve permissions for %s" +msgstr "%s õigusi ei õnnestu säilitada" + +#: src/cp.c:434 +#, c-format +msgid "cannot make directory %s" +msgstr "kataloogi %s ei õnnestu luua" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +msgid "missing file argument" +msgstr "argumentides puudub failinimi" + +#: src/cp.c:498 +msgid "missing destination file" +msgstr "sihtfail on puudu" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "kasutan %s" + +#: src/cp.c:546 +#, c-format +msgid "%s: specified target is not a directory" +msgstr "%s: antud siht ei ole kataloog" + +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "" +"üritan kopeerida mitut faili, kuid viimane argument, %s, ei ole kataloog" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "teede säilitamisel peab sihtkoht olema kataloog" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"Hoiatus: --version-control (-V) on aegunud; toetus sellele võtmele\n" +"eemaldatakse tulevikus. Kasutage selle asemel --backup=%s." + +#: src/cp.c:972 src/ln.c:464 +msgid "symbolic links are not supported on this system" +msgstr "nimeviidad ei ole selles süsteemis toetatud" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "ei õnnestu luua ei tavalist ega nimeviita" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "varukoopia tüüp" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "Stuart Kemp ja David MacKenzie" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "viga lugemisel" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "sisend kadus" + +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s: rea number on piirkonnast väljas" + +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: `%s': rea number on piirkonnast väljas" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr " %d kordamisel\n" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s: `%s': sobivat ei leitud" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "viga regulaaravaldisega otsingul" + +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "viga `%s' kirjutamisel" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "%s: eraldaja järel oodatakse `+' või `-'" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s: `%c' järel oodati täisarvu" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "%s: korduste arvuga peab kasutama `}'" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "%s}: `{' ja `}' vahel peab olema täisarv" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s: puudub sulgev eraldaja `%c'" + +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: vigane regulaaravaldis: %s" + +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "%s: vigane muster" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s: rea number peab olema suurem kui null" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "rea number `%s' on väiksem, kui eelneva rea number, %s" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "hoiatus: rea number `%s' on sama, kui eelneva rea number" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "sufiksis puudub teisenduse määrang" + +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "vigane teisenduse määraja sufiksis: %c" + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "vigane teisenduse määraja sufiksis: \\%.3o" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "sufiksis puudub %% teisenduse määrang" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "sufiksis on liiga palju %% teisenduse määranguid" + +#: src/csplit.c:1441 +#, c-format +msgid "%s: invalid number" +msgstr "%s: vigane number" + +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "Kasutamine: %s [VÕTI]... FAIL MUSTER...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" +"Väljasta MUSTRI põhjal tükeldatud FAILi tükid failidesse `xx01', " +"`xx02', ...\n" +"ja väljasta standardväljundisse iga osa suurus baitides.\n" +"\n" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" +" -b, --suffix-format=VORMING kasuta %d asemel sprintf VORMINGUT\n" +" -f, --prefix=PREFIKS kasuta `xx' asemel PREFIKS\n" +" -k, --keep-files vigade korral jäta väljundfailid kustutamata\n" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" +" -n, --digits=NUMBREID kasuta 2 asemel antud arvu numbreid\n" +" -s, --quiet, --silent ära väljasta väljundfailide mahte\n" +" -z, --elide-empty-files kustuta tühjad väljundfailid\n" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" +"\n" +"Kui FAIL on -, loe standardsisendit. Iga MUSTER võib olla:\n" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" +"\n" +" TÄISARV kopeeri kuni, aga mitte kaasa arvatud, antud " +"reanumbrini\n" +" /REGAV/[NIHE] kopeeri kuni, aga mitte kaasa arvatud, sobiva reani\n" +" %REGAV%[NIHE] jäta vahele kuni, aga mitte kaasa arvatud, sobiva " +"reani\n" +" {TÄISARV} korda eelmist mustrit antud arv kordi\n" +" {*} korda eelmist mustrit niipalju kui võimalik\n" +"\n" +"Rea NIHE peab olema kujul `+' või`-', millele järgneb positiivne täisarv.\n" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie ja Jim Meyering" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "Kasutamine: %s [VÕTI]... [FAIL]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" +"Väljasta igast FAIList valitud osad standardväljundisse.\n" +"\n" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" +" -b, --bytes=LOEND väljasta ainult need baidid\n" +" -c, --characters=LOEND väljasta ainult need sümbolid\n" +" -d, --delimiter=ERALD määra TAB asemel väljade eraldaja\n" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" +" -f, --fields=LOEND väljasta ainult need väljad; väljasta samuti\n" +" kõik read, mis ei sisalda eraldavat sümbolit,\n" +" välja arvatu juhul, kui kasutati võtit -s\n" +" -n (ignoreerin)\n" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" +" -s, --only-delimited ära väljasta eraldajata ridu\n" +" --output-delimiter=SÕNE kasuta väljundis eraldajana SÕNE\n" +" vaikimisi kasutatakse sisendi eraldajat\n" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"Kasutage ühte ja ainult ühte võtit järgnevaist -b, -c või -f. Iga LOEND\n" +"koosneb vahemikust või komadega eraldatud vahemikest. Iga vahemik on üks\n" +"järgnevaist:\n" +"\n" +" N N-is bait, sümbol või väli, loendamist alustatakse ühest\n" +" N- N-indast baidist, sümbolist või väljast rea lõpuni\n" +" N-M alates N kuni M (kaasa arvatud) baiti, sümbolit või välja\n" +" -M esimesest kuni M-nda (kaasa arvatud) baidi, sümboli või väljani\n" +"\n" +"Kui FAIL puudub või on -, loeb standardsisendit.\n" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "vigane baitide või väljade loend" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "lubatud on ainult sama tüüpi loend" + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "puudub asukohtade loend" + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "puudub väljade loend" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "eraldaja peab olema üks sümbol" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "peate määrama baitide, sümbolite või väljade loendi" + +#: src/cut.c:720 +msgid "an input delimiter may be specified only when operating on fields" +msgstr "sisendi eraldajat saab määrata ainult juhul kui töötatakse väljadega" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" +"eraldamata ridade blokeerimine omab mõtet ainult\n" +"\tväljadega töötamise puhul" + +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" +"Kasutamine: %s [VÕTI]... [+FORMAAT]\n" +" või: %s [-u|--utc|--universal] [KKPPttmm[[SS]AA][.ss]]\n" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" +"Näita jooksvat aega vastavalt antud formaadile või sea süsteemi aeg.\n" +"\n" +" -d, --date=SÕNE näita SÕNEga kirjeldatud aega, mitte praegust\n" +" -f, --file=KPFAIL nagu --date, aga ajad loe igalt KPFAIL realt\n" +" -I, --iso-8601[=AJASPETS] väljasta ISO-8601 kuup./kellaaeg sõne.\n" +" AJASPETS=`date' (või puudub) ainult kuupäeva,\n" +" `hours', `minutes' või `seconds' nii kuupäeva,\n" +" kui kellaaja täpsuse määramiseks.\n" +" --iso-8601 ajamääranguta kasutab väärtust " +"`date'.\n" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" +" -r, --reference=FAIL näita FAILi viimast muutmise aega\n" +" -R, --rfc-822 väljasta RFC-822 ühilduv kuupäeva sõne\n" +" -s, --set=SÕNE sea SÕNEga määratud aeg\n" +" -u, --utc, --universal esita või sea koordineeritud universaalaeg\n" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" +"\n" +"FORMAAT kontrollib väljundit. Ainus lubatud võti teise vormiga määrab\n" +"koordineeritud universaalaja. Interpreteeritavad järjendid on:\n" +"\n" +" %% sümbol %\n" +" %a lokaadi lühendatud nädalapäeva nimi (P..L)\n" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" +" %A lokaadi nädalapäeva nimi, muutuv pikkus (pühapäev..laupäev)\n" +" %b lokaadi lühendatud kuu nimi (jaan..dets)\n" +" %B lokaadi kuu nimi (jaanuar..detsember)\n" +" %c lokaadi kuupäev ja aeg (teisipäev, 25. juuni 2002. 12:11:55 EEST)\n" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" +" %C sajand (aasta jagatud 100 ja võetud täisosa) [00-99]\n" +" %d päev kuus (01..31)\n" +" %D kuupäev (kk/pp/aa)\n" +" %e päev kuus, täiendatud tühikuga ( 1..31)\n" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" +" %F sama kui %Y-%m-%d\n" +" %g 2-numbriga aasta, mis vastab nädalale numbriga %V\n" +" %G 4-numbriga aasta, mis vastab nädalale numbriga %V\n" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" +" %h sama kui %b\n" +" %H tund (00..23)\n" +" %I tund (01..12)\n" +" %j päev aastas (001..366)\n" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" +" %k tund ( 0..23)\n" +" %l tund ( 1..12)\n" +" %m kuu (01..12)\n" +" %M minut (00..59)\n" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" +" %n reavahetus\n" +" %N nanosekundeid (000000000..999999999)\n" +" %p lokaadi suurtähtedega AM või PM tähis (paljudes lokaatides tühi)\n" +" %P lokaadi väiketähtedega am või pm tähis (paljudes lokaatides tühi)\n" +" %r aeg, 12-tunni esitus (tt:mm:ss [AP]M)\n" +" %R aeg, 24-tunni esitus (tt:mm)\n" +" %s sekundeid alates `00:00:00 1970-01-01 UTC' (GNU laiendus)\n" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" +" %S sekund (00..60); 60 on vajalik liigsekundi näitamiseks\n" +" %t horisontaalne tabulaator\n" +" %T aeg, 24-tunni esitus (tt:mm:ss)\n" +" %u nädalapäev (1..7); 1 esitab esmaspäeva\n" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" +" %U nädala number aastas, pühapäev nädala esimene päev (00..53)\n" +" %V nädala number aastas, esmaspäev nädala esimene (01..53)\n" +" %w päev nädalas (0..6); 0 esitab pühapäeva\n" +" %W nädala number aastas, esmaspäev nädala esimene (00..53)\n" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" +" %x lokaadi kuupäeva esitus (kk.pp.aa)\n" +" %X lokaadi aja esitus (%H:%M:%S)\n" +" %y aasta kaks viimast numbrit (00..99)\n" +" %Y aasta (1970...)\n" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" +" %z RFC-822 stiilis numbriline ajatsoon (-0200) (ebastandartne laiendus)\n" +" %Z ajatsoon (n., EET) või tühi, kui ei õnnestu tuvastada\n" +"\n" +"Vaikimisi täidab date numbriväljad nullidega. GNU date tunneb ka järgnevaid\n" +"täiendajaid % ja numbriväärtusega direktiivi vahel.\n" +"\n" +" `-' (kriips) ära täienda välja\n" +" `_' (alakriips) täienda välja tühikutega\n" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "standardsisend" + +#: src/date.c:268 src/date.c:460 +#, c-format +msgid "invalid date `%s'" +msgstr "vigane kuupäev `%s'" + +#: src/date.c:364 +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "väljastatava ajaformaadi võtmed on üksteist välistavad" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "aja seadmise ja väljastamise võtmeid ei saa koos kasutada" + +#: src/date.c:377 +#, c-format +msgid "too many non-option arguments: %s%s" +msgstr "liiga palju argumente, mis ei ole võtmed: %s%s" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" +"argumendil `%s' puudub ees `+';\n" +"Kui soovite väljastada aega, peavad argumendid, mis ei ole võtmed,\n" +"olema formaati määravad sõned, mis algavad sümboliga `+'." + +#: src/date.c:397 +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "võtme --rfc-822 (-R) võtme kasutamisel ei saa formaadisõnet kasutada" + +#: src/date.c:433 +msgid "undefined" +msgstr "defineerimata" + +#: src/date.c:435 +msgid "cannot get time of day" +msgstr "ei õnnestu lugeda kuupäeva ja kellaaega" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "kuupäeva ja kellaaega ei õnnestu seada" + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "Paul Rubin, David MacKenzie ja Stuart Kemp" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "Kasutamine: %s [VÕTI]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" +"Kopeeri fail, teisendades ja vormindades seda vastavalt võtmetele.\n" +"\n" +" bs=BAITE sea ibs=BAITE ja obs=BAITE\n" +" cbs=BAITE teisenda BAITE baiti korraga\n" +" conv=VÕTMESÕNAD teisenda fail vastavalt komadega eraldatud võtmetele\n" +" count=PLOKKE kopeeri ainult PLOKKE sisendplokki\n" +" ibs=BAITE loe BAITI baiti korraga\n" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" +" if=FAIL loe standardsisendi asemel faili\n" +" obs=BAITI kirjuta BAITI baiti korraga\n" +" of=FAIL kirjuta standardväljundi asemel faili\n" +" seek=PLOKKI jäta PLOKKI obs mahus plokke väljundisse kirjutamata\n" +" skip=PLOKKI jäta PLOKKI ibs mahus plokke sisendist lugemata\n" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" +"\n" +"PLOKID ja BAIDID võivad kasutada ka järgnevaid kordavaid sufikseid:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824 ja nii edasi sümbolitele T, P, E, Z, Y.\n" +"Iga VÕTMESÕNA võib olla:\n" +"\n" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" +" ascii tabelist EBCDIC tabelisse ASCII\n" +" ebcdic tabelist ASCII tabelisse EBCDIC\n" +" ibm tabelist ASCII alternatiivsesse EBCDIC tabelisse\n" +" block täienda reavahetusega lõpetatud kirjed tühikutega cbs-mahtu\n" +" unblock asenda cbs-mahus blokkides lõpetavad tühikud reavahetusega\n" +" lcase asenda suurtähed väiketähtedega\n" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" +" notrunc ära lühenda väljundfaili\n" +" ucase asenda väiketähed suurtähtedega\n" +" swab vaheta iga sisenbaidi paar\n" +" noerror jätka ka peale lugemisvigu\n" +" sync täienda iga sisendplokk nullidega ibs-mahtu; kui kasutatakse\n" +" block või unblock, täienda tühikutega\n" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "%s+%s kirjet loetud\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "%s+%s kirjet kirjutatud\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "lühendatud kirje" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "lühendatud kirjed" + +#: src/dd.c:382 +#, c-format +msgid "closing input file %s" +msgstr "sulgen sisendfaili %s" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "sulgen väljundfaili %s" + +#: src/dd.c:469 +#, c-format +msgid "writing to %s" +msgstr "kirjutan faili %s" + +#: src/dd.c:501 +#, c-format +msgid "invalid conversion: %s" +msgstr "vigane teisendus: %s" + +#: src/dd.c:557 +#, c-format +msgid "unrecognized option %s" +msgstr "tundmatu võti %s" + +#: src/dd.c:610 +#, c-format +msgid "unrecognized option %s=%s" +msgstr "tundmatu võti %s=%s" + +#: src/dd.c:616 +#, c-format +msgid "invalid number %s" +msgstr "vigane number %s" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"ainult üks teisendus järgnevaist: {ascii,ebcdic,ibm}, {lcase,ucase}, {block," +"unblock}, {unblock,sync}" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" +"hoiatus: kasutan lseek funktsiooni tuuma vea tõttu alternatiivset meetodit,\n" +"fail (%s) mt_type=0x%0lx -- tüüpide nimekirja leiate " + +#: src/dd.c:1170 src/dd.c:1188 +#, c-format +msgid "opening %s" +msgstr "avan %s" + +#: src/dd.c:1196 +msgid "file offset out of range" +msgstr "failiviit on piirkonnast väljas" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "liigun %s baiti üle lõpu väljundfailis %s" + +#: src/df.c:49 +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "Torbjorn Granlund, David MacKenzie, Larry McVoy ja Paul Eggert" + +#: src/df.c:153 +msgid "Filesystem Type" +msgstr "Failisüsteem Tüüp" + +#: src/df.c:155 +msgid "Filesystem " +msgstr "Failisüsteem " + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr " I-kirjeid IKasut IVaba IKas%%" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Maht Kasut Vaba Kas%%" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Maht Kasut Vaba Kas%%" + +#: src/df.c:167 +#, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr " %4s-plokki Kasut Vaba Maht" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr "%4s-blokke Kasut Vaba Kas%%" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr " Haagitud\n" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" +"Esita informatsioon failisüsteemidest, milles iga antud fail asub.\n" +"Vaikimisi esita infot igast haagitud failisüsteemist.\n" +"\n" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" +" -a, --all ka 0 ploki suurused failisüsteemid\n" +" --block-size=MAHT kasuta määratud ploki suurust\n" +" -h, --human-readable väljasta suurused inimesele loetavalt (n. 1K 234M " +"2G)\n" +" -H, --si sama, kui kasuta 1000 kordseid, mitte 1024\n" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" +" -i, --inodes väljasta plokkide asemel i-kirjete info\n" +" -k, --kilobytes sama kui --block-size=1K\n" +" -l, --local näita ainult lokaalseid failisüsteeme\n" +" --no-sync enne info lugemist ära kasuta synci (vikimisi)\n" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" +" -P, --portability kasuta POSIX väljundi vormingut\n" +" --sync enne info lugemist käivita sync\n" +" -t, --type=TÜÜP väljasta info antud tüüpi failisüsteemidest\n" +" -T, --print-type väljasta failisüsteemi tüüp\n" +" -x, --exclude-type=TÜÜP ära väljasta infot antud tüüpi failisüsteemidest\n" +" -v (ignoreeritakse)\n" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" +"\n" +"MAHT võib olla (või võib olla number, millele võib järgneda) üks " +"järgnevaist:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576 ja nii edasi tähtedega\n" +"G, T, P, E, Z, Y.\n" + +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "failisüsteemi tüüp %s on nii valitute kui ka väljaarvatute nimekirjas" + +#: src/df.c:903 +msgid "Warning: " +msgstr "Hoiatus: " + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "%s külgehaagitud failisüsteemide tabeli lugemine ei õnnestu" + +#: src/dircolors.c:103 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "Kasutamine: %s [VÕTI]... [FAIL]\n" + +#: src/dircolors.c:104 +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"LS_COLORS keskkonnamuutujat seadvad väljundkäsud.\n" +"\n" +"Määra väljundi vorming:\n" +" -b, --sh, --bourne-shell väljasta LS_COLORS seadmiseks Bourne shell " +"kood\n" +" -c, --csh, --c-shell väljasta LS_COLORS seadmiseks C shell kood\n" +" -p, --print-database väljasta vaikeväärtused\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" +"\n" +"Kui on antud FAIL, loe sealt failitüüpide ja laienditega kasutatavad\n" +"värvid. Muidu kasuta vaikimisi andmebaasi. Infot failide vormingu kohta\n" +"saate käsuga `dircolors --print-database'.\n" + +#: src/dircolors.c:299 +#, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s:%lu: vigane rida; teine märgis puudub" + +#: src/dircolors.c:371 +#, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s:%lu: tundmatu võtmesõna %s" + +#: src/dircolors.c:372 +msgid "" +msgstr "" + +#: src/dircolors.c:467 +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" +"võtmed dircolor sisemise andmebaasi väljastamiseks ja shelli süntaksi\n" +"valimiseks on üksteist välistavad" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" +"FAIL argumente ei saa kasutada koos võtmega väljastada\n" +"dircolors sisemine andmebaas" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "puudub keskkonnamuutuja SHELL, samuti ei ole määratud shelli tüüpi" + +#: src/dirname.c:33 src/pathchk.c:59 +msgid "David MacKenzie and Jim Meyering" +msgstr "David MacKenzie ja Jim Meyering" + +#: src/dirname.c:46 +#, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"Kasutamine: %s NIMI\n" +" või: %s VÕTI\n" + +#: src/dirname.c:51 +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" +"Trüki NIMI, millest on viimane komponent eemaldatud; kui nimes ei ole\n" +"sümboleid `/', väljasta `.' (mis tähistab jooksvat kataloogi).\n" +"\n" + +#: src/du.c:49 +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert ja Jim Meyering" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" +"Summeeri iga faili kettakasutus, kataloogid rekursiivselt.\n" +"\n" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" +" -a, --all väljasta loendurid kõikidele failidele\n" +" --apparent-size väljasta ketta kasutamise asemel nähtav suurus; " +"kuigi\n" +" nähtav suurus on tavaliselt väiksem, võib see olla\n" +" tegelikkuses ka suurem tänu aukudega failidele, " +"sise-\n" +" misele fragmenteerumisele, kaudsetele blokkidele " +"jms\n" +" -B, --block-size=MAHT kasuta määratud ploki suurust\n" +" -b, --bytes väljasta maht baitides\n" +" -c, --total väljasta kogumaht\n" +" -D, --dereference-args kasuta nimeviidete korral viidatavaid\n" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" +" -h, --human-readable väljasta suurused inimesele loetavalt (n. 1K 234M " +"2G)\n" +" -H, --si sama, kuid kasuta 1000 kordseid, mitte 1024\n" +" -k, --kilobytes sama, kui --block-size=1K\n" +" -l, --count-links loenda viiteid eraldi failidena\n" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" +" -L, --dereference kasuta nimeviidete korral viidatavaid\n" +" -S, --separate-dirs ära arvesta kataloogide suurusi\n" +" -s, --summarize väljasta iga argumendi kohta summa\n" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" +" -x, --one-file-system jäta vahele kataloogid teistest failisüsteemidest\n" +" -X FILE, --exclude-from=FAIL ära loenda failist loetud mustritega faile\n" +" --exclude=MUSTER Ära loenda mustrile vastavaid faile\n" +" --max-depth=N väljasta kataloogi summa (võtmega --all faili)\n" +" ainult juhul, kui see on N või vähem taset " +"sügavamal,\n" +" kui käsurea argument; --max-depth=0 on sama, kui\n" +" --summarize\n" + +#: src/du.c:337 +#, c-format +msgid "cannot change to parent of directory %s" +msgstr "ei õnnestu minna vanemkataloogi %s" + +#: src/du.c:345 +#, c-format +msgid "cannot change to directory %s" +msgstr "ei õnnestu minna kataloogi %s" + +#: src/du.c:352 +#, c-format +msgid "cannot read directory %s" +msgstr "kataloogi %s ei õnnestu lugeda" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "kokku" + +#: src/du.c:641 +#, c-format +msgid "invalid maximum depth %s" +msgstr "vigane maksimaalne sügavus %s" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "korraga ei saa summeerida ja näidata kõiki" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "hoiatus: summeerimine on sama, kui kasutada --max-depth=0" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "hoiatus: summeerimine on konfliktne võtmega --max-depth=%d" + +#: src/echo.c:77 +#, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "Kasutamine: %s [VÕTI]... [SÕNE]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" +"Väljasta SÕNE(D) standard väljundisse.\n" +"\n" +" -n ära väljasta lõpetavat reavahetust\n" +" -e interpreteeri alltoodud langkriipsuga kaitstud sümboleid\n" +" -E blokeeri nende järjendite interpreteerimine\n" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" +"\n" +"-E võtmeta tuntakse ja interpreteeritakse järgnevaid järjendeid:\n" +"\n" +" \\NNN sümbol ASCII koodiga NNN (kaheksandsüsteemis)\n" +" \\\\ langkriips\n" +" \\a tähelepanu (BEL)\n" +" \\b samm tagasi\n" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\c blokeeri lõpetav reavahetus\n" +" \\f lehevahetus\n" +" \\n uus rida\n" +" \\r rea algusesse\n" +" \\t horisontaalne tabulaator\n" +" \\v vertikaalne tabulaator\n" + +#: src/env.c:93 +msgid "Richard Mlynarik and David MacKenzie" +msgstr "Richard Mlynarik ja David MacKenzie" + +#: src/env.c:119 +#, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "Kasutamine: %s [VÕTI]... [-] [NIMI=VÄÄRTUS]... [KÄSK [ARGUMENT]...]\n" + +#: src/env.c:122 +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" +"Sea iga keskkonnamuutuja NIMI väärtus ja käivita KÄSK.\n" +"\n" +" -i, --ignore-environment alusta tühja keskkonnaga\n" +" -u, --unset=NIMI eemalda muutuja keskkonnast\n" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" +"\n" +"Ainult - rakendab võtme -i. Kui käsku ei ole antud, väljasta keskkond.\n" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Teisenda igas FAILIS tabulaatorid tühikuteks, väljasta standardväljundisse.\n" +"Kui FAIL puudub või on -, loeb standardsisendit.\n" +"\n" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" +" -i, --initial ära teisenda TABe peale mittetühje sümboleid\n" +" -t, --tabs=NUMBER kasuta vaikimisi 8 asemel tabulaatoris NUMBER " +"sümbolit\n" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" +" -t, --tabs=LOEND kasuta komadega eraldatud loendit tab " +"positsioonidest\n" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "tabulaatori suurus sisaldab vigast sümbolit" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "tabulaatori suurus ei saa olla 0" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "tabulaatori suurused peavad olema kasvavad" + +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "võti `-LIST' on aegunud; kasutage `-t LOEND'" + +#: src/expr.c:90 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"Kasutamine: %s AVALDIS\n" +" või: %s VÕTI\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" +"\n" +"Trüki AVALDISe väärtus standardväljundisse. Tühi rida loendis allpool\n" +"eraldab kasvava prioriteediga gruppe. AVALDIS võib olla:\n" +"\n" +" ARG1 | ARG2 ARG1 kui see pole null ega 0, muidu ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 kui kumbki argument ei ole null või 0, muidu 0\n" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" +"\n" +" ARG1 < ARG2 ARG1 on väiksem, kui ARG2\n" +" ARG1 <= ARG2 ARG1 on väiksem või võrdne, kui ARG2\n" +" ARG1 = ARG2 ARG1 ja ARG2 on võrdsed\n" +" ARG1 != ARG2 ARG1 ja ARG2 ei ole võrdsed\n" +" ARG1 >= ARG2 ARG1 on suurem või võrdne, kui ARG2\n" +" ARG1 > ARG2 ARG1 on suurem, kui ARG2\n" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" +"\n" +" ARG1 + ARG2 ARG1 ja ARG2 aritmeetiline summa\n" +" ARG1 - ARG2 ARG1 ja ARG2 aritmeetiline vahe\n" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" +"\n" +" ARG1 * ARG2 ARG1 ja ARG2 aritmeetiline korrutis\n" +" ARG1 / ARG2 ARG1 jagatud ARG2 täisosa\n" +" ARG1 % ARG2 ARG1 jagatud ARG2 jääk\n" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" +"\n" +" SÕNE : REGEXP mustri REGEXP otsing SÕNEst\n" +"\n" +" match SÕNE REGEXP sama, kui SÕNE : REGEXP\n" +" substr SÕNE POS LENGTH SÕNE alamsõne, POS algab väärtuselt 1\n" +" index SÕNE SÜMBOLID SÕNE indeks, kust leiti SÜMBOLID, või 0\n" +" length SÕNE SÕNE pikkus\n" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" +" + MÄRK interpreteeri MÄRKi sõnena, isegi kui see on\n" +" võtmesõna, nagu `match' või operaator, nagu `/'\n" +"\n" +" ( AVALDIS ) AVALDISe väärtus\n" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" +"\n" +"Pange tähele, et paljud operaatorid vajavad käsuinterpretaatori eest\n" +"kaitset kvootimise või langkriipsuga kaitsmise näol. Võrdlused on\n" +"aritmeetilised, kui mõlemas argumendid on numbrid, muidu " +"leksikograafilised.\n" +"Mustri otsing tagastab teksti, mis leiti \\( ja \\) vahel või null; kui\n" +"\\( ja \\) ei kasutata, tagastatakse leitud sümbolite arv või 0.\n" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +msgid "syntax error" +msgstr "süntaksi viga" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" +"hoiatus: mitteporditav BRE: `%s': `^' kasutamine lihtsa regulaaravaldise\n" +"esimese sümbolina ei ole porditav; ignoreerin seda" + +#: src/expr.c:586 src/expr.c:625 +msgid "non-numeric argument" +msgstr "mitte-numbriline argument" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "nulliga jagamine" + +#: src/factor.c:74 +#, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"Kasutamine: %s [NUMBER]...\n" +" või: %s VÕTI\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" +"Väljasta kõikide antud täisarvude algarvulised tegurid.\n" +"\n" + +#: src/factor.c:85 +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" +"\n" +"Väljasta iga NUMBRI algarvulised tegurid. Kui käsureal argumente pole,\n" +"loetakse need standardsisendist.\n" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "`%s' ei ole korrektne positiivne täisarv" + +#: src/false.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Kasutamine: %s [ignoreerin käsurea argumente]\n" +" või: %s VÕTI\n" +"Lõpeta veakoodiga.\n" +"\n" +"Neid võtmeid ei või lühendada.\n" +"\n" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "Kasutamine: %s [-NUMBRID] [VÕTI]... [FAIL]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" +"Vormista ümber iga lõik FAILides, kirjuta tulemus standardväljundisse.\n" +"Kui FAIL puudub või on `-', loe standardsisendit.\n" +"\n" + +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" +" -c, --crown-margin säilita esimese kahe rea taane\n" +" -p, --prefix=SÕNE kombineeri ainult read ühise prefiksiga SÕNE\n" +" -s, --split-only tükelda pikad read, aga ära täida\n" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" +" -t, --tagged-paragraph esimese rea taane on teise rea omast erinev\n" +" -u, --uniform-spacing üks tühik sõnade vahel, kaks lausete vahel\n" +" -w, --width=NUMBER maksimaalne rea pikkus (vaikimisi 75)\n" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" +"\n" +"Võtmega -wNUMBER võib tähe `w' ära jätta.\n" + +#: src/fmt.c:345 +#, c-format +msgid "invalid width option: `%s'" +msgstr "vigane laiuse võti: `%s'" + +#: src/fmt.c:385 +#, c-format +msgid "invalid width: `%s'" +msgstr "vigane laius: `%s'" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" +"Murra iga FAILI (vaikimisi standardsisend) rida, väljasta " +"standardväljundisse.\n" +"\n" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" +" -b, --bytes loe veergude asemel baite\n" +" -s, --spaces poolita tühikute kohal\n" +" -w, --width=LAIUS kasuta 80 asemel use LAIUS sümbolit\n" + +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "võti `%s' on aegunud; kasutage `%s'" + +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "vigane veergude arv: `%s'" + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Väljasta igast FAIList esimesed 10 rida standardväljundisse.\n" +"Enam, kui ühe faili korral lisa ka päis faili nimega.\n" +"Kui FAIL puudub või on -, loe standardsisendit.\n" +"\n" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" +" -c, --bytes=SUURUS väljasta esimesed SUURUS baiti\n" +" -n, --lines=NUMBER väljasta vaikimisi 10 asemel esimesed NUMBER " +"rida\n" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" +" -q, --quiet, --silent ära väljasta päiseid failide nimega\n" +" -v, --verbose väljasta alati ka päis faili nimega\n" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" +"\n" +"SUURUS võib omada kordavat sufiksit: b on 512, k on 1K, m on 1 Meg.\n" + +#: src/head.c:190 +#, c-format +msgid "cannot reposition file pointer for %s" +msgstr "ei õnnestu muuta %s failiviita" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "%s: %s on nii suur, et seda ei saa esitada" + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "ridu" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "baite" + +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "vigane ridade arv" + +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "vigane baitide arv" + +#: src/head.c:341 +#, c-format +msgid "unrecognized option `-%c'" +msgstr "tundmatu võti `-%c'" + +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "võti `-%s' on aegunud; kasutage `-%c %.*s%.*s%s'" + +#: src/hostid.c:48 +#, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" +"Kasutamine: %s\n" +" või: %s VÕTI\n" +"Väljasta antud arvuti (kuueteistkümnend) numbriline identifikaator.\n" +"\n" + +#: src/hostname.c:67 +#, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" +"Kasutamine: %s [NIMI]\n" +" või: %s VÕTI\n" +"Esita või sea antud süsteemi nimi.\n" +"\n" + +#: src/hostname.c:104 +#, c-format +msgid "cannot set hostname to `%s'" +msgstr "ei õnnestu seada nimeks %s" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "nime ei õnnestu seada; süsteemil pole sellist funktsionaalsust" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "ei õnnestu tuvastada süsteemi nime" + +#: src/id.c:36 +msgid "Arnold Robbins and David MacKenzie" +msgstr "Arnold Robbins ja David MacKenzie" + +#: src/id.c:87 +#, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "Kasutamine: %s [VÕTI]... [KASUTAJANIMI]\n" + +#: src/id.c:88 +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" +"Väljasta informatsiooni KASUTAJA või käsu kasutaja kohta.\n" +"\n" +" -a ignoreeri, võti on ühilduvuseks vanemate versioonidega\n" +" -g, --group väljasta ainult grupi ID\n" +" -G, --groups väljasta ainult lisagupid\n" +" -n, --name väljasta numbri asemel nimi, võtmetele -ugG\n" +" -r, --real väljasta efektiivse ID asemel reaalne ID, võtmetega -ugG\n" +" -u, --user väljasta ainult kasutaja ID\n" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" +"\n" +"Kui võtmeid pole antud, väljasta komplekt kasutatavat informatsiooni.\n" + +#: src/id.c:162 +msgid "cannot print only user and only group" +msgstr "ainult kasutajat ja ainult gruppi ei saa trükkida" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "" +"vaikimisi formaati kasutades ei saa väljastada ainult nimesid või reaalset ID" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "%s: Sellista kasutajat pole" + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "ei leia UID %u vastavat kasutajanime" + +#: src/id.c:235 +#, c-format +msgid "cannot find name for group ID %u" +msgstr "ei leia GID %u vastavat gruppi" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "ei õnnestu lugeda lisagruppide nimekirja" + +#: src/id.c:385 +msgid " groups=" +msgstr " grupid=" + +#: src/install.c:269 +msgid "the strip option may not be used when installing a directory" +msgstr "kataloogi installeerimisel ei saa kasutada võtit strip" + +#: src/install.c:292 src/mkdir.c:140 +#, c-format +msgid "invalid mode %s" +msgstr "vigane mood %s" + +#: src/install.c:307 src/install.c:371 +#, c-format +msgid "creating directory %s" +msgstr "loon kataloogi %s" + +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "installeerin mitut faili, kuid viimane argument, %s, ei ole kataloog" + +#: src/install.c:435 +#, c-format +msgid "%s is a directory" +msgstr "%s on kataloog" + +#: src/install.c:495 +#, c-format +msgid "cannot obtain time stamps for %s" +msgstr "ei õnnestu lugeda %s ajatempleid" + +#: src/install.c:507 +#, c-format +msgid "cannot set time stamps for %s" +msgstr "ei õnnestu seada %s ajatempleid" + +#: src/install.c:528 +msgid "fork system call failed" +msgstr "süsteemifunktsioon fork ebaõnnestus" + +#: src/install.c:532 +msgid "cannot run strip" +msgstr "strip käsku ei saa käivitada" + +#: src/install.c:539 +msgid "strip failed" +msgstr "strip ebaõnnestus" + +#: src/install.c:560 +#, c-format +msgid "invalid user %s" +msgstr "vigane kasutaja %s" + +#: src/install.c:578 +#, c-format +msgid "invalid group %s" +msgstr "vigane grupp %s" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"Kasuta: %s [VÕTI]... ALLIKAS SIHT (1st format)\n" +" või: %s [VÕTI]... ALLIKAS... KATALOOG (2nd format)\n" +" või: %s -d [VÕTI]... KATALOOG... (3rd format)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" +"Esimesed kaks varianti kopeerivad allika sihtkohta või allikad\n" +"olemasolevasse kataloogi seades õigused ja omaniku/grupi.\n" +"Kolmas variant loob kõik antud kataloogid.\n" +"\n" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" +" --backup[=KONTROLL] loo igast olemasolevast sihtfailist varukoopia\n" +" -b nagu --backup, aga ei võta argumenti\n" +" -c (ignoreeritakse)\n" +" -d, --directory käsitle kõiki argumente kataloogidena; loo kõik\n" +" antud kataloogide komponendid\n" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" +" -D loo kõik SIHT osad, välja arvatud viimane, seejärel\n" +" kopeeri allikas sihiks; kasulik esimesel vormil\n" +" -g, --group=GRUPP sea protsessi grupi asemel antud grupp\n" +" -m, --mode=MOOD sea rwxr-xr-x õiguste asemel antud õigused\n" +" -o, --owner=OMANIK sea omanik (ainult super-kasutaja)\n" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" +" -p, --preserve-timestamps sea algfailide kasutamise/muutmise ajad \n" +" vastavatele sihtfailidele\n" +" -s, --strip puhasta sümboltabelid, ainult esimesel kahel kujul\n" +" -S, --suffix=SUFIKS määra uus varukoopia järelliide\n" +" -v, --verbose väljasta iga loodava kataloogi nimi\n" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"\n" +"Varukoopia sufiks on `~', kui seda ei ole muudetud võtmega --suffix või\n" +"keskkonnamuutujaga SIMPLE_BACKUP_SUFFIX. Versioonikontrolli meetodit saab\n" +"valida võtmega --backup või keskonnamuutujaga VERSION_CONTROL. Võimalikud\n" +"väärtused on järgnevad:\n" +"\n" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "Kasutamine: %s [VÕTI]... FAIL1 FAIL2\n" + +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" +"Iga identsete ühendatavate väljadega sisendrea paari korral väljastab rea \n" +"standardväljundisse. Vaikimisi ühendatav väli on esimene, väljad " +"eraldatakse\n" +"tühemikuga. Kui FAIL1 või FAIL2 (aga mitte mõlemad) on -, loe standard-\n" +"sisendit.\n" +"\n" +" -a FAILINUM väljasta paariliseta read failist FAILINUM\n" +" -e TÜHI asenda puuduvad sisendväljad sõnaga TÜHI\n" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" +" -i, --ignore-case kasuta tõstutundetut väljade võrdlemist\n" +" -j VÄLI (aegunud) sama, kui `-1 VÄLI -2 VÄLI'\n" +" -j1 VÄLI (aegunud) sama, kui `-1 VÄLI'\n" +" -j2 VÄLID (aegunud) sama, kui `-2 VÄLI'\n" +" -o VORMING väljundrea koostamise VORMING\n" +" -t SÜMBOL kasuta SÜMBOLit sisend- ja väljundväljade eraldajana\n" + +#: src/join.c:165 +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" +" -v FAILINUM sama, kui -a FAILINUM, aga ei väljasta vastavaid ridu\n" +" -1 VÄLI ühenda see VÄLI failist 1\n" +" -2 VÄLI ühenda see VÄLI failist 2\n" + +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" +"\n" +"Kui võtit -t SÜMBOL ei kasutata, ignoreeritakse väljade ees olevaid " +"tühikuid,\n" +"muidu kasutatakse väljade eraldajana võtmega -t määratud sümbolit. Välja\n" +"tähistatakse välja numbriga, loendamist alustatakse ühest. Vorming on üks\n" +"või enam komade või tühikurtega eraldatud määranguid kujul `FAILINUM.VÄLI' " +"või\n" +"`0'. Vaikimisi vorming väljastab ühendatud väljad, siis ülejäänud väljad\n" +"failist FAIL1, siis ülejäänud väljad failist FAIL2. Väljad eraldatakse\n" +"SÜMBOLiga.\n" + +#: src/join.c:645 +#, c-format +msgid "invalid field specifier: `%s'" +msgstr "vigane välja määrang: `%s'" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, c-format +msgid "invalid field number: `%s'" +msgstr "vigane välja number: `%s'" + +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "vigane välja number välja määrangus: `%s'" + +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "vigane välja number faili 1 jaoks: `%s'" + +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "vigane välja number faili 2 jaoks: `%s'" + +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "liiga palju argumente, mis ei ole võtmed" + +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "liiga vähe argumente, mis ei ole võtmed" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "mõlemad failid ei saa olla standardsisendid" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" +"Kasutamine: %s [-s SIGNAAL | -SIGNAAL] PID...\n" +" või: %s -l [SIGNAAL]...\n" +" või: %s -t [SIGNAAL]...\n" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" +"Saada protsessidele signaale või esita signaalide nimekiri.\n" +"\n" + +#: src/kill.c:106 +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" +" -s, --signal SIGNAAL, -SIGNAAL\n" +" Saadetava signaali nimi või number.\n" +" -l, --list Esita signaalide nimed või tõlgi nimeks/numbriks.\n" +" -t, --table Väljasta tabel infoga signaalidest.\n" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" +"\n" +"SIGNAAL võib olla signaali nimi, nagu `HUP', või signaali number, nagu `1',\n" +"või signaaliga katkestatud programmi lõpetamise kood.\n" +"PID on täisarv, negatiivne tähendab protsessi gruppi.\n" + +#: src/kill.c:163 +#, c-format +msgid "%s: invalid signal" +msgstr "%s: vigane signaal" + +#: src/kill.c:262 +#, c-format +msgid "missing operand after `%s'" +msgstr "`%s' nõuab operandi" + +#: src/kill.c:274 +#, c-format +msgid "%s: invalid process id" +msgstr "%s: vigane protsessi id" + +#: src/kill.c:327 +#, c-format +msgid "invalid option -- %c" +msgstr "vigane võti -- %c" + +#: src/kill.c:336 +#, c-format +msgid "%s: multiple signals specified" +msgstr "%s: anti mitu signaali" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "kasutati mitud -l või -t võtit" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "signaali ei saa kombineerida võtmetega -l või -t" + +#: src/link.c:51 +#, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"Kasutamine: %s FAIL1 FAIL2\n" +" või: %s VÕTI\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" +"Kasutan viite FAIL2 loomiseks failile FAIL1 funktsiooni link.\n" +"\n" + +#: src/link.c:98 +#, c-format +msgid "cannot create link %s to %s" +msgstr "ei õnnestu luua viidet %s -> %s" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "Mike Parker ja David MacKenzie" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "%s: hoiatus: nimeviitele viite tegemine ei ole portaabel" + +#: src/ln.c:174 +#, c-format +msgid "%s: hard link not allowed for directory" +msgstr "%s: kataloogidele ei saa luua viiteid" + +#: src/ln.c:246 +#, c-format +msgid "%s: cannot overwrite directory" +msgstr "%s: kataloogi ei saa üle kirjutada" + +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "%s: asendan %s? " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: Fail on juba olemas" + +#: src/ln.c:304 +#, c-format +msgid "create symbolic link %s to %s" +msgstr "loon nimeviite %s -> %s" + +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "loon viite %s -> %s" + +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "luues nimeviidet %s -> %s" + +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "luues viidet %s -> %s" + +#: src/ln.c:339 +#, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"Kasutamine: %s [VÕTI]... SIHT [VIITE_NIMI]\n" +" või: %s [VÕTI]... SIHT... KATALOOG\n" +" või: %s [VÕTI]... --target-directory=KATALOOG SIHT...\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" +"Loo viide antud nimele, soovi korral uus nimi. Kui uut nime ei antud,\n" +"luuakse jooksvasse kataloogi viidatava faili nimega viide. Kui\n" +"kasutatakse käsu teist vormi rohkem, kui ühe sihiga, peab viimane\n" +"argument olema kataloog; igale failile luuakse kataloogi viide.\n" +"Vaikimisi luuakse viited, nimeviidete loomiseks on võti --symbolic.\n" +"Viidete loomisel peavad viidatavad failid olemas olema.\n" +"\n" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" +" --backup[=KONTROLL] loo igast olemasolevast sihtfailist " +"varukoopia\n" +" -b nagu --backup, aga ei võta argumenti\n" +" -d, -F, --directory loo viide kataloogile (ainult super-kasutaja)\n" +" -f, --force eemalda olemasolevad sihtfailid\n" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" +" -n, --no-dereference kui sihtfail on nimeviide kataloogile,\n" +" käsitle seda kui tavalist faili\n" +" -i, --interactive küsi enne sihtfaili eemaldamist\n" +" -s, --symbolic loo viidete asemel nimeviited\n" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" +" -S, --suffix=SUFIKS määra varukoopia järelliide\n" +" --target-directory=KATALOOG määra kataloog, milles luuakse viited\n" +" -v, --verbose väljasta faili nimi enne viite loomist\n" + +#: src/ln.c:521 +#, c-format +msgid "%s: specified target directory is not a directory" +msgstr "%s: antud sihtkataloog ei ole kataloog" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "luues korraga mitut viidet, peab viimane argument olema kataloog" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "Kasutamine: %s [VÕTI]\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" +"Väljasta jooksva kasutaja nimi.\n" +"\n" + +#: src/logname.c:99 +#, c-format +msgid "%s: no login name\n" +msgstr "%s: kasutajanime pole\n" + +#: src/ls.c:673 +msgid "%b %e %Y" +msgstr "%e. %b %Y" + +#: src/ls.c:681 +msgid "%b %e %H:%M" +msgstr "%e. %b %H:%M" + +#: src/ls.c:1307 +#, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "eiran vigast keskkonnamuutuja QUOTING_STYLE väärtust: %s" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "eiran vigast laiuse kirjeldust keskkonnamuutujas COLUMNS: %s" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "eiran vigast tabulaatori kirjeldust keskkonnamuutujas TABSIZE: %s" + +#: src/ls.c:1482 +#, c-format +msgid "invalid line width: %s" +msgstr "vigane rea laius: %s" + +#: src/ls.c:1556 +#, c-format +msgid "invalid tab size: %s" +msgstr "vigane tabulaatori suurus: %s" + +#: src/ls.c:1722 +#, c-format +msgid "invalid time style format %s" +msgstr "vigane ajamäärang %s" + +#: src/ls.c:2054 +#, c-format +msgid "unrecognized prefix: %s" +msgstr "tundmatu prefiks: %s" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "arusaamatu väärtus keskkonnamuutuja LS_COLORS jaoks" + +#: src/ls.c:2145 +#, c-format +msgid "cannot determine device and inode of %s" +msgstr "ei õnnestu tuvastada %s seadet ja i-kirje numbrit" + +#: src/ls.c:2155 +#, c-format +msgid "not listing already-listed directory: %s" +msgstr "ei näita juba näidatud kataloogi: %s" + +#: src/ls.c:2208 src/remove.c:929 +#, c-format +msgid "reading directory %s" +msgstr "loen kataloogi %s" + +#: src/ls.c:2603 +#, c-format +msgid "cannot compare file names %s and %s" +msgstr "failide %s ja %s nimesid ei õnnestu võrrelda" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" +"Esita infot failidest (vaikimisi jooksvas kataloogis).\n" +"Kui ei ole kasutatud võtmeid -cftuSUX või --sort, järjesta väljund\n" +"tähestikuliselt\n" +"\n" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" +" -a, --all ära peida kirjed, mis algavad sümboliga .\n" +" -A, --almost-all ära näita nimesid . ja ..\n" +" --author väljast iga faili autor\n" +" -b, --escape väljasta mitte-esitatavad sümbolid\n" +" kaheksandkoodidega\n" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" +" --block-size=SUURUS määra plokkide suurus baitides\n" +" -B, --ignore-backups ära näita nimesid, mille lõpus on ~\n" +" -c võtmega -lt: järjesta ja näita ctime (faili\n" +" oleku viimase muutmise aeg)\n" +" võtmega -l: näita ctime ja järjesta nime " +"järgi\n" +" muidu: järjesta ctime järgi\n" + +#: src/ls.c:3784 +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" +" -C esita väljund veergudena\n" +" --color[=MILLAL] määra, millal kasutada failitüüpide " +"eristamiseks\n" +" värve.\n" +" MILLAL võib olla `never', `always' või `auto'\n" +" -d, --directory näita kataloogide sisu asemel neid endid\n" +" -D, --dired vorminda väljund Emacs dired moodile\n" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" +" -f ära järjesta, kasuta -aU, blokeeri -lst\n" +" -F, --classify lisa tähis (üks järgnevaist */=@|) nimedele\n" +" --format=SÕNA across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time nagu -l --time-style=full-iso\n" + +#: src/ls.c:3799 +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" +" -g nagu -l, aga ei väljasta omanikku\n" +" -G, --no-group ei väljasta gruppi\n" +" -h, --human-readable väljasta mahud inimesele loetavalt (n. 1K 234M " +"2G)\n" +" --si sarnane, aga kasuta 1000 kordseid, mitte 1024\n" +" -H, --dereference-command-line kui käsureal on nimeviited näita " +"viidatavaid\n" +" --dereference-command-line-symlink-to-dir\n" +" järgne igale käsureal olevale nimeviitele, kui " +"see\n" +" viitab kataloogile\n" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" +" --indicator-style=SÕNA lisa nimedele indikaator, vastavalt antud\n" +" stiilile: none (vaikimisi), classify (-F),\n" +" file-type (-p)\n" +" -i, --inode väljasta iga faili i-kirje number\n" +" -I, --ignore=MUSTER ära näita shelli mustrile vastavaid nimesid\n" +" -k, --kilobytes nagu --block-size=1K\n" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" +" -l väljasta info pikas vormingus\n" +" -L, --dereference väljastades infot nimeviite kohta, näita viite\n" +" asemel infot viidatavast failist\n" +" -m väljasta nimed komadega eraldatult\n" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" +" -n, --numeric-uid-gid nagu -l, aga väljasta numbrilised UID ja GID\n" +" -N, --literal väljasta nimed nagu on (ära käsitle n. " +"kontroll\n" +" sümboleid eriliselt)\n" +" -o nagu -l, aga ära väljasta grupi infot\n" +" -p, --file-type lisa nimedele indikaator (üks järgnevaist /" +"=@|)\n" + +#: src/ls.c:3831 +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -q, --hide-control-chars väljasta ? mitte-esitatava sümboli asemel\n" +" --show-control-chars näita mitte-esitatavat sümbolit, nagu on\n" +" (vaikimisi, kui programm on `ls' ja väljund\n" +" ei ole terminal)\n" +" -Q, --quote-name väljasta nimed jutumärkide vahel\n" +" --quoting-style=SÕNA kasuta nimede kvootimisel stiili:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" +" -r, --reverse kasuta pööratud järjestamist\n" +" -R, --recursive esita alamkataloogid rekursiivselt\n" +" -s, --size väljasta iga faili suurus plokkides\n" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" +" -S järjesta failide suuruste järgi\n" +" --sort=SÕNA extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=SÕNA näita muutmise aja asemel:\n" +" atime, access, use, ctime või status; kasuta\n" +" antud aega järjestamise võtmena, kui --" +"sort=time\n" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" +" --time-style=SÕNA näita aegu kasutades stiili SÕNA:\n" +" full-iso, long-iso, iso, locale, +VORMING\n" +" VORMINGut käsitletakse kui `date'; kui VORMING\n" +" on VORMING1VORMING2, rakendub\n" +" VORMING1 vanematele failidele ja VORMING2\n" +" uuematele. Kui SÕNE omab eesliidet `posix-',\n" +" kasutatakse SONA ainult mitte-POSIX lokaadi\n" +" muutmise aegade järjestamisel\n" +" -t kasuta järjestamisel muutmise aega\n" +" -T, --tabsize=VEERGE sea tabulaatori pikkus (vaikimisi 8 veergu)\n" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" +" -u võtmega -lt: järjesta ja näita kasutamise aega\n" +" võtmega -l: näita kasutamise aega ja " +"järjesta\n" +" nime järgi\n" +" muidu: järjesta kasutamise aja järgi\n" +" -U ära järjesta; väljasta kirjed nagu on " +"kataloogis\n" +" -v järjesta versiooni järgi\n" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" +" -w, --width=VEERGE määra ekraani laius\n" +" -x väljasta nimed ridadesse, mitte veergusesse\n" +" -X järjesta tähestikuliselt laiendite järgi\n" +" -1 väljasta üks nimi rea kohta\n" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" +"\n" +"Vaikimisi ei kasutata failitüüpide eristamiseks värve. See on sama, kui\n" +"kasutada võtit --color=none. Kasutades võtit --color ilma täiendava \n" +"argumendita on sama, kui kasutada --color=always. Võtmega --color=auto\n" +"väljastatakse värvikoodid ainult juhul, kui standardväljund läheb\n" +"terminalile (tty).\n" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "Ulrich Drepper ja Scott Miller" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"Kasutamine: %s [VÕTI] [FAIL]...\n" +" või: %s [VÕTI] --check [FAIL]\n" +"Väljasta või kontrolli %s (%d-bitti) kontrollsummasid.\n" +"Kui FAIL puudub või on -, loe standardsisendit.\n" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" +"\n" +" -b, --binary loe faile kahendmoodis (vaikimisi DOS/Windows)\n" +" -c, --check kontrolli %s summasid vastavalt loendile\n" +" -t, --text loe faile tekstimoodis (vaikimisi)\n" +"\n" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" +"Järgmised võtmed on kasulikud ainult kontrollsummade kontrollimisel:\n" +" --status ära väljasta midagi, tulemust näitab lõpetamise " +"kood\n" +" -w, --warn hoiata vigaselt vormindatud kontrollsummadest\n" +"\n" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" +"\n" +"Summad arvutatakse vastavalt %s kirjeldusele. Summade kontrollimisel\n" +"tuleb kasutada selle programmi väljundit. Vaikimisi mood on väljastada\n" +"rida kontrollsummaga, seejärel sümbol, mis märgib faili tüüpi (`*' kahend-\n" +"ja ` ' tekstifaili korral) ja seejärel faili nimi.\n" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "%s: %lu: vigaselt vormindatud %s kontrollsumma rida" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "%s: avamine või lugemine ebaõnnestus\n" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "EBAÕNNESTUS" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "OK" + +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%s: viga lugemisel" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "%s: korrektselt vormindatud %s kontrollsumma ridu pole" + +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "HOIATUS: %d (%d) näidatud %s ei saanud lugeda" + +#: src/md5sum.c:473 +msgid "file" +msgstr "faili" + +#: src/md5sum.c:473 +msgid "files" +msgstr "faile" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "HOIATUS: %d (%d) arvutatud %s EI klappinud" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "kontrollsumma" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "kontrollsummat" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "võtmed --binary ja --text ei oma kontrollsummade kontrollimisel mõtet" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "võtmed --string ja --check on üksteist välistavad" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "võtit --status on mõtet kasutada ainult kontrollsummade kontrollimisel" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "võtit --warn on mõtet kasutada ainult kontrollsummade kontrollimisel" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "--string kasutamisel ei saa faile määrata" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "--check kasutamisel on lubatud ainult üks argument" + +#: src/mkdir.c:61 +#, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "Kasutamine: %s [VÕTI] KATALOOG...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" +"Loo KATALOOGid, kui neid juba pole.\n" +"\n" + +#: src/mkdir.c:69 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +" -m, --mode=MOOD seab õigused (nagu chmod), mitte rwxrwxrwx - umask\n" +" -p, --parents loob vajadusel ülemised kataloogid, kui need on olemas,\n" +" siis veateadet ei väljasta\n" +" -v, --verbose teavitab igast loodud kataloogist\n" + +#: src/mkdir.c:113 +#, c-format +msgid "created directory %s" +msgstr "kataloog %s on loodud" + +#: src/mkdir.c:190 +#, c-format +msgid "cannot set permissions of directory %s" +msgstr "ei õnnestu seada kataloogi %s õigusi" + +#: src/mkfifo.c:55 +#, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "Kasutamine: %s [VÕTI]... NIMI...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" +"Loo antud NIMega torud (FIFOd).\n" +"\n" + +#: src/mkfifo.c:63 src/mknod.c:64 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" +" -m, --mode=MOOD sea õigused (nagu chmod käsuga), mitte a=rw - umask\n" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "fifo faile ei toetata" + +#: src/mkfifo.c:123 src/mknod.c:127 +msgid "invalid mode" +msgstr "vigane mood" + +#: src/mkfifo.c:142 +#, c-format +msgid "cannot set permissions of fifo %s" +msgstr "ei õnnestu seada fifo %s õigusi" + +#: src/mknod.c:55 +#, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "Kasutamine: %s [VÕTI]... NIMI TÜÜP [PÕHI ALAM]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" +"Loo antud NIMEga ja TÜÜPi seadmefail.\n" +"\n" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" +"\n" +"Kui TÜÜP on b, c või u, peavad olema antud nii KLASS kui ESINDAJA ja neid " +"ei\n" +"tohi kasutada, kui TÜÜP on p. Kui KLASS või ESINDAJA algab 0x või 0X,\n" +"käsitletakse seda kuueteistkümnendarvuna. Kui See algab numbriga 0,\n" +"käsitletakse seda kaheksandarvuna, muidu kümnendarvuna. TÜÜP võib olla:\n" + +#: src/mknod.c:76 +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"\n" +" b loo plokkseade (puhverdatud)\n" +" c, u loo sümbolseade (puhverdamata)\n" +" p loo FIFO\n" + +#: src/mknod.c:141 +msgid "wrong number of arguments" +msgstr "vale arv argumente" + +#: src/mknod.c:153 +msgid "block special files not supported" +msgstr "blokkseadme faile ei toetata" + +#: src/mknod.c:162 +msgid "character special files not supported" +msgstr "sümbolseadme faile ei toetata" + +#: src/mknod.c:171 +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" +"seadmefailide loomisel peab olema määratud nii klassi,\n" +"kui esindaja number" + +#: src/mknod.c:186 +#, c-format +msgid "invalid major device number %s" +msgstr "vigane seadme põhinumber %s" + +#: src/mknod.c:191 +#, c-format +msgid "invalid minor device number %s" +msgstr "vigane seadme alamnumber %s" + +#: src/mknod.c:196 +#, c-format +msgid "invalid device %s %s" +msgstr "vigane seade %s %s" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "klassi ja esindaja numbreid ei saa fifo failidega kasutada" + +#: src/mknod.c:231 +#, c-format +msgid "cannot set permissions of %s" +msgstr "ei õnnestu seada %s õigusi" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "Mike Parker, David MacKenzie ja Jim Meyering" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Nimeta fail ümber või tõsta argumendid antud kataloogi.\n" +"\n" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" +" --backup[=KONTROLL] loo igast olemasolevast sihtfailist " +"varukoopia\n" +" -b nagu --backup aga ei kasuta argumenti\n" +" -f, --force ära küsi enne ülekirjutamist\n" +" sama, kui --reply=yes\n" +" -i, --interactive küsi enne ülekirjutamist\n" +" sama, kui --reply=query\n" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" +" --reply={yes,no,query} määra, kuidas vastata küsimustele\n" +" olemasolevate sihtfailide kohta\n" +" --strip-trailing-slashes eemalda igalt käsureal antud nimelt\n" +" lõpus olevad kaldkriipsud\n" +" -S, --suffix=SUFIKS määra varukoopia järelliide\n" + +#: src/mv.c:339 +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +" --target-directory=KATALOOG tõsta kõik antud allikad kataloogi\n" +" -u, --update tõsta ainult kui allikas on uuem, kui " +"sihtfail\n" +" või kui sihtfail puudub\n" +" -v, --verbose selgita mida tehakse\n" + +#: src/mv.c:467 +#, c-format +msgid "specified target, %s is not a directory" +msgstr "antud siht, %s, ei ole kataloog" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "mitme faili tõstmisel peab viimane argument olema kataloog" + +#: src/nice.c:67 +#, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "Kasutamine: %s [VÕTI] [KÄSK [ARGUMENT]...]\n" + +#: src/nice.c:68 +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" +"Käivita KÄSK muudetud prioriteediga.\n" +"Kui käsku ei antud, väljasta kehtiv prioriteet. Vaikimisi samm on 10.\n" +"Sammude vahemik on -20 (kõrgeim prioriteet) kuni 19 (madalaim prioriteet).\n" +"\n" +" -n, --adjustment=SAMM suurenda prioriteeti\n" + +#: src/nice.c:109 src/nice.c:122 +#, c-format +msgid "invalid option `%s'" +msgstr "vigane võti `%s'" + +#: src/nice.c:147 +#, c-format +msgid "invalid priority `%s'" +msgstr "vigane prioriteet `%s'" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "koos parandusega peab olema antud käsk" + +#: src/nice.c:178 src/nice.c:187 +msgid "cannot get priority" +msgstr "prioriteeti ei õnnestu lugeda" + +#: src/nice.c:192 +msgid "cannot set priority" +msgstr "prioriteeti ei õnnestu seada" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "Scott Bartram ja David MacKenzie" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Väljasta iga FAIL standardväljundisse lisades reanumbrid.\n" +"Kui FAIL puudub või on -, loe standardsisendit.\n" +"\n" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" +" -b, --body-numbering=STIIL kasuta ridade nummerdamisel STIILI\n" +" -d, --section-delimiter=SE kasuta loogiliste lehtede eraldamiseks SE\n" +" -f, --footer-numbering=STIIL kasuta jaluste nummerdamisel STIILI\n" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" +" -h, --header-numbering=STIIL kasuta päiste nummerdamisel STIILI\n" +" -i, --page-increment=NUMBER rea numbri suurendamise samm\n" +" -l, --join-blank-lines=NUMBER grupeeri NUMBER tühja rida üheks reaks\n" +" -n, --number-format=VORMING lisa rea numbrid vastavalt VORMINGule\n" +" -p, --no-renumber jätka reanumbreid järgmisel lehel\n" +" -s, --number-separator=SÕNE lisa SÕNE peale (võimalikku) reanumbrit\n" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" +" -v, --first-page=NUMBER esimene rea number igal loogilisel lehel\n" +" -w, --number-width=NUMBER kasuta reanumbritele NUMBER veergu\n" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" +"\n" +"Vaikimisi kasutatakse -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. SE on\n" +"kaks eraldussümbolit loogiliste lehekülgede eraldamiseks, puuduva teise\n" +"sümboli asemel kasutatakse :. \\ esitamiseks kirjutage \\\\.\n" +"STIIL on üks järgnevaist:\n" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" +"\n" +" a nummerda kõik read\n" +" t nummerda ainult mittetühjad read\n" +" n ära nummerda ridu\n" +" pREGAV nummerda ainult read, mis sobivad antud regulaaravaldisega\n" +"\n" +"VORMING on üks järgnevaist:\n" +"\n" +" ln vasakule joondatud, nulle ees pole\n" +" rn paremale joondatud, nulle ees pole\n" +" rz paremale joondatud, eest täidetud nulludega\n" +"\n" + +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "vigane alustamise rea number: `%s'" + +#: src/nl.c:514 +#, c-format +msgid "invalid line number increment: `%s'" +msgstr "vigane rea numbri samm: `%s'" + +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "vigane tühjade ridade arv: `%s'" + +#: src/nl.c:541 +#, c-format +msgid "invalid line number field width: `%s'" +msgstr "vigane rea numbri välja laius: `%s'" + +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"Kasutamine: %s [VÕTI]... [FAIL]...\n" +" või: %s --traditional [FAIL] [[+]INDEKS [[+]MÄRGEND]]\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"\n" +"Väljasta faili üheselt mõistetav esitus (vaikimisi kaheksandbaidid)\n" +"standardväljundisse. Enam, kui ühe faili korral väljastatakse nende\n" +"sisud järjest vastavalt esitatud järjekorrale.\n" +"Kui FAIL puudub või on -, loe standardsisendit.\n" +"\n" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "" +"Kohustuslikud argumendid pikkadele võtmetele on kohustuslikud ka " +"lühikestele.\n" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" +" -A, --address-radix=RAADIKS kuidas väljastada faili positsioonid\n" +" -j, --skip-bytes=BAIDID jäta esimesed BAIDID baiti vahele\n" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" +" -N, --read-bytes=BAITE väljasta ainult antud arv baite\n" +" -s, --strings[=BAITE] väljasta vähemalt BAITE pikkusega sõned\n" +" -t, --format=TÜÜP määra väljundvorming või vormingud\n" +" -v, --output-duplicates ära kasuta korduvate ridade märkimiseks *\n" +" -w, --width[=BAITE] väljasta BAITE baiti rea kohta\n" +" --traditional kasuta traditsioonilisel kujul argumente\n" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" +"\n" +"Traditsioonilisi vormingu määranguid võib koos kasutada; need on:\n" +" -a sama, kui -t a, vali nimedega sümbolid\n" +" -b sama, kui -t oC, vali kaheksandbaidid\n" +" -c sama, kui -t c, vali ASCII sümbolid või langkriipsuga paojada\n" +" -d sama, kui -t u2, vali märgita lühikesed kümnendarvud\n" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" +" -f sama, kui -t fF, vali ujukomaarvud\n" +" -h sama, kui -t x2, vali lühikesed kuueteistkümnendarvud\n" +" -i sama, kui -t d2, vali lühikesed kümnendarvud\n" +" -l sama, kui -t d4, vali pikad kümnendarvud\n" +" -o sama, kui -t o2, vali lühikesed kaheksandarvud\n" +" -x sama, kui -t x2, vali lühikesed kuueteistkümnendarvud\n" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" +"\n" +"Vanema süntaksi puhul NIHE tähendab -j NIHE. MÄRGEND on esimese " +"väljastatava\n" +"baidi pseudo-aadress, mida suurendatakse töö käigus. Nihke ja märgendi " +"puhul\n" +"tähistab 0x või 0X kuueteistkümnendesitust, sufiks võib olla . kaheksand-\n" +"esituse korral ja b tähistab 512 kordseid.\n" +"\n" +"TÜÜP on üks või enam järgnevaid:\n" +"\n" +" a sümbolid nimedega\n" +" c ASCII sümbol või langkriipsuga paojada\n" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" +" d[SUURUS] märgiga kümnendarv, SUURUS baiti\n" +" f[SUURUS] ujukoma arv, SUURUS baiti\n" +" o[SUURUS] kaheksandarv, SUURUS baiti\n" +" u[SUURUS] märgita kümnendarv, SUURUS baiti\n" +" x[SUURUS] kuueteiskümnendarv, SUURUS baiti\n" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" +"\n" +"SUURUS on number. TÜÜPIDE doux korral võib SUURUS olla ka C, tähistamaks\n" +"sizeof(char), S tähistamaks sizeof(short), I tähistamaks sizeof(int) või\n" +"L tähistamaks sizeof(long). Kui TÜÜP on f võib SUURUS olla ka F tähistamaks\n" +"sizeof(float), D tähistamaks sizeof(double) või L tähistamaks\n" +"sizeof(long double).\n" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" +"\n" +"RAADIKS on d kümnendarvu puhul, o kaheksandarvu puhul, x " +"kuueteistkümnendarvu\n" +"puhul või n et mitte väljastada.\n" +"BAITE on kuueteistkümnendnumber 0x või 0X prefiksiga, võib olla 512 kordne\n" +"sufiksi b korral, 1024 kordne k korral ja 1048576 kordne m korral. Sufiksi\n" +"z lisamine suvalisele tüübile lisab iga väljundrea lõppu vaate prinditavate\n" +"sümbolitega. " + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" +"Numbrita --string korral kasutatakse väärtust 3. Numbrita --width korral\n" +"kasutatakse väärtust 32. Vaikimisi kasutab od -A o -t d2 -w 16.\n" + +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "vigane tüübisõne: `%s'" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" +"vigane tüübisõne `%s';\n" +"see süsteem ei realiseeri %lu-baidist sisetüüpi" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" +"vigane tüübisõne `%s';\n" +"see süsteem ei realiseeri %lu-baidist ujukoma tüüpi" + +#: src/od.c:917 +#, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "vigane sümbol `%c' tüübisõnes `%s'" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "kombineeritud sisendi lõpust kaugemale liikuda ei saa" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "vanas stiilis nihe" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "" +"vigane väljundi aadressi raadiks `%c'; see peab olema üks sümbolitest [doxn]" + +#: src/od.c:1717 +msgid "skip argument" +msgstr "vahelejätmise argument" + +#: src/od.c:1725 +msgid "limit argument" +msgstr "piirangu argument" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "minimaalne sõne pikkus" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "%s on liiga suur" + +#: src/od.c:1804 +msgid "width specification" +msgstr "laiuse määrang" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "tüüpi ei saa määrata, kui trükitakse sõnesid" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "vigane teine operand ühilduvuse moodis `%s'" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "ühilduvuse moodis peavad viimased kaks argumenti olema nihked" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "ühilduvuse mood toetab ülimalt kolme argumenti" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "hoiatus: vigane laius %lu; kasutan selle asemel %d" + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "%d: formaat=\"%s\" laius=%d\n" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "David M. Ihnat ja David MacKenzie" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "standardsisend suleti" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Kirjuta read, mis koosnevad tabulaatoriga eraldatud igast failist kokku\n" +"liidetud vastavatest ridadest, standardväljundisse.\n" +"Kui FAIL puudub või on -, loe standardsisendit.\n" +"\n" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" +" -d, --delimiters=LOEND kasuta TAB asemel sümboleid LOENDist\n" +" -s, --serial väljasta üks fail korraga, mitte paralleelselt\n" + +#: src/pathchk.c:146 +#, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "Kasutamine: %s [VÕTI]... NIMI...\n" + +#: src/pathchk.c:147 +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" +"Otsi nimest mitteporditavaid konstruktsioone.\n" +"\n" +" -p, --portability kontrolli kõiki POSIX süsteeme\n" + +#: src/pathchk.c:237 +#, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "tee `%s' sisaldab mitteportatiivset sümbolit `%c'" + +#: src/pathchk.c:257 +#, c-format +msgid "`%s' is not a directory" +msgstr "`%s' pole kataloog" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "kataloogis `%s' ei saa otsida" + +#: src/pathchk.c:355 +#, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "nimi `%s' on pikkusega %ld; see ületab piirangut %ld" + +#: src/pathchk.c:381 +#, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "tee `%s' on pikkusega %d; see ületab piirangut %ld" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "Joseph Arceneaux, David MacKenzie ja Kaveh Ghazi" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "Kasutajanimi: " + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "Reaalne nimi: " + +#: src/pinky.c:298 +msgid "???\n" +msgstr "???\n" + +#: src/pinky.c:318 +msgid "Directory: " +msgstr "Kataloog: " + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "Käsuinterpretaator: " + +#: src/pinky.c:341 +msgid "Project: " +msgstr "Projekt: " + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "Plaan:\n" + +#: src/pinky.c:386 +msgid "Login" +msgstr "Kasutaja" + +#: src/pinky.c:388 +msgid "Name" +msgstr "Nimi" + +#: src/pinky.c:389 +msgid " TTY" +msgstr " TTY" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "Eemal" + +#: src/pinky.c:392 +msgid "When" +msgstr "Millal" + +#: src/pinky.c:395 +msgid "Where" +msgstr "Kust" + +#: src/pinky.c:469 +#, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "Kasutamine: %s [VÕTI]... [KASUTAJA]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" +"\n" +" -l väljasta antud kasutajate kohta kogu info\n" +" -b ära esita kogu infos kasutaja kodukataloogi ja shelli\n" +" -h ära esita kogu infos kasutaja projekti faili\n" +" -p ära esita kogu infos kasutaja plaani faili\n" +" -s väljasta lühiinfo, seda kasutatakse vaikimisi\n" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" +" -f ära väljasta lühiinfo väljade päiseid\n" +" -w ära väljasta lühiinfos kasutaja täisnime\n" +" -i ära väljasta lühiinfos kasutaja täisnime ja masinat\n" +" -q ära väljasta lühiinfos kasutaja täisnime, masinat ja\n" +" eemalolekut\n" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" +"\n" +"Kerge `finger' programm; väljastab kasutaja kohta infot.\n" +"Kasutatakse utmp faili %s.\n" + +#: src/pinky.c:574 +msgid "no username specified; at least one must be specified when using -l" +msgstr "" +"kasutajanimi puudub; -l kasutamisel peab olema vähemalt üks kasutajanimi" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "Pete TerMaat ja Roland Huebner" + +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "`--pages' vigane lehekülje numbrite vahemik: `%s'" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "`--pages' vigane alustamise lehe number: `%s'" + +#: src/pr.c:829 +#, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "`--pages' vigane lõpetamise lehe number: `%s'" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "`--pages' alustava lehe number on suurem, kui lõpetava lehe number" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "`--pages=ESIMENE[:VIIMANE]' puudub argument" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "`--columns=VEERGE' vigane veergude arv: `%s'" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "`-l LEHE_PIKKUS' vigane ridade arv: `%s'" + +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "`-N NUMBER' vigane alustamise rea number: `%s'" + +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "`-o ÄÄR' vigane rea nihe: `%s'" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "`-w LEHE_LAIUS' vigane arv sümboleid: `%s'" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "`-W LEHE_LAIUS' vigane arv sümboleid: `%s'" + +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "%e. %b %H:%M %Y" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "Paralleelselt väljastamisel ei saa veergude arvu määrata." + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "Ei saa trükkida korraga järjestikku ja paralleelselt." + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "`-%c' liigsed sümbolid või vigane number argumendis: `%s'" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "leht on liiga kitsas" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "alguslehe number on suurem, kui lehtede koguarv: `%d'" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "Leht %d" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "Küljenda FAILid trükkimiseks lehekülgedeks või veergudeks.\n" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" +" +ESIMENE_LEHT[:VIIMANE], --pages=ESIMENE_LEHT[:VIIMANE]\n" +" alusta [lõpeta] trükkimine lehelt ESIMENE_LEHT\n" +" -VEERGE, --columns=N\n" +" väljasta N veergu ja väljasta veerud ülalt alla,\n" +" välja arvatud juhul, kui kasutatakse võtit -a.\n" +" Ühtlusta ridade arv veergudes igal lehel.\n" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" +" -a, --across väljasta veerud risti üle leha, mitte ülalt alla,\n" +" kasutatakse koos võtmega -VEERGE\n" +" -c, --show-control-chars\n" +" kasuta katus (^G) ja kaheksand langkriips notatsiooni\n" +" -d, --double-space\n" +" topeltreavahe väljundis\n" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" +" -D, --date-format=VORMING\n" +" määra päise kuupäeva VORMING\n" +" -e[SÜMB[LAIUS]], --expand-tabs[=SÜMB[LAIUS]]\n" +" laienda sisendi sümbolid (TAB) tabulaatori laiuseni (8)\n" +" -F, -f, --form-feed\n" +" kasuta lehekülgede eraldamisel reavahetuste asemel\n" +" lehevahetuse sümboleid (3-realine lehe päis võtmega -F\n" +" või 5-realine päis ja jalus võtmata -F)\n" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" +" -h PÄIS, --header=PÄIS\n" +" kasuta lehe päises faili nime asemel PÄIS,\n" +" -h \"\" väljastab tühja rea, ärge kasutage -h\"\"\n" +" -i[SÜMB[LAIUS]], --output-tabs[=SÜMB[LAIUS]]\n" +" asenda tühikud sümboliga (TAB) tabulatsiooni laiusega " +"(8)\n" +" -J, --join-lines mesti täisread, lülitab välja -W rea lühendamise, " +"veerge\n" +" ei joondata, --sep-string[=SÕNE] määrab eraldaja\n" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" +" -l LEHE_PIKKUS, --length=LEHE_PIKKUS\n" +" sea lehe pikkuseks LEHE_PIKKUS (66) rida (vaikimisi\n" +" on teksti ridu 56, võtmega -F 63)\n" +" -m, --merge väljasta kõik failid paralleelselt, üks veeru kohta,\n" +" lühenda read, ridade kogupikkuses ühendamiseks\n" +" kasutage -J\n" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" +" -n[ERALD[NUM]], --number-lines[=ERALD[NUM]]\n" +" nummerda read, kasuta NUM (5) numbrit, seejärel ERALD\n" +" (TAB), vaikimisi alustatakse loendamist sisendfaili\n" +" esimesest reast\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" alusta loendamist ühe asemel antud numbrist esimese\n" +" trükitava lehe esimesel real (vaata ka +ESIMENE_LEHT)\n" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" +" -o SERV, --indent=SERV\n" +" nihuta iga rida SERV (null) tühikut, ei mõjuta võtmeid\n" +" -w või -W, SERV lisatakse LEHE_LAIUSele\n" +" -r, --no-file-warnings\n" +" ära hoiata, kui faili ei saa avada\n" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" +" -s[SÜMBOL],--separator[=SÜMBOL]\n" +" erlda veerud antud sümboliga, võtmeta -w kasutatakse\n" +" vaikimisi sümbolit ja 'sümbol puudub' võtmega -w.\n" +" -s[SÜMBOL] lülitab välja ridade lühendamise kõigi kolme\n" +" veergudega seotud võtmete puhul (-VEERG|-a -VEERG|-m),\n" +" välja arvatud juhul, kui kasutatakse võtit -w\n" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr " -SSÕNE, --sep-string[=SÕNE]\n" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" +" eralda veerud SÕNEga,\n" +" võtmeta -S: -J korral on vaikimisi eraldaja ja\n" +" muidu (sama, kui -S\" \"), ei kasutata " +"veergudega\n" +" seotud võtmetega\n" +" -t, --omit-header blokeeri lehe päised ja sabad\n" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" +" -T, --omit-pagination\n" +" keela päised ja jalused, eemalda sisendfailidest kõik\n" +" lehevahetused\n" +" -v, --show-nonprinting\n" +" kasuta langkriipsuga kaheksandkoodide notatsiooni\n" +" -w LEHE_LAIUS, --width=LEHE_LAIUS\n" +" sea lehe laius LEHE_LAIUS (72) sümbolit mitme " +"tekstiveeru\n" +" väljundis, -s[sümbol] lülitab välja (72)\n" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" +" -W LEHE_LAIUS, --page-width=LEHE_LAIUS\n" +" määra lehe laiuseks LEHE_LAIUS (72) sümbolit, lühenda\n" +" ridu, välja arvatud juhul, kui on seatud võti -J, ei\n" +" sega võtmeid -S või -s\n" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" +"\n" +"-T kasutatakse võtmega -l nn kui nn <= 10 või <= 3 võtmega -F. Kui FAIL\n" +"puudub või on -, loe standardsisendit.\n" + +#: src/printenv.c:43 +msgid "David MacKenzie and Richard Mlynarik" +msgstr "David MacKenzie ja Richard Mlynarik" + +#: src/printenv.c:63 +#, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" +"Kasutamine: %s [MUUTUJA]...\n" +" või: %s VÕTI\n" +"Kui keskkonnamuutujat MUUTUJA ei ole antud, väljasta nad kõik.\n" +"\n" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "hoiatus: %s: ignoreerin sümbolkonstandile järgnevaid sümboleid" + +#: src/printf.c:100 +#, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"Kasutamine: %s FORMAAT [ARGUMENT]...\n" +" või: %s VÕTI\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" +"Väljasta ARGUMENT kasutades antud FORMAATI.\n" +"\n" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" +"\n" +"FORMAAT kontrollib väljundit nagu C printf. Interpreteeritavad järjendid " +"on:\n" +"\n" +" \\\" jutumärk\n" +" \\0NNN sümbol kaheksandkoodiga NNN (0 kuni 3 numbrit)\n" +" \\\\ langkriips\n" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" +" \\a tähelepanu (BEL)\n" +" \\b samm tagasi\n" +" \\c ära väljasta enam midagi\n" +" \\f lehevahetus\n" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\n uus rida\n" +" \\r rea algusesse\n" +" \\t horisontaalne tabulaator\n" +" \\v vertikaalne tabulaator\n" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" +" \\xNN bait kuueteistkümnendväärtusega NNN (1 kuni 2 numbrit)\n" +"\n" +" \\uNNNN sümbol kuueteistkümnendväärtusega NNNN (4 numbrit)\n" +" \\UNNNNNNNN sümbol kuueteistkümnendväärtusega NNNNNNNN (8 numbrit)\n" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" +" %% sümbol %\n" +" %b ARGUMENT sõnena, mille `\\' järjendeid interpreteeritakse\n" +"\n" +"ja samuti kõik C formaadi määrangud, mis lõppevad ühega sümboleist\n" +"diouxXfeEgGcs, ja ARGUMENdid teisendatuna esmalt õigesse tüüpi.\n" +"Käsitletakse ka muutuvaid pikkuseid.\n" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "%s: ootasin numbrilist väärtust" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "%s: väärtust ei teisendatud täielikult" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "paojadas puudub kuueteistkümnend number" + +#: src/printf.c:292 +#, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "vigane universaal sümboli nimi \\%c%0*x" + +#: src/printf.c:472 +#, c-format +msgid "invalid field width: %s" +msgstr "vigane välja laius: %s" + +#: src/printf.c:498 +#, c-format +msgid "invalid precision: %s" +msgstr "vigane täpsus: %s" + +#: src/printf.c:519 +#, c-format +msgid "%%%c: invalid directive" +msgstr "%%%c: vigane korraldus" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "Kasutamine: %s formaat [argument...]\n" + +#: src/printf.c:594 +#, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "hoiatus: ignoreerin liigseid argumente, alustan argumendist `%s'" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "%s (regulaaravaldisele `%s')" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"Kasutamine: %s [VÕTI]... [SISEND]... (ilma -G)\n" +" või: %s [VÕTI]... [SISEND [VÄLJUND]]\n" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" +"Väljasta sisendfailide sõnade kontekstregister.\n" +"\n" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" +" -A, --auto-reference väljasta automaatselt loodud viited\n" +" -C, --copyright väljasta autoriõigus ja kopeerimise " +"tingimused\n" +" -G, --traditional käitu kui System V `ptx'\n" +" -F, --flag-truncation=SÕNE kasuta ridade lühendamise märkimiseks SÕNE\n" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" +" -M, --macro-name=SÕNE kasuta `xx' asemel makro nime\n" +" -O, --format=roff loo väljund roff käskudena\n" +" -R, --right-side-refs paiguta viited paremale, ei loendata " +"võtmega -w\n" +" -S, --sentence-regexp=REGAV realõpud või lausete lõpud\n" +" -T, --format=tex loo väljund TeX käskudena\n" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" +" -W, --word-regexp=REGAV kasuta võtmesõnade leidmiseks REGAV\n" +" -b, --break-file=FAIL sõnu eraldavad sümbolid on selles failis\n" +" -f, --ignore-case järjesta tõstutundetult\n" +" -g, --gap-size=NUMBER veergude vahe suurus väljundis\n" +" -i, --ignore-file=FAIL loe ignoreeritavate sõnade nimekiri\n" +" -o, --only-file=FAIL ainult lugemiseks olevate sõnade fail\n" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" +" -r, --references esimene väli igal real on viide\n" +" -t, --typeset-mode - ei ole realiseeritud -\n" +" -w, --width=NUMBER väljasta veergudena, viideteta\n" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" +"\n" +"Kui FAIL puudub või on -, loe standardsisendit. `-F /' on vaikimisi.\n" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" +"Käesolev programm on vaba tarkvara. Te võite seda edasi levitada ja/või " +"muuta\n" +"vastavalt GNU Üldise Avaliku Litsentsi tingimustele, nagu need on Vaba " +"Tarkvara\n" +"Fondi poolt avaldatud; kas Litsentsi versioon number 2 või (vastavalt Teie\n" +"valikule) ükskõik milline hilisem versioon.\n" +"\n" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" +"Seda programmi levitatakse lootuses, et see on kasulik, kuid ILMA IGASUGUSE\n" +"GARANTIITA; isegi KESKMISE/TAVALISE KVALITEEDI GARANTIITA või SOBIVUSELE " +"TEATUD\n" +"KINDLAKS EESMÄRGIKS. Üksikasjade suhtes vaata GNU Üldist Avalikku " +"Litsentsi.\n" +"\n" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" +"Te peaks olema saanud GNU Üldise Avaliku Litsentsi koopia koos selle\n" +"programmiga, kui ei, siis kontakteeruge Free Software Foundation'iga,\n" +"59 Temple Place - Suite 330, Boston, MA 02111-1307, USA\n" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" +"Väljasta jooksva töökataloogi täielik nimi.\n" +"\n" + +#: src/pwd.c:74 +msgid "ignoring non-option arguments" +msgstr "ignoreerin argumente, mis ei ole võtmed" + +#: src/pwd.c:78 +msgid "cannot get current directory" +msgstr "ei õnnestu leida jooksvat kataloogi" + +#: src/readlink.c:69 +#, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "Kasutamine: %s [VÕTI]... FAIL\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" +"Väljasta nimeviite väärtus standardväljundisse.\n" +"\n" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" +" -f, --canonicalize teisenda nimeviited kanooniliseks, testides kõiki\n" +" failinime komponente rekursiivselt\n" +" -n, --no-newline ära väljasta lõpetavat reavahetust\n" +" -q, --quiet,\n" +" -s, --silent blokeeri enamus veateateid\n" +" -v, --verbose raporteeri kõik veateated\n" + +#: src/remove.c:394 +#, c-format +msgid "cannot chdir from %s to .." +msgstr "ei saa minna kataloogist %s kataloogi .." + +#: src/remove.c:407 src/remove.c:488 +#, c-format +msgid "cannot lstat `.' in %s" +msgstr "kataloogis %s ei õnnestu lstat `.'" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "%s seade/inum muutus" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, c-format +msgid "cannot lstat %s" +msgstr "lstat %s ei õnnestu" + +#: src/remove.c:603 +#, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "%s: laskun kirjutamise kaitsega kataloogi %s? " + +#: src/remove.c:604 +#, c-format +msgid "%s: descend into directory %s? " +msgstr "%s: laskun kataloogi %s? " + +#: src/remove.c:614 +#, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: eemaldan kirjutuskaitsega %s %s? " + +#: src/remove.c:615 +#, c-format +msgid "%s: remove %s %s? " +msgstr "%s: eemaldan %s %s? " + +#: src/remove.c:639 +#, c-format +msgid "removed %s\n" +msgstr "%s eemaldatud\n" + +#: src/remove.c:654 src/remove.c:1059 +#, c-format +msgid "removed directory: %s\n" +msgstr "kustutatud kataloog: %s\n" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, c-format +msgid "cannot remove directory %s" +msgstr "kataloogi %s ei õnnestu kustutada" + +#: src/remove.c:815 +#, c-format +msgid "cannot open directory %s" +msgstr "kataloogi %s ei saa avada" + +#: src/remove.c:896 src/remove.c:1002 +#, c-format +msgid "cannot chdir from %s to %s" +msgstr "kataloogist %s ei saa minna kataloogi %s" + +#: src/remove.c:904 +#, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +"HOIATUS: Tsükliline kataloogide struktuur.\n" +"See tähendab peaaegu alati, et failisüsteem on viga saanud.\n" +"TEAVITA OMA SÜSTEEMIADMINISTRAATORIT.\n" +"Järgnev kataloog on tsükli osa:\n" +" %s\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "ei õnnestu eemaldada `.' või `..'" + +#: src/rm.c:60 +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "Paul Rubin, David MacKenzie, Richard Stallman ja Jim Meyering" + +#: src/rm.c:99 src/touch.c:244 +#, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "Kasutamine: %s [VÕTI]... [FAIL]...\n" + +#: src/rm.c:100 +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Eemalda (kustuta) fail(id).\n" +"\n" +" -d, --directory kustuta fail, isegi kui see on mittetühi\n" +" kataloog (ainult super-kasutaja)\n" +" -f, --force ignoreeri puuduvaid faile, ära küsi kunagi\n" +" -i, --interactive küsi iga kustutamise eel\n" +" -r, -R, --recursive eemalda kataloogide sisu rekursiivselt\n" +" -v, --verbose selgita mida tehakse\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" +"\n" +"Et eemaldada faili, mille nimi algab sümboliga `-', näiteks `-foo',\n" +"kasutage üht järgnevaist käskudest:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" +"\n" +"Kui te kasutate faili kustutamiseks käsku rm, võib tihti olla võimalik\n" +"siiski faili sisu taastada. Kui teil on vaja suuremat kindlust, et faili\n" +"sisu ei saa taastada, proovige käsku shred.\n" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, c-format +msgid "removing directory, %s" +msgstr "kustutan kataloogi, %s" + +#: src/rmdir.c:146 +#, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "Kasutamine: %s [VÕTI]... KATALOOG...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" +"Eemalda tühjad kataloogid.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignoreeri vigu mis on tingitud sellest, et kataloog\n" +" pole tühi\n" + +#: src/rmdir.c:154 +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +" -p, --parents eemaldab KATALOOGI, ja proovib eemaldada ka iga " +"komponenti\n" +" kataloogi otsinguteel. Näiteks `rmdir -p a/b/c' on " +"sarnane\n" +" käsule `rmdir a/b/c a/b a'.\n" +" -v, --verbose väljastab diagnostika iga töödeldud kataloogi kohta\n" + +#: src/seq.c:82 +#, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"Kasutamine: %s [VÕTI]... VIIMANE\n" +" või: %s [VÕTI]... ESIMENE VIIMANE\n" +" või: %s [VÕTI]... ESIMENE SAMM VIIMANE\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" +"Väljasta numbrid esimesest viimaseni, vajadusel kasutades etteantud sammu.\n" +"\n" +" -f, --format FORMAAT kasuta printf(3) stiilis formaati (vaikimisi: %" +"g)\n" +" -s, --separator=SÕNE kasuta numbrite eraldamiseks SÕNE (vaikimisi: " +"\\n)\n" +" -w, --equal-width kasuta võrdse laiusega välju, täida nullidega\n" + +#: src/seq.c:96 +#, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" +"\n" +"Kui ESIMENE või SAMM puudub, kasutatakse väärtust 1.\n" +"ESIMENE, SAMM, VIIMANE interpreteeritakse, kui murdarve.\n" +"SAMM peab olema positiivne, kui ESIMENE on väiksem, kui VIIMANE ja\n" +"muudel juhtudel negatiivne. Kui kasutatakse formaadi määramist, peab\n" +"formaat olema üks printf stiilis ujukoma väljundformaadist %e, %f, %g\n" + +#: src/seq.c:119 +#, c-format +msgid "invalid floating point argument: %s" +msgstr "vigane murdarv: %s" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" +"kui esimene väärtus on suurem, kui viimane,\n" +"peab samm olema negatiivne" + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" +"kui esimene väärtus on väiksem, kui viimane,\n" +"peab samm olema positiivne" + +#: src/seq.c:423 +#, c-format +msgid "invalid format string: `%s'" +msgstr "vigane formaadisõne: `%s'" + +#: src/seq.c:445 +msgid "format string may not be specified when printing equal width strings" +msgstr "kui trükitakse võrdse pikkusega sõnesid, ei saa formaadisõnet kasutada" + +#: src/shred.c:160 +#, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "Kasutamine: %s [VÕTI]... FAIL [...]\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" +"Kirjuta antud failid korduvalt üle, et muuta raskemaks andmete taastamine\n" +"isegi väga kalli riistvara abil.\n" +"\n" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" +" -f, --force vajadusel lisa kirjutamisõigus\n" +" -n, --iterations=N kirjuta üle vaikimisi (%d) korra asemel N korda\n" +" -s, --size=N töötle N baiti (lubatud on kasutada ka sufiksit K, M, G)\n" + +#: src/shred.c:174 +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" +" -u, --remove lühenda ja eemalda fail peale ülekirjutamisi\n" +" -v, --verbose näita töö käiku\n" +" -x, --exact ära ümarda failisuurusi üles täisplokini;\n" +" see on mitte-tavafailide puhul vaikimisi käitumine\n" +" -z, --zero varja töötlemist, kirjutades viimasena nulle\n" +" - töötle standardväljundit\n" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" +"\n" +"Kustuta failid, kui kasutati võtit --remove (-u). Vaikimisi faile ei\n" +"kustutata, kuna enamasti töötatakse seadmefailidega, näiteks /dev/hda,\n" +"ja enamasti ei soovita nende eemaldamist. Tavaliste failidega töötamisel\n" +"kasutab enamus inimesi võtit --remove.\n" +"\n" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" +"HOIATUS: shred omab oma tööks tähtsat eeldust: failisüsteem kirjutab\n" +"andmeid üle. See on traditsiooniline lähenemine, aga paljud süsteemid\n" +"tänapäeval ei toeta seda eeldust. Näiteks järgnevatel failisüsteemidel\n" +"ei ole shred efektiivne:\n" +"\n" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" +"* logi-struktuuriga või \"journaled\" failisüsteemid, näiteks nagu pakuvad\n" +" AIX ja Solaris (ja JFS, ReiserFS, XFS, Ext3 jne.)\n" +"\n" +"* failisüsteemid, mis kirjutavad taastatavaid andmeid, näiteks RAID\n" +" tehnoloogial põhinevad failisüsteemid\n" +"\n" +"* failisüsteemid, mis teevad andmetest väljavõtteid (snapshots), näiteks\n" +" Network Appliance NFS server\n" +"\n" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" +"* failisüsteemid, mis puhverdavad andmeid ajutiselt, näiteks NFS\n" +" versioon 3 kliendid\n" +"\n" +"* pakitud failisüsteemid\n" +"\n" +"Lisaks võib olla failisüsteemist varukoopiaid või peegeldusi, mida ei\n" +"saa eemaldada ja mis võimaldavad faili taastamist.\n" + +#: src/shred.c:808 +#, c-format +msgid "%s: cannot rewind" +msgstr "%s: ei saa ümber kerida" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "%s: läbimine %lu/%lu (%s)..." + +#: src/shred.c:868 +#, c-format +msgid "%s: error writing at offset %s" +msgstr "%s: viga kirjutamisel aadressile %s" + +#: src/shred.c:897 +#, c-format +msgid "%s: file too large" +msgstr "%s: fail on liiga suur" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "%s: läbimine %lu/%lu (%s)...%s" + +#: src/shred.c:936 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "%s: läbimine %lu/%lu (%s)...%s/%s %d%%" + +#: src/shred.c:1195 +#, c-format +msgid "%s: invalid file type" +msgstr "%s: vigane failitüüp" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s: fail on negatiivse suurusega" + +#: src/shred.c:1265 +#, c-format +msgid "%s: error truncating" +msgstr "%s: viga lühendamisel" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "%s: ei õnnestu töödelda ainult lisamiseks mõeldud faili" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "%s: eemaldan" + +#: src/shred.c:1412 +#, c-format +msgid "%s: renamed to %s" +msgstr "%s: uus nimi %s" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s: eemaldatud" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "%s: ei õnnestu eemaldada" + +#: src/shred.c:1551 +#, c-format +msgid "%s: invalid number of passes" +msgstr "%s: vigane läbimiste arv" + +#: src/shred.c:1568 +#, c-format +msgid "%s: invalid file size" +msgstr "%s: vigane faili suurus" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "Jim Meyering ja Paul Eggert" + +#: src/sleep.c:52 +#, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" +"Kasutamine: %s NUMBER[SUFIKS]...\n" +" või: %s VÕTI\n" +"Paus pikkusega NUMBER sekundit. SUFIKS võib olla `s', tähistamaks sekundeid\n" +"(vaikimisi), `m' minuteid, `h' tunde või `d' päevi. Erinevalt enamusest\n" +"realisatsioonidest võib NUMBER olla ka murdarv.\n" +"\n" + +#: src/sleep.c:155 +#, c-format +msgid "invalid time interval `%s'" +msgstr "vigane ajaintervall `%s'" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "ei õnnestu lugeda reaalaja kella" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "Mike Haertel ja Paul Eggert" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" +"Kirjuta järjestatud FAILide ühend standardväljundisse.\n" +"\n" +"Võtmed järjestamiseks:\n" +"\n" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" +" -b, --ignore-leading-blanks ignoreeri ees olevaid tühimikke\n" +" -d, --dictionary-order kasuta ainult tühemikke ja tähti ning " +"numbreid\n" +" -f, --ignore-case tööta tõstutundetult\n" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" +" -g, --general-numeric-sort võrdle vastavaid üldisi numbrilisi väärtusi\n" +" -i, --ignore-nonprinting kasuta ainult trükitavaid sümboleid\n" +" -M, --month-sort võrdle (tundmatu) < `JAAN' < ... < `DETS'\n" +" -n, --numeric-sort võrdle vastavaid sõnede numbrilisi väärtusi\n" +" -r, --reverse pööra võrdluste tulemus\n" +"\n" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" +"Teised võtmed:\n" +"\n" +" -c, --check kontrolli kas sisend on järjestatud; ei " +"järjesta\n" +" -k, --key=POS1[,POS2] võti algab kohal POS1, lõppeb POS2 (algselt 1)\n" +" -m, --merge mesti juba järjestatud failid; ei järjesta\n" +" -o, --output=FAIL kirjuta tulemus standardväljundi asemel FAILi\n" +" -s, --stable stabiliseeri sort blokeerides last-resort " +"võrdlus\n" +" -S, --buffer-size=MAHT määra mälupuhvri suurus\n" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" +" -t, --field-separator=ERA määra tühemiku asemele uus väljade eraldaja\n" +" -T, --temporary-directory=KAT kasuta ajutiste failide jaoks $TMPDIR või %" +"s\n" +" asemel kataloog. Korduv kasutamine määrab " +"mitu\n" +" kataloogi\n" +" -u, --unique võtmega -c: kontrolli ranget järjestatust\n" +" muidu: väljasta võrdsetest ainult üks\n" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr " -z, --zero-terminated lõpeta read reavahetuse asemel baidiga 0\n" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" +"\n" +"POS on V[.S][VÕTMED], kus V on välja number ja S on sümboli positsioon\n" +"väljal. VÕTMED on üks või enam ühe tähelisi järjestamise võtmeid, mis\n" +"määravad antud võtme jaoks ümber globaalselt seatud järjestamise reegleid.\n" +"Kui võtit ei ole antud, kasutatakse võtmena tervet rida.\n" +"\n" +"MAHT järel võib kasutada järgnevaid kordavaid sufikseid:\n" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" +"% 1% mälust, b 1, K 1024 (vaikimisi), jne tähtedega M, G, T, P, E, Z, Y.\n" +"\n" +"Kui FAIL puudub või on -, loe standardsisendit.\n" +"\n" +"*** HOIATUS ***\n" +"Keskkonna poolt määratud lokaat mõjutab järjestamist. Traditsioonilise,\n" +"baitide väärtusel põhineva järjestuse saamiseks seadke LC_ALL=C. \n" + +#: src/sort.c:444 +msgid "cannot create temporary file" +msgstr "ajutist faili ei õnnestu luua" + +#: src/sort.c:467 +msgid "open failed" +msgstr "open ebaõnnestus" + +#: src/sort.c:487 src/sort.c:2496 +msgid "close failed" +msgstr "close ebaõnnestus" + +#: src/sort.c:495 +msgid "write failed" +msgstr "kirjutamine ebaõnnestus" + +#: src/sort.c:641 +msgid "sort size" +msgstr "järjestamise suurus" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "stat ebaõnnestus" + +#: src/sort.c:972 +msgid "read failed" +msgstr "lugemine ebaõnnestus" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "%s: %s:%s: korratu: " + +#: src/sort.c:1574 +msgid "standard error" +msgstr "standard veavoog" + +#: src/sort.c:2032 +#, c-format +msgid "%s: invalid field specification `%s'" +msgstr "%s: vigane välja määrang `%s'" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "%s: loendur `%.*s' on liiga suur" + +#: src/sort.c:2064 +#, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "%s: vigane loendur `%s' alguses" + +#: src/sort.c:2298 +msgid "invalid number after `-'" +msgstr "vigane kuupäev peale `-'" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +msgid "invalid number after `.'" +msgstr "vigane number peale `.'" + +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "juhuslik sümbol välja määrangus" + +#: src/sort.c:2338 +msgid "invalid number at field start" +msgstr "vigane number välja alguses" + +#: src/sort.c:2342 src/sort.c:2370 +msgid "field number is zero" +msgstr "välja number on null" + +#: src/sort.c:2351 +msgid "character offset is zero" +msgstr "sümboli nihe on null" + +#: src/sort.c:2366 +msgid "invalid number after `,'" +msgstr "vigane number peale `,'" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "mitme-sümboliline tabulaator `%s'" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "võtmega -c ei lubata täiendavat operandi `%s'" + +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "Kasutamine: %s [VÕTI]... [SISEND [PREFIKS]]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" +"Väljasta antud suurusega tükid sisendist failidesse PREFIKSaa,\n" +"PREFIKSab, ...; vaikimisi prefiks on `x'. Kui sisend puudub või on -,\n" +"loe standardsisendit.\n" +"\n" + +#: src/split.c:108 +#, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" +" -a, --suffix-length=N kasuta sufikseid pikkusega N (vaikimisi %d)\n" +" -b, --bytes=MAHT pane väljundi ritta MAHT baiti\n" +" -C, --line-bytes=MAHT väljasta faili ülimalt MAHT baidiseid ridu\n" +" -l, --lines=NUMBER väljasta väljundfaili NUMBER rida\n" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" +" --verbose väljasta enne iga faili avamist standard veavoogu\n" +" diagnostilist infot\n" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "Väljundfailide sufiksid said otsa" + +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "loon faili `%s'\n" + +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "ei saa tükeldada enam kui ühel viisil" + +#: src/split.c:394 +#, c-format +msgid "%s: invalid suffix length" +msgstr "%s: vigane sufiksi pikkus" + +#: src/split.c:408 src/split.c:434 +#, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: vigane baitide arv" + +#: src/split.c:421 +#, c-format +msgid "%s: invalid number of lines" +msgstr "%s: vigane ridade arv" + +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "`-%d' võti on aegunud; kasutage `-l %d'" + +#: src/split.c:483 +msgid "invalid number" +msgstr "vigane number" + +#: src/stat.c:326 +msgid "*** invalid date/time ***" +msgstr "*** vigane kuupäev ***" + +#: src/stat.c:608 +#, c-format +msgid "cannot read file system information for %s" +msgstr "ei õnnestu lugeda %s failisüsteemi informatsiooni" + +#: src/stat.c:684 +#, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "Kasutamine: %s [VÕTI]... FAIL...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" +"Esita faili või failisüsteemi olek.\n" +"\n" +" -f, --filesystem esita faili oleku asemel failisüsteemi olek\n" +" -c --format=VORMING määra uus vorming\n" +" -L, --dereference järgi viiteid\n" +" -t, --terse esita info lakooniliselt\n" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" +"\n" +"Lubatud vormingu järjendid failidele (ei kasuta --filesystem):\n" +"\n" +" %A - Õigused inimesele loetaval kujul\n" +" %a - Õigused kaheksandesituses\n" +" %B - Iga `%b' poolt antud bloki maht baitides\n" +" %b - Kasutatud blokkide arv\n" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" +" %D Seadme number kuueteistkümnendsüsteemis\n" +" %d Seadme number kümnendsüsteemis\n" +" %F Faili tüüp\n" +" %f Mood kuueteistkümnendsüsteemis\n" +" %G Omaniku grupi nimi\n" +" %g Omaniku grupi ID\n" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" +" %h - Viidete arv\n" +" %i - Ikirje number\n" +" %N - Jutumärkides faili nimi, nimeviite korral viidatav nimi\n" +" %n - Faili nimi\n" +" %o - S/V bloki suurus\n" +" %s - Kogumaht, baitides\n" +" %T - Seadme kuueteistkümnendsüsteemis alamnumber\n" +" %t - Seadme kuueteistkümnendsüsteemis põhinumber\n" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" +" %U - Omaniku kasutaja nimi\n" +" %u - Omaniku kasutaja ID\n" +" %X - Viimane kasutamine sekundites alates epohhist\n" +" %x - Viimane kasutamine\n" +" %Y - Viimane täiendamine sekundites alates epohhist\n" +" %y - Viimane täiendamine\n" +" %Z - Viimane muutmine sekundites alates epohhist\n" +" %z - Viimane muutmine\n" +"\n" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" +"Lubatud vormingu järjendid failisüsteemidele:\n" +"\n" +" %a - Vabu blokke mittepriviligeeritud kasutajatele\n" +" %b - Andmeblokke kokku failisüsteemis\n" +" %c - Failikirjeid kokku failisüsteemis\n" +" %d - Vabu failikirjeid failisüsteemis\n" +" %f - Vabu blokke failisüsteemis\n" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" +" %i - Failisüsteemi kuueteistkümnend id\n" +" %l - Failinimede maksimaalne pikkus\n" +" %n - Faili nimi\n" +" %s - Optimaalne ülekande bloki suurus\n" +" %T - Inimesele loetaval kujul tüüp\n" +" %t - Tüüp kuueteistkümnend esituses\n" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" +"Kasutamine: %s [-F SEADE] [--file=SEADE] [OMADUS]...\n" +" või: %s [-F SEADE] [--file=SEADE] [-a|--all]\n" +" või: %s [-F SEADE] [--file=SEADE] [-g|--save]\n" + +#: src/stty.c:504 +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" +"Väljasta või muuda terminali seadeid.\n" +"\n" +" -a, --all väljasta kõik kehtivad seaded inimesele loetavalt\n" +" -g, --save väljasta kõik kehtivad seaded stty programmile " +"loetavalt\n" +" -F, --file=SEADE ava ja kasuta standardsisendi asemel antud seadet\n" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" +"\n" +"Võimalik - enne seadet tähistab eitust. Sümbol * märgib POSIX standardile\n" +"mittevastavat seadet. Seadete kasutatavuse määrab kasutatav\n" +"operatsioonisüsteem.\n" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" +"\n" +"Spetsiaalsümbolid:\\n\"\n" +" * dsusp SÜMBOL SÜMBOL saadab terminali peatamise signaali, kui sisend on " +"loetud\n" +" eof SÜMBOL SÜMBOL saadab faili lõpu teate (lõpetab sisendi)\n" +" eol SÜMBOL SÜMBOL lõpetab rea\n" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" +" * eol2 SÜMBOL alternatiivne SÜMBOL rea lõpetamiseks\n" +" erase SÜMBOL SÜMBOL kustutab viimati kirjutatud sümboli\n" +" intr SÜMBOL SÜMBOL saadab katkestamise signaali\n" +" kill SÜMBOL SÜMBOL kustutab jooksva rea\n" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" +" * lnext SÜMBOL SÜMBOL sisestab järgmise sümboli kvoodituna\n" +" quit SÜMBOL SÜMBOL saadab väljumise signaali\n" +" * rprnt SÜMBOL SÜMBOL joonistab jooksva rea uuesti\n" +" start SÜMBOL SÜMBOL käivitab väljundi peale peatamist\n" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" +" stop SÜMBOL SÜMBOL peatab väljundi\n" +" susp SÜMBOL SÜMBOL saadab terminali peatamise signaali\n" +" * swtch SÜMBOL SÜMBOL vahetab käsuinterpretaatori taset\n" +" * werase SÜMBOL SÜMBOL kustutab viimati kirjutatud sõna\n" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" +"\n" +"Spetsiaalseaded:\n" +" N sea sisendi ja väljundi kiiruseks N boodi\n" +" * cols N teata tuumale, et terminalil on N veergu\n" +" * columns N sama, kui cols N\n" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" +" ispeed N sea sisendi kiiruseks N\n" +" * line N kasuta liiniseadeid N\n" +" min N -icanon omadusega, sea lugemise lõpetamiseks min, N " +"sümbolit\n" +" ospeed N sea väljundi kiiruseks N\n" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" +" * rows N teata tuumale, et terminalil on N rida\n" +" * size väljasta terminali veerud ja read, vastavalt tuuma infole\n" +" speed väljasta terminali kiirus\n" +" time N -icanon omadusega, sea lugemise taimout N sekundi " +"kümnendikku\n" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" +"\n" +"Kontrollseaded:\n" +" [-]clocal blokeeri modemi kontrolli signaalid\n" +" [-]cread luba sisendit\n" +"* [-]crtscts luba RTS/CTS vookontroll\n" +" csN sea sümboli suuruseks N bitti, N vahemikust [5..8]\n" + +#: src/stty.c:570 +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" +" [-]cstopb kasuta sümboli kohta kaht stop bitti (üks `-' korral)\n" +" [-]hup saada hangup signaal, kui viimane protsess suleb tty\n" +" [-]hupcl sama, kui [-]hup\n" +" [-]parenb genereeri väljundis paarsusbitt ja eelda paarsust sisendis\n" +" [-]parodd sea paaritu paarsus (paaris `-' korral)\n" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" +"\n" +"Sisendiseaded:\n" +" [-]brkint break põhjustab katkestuse signaali\n" +" [-]icrnl tõlgi rea algusse sümbol reavahetuseks\n" +" [-]ignbrk ignoreeri break sümbolit\n" +" [-]igncr ignoreeri rea algusse sümbolit\n" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" +" [-]ignpar ignoreeri paarsusveaga sümboleid\n" +" * [-]imaxbel piiksu ja ära tühjenda täis sisendpuhvrit\n" +" [-]inlcr tõlgi reavahetus rea algusse sümboliks\n" +" [-]inpck luba sisendi paarsuse kontroll\n" +" [-]istrip eemalda sisendsümbolitelt ülemine (8-s) bitt\n" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" +" * [-]iuclc tõlgi suurtähed väiketähtedeks\n" +" * [-]ixany luba väljundit alustada igal, mitte ainult start sümbolil\n" +" [-]ixoff luba start/stop sümbolite edastus\n" +" [-]ixon luba XON/XOFF vookontroll\n" +" [-]parmrk märgi paarsusvead (kasutatakse 255-0-sümbol järjendis)\n" +" [-]tandem sama, kui [-]ixoff\n" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" +"\n" +"Väljundi seaded:\n" +" * bsN samm tagasi viivitus, N vahemikust [0..1]\n" +" * crN rea algusse viivitus, N vahemikust [0..3]\n" +" * ffN lehevahetuse viivitus, N vahemikust [0..1]\n" +" * nlN reavahetuse viivitus, N vahemikust [0..1]\n" + +#: src/stty.c:608 +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" +" * [-]ocrnl tõlgi rea algusse sümbol reavahetuseks\n" +" * [-]ofdel kasuta täitesümbolitena null asemel kustutamise sümbolit\n" +" * [-]ofill kasuta viivitustel ootamise asemel täitesümboleid\n" +" * [-]olcuc tõlgi väiketähed suurtähtedeks\n" +" * [-]onlcr tõlgi reavahetus paariks rea algusse-reavahetus\n" +" * [-]onlret reavahetus käitub, nagu rea algusse sümbol\n" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" +" * [-]onocr ära väljasta esimesel veerul rea algusse sümbolit\n" +" [-]opost väljundi järeltöötlus\n" +" * tabN horisontaalse tabulaatori viivitus, N vahemikust [0..3]\n" +" * tabs sama, kui tab0\n" +" * -tabs sama, kui tab3\n" +" * vtN vertikaalse tabulaatori viivitus, N vahemikust [0..1]\n" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" +"\n" +"Lokaalsed seaded:\n" +" [-]crterase korda kustutamise sümbolit kui samm tagasi-tühik-samm " +"tagasi\n" +" * crtkill surma terve rida vastavalt echoprt ja echoe seadetele\n" +" * -crtkill surma terve rida vastavalt echoctl ja echok seadetele\n" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" +" * [-]ctlecho korda kontrollsümboleid katus notatsioonis (`^c')\n" +" [-]echo korda sisendi sümboleid\n" +" * [-]echoctl sama, kui [-]ctlecho\n" +" [-]echoe sama, kui [-]crterase\n" +" [-]echok väljasta kill sümboli järel reavahetus\n" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" +" * [-]echoke sama, kui [-]crtkill\n" +" [-]echonl korda reavahetust isegi, kui teisi sümboleid ei korrata\n" +" * [-]echoprt korda kustutatud sümboleid esitades neid `\\\\' ja '/' " +"vahel\n" +" [-]icanon luba spetsiaalsümbolid erase, kill, werase ja rprnt\n" +" [-]iexten luba POSIX mittevastavad spetsiaalsümbolid\n" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" +" [-]isig luba spetsiaalsümbolid interrupt, quit ja suspend\n" +" [-]noflsh keela tühjendamine peale katkestamise ja väljumise " +"sümboleid\n" +" * [-]prterase sama, kui [-]echoprt\n" +" * [-]tostop peata taustatööd, mis üritavad terminalile kirjutada\n" +" * [-]xcase icanon omadusega, kasuta suurtähtede ees `\\\\'\n" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" +"\n" +"Kombineeritud seaded:\n" +" * [-]LCASE sama, kui [-]lcase\n" +" cbreak sama, kui -icanon\n" +" -cbreak sama, kui icanon\n" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" +" cooked sama, kui brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof ja eol sümbolid seatakse vaikimisi väärtustele\n" +" -cooked sama, kui raw\n" +" crt sama, kui echoe echoctl echoke\n" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" +" dec sama, kui echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq sama, kui [-]ixany\n" +" ek erase ja kill sümbolid seatakse vaikimisi väärtustele\n" +" evenp sama, kui parenb -parodd cs7\n" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" +" -evenp sama, kui -parenb cs8\n" +" * [-]lcase sama, kui xcase iuclc olcuc\n" +" litout sama, kui -parenb -istrip -opost cs8\n" +" -litout sama, kui parenb istrip opost cs7\n" +" nl sama, kui -icrnl -onlcr\n" +" -nl sama, kui icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" +" oddp sama, kui parenb parodd cs7\n" +" -oddp sama, kui -parenb cs8\n" +" [-]parity sama, kui [-]evenp\n" +" pass8 sama, kui -parenb -istrip cs8\n" +" -pass8 sama, kui parenb istrip cs7\n" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" +" raw sama, kui -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw sama, kui cooked\n" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" +" sane sama, kui cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, kõik\n" +" spetsiaalsümbolid seatakse vaikimisi väärtustele\n" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" +"\n" +"Käsitle terminali, mis on ühendatud standardsisendiga. Kui argumente\n" +"ei antud, väljasta terminali kiirus, liini seaded ja erinevused seadest\n" +"`stty sane'. Terminali seadete muutmisel käsitletakse SÜMBOLit kas\n" +"literalina või kui ^c, 0x37, 0177 või 127; spetsiaalväärtuseid ^- või\n" +"undef kasutatakse vastava sümboli blokeerimiseks.\n" + +#: src/stty.c:787 +msgid "only one device may be specified" +msgstr "lubatud on ainult üks seade" + +#: src/stty.c:882 +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "" +"inimesele loetava ja programmile loetava väljundi seaded on üksteist " +"välistavad" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "kui määrate väljundi moodi, siis ei saa seadme moodi seada" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "%s: ei õnnestu eemaldada mitte-blokeeruvat moodi" + +#: src/stty.c:957 src/stty.c:1064 +#, c-format +msgid "invalid argument `%s'" +msgstr "vigane argument `%s'" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, c-format +msgid "missing argument to `%s'" +msgstr "`%s' nõuab argumenti" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "%s: kõiki nõutud operatsioone ei õnnestunud sooritada" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "new_mode: mood\n" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "%s: sellel seadmel puudub info suuruse kohta" + +#: src/stty.c:1944 +#, c-format +msgid "invalid integer argument `%s'" +msgstr "vigane numbriline argument `%s'" + +#: src/su.c:289 +msgid "Password:" +msgstr "Parool:" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "getpass: ei õnnestu avada /dev/tty" + +#: src/su.c:350 +msgid "cannot set groups" +msgstr "ei õnnestu seada gruppe" + +#: src/su.c:354 +msgid "cannot set group id" +msgstr "ei õnnestu seada grupi id" + +#: src/su.c:356 +msgid "cannot set user id" +msgstr "ei õnnestu seada kasutaja id" + +#: src/su.c:437 +#, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "Kasutamine: %s [VÕTI]... [-] [KASUTAJA [ARGUMENT]...]\n" + +#: src/su.c:438 +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" +"Muuda kasutaja efektiine kasutaja id ja grupi id.\n" +"\n" +" -, -l, --login meldi kasutajana\n" +" -c, --commmand=KÄSK edasta KÄSK shellile võtmega -c\n" +" -f, --fast edasta shellile võti -f (csh või tcsh)\n" +" -m, --preserve-environment säilita keskkonnamuutujaid\n" +" -p sama, kui -m\n" +" -s, --shell=PROGRAMM käivita PROGRAMM, kui /etc/shells seda lubab\n" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" +"\n" +"Ainult - rakendab võtme -l. Kui KASUTAJA ei antud, kasuta nime root.\n" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "kasutajat %s ei ole" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "vale parool" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "kasutan piiratud käsuinterpretaatorit %s" + +#: src/su.c:580 +#, c-format +msgid "warning: cannot change directory to %s" +msgstr "hoiatus: ei saa minna kataloogi %s" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "Kayvan Aghaiepour ja David MacKenzie" + +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" +"Väljasta iga faili kohta kontrollsumma ja blokkide arv.\n" +"\n" +" -r kasuta BSD sum algoritmi, kasuta 1K blokke\n" +" -s, --sysv kasuta System V sum algoritmi, kasuta 512 baidiseid " +"blokke\n" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" +"Salvesta muutused kettale, uuenda superplokki.\n" +"\n" + +#: src/sync.c:70 src/tty.c:112 +msgid "ignoring all arguments" +msgstr "ignoreerin kõiki argumente" + +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr " --help väljasta see abiinfo ja lõpeta töö\n" + +#: src/sys2.h:494 +msgid " --version output version information and exit\n" +msgstr " --version väljasta versiooniinfo ja lõpeta töö\n" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "Jay Lepreau ja David MacKenzie" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Kirjuta iga FAIL standardväljundisse, viimane rida esimesena.\n" +"Kui FAIL puudub või on -, loe standardsisendit.\n" +"\n" + +#: src/tac.c:139 +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" +" -b, --before kasuta eraldajat enne, mitte pärast\n" +" -r, --regex interpreteeri eraldajat regulaaravaldisena\n" +" -s, --separator=SÕNE kasuta reavahetuse asemel eraldajana SÕNE\n" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "stdin: viga lugemisel" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "eraldaja ei või olla tühi" + +#: src/tail.c:49 +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "Paul Rubin, David MacKenzie, Ian Lance Taylor ja Jim Meyering" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Väljasta viimased %d rida igast FAILIST standardväljundisse.\n" +"Enam, kui ühe FAILI korral, lisa iga faili ette päis faili nimega.\n" +"Kui FAIL puudub või on -, loe standardsisendit.\n" +"\n" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" +" --retry jätka faili avamise üritamist isegi kui faili\n" +" ei saa tail käivitamisel kasutada või kui ta\n" +" muutub mittekasutatavaks hiljem -- kasulik\n" +" ainult võtmega -f\n" +" -c, --bytes=N väljasta viimased N baiti\n" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" +" -f, --follow[={nimi|pide}]\n" +" väljasta faili kasvamisel lisanduvad andmed;\n" +" -f, --follow ja --follow=pide on samaväärsed\n" +" -F sama, kui --follow=nimi --retry\n" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" +" -n, --lines=N väljasta vaikimisi %d viimase rea asemel N rida\n" +" --max-unchanged-stats=N\n" +" võtmega --follow=nimi, ava FAIL, mis ei ole N\n" +" iteratsiooni (vaikimisi %d) järel muutunud, " +"uuesti\n" +" tegemaks kindlaks et seda faili ei ole " +"kustutatud\n" +" või ümber nimetatud (nagu seda võib juhtuda\n" +" logifailidega) \n" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" +" --pid=PID võtmega -f, lõpeta töö, kui protsess PID lõpetab\n" +" -q, --quiet, --silent ära väljasta päiseid faili nimega\n" +" -s, --sleep-interval=S võtmega -f, maga jälgimiste vahel umbes S " +"sekundit\n" +" (vaikimisi 1.0)\n" +" -v, --verbose väljasta alati päised faili nimega\n" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" +"\n" +"Kui N esimene sümbol (baitide või ridade arv) on `+', väljasta alustades\n" +"faili algusest Ninda elemendiga, muidu väljasta failist viimased N " +"elementi. \n" +"N võib omada kordavat sufiksit:\n" +"b on 512, k on 1024, m on 1048576 (1 Meg).\n" +"\n" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" +"Võtmega --follow (-f), jälgib tail vaikimisi faili pidet. See tähendab, et\n" +"tail saab jätkata faili jälgimist isegi juhul, kui fail nimetatakse ümber.\n" +"Selline " + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" +"käitumine ei ole kasulik, kui teil on vaja faili jälgida nime järgi,\n" +"mitte failipideme (n. logide roteerumisel). Sellisel juhul kasutage võtit\n" +"--follow=nimi. Siis jälgib tail faili nime põhjal, avades seda " +"perioodiliselt\n" +"uuesti, et testida et faili pole vahepeal mõne programmi poolt ümber " +"nimetatud\n" +"ja uuesti loodud.\n" + +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "sulen %s (fd=%d)" + +#: src/tail.c:391 +#, c-format +msgid "%s: cannot seek to offset %s" +msgstr "%s: ei õnnestu liikuda nihkele %s" + +#: src/tail.c:395 +#, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "%s: ei õnnestu liikuda suhtelisele nihkele %s" + +#: src/tail.c:400 +#, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "%s: ei õnnestu liikuda lõpu-suhtelisele nihkele %s" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "`%s' pole enam kasutatav" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "`%s' asendati mitte-jälgitava failiga; ei jälgi seda enam" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "`%s' on jälle kasutatav" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "`%s' tekkis; järgin uue faili lõppu" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "`%s' asendati; järgin uue faili lõppu" + +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "%s: fail on lühendatud" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "rohkem faile pole" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "%s: seda tüüpi faili lõppu ei saa järgida; annan alla" + +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "%c: vigane sufiksi sümbol aeguval võtmel" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"liiga palju argumente; kui kasutate tail käsu aegunud võtmeid (%s),\n" +"ei saa argumendina kasutada enam kui üht faili. Kasutage selle asemel\n" +"samaväärset võtit -n või -c." + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"hoiatus: taili aegunud võtmete süntaksiga (%s) pole enam, kui ühe faili\n" +"kasutamine argumendina eri süsteemidega ühilduv. Kasutage selle asemel\n" +"samaväärset võtit -n või -c." + +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "võti `%s' on aegunud; kasutage `%s-%c %.*s'" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "" +"%s on suurem, kui selle süsteemi poolt toetatav maksimaalne faili suurus" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "%s: vigane maksimum arv mittemuutunud atribuute avamiste vahel" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "%s: vigane maksimum arv järgnevaid suuruse muutusi" + +#: src/tail.c:1534 +#, c-format +msgid "%s: invalid PID" +msgstr "%s: vigane PID" + +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: vigane arv sekundeid" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "hoiatus: --retry on kasutatav ainult failide jälgimisel" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "" +"hoiatus: PID ignoreeritakse; --pid=PID on kasulik ainult failide jälgimisel" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "hoiatus: --pid=PID ei ole selles süsteemis toetatud" + +#: src/tee.c:33 +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "Mike Parker, Richard M. Stallman ja David MacKenzie" + +#: src/tee.c:64 +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" +"Kopeeri standardsisend igasse FAILi, samuti standardväljundisse.\n" +"\n" +" -a, --append lisa antud FAILidesse, ära kirjuta üle\n" +" -i, --ignore-interrupts ignoreeri katkestusi\n" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "argument puudub\n" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "oodatakse täisarvudega avaldist %s\n" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "')' puudub\n" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "')' puudub, leidsin %s\n" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "%s: oodati unaarset operaatorit\n" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "%s: oodati binaarset operaatorit\n" + +#: src/test.c:424 +msgid "before -lt" +msgstr "enne -lt" + +#: src/test.c:432 +msgid "after -lt" +msgstr "peale -lt" + +#: src/test.c:446 +msgid "before -le" +msgstr "enne -le" + +#: src/test.c:453 +msgid "after -le" +msgstr "peale -le" + +#: src/test.c:469 +msgid "before -gt" +msgstr "enne -gt" + +#: src/test.c:476 +msgid "after -gt" +msgstr "peale -gt" + +#: src/test.c:490 +msgid "before -ge" +msgstr "enne -ge" + +#: src/test.c:497 +msgid "after -ge" +msgstr "peale -ge" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "-nt ei luba -l\n" + +#: src/test.c:526 +msgid "before -ne" +msgstr "enne -ne" + +#: src/test.c:533 +msgid "after -ne" +msgstr "peale -ne" + +#: src/test.c:549 +msgid "before -eq" +msgstr "enne -eq" + +#: src/test.c:556 +msgid "after -eq" +msgstr "peale -eq" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "-ef ei luba -l\n" + +#: src/test.c:586 +msgid "-ot does not accept -l\n" +msgstr "-ot ei luba -l\n" + +#: src/test.c:593 +msgid "unknown binary operator" +msgstr "tundmatu binaarne operaator" + +#: src/test.c:781 +msgid "after -t" +msgstr "peale -t" + +#: src/test.c:979 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"Kasutamine: %s AVALDIS\n" +" või: [ AVALDIS ]\n" +" või: %s VÕTI\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" +"Lõpeta AVALDISe poolt määratud koodiga.\n" +"\n" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" +"\n" +"AVALDIS on kas tõene või väär ja seab lõpetamise oleku.\n" +"Avaldis on üks järgnevaist:\n" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" +"\n" +" ( AVALDIS ) AVALDIS on tõene\n" +" ! AVALDIS AVALDIS on väär\n" +" AVALDIS1 -a AVALDIS2 nii AVALDIS1, kui ka AVALDIS2 on tõesed\n" +" AVALDIS1 -o AVALDIS2 kas AVALDIS1 või AVALDIS2 on tõene\n" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" +"\n" +" [-n] SÕNE SÕNE pikkus on nullist erinev\n" +" -z SÕNE SÕNE pikkus on null\n" +" SÕNE1 = SÕNE2 sõned on võrdsed\n" +" SÕNE1 != SÕNE2 sõned ei ole võrdsed\n" + +#: src/test.c:1009 +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" +"\n" +" NUMBER1 -eq NUMBER2 NUMBER1 ja NUMBER2 on võrdsed\n" +" NUMBER1 -ge NUMBER2 NUMBER1 on suurem või võrdne, kui NUMBER2\n" +" NUMBER1 -gt NUMBER2 NUMBER1 on suurem, kui NUMBER2\n" +" NUMBER1 -le NUMBER2 NUMBER1 on väiksem või võrdne, kui NUMBER2\n" +" NUMBER1 -lt NUMBER2 NUMBER1 on väiksem, KUI NUMBER2\n" +" NUMBER1 -ne NUMBER2 NUMBER1 ja NUMBER2 ei ole võrdsed\n" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" +"\n" +" FAIL1 -ef FAIL2 FAIL1 ja FAIL2 omavad samu seadme ja ikirje numbreid\n" +" FAIL1 -nt FAIL2 FAIL1 on uuem (muutmise aeg), kui FAIL2\n" +" FAIL1 -ot FAIL2 FAIL1 on vanem, kui FAIL2\n" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" +"\n" +" -b FAIL FAIL on olemas ja on blokkseade\n" +" -c FAIL FAIL on olemas ja on sümbolseade\n" +" -d FAIL FAIL on olemas ja on kataloog\n" +" -e FAIL FAIL on olemas\n" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" +" -f FAIL FAIL on olemas ja on tavaline fail\n" +" -g FAIL FAIL on olemas ja omab sea-grupi-ID õigust\n" +" -h FAIL FAIL on olemas ja on nimeviide (sama, kui -L)\n" +" -G FAIL FAIL on olemas grupp on efektiivne grupi ID\n" +" -k FAIL FAIL on olemas ja omab kleepimisõigust\n" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" +" -L FAIL FAIL on olemas ja on nimeviit\n" +" -O FAIL FAIL on olemas ja omanik on efektiivne kasutaja ID\n" +" -p FAIL FAIL on olemas ja on nimega toru\n" +" -r FAIL FAIL on olemas ja on loetav\n" +" -s FAIL FAIL on olemas ja tema suurus on suurem, kui null\n" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" +" -S FAIL FAIL on olemas ja on pesa\n" +" -t [FP] terminalil on avatud failipide FP (vaikimisi standardväljund)\n" +" -u FAIL FAIL on olemas ja omab sea-kasutaja-ID õigust\n" +" -w FAIL FAIL on olemas ja on kirjutatav\n" +" -x FAIL FAIL on olemas ja on käivitatav\n" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" +"\n" +"Pange tähele, et sulud vajavad käsuinterpretaatori eest kaitset kvootimise\n" +"või langkriipsuga kaitsmise näol. NUMBER võib olla ka -l SÕNE, mis tähistab\n" +"siis SÕNE pikkust.\n" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "FIXME: ksb ja mjb" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "puudub `]'\n" + +#: src/test.c:1125 +msgid "too many arguments\n" +msgstr "liiga palju argumente\n" + +#: src/touch.c:39 +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie ja Randy Smith" + +#: src/touch.c:164 src/touch.c:179 +#, c-format +msgid "creating %s" +msgstr "loon %s" + +#: src/touch.c:222 +#, c-format +msgid "cannot touch %s" +msgstr "%s ei õnnestu kasutada" + +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "sean faili %s aegu" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" +"Sea iga faili kasutamise ja muutmise aeg.\n" +"\n" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" +" -a muuda ainult kasutamise (access) aeg\n" +" -c, --no-create ära loo faile\n" +" -d, --date=SÕNE analüüsi SÕNE ja kasuta seda jooksva aja asemel\n" +" -f (ignoreeritakse)\n" +" -m muuda ainult muutmise (modification) aega\n" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" +" -r, --reference=FAIL kasuta jooksva aja asemel selle faili aegu\n" +" -t TEMPEL kasuta jooksva aja asemel [[SS]AA]KKPPttmm[.ss]\n" +" --time=SÕNA sea antud aeg: kasutamise aeg atime use (sama kui -" +"a)\n" +" muutmise aeg mtime (sama kui -m)\n" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" +"\n" +"Pange tähele, et võtmed -d ja -t kasutavad erinevaid aja vorminguid.\n" + +#: src/touch.c:311 src/touch.c:331 +#, c-format +msgid "invalid date format %s" +msgstr "vigane kuupäeva vorming %s" + +#: src/touch.c:355 +msgid "cannot specify times from more than one source" +msgstr "ei õnnestu kirjeldada aegu rohkem kui ühest allikast" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "" +"hoiatus: `touch %s' on aegunud; kasutage `touch -t %04d%02d%02d%02d%02d.%02d'" + +#: src/touch.c:399 +msgid "file arguments missing" +msgstr "argumentides puuduvad failide nimed" + +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "Kasutamine: %s [VÕTI]... HULK1 [HULK2]...\n" + +#: src/tr.c:331 +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" +"Tõlgi, tihenda ja/või kustuta sümboleid standardsisendist väljastades \n" +"standardväljundisse.\n" +"\n" +" -c, --complement esmalt täienda HULK1\n" +" -d, --delete kustuta sümbolid HULK1, ei tõlgi\n" +" -s, --squeeze-repeats asenda iga korduv sümbol sisendi järjendis, mis " +"on\n" +" märgitud HULK1 selle sümboli ühekordse esitusega\n" +" -t, --truncate-set1 esmalt lühenda HULK1 HULK2 pikkuseks\n" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" +"\n" +"HULGAD esitatakse sümbolite jadana. Enamus esitab iseennast.\n" +"Interpreteeritavad järjendid on:\n" +"\n" +" \\NNN sümbol kaheksandväärtusega NNN (1 kuni 3 " +"kaheksandnumbrit)\n" +" \\\\ langkriips\n" +" \\a kuuldav piiks\n" +" \\b samm tagasi\n" +" \\f lehevahetus\n" +" \\n uus rida\n" +" \\r reavahetus\n" +" \\t horisontaalne tabulaator\n" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" +" \\v vertikaalne tabulaator\n" +" SÜMB1-SÜMB2 kõik sümbolid alates SÜMB1 kuni SÜMB2 kasvavas " +"järjekorras\n" +" [SÜMB*] HULGAS2, kopeerib sümbolit kuni HULK1 pikkuseni\n" +" [SÜMB*KORD] korda sümbolit, KORD on kaheksandnumber, kui algab " +"nulliga\n" +" [:alnum:] kõik tähed ja numbrid\n" +" [:alpha:] kõik tähed\n" +" [:blank:] kõik horisontaal tühemikud\n" +" [:cntrl:] kõik kontrollsümbolid\n" +" [:digit:] kõik numbrid\n" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" +" [:graph:] kõik trükitavad sümbolid, aga mitte tühik\n" +" [:lower:] kõik väiketähed\n" +" [:print:] kõik trükitavad sümbolid, ka tühik\n" +" [:punct:] kõik punktuatsiooni sümbolid\n" +" [:space:] kõik horisontaal või vertikaal tühemikud\n" +" [:upper:] kõik suurtähed\n" +" [:xdigit:] kõik kuueteistkümnend numbrid\n" +" [=SÜMBOL=] all sümbolid, mis on ekvivalentsed sümboliga SÜMBOL\n" + +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" +"\n" +"Tõlgitakse juhul, kui võtit -d ei kasutata ja HULK1 ja HULK2 on määratud.\n" +"-t saab kasutada ainult tõlkimisel. HULK2 laiendatakse HULK1 pikkuseni\n" +"korrates vajadusel viimast sümbolit. " + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" +"Liigsed sümbolid hulgast 2 ignoreeritakse.\n" +"Ainult [:lower:] ja [:upper:] puhul on tagatud laiendamine kasvavalt;\n" +"kui kasutatakse tõlkimisel hulgas 2, võib neid suur- ja väiketähtedeks\n" +"tteisendamisek kasutada ainult paaris. " + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" +"Kui ei tõlgita ega kustutata\n" +"kasutab -s HULK1; muidu kasutatakse tihendamiseks HULK2 ja tihendamine\n" +"toimub peale tõlkimist või kustutamist.\n" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" +"hoiatus: segast kaheksand paojada \\%c%c%c interpreteeritakse\n" +"\t2-baidise järjendina \\0%c%c, `%c'" + +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "vigane langkriipsu paojada sõne lõpus" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "vigane langkriipsu paojada `\\%c'" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "vahemiku otsad `%s-%s' on tagurpidi järjestuses" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "vigane korduste arv `%s' [c*n] konstruktsioonis" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "puudub sümbolite klassi nimi `[::]'" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "puudub ekvivalentsiklassi sümbol `[==]'" + +#: src/tr.c:1025 +#, c-format +msgid "invalid character class `%s'" +msgstr "vigane sümbolite klass `%s'" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "%s: ekvivalentsiklassi operand peab olema yks sümbol" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "kordamise konstruktsiooni [c*] ei saa kasutada sõnes1" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "sõnes2 saab kasutada ainult ühte kordamise konstruktsiooni [c*]" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "tõlkimisel ei saa sõnes2 [=c=] avaldisi kasutada" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "kui hulka1 ei lühendata, peab sõne2 olema mittetühi" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" +"kui tõlkida kasutades täiendatud sümbolklasse,\n" +"peab sõne2 seostama kõik doomeni sümbolid ühe sümboliga" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" +"tõlkimisel saab sõne2 sees kasutada sümbolklassidena ainult klasse\n" +"`upper' ja `lower'" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "[c*] konstruktsioon võib olla sõne2 sees ainult tõlkimisel" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "tõlkimisel tuleb näidata kaks sõne" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "korduste kustutamisel ja tihendamisel peab olema antud kaks sõnet" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" +"kui kordusi kustutatakse tuhendamiseta, peab olema antud ainult üks sõne" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "korduste tihendamisel peab olema antud vähemalt üks sõne" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "joondamata [:upper:] ja/või [:lower:] konstruktsioonid" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" +"vigane identiteedi seos; tõlkimisel pea iga [:lower:] või [:upper:]\n" +"sõne1 konstruktsioon olema vastavuses sõne2 vastava konstruktsiooniga\n" +"([:upper:] või [:lower:])" + +#: src/true.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Kasutamine: %s [ignoreerin käsurea argumente]\n" +" või: %s VÕTI\n" +"Lõpeta töö edukalt.\n" +"\n" +"Neid võtmeid ei või lühendada.\n" +"\n" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Kasutamine: %s [VÕTI] [FAIL]\n" +"Väljasta FAIL totaalses järjestuses kooskõlas elementide osalise " +"järjestusega.\n" +"Kui FAIL puudub või on -, loe standardsisendit.\n" +"\n" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "%s: sisend sisaldab tsüklit:" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "lubatud on ainult üks argument" + +#: src/tty.c:63 +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" +"Väljasta standardsisendiga ühendatud terminali nimi.\n" +"\n" +" -s, --silent, --quiet ära väljasta midagi, tagasta ainult lõpetamise " +"olek\n" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "pole terminal" + +#: src/uname.c:111 +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" +"Väljasta informatsiooni süsteemist. Kui võtmeid ei ole antud, kasutab -s.\n" +"\n" +" -a, --all kogu info\n" +" -s, --kernel-name väljasta tuuma nimi\n" +" -n, --nodename väljasta masina võrgunimi\n" +" -r, --release väljasta tuuma väljalase\n" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" +" -v, --kernel-version väljasta tuuma versioon\n" +" -m, --machine väljasta masina (riistvara) tüüp\n" +" -p, --processor väljasta arvuti protsessori tüüp\n" +" -i, --hardware-platform väljasta riistvara platvorm\n" +" -o, --operating-system väljasta operatsioonisüsteemi nimi\n" + +#: src/uname.c:226 +msgid "cannot get system name" +msgstr "ei õnnestu leida süsteemi nime" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Teisenda igas FAILis tühikud tabulaatoriteks, väljasta standardväljundisse.\n" +"Kui FAIL puudub, või on -, loe standardsisendit.\n" +"\n" + +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" +" -a, --all teisenda kõik tühemikud, mitte ainult esimene\n" +" --first-only teisenda ainult eesmised tühemikud (blokeerib -a)\n" +" -t, --tabs=NUMBER tabulaatori laius 8 asemel NUMBER sümbolit (lubab -a)\n" +" -t, --tabs=LOEND komadega eraldatud tabulaatori positsioonid (lubab -" +"a)\n" + +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "`-LIST' võti on aegunud; kasutage `--first-only -t LOEND'" + +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "Kasutamine: %s [VÕTI]... [SISEND [VÄLJUND]]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" +"Jäta SISENDIST (või standardsisendist) kordused väljastamata, väljasta\n" +"VÄLJUNDISSE (või standardväljundisse).\n" +"\n" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" +" -c, --count lisa rea algusse esinemise number\n" +" -d, --repeated väljasta ainult dubleeritud read\n" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" +" -D, --all-repeated[=eraldaja-meetod] väljasta kõik duplikaat read\n" +" eraldaja-meetod={none(vaikimisi),prepend,separate}\n" +" Eraldatatakse tühjade ridadega.\n" +" -f, --skip-fields=N ära võrdle esimest N välja\n" +" -i, --ignore-case võrdle tõstutundetult\n" +" -s, --skip-chars=N ära võrdle esimest N sümbolit\n" +" -u, --unique väljasta ainult dubleerimata read\n" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr " -w, --check-chars=N ära võrdle real enam kui N sümbolit\n" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" +"\n" +"Väli on komplekt tühimikke, millele järgnevad mittetühimik sümbolid.\n" +"Väljad jäetakse vahele enne sümboleid.\n" + +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "viga %s lugemisel" + +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "viga %s kirjutamisel" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "liigne operand `%s'" + +#: src/uniq.c:473 src/uniq.c:498 +msgid "invalid number of fields to skip" +msgstr "vigane vahelejäetavate väljade arv" + +#: src/uniq.c:507 +msgid "invalid number of bytes to skip" +msgstr "vigane vahelejäetavate baitide arv" + +#: src/uniq.c:516 +msgid "invalid number of bytes to compare" +msgstr "vigane võrreldavate baitide arv" + +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "võti `-%lu' on aegunud; kasutage `-f %lu'" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "kõikide duplikaat ridade ja korduste arvu ei saa korraga väljastada" + +#: src/unlink.c:51 +#, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"Kasutamine: %s FAIL\n" +" või: %s VÕTI\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" +"Kasutan antud FAILI kustutamiseks unlink funktsiooni.\n" +"\n" + +#: src/unlink.c:99 +#, c-format +msgid "cannot unlink %s" +msgstr "%s ei saa kustutada" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "ei õnnestu lugeda alglaadimise aega" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr " %2d:%02d%s püsti " + +#: src/uptime.c:140 +msgid "am" +msgstr "am" + +#: src/uptime.c:140 +msgid "pm" +msgstr "pm" + +#: src/uptime.c:142 +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d päev" +msgstr[1] "%d päeva" + +#: src/uptime.c:144 +#, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "%d kasutaja" +msgstr[1] "%d kasutajat" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr ", tööjärjekorra koormus: %.2f" + +#: src/uptime.c:191 src/users.c:118 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "Kasutamine: %s [VÕTI]... [ FAIL ]\n" + +#: src/uptime.c:192 +#, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Väljasta praegune aeg, süsteemi töötamise aeg, kasutajate arv süsteemis,\n" +"ja tööjärjekorra koormus viimase 1, 5 ja 15 minuti vältel.\n" +"Kui FAILi ei ole määratud, kasuta %s. Tavaliselt kasutatakse %s.\n" +"\n" + +#: src/users.c:35 +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "Joseph Arceneaux ja David MacKenzie" + +#: src/users.c:119 +#, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Väljasta kasutajad, kes on parasjagu arvutisse meldinud.\n" +"Kui FAILi ei ole määratud, kasuta %s. Tavaliselt kasutatakse %s.\n" +"\n" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "Paul Rubin ja David MacKenzie" + +#: src/wc.c:129 +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" +"Väljasta iga FAILi baitide, sõnade ja ridade arv ning kui faile oli antud\n" +"enam, kui üks, siis ka kõikide ridade arv. Kui fail puudub või on -, loe\n" +"standardsisendit.\n" +" -c, --bytes väljasta baitide arv\n" +" -m, --chars väljasta sümbolite arv\n" +" -l, --lines väljasta ridade arv\n" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" +" -L, --max-line-length väljasta pikima rea pikkus\n" +" -w, --words väljasta sõnade arv\n" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "Joseph Arceneaux, David MacKenzie ja Michael Stone" + +#: src/who.c:223 +msgid " old " +msgstr " vana " + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "id=" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "term=" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "exit=" + +#: src/who.c:446 +msgid "clock change" +msgstr "kell muutus" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "töö-olek" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "viimane=" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" +"\n" +"kasutajaid=%u\n" + +#: src/who.c:498 +msgid "NAME" +msgstr "NIMI" + +#: src/who.c:498 +msgid "LINE" +msgstr "TERMINAL" + +#: src/who.c:498 +msgid "TIME" +msgstr "AEG" + +#: src/who.c:498 +msgid "IDLE" +msgstr "EEMAL" + +#: src/who.c:498 +msgid "PID" +msgstr "PID" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "KOMMENTAAR" + +#: src/who.c:499 +msgid "EXIT" +msgstr "LÕPETAMINE" + +#: src/who.c:574 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "Kasutamine: %s [VÕTI]... [ FAIL | ARG1 ARG2 ]\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" +"\n" +" -a, --all sama, kui -b -d --login -p -r -t -T -u\n" +" -b, --boot viimase alglaadimise aeg\n" +" -d, --dead esita surnud protsessid\n" +" -H, --heading esita veergude päised\n" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" +" -i, --idle lisa vaba aeg kujul TUNNID:MINUTID, . või vana\n" +" (mittesoovitatav, kasutage -u)\n" +" --login väljasta süsteemi meldimise protsessid\n" +" (sama, kui SUS -l)\n" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" +" -l, --lookup ürita lahendada masinate nimesid DNS abil\n" +" (-l on mittesoovitatav, kasutage --lookup)\n" +" -m ainult standardsisendiga seotud masin ja kasutaja\n" +" -p, --process väljasta init poolt loodud aktiivsed protsessid\n" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" +" -q, --count kõik kasutajanimed ja süsteemi meldinud kasutajate arv\n" +" -r, --runlevel väljasta jooksev töö-tase\n" +" -s, --short väljasta ainult nimi, tyerminal ja aeg (vaikimisi)\n" +" -t, --time väljasta viimane süsteemi kella muutus\n" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" +" -T, -w, --mesg lisa kasutaja teadete olek kujul +, - või ?\n" +" -u, --users väljasta süsteemi meldinud kasutajad\n" +" --message sama, kui -T\n" +" --writable sama, kui -T\n" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" +"\n" +"Kui FAILi ei antud, kasuta %s. %s on sel puhul tavaline.\n" +"Kui antakse ARG1 ARG2, eeldatakse võtit -m: tavaline on `am i' või\n" +"`mom likes'.\n" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "Hoiatus: -i eemaldatakse tulevikus; kasutage selle asemel -u" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "Hoiatus: `-l' tähendus muutub tulevikus, et olla POSIX ühilduv" + +#: src/whoami.c:53 +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" +"Väljasta efektiivsele kasutajaidentifikaatorile vastav kasutajanimi.\n" +"Sama, kui id -un.\n" +"\n" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "%s: ei leia UID %u vastavat kasutajanimi\n" + +#: src/yes.c:49 +#, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"Kasutamine: %s [SÕNE]...\n" +" või: %s VÕTI\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" +"Väljasta korduvalt rida antud sõnedega või `y'.\n" +"\n" + +#~ msgid "\\%c: invalid escape" +#~ msgstr "\\%c: vigane paojada" + +#~ msgid "program error" +#~ msgstr "programmi viga" + +#~ msgid "stack overflow" +#~ msgstr "pinu ületäitumine" diff --git a/src/apps/bin/coreutils-5.0/po/fi.gmo b/src/apps/bin/coreutils-5.0/po/fi.gmo new file mode 100644 index 0000000000..5c3125659d Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/fi.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/fi.po b/src/apps/bin/coreutils-5.0/po/fi.po new file mode 100644 index 0000000000..8718782ebe --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/fi.po @@ -0,0 +1,7276 @@ +# Finnish messages for coreutils. +# Copyright © 2002, 2003 Free Software Foundation, Inc. +# This file is distributed under the same license as the coreutils package. +# Lauri Nurmi , 2003. +# Matti Koskimies , 2002. +# +# TODO: +# ownership -> omistajuus vai omistaja? +msgid "" +msgstr "" +"Project-Id-Version: coreutils 4.5.10\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2003-03-15 22:28+0200\n" +"Last-Translator: Lauri Nurmi \n" +"Language-Team: Finnish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural= ( n!=1) ;\n" + +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "virheellinen argumentti %s %s:lle" + +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "moniselitteinen argumentti %s %s:lle" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "Tarjolla olevat argumentit:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "kirjotuksenaikainen virhe" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "Tuntematon järjestelmävirhe" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "tavallinen tyhjä tiedosto" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "tavallinen tiedosto" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "hakemisto" + +#: lib/file-type.c:48 +msgid "block special file" +msgstr "lohkoerikoistiedosto" + +#: lib/file-type.c:51 +msgid "character special file" +msgstr "merkkierikoistiedosto" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "putkitiedosto" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "symbolinen linkki" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "pistoke" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "viestijono" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "semafori" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "jaettu muistikohde" + +#: lib/file-type.c:71 +msgid "weird file" +msgstr "outo tiedosto" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: valitsin \"%s\" ei ole yksiselitteinen\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: valitsin \"--%s\" ei salli argumenttia\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: valitsin \"%c%s\" ei salli argumenttia\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: valitsin \"%s\" vaatii argumentin\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: tunnistamaton valitsin \"--%s\"\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: tunnistamaton valitsin \"%c%s\"\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: kielletty valitsin -- %c\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: epäkelpo valitsin -- %c\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: valitsin vaatii argumentin -- %c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: valitsin \"-W %s\" ei ole yksiselitteinen\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: valitsin \"-W %s\" ei salli argumenttia\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "lohkokoko" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "alkuperäiseen työhakemistoon palaaminen epäonnistui" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "hakemiston %s luominen ei onnistu" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%s on olemassa, mutta se ei ole hakemisto" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "%s:n omistajaa ja/tai ryhmää ei voida muuttaa" + +#: lib/makepath.c:338 +#, c-format +msgid "cannot chdir to directory %s" +msgstr "siirtyminen hakemistoon %s ei onnistu" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "%s:n oikeuksien muuttaminen ei onnistu" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "muisti loppu" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "\"" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "\"" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[kKyY]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[eEnN]" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "iconv-funktio ei ole käyttökelponen" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "iconv-funktion ei ole saatavilla" + +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "merkki alueen ulkopuolelle" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "U+%04X:n muunnos paikalliseen merkistöön ei onnistu" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "U+%04X:n muunnos paikalliseen merkistöön ei onnistu: %s" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "käyttäjä ei kelpaa" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "ryhmä ei kelpaa" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "numeerisen UID:n oletusryhmää ei löydy" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "Et voi jättää pois sekä käyttäjää että ryhmää" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "Kirjoittaneet %s.\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +"Tämä on vapaaohjelmisto; katso kopiointiehdot lähdekoodista. Takuuta EI " +"OLE;\n" +"ei edes KAUPALLISESTI HYVÄKSYTTÄVÄSTÄ LAADUSTA tai SOPIVUUDESTA TIETTYYN\n" +"TARKOITUKSEEN.\n" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "merkkijonovertailu epäonnistui" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "Aseta LC_ALL='C' kiertääksesi ongelman." + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "Vertaillut merkkijonot olivat %s ja %s." + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Kokeile komentoa \"%s --help\" lisätiedon saamiseksi.\n" + +#: src/basename.c:54 +#, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"Käyttö: %s NIMI [PÄÄTE]\n" +" tai: %s VALITSIN\n" + +#: src/basename.c:59 +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" +"Tulostetaan NIMI ilman edeltävää hakemistorakennetta.\n" +"Poistetaan myös lopusta mahdollinen PÄÄTE.\n" +"\n" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"Lähetä raportit ohjelmistovirheistä (englanniksi) osoitteeseen <%s>.\n" +"Suomennoksen virheistä voi ilmoittaa listalle\n" +".\n" + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "liian vähän argumentteja" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "liian monta argumenttia" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "Torbjörn Granlund ja Richard M. Stallman" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "Käyttö: %s [VALITSIN] [TIEDOSTO]...\n" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" +"Ketjuta TIEDOSTO(t) tai vakiosyöte vakiotulosteeseen.\n" +"\n" +" -A, --show-all sama kuin -vET\n" +" -b, --number-nonblank numeroi ei-tyhjät tulosterivit\n" +" -e sama kuin -vE\n" +" -E, --show-ends näytä merkki $ jokaisen rivin lopussa\n" +" -n, --number numeroi kaikki tulosterivit\n" +" -s, --squeeze-blank älä tulosta yhtä useampaa peräkkäistä tyhjää " +"riviä\n" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"Jos TIEDOSTOa ei ole annettu, tai se on -, luetaan vakiosyötettä.\n" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" + +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "tiedostolle \"%s\" ei voi käyttää ioctl:ää" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "vakiotuloste" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s: syötetiedosto on tulostiedosto" + +#: src/cat.c:858 +msgid "closing standard input" +msgstr "suljetaan vakiosyöte" + +#: src/cat.c:861 +msgid "closing standard output" +msgstr "suljetaan vakiotuloste" + +#: src/chgrp.c:93 +#, fuzzy +msgid "cannot change to null group" +msgstr "%s:n omistajaa ja/tai ryhmää ei voida muuttaa" + +#: src/chgrp.c:102 +#, c-format +msgid "invalid group name %s" +msgstr "virheellinen ryhmänimi %s" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "ryhmänumero" + +#: src/chgrp.c:109 +#, c-format +msgid "invalid group number %s" +msgstr "virheellinen ryhmänumero %s" + +#: src/chgrp.c:126 +#, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Käyttö: %s [VALITSIN]... RYHMÄ TIEDOSTO...\n" +" tai: %s [VALITSIN]... --reference=VTIEDOSTO TIEDOSTO...\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet vaienna useimmat virheilmoitukset\n" +" --reference=RTIED käytä RTIEDoston ryhmää annetun RYHMÄ-arvon sijaan\n" +" -R, --recursive toimi rekursiivisesti\n" +" -v, --verbose näytä ilmoitus jokaisesta käsitellystä tiedostosta\n" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, c-format +msgid "failed to get attributes of %s" +msgstr "" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "tiedoston %s oikeuksiksi asetettu %04lo (%s)\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "" + +#: src/chmod.c:179 +#, c-format +msgid "changing permissions of %s" +msgstr "muutetaan tiedoston %s oikeuksia" + +#: src/chmod.c:242 +#, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Käyttö: %s [VALITSIN]... OIKEUDET[,OIKEUDET]... TIEDOSTO...\n" +" tai: %s [VALITSIN]... OKTAALI-OIKEUDET TIEDOSTO...\n" +" tai: %s [VALITSIN]... --reference=RTIED TIEDOSTO...\n" + +#: src/chmod.c:248 +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" + +#: src/chmod.c:320 +#, c-format +msgid "invalid character %s in mode string %s" +msgstr "virheellinen merkki %s oikeusmerkkijonossa %s" + +#: src/chmod.c:361 +#, fuzzy, c-format +msgid "invalid mode string: %s" +msgstr "muotoilumerkkijono ei kelpaa: \"%s\"" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "" + +#: src/chown-core.c:143 +#, c-format +msgid "changed ownership of %s to %s\n" +msgstr "vaihdettiin tiedoston %s omistajaksi %s\n" + +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "vaihdettiin tiedoston %s ryhmäksi %s\n" + +#: src/chown-core.c:148 +#, fuzzy, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "%s:n oikeuksien muuttaminen ei onnistu" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "" + +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "" + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "" + +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "muutetaan tiedoston %s omistajaa" + +#: src/chown-core.c:327 +#, fuzzy, c-format +msgid "changing group of %s" +msgstr "%s:n omistajaa ja/tai ryhmää ei voida muuttaa" + +#: src/chown-core.c:345 +#, fuzzy, c-format +msgid "unable to restore permissions of %s" +msgstr "%s:n oikeuksien muuttaminen ei onnistu" + +#: src/chown.c:99 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Käyttö: %s [VALITSIN]... LOPPU\n" +" tai: %s [VALITSIN]... ALKU LOPPU\n" +" tai: %s [VALITSIN]... ALKU LISÄYS LOPPU\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" + +#: src/chroot.c:45 +#, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"Käyttö: %s UUSIJUURI [KOMENTO...]\n" +" tai: %s VALITSIN\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" +"Aja KOMENTO siten, että UUSIJUURI on asetettuna juurihakemistoksi.\n" +"\n" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" +"\n" +"Jos komentoa ei anneta, ajetaan \"${SHELL} -i\" (oletus: /bin/sh).\n" + +#: src/chroot.c:84 +#, c-format +msgid "cannot change root directory to %s" +msgstr "juurihakemiston vaihto %s:ksi ei onnistu" + +#: src/chroot.c:87 +msgid "cannot chdir to root directory" +msgstr "työhakemiston vaihto juurihakemistoksi ei onnistu" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "%s: liian pitkä tiedosto" + +#: src/cksum.c:282 +#, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"Käyttö: %s [TIEDOSTO]...\n" +" tai: %s [VALITSIN]\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" +"Tulosta jokaisen TIEDOSTOn CRC-tarkistussumma ja tavumäärä.\n" +"\n" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "Richard Stallman ja David MacKenzie" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "Käyttö: %s [VALITSIN]... VASEN_TIEDOSTO OIKEA_TIEDOSTO\n" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" +"Vertaa lajiteltuja tiedostoja VASEN_TIEDOSTO ja OIKEA_TIEDOSTO rivi " +"riviltä.\n" +"\n" +" -1 älä tulosta vain vasemmassa tiedostossa esiintyviä rivejä\n" +" -2 älä tulosta vain oikeassa tiedostossa esiintyviä rivejä\n" +" -3 älä tulosta rivejä, jotka esiintyvät molemmissa " +"tiedostoissa\n" + +#: src/copy.c:162 src/du.c:332 +#, c-format +msgid "cannot access %s" +msgstr "tiedostoa %s ei voi käsitellä" + +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "tiedostoa %s ei voi avata lukemista varten" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, fuzzy, c-format +msgid "cannot fstat %s" +msgstr "ajan asetus ei onnistu" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "ohitetaan tiedosto %s, sillä se korvattiin kopioinnin aikana" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, c-format +msgid "cannot remove %s" +msgstr "tiedostoa %s ei voi poistaa" + +#: src/copy.c:277 +#, c-format +msgid "cannot create regular file %s" +msgstr "tavallisen tiedoston %s luominen ei onnistu" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, c-format +msgid "reading %s" +msgstr "luetaan tiedostoa %s" + +#: src/copy.c:362 +#, fuzzy, c-format +msgid "cannot lseek %s" +msgstr "ryhmien asetus ei onnistu" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, c-format +msgid "writing %s" +msgstr "kirjoitetaan tiedostoa %s" + +#: src/copy.c:409 src/copy.c:415 +#, c-format +msgid "closing %s" +msgstr "suljetaan tiedostoa %s" + +#: src/copy.c:610 +#, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: korvataanko tiedosto %s, ohittaen oikeudet %04lo? " + +#: src/copy.c:616 +#, c-format +msgid "%s: overwrite %s? " +msgstr "%s: korvataanko tiedosto %s? " + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, c-format +msgid "cannot stat %s" +msgstr "tiedoston %s tilaa ei voi lukea" + +#: src/copy.c:820 +#, fuzzy, c-format +msgid "omitting directory %s" +msgstr "hakemiston %s luominen ei onnistu" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "varoitus: lähdetiedosto %s annettu useammin kuin kerran" + +#: src/copy.c:866 src/ln.c:237 +#, c-format +msgid "%s and %s are the same file" +msgstr "%s ja %s ovat sama tiedosto" + +#: src/copy.c:876 +#, fuzzy, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "siirtyminen hakemistoon %s ei onnistu" + +#: src/copy.c:893 +#, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "ei korvata juuri luotua tiedostoa %s tiedostolla %s" + +#: src/copy.c:904 +#, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "hakemistoa %s ei voi korvata ei-hakemistolla" + +#: src/copy.c:965 +#, fuzzy, c-format +msgid "cannot overwrite directory %s" +msgstr "hakemiston %s luominen ei onnistu" + +#: src/copy.c:974 +#, fuzzy, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "siirtyminen hakemistoon %s ei onnistu" + +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "" + +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "" + +#: src/copy.c:1013 src/ln.c:273 +#, fuzzy, c-format +msgid "cannot backup %s" +msgstr "ryhmien asetus ei onnistu" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr "" + +#: src/copy.c:1099 +#, fuzzy, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "juurihakemiston vaihto %s:ksi ei onnistu" + +#: src/copy.c:1106 +#, fuzzy, c-format +msgid "will not create hard link %s to directory %s" +msgstr "siirtyminen hakemistoon %s ei onnistu" + +#: src/copy.c:1132 +#, fuzzy, c-format +msgid "cannot create hard link %s to %s" +msgstr "hakemiston %s luominen ei onnistu" + +#: src/copy.c:1186 +#, fuzzy, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "juurihakemiston vaihto %s:ksi ei onnistu" + +#: src/copy.c:1229 +#, fuzzy, c-format +msgid "cannot move %s to %s" +msgstr "nimen \"%s\" asetus järjestelmälle ei onnistu" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "" +"laitteiden välinen siirot epäonnistui: %s -> %s; kohdetta ei voi poistaa" + +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "" +"%s: suhteellisia symbolisia linkkejä voi tehdä vain nykyisessä hakemistossa" + +#: src/copy.c:1353 +#, fuzzy, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "hakemiston %s luominen ei onnistu" + +#: src/copy.c:1364 +#, fuzzy, c-format +msgid "cannot create link %s" +msgstr "hakemiston %s luominen ei onnistu" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, fuzzy, c-format +msgid "cannot create fifo %s" +msgstr "hakemiston %s luominen ei onnistu" + +#: src/copy.c:1403 +#, c-format +msgid "cannot create special file %s" +msgstr "erikoistiedostoa %s ei voi luoda" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, c-format +msgid "cannot read symbolic link %s" +msgstr "symbolista linkkiä %s ei voi lukea" + +#: src/copy.c:1440 +#, c-format +msgid "cannot create symbolic link %s" +msgstr "symbolisen linkin %s luominen ei onnistu" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, c-format +msgid "failed to preserve ownership for %s" +msgstr "tiedoston %s omistajuuden säilytys ei onnistu" + +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "tiedostolla %s on tuntematon tiedostotyyppi" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "säilytetään tiedoston %s ajat" + +#: src/copy.c:1531 +#, c-format +msgid "failed to preserve authorship for %s" +msgstr "" + +#: src/copy.c:1549 +#, c-format +msgid "setting permissions for %s" +msgstr "asetetaan tiedoston %s oikeudet" + +#: src/copy.c:1571 src/ln.c:326 +#, c-format +msgid "cannot un-backup %s" +msgstr "" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "Torbjörn Granlund, David MacKenzie ja Jim Meyering" + +#: src/cp.c:164 src/mv.c:311 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"Käyttö: %s [VALITSIN]... LOPPU\n" +" tai: %s [VALITSIN]... ALKU LOPPU\n" +" tai: %s [VALITSIN]... ALKU LISÄYS LOPPU\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" +"Pitkien valitsinten pakolliset argumentit ovat pakollisia myös lyhyille.\n" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" + +#: src/cp.c:209 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" + +#: src/cp.c:221 +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" + +#: src/cp.c:230 +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" + +#: src/cp.c:239 +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" + +#: src/cp.c:325 +#, c-format +msgid "failed to preserve times for %s" +msgstr "tiedoston %s aikojen säilyttäminen ei onnistu" + +#: src/cp.c:349 +#, c-format +msgid "failed to preserve permissions for %s" +msgstr "tiedoston %s oikeuksien säilyttäminen ei onnistu" + +#: src/cp.c:434 +#, c-format +msgid "cannot make directory %s" +msgstr "hakemiston %s luominen ei onnistu" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +msgid "missing file argument" +msgstr "puuttuva tiedostoargumentti" + +#: src/cp.c:498 +msgid "missing destination file" +msgstr "puuttuva kohdetiedosto" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "" + +#: src/cp.c:546 +#, c-format +msgid "%s: specified target is not a directory" +msgstr "%s: annettu kohde ei ole hakemisto" + +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "" +"kopioidaan useita tiedostoja, mutta viimeinen argumentti %s ei ole hakemisto" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"varoitus: --version-control (-V) on vanhentunut; sen tuki poistetaan\n" +"jossakin tulevassa julkaisussa. Käytä sen sijaan --backup=%s." + +#: src/cp.c:972 src/ln.c:464 +msgid "symbolic links are not supported on this system" +msgstr "tämä järjestelmä ei tue symbolisia linkkejä" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "linkit eivät voi olla sekä kovia että symbolisia" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "Stuart Kemp ja David MacKenzie" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "lukuvirhe" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "syöte katosi" + +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s: rivinumero sallitun välin ulkopuolella" + +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: \"%s\": rivinumero sallitun välin ulkopuolella" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr "" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s: \"%s\": täsmäävyyttä ei löydy" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "virhe säännöllisen lausekkeen haussa" + +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "virhe kirjoitettaessa tiedostoa \"%s\"" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s: merkin \"%c\" jälkeen odotetaan kokonaislukua" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s: sulkeva rajoitin \"%c\" puuttuu" + +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: virheellinen säännöllinen lauseke: %s" + +#: src/csplit.c:1174 +#, fuzzy, c-format +msgid "%s: invalid pattern" +msgstr "%s: signaali ei kelpaa" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s: rivinumeron on oltava suurempi kuin nolla" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "rivinumero \"%s\" on pienempi kuin edeltävä rivinumero %s" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "varoitus: rivinumero \"%s\" on sama kuin edeltävä rivinumero" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "" + +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "" + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "" + +#: src/csplit.c:1441 +#, fuzzy, c-format +msgid "%s: invalid number" +msgstr "käyttäjä ei kelpaa" + +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "Käyttö: %s [VALITSIN]... TIEDOSTO HAHMO...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie ja Jim Meyering" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "Käyttö: %s [VALITSIN]... [TIEDOSTO]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "virheellinen tavu- tai kenttälista" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "voidaan antaa vain yhden tyyppinen lista" + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "sijaintilista puuttuu" + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "kenttälista puuttuu" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "rajoittimen on oltava yksittäinen merkki" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "on annettava lista tavuista, merkeistä tai kentistä" + +#: src/cut.c:720 +msgid "an input delimiter may be specified only when operating on fields" +msgstr "syöterajoitin voidaan antaa vain käsiteltäessä kenttiä" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" + +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" +"Käyttö: %s [VALITSIN]... [+MUOTOILU]\n" +" tai: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" +"Näytä tämänhetkinen aika halutulla MUOTOILUlla, tai aseta järjestelmän " +"aika.\n" +"\n" +" -d, --date=MERKKIJONO näytä MERKKIJONOn määräämä aika \"now\":n " +"sijaan\n" +" -f, --file=PVMTIEDOSTO kuten --date kerran kullekin PVMTIEDOSTOn " +"riville\n" +" -ITIMESPEC, --iso-8601[=AIKAMÄÄRE] näytä päivämäärä/aika ISO 8601 -" +"muodossa.\n" +" AIKAMÄÄRE=\"date\" pelkälle päivämäärälle,\n" +" \"hours\", \"minutes\", tai \"seconds\" " +"päivämäärälle ja\n" +" ajalle mainitulla tarkkuudella.\n" +" --iso-8601 ilman AIKAMÄÄREttä olettaa \"date\":" +"n.\n" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" +" -r, --reference=TIEDOSTO näytä TIEDOSTOn viimeisin muokkausaika\n" +" -R, --rfc-822 näytä RFC-822 -yhteensopiva merkkijono\n" +" -s, --set=MERKKIJONO aseta MERKKIJONOn määräämä aika\n" +" -u, --utc, --universal näytä tai aseta UTC-aika\n" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" +"\n" +"MUOTOILU säätelee tulostetta. Jälkimmäisen muodon ainoa sallittu valitsin\n" +"määrittelee UTC-ajan. Tulkittavat ohjausmerkkijonot ovat:\n" +"\n" +" %% %-merkki\n" +" %a maa-asetuksen lyhyt viikonpäivän nimi (ma-su)\n" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" +" %A maa-asetuksen pitkä viikonpäivän nimi, pituus vaihteleva (maanantai - " +"sunnuntai)\n" +" %b maa-asetuksen lyhyt kuukauden nimi (tammi  - joulu )\n" +" %B maa-asetuksen pitkä kuukauden nimi, pituus vaihteleva (tammikuu - " +"joulukuu)\n" +" %c maa-asetuksen päivämäärä ja aika (la 4 marraskuu 1989 12:02:33)\n" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" +" %C vuosisata (kokonaislukuosa sadalla jaetusta vuosiluvusta) [00-99]\n" +" %d kuukauden päivä (01-31)\n" +" %D päivämäärä (kk/pp/vv)\n" +" %e kuukauden päivä, välilyöntitäyttö ( 1-31)\n" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" +" %F sama kuin %Y-%m-%d\n" +" %g kaksinumeroinen vuosiluku, joka vastaa %V -viikonnumeroa\n" +" %G nelinumeroinen vuosiluku, joka vastaa %V -viikonnumeroa\n" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" +" %h sama kuin %b\n" +" %H tunti (00-23)\n" +" %I tunti (01-12)\n" +" %j vuoden päivä (001-366)\n" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" +" %k tunti ( 0-23)\n" +" %l tunti ( 1-12)\n" +" %m kuukausi (01-12)\n" +" %M minuutti (00-59)\n" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" +" %n rivinvaihto\n" +" %N nanosekunnit (000000000 - 999999999)\n" +" %p maa-asetuksen AM/PM merkintä isoilla kirjaimilla (usein tyhjä)\n" +" %P maa-asetuksen AM/PM merkintä pikkukirjaimilla (usein tyhjä)\n" +" %r aika, 12-tuntinen (tt:mm:ss [AP]M)\n" +" %R aika, 24-tuntinen (tt:mm)\n" +" %s sekuntimäärä ajanhetkestä \"00:00:00 1970-01-01 UTC\" (GNU-" +"laajennos)\n" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" +" %S sekunti (00-60); arvoa 60 tarvitaan karkaussekuntia varten\n" +" %t vaakasarkain\n" +" %T aika, 24-tuntinen (tt:mm:ss)\n" +" %u viikonpäivä (1-7); 1 on maanantai\n" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" +" %U viikonnumero sunnuntai viikon aloittajana (00-53)\n" +" %V viikonnumero maanantai viikon aloittajana (01-53)\n" +" %w viikonpäivä (0-6); 0 on sunnuntai\n" +" %W viikonnumero maanantai viikon aloittajana (01-53)\n" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" +" %x maa-asetuksen päivämääräesitys (yyyy-mm-dd)\n" +" %X maa-asetuksen aikaesitys (%H:%M:%S)\n" +" %y vuosiluvun kaksi viimeistä numeroa (00..99)\n" +" %Y vuosiluku (1970...)\n" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" +" %z RFC-822 -tyylinen numeerinen aikavyöhyke (-0500) (epästandardi " +"laajennos)\n" +" %Z aikavyöhyke (esim. EET), tai tyhjä jos aikavyöhykettä ei voida " +"määrittää\n" +"\n" +"Oletuksena date täyttää numeeriset kentät etunollilla. GNU date tunnistaa\n" +"seuraavat muuntelijat \"%\"-merkin ja numeerisen ohjaimen välillä.\n" +"\n" +" \"-\" (yhdysviiva) älä täytä kenttää\n" +" \"_\" (alaviiva) täytä kenttä välilyönneillä\n" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "vakiosyöte" + +#: src/date.c:268 src/date.c:460 +#, c-format +msgid "invalid date `%s'" +msgstr "virheellinen päiväys \"%s\"" + +#: src/date.c:364 +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "päiväyksen tulostusta määräävät valitsimet ovat toisensa poissulkevia" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "ajan tulostus- ja asetusvalitsimia ei saa käyttää yhtäaikaa" + +#: src/date.c:377 +#, c-format +msgid "too many non-option arguments: %s%s" +msgstr "liikaa argumentteja, jotka eivät ole valitsimia: %s%s" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" +"argumentilta \"%s\" puuttuu edeltävä \"+\";\n" +"käytettäessä valitsinta päiväyksen määräämiseen täytyy sellaisen " +"valitsimen,\n" +"joka ei ole argumentti, olla \"+\"-alkuinen muotoilumerkkijono." + +#: src/date.c:397 +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "" +"muotoilumerkkijonoa ei saa käyttää yhdessä --rfc-822 (-R) -valitsimen kanssa" + +#: src/date.c:433 +msgid "undefined" +msgstr "määrittelemätön" + +#: src/date.c:435 +msgid "cannot get time of day" +msgstr "ajan haku ei onnistu" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "ajan asetus ei onnistu" + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "Paul Rubin, David MacKenzie ja Stuart Kemp" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "Käyttö: %s [VALITSIN]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" +"\n" +"LOHKOT- ja TAVUT-arvoihin voidaan liittää perään seuraavat kertoimet:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, sekä T, P, E, Z, Y.\n" +"Kukin AVAINSANA voi olla:\n" +"\n" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" +" ascii EBCDIC -> ASCII\n" +" ebcdic ASCII -> EBCDIC\n" +" ibm ASCII -> muutettu EBCDIC\n" +" block tasaa rivinvaihtoon päättyvät tietueet välilyönneillä cbs-" +"kokoon\n" +" unblock korvaa välilyönnit cbs-kokoisten tietuiden lopusta " +"rivinvaihdolla\n" +" lcase muuta isot kirjaimet pieniksi\n" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" +" notrunc älä typistä tulostiedostoa\n" +" ucase muuta pienet kirjaimet isoiksi\n" +" swab vaihda keskenään jokainen syötetavupari\n" +" noerror jatka lukuvirheistä huolimatta\n" +" sync tasaa jokainen syötelohko NUL-merkeillä ibs-kokoon; " +"käytettäessä\n" +" avainsanaa block tai unblock, tasataan välilyönneillä\n" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "%s+%s tietuetta sisään\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "%s+%s tietuetta ulos\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "typistetty tietue" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "typistettyä tietuetta" + +#: src/dd.c:382 +#, c-format +msgid "closing input file %s" +msgstr "suljetaan syötetiedosto %s" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "suljetaan tulostiedosto %s" + +#: src/dd.c:469 +#, c-format +msgid "writing to %s" +msgstr "kirjoitetaan tiedostoon %s" + +#: src/dd.c:501 +#, c-format +msgid "invalid conversion: %s" +msgstr "virheellinen muunnos: %s" + +#: src/dd.c:557 +#, c-format +msgid "unrecognized option %s" +msgstr "tunnistamaton valitsin %s" + +#: src/dd.c:610 +#, c-format +msgid "unrecognized option %s=%s" +msgstr "tunnistamaton valitsin %s=%s" + +#: src/dd.c:616 +#, fuzzy, c-format +msgid "invalid number %s" +msgstr "käyttäjä ei kelpaa" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" + +#: src/dd.c:1170 src/dd.c:1188 +#, c-format +msgid "opening %s" +msgstr "avataan %s" + +#: src/dd.c:1196 +msgid "file offset out of range" +msgstr "tiedostosiirtymä on sallitun välin ulkopuolella" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "edetään %s tavun yli tulostiedostossa %s" + +#: src/df.c:49 +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "Torbjörn Granlund, David MacKenzie, Larry McVoy ja Paul Eggert" + +#: src/df.c:153 +msgid "Filesystem Type" +msgstr "Tied.järj. Tyyppi" + +#: src/df.c:155 +msgid "Filesystem " +msgstr "Tiedostojärjestelmä" + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr " I-solmut IKäyt IJälj Ikäy%%" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Koko Käyt Vapaa Käy%%" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Koko Käyt Vapaa Käy%%" + +#: src/df.c:167 +#, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr "%4s-lohkot Käytetty Vapaana Käytetty" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr "%4s-lohkot Käytetty Vapaana Käy%%" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr " Liitospiste\n" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" +"Näytä tietoja tiedostojärjestelmästä, jolla kukin TIEDOSTO sijaitsee,\n" +"tai oletuksena kaikista tiedostojärjestelmistä.\n" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" +" -a, --all sisällytä myös 0 lohkon kokoiset " +"tiedostojärjestelmät\n" +" -B, --block-size=KOKO käytä KOKO-tavuisia lohkoja\n" +" -h, --human-readable näytä koot fuzzy\n" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" + +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "tiedostojärjestelmätyyppi %s on sekä valittu että jätetty pois" + +#: src/df.c:903 +msgid "Warning: " +msgstr "Varoitus: " + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "%sliitettyjen tiedostojärjestelmien taulua ei voida lukea" + +#: src/dircolors.c:103 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "Käyttö: %s [VALITSIN]... [TIEDOSTO]\n" + +#: src/dircolors.c:104 +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" + +#: src/dircolors.c:299 +#, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s:%lu: virheellinen rivi; toinen symboli puuttuu" + +#: src/dircolors.c:371 +#, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s:%lu: tunnistamaton avainsana %s" + +#: src/dircolors.c:372 +msgid "" +msgstr "" + +#: src/dircolors.c:467 +#, fuzzy +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" +"valitsimet verbose ja stty-readable -tulostetyyleille\n" +"ovat toisensa poissulkevat" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "" + +#: src/dirname.c:33 src/pathchk.c:59 +msgid "David MacKenzie and Jim Meyering" +msgstr "David MacKenzie ja Jim Meyering" + +#: src/dirname.c:46 +#, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"Käyttö: %s NIMI\n" +" tai: %s VALITSIN\n" + +#: src/dirname.c:51 +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" +"Tulosta NIMI loppupää karsittuna viimeisestä /-merkistä alkaen; jos NIMI\n" +"ei sisällä /-merkkiä, tulostetaan \".\" (tarkoittaen työhakemistoa).\n" +"\n" + +#: src/du.c:49 +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "" +"Torbjörn Granlund, David MacKenzie, Larry McVoy, Paul Eggert ja Jim Meyering" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" +" -L, --dereference \n" +" -S, --separate-dirs älä laske mukaan alihakemistojen kokoa\n" +" -s, --summarize fuzzy\n" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" + +#: src/du.c:337 +#, fuzzy, c-format +msgid "cannot change to parent of directory %s" +msgstr "juurihakemiston vaihto %s:ksi ei onnistu" + +#: src/du.c:345 +#, c-format +msgid "cannot change to directory %s" +msgstr "hakemistoon %s ei voi siirtyä" + +#: src/du.c:352 +#, c-format +msgid "cannot read directory %s" +msgstr "hakemiston %s ei voi lukea" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "yhteensä" + +#: src/du.c:641 +#, c-format +msgid "invalid maximum depth %s" +msgstr "virheellinen enimmäissyvyys %s" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "" + +#: src/echo.c:77 +#, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "Käyttö: %s [VALITSIN]... [MERKKIJONO]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" +"Kaiuta MERKKIJONO(t) vakiotulosteeseen.\n" +"\n" +" -n älä lisää rivinvaihtoa loppuun\n" +" -e ota käyttöön alla lueteltujen kenoviivallisten\n" +" ohjausmerkkien tulkinta\n" +" -E poista noiden merkkien käyttö MERKKIJONOista\n" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" +"\n" +"Seuraavat ohjausmerkit tulkitaan, jos -E -valitsinta ei ole annettu:\n" +"\n" +" \\NNN merkki, jonka ASCII-koodi on NNN (oktaaliluku)\n" +" \\\\ kenoviiva\n" +" \\a hälytysmerkki (BEL)\n" +" \\b askelpalautin\n" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\c ei rivinvaihtoa loppuun\n" +" \\f sivunvaihto\n" +" \\n rivinvaihto\n" +" \\r rivinpalautus\n" +" \\t vaakasarkain\n" +" \\v pystysarkain\n" + +#: src/env.c:93 +msgid "Richard Mlynarik and David MacKenzie" +msgstr "Richard Mlynarik ja David MacKenzie" + +#: src/env.c:119 +#, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "" +"Käyttö: %s [VALITSIN]... [-] [NIMI=ARVO]... [KOMENTO [ARGUMENTTI]...]\n" + +#: src/env.c:122 +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" +"Aseta jokaiselle ympäristömuuttujalle NIMI vastaava ARVO ja aja KOMENTO.\n" +"\n" +" -i, --ignore-environment aloita tyhjällä ympäristöllä\n" +" -u, --unset=NIMI poista muuttuja ympäristöstä\n" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" +"\n" +"Pelkkä - tekee saman kuin -i. Ilman KOMENTOa tulostuu seurauksena tuleva " +"ympäristö.\n" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "sarkainkoko sisältää virheellisen merkin" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "" + +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "valitsin \"-LIST\" on vanhentunut; käytä \"-t LIST\"" + +#: src/expr.c:90 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"Käyttö: %s LAUSEKE\n" +" tai: %s VALITSIN\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" +"\n" +"Tulosta LAUSEKKEEN arvo vakiotulosteeseen. Alla oleva tyhjä rivi\n" +"erottaa kasvavan arvojärjestyksen ryhmät. LAUSEKE voi olla:\n" +"\n" +" ARG1 | ARG2 ARG1 jos se ei ole tyhjä eikä 0, muutoin ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 jos kumpikaan ei ole tyhjä eikä 0, muutoin 0\n" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" +"\n" +" ARG1 < ARG2 ARG1 on pienempi kuin ARG2\n" +" ARG1 <= ARG2 ARG1 on pienempi tai yhtäsuuri kuin ARG2\n" +" ARG1 = ARG2 ARG1 on yhtäsuuri kuin ARG2\n" +" ARG1 != ARG2 ARG1 on erisuuri kuin ARG2\n" +" ARG1 >= ARG2 ARG1 on suurempi tai yhtäsuuri kuin ARG2\n" +" ARG1 > ARG2 ARG1 on suurempi kuin ARG2\n" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" +"\n" +" ARG1 + ARG2 ARG1:n ja ARG2:n aritmeettinen summa\n" +" ARG1 - ARG2 ARG1:n ja ARG2:n aritmeettinen erotus\n" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" +"\n" +" ARG1 * ARG2 aritmeettinen tulo ARG1 kerrottuna ARG2:lla\n" +" ARG1 / ARG2 aritmeettinen osamäärä ARG1 jaettuna ARG2:lla\n" +" ARG1 % ARG2 aritmeettinen jakojäännös ARG1 jaettuna ARG2:lla\n" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" +"\n" +" MERKKIJONO : SÄLE ankkuroitu SÄLEen mallihaku MERKKIJONOsta\n" +"\n" +" match MERKKIJONO SÄLE sama kuin MERKKIJONO : SÄLE\n" +" substr MERKKIJONO SIJA PITUUS MERKKIJONOn osajono, SIJA 1:stä alkaen\n" +" index MERKKIJONO MERKIT MERKKIJONOn kohta missä jokin MERKEISTÄ on " +"tai 0\n" +" length MERKKIJONO MERKKIJONOn pituus\n" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" +" + JONO tulkitse JONO kuten merkkijono vaikka se olisi\n" +" avainsana kuten \"match\" tai operaattori " +"kuten \"/\"\n" +"\n" +" ( LAUSEKE ) LAUSEKKEEN arvo\n" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" +"\n" +"Huomaa, että monet operaattorit täytyy suojata komentotulkeilta.\n" +"Vertailut ovat numeroargumenteille aritmeettisia, muille sanakirjamaisia.\n" +"Mallihaut palauttavat merkkien \\( ja \\) väliin täsmäävän merkkijonon tai\n" +"tyhjän. Merkkien \\( ja \\) puuttuessa palautuu täsmäävien merkkien määrä " +"tai 0.\n" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +msgid "syntax error" +msgstr "syntaksivirhe" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" +"varoitus: epäsiirrettävä SÄLE: `%s': \"^\"-merkin käyttö yksinkertaisen\n" +"säännöllisen lausekkeen alussa ei ole siirrettävä; se jätetään huomiotta" + +#: src/expr.c:586 src/expr.c:625 +msgid "non-numeric argument" +msgstr "ei-numeerinen argumentti" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "nollalla jako" + +#: src/factor.c:74 +#, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"Käyttö: %s [NUMERO]...\n" +" tai: %s VALITSIN\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" +"Tulosta NUMEROiden tekijät.\n" +"\n" + +#: src/factor.c:85 +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" +"\n" +" Tulosta NUMEROiden (kokonaislukuja) tekijät. Ilman " +"komentoriviargumentteja\n" +" numerot luetaan vakiosyötteestä.\n" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "\"%s\" ei ole kelvollinen positiivinen kokonaisluku" + +#: src/false.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Käyttö: %s [huomiotta jätettävät komentoriviargumentit]\n" +" tai: %s VALITSIN\n" +"Poistutaan virheestä kertovalla tilakoodilla.\n" +"\n" +"Näitä valitsimia ei voi käyttää lyhennettyinä.\n" +"\n" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "Käyttö: %s [-NUMEROT] [VALITSIN]... [TIEDOSTO]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" + +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" +"\n" +"Kirjain \"w\" voidaan jättää pois valitsimessa -wMÄÄRÄ.\n" + +#: src/fmt.c:345 +#, c-format +msgid "invalid width option: `%s'" +msgstr "virheellinen leveysvalitsin: \"%s\"" + +#: src/fmt.c:385 +#, fuzzy, c-format +msgid "invalid width: `%s'" +msgstr "päiväys \"%s\" ei kelpaa" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" + +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "valitsin \"%s\" on vanhentunut; käytä \"%s\"" + +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "virheellinen sarakemäärä: \"%s\"" + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" +" -c, --bytes=KOKO näytä ensimmäiset KOKO tavua\n" +" -n, --lines=MÄÄRÄ näytä ensimmäiset MÄÄRÄ riviä, oletuksen 10 " +"sijaan\n" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" + +#: src/head.c:190 +#, fuzzy, c-format +msgid "cannot reposition file pointer for %s" +msgstr "hakemiston %s luominen ei onnistu" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "%s: %s on liian suuri esitettäväksi" + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "rivimäärä" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "tavumäärä" + +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "virheellinen rivimäärä" + +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "virheellinen tavumäärä" + +#: src/head.c:341 +#, fuzzy, c-format +msgid "unrecognized option `-%c'" +msgstr "%s: tunnistamaton valitsin \"%c%s\"\n" + +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "" + +#: src/hostid.c:48 +#, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" +"Käyttö: %s\n" +" tai: %s VALITSIN\n" +"Tulostetaan koneen numeerinen tunniste (heksadesimaalisena).\n" +"\n" + +#: src/hostname.c:67 +#, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" +"Käyttö: %s [NIMI]\n" +" tai: %s VALITSIN\n" +"Tulosta tai aseta järjestelmän nimi.\n" +"\n" + +#: src/hostname.c:104 +#, c-format +msgid "cannot set hostname to `%s'" +msgstr "nimen \"%s\" asetus järjestelmälle ei onnistu" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "nimen asetus ei onnistu; tässä järjestelmässä ei ole tätä toimintoa" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "järjestelmän nimen määritys ei onnistu" + +#: src/id.c:36 +msgid "Arnold Robbins and David MacKenzie" +msgstr "Arnold Robbins ja David MacKenzie" + +#: src/id.c:87 +#, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "Käyttö: %s [VALITSIN]... [KÄYTTÄJÄTUNNUS]\n" + +#: src/id.c:88 +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" +"Tulosta KÄYTTÄJÄTUNNUKSEN tai nykyisen käyttäjän tiedot.\n" +"\n" +" -a ei huomioida, mukana yhteensopivuussyistä\n" +" -g, --group tulosta vain vallitsevan ryhmän ID\n" +" -G, --groups tulosta kaikkien ryhmien ID:t\n" +" -n, --name tulosta nimi numeron sijaan -ugG -valitsimilla\n" +" -r, --real tulosta todellinen ID vallitsevan sijaan -ugG -" +"valitsimilla\n" +" -u, --user tulosta vain vallitseva käyttäjän ID\n" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" +"\n" +"Ilman VALITSIMIA tulostetaan jokin sovelias kokoelma tunnistettua tietoa.\n" + +#: src/id.c:162 +msgid "cannot print only user and only group" +msgstr "pelkän tunnuksen ja pelkän ryhmän tulostus ei onnistu" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "" +"pelkkien nimien tai todellisten ID:iden tulostus oletusmuodossa ei onnistu" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "%s: Tällaista käyttäjää ei ole" + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "käyttäjä-ID:tä %u vastaavaa nimeä ei löydy" + +#: src/id.c:235 +#, c-format +msgid "cannot find name for group ID %u" +msgstr "ryhmä-ID:tä %u vastaavaa nimeä ei löydy" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "lisäryhmälistan haku ei onnistu" + +#: src/id.c:385 +msgid " groups=" +msgstr " ryhmät=" + +#: src/install.c:269 +#, fuzzy +msgid "the strip option may not be used when installing a directory" +msgstr "muotoilua ei voi määritellä kun tulostetaan tasalevyisiä lukuja" + +#: src/install.c:292 src/mkdir.c:140 +#, fuzzy, c-format +msgid "invalid mode %s" +msgstr "päiväys \"%s\" ei kelpaa" + +#: src/install.c:307 src/install.c:371 +#, c-format +msgid "creating directory %s" +msgstr "luodaan hakemisto %s" + +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "" +"asennetaan useita tiedostoja, mutta viimeinen argumentti %s ei ole hakemisto" + +#: src/install.c:435 +#, c-format +msgid "%s is a directory" +msgstr "%s on hakemisto" + +#: src/install.c:495 +#, fuzzy, c-format +msgid "cannot obtain time stamps for %s" +msgstr "nimen \"%s\" asetus järjestelmälle ei onnistu" + +#: src/install.c:507 +#, fuzzy, c-format +msgid "cannot set time stamps for %s" +msgstr "nimen \"%s\" asetus järjestelmälle ei onnistu" + +#: src/install.c:528 +msgid "fork system call failed" +msgstr "järjestelmäkutsu fork epäonnistui" + +#: src/install.c:532 +#, fuzzy +msgid "cannot run strip" +msgstr "ryhmien asetus ei onnistu" + +#: src/install.c:539 +#, fuzzy +msgid "strip failed" +msgstr "merkkijonovertailu epäonnistui" + +#: src/install.c:560 +#, c-format +msgid "invalid user %s" +msgstr "virheellinen käyttäjä %s" + +#: src/install.c:578 +#, c-format +msgid "invalid group %s" +msgstr "virheellinen ryhmä %s" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "Käyttö: %s [VALITSIN]... TIEDOSTO1 TIEDOSTO2\n" + +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" + +#: src/join.c:165 +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" + +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" + +#: src/join.c:645 +#, fuzzy, c-format +msgid "invalid field specifier: `%s'" +msgstr "ajanjakso ei kelpaa: \"%s\"" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, fuzzy, c-format +msgid "invalid field number: `%s'" +msgstr "ajanjakso ei kelpaa: \"%s\"" + +#: src/join.c:672 +#, fuzzy, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "ajanjakso ei kelpaa: \"%s\"" + +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "1: \"%s\"" + +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "virheellinen kenttänumero tiedostolle 2: \"%s\"" + +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "liikaa argumentteja, jotka eivät ole valisimia" + +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "liian vähän argumentteja, jotka eivät ole valisimia" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "vakiosyötettä ei voi käyttää molempina tiedostoina" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" +"Käyttö: %s [-s SIGNAALI | -SIGNAALI] PID...\n" +" tai: %s -l [SIGNAALI]...\n" +" tai: %s -t [SIGNAALI]...\n" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" +"Välitä signaaleja prosesseille tai listaa signaaleja.\n" +"\n" + +#: src/kill.c:106 +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" +" -s, --signal=SIGNAALI, -SIGNAALI\n" +" anna välitettävän signaalin nimi tai numero\n" +" -l, --list listaa signaalien nimet tai muunna niitä numeroiksi/" +"niistä numeroita\n" +" -t, --table tulosta tietoja signaaleista taulukkomuodossa\n" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" +"\n" +"SIGNAALI voi olla signaalin nimi kuten \"HUP\" tai signaalin numero kuten \"1" +"\"\n" +"tai signaalilla keskeytetyn prosessin poistumistila. PID on kokonaisluku;\n" +"negatiivisena se identifioi prosessiryhmän.\n" +"\n" + +#: src/kill.c:163 +#, c-format +msgid "%s: invalid signal" +msgstr "%s: signaali ei kelpaa" + +#: src/kill.c:262 +#, c-format +msgid "missing operand after `%s'" +msgstr "\"%s\":n jälkeen puuttuu operandi" + +#: src/kill.c:274 +#, c-format +msgid "%s: invalid process id" +msgstr "%s: prosessin id ei kelpaa" + +#: src/kill.c:327 +#, c-format +msgid "invalid option -- %c" +msgstr "virheellinen valitsin -- %c" + +#: src/kill.c:336 +#, c-format +msgid "%s: multiple signals specified" +msgstr "%s: useita signaaleja annettu" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "useita -l tai -t -valitsimia annettu" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "signaalin yhdistäminen -l:n tai -t:n kanssa ei onnistu" + +#: src/link.c:51 +#, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"Käyttö: %s TIED1 TIED2\n" +" tai: %s VALITSIN\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" +"Kutsu linkitysfunktiota linkin TIED2 luomiseksi olemassaolevaan TIED1:een.\n" + +#: src/link.c:98 +#, fuzzy, c-format +msgid "cannot create link %s to %s" +msgstr "hakemiston %s luominen ei onnistu" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "Mike Parker ja David MacKenzie" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "" +"%s: varoitus: kovan linkin tekeminen symboliseen linkkiin ei ole siirrettävää" + +#: src/ln.c:174 +#, c-format +msgid "%s: hard link not allowed for directory" +msgstr "%s: kova linkki ei ole sallittu hakemistolle" + +#: src/ln.c:246 +#, c-format +msgid "%s: cannot overwrite directory" +msgstr "%s: hakemistoa ei voi korvata" + +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "%s: korvataanko tiedosto %s? " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: Tiedosto on olemassa" + +#: src/ln.c:304 +#, c-format +msgid "create symbolic link %s to %s" +msgstr "luo symbolinen linkki %s kohteeseen %s" + +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "luo symbolinen linkki %s kohteeseen %s" + +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "luodaan symbolinen linkki %s kohteeseen %s" + +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "luodaan kova linkki %s kohteeseen %s" + +#: src/ln.c:339 +#, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"Käyttö: %s [VALITSIN]... KOHDE [LINKIN_NIMI]\n" +" tai: %s [VALITSIN]... KOHDE... HAKEMISTO\n" +" tai: %s [VALITSIN]... --target-directory=HAKEMISTO KOHDE...\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" + +#: src/ln.c:521 +#, c-format +msgid "%s: specified target directory is not a directory" +msgstr "%s: annettu kohdehakemisto ei ole hakemisto" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "useita linkkejä luotaessa viimeisen argumentin on oltava hakemisto" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "Käyttö: %s [VALITSIN]\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" +"Tulosta nykyisen käyttäjän nimi.\n" +"\n" + +#: src/logname.c:99 +#, c-format +msgid "%s: no login name\n" +msgstr "%s: ei sisäänkirjautumistunnusta\n" + +#: src/ls.c:673 +msgid "%b %e %Y" +msgstr "%e. %b %Y" + +#: src/ls.c:681 +msgid "%b %e %H:%M" +msgstr "%e. %b %H:%M" + +#: src/ls.c:1307 +#, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "" + +#: src/ls.c:1482 +#, c-format +msgid "invalid line width: %s" +msgstr "virheellinen rivileveys: %s" + +#: src/ls.c:1556 +#, fuzzy, c-format +msgid "invalid tab size: %s" +msgstr "päiväys \"%s\" ei kelpaa" + +#: src/ls.c:1722 +#, fuzzy, c-format +msgid "invalid time style format %s" +msgstr "ajanjakso ei kelpaa: \"%s\"" + +#: src/ls.c:2054 +#, c-format +msgid "unrecognized prefix: %s" +msgstr "tunnistamaton etuliite: %s" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "" + +#: src/ls.c:2145 +#, c-format +msgid "cannot determine device and inode of %s" +msgstr "hakemiston %s laitetta ja i-solmua ei voida määrittää" + +#: src/ls.c:2155 +#, fuzzy, c-format +msgid "not listing already-listed directory: %s" +msgstr "hakemiston %s luominen ei onnistu" + +#: src/ls.c:2208 src/remove.c:929 +#, fuzzy, c-format +msgid "reading directory %s" +msgstr "hakemiston %s luominen ei onnistu" + +#: src/ls.c:2603 +#, c-format +msgid "cannot compare file names %s and %s" +msgstr "tiedostonimiä %s ja %s ei voi vertailla" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" + +#: src/ls.c:3784 +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" + +#: src/ls.c:3799 +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" + +#: src/ls.c:3831 +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "Ulrich Drepper ja Scott Miller" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"Käyttö: %1$s [VALITSIN] [TIEDOSTO]...\n" +" tai: %2$s [VALITSIN] --check [TIEDOSTO]\n" +"Tulosta tai tarkista (%4$d-bittisiä) %3$s-tarkistussummia.\n" +"Jos TIEDOSTOa ei ole annettu tai se on -, luetaan vakiosyötettä.\n" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" +"\n" +" -b, --binary lue tiedostot binäärimuodossa (oletus DOSissa/" +"Windowsissa)\n" +" -c, --check vertaa %s-summia annettuun listaan\n" +" -t, --text lue tiedostot tekstimuodossa (oletus)\n" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" +"Seuraavat kaksi valitsinta ovat hyödyllisiä vain tarkastettaessa summia:\n" +" --status älä tulosta mitään, paluuarvo kertoo onnistumisen\n" +" -w, --warn varoita väärin muotoilluista summariveistä\n" +"\n" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "%s: %lu: väärin muotoiltu %s-tarkistussummarivi" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "%s: avaaminen tai luku EPÄONNISTUI\n" + +#: src/md5sum.c:431 +#, fuzzy +msgid "FAILED" +msgstr "JOUTEN" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "OK" + +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%s: lukuvirhe" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "%s: kelvollisesti muotoiltuja %s-tarkistussummarivejä ei löytynyt" + +#: src/md5sum.c:470 +#, fuzzy, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "VAROITUS: %d tiedostoa %d listatusta %s ei voitu lukea" + +#: src/md5sum.c:473 +msgid "file" +msgstr "" + +#: src/md5sum.c:473 +msgid "files" +msgstr "" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" + +#: src/md5sum.c:572 +#, fuzzy +msgid "the --string and --check options are mutually exclusive" +msgstr "päiväyksen tulostusta määräävät valitsimet ovat toisensa poissulkevia" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "" + +#: src/md5sum.c:596 +#, fuzzy +msgid "no files may be specified when using --string" +msgstr "Valitsin -l vaatii vähintään yhden käyttäjänimen" + +#: src/md5sum.c:618 +#, fuzzy +msgid "only one argument may be specified when using --check" +msgstr "voit määritellä vain yhden laitteen" + +#: src/mkdir.c:61 +#, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "Käyttö: %s [VALITSIN] HAKEMISTO...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" +"Luo HAKEMISTO(t), elleivät ne ole jo olemassa.\n" +"\n" + +#: src/mkdir.c:69 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" + +#: src/mkdir.c:113 +#, c-format +msgid "created directory %s" +msgstr "luotiin hakemisto %s" + +#: src/mkdir.c:190 +#, c-format +msgid "cannot set permissions of directory %s" +msgstr "hakemiston %s oikeuksien asettaminen ei onnistu" + +#: src/mkfifo.c:55 +#, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "Käyttö: %s [VALITSIN] NIMI...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" + +#: src/mkfifo.c:63 src/mknod.c:64 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "fifo-tiedostot eivät ole tuettuja" + +#: src/mkfifo.c:123 src/mknod.c:127 +#, fuzzy +msgid "invalid mode" +msgstr "käyttäjä ei kelpaa" + +#: src/mkfifo.c:142 +#, fuzzy, c-format +msgid "cannot set permissions of fifo %s" +msgstr "%s:n oikeuksien muuttaminen ei onnistu" + +#: src/mknod.c:55 +#, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "Käyttö: %s [VALITSIN]... NIMI TYYPPI [MAJOR MINOR]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" +"Luo TYYPIN mukainen erikoistiedosto NIMI.\n" +"\n" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" + +#: src/mknod.c:76 +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"\n" +" b luo lohkoerikoistiedosto (puskuroitu)\n" +" c, u luo merkkierikoistiedosto (puskuroimaton)\n" +" p luo FIFO-putki\n" + +#: src/mknod.c:141 +msgid "wrong number of arguments" +msgstr "väärä määrä argumentteja" + +#: src/mknod.c:153 +msgid "block special files not supported" +msgstr "lohkoerikoistiedostot eivät ole tuettuja" + +#: src/mknod.c:162 +msgid "character special files not supported" +msgstr "merkkierikoistiedostot eivät ole tuettuja" + +#: src/mknod.c:171 +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" +"major- ja minor-laitenumerot on annettava luotaessa\n" +"erikoistiedostoja" + +#: src/mknod.c:186 +#, c-format +msgid "invalid major device number %s" +msgstr "virheellinen laitteen major-arvo %s" + +#: src/mknod.c:191 +#, c-format +msgid "invalid minor device number %s" +msgstr "virheellinen laitteen minor-arvo %s" + +#: src/mknod.c:196 +#, c-format +msgid "invalid device %s %s" +msgstr "virheellinen laite %s %s" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "fifo-tiedostoille ei voi antaa major- ja minor-laitearvoja" + +#: src/mknod.c:231 +#, c-format +msgid "cannot set permissions of %s" +msgstr "tiedoston %s oikeuksien asettaminen ei onnistu" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "Mike Parker, David MacKenzie ja Jim Meyering" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Uudelleennimeä LÄHDE -> KOHDE, tai siirrä LÄHDE(teet) HAKEMISTOon.\n" +"\n" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" + +#: src/mv.c:339 +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" + +#: src/mv.c:467 +#, c-format +msgid "specified target, %s is not a directory" +msgstr "annettu kohde, %s, ei ole hakemisto" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "" +"viimeisen argumentin on oltava hakemisto siirrettäessä useita tiedostoja" + +#: src/nice.c:67 +#, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "Käyttö: %s [VALITSIN] [KOMENTO [ARG]...]\n" + +#: src/nice.c:68 +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" +"Aja KOMENTO säädetyllä vuorotusprioriteetilla.\n" +"Ilman KOMENTOa, näytä voimassaoleva prioriteetti. SÄÄTÖ on oletuksena 10.\n" +"Sen arvoalue on -20:stä (korkein prioriteetti) 19:een (matalin).\n" +"\n" +" -n, --adjustment=SÄÄTÖ lisää prioriteettiin SÄÄTÖ\n" + +#: src/nice.c:109 src/nice.c:122 +#, c-format +msgid "invalid option `%s'" +msgstr "valitsin \"%s\" ei kelpaa" + +#: src/nice.c:147 +#, c-format +msgid "invalid priority `%s'" +msgstr "prioriteetti \"%s\" ei kelpaa" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "kun säätöarvo on annettu, on komento pakollinen" + +#: src/nice.c:178 src/nice.c:187 +msgid "cannot get priority" +msgstr "prioriteetin haku ei onnistu" + +#: src/nice.c:192 +msgid "cannot set priority" +msgstr "prioriteetin asetus ei onnistu" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "Scott Bartram ja David MacKenzie" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Kirjoita jokainen TIEDOSTO vakiotulosteeseen rivinumerointi lisäten.\n" +"Jos TIEDOSTOa ei ole annettu, tai se on -, luetaan vakiosyötettä.\n" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" + +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "virheellinen aloitusrivin numero: \"%s\"" + +#: src/nl.c:514 +#, fuzzy, c-format +msgid "invalid line number increment: `%s'" +msgstr "kokonaislukuargumentti \"%s\" ei kelpaa" + +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "virheellinen tyhjien rivien määrä: \"%s\"" + +#: src/nl.c:541 +#, fuzzy, c-format +msgid "invalid line number field width: `%s'" +msgstr "kokonaislukuargumentti \"%s\" ei kelpaa" + +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "" +"Pitkien valitsinten pakolliset argumentit ovat pakollisia myös lyhyille.\n" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" + +#: src/od.c:722 src/od.c:844 +#, fuzzy, c-format +msgid "invalid type string `%s'" +msgstr "muotoilumerkkijono ei kelpaa: \"%s\"" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" + +#: src/od.c:917 +#, fuzzy, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "muotoilumerkkijono ei kelpaa: \"%s\"" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "" + +#: src/od.c:1717 +#, fuzzy +msgid "skip argument" +msgstr "Tarjolla olevat argumentit:" + +#: src/od.c:1725 +#, fuzzy +msgid "limit argument" +msgstr "Tarjolla olevat argumentit:" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "merkkijonon vähimmäispituus" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "%s on liian suuri" + +#: src/od.c:1804 +msgid "width specification" +msgstr "leveysmääritys" + +#: src/od.c:1826 +#, fuzzy +msgid "no type may be specified when dumping strings" +msgstr "muotoilua ei voi määritellä kun tulostetaan tasalevyisiä lukuja" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "kahden viimeisen argumentin on yhteensopivuustilassa oltava siirtymiä" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "yhteensopivuustila tukee korkeintaan kolmea argumenttia" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "varoitus: virheellinen leveys %lu; käytetään arvoa %d" + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "%d: muoto=\"%s\" leveys=%d\n" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "David M. Ihnat ja David MacKenzie" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "vakiosyöte on suljettu" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" + +#: src/pathchk.c:146 +#, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "Käyttö: %s [VALITSIN]... NIMI...\n" + +#: src/pathchk.c:147 +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" +"Diagnosoi siirrettäväksi kelpaamattomia rakenteita NIMESSÄ.\n" +"\n" +" -p, --portability tarkista muillekin POSIX -järjestelmille kuin vain " +"tälle\n" + +#: src/pathchk.c:237 +#, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "polku \"%s\" sisältää siirrettäväksi kelpaamattoman merkin \"%c\"" + +#: src/pathchk.c:257 +#, c-format +msgid "`%s' is not a directory" +msgstr "\"%s\" ei ole hakemisto" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "haku ei onnistu hakemistosta \"%s\"" + +#: src/pathchk.c:355 +#, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "nimen \"%s\" pituus %ld ylittää raja-arvon %ld" + +#: src/pathchk.c:381 +#, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "polun \"%s\" pituus %d ylittää raja-arvon %ld" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "Joseph Arceneaux, David MacKenzie ja Kaveh Ghazi" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "Tunnus: " + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "Tosielämässä: " + +#: src/pinky.c:298 +msgid "???\n" +msgstr "???\n" + +#: src/pinky.c:318 +msgid "Directory: " +msgstr "Hakemisto: " + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "Komentotulkki: " + +#: src/pinky.c:341 +msgid "Project: " +msgstr "Projekti: " + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "Suunnitelma:\n" + +#: src/pinky.c:386 +msgid "Login" +msgstr "Tunnus" + +#: src/pinky.c:388 +msgid "Name" +msgstr "Nimi" + +#: src/pinky.c:389 +msgid " TTY" +msgstr " TTY" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "Jouten" + +#: src/pinky.c:392 +msgid "When" +msgstr "Milloin" + +#: src/pinky.c:395 +msgid "Where" +msgstr "Missä" + +#: src/pinky.c:469 +#, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "Käyttö: %s [VALITSIN]... [TUNNUS]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" +"\n" +" -l tuota pitkän mallin tuloste määrätyille TUNNUKSILLE\n" +" -b älä näytä kotihakemistoa ja komentotulkkia pitkässä " +"mallissa\n" +" -h älä näytä project-tiedostoa pitkässä mallissa\n" +" -p älä näytä plan-tiedostoa pitkässä mallissa\n" +" -s lyhyen mallin tuloste, tämä on oletus\n" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" +" -f älä näytä otsakeriviä lyhyessä mallissa\n" +" -w älä näytä käyttäjän koko nimeä lyhyessä mallissa\n" +" -i älä näytä käyttäjän koko nimeä ja palvelinta lyhyessä " +"mallissa\n" +" -q älä näytä käyttäjän koko nimeä, palvelinta ja " +"joutenoloaikaa\n" +" lyhyessä mallissa\n" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" +"\n" +"Kevyt \"finger\"-ohjelma; tulostaa käyttäjätietoja.\n" +"utmp-tiedostona %s.\n" + +#: src/pinky.c:574 +msgid "no username specified; at least one must be specified when using -l" +msgstr "Valitsin -l vaatii vähintään yhden käyttäjänimen" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "Pete TerMaat ja Roland Hübner" + +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "" + +#: src/pr.c:817 +#, fuzzy, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "liukulukuargumentti ei kelpaa: %s" + +#: src/pr.c:829 +#, fuzzy, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "kokonaislukuargumentti \"%s\" ei kelpaa" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "" + +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "" + +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "" + +# tätä ei käytetä mihinkään, tyhmää +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "%e. %Bta %Y %H:%M" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "" + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "" + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "sivun leveys on liian pieni" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "aloitussivunumero on suurempi kuin sivujen kokonaismäärä: \"%d\"" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "Sivu %d" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "Numeroi sivut tai palstoita TIEDOSTO(t) tulostusta varten.\n" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr "" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" + +#: src/printenv.c:43 +msgid "David MacKenzie and Richard Mlynarik" +msgstr "David MacKenzie ja Richard Mlynarik" + +#: src/printenv.c:63 +#, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" +"Käyttö: %s [MUUTTUJA]...\n" +" tai: %s VALITSIN\n" +"Ilman ympäristöMUUTTUJAa tulostetaan ne kaikki.\n" +"\n" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "varoitus: %s: merkkivakiota seuraavat merkit on jätetty huomiotta" + +#: src/printf.c:100 +#, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"Käyttö: %s MUOTOILU [ARGUMENTTI]...\n" +" tai: %s VALITSIN\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" +"Tulosta ARGUMENTTI(t) MUOTOILUn mukaisesti.\n" +"\n" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" +"\n" +"MUOTOILU säätelee tulostetta kuten C:n printf. Tulkittavat merkkijonot:\n" +"\n" +" \\\" lainausmerkit\n" +" \\0NNN merkki, jonka oktaaliarvo on NNN (0:sta 3:een numeroa)\n" +" \\\\ kenoviiva\n" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" +" \\a varoitus (BEL)\n" +" \\b askelpalautin\n" +" \\c tulosteen lopetus tähän\n" +" \\f sivunvaihto\n" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\n rivinvaihto\n" +" \\r telanpalautus\n" +" \\t vaakasarkain\n" +" \\v pystysarkain\n" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" +" \\xNN tavu, jonka heksadesimaaliarvo on NN (1 tai 2 numeroa)\n" +"\n" +" \\uNNNN merkki, jonka heksadesimaaliarvo on NNNN (4 numeroa)\n" +" \\UNNNNNNNN merkki, jonka heksadesimaaliarvo on NNNNNNNN (8 numeroa)\n" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" +" %% yksittäinen %-merkki\n" +" %b ARGUMENTTI mekkijonona \"\\\"-merkityt ohjauskoodit tulkittuina\n" +"\n" +"sekä kaikki merkkeihin diouxXfeEgGcs päättyvät C:n muotoilumääritykset\n" +"ARGUMENTIT muunnettuna oikean tyyppisiksi. Muuttuvat leveydet huomoidaan.\n" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "%s: odotettiin numeerista arvoa" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "%s: arvoa ei muunnettu kokonaisuuvessaan" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "puuttuva hekaadesimaaliluku ohjauskoodissa" + +#: src/printf.c:292 +#, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "universaali merkin nimi \\%c%0*x ei kelpaa" + +#: src/printf.c:472 +#, c-format +msgid "invalid field width: %s" +msgstr "virheellinen kenttäleveys: %s" + +#: src/printf.c:498 +#, c-format +msgid "invalid precision: %s" +msgstr "virheellinen tarkkuus: %s" + +#: src/printf.c:519 +#, c-format +msgid "%%%c: invalid directive" +msgstr "%%%c: säännös ei kelpaa" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "Käyttö: %s muotoilu [argumentti...]\n" + +#: src/printf.c:594 +#, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "varoitus: ylimääräiset argumentit jätetty huomiotta alkaen \"%s\":sta" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "%s (säännölliselle lausekkeelle \"%s\")" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"Käyttö: %s [VALITSIN]... [SYÖTE]... (ilman valitsinta -G)\n" +" tai: %s -G [VALITSIN]... [SYÖTE [TULOSTE]]\n" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" +"\n" +"Jos TIEDOSTOA ei ole annettu, tai se on -, luetaan vakiosyötettä.\n" +"Oletus on \"-F /\".\n" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" +"Tämä ohjelma on vapaaohjelmisto; voitte levittää edelleen ja/tai \n" +"muuttaa sitä Free Software Foundationin julkaiseman GNU General Public\n" +"Licensen ehtojen mukaisesti; joko version 2, tai (valintanne mukaan)\n" +"minkä tahansa myöhemmän version.\n" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" +"Tätä ohjelmaa levitetään siinä toivossa, että se olisi hyödyllinen,\n" +"mutta TAKUUTA EI OLE; ei edes KAUPALLISESTI HYVÄKSYTTÄVÄSTÄ LAADUSTA\n" +"tai SOPIVUUDESTA TIETTYYN TARKOITUKSEEN. Katsokaa lisätietoja GNU\n" +"General Public Licensestä.\n" +"\n" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" +"Olette saaneet kopion GNU General Public Licensestä tämän\n" +"ohjelman mukana. Ellette saaneet, kirjoittakaa osoitteeseen\n" +"Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" +"MA 02111-1307, USA.\n" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" +"Tulosta työhakemiston täydellinen nimi.\n" +"\n" + +#: src/pwd.c:74 +msgid "ignoring non-option arguments" +msgstr "jätetään huomiotta argumentit, jotka eivät ole valitsimia" + +#: src/pwd.c:78 +msgid "cannot get current directory" +msgstr "työhakemistoa ei löydy" + +#: src/readlink.c:69 +#, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "Käyttö: %s [VALITSIN]... TIEDOSTO\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" +"Näytä symbolisen linkin arvo vakiotulosteessa.\n" +"\n" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" + +#: src/remove.c:394 +#, c-format +msgid "cannot chdir from %s to .." +msgstr "siirtyminen hakemistosta %s hakemistoon .. ei onnistu" + +#: src/remove.c:407 src/remove.c:488 +#, fuzzy, c-format +msgid "cannot lstat `.' in %s" +msgstr "nimen \"%s\" asetus järjestelmälle ei onnistu" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, fuzzy, c-format +msgid "cannot lstat %s" +msgstr "ajan asetus ei onnistu" + +#: src/remove.c:603 +#, fuzzy, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "hakemiston %s luominen ei onnistu" + +#: src/remove.c:604 +#, fuzzy, c-format +msgid "%s: descend into directory %s? " +msgstr "siirtyminen hakemistoon %s ei onnistu" + +#: src/remove.c:614 +#, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: poista kirjoitussuojattu %s %s? " + +#: src/remove.c:615 +#, c-format +msgid "%s: remove %s %s? " +msgstr "%s: poista %s %s? " + +#: src/remove.c:639 +#, c-format +msgid "removed %s\n" +msgstr "poistettiin tiedosto %s\n" + +#: src/remove.c:654 src/remove.c:1059 +#, c-format +msgid "removed directory: %s\n" +msgstr "poistettiin hakemisto: %s\n" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, c-format +msgid "cannot remove directory %s" +msgstr "hakemiston %s poistaminen ei onnistu" + +#: src/remove.c:815 +#, c-format +msgid "cannot open directory %s" +msgstr "hakemiston %s avaaminen ei onnistu" + +#: src/remove.c:896 src/remove.c:1002 +#, fuzzy, c-format +msgid "cannot chdir from %s to %s" +msgstr "siirtyminen hakemistoon %s ei onnistu" + +#: src/remove.c:904 +#, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "hakemistoa \".\" tai \"..\" ei voi poistaa" + +#: src/rm.c:60 +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "Paul Rubin, David MacKenzie, Richard Stallman ja Jim Meyering" + +#: src/rm.c:99 src/touch.c:244 +#, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "Käyttö: %s [VALITSIN]... TIEDOSTO...\n" + +#: src/rm.c:100 +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, c-format +msgid "removing directory, %s" +msgstr "poistetaan hakemisto %s" + +#: src/rmdir.c:146 +#, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "Käyttö: %s [VALITSIN]... HAKEMISTO...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" + +#: src/rmdir.c:154 +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" + +#: src/seq.c:82 +#, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"Käyttö: %s [VALITSIN]... LOPPU\n" +" tai: %s [VALITSIN]... ALKU LOPPU\n" +" tai: %s [VALITSIN]... ALKU LISÄYS LOPPU\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" +"Tulosta luvut luvusta ALKU lukuun LOPPU, LISÄYS-luvun välein.\n" +"\n" +" -f, --format=MUOTO käytä printf-tyylistä muotoilua MUOTO (oletus: %" +"g)\n" +" -s, --separator=JONO käytä JONOa erottelemaan lukuja (oletus: \\n)\n" +" -w, --equal-width tasoita leveydet lisäämällä nollia lukujen eteen\n" + +#: src/seq.c:96 +#, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" +"\n" +"Jos ALKU tai LISÄYS jätetään antamatta, käytetään niille oletusarvoa 1.\n" +"ALKU, LISÄYS JA LOPPU tulkitaan liukuluvuiksi. LISÄYS-luvun on oltava\n" +"positiivinen jos ALKU on pienempi kuin LOPPU, muulloin negatiivinen.\n" +"Kun MUOTO annetaan, sen on sisällettävä tasan yksi\n" +"printf-tyylisistä liukulukuesityksistä %e, %f, %g\n" + +#: src/seq.c:119 +#, c-format +msgid "invalid floating point argument: %s" +msgstr "virheellinen liukulukuargumentti: %s" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" +"kun alkuarvo loppuarvoa suurempi, täytyy lisäyksen olla\n" +"negatiivinen" + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" +"kun alkuarvo loppuarvoa pienempi, täytyy lisäyksen olla\n" +"positiivinen" + +#: src/seq.c:423 +#, c-format +msgid "invalid format string: `%s'" +msgstr "muotoilumerkkijono ei kelpaa: \"%s\"" + +#: src/seq.c:445 +msgid "format string may not be specified when printing equal width strings" +msgstr "muotoilua ei voi määritellä kun tulostetaan tasalevyisiä lukuja" + +#: src/shred.c:160 +#, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "Käyttö: %s [VALITSIMET] TIEDOSTO [...]\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" + +#: src/shred.c:174 +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" + +#: src/shred.c:808 +#, c-format +msgid "%s: cannot rewind" +msgstr "" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "" + +#: src/shred.c:868 +#, c-format +msgid "%s: error writing at offset %s" +msgstr "%s: virhe kirjoitettaessa siirtymässä %s" + +#: src/shred.c:897 +#, c-format +msgid "%s: file too large" +msgstr "%s: tiedosto on liian suuri" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "" + +#: src/shred.c:936 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "" + +#: src/shred.c:1195 +#, c-format +msgid "%s: invalid file type" +msgstr "%s: virheellinen tiedostotyyppi" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s: tiedoston koko on negatiivinen" + +#: src/shred.c:1265 +#, c-format +msgid "%s: error truncating" +msgstr "%s: virhe typistettäessä" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "%s: poistetaan" + +#: src/shred.c:1412 +#, fuzzy, c-format +msgid "%s: renamed to %s" +msgstr "%s: tunnistamaton valitsin \"--%s\"\n" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s: poistettu" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "%s: ei voi poistaa" + +#: src/shred.c:1551 +#, fuzzy, c-format +msgid "%s: invalid number of passes" +msgstr "%s: prosessin id ei kelpaa" + +#: src/shred.c:1568 +#, c-format +msgid "%s: invalid file size" +msgstr "%s: virheellinen tiedostokoko" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "Jim Meyering ja Paul Eggert" + +#: src/sleep.c:52 +#, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" +"Käyttö: %s NUMERO[PÄÄTE]...\n" +" tai: %s VALITSIN\n" +"Keskeytä NUMERO sekunnin ajaksi. PÄÄTE voi olla \"s\" (sekuntia, oletus),\n" +"\"m\" (minuuttia), \"h\" (tuntia) tai \"d\" (päivää). Toisin kuin " +"useimmissa\n" +"toteutuksissa, voi NUMERO olla kokonaisluvun lisäksi myös mielivaltainen\n" +"liukuluku.\n" +"\n" + +#: src/sleep.c:155 +#, c-format +msgid "invalid time interval `%s'" +msgstr "ajanjakso ei kelpaa: \"%s\"" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "tosiaikaisen kellon luku ei onnistu" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "Mike Haertel ja Paul Eggert" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr " -z, --zero-terminated päätä rivit 0-tavuun, ei rivinvaihtoon\n" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" + +#: src/sort.c:444 +msgid "cannot create temporary file" +msgstr "väliaikaistiedoston luominen ei onnistu" + +#: src/sort.c:467 +msgid "open failed" +msgstr "avaaminen epäonnistui" + +#: src/sort.c:487 src/sort.c:2496 +msgid "close failed" +msgstr "sulkeminen epäonnistui" + +#: src/sort.c:495 +msgid "write failed" +msgstr "kirjoitus epäonnistui" + +#: src/sort.c:641 +#, fuzzy +msgid "sort size" +msgstr "lohkokoko" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "" + +#: src/sort.c:972 +msgid "read failed" +msgstr "lukeminen epäonnistui" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "%s: %s:%s: epäjärjestys: " + +#: src/sort.c:1574 +msgid "standard error" +msgstr "vakiovirhe" + +#: src/sort.c:2032 +#, fuzzy, c-format +msgid "%s: invalid field specification `%s'" +msgstr "valitsin \"%s\" ei kelpaa" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "" + +#: src/sort.c:2064 +#, fuzzy, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "muotoilumerkkijono ei kelpaa: \"%s\"" + +#: src/sort.c:2298 +#, fuzzy +msgid "invalid number after `-'" +msgstr "päiväys \"%s\" ei kelpaa" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +#, fuzzy +msgid "invalid number after `.'" +msgstr "päiväys \"%s\" ei kelpaa" + +#: src/sort.c:2304 src/sort.c:2383 +#, fuzzy +msgid "stray character in field spec" +msgstr "merkkilaite" + +#: src/sort.c:2338 +msgid "invalid number at field start" +msgstr "" + +#: src/sort.c:2342 src/sort.c:2370 +msgid "field number is zero" +msgstr "kentän numero on nolla" + +#: src/sort.c:2351 +#, fuzzy +msgid "character offset is zero" +msgstr "merkkilaite" + +#: src/sort.c:2366 +#, fuzzy +msgid "invalid number after `,'" +msgstr "päiväys \"%s\" ei kelpaa" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "" + +#: src/split.c:96 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "Käyttö: %s [VALITSIN]... [ TIEDOSTO ]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" + +#: src/split.c:108 +#, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "" + +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "luodaan tiedostoa \"%s\"\n" + +#: src/split.c:341 +#, fuzzy +msgid "cannot split in more than one way" +msgstr "ajan haku ei onnistu" + +#: src/split.c:394 +#, fuzzy, c-format +msgid "%s: invalid suffix length" +msgstr "%s: signaali ei kelpaa" + +#: src/split.c:408 src/split.c:434 +#, fuzzy, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: prosessin id ei kelpaa" + +#: src/split.c:421 +#, fuzzy, c-format +msgid "%s: invalid number of lines" +msgstr "%s: prosessin id ei kelpaa" + +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "" + +#: src/split.c:483 +#, fuzzy +msgid "invalid number" +msgstr "käyttäjä ei kelpaa" + +#: src/stat.c:326 +msgid "*** invalid date/time ***" +msgstr "*** virheellinen päiväys/aika ***" + +#: src/stat.c:608 +#, fuzzy, c-format +msgid "cannot read file system information for %s" +msgstr "hakemiston %s luominen ei onnistu" + +#: src/stat.c:684 +#, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "Käyttö: %s [VALITSIN] TIEDOSTO...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" +" %D Laitenumero heksamuodossa\n" +" %d Laitanumero desimaalimuodossa\n" +" %F Tiedoston tyyppi\n" +" %f Raaka tila heksamuodossa\n" +" %G Omistajan ryhmän nimi\n" +" %g Omistajan ryhmä-ID\n" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" +"Käyttö: %s [-F LAITE] [--file=LAITE] [ASETUS]...\n" +" tai: %s [-F LAITE] [--file=LAITE] [-a|--all]\n" +" tai: %s [-F LAITE] [--file=LAITE] [-g|--save]\n" + +#: src/stty.c:504 +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" +"Näytä tai muuta päätteen ominaisuuksia.\n" +"\n" +" -a, --all näytä voimassa olevat asetukset luettavassa muodossa\n" +" -g, --save näytä voimassa olevat asetukset stty-luettavassa " +"muodossa\n" +" -F, --file=LAITE avaa ja ota käyttöön määrätty LAITE vakiosyötteen " +"sijaan\n" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" +"\n" +"Valinnainen - ennen ASETUSta tarkoittaa negaatiota. Ei-POSIX-asetukset\n" +"on merkitty *:lla. Käytettävissä olevat asetukset riippuvat alustasta.\n" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" +"\n" +"Erikoismerkit:\n" +" * dsusp MERKKI MERKKI lähettää terminaalin pysäytyssignaalin\n" +" eof MERKKI MERKKI lähettää tiedostonlopetuksen (syöte päättyy)\n" +" eol MERKKI MERKKI päättää rivin\n" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" +" * eol2 MERKKI vaihtoehtoinen MERKKI rivin päättämiseen\n" +" erase MERKKI MERKKI pyyhkii viimeisimmän kirjoitetun merkin\n" +" intr MERKKI MERKKI lähettää keskeytyssignaalin\n" +" kill MERKKI MERKKI pyyhkii käsillä olevan rivin\n" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" +" * lnext MERKKI MERKKI syöttää seuraavan merkin lainattuna\n" +" quit MERKKI MERKKI lähettää lopetussignaalin\n" +" * rprnt MERKKI MERKKI uudistaa käsillä olevan rivin\n" +" start MERKKI MERKKI käynnistää tulosteen uudelleen pysäytettyään sen\n" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" +" stop MERKKI MERKKI pysäyttää tulosteen\n" +" susp MERKKI MERKKI lähettää pysäytyssignaalin\n" +" * swtch MERKKI MERKKI vaihtaa toiselle komentotulkin tasolle\n" +" * werase MERKKI MERKKI pyyhkii viimeisimmän kirjoitetun sanan\n" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" +"\n" +"Erityisasetukset:\n" +" N aseta syöte- ja tulostenopeuksiksi N baudia\n" +" * cols N kerro ytimelle, että päätteen leveys on N merkkiä\n" +" * columns N kuten cols N\n" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" +" ispeed N aseta syötenopeudeksi N\n" +" * line N käytä rivikuria N\n" +" min N kun myös -icanon, aseta valmiin luvun merkkiminimiksi N\n" +" ospeed N aseta tulostenopeudeksi N\n" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" +" * rows N kerro ytimelle, että päätteellä on N riviä\n" +" * size näytä ytimeltä saadut rivi- ja sarakemäärät\n" +" speed näytä päätteen nopeus\n" +" time N kun myös -icanon, aseta luvun aikarajaksi N " +"kymmenesosasekuntia\n" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" +"\n" +"Kontrolliasetukset:\n" +" [-]clocal poista modeemin kontrollisignaalit käytöstä\n" +" [-]cread salli syötteen vastaanotto\n" +" * [-]crtscts ota RTS/CTS -kättely käyttöön\n" +" csN aseta merkkikooksi N bittiä, N välillä [5..8]\n" + +#: src/stty.c:570 +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" +" [-]cstopb käytä kahta pysäytysbittiä per merkki (\"-\":lla yksi)\n" +" [-]hup lähetä sulkusignaali kun viimeinen prosessi sulkee tty:n\n" +" [-]hupcl kuten [-]hup\n" +" [-]parenb luo pariteettibitti tulosteeseen ja oleta pariteettibitti " +"syötteessä\n" +" [-]parodd aseta pariton pariteetti (myös \"-\":lla)\n" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" +"\n" +"Syöteasetukset:\n" +" [-]brkint katkokset aiheuttavat keskeytyssignaalin\n" +" [-]icrnl muunna vaununpalautus rivinvaihdoksi\n" +" [-]ignbrk jätä katkosmerkit huomiotta\n" +" [-]igncr jätä vaununpalautus huomiotta\n" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" +" [-]ignpar jätä pariteettivirheelliset merkit huomiotta\n" +" * [-]imaxbel piippaa ja älä tyhjennä täyttä syötepuskuria merkille\n" +" [-]inlcr muunna rivinvaihto vaununpalautukseksi\n" +" [-]inpck ota syötteen pariteettitarkistus käyttöön\n" +" [-]istrip poista ylin (8:s) bitti syötteen merkeistä\n" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" +" * [-]iuclc muunna isot kirjaimet pieniksi\n" +" * [-]ixany anna minkä tahansa merkin uudelleenkäynnistää tulosteen\n" +" [-]ixoff ota start/stop -merkkien lähetys käyttöön\n" +" [-]ixon ota XON/XOFF vuotokontrolli käyttöön\n" +" [-]parmrk merkitse pariteettivirheet (255-0-merkkisarjalla)\n" +" [-]tandem kuten [-]ixoff\n" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" +"\n" +"Output settings:\n" +" * bsN askelpalauttimen viivetyyli, N välillä [0..1]\n" +" * crN vaununpalautuksen viivetyyli, N välillä [0..3]\n" +" * ffN arkinsyötön viivetyyli, N välillä [0..1]\n" +" * nlN rivinvaihdon viivetyyli, N välillä [0..1]\n" + +#: src/stty.c:608 +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" +" * [-]ocrnl muunna vaununpalautus rivinvaihdoksi\n" +" * [-]ofdel käytä poistomerkkejä täyttöön tyhjien merkkien sijaan\n" +" * [-]ofill käytä täyttömerkkejä ajastuksen sijaan viivästyksille\n" +" * [-]olcuc muunna pienet kirjaimet isoiksi\n" +" * [-]onlcr muunna rivinvaihto vaununpalautus-rivinvaihdoksi\n" +" * [-]onlret rivinvaihto suorittaa vaununpalautuksen\n" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" +" * [-]onocr ei tulosteta vaununpalautuksia ensimmäiseen sarakkeeseen\n" +" [-]opost jälkikäsettele tuloste\n" +" * tabN vaakasarkaimen viivetyyli, N välillä [0..3]\n" +" * tabs sama kuin tab0\n" +" * -tabs sama kuin tab3\n" +" * vtN pystysarkaimen viivetyyli, N välillä [0..1]\n" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" +"\n" +"Paikalliset asetukset:\n" +" [-]crterase toista erase-merkit näin: askelpalautin-välilyönti-" +"askelpalautin\n" +" * crtkill hävitä koko rivi totellen echoprt- ja echoe-asetuksia\n" +" * -crtkill hävitä koko rivi totellen echoctl- ja echok-asetuksia\n" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" +" * [-]ctlecho toista kontrollimerkit hattumuodossa (`^c')\n" +" [-]echo toista syötetyt merkit\n" +" * [-]echoctl sama kuin [-]ctlecho\n" +" [-]echoe sama kuin [-]crterase\n" +" [-]echok toista rivinvaihto hävitysmerkin jälkeen\n" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" +" * [-]echoke sama kuin [-]crtkill\n" +" [-]echonl toista rivinvaihto vaikka muita merkkejä ei toistettaisi\n" +" * [-]echoprt toista pyyhityt merkit takaperin, \"\\\" ja \"/\" -merkkien " +"välissä\n" +" [-]icanon ota erase, kill, werase, ja rprnt -erikoismerkit käyttöön\n" +" [-]iexten ota ei-POSIX -erikoismerkit käyttöön\n" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" +" [-]isig ota interrupt, quit ja suspend -erikoismerkit käyttöön\n" +" [-]noflsh poista käytöstä interrupt ja quit -erikoismerkkien " +"jälkeinen puskurintyhjennys\n" +" * [-]prterase sama kuin [-]echoprt\n" +" * [-]tostop pysäytä tausta-ajot, jotka yrittävät kirjoittaa päätteelle\n" +" * [-]xcase kun myös icanon, piilota isot kirjaimet \"\\\" -merkillä\n" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" +"\n" +"Yhdistelyasetukset:\n" +" * [-]LCASE sama kuin [-]lcase\n" +" cbreak sama kuin -icanon\n" +" -cbreak sama kuin icanon\n" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" +" cooked sama kuin brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof ja eol -merkit oletusarvoihinsa\n" +" -cooked sama kuin raw\n" +" crt sama kuin echoe echoctl echoke\n" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" +" dec sama kuin echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq sama kuin [-]ixany\n" +" ek erase ja kill -merkit oletusarvoihinsa\n" +" evenp sama kuin parenb -parodd cs7\n" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" +" -evenp sama kuin -parenb cs8\n" +" * [-]lcase sama kuin xcase iuclc olcuc\n" +" litout sama kuin -parenb -istrip -opost cs8\n" +" -litout sama kuin parenb istrip opost cs7\n" +" nl sama kuin -icrnl -onlcr\n" +" -nl sama kuin icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" +" oddp sama kuin parenb parodd cs7\n" +" -oddp sama kuin -parenb cs8\n" +" [-]parity sama kuin [-]evenp\n" +" pass8 sama kuin -parenb -istrip cs8\n" +" -pass8 sama kuin parenb istrip cs7\n" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" +" raw sama kuin -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw sama kuin cooked\n" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" +" sane sama kuin cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, kaikki\n" +" erikoismerkit oletusarvoihinsa.\n" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" +"\n" +"Käsittele vakiosyötteeseen liitettyä tty:tä. Ilman argumentteja\n" +"tulostaa nopeuden baudeina, rivikurin ja poikkeamat stty sane:sta.\n" +"Asetuksissa MERKKI otetaan sellaisenaan tai, koodattuna kuten ^c,\n" +"0x37, 0177 tai 127; erikoisarvoja ^- ja undef käytetään kun halutaan\n" +"erikoismerkit pois käytöstä.\n" + +#: src/stty.c:787 +msgid "only one device may be specified" +msgstr "voit määritellä vain yhden laitteen" + +#: src/stty.c:882 +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "" +"valitsimet verbose ja stty-readable -tulostetyyleille\n" +"ovat toisensa poissulkevat" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "tiloja ei voi asettaa, kun tulostetyyli on määriteltynä" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "%s: ei-estävän tilan uudelleenasetus ri onnistunut" + +#: src/stty.c:957 src/stty.c:1064 +#, c-format +msgid "invalid argument `%s'" +msgstr "argumentti \"%s\" ei kelpaa" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, c-format +msgid "missing argument to `%s'" +msgstr "\"%s\" vaatii argumentin" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "%s: kaikkia pyydettyjä toimenpiteitä ei voida suorittaa" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "new_mode: tila\n" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "%s: ei kokotietoja tälle laitteelle" + +#: src/stty.c:1944 +#, c-format +msgid "invalid integer argument `%s'" +msgstr "kokonaislukuargumentti \"%s\" ei kelpaa" + +#: src/su.c:289 +msgid "Password:" +msgstr "Salasana:" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "getpass: laitteen /dev/tty avaaminen ei onnistu" + +#: src/su.c:350 +msgid "cannot set groups" +msgstr "ryhmien asetus ei onnistu" + +#: src/su.c:354 +msgid "cannot set group id" +msgstr "ryhmän id:n asetus ei onnistu" + +#: src/su.c:356 +msgid "cannot set user id" +msgstr "tunnuksen id:n asetus ei onnistu" + +#: src/su.c:437 +#, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "Käyttö: %s [VALITSIN]... [-] [TUNNUS [ARG]...]\n" + +#: src/su.c:438 +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" +"Ota käyttöön tunnuksen TUNNUS käyttäjä-id ja ryhmä-id.\n" +"\n" +" -, -l, --login tee komentotulkista " +"sisäänkirjauskomentotulkki\n" +" -c, --commmand=KOMENTO välitä komentotulkille KOMENTO -c -" +"valitsimella\n" +" -f, --fast välitä komentotulkille valitsin -f (csh:lle " +"tai tcsh:lle)\n" +" -m, --preserve-environment älä uudelleenaseta ympäristömuuttujia\n" +" -p sama kuin -m\n" +" -s, --shell=SHELL aja komentotulkki SHELL, jos /etc/shells " +"sallii sen\n" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" +"\n" +"Pelkkä - tekee saman kuin -l. OletusTUNNUS on root.\n" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "tunnusta %s ei ole olemassa" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "väärä salasana" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "käytetään rajoitettua komentotulkkia %s" + +#: src/su.c:580 +#, c-format +msgid "warning: cannot change directory to %s" +msgstr "varoitus: ei voida siirtyä hakemistoon %s" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "Kayvan Aghaiepour ja David MacKenzie" + +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" + +#: src/sync.c:70 src/tty.c:112 +msgid "ignoring all arguments" +msgstr "jätetään kaikki argumentit huomiotta" + +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr " --help näytä tämä aputeksti ja poistu\n" + +#: src/sys2.h:494 +msgid " --version output version information and exit\n" +msgstr " --version tulosta versiotiedot ja poistu\n" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "Jay Lepreau ja David MacKenzie" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tac.c:139 +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "vakiosyöte: lukuvirhe" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "erotin ei voi olla tyhjä" + +#: src/tail.c:49 +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "Paul Rubin, David MacKenzie, Ian Lance Taylor ja Jim Meyering" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" + +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "suljetaan %s (fd=%d)" + +#: src/tail.c:391 +#, c-format +msgid "%s: cannot seek to offset %s" +msgstr "%s: siirtyminen kohtaan %s ei onnistu" + +#: src/tail.c:395 +#, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "%s: siirtyminen suhteelliseen siirtymään %s ei onnistu" + +#: src/tail.c:400 +#, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "%s: siirtyminen siirtymään %s suhteessa loppuun ei onnistu" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "" + +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "%s: tiedosto typistynyt" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "tiedostoja ei ole jäljellä" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "" + +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" + +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "valitsin \"%s\" on vanhentunut; käytä \"%s-%c %.*s\"" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "" + +#: src/tail.c:1534 +#, c-format +msgid "%s: invalid PID" +msgstr "%s: virheellinen PID" + +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: virheellinen sekuntimäärä" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "" + +#: src/tee.c:33 +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "Mike Parker, Richard M. Stallman ja David MacKenzie" + +#: src/tee.c:64 +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" +"Kopioi vakiosyöte jokaiseen TIEDOSTOon sekä vakiotulosteeseen.\n" +"\n" +" -a, --append lisää TIEDOSTOjen perään, älä korvaa\n" +" -i, --ignore-interrupts jätä keskeytyssignaalit huomiotta\n" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "odotettiin argumenttia\n" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "odotettiin kokonaislukulauseketta %s\n" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "\")\" oli odotus\n" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "\")\" oli odotus, saatiin %s\n" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "%s: odotettiin unaarista operaattoria\n" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "%s: odotettiin binäärista operaattoria\n" + +#: src/test.c:424 +msgid "before -lt" +msgstr "ennen operaattoria -lt" + +#: src/test.c:432 +msgid "after -lt" +msgstr "operaattorin -lt jälkeen" + +#: src/test.c:446 +msgid "before -le" +msgstr "ennen operaattoria -le" + +#: src/test.c:453 +msgid "after -le" +msgstr "operaattorin -le jälkeen" + +#: src/test.c:469 +msgid "before -gt" +msgstr "ennen operaattoria -gt" + +#: src/test.c:476 +msgid "after -gt" +msgstr "operaattorin -gt jälkeen" + +#: src/test.c:490 +msgid "before -ge" +msgstr "ennen operaattoria -ge" + +#: src/test.c:497 +msgid "after -ge" +msgstr "operaattorin -ge jälkeen" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "-nt ei hyväksy -l -lauseketta\n" + +#: src/test.c:526 +msgid "before -ne" +msgstr "ennen operaattoria -ne" + +#: src/test.c:533 +msgid "after -ne" +msgstr "operaattorin -ne jälkeen" + +#: src/test.c:549 +msgid "before -eq" +msgstr "ennen operaattoria -eq" + +#: src/test.c:556 +msgid "after -eq" +msgstr "operaattorin -eq jälkeen" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "-ef ei hyväksy -l -lauseketta\n" + +#: src/test.c:586 +msgid "-ot does not accept -l\n" +msgstr "-ot ei hyväksy -l -lauseketta\n" + +#: src/test.c:593 +msgid "unknown binary operator" +msgstr "tuntematon binäärioperaattori" + +#: src/test.c:781 +msgid "after -t" +msgstr "operaattorin -t jälkeen" + +#: src/test.c:979 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"Käyttö: %s LAUSEKE\n" +" tai: [ LAUSEKE ]\n" +" tai: %s VALITSIN\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" +"Poistu tilakoodilla, jonka LAUSEKE määrittelee.\n" +"\n" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" +"\n" +"LAUSEKE on tosi tai epätosi ja asettaa tilakoodin. Se on jokin seuraavista:\n" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" +"\n" +" ( LAUSEKE ) LAUSEKE on tosi\n" +" ! LAUSEKE LAUSEKE on epätosi\n" +" LAUSEKE1 -a LAUSEKE2 sekä LAUSEKE1 että LAUSEKE2 ovat tosia\n" +" LAUSEKE1 -o LAUSEKE2 joko LAUSEKE1 tai LAUSEKE2 on tosi\n" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" +"\n" +" [-n] MERKKIJONO MERKKIJONOn pituus on nollasta poikkeava\n" +" -z MERKKIJONO MERKKIJONOn pituus on nolla\n" +" MERKKIJONO1 = MERKKIJONO2 merkkijonot ovat yhteneväiset\n" +" MERKKIJONO1 != MERKKIJONO2 merkkijonot eivät ole yhteneväiset\n" + +#: src/test.c:1009 +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" +"\n" +" KOKONAISLUKU1 -eq KOKONAISLUKU2 KOKONAISLUKU1 on yhtäsuuri kuin " +"KOKONAISLUKU2\n" +" KOKONAISLUKU1 -ge KOKONAISLUKU2 KOKONAISLUKU1 on suurempi tai yhtäsuuri " +"kuin KOKONAISLUKU2\n" +" KOKONAISLUKU1 -gt KOKONAISLUKU2 KOKONAISLUKU1 on suurempi kuin " +"KOKONAISLUKU2\n" +" KOKONAISLUKU1 -le KOKONAISLUKU2 KOKONAISLUKU1 on pienempi tai yhtäsuuri " +"kuin KOKONAISLUKU2\n" +" KOKONAISLUKU1 -lt KOKONAISLUKU2 KOKONAISLUKU1 on pienempi kuin " +"KOKONAISLUKU2\n" +" KOKONAISLUKU1 -ne KOKONAISLUKU2 KOKONAISLUKU1 on erisuuri kuin " +"KOKONAISLUKU2\n" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" +"\n" +" TIEDOSTO1 -ef TIEDOSTO2 tiedostoilla on sama laite ja sama inode-numero\n" +" TIEDOSTO1 -nt TIEDOSTO2 TIEDOSTO1 on uudempi (muokkauspäiväys) kuin " +"TIEDOSTO2\n" +" TIEDOSTO1 -ot TIEDOSTO2 TIEDOSTO1 on vanhempi kuin TIEDOSTO2\n" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" +"\n" +" -b TIEDOSTO TIEDOSTO on olemassa ja on lohkolaitetiedosto\n" +" -c TIEDOSTO TIEDOSTO on olemassa ja on merkkilaitetiedosto\n" +" -d TIEDOSTO TIEDOSTO on olemassa ja on hakemisto\n" +" -e TIEDOSTO TIEDOSTO on olemassa\n" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" +" -f TIEDOSTO TIEDOSTO on olemassa ja on tavallinen tiedosto\n" +" -g TIEDOSTO TIEDOSTO on olemassa ja sen set-group-ID -bitti on päällä\n" +" -h TIEDOSTO TIEDOSTO on olemassa ja on symbolinen linkki (sama kuin -" +"L)\n" +" -G TIEDOSTO TIEDOSTO on olemassa ja voimassaolevan ryhmän " +"omistuksessa\n" +" -k TIEDOSTO TIEDOSTO on olemassa ja sen sticky bit on päällä\n" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" +" -L TIEDOSTO TIEDOSTO on olemassa ja on symbolinen linkki (sama kuin -" +"h)\n" +" -O TIEDOSTO TIEDOSTO on olemassa ja voimassaolevan käyttäjän " +"omistuksessa\n" +" -p TIEDOSTO TIEDOSTO on olemassa ja on nimetty putki\n" +" -r TIEDOSTO TIEDOSTO on olemassa ja luettavissa\n" +" -s TIEDOSTO TIEDOSTO on olemassa ja kooltaan suurempi kuin nolla\n" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" +" -S TIEDOSTO TIEDOSTO on olemassa ja on a socket\n" +" -t [TK] tiedostokahva TK (oletuksena stdout) on auki ja " +"päätelaite\n" +" -u TIEDOSTO TIEDOSTO on olemassa ja sen set-user-ID -bitti on päällä\n" +" -w TIEDOSTO TIEDOSTO on olemassa ja kirjoitettavissa\n" +" -x TIEDOSTO TIEDOSTO on olemassa ja ajettavissa\n" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" +"\n" +"Huomaa, että sulut täytyy suojata (esim. kenoviivoilla) komentotulkeilta.\n" +"KOKONAISLUKU voi olla myös -l MERKKIJONO, joka laventuu MERKKIJONOn " +"pituudeksi.\n" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "FIXME: ksb ja mjb" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "puuttuva \"]\"\n" + +#: src/test.c:1125 +msgid "too many arguments\n" +msgstr "liian monta argumenttia\n" + +#: src/touch.c:39 +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie ja Randy Smith" + +#: src/touch.c:164 src/touch.c:179 +#, c-format +msgid "creating %s" +msgstr "luodaan %s" + +#: src/touch.c:222 +#, fuzzy, c-format +msgid "cannot touch %s" +msgstr "ryhmien asetus ei onnistu" + +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" +"Päivitä jokaisen TIEDoston käyttö- ja muutosajat nykyiseen aikaan.\n" +"\n" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" +"\n" +"Huomaa, että valitsimien -d ja -t hyväksymät aika-päiväysmuodot ovat\n" +"erilaisia.\n" + +#: src/touch.c:311 src/touch.c:331 +#, c-format +msgid "invalid date format %s" +msgstr "virheellinen päiväyksen muoto %s" + +#: src/touch.c:355 +msgid "cannot specify times from more than one source" +msgstr "" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "" +"varoitus: \"touch %s\" on vanhentunut; käytä \"touch -t %04d%02d%02d%02d%02d." +"%02d\"" + +#: src/touch.c:399 +msgid "file arguments missing" +msgstr "tiedostoargumentit puuttuvat" + +#: src/tr.c:327 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "Käyttö: %s [VALITSIN]... [TUNNUS]...\n" + +#: src/tr.c:331 +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" + +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" + +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "puuttuva merkkiluokan nimi \"[::]\"" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "" + +#: src/tr.c:1025 +#, fuzzy, c-format +msgid "invalid character class `%s'" +msgstr "päiväys \"%s\" ei kelpaa" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "toistorakenne [c*] ei saa esiintyä merkkijono1:ssä" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "toistorakenne [c*] saa esiintyä vain kerran merkkijono2:ssa" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "rakenne [c*] saa esiintyä merkkijono2:ssa vain muunnettaessa" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" + +#: src/true.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Käyttö: %s [huomiotta jätettävät komentoriviargumentit]\n" +" tai: %s VALITSIN\n" +"Poistu onnistumisesta kertovalla tilakoodilla.\n" +"\n" +"Näitä valitsinnimiä ei voi käyttää lyhennettyinä.\n" +"\n" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "%s: syöte sisältää silmukan:" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "voidaan antaa vain yksi argumentti" + +#: src/tty.c:63 +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" +"Tulosta vakiosyötteeseen kytketyn päätteen tiedostonimi.\n" +"\n" +" -s, --silent, --quiet ei tulostetta, pelkkä poistumisen tilakoodin " +"palautus\n" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "ei ole tty" + +#: src/uname.c:111 +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" +"Tulosta tiettyjä järjestelmätietoja. Komento ilman VALITSINta on sama kuin -" +"s.\n" +"\n" +" -a, --all tulosta kaikki tiedot, seuraavassa " +"järjestyksessä:\n" +" -s, --kernel-name tulosta ytimen nimi\n" +" -n, --nodename tulosta koneen nimi\n" +" -r, --kernel-release tulosta ytimen pääversionumero\n" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" +" -v, --kernel-version tulosta ytimen versiotiedot\n" +" -m, --machine tulosta laitteiston tyyppi\n" +" -p, --processor tulosta prosessorin tyyppi\n" +" -i, --hardware-platform tulosta laitteistoympäristö\n" +" -o, --operating-system tulosta käyttöjärjestelmä\n" + +#: src/uname.c:226 +msgid "cannot get system name" +msgstr "järjestelmän nimen haku ei onnistu" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" + +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "valitsin \"-LIST\" on vanhentunut; käytä \"--first-only -t LIST\"" + +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "Käyttö: %s [VALITSIN]... [SYÖTE [TULOSTE]]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr "" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" + +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "virhe luettaessa tiedostoa %s" + +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "virhe kirjoitettaessa tiedostoa %s" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "ylimääräinen operandi \"%s\"" + +#: src/uniq.c:473 src/uniq.c:498 +msgid "invalid number of fields to skip" +msgstr "virheellinen ohitettavien kenttien määrä" + +#: src/uniq.c:507 +msgid "invalid number of bytes to skip" +msgstr "virheellinen ohitettavien tavujen määrä" + +#: src/uniq.c:516 +msgid "invalid number of bytes to compare" +msgstr "virheellinen verrattavien tavujen määrä" + +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "valitsin \"-%lu\" on vanhentunut; käytä \"-f %lu\"" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "" + +#: src/unlink.c:51 +#, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"Käyttö: %s TIEDOSTO\n" +" tai: %s VALITSIN\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" + +#: src/unlink.c:99 +#, c-format +msgid "cannot unlink %s" +msgstr "" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "käynnistysajan haku ei onnistu" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr " %2d:%02d%s käynnissä " + +#: src/uptime.c:140 +msgid "am" +msgstr "am" + +#: src/uptime.c:140 +msgid "pm" +msgstr "pm" + +#: src/uptime.c:142 +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d päivä" +msgstr[1] "%d päivää" + +#: src/uptime.c:144 +#, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "%d käyttäjä" +msgstr[1] "%d käyttäjää" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr ", keskimääräinen kuorma: %.2f" + +#: src/uptime.c:191 src/users.c:118 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "Käyttö: %s [VALITSIN]... [ TIEDOSTO ]\n" + +#: src/uptime.c:192 +#, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Näytä kellonaika, järjestelmän päälläoloaika, järjestelmään\n" +"kirjautuneiden käyttäjien määrä sekä ajojonon töiden keskimääräinen\n" +"lukumäärä viimeisten 1, 5 ja 15 minuutin ajalta.\n" +"OletusTIEDOSTO on %s. %s TIEDOSTOna on yleinen.\n" +"\n" + +#: src/users.c:35 +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "Joseph Arceneaux ja David MacKenzie" + +#: src/users.c:119 +#, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Näytä kirjautuneet käyttäjät TIEDOSTOn mukaan.\n" +"Oletustiedosto on %s. %s on yleinen TIEDOSTOna.\n" +"\n" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "Paul Rubin ja David MacKenzie" + +#: src/wc.c:129 +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" +" -L, --max-line-length näytä pisimmän rivin pituus\n" +" -w, --words näytä sanojen määrä\n" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "Joseph Arceneaux, David MacKenzie ja Michael Stone" + +#: src/who.c:223 +msgid " old " +msgstr "kauan" + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "id=" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "sulj=" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "pois=" + +#: src/who.c:446 +msgid "clock change" +msgstr "kellon siirto" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "käyttötaso" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "edell=" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" +"\n" +"# käyttäjiä=%u\n" + +#: src/who.c:498 +msgid "NAME" +msgstr "NIMI" + +#: src/who.c:498 +msgid "LINE" +msgstr "YHTEYS" + +#: src/who.c:498 +msgid "TIME" +msgstr "AIKA" + +#: src/who.c:498 +msgid "IDLE" +msgstr "JOUTEN" + +#: src/who.c:498 +msgid "PID" +msgstr "PID" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "KOMMENTTI" + +#: src/who.c:499 +msgid "EXIT" +msgstr "POIS" + +#: src/who.c:574 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "Käyttö: %s [VALITSIN]... [ TIEDOSTO | ARG1 ARG2 ]\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" +"\n" +" -a, --all sama kuin -b -d --login -p -r -t -T -u\n" +" -b, --boot viimeisimmän käynnistyksen aika\n" +" -d, --dead näytä kuolleet prosessit\n" +" -H, --heading näytä otsikkorivi\n" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" +" -i, --idle lisää joutenoloaika muodossa TUNNIT:MINUUTIT, . tai " +"kauan\n" +" (ei suositeltava, käytä valitsinta -u)\n" +" --login näytä järjestelmän sisäänkirjausprosessit\n" +" (sama kuin SUS -l)\n" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" +" -l, --lookup yritä selvittää palvelinnimet DNS:n avulla\n" +" (-l ei ole suositeltu, käytä valitsinta --lookup)\n" +" -m vain koneen nimi ja vakiosyötteeseen liittyvä tunnus\n" +" -p, --process näytä aktiiviset prosessit, jotka init on poikinut\n" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" +" -q, --count tunnukset ja kirjautuneena olevien käyttäjien määrä\n" +" -r, --runlevel näytä voimassa oleva käyttötaso\n" +" -s, --short näytä vain nimi, yhteys ja aika (oletus)\n" +" -t, --time näytä viimeisin järjestelmäkellon muutosaika\n" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" +" -T, -w, --mesg näytä myös tunnuksen viestitila merkeillä +, - tai ?\n" +" -u, --users listaa kirjautuneet käyttäjän\n" +" --message sama kuin -T\n" +" --writable sama kuin -T\n" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" +"\n" +"%s on oletusTIEDOSTO. %s TIEDOSTOna on yleinen.\n" +"Jos ARG1 ja ARG2 annetaan, -m on oletetaan: \"am i\" tai \"mom likes\" ovat " +"tavallisia.\n" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "" +"Varoitus: -i poistetaan tulevassa julkaisussa; käytä -u:ta sen sijaan" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" +"Varoitus: valitsimen \"-l\" toiminta muuttuu tulevassa julkaisussa POSIX-" +"yhteensopivaksi" + +#: src/whoami.c:53 +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" +"Tulosta voimassaolevaa käyttäjä-id:tä vastaava käyttäjänimi.\n" +"Sama kuin id -un.\n" +"\n" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "%s: UID:lle %u ei löydy käyttäjänimeä\n" + +#: src/yes.c:49 +#, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"Käyttö: %s [MERKKIJONO]...\n" +" tai: %s VALITSIN\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" +"Tulosta toistuvasti riviä, jolla on kaikki annetut MERKKIJONO(t) tai \"y\".\n" +"\n" + +#~ msgid "\\%c: invalid escape" +#~ msgstr "\\%c: ohjausmerkki ei kelpaa" + +#~ msgid "program error" +#~ msgstr "ohjelmavirhe" + +#~ msgid "stack overflow" +#~ msgstr "pinon ylivuoto" diff --git a/src/apps/bin/coreutils-5.0/po/fr.gmo b/src/apps/bin/coreutils-5.0/po/fr.gmo new file mode 100644 index 0000000000..aebeb2a0d9 Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/fr.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/fr.po b/src/apps/bin/coreutils-5.0/po/fr.po new file mode 100644 index 0000000000..402b74eec3 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/fr.po @@ -0,0 +1,12445 @@ +# Messages français pour GNU concernant textutils. +# Copyright © 1996 Free Software Foundation, Inc. +# Michel Robitaille , traducteur depuis/since 1996. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU coreutils 4.5.11\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2003-03-27 08:00-0500\n" +"Last-Translator: Michel Robitaille \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8-bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "argument %s invalide pour %s" + +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "argument %s ambigu pour %s" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "Arguments valides sont:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "Erreur d'écriture." + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "Erreur système inconnue" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "fichier régulier vide" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "fichier régulier" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "répertoire" + +#: lib/file-type.c:48 +msgid "block special file" +msgstr "fichier spécial de bloc" + +#: lib/file-type.c:51 +msgid "character special file" +msgstr "fichier spécial de caractères" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "PEPS (FIFO)" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "lien symbolique" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "socket" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "queue de messages" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "sémaphore" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "objet de mémoire partagée" + +#: lib/file-type.c:71 +msgid "weird file" +msgstr "fichier bizarre" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: l'option « %s » est ambiguë\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: l'option « --%s » ne requiert pas un argument.\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: l'option « %c%s » ne requiert pas un argument.\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: l'option « %s » requiert un argument.\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: option non reconnue « --%s »\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: option non reconnue « %c%s »\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: option illégale --%c\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: option invalide --%c\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: l'option requiert un argument --%c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: l'option « -W %s » est ambiguë\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: l'option « -W %s » ne requiert pas un argument.\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "taille de bloc" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "échec de retour au répertoire initial de travail" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "Ne peut créer le répertoire %s" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%s existe mais n'est pas un répertoire" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "ne peut modifier le propriétraire et/ou le groupe de %s" + +#: lib/makepath.c:338 +#, c-format +msgid "cannot chdir to directory %s" +msgstr "ne peut aller vers le répertoire %s" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "Ne peut changer les permissions de %s" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "Mémoire épuisée" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "`" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "'" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[yY]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[nN]" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "fonction iconv n'est pas utilisable" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "fonction iconv n'est pas disponible" + +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "caractère hors plage" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "ne peut convertir U+%04X à un jeu local de caractères" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "ne peut convertir U+%04X au jeu local de caractères: %s" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "usager invalide" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "groupe invalide" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "" +"ne peut obtenir le groupe d'établissement de session à partir du UID " +"numérique" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "ne peut omettre ensemble l'usager et le groupe" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "Écrit par %s.\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +"Ce logiciel est libre; voir les sources pour les conditions de\n" +"reproduction. AUCUNE garantie n'est donnée; tant pour des raisons\n" +"COMMERCIALES que pour RÉPONDRE À UN BESOIN PARTICULIER.\n" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "échec de comparaison de chaîne" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "Définir LC_ALL=« C » pour contourner le problème." + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "Les chaînes comparées étaient %s et %s." + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Pour en savoir davantage, faites: « %s --help ».\n" + +#: src/basename.c:54 +#, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"Usage: %s NOM [SUFFIXE]...\n" +" or: %s [OPTION]\n" + +#: src/basename.c:59 +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" +"Afficher le NOM sans être précédé des composants des noms de répertoires\n" +"Si spécifié enlever aussi le SUFFIXE.\n" +"\n" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"Rapporter toutes anomalies à <%s>.\n" + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "Trop peu de arguments." + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "Trop de arguments." + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "Torbjorn Granlund et Richard M. Stallman" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "Usage: %s [OPTION] [FICHIER]...\n" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" +"Concaténer le(s) FICHIER(s), ou de l'ENTRÉE standard, vers la sortie " +"standard.\n" +"\n" +" -A, --show-all équivalent à -vET\n" +" -b, --number-nonblank numéroter que les lignes non vides\n" +" -e équivalent à -vE\n" +" -E, --show-ends afficher $ à la fin de chaque ligne\n" +" -n, --number numéroter toutes les lignes\n" +" -s, --squeeze-blank afficher jamais plus qu'une seule ligne vide\n" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" +" -t équivalent à -vT\n" +" -T, --show-tabs afficher les caractères TAB comme ^I\n" +" -u (ignoré)\n" +" -v, --show-nonprinting utiliser la notation ^ et M- ,\n" +" excepté pour LFD et TAB\n" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"Sans FICHIER, ou quand le FICHIER est -, lire de l'entrée standard.\n" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" +"\n" +" -B, --binary écrire en binaire sur la console.\n" +"\n" + +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "Ne peut exécuter « ioctl » sur « %s »" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "sortie standard" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s: le fichier à l'entrée est le même qu'à la sortie." + +#: src/cat.c:858 +msgid "closing standard input" +msgstr "fermeture de l'entrée standard" + +#: src/cat.c:861 +msgid "closing standard output" +msgstr "fermeture de la sortie standard" + +#: src/chgrp.c:93 +msgid "cannot change to null group" +msgstr "ne peut modifier pour le groupe nul" + +#: src/chgrp.c:102 +#, c-format +msgid "invalid group name %s" +msgstr "nom de groupe invalide %s" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "numéro de groupe" + +#: src/chgrp.c:109 +#, c-format +msgid "invalid group number %s" +msgstr "numéro de groupe invalide %s" + +#: src/chgrp.c:126 +#, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Usage: %s [OPTION]... GROUPE FICHIER...\n" +" ou: %s [OPTION]... --reference=FICHIER-R FICHIER...\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Changer le groupe d'appartenance de chaque FICHIER au GROUPE.\n" +"\n" +" -c, --changes utiliser le mode bavard mais rapporter " +"seulement\n" +" les modifications lorsqu'elles surviennent\n" +" --dereference affecter le référent de chaque lien symbolique,\n" +" plutôt que le lien symbolique lui-même\n" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" +" -h, --no-dereference modifier les liens symboliques au lieu des\n" +" fichiers référencés (disponible seulement\n" +" sur les systèmes offrant l'appel système " +"lchown)\n" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet supprimer la plupart des messages d'erreur\n" +" --reference=FICHIER utiliser le groupe de référence du FICHIER\n" +" au lieu d'une valeur de groupe\n" +" -R, --recursive modifier récursivement fichiers et répertoires\n" +" -v, --verbose produire un diagnostic pour chaque fichier " +"traité\n" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, c-format +msgid "failed to get attributes of %s" +msgstr "échec d'obtention des attributs de %s" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "obtention des nouveaux attributs de %s" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "Le mode d'accès de %s a été modifié à %04lo (%s).\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "Échec du changement de mode de %s à %04lo (%s).\n" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "Le mode d'accès de %s qui a été conservé est: %04lo (%s).\n" + +#: src/chmod.c:179 +#, c-format +msgid "changing permissions of %s" +msgstr "modification des permissions de %s" + +#: src/chmod.c:242 +#, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Usage: %s [OPTION]... MODE[,MODE]... FICHIER...\n" +" ou: %s [OPTION]... MODE-OCTAL FICHIER\n" +" ou: %s [OPTION]... --reference=FICHIER-R FICHIER\n" + +#: src/chmod.c:248 +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"Changer le MODE d'accès de chaque FICHIER.\n" +"\n" +" -c, --changes utiliser le mode bavard mais rapporter seulement\n" +" les modifications lorsqu'elles surviennent\n" +" -f, --silent, --quiet supprimer la plupart des messages d'erreur\n" +" -v, --verbose produire un diagnostic pour chaque fichier traité\n" +" --reference=FICHIER utiliser les modes d'accès du FICHIER de " +"référence\n" +" au lieu de valeurs\n" +" -R, --recursive modifier récursivement fichiers et répertoires\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" +"\n" +"Chaque MODE se compose d'un ou plusieurs lettres de ugoa, un des symbols +-= " +"et\n" +"d'une ou plusieurs lettres rwxXstugo.\n" + +#: src/chmod.c:320 +#, c-format +msgid "invalid character %s in mode string %s" +msgstr "caractère invalide %s dans la chaîne du mode %s" + +#: src/chmod.c:361 +#, c-format +msgid "invalid mode string: %s" +msgstr "chaîne de mode invalide: %s" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "Ni le lien symbolique %s ni la référence n'ont changé.\n" + +#: src/chown-core.c:143 +#, c-format +msgid "changed ownership of %s to %s\n" +msgstr "Changement de propriétaire de %s vers %s\n" + +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "Changement de groupe de %s vers %s\n" + +#: src/chown-core.c:148 +#, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "échec de changement de propriétaire de %s vers %s\n" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "Échec de changement de groupe de %s vers %s\n" + +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "L'appartenance de %s qui a été retenue est %s\n" + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "Le groupe d'appartenance de %s qui a été retenu est %s.\n" + +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "changement de propriétaire pour %s" + +#: src/chown-core.c:327 +#, c-format +msgid "changing group of %s" +msgstr "modification du groupe de %s" + +#: src/chown-core.c:345 +#, c-format +msgid "unable to restore permissions of %s" +msgstr "incapable de restaurer es permissions de %s" + +#: src/chown.c:99 +#, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Usage: %s [OPTION]... PROPRIÉTAIRE[:[GROUPE]] FICHIER...\n" +" ou: %s [OPTION]... :GROUPE FICHIER...\n" +" ou: %s [OPTION]... --reference=FICHIER-R FICHIER\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Changer le propriétaire et/ou le groupe de chaque FICHIER.\n" +"\n" +" -c, --changes utiliser le mode bavard mais rapporter " +"seulement\n" +" les modifications lorsqu'elles surviennent\n" +" --dereference affecter le référent de chaque lien symbolique,\n" +" plutôt que le lien symbolique lui-même\n" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" +" --from=PROPRIÉTAIRE_COURANT:GROUPE_COURANT\n" +" changer le propriétaire et/ou le groupe de " +"chaque fichier\n" +" seulement s'il y a concordance avec le " +"propriétaire\n" +" et/ou groupe courant spécifié. Les deux peuvent " +"être\n" +" omis, auquel cas la concordance n'est pas " +"requise pour\n" +" l'argument non spécifié.\n" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet supprimer la plupart des messages d'erreur\n" +" --reference=FICHIER utiliser l'appartenance du propriétaire et du\n" +" groupe du FICHIER de référence au lieu\n" +" de valeurs explicites PROPRIÉTAIRE:GROUPE\n" +" -R, --recursive modifier récursivement fichiers et répertoires\n" +" -v, --verbose indiquer ce qui a été fait\n" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" +"\n" +"Le propriétaire n'est pas modifié si manquant. Le groupe n'est pas modifié " +"si manquant,\n" +"mais modifié au groupe de login implicite si « : » est spécifié.\n" +"Le propriétaire et le groupe peuvent être numérique ou symbolique.\n" + +#: src/chroot.c:45 +#, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"Usage: %s RACINE [COMMANDE...\n" +" or: %s OPTION\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" +"Exécuter la COMMANDE avec le répertoire root initialisé à NOUVEAU-ROOT.\n" +"\n" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" +"\n" +"Si aucune commande n'est fournie, exécuter ``${SHELL} -i'' (par défaut: /bin/" +"sh).\n" + +#: src/chroot.c:84 +#, c-format +msgid "cannot change root directory to %s" +msgstr "ne changer le répertoire racine vers %s" + +#: src/chroot.c:87 +msgid "cannot chdir to root directory" +msgstr "ne peut aller vers le répertoire root" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "%s: fichier trop long" + +#: src/cksum.c:282 +#, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"Usage: %s [FICHIER]...\n" +" or: %s [OPTION]\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" +"Afficher la somme de contrôle CRC et le décompte d'octets de chaque " +"FICHIER.\n" +"\n" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "Richard Stallman et David MacKenzie" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "Usage: %s [OPTION]... FICHIER_GAUCHE FICHIER_DROIT\n" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" +"Comparer les fichiers triés GAUCHE et DROITE ligne par ligne.\n" +"\n" +" -1 supprimer les lignes uniques du fichier de gauche\n" +" -2 supprimer les lignes uniques du fichier de droite\n" +" -3 supprimer les lignes uniques des 2 fichiers\n" + +#: src/copy.c:162 src/du.c:332 +#, c-format +msgid "cannot access %s" +msgstr "ne peut accéder %s" + +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "Ne peut ouvrir %s en lecture" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, c-format +msgid "cannot fstat %s" +msgstr "ne peut évaluer par fstat() %s" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "escamotage du fichier %s, parce qu %s" +msgstr "ne peut déplacer le répertoire dans un non-répertoire: %s -> %s" + +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "L'archivage de %s pourrait détruire la source: %s n'a pas été déplacé." + +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "" +"L'archivage de %s pourrait détruire le fichier SOURCE:\n" +"%s n'a pas été copié." + +#: src/copy.c:1013 src/ln.c:273 +#, c-format +msgid "cannot backup %s" +msgstr "ne peut archiver %s" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr " (archiver: %s)" + +#: src/copy.c:1099 +#, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "ne peut copier un répertoire %s dans lui-même %s" + +#: src/copy.c:1106 +#, c-format +msgid "will not create hard link %s to directory %s" +msgstr "ne peut créer un lien direct %s vers le répertoire %s" + +#: src/copy.c:1132 +#, c-format +msgid "cannot create hard link %s to %s" +msgstr "ne peut créer un lien direct %s vers %s" + +#: src/copy.c:1186 +#, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "ne peut déplacer %s vers un sous-répertoire de lui-même %s" + +#: src/copy.c:1229 +#, c-format +msgid "cannot move %s to %s" +msgstr "ne peut déplacer %s vers %s" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "" +"échec de déplacement inter-périphérique: %s vers %s; incapable de détruire " +"la cible" + +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "ne peut copier des liens symboliques cycliques %s." + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "" +"%s: peut créer des liens symboliques relatifs\n" +"seulement que dans le répertoire courant." + +#: src/copy.c:1353 +#, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "ne peut créer un lien symbolique %s vers %s" + +#: src/copy.c:1364 +#, c-format +msgid "cannot create link %s" +msgstr "ne peut créer le lien %s" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, c-format +msgid "cannot create fifo %s" +msgstr "ne peut créer le fifo %s" + +#: src/copy.c:1403 +#, c-format +msgid "cannot create special file %s" +msgstr "ne peut créer le fichier spécial %s" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, c-format +msgid "cannot read symbolic link %s" +msgstr "ne peut lire le lien symbolique %s" + +#: src/copy.c:1440 +#, c-format +msgid "cannot create symbolic link %s" +msgstr "ne peut créer le lien symbolique %s" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, c-format +msgid "failed to preserve ownership for %s" +msgstr "échec de préservation du propriétaire pour %s" + +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "%s possède un type de fichier inconnu." + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "préservation des dates pour %s" + +#: src/copy.c:1531 +#, c-format +msgid "failed to preserve authorship for %s" +msgstr "échec de préservation du propriétaire pour %s" + +#: src/copy.c:1549 +#, c-format +msgid "setting permissions for %s" +msgstr "initialisation des permissions de %s" + +#: src/copy.c:1571 src/ln.c:326 +#, c-format +msgid "cannot un-backup %s" +msgstr "ne peut désarchiver %s" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s -> %s (désarchivage)\n" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "Torbjorn Granlund, David MacKenzie et Jim Meyering" + +#: src/cp.c:164 src/mv.c:311 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"Usage: %s [OPTION]... SOURCE CIBLE\n" +" ou: %s [OPTION]... SOURCE... RÉPERTOIRE\n" +" ou: %s [OPTION]... --target-directory=RÉPERTOIRE SOURCE...\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Copier la SOURCE vers la DESTINATION, ou de multiples SOURCES vers un " +"RÉPERTOIRE.\n" +"\n" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" +"Les arguments obligatoires pour les options de formes longues le sont aussi\n" +"pour les options de formes courtes.\n" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" +" -a, --archive identique à -dpR\n" +" --backup[=CONTRÔLE] archiver chaque fichier de destination\n" +" -b identique à --backup mais sans argument\n" +" --copy-contents copier le contenu des fichier spéciaux en " +"mode récursif\n" +" -d identique à --no-dereference --preserve=link\n" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" +" --no-dereference ne pas suivre les liens symboliques\n" +" -f, --force si un fichier de destination existe et \n" +" ne peut être ouvert alors le détruire et\n" +" essayer à nouveau\n" +" -i, --interactive demander confirmation avant d'écraser\n" +" -H suivre les liens symboliques de la ligne de " +"commande\n" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" +" -l, --link faire des liens sur les fichiers au lieu de " +"les copier\n" +" -L, --dereference toujours suivres les liens symboliques\n" +" -p identique à --preserve=mode,ownership," +"timestamps\n" +" --preserve[=ATTR_LIST] préserver les attributts spécifiques (par " +"défaut:\n" +" mode,ownership,timestamps), et si " +"posssible\n" +" les attributs additionels: links, all\n" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" +" --no-preserve=LISTE_ATTR ne pas préserver les attributs spécifiques\n" +" --parents accoler le chemin source au répertoire\n" +" -P identique à « --no-dereference »\n" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" +" -r, -r, --recursive copier récursivement les répertoires\n" +" --remove-destination enlever chaque fichier de destination " +"existant\n" +" avant de l'ouvrir (par contraste avec --" +"force)\n" + +#: src/cp.c:209 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +" --reply={yes,no,query} spécifier comment traiter les requêtes à " +"propos\n" +" d'un fichier de destination existant\n" +" --sparse=DATE contrôler la DATE de création des fichiers\n" +" dispersés\n" +" --strip-trailing-slashes enlever les « / » en suffixe de chacun\n" +" des arguments SOURCE\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" +" -s, --symbolic-link créer des liens symboliques au lieu de copier\n" +" -S, --suffix=SUFFIXE écraser le suffixe usuel d'archivage\n" +" par le SUFFIXE\n" +" --target-directory=RÉPERTOIRE\n" +" déplacer tous les fichiers SOURCE en arguments\n" +" vers le RÉPERTOIRE\n" + +#: src/cp.c:221 +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +" -u, --update déplacer seulement les vieux ou\n" +" les tout nouveaux fichiers\n" +" -v, --verbose expliquer ce qui a été fait\n" +" -x, --one-file-system demeurer sur ce système de fichiers\n" + +#: src/cp.c:230 +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +"\n" +"Par défaut, les fichiers SOURCES dispersés sont détectés par le biais\n" +"d'une heuristique grossière et le fichier CIBLE correspondant est aussi\n" +"construit de façon dispersé. Il s'agit d'un comportement sélectionné\n" +"par l'option --sparse=auto. Spécifiez --sparse=always pour créer un " +"fichier\n" +"CIBLE dispersé lorsque le fichier SOURCE contient de longues séquences de\n" +"d'octets de valeur zéro.\n" +"Utilisez --sparse=never pour inhiber la création de fichiers dispersés.\n" +"\n" + +#: src/cp.c:239 +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"Le suffixe d'archive est « ~ », initialisé autrement avec --suffix ou\n" +"SIMPLE_BACKUP_SUFFIX. La méthode du contrôle de version peut être " +"sélectionné\n" +"par l'option --backup ou par VERSION_CONTROL par le bias des variables\n" +"d'environnement selon les valeurs suivantes:\n" +"\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +" none, off ne jamais archiver (même si --backup est utilisé)\n" +" numbered, t faire des archives numérotées\n" +" existing, nil numéroter si des archives numérotées existent déjà,\n" +" ne pas numéroter autrement\n" +" simple, never toujours faire des archives de type simple\n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +"Un cas spécial où « cp » archive la SOURCE lorsque les options « force » et\n" +"« backup » sont utilisées et que la SOURCE et la DESTINATION portent le\n" +"même nom qu'un fichier régulier existant.\n" + +#: src/cp.c:325 +#, c-format +msgid "failed to preserve times for %s" +msgstr "échec de préservation des dates pour %s" + +#: src/cp.c:349 +#, c-format +msgid "failed to preserve permissions for %s" +msgstr "échec de préservation des permissions de %s" + +#: src/cp.c:434 +#, c-format +msgid "cannot make directory %s" +msgstr "ne peut créer le répertoire %s" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +msgid "missing file argument" +msgstr "argument fichier manquant" + +#: src/cp.c:498 +msgid "missing destination file" +msgstr "fichier cible manquant" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "accès de %s" + +#: src/cp.c:546 +#, c-format +msgid "%s: specified target is not a directory" +msgstr "%s: cible spécifiée mais n'est pas un répertoire" + +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "" +"Lors de la copie de plusieurs fichiers:\n" +"le dernier argument %s n'est pas un répertoire." + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "" +"Lors de la préservation des chemins: \n" +"la destination doit être un répertoire." + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"AVERTISSEMENT: --version-control (-V) est obsolète; son soutien\n" +"sera retiré dans une prochaine version. Utiliser --backup=%s à la place." + +#: src/cp.c:972 src/ln.c:464 +msgid "symbolic links are not supported on this system" +msgstr "les liens symboliques ne sont supportés sur ce système" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "Ne peut créer à la fois un lien symbolique et direct." + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "type d'archive" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "Stuart Kemp et David MacKenzie" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "Erreur de lecture." + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "L'entrée est disparue." + +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s: numéro de ligne hors plage." + +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: « %s »: numéro de ligne hors plage." + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr " par répétition %d\n" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s: « %s »: concordance non trouvée." + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "Erreur dans l'expression régulière recherchée." + +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "Erreur d'écriture sur « %s »" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "%s: « + » ou « - » attendu après le délimiteur." + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s: entier attendu après « %c »" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "%s: « } » est requis pour un compteur de répétition." + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "%s}: entier requis entre « { » et « } »" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s: délimiteur de fermeture « %c » manquant." + +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: expression régulière invalide: %s" + +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "%s: patron invalide." + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s: le numéro de ligne doit être plus grand que zéro." + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "le numéro de ligne « %s » est plus petit que le numéro précédent %s" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "AVERTISSEMENT: le numéro de ligne « %s » est le même que le précédent." + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "Symbole de conversion manquant dans le suffixe." + +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "Le symbole de conversion %c est invalide dans le suffixe." + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "Le symbole de conversion \\%.3o est invalide dans le suffixe." + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "La spéfication de conversion %% est manquante dans le suffixe." + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "Trop de spécifications %% de conversion dans le suffixe." + +#: src/csplit.c:1441 +#, c-format +msgid "%s: invalid number" +msgstr "%s: nombre invalide." + +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "Usage: %s [OPTION]... FICHIER PATRON...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" +"Produire des morceaux de FICHIER séparées par PATRON(s) vers les fichiers\n" +"« xx01 », « xx02 », ... et le nombre d'octets de chaque morceau sur la " +"sortie standard.\n" +"\n" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" +" -b, --suffix-format=FORMAT utiliser sprintf FORMAT au lieu de %d\n" +" -f, --prefix=PRÉFIXE utiliser le PRÉFIXE au lieu de « xx »\n" +" -k, --keep-files ne pas détruire les fichiers \n" +" lorsqu'il y a erreur\n" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" +" -n, --digits=NOMBRE utiliser NOMBRE de chiffres au lieu de 2\n" +" -s, --quiet, --silent ne pas afficher la taille des fichiers\n" +" de sortie\n" +" -z, --elide-empty-files détruire les fichiers de sortie vides\n" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" +"\n" +"Lire de l'entrée standard si le FICHIER est -. Chaque PATRON peut être:\n" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" +"\n" +" ENTIER copier jusqu'à mais sans inclure le nombre spécifiée\n" +" de lignes\n" +" /REGEXP/[SAUT] copier jusqu'à la détection d'une ligne identique\n" +" mais sans l'inclure\n" +" %%REGEXP%%[SAUT] escamoter jusqu'à, mais sans inclure une\n" +" ligne identique\n" +" {ENTIER} répéter le patron précédent un nombre de fois\n" +" {*} répéter le patron précédent le plus souvent possible\n" +"\n" +"Une ligne de SAUT a besoin d'un « + » ou « - » suivi d'un entier positif.\n" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie et Jim Meyering" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "Usage: %s [OPTION]... [FICHIER]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" +"Afficher des parties de lignes de chaque FICHIER vers la sortie standard.\n" +"\n" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" +" -b, --bytes=LISTE afficher seulement la LISTE des octets\n" +" -c, --characters=LISTE afficher seulement la LISTE des caractères\n" +" -d, --delimiter=DÉLIM utiliser le DÉLIMiteur au lieu d'une tabulation\n" +" comme délimiteur de champs\n" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" +" -f, --fields=LISTE afficher seulement la LISTE des champs; afficher " +"aussi\n" +" les lignes qui ne contiennent pas de caractère " +"délimiteur,\n" +" à moins que l'option -s soit spécifiée\n" +" -n (ignoré)\n" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" +" -s, --only-delimited ne pas afficher les lignes ne\n" +" contenant pas de délimiteurs\n" +" --output-delimiter=CHAÎNE\n" +" utiliser la CHAÎNE comme délimiteur de sortie\n" +" par défaut le délimiteur de l'entrée est utilisée\n" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"Utiliser une seule des options -b, -c ou -f. Chaque LISTE se compose d'une\n" +"intervalle, ou de plusieurs séparées par des virgules. Chaque intervalle\n" +"se compose de:\n" +"\n" +" N Nième octet, caractère ou champ, compté à partir de 1\n" +" N- du Nième octet, caractère ou champ, jusqu'à la fin de la ligne\n" +" N-M du Nième au Mième (inclus) octet, caractère ou champ\n" +" -M du premier au Mième (inclus) octet, caractère ou champ\n" +"\n" +"Sans FICHIER, ou quand le FICHIER est -, lire de l'entrée standard.\n" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "Octet ou champ de liste invalide." + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "Un seul type de liste peut être spécifié." + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "Liste des positions manquante." + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "Liste des champs manquante." + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "Le délimiteur doit être un caractère simple." + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "Une liste d'octets, de caractères, ou de champs doit être spécifiée." + +#: src/cut.c:720 +msgid "an input delimiter may be specified only when operating on fields" +msgstr "" +"un délimiteur peut être spécifié seulement lorsqu'opérant sur des champs" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" +"La suppression des lignes non-délimitées est permise\n" +"\tseulement lorsqu'opérant sur des champs." + +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMJJhhmm[[CC]AA][.ss]]\n" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" +"Afficher la date courante selon le FORMAT spécifié, ou\n" +"initialiser la date du système.\n" +"\n" +" -d, --date=CHAÎNE afficher la date selon la description donnée par " +"la CHAÎNE,\n" +" excluant le mot réservé « now »\n" +" -f, --file=FICHIER identique à --date pour chaque ligne du\n" +" FICHIER de dates\n" +" -ITIMESPEC, --iso-8601[=SPECS-TEMPS]\n" +" produire un format de sortie date/heure selon la " +"norme ISO-8601\n" +" SPECS-TEMPS=« date » pour la date seulement,\n" +" « hours », « minutes » ou « seconds » pour la " +"date et l'heure\n" +" à la précision voulue\n" +" --iso-8601 sans TIMESPEC par défaut utilise « " +"date ».\n" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" +" -r, --reference=FICHIER utiliser la date de modification du FICHIER\n" +" comme date de référence\n" +" -R, --rfc-822 afficher la date selon le format respectant\n" +" les spécifications du RFC-822\n" +" -s, --set=FORMAT initialiser la date selon le FORMAT décrit\n" +" -u, --utc, --universal afficher ou initialiser selon le système de\n" +" temps universel (T.U.)\n" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" +"\n" +"FORMAT contrôle l'affichage. Seule l'option valide de la seconde forme\n" +"s'applique au système de temps UCT. Les séquences interprétées sont:\n" +"\n" +" %% le caractère %\n" +" %a les noms abrégés localisés des jours de la semaine (Dim..Sam)\n" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" +" %A les noms complets localisés des jours de la semaine\n" +" de longueurs variables (Dimanche..Samedi)\n" +" %b les noms abrégés localisés des mois (Jan..Déc)\n" +" %B les noms complets localisés des mois de longueurs variables\n" +" (Janvier..Décembre)\n" +" %c la date et l'heure localisées (Sam 04 Nov 12:02:33 EDT 1989)\n" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" +" %C le siècle (année divisée par 100 et tronquée en un entier) [00-99]\n" +" %d jour du mois (01..31)\n" +" %D date (mm/jj/aa)\n" +" %e jour du mois, précédé d'un blanc ( 1..31)\n" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" +" %F identique à %Y-%m-%d\n" +" %g l'année sur 2 chiffres correspondant à au numéro de semaine %V\n" +" %G l'année sur 4 chiffres correspondant à au numéro de semaine %V\n" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" +" %h identique à %%b\n" +" %H heure (00..23)\n" +" %I heure (01..12)\n" +" %j jour numérique de l'année (001..366)\n" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" +" %k heure ( 0..23)\n" +" %l heure ( 1..12)\n" +" %m mois (01..12)\n" +" %M minute (00..59)\n" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" +" %n un saut de ligne\n" +" %N nanosecondes (000000000..999999999)\n" +" %p indicateur localisé AM ou PM en majuscules (blanc dans plusieurs " +"localisations)\n" +" %P indicateur localisé am ou pm en minuscules (blanc dans plusieurs " +"localisations)\n" +" %r heure en format 12-heure (hh:mm:ss [AP]M)\n" +" %r heure en format 24-heure (hh:mm)\n" +" %s secondes depuis « 00:00:00, 1970-01-01 UTC » (une extension de GNU)\n" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" +" %S secondes (00..60); le 60 est nécessaire pour accomoder la sec. " +"bissextile\n" +" %t une tabulation horizontale\n" +" %T heure, 24-heure (hh:mm:ss)\n" +" %u jour de la semaine (1..7); 1 représente Lundi\n" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" +" %U numéro de la semaine dans l'année débutant par Dimanche\n" +" comme premier jour de la semaine (00..53)\n" +" %V numéro de la semaine dans l'année débutant par Lundi\n" +" comme premier jour de la semaine (01..52)\n" +" %w jour de la semaine (0..6); 0 représente Dimanche\n" +" %W numéro de la samaine dans l'année débutant par Lundi\n" +" comme premier jour de la semaine (00..53)\n" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" +" %x représentation localisée de la date (mm/jj/aa)\n" +" %X représentation localisée de l'heure (%%H:%%M:%%S)\n" +" %y les deux derniers chiffres de l'année (00..99)\n" +" %Y année (1970...)\n" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" +" %z fuseau horaire en format numérique selon le RFC-822 (-0500)\n" +" (une extension non-standard)\n" +" %Z fuseau horaire (i.e. EDT), nul si aucun fuseau horaire\n" +" ne peut être déterminé\n" +"\n" +"Par défaut, les champs numériques de date sont complétés par des zéros.\n" +"GNU reconnaît les modificateurs suivants entre « % » et une directive " +"numérique.\n" +"\n" +" « - » (tiret) ne pas compléter le champ\n" +" « _ » (souligné) compléter le champ par des blancs\n" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "entrée standard" + +#: src/date.c:268 src/date.c:460 +#, c-format +msgid "invalid date `%s'" +msgstr "date invalide « %s »" + +#: src/date.c:364 +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "" +"les options pour spécifier les dates pour l'impression sont mutuellement " +"exclusives" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "" +"Les options pour afficher et initialiser la date ne peuvent être\n" +"utilisées ensembles." + +#: src/date.c:377 +#, c-format +msgid "too many non-option arguments: %s%s" +msgstr "trop d'arguments sont des options non reconnues: %s%s" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" +"l'argument « %s » n'est pas précédé du préfixe « + »;\n" +"lors de l'utilisation d'une option pour spécifier la date,\n" +"chaque argument qui n'est pas une option reconnue doit être\n" +"une chaîne dont le format débute par « + »." + +#: src/date.c:397 +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "" +"une chaîne de format ne peut être spécifié lorsque l'option --rfc-822 (-R) " +"est utilisée" + +#: src/date.c:433 +msgid "undefined" +msgstr "Indéfini" + +#: src/date.c:435 +msgid "cannot get time of day" +msgstr "ne peut obtenir la date du jour" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "ne peut initialiser la date." + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "Paul Rubin, David MacKenzie et Stuart Kemp" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "Usage: %s [OPTION]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" +"Copier un fichier, en le convertissant et le formatant selon les options:\n" +"\n" +" bs=N forcer ibs=N octets et obs=N octets\n" +" cbs=N convertir N octets à la fois\n" +" conv=CLÉS convertir le fichier selon les mots CLÉS d'une liste\n" +" séparés par une virgule\n" +" count=N copier seulement N blocs à partir de l'entrée\n" +" ibs=N lire N octets à la fois\n" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" +" if=FICHIER lire à partir du FICHIER au lieu de l'entrée standard\n" +" obs=N écrire N octets à la fois\n" +" of=FICHIER écrire dans le FICHIER au lieu de la sortie standard\n" +" seek=N escamoter N blocs de taille « obs » du fichier de sortie\n" +" skip=N escamoter N blocs de taille « ibs » du fichier d'entrée\n" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" +"\n" +"N peut être suivi d'un suffixe multiplicatif suivant:,\n" +"xM M, c 1, w 2, b 512, kD 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GD 1,000,000,000, G 1,073,741,824, et ainsi de suite pour T, P, E, Z, Y.\n" +"Chaque mot CLÉ peut être:\n" +"\n" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" +" ascii de l'EBCDIC vers l'ASCII\n" +" ebcdic de l'ASCII vers l'EBCDIC\n" +" ibm de l'ASCII vers l'EBCDIC en utilisant une table différente\n" +" block remplir les enregistrements terminés par un saut de ligne\n" +" par des blancs jusqu'à l'obtention de la taille « cbs »\n" +" unblock remplacer les blancs de la fin des enregistrements\n" +" de taille « cbs » par des sauts de ligne\n" +" lcase changer les majuscules en minuscules\n" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" +" notrunc ne pas tronquer le fichier de sortie\n" +" ucase changer les minuscules en majuscules\n" +" swab interchanger chaque paire d'octets\n" +" noerror continuer même après des erreurs de lecture\n" +" sync remplir chaque bloc lu par des nuls jusqu'à concurrence\n" +" de la taille « ibs »\n" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "%s+%s enregistrements lus.\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "%s+%s enregistrements écrits.\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "enregistrement tronqué." + +#: src/dd.c:372 +msgid "truncated records" +msgstr "enregistrements tronqués." + +#: src/dd.c:382 +#, c-format +msgid "closing input file %s" +msgstr "fermeture du fichier d'entrée %s" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "fermeture du fichier de sortie %s" + +#: src/dd.c:469 +#, c-format +msgid "writing to %s" +msgstr "écriture vers %s" + +#: src/dd.c:501 +#, c-format +msgid "invalid conversion: %s" +msgstr "conversion invalide: %s" + +#: src/dd.c:557 +#, c-format +msgid "unrecognized option %s" +msgstr "option non reconnue %s" + +#: src/dd.c:610 +#, c-format +msgid "unrecognized option %s=%s" +msgstr "option non reconnue %s=%s" + +#: src/dd.c:616 +#, c-format +msgid "invalid number %s" +msgstr "nombre invalide %s" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"Un seul type de conversion est autorisé parmi {ascii,ebcdic,ibm},\n" +"{lcase,ucase}, {block,unblock}, {unblock,sync}" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" +"AVERTISSEMENT: arrangement pour contourner bug de lseek dans le kernel \n" +"pour le fichier (%s)\n" +"de type mt_type=0x%0lx -- voir pour la liste des types" + +#: src/dd.c:1170 src/dd.c:1188 +#, c-format +msgid "opening %s" +msgstr "ouverture de %s" + +#: src/dd.c:1196 +msgid "file offset out of range" +msgstr "décalage dans le fichier est hors gamme" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "a dépassé de %s octets dans le fichier de sortie %s" + +#: src/df.c:49 +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "Torbjorn Granlund, David MacKenzie, Larry McVoy et Paul Eggert" + +#: src/df.c:153 +msgid "Filesystem Type" +msgstr "Sys. de fich. Type " + +#: src/df.c:155 +msgid "Filesystem " +msgstr "Sys. de fich. " + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr " Inodes IUtil. ILib. %%IUti." + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Tail. Occ. Disp. %%Occ." + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Tail. Occ. Disp. %%Occ." + +#: src/df.c:167 +#, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr " %4s-blocs Occupé Disponible Capacité" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr " %4s-blocs Occupé Disponible Capacité" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr " Monté sur\n" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" +"Afficher les informations à propos du système de fichiers sur lequel\n" +"réside chaque FICHIER ou de tous les systèmes de fichiers par défaut.\n" +"\n" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" +" -a, --all inclure les systèmes de fichiers ayant 0 bloc\n" +" -B, --block-size=TAILLE utiliser la TAILLE de blocs\n" +" -h, --human-readable afficher les tailles dans un format lisible par\n" +" un humain (i.e. 1K 234M 2G)\n" +" -H, --si idem mais utiliser un multiple de 1000\n" +" au lieu de 1024\n" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" +" -i, --inodes lister les informations sur les « inodes »\n" +" plutôt que sur l'utilisation des blocs\n" +" -k identique à --block-size=1K\n" +" -l, --local limiter le listing au système local de fichiers\n" +" --no-sync ne pas effectuer une synchronisation avant\n" +" d'obtenir les informations d'utilisation\n" +" des disques (par défaut)\n" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" +" -P, --portability utiliser le format de sortie POSIX\n" +" --sync demander une synchronisation avant d'obtenir les\n" +" informations d'utilisation des disques\n" +" (par défaut)\n" +" -t, --type=TYPE limiter l'affichage au TYPE de système de\n" +" fichiers\n" +" -T, --print-type afficher le type du système de fichiers\n" +" -x, --exclude-type=TYPE limiter l'affichage en excluant le TYPE\n" +" de système de fichiers\n" +" -v (ignorée)\n" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" +"\n" +"TAILLE peut être (ou peut être un entier suivi par) un de ceux qui suivent:\n" +"kB 1000, K 1024, MB 1000*1000, M 1024*1024, et ainsi de suite pour G, T, P, " +"E, Z, Y.\n" +"\n" + +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "Le système de fichiers %s est à la fois sélectionné et exclu." + +#: src/df.c:903 +msgid "Warning: " +msgstr "AVERTISSEMENT: " + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "La table du système de fichiers %s ne peut être lue." + +#: src/dircolors.c:103 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "Usage: %s [OPTION]... [FICHIER]\n" + +#: src/dircolors.c:104 +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"Commande d'affichage pour initialiser la variable d'environnement LS_COLOR.\n" +"\n" +"Déterminer le format de sortie:\n" +" -b, --sh, --bourne-shell code de sortie pour un Bourne shell\n" +" initialiser la variable LS_COLORS\n" +" -c, --csh, --c-shell code de sortie pour un C shell pour\n" +" initialiser la variable LS_COLORS\n" +" -p, --print-data-base utiliser les valeurs par défaut de sortie\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" +"\n" +"Si le FICHIER est fourni, le lire pour déterminer les couleurs à utiliser\n" +"pour les types de fichiers et les extensions. Autrement, utiliser la base de " +"données\n" +"précompilés. Pour le détail du format de ces fichiers, exécuter «dircolors --" +"print-database'.\n" + +#: src/dircolors.c:299 +#, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s:%lu: ligne invalide; second jeton manquant" + +#: src/dircolors.c:371 +#, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s:%lu: mot clé non reconnu %s" + +#: src/dircolors.c:372 +msgid "" +msgstr "" + +#: src/dircolors.c:467 +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" +"les options pour la base de données interne de sortie de dircolors et\n" +"la sélection de la syntaxe du shell sont mutuellement exclusives" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" +"Aucun argument de FICHIER ne peut être utilisé avec l'option\n" +"pour afficher la base de données interne « dircolors »." + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "Aucune variable de shell et aucune option de mode spécifiée." + +#: src/dirname.c:33 src/pathchk.c:59 +msgid "David MacKenzie and Jim Meyering" +msgstr "David MacKenzie et Jim Meyering" + +#: src/dirname.c:46 +#, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"Usage: %s NOM\n" +" or: %s OPTION\n" + +#: src/dirname.c:51 +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" +"Afficher le NOM du répertoire en enlevant ses composantes de fin;\n" +"si le NOM ne contient pas de « / »\n" +"le symbole « . » indique le répertoire courant.\n" +"\n" + +#: src/du.c:49 +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert et Jim Meyering" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" +"Produire un sommaire de l'utilisation de l'espace disque de chaque FICHIER,\n" +"et récursivement dans tous les répertoires.\n" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" +" -a, --all afficher le décompte pour tous les fichiers,\n" +" pas seulement pour les répertoires\n" +" --apparent-size afficher les tailles apparentes, au lieu de " +"l'usage du disque; \n" +" même si la taille apparente est habituellement " +"plus petite, elle peut être\n" +" plus grande en raison de trous dans (`sparse') " +"les fichiers, \n" +" de la fragmentation, de blocs indirects ou autre " +"raisons similaires\n" +" -B, --block-size=TAILLE utiliser la TAILLE en octets des blocs\n" +" -b, --bytes afficher la taille en octets\n" +" -c, --total produire le grand total\n" +" -D, --dereference-args ne pas tenir compte des CHEMINS lorsqu'il y a\n" +" des liens symboliques\n" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" +" -h, --human-readable afficher les tailles dans un format lisible par\n" +" un humain (i.e. 1K 234M 2G)\n" +" -H, --si idem mais utiliser un multiple de 1000\n" +" au lieu de 1024\n" +" -k, identique à --block-size=1K\n" +" -l, --count-links dénombrer les tailles aussi souvent qu'il y a\n" +" de liens directs\n" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" +" -L, --dereference ne pas tenir compte de tous les liens\n" +" symboliques\n" +" -S, --separate-dirs ne pas inclure la taille des sous-répertoires\n" +" -s, --summarize afficher seulement un total pour chaque type\n" +" d'argument\n" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" +" -x, --one-file-system escamoter les répertoires de différents\n" +" systèmes de fichiers\n" +" -X FICHIER, \n" +" --exclude-from=FICHIER\n" +" exclure les fichiers qui concordent avec\n" +" le nom du FICHIER\n" +" --exclude=EXPRES exclure les fichier qui concordent avec\n" +" l'expression\n" +" --max-depth=N afficher le total pour un répertoire (ou un\n" +" fichier, avec l'option --all) seulement\n" +" si N a moins de niveaux dans la ligne de " +"commande;\n" +" --max-depth=0 est identique à --summurize\n" +" systèmes de fichiers\n" + +#: src/du.c:337 +#, c-format +msgid "cannot change to parent of directory %s" +msgstr "ne peut aller vers le répertoire parent de %s" + +#: src/du.c:345 +#, c-format +msgid "cannot change to directory %s" +msgstr "ne peut aller vers le répertoire %s" + +#: src/du.c:352 +#, c-format +msgid "cannot read directory %s" +msgstr "ne peut lire le répertoire %s" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "total" + +#: src/du.c:641 +#, c-format +msgid "invalid maximum depth %s" +msgstr "profondeur maximum invalide %s" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "Ne peut afficher à la fois un résumé et toutes les entrées." + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "" +"AVERTISSEMENT: le résumé est identique si l'option --max-dept=0 est utilisée" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "" +"AVERTISSEMENT: conflit de l''option -s pour le résumé avec --max-depth=%d" + +#: src/echo.c:77 +#, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "Usage: %s [OPTION]... [CHAÎNE]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" +"Faire l'écho de CHAÎNE(S) vers la sortie standard.\n" +"\n" +" -n ne pas afficher le saut de ligne de fin\n" +" -e (inutilisée)\n" +" -E inhiber l'interpolation de certaines séquences de la " +"CHAÎNE\n" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" +"\n" +"Sans -E, les séquences suivantes sont reconnues et interpolées:\n" +"\n" +" \\NNN le caractère dont le code ASCII est NNN (en octal)\n" +" \\\\ barre oblique inverse\n" +" \\a bip sonore d'alerte\n" +" \\b retour arrière\n" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\c supprimer le saut de ligne de fin\n" +" \\f saut de page\n" +" \\n saut de ligne\n" +" \\r retour de chariot\n" +" \\t tabulation horizontale\n" +" \\v tabulation verticale\n" + +#: src/env.c:93 +msgid "Richard Mlynarik and David MacKenzie" +msgstr "Richard Mlynarik et David MacKenzie" + +#: src/env.c:119 +#, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "Usage: %s [OPTION]... [-] [NOM=VALEUR]... [COMMANDE] [ARG]...\n" + +#: src/env.c:122 +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" +"Initialiser chaque VARIABLE à la VALEUR dans l'environnement\n" +"et exécuter la COMMANDE.\n" +"\n" +" -i, --ignore-environment débuter avec un environnement vide\n" +" -u, --unset=VARIABLE retirer la VARIABLE de l'environment\n" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" +"\n" +"Un simple - implique -i. Si aucune COMMANDE n'est fournie,\n" +"afficher les variables d'environnement.\n" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Convertir les tabulations de chaque FICHIER par des blancs d'espacement,\n" +"en écrivant sur la sortie standard.\n" +"Sans FICHIER, ou quand le FICHIER est -, lire de l'entrée standard.\n" +"\n" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" +" -i, --initial ne pas convertir les tabulations après des non blancs\n" +" -t, --tabs=N utiliser N caractères de tabulations, et non 8\n" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" +" -t, --tabs=LISTE utiliser la LISTE explicite de positions\n" +" de tabulation\n" +" séparées par des virgules\n" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "La taille de la tabulation contient un caractère invalide." + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "La taille de la tabulation ne peut être 0." + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "Les tailles de tabulation doivent être croissantes." + +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "option « -LIST » est obsolète; utiliser « -t LIST »" + +#: src/expr.c:90 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" +"\n" +"Afficher la valeur de l'EXPRESSION sur la sortie standard. Une ligne " +"blanche\n" +"sépare la précédence croissante des groupes. L'EXPRESSION peut être:\n" +"\n" +" ARG1 | ARG2 ARG1 s'il est nul ou 0, autrement ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 si aucun des arguments est nul ou 0, autrement " +"0\n" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" +"\n" +" ARG1 < ARG2 ARG1 si plus petit que ARG2\n" +" ARG1 <= ARG2 ARG1 si plus petit ou égal à ARG2\n" +" ARG1 = ARG2 ARG1 si égal à ARG2\n" +" ARG1 != ARG2 ARG1 n'est pas égal à ARG2\n" +" ARG1 >= ARG2 ARG1 si plus grand ou égal à ARG2\n" +" ARG1 > ARG2 ARG1 si plus grand que ARG2\n" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" +"\n" +" ARG1 + ARG2 somme arithmétique de ARG1 et ARG2\n" +" ARG1 - ARG2 différence arithmétique de ARG1 et ARG2\n" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" +"\n" +" ARG1 * ARG2 produit arithmétique de ARG1 et ARG2\n" +" ARG1 / ARG2 quotient arithmétique de ARG1 divisé par ARG2\n" +" ARG1 % ARG2 reste arithmétique ARG1 divisé par ARG2\n" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" +"\n" +" CHAÎNE: EXPREG patron d'ancrage de concordance de l'EXPREG dans la " +"CHAÎNE\n" +"\n" +" match CHAÎNE EXPREG identique à CHAÎNE: EXPREG\n" +" substr CHAÎNE POS LONG sous-chaîne de CHAÎNE débutant à la POSition\n" +" (comptée à partir de 1) et ayant une LONGueur\n" +" index CHAÎNE CAR valeur de la position du CARactère retrouvé\n" +" dans la CHAÎNE, sinon 0\n" +" length CHAÎNE longueur de la CHAÎNE\n" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" +" + JETON interpréter le JETON comme une chaîne, même si " +"c'est\n" +" un mot clé comme « match » ou un opérateur comme " +"« / »\n" +"\n" +" ( EXPRESSION ) valeur de l'EXPRESSION\n" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" +"\n" +"Portez attention au fait que plusieurs opérateurs peuvent être escamotés\n" +"ou commentés par certains shells.\n" +"Les comparaisons sont arithmétiques si les deux ARGuments sont des nombres,\n" +"autrement elles sont lexicographiques.\n" +"Les concordances de patrons retournent la chaîne retrouvée si elle est\n" +"encapsulée entre \\( et \\) ou nul; si \\( et \\) ne sont pas utilisés,\n" +"le nombre de caractères qui concordent est retourné sinon 0.\n" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +msgid "syntax error" +msgstr "erreur de syntaxe" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" +"AVERTISSEMENT: BRE non portable: « %s »: l'utilisation de « ^ » comme " +"premier\n" +"caractère d'une expression régulière de base n'est pas portable; ignoré." + +#: src/expr.c:586 src/expr.c:625 +msgid "non-numeric argument" +msgstr "argument non numérique" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "division par zéro" + +#: src/factor.c:74 +#, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"Usage: %s [NOMBRE]...\n" +" or: %s OPTION\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" +"Afficher les facteurs premiers de chaque NOMBRE.\n" +"\n" + +#: src/factor.c:85 +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" +"\n" +"Afficher les facteurs premiers d'un NOMBRE entier spécifique.\n" +"Si aucun argument n'est fourni, les nombres sont lus de l'entrée standard.\n" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "« %s » n'est pas un entier positif valide." + +#: src/false.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Usage: %s [arguments ignorés de la ligne de commande]\n" +" ou: %s OPTION\n" +"Terminer avec un statut indiquant l'échec.\n" +"\n" +"Ces options ne peuvent pas être abrégées.\n" +"\n" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "Usage: %s [-CHIFFRES] [OPTION]... [FICHIER]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" +"Reformater chaque paragraphe de FICHIER(s), en écrivant sur la\n" +"sortie standard.\n" +"Si aucun FICHIER ou si FICHIER est « - », lire de l'entrée standard.\n" +"\n" + +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" +" -c, --crown-margin préserver l'indentation des 2 premières lignes\n" +" -p, --prefix=CHAÎNE combiner les lignes ayant CHAÎNE comme préfixe\n" +" -s, --split-only briser les longues lignes mais sans les remplir\n" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" +" -t, --tagged-paragraph indenter différemment la 1ère ligne de la 2ème\n" +" -u, --uniform-spacing séparer d'un blanc les mots,\n" +" puis de deux après chaque phrase\n" +" -w, --width=N utiliser une largeur de N colonnes pour une\n" +" pour une ligne (par défaut 75 colonnes)\n" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" +"\n" +"Pour -wNOMBRE, l'option « w » peut être omise.\n" + +#: src/fmt.c:345 +#, c-format +msgid "invalid width option: `%s'" +msgstr "L'option largeur est invalide: « %s »." + +#: src/fmt.c:385 +#, c-format +msgid "invalid width: `%s'" +msgstr "Largeur invalide: « %s »" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" +"Limiter la longueur de chaque ligne de chaque FICHIER (entrée standard par\n" +"défaut) et forcer le bouclage en écrivant sur la sortie standard.\n" +"\n" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" +" -b, --bytes compter les octets au lieu des colonnes\n" +" -s, --spaces briser la ligne sur des blancs\n" +" -w, --width=N utiliser N colonnes au lieu de 80\n" + +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "option « %s » est obsolète; utiliser « %s »" + +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "Le nombre de colonnes « %s » est invalide." + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Afficher les 10 premières lignes de chaque FICHIER sur la sortie standard.\n" +"Avec plus d'un fichier FICHIER, précéder chacun d'une en-tête donnant le " +"nom.\n" +"Sans FICHIER, ou quand FICHIER est -, lire de l'entrée standard.\n" +"\n" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" +" -c, --bytes=N afficher les N premiers octets\n" +" -n, --lines=N afficher les N premières lignes au lieu de 10\n" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" +" -q, --quiet, --silent ne pas afficher les en-têtes avec les\n" +" noms de fichiers\n" +" -v, --verbose toujours afficher les en-têtes avec les\n" +" noms de fichiers\n" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" +"\n" +"La TAILLE peut être suivie d'un suffixe multiplicateur:\n" +"b pour 512, k pour 1K, m pour 1 Meg.\n" + +#: src/head.c:190 +#, c-format +msgid "cannot reposition file pointer for %s" +msgstr "ne peut repositionner le pointeur de fichier pour %s" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "%s: %s est tellement grande qu'elle n'est pas représentable." + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "Nombre de lignes" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "Nombre d'octets" + +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "nombre invalide de lignes." + +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "nombre d'octets invalide." + +#: src/head.c:341 +#, c-format +msgid "unrecognized option `-%c'" +msgstr "L'option « -%c » n'est pas reconnue." + +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "option « -%s » est obsolète; utiliser « -%c %.*s%.*s%s »" + +#: src/hostid.c:48 +#, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" +"Usage: %s\n" +" ou: %s OPTION\n" +"Afficher l'identificateur numérique (en hexadécimal) de l'hôte courant.\n" +"\n" + +#: src/hostname.c:67 +#, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" +"Usage: %s [NOM]\n" +" ou: %s OPTION\n" +"Afficher le nom du poste (hostname) du système courant.\n" +"\n" + +#: src/hostname.c:104 +#, c-format +msgid "cannot set hostname to `%s'" +msgstr "ne peut sélectionner l'hôte vers « %s »" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "" +"Ne peut nommer le poste (hostname); le système ne supporte pas cette fonction" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "Ne peut déterminer le nom du poste (hostname)" + +#: src/id.c:36 +msgid "Arnold Robbins and David MacKenzie" +msgstr "Arnold Robbins et David MacKenzie" + +#: src/id.c:87 +#, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "Usage: %s [OPTION]... [NOM-D'USAGER]\n" + +#: src/id.c:88 +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" +"Afficher les informations concernant un USAGER, ou de l'usager courant.\n" +"\n" +" -a ignorée, par compatibilité avec les autres version\n" +" -g, --group afficher les IDentificateurs de groupes\n" +" -G, --groups afficher seulement les groupes supplémentaires\n" +" -n, --name afficher le nom au lieu du nombre, avec -ugG\n" +" -r, --real afficher l'IDentificateur réel au lieu de\n" +" l'effectif, avec -ugG\n" +" -u, --user afficher seulement l'IDentificateur de l'usager\n" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" +"\n" +"Sans aucune OPTION, afficher les informations utiles d'identification.\n" + +#: src/id.c:162 +msgid "cannot print only user and only group" +msgstr "ne peut imprimer seulement l'usager et seulement le groupe" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "" +"Ne peut afficher seulement les noms ou les IDentificateurs réels\n" +"dans le format par défaut." + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "%s: usager inexistant." + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "ne peut trouver le nom de l'usager ID %u" + +#: src/id.c:235 +#, c-format +msgid "cannot find name for group ID %u" +msgstr "ne peut trouver le nom de l'identificateur de groupe %u" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "Ne peut trouver la liste de groupes supplémentaires." + +#: src/id.c:385 +msgid " groups=" +msgstr " groupes=" + +#: src/install.c:269 +msgid "the strip option may not be used when installing a directory" +msgstr "" +"les options de strip peuvent ne pas être utilisées lors de l'installation " +"d'un répertoire" + +#: src/install.c:292 src/mkdir.c:140 +#, c-format +msgid "invalid mode %s" +msgstr "mode invalide %s" + +#: src/install.c:307 src/install.c:371 +#, c-format +msgid "creating directory %s" +msgstr "création du répertoire %s" + +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "" +"durant l'installation de plusieurs fichiers,\n" +"le dernier argument %s n'est pas un répertoire." + +#: src/install.c:435 +#, c-format +msgid "%s is a directory" +msgstr "%s est un répertoire" + +#: src/install.c:495 +#, c-format +msgid "cannot obtain time stamps for %s" +msgstr "ne peut obtenir les estampilles de date-heure pour %s" + +#: src/install.c:507 +#, c-format +msgid "cannot set time stamps for %s" +msgstr "ne peut initialiser les estampilles de date-heure pour %s" + +#: src/install.c:528 +msgid "fork system call failed" +msgstr "échec de l'appel système fork()" + +#: src/install.c:532 +msgid "cannot run strip" +msgstr "ne peut exécuter strip" + +#: src/install.c:539 +msgid "strip failed" +msgstr "échec de strip" + +#: src/install.c:560 +#, c-format +msgid "invalid user %s" +msgstr "usager invalide %s" + +#: src/install.c:578 +#, c-format +msgid "invalid group %s" +msgstr "groupe invalide %s" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"Usage: %s [OPTION]... SOURCE DESTINATION (1er format)\n" +" ou: %s [OPTION]... SOURCE... RÉPERTOIRE (2e format)\n" +" ou: %s -d [OPTION]... RÉPERTOIRE... (3e format)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" +"Dans les deux premiers formats, copier la SOURCE vers la DESTINATION ou des\n" +"fichiers de plusieurs SOURCE(S) vers un RÉPERTOIRE existant, tout en " +"initialisant\n" +"les bits de protection et l'appartenance propriétaire/groupe. Dans le\n" +"3e format, créer tous les composants des RÉPERTOIRES spécifiés.\n" +"\n" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" +" --backup[=CONTRÔLE] archiver chaque fichier de destination\n" +" -b identique à --backup mais sans argument\n" +" -c (ignoré)\n" +" -d, --directory traiter tous les arguments comme des noms\n" +" de répertoires; créer toutes les composants\n" +" des répertoires spécifiés\n" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" +" -D créer tous les composants de tête de la\n" +" DESTINATION excepté le dernier\n" +" ensuite copier la SOURCE vers la DESTINATION\n" +" (pratique lorsque le 1er format est utlisé)\n" +" -g, --group=GROUPE attribuer l'appartenance au GROUPE,\n" +" plutôt qu'au groupe courant du processus\n" +" -m, --mode=MODE initialiser les permissions d'accès au MODE\n" +" (comme par chmod), au lieu de rw-r--r--\n" +" -o, --owner=PROPRIÉTAIRE attribuer l'appartenance au PROPRIÉTAIRE\n" +" (mode super-user seulement)\n" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" +" -p, --preserve-timestamps conserver les dates d'accès et de modification\n" +" des fichiers SOURCES aux fichiers de la " +"DESTINATION\n" +" -s, --strip enlever les tables de symboles,\n" +" valable pour les 1er et 2e formats seulement\n" +" -S, --suffix=SUFFIXE écraser le SUFFIXE usuel d'archivage\n" +" -v, --verbose afficher le nom de chaque répertoire créé\n" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"\n" +"Le suffixe d'archive est « ~ », initialisé autrement avec --suffix ou\n" +"SIMPLE_BACKUP_SUFFIX. La méthode du contrôle de version peut être " +"sélectionné\n" +"par l'option --backup ou par VERSION_CONTROL par le bias des variables\n" +"d'environnement selon les valeurs suivantes:\n" +"\n" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "Usage: %s [OPTION]... FICHIER1 FICHIER2\n" + +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" +"Pour chaque paire de lignes en entrée ayant des champs de fusion " +"identiques,\n" +"afficher une ligne sur la sortie standard.\n" +"Le champ de fusion par défaut est le premier, délimité par un blanc.\n" +"Si FICHIER1 ou FICHIER2 (pas les 2) est -, lire de l'entrée standard.\n" +"\n" +" -a COTÉ afficher les lignes non repérables venant du \n" +" fichier COTÉ\n" +" -e VIDE remplacer les champs d'entrée manquants par VIDE\n" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" +" -i, --ignore-case ignorer la casse des caractères lors de la\n" +" comparaison des champs\n" +" -j CHAMP option désuète équivalente à « -1 CHAMP -2 CHAMP »\n" +" -j1 CHAMP option désuète équivalente à « -1 CHAMP »\n" +" -j2 CHAMP option désuète équivalente à « -2 CHAMP »\n" +" -o FORMAT respecter le FORMAT lors de la construction\n" +" de sortie\n" +" -t CAR utiliser CAR comme délimiteur de champs à l'entrée\n" +" et à la sortie\n" + +#: src/join.c:165 +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" +" -v NOFICHIER comme -a NOFICHIERÉ, mais supprimer les lignes jointes " +"sur la sortie\n" +" de sortie fusionnées\n" +" -1 CHAMP fusionner sur le champs CHAMP du fichier 1\n" +" -2 CHAMP fusionner sur le champs CHAMP du fichier 2\n" + +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" +"\n" +"À moins que -t CAR ne soit fourni, les blancs de tête séparant\n" +"les champs sont ignorés sinon les champs sont séparés par CAR.\n" +"Chaque CHAMP est un champ compté numériquement à partir de 1.\n" +"FORMAT est une spécification contenant un ou plusieurs virgules ou blancs\n" +"chacun étant « NOFICHIER.CHAMP » ou « 0 ». Par défaut FORMAT affiche des\n" +"champs fusionnés, les champs restants de FICHIER1 ou FICHIER2 sont tous " +"séparés par CAR.\n" + +#: src/join.c:645 +#, c-format +msgid "invalid field specifier: `%s'" +msgstr "Le symbole de champ « %s » est invalide." + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, c-format +msgid "invalid field number: `%s'" +msgstr "Le numéro de champ « %s » est invalide." + +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "Le numéro de fichier « %s » est invalide dans le champ spécifié." + +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "Le numéro de champ « %s » est invalide pour le fichier 1." + +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "Le numéro de champ « %s » est invalide pour le fichier 2." + +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "Trop de arguments sont des options non reconnues." + +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "Trop peu de arguments sont des options non reconnues." + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "Les deux fichiers ne peuvent pas être à l'entrée standard." + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" ou: %s -l [SIGNAL]...\n" +" ou: %s -t [SIGNAL]...\n" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" +"Transmettre les signaux aux processus ou donner la liste des signaux.\n" +"\n" + +#: src/kill.c:106 +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" utiliser le nom ou le numéro du signal à transmettre.\n" +" -l, --list donner la liste des noms de signaux.\n" +" -t, --table afficher la table des informations relatives aux " +"signaux.\n" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" +"\n" +"SIGNAL peut être un nom comme « HUP » ou un numéro de signal commme « 1 »\n" +"ou un état de fin d'exécution d'un processus terminé par un signal.\n" +"PID est un entier; si négatif il identifie un groupe de processus.\n" + +#: src/kill.c:163 +#, c-format +msgid "%s: invalid signal" +msgstr "%s: signal invalide" + +#: src/kill.c:262 +#, c-format +msgid "missing operand after `%s'" +msgstr "opérande manquante après « %s »" + +#: src/kill.c:274 +#, c-format +msgid "%s: invalid process id" +msgstr "%s: identificateur de processus invalide" + +#: src/kill.c:327 +#, c-format +msgid "invalid option -- %c" +msgstr "option invalide --%c" + +#: src/kill.c:336 +#, c-format +msgid "%s: multiple signals specified" +msgstr "%s: signaux multiples spécifiés" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "options multiples -l ou -t spécifiées" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "ne peut combiner le signal avec -l ou -t" + +#: src/link.c:51 +#, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"Usage: %s FICHIER FICHIER2\n" +" or: %s OPTION\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" +"Appeler la fonction link() pour créer un lien nommé FICHIER2 sur le FICHIER1 " +"existant.\n" +"\n" + +#: src/link.c:98 +#, c-format +msgid "cannot create link %s to %s" +msgstr "Ne peut créer le lien %s vers %s" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "Mike Parker et David MacKenzie" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "" +"%s: AVERTISSEMENT: créer un lien direct vers un lien symbolique n'est pas " +"portable" + +#: src/ln.c:174 +#, c-format +msgid "%s: hard link not allowed for directory" +msgstr "%s: lien direct n,est pas permis pour un répertoire" + +#: src/ln.c:246 +#, c-format +msgid "%s: cannot overwrite directory" +msgstr "%s: ne peut écraser le répertoire" + +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "%s: remplacer %s? " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: fichier existant." + +#: src/ln.c:304 +#, c-format +msgid "create symbolic link %s to %s" +msgstr "création du lien symbolique %s vers %s" + +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "création d'un lien direct %s vers %s" + +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "création d'un lien symbolique %s vers %s" + +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "création d'un lien direct %s vers %s" + +#: src/ln.c:339 +#, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"Usage: %s [OPTION]... CIBLE [NOM-DU-LIEN]\n" +" ou: %s [OPTION]... CIBLE... RÉPERTOIRE\n" +" ou: %s [OPTION]... --target-directory=RÉPERTOIRE CIBLE...\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" +"Créer un lien vers la CIBLE spécifiée avec optionnellement un NOM_DE_LIEN.\n" +"S'il y le NOM_DE_LIEN est omis, un lien ayant la même base comme CIBLE est\n" +"créé dans le répertoire courant. Lors de l'utilisation de la seconde forme\n" +"avec plus d'une CIBLE, le dernier argument doit être un répertoire;\n" +"créer des liens dans le RÉPERTOIRE pour chaque CIBLE. Créer des liens " +"directs\n" +"par défaut et des liens symboliques avec l'option --symbolic. Lors de la\n" +"création de liens directs, chaque CIBLE doit exister.\n" +"\n" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" +" --backup[=CONTRÔLE] archiver chaque fichier de destination\n" +" -b identique à --backup mais sans argument\n" +" -d, -F, --directory répertoires par liens hard (super usager " +"seulement)\n" +" -f, --force détruire les destinations,\n" +" sans demander confirmation\n" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" +" -n, --no-dereference avec --force, détruire la destination qui\n" +" est un lien symbolique vers un répertoire \n" +" -i, --interactive demander confirmation avant de détruire\n" +" les destinations\n" +" -s, --symbolic créer un lien symbolique au lieu d'un\n" +" lien direct\n" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" +" -S, --suffix=SUFFIXE écraser le suffixe d'archivage par le SUFFIXE\n" +" --target-directory=RÉPERTOIRE\n" +" déplacer tous les fichiers SOURCE en arguments\n" +" vers le RÉPERTOIRE\n" +" -v, --verbose afficher le nom de chaque fichier avant de " +"créer un lien\n" + +#: src/ln.c:521 +#, c-format +msgid "%s: specified target directory is not a directory" +msgstr "%s: répertoire cible spécifié n'est pas un répertoire" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "" +"Lors de la création de liens: le dernier argument doit être un répertoire." + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "Usage: %s [OPTION]\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" +"Afficher le nom de l'usager courant.\n" +"\n" + +#: src/logname.c:99 +#, c-format +msgid "%s: no login name\n" +msgstr "%s: pas de nom d'usager (login name)\n" + +#: src/ls.c:673 +msgid "%b %e %Y" +msgstr "%b %e %Y" + +#: src/ls.c:681 +msgid "%b %e %H:%M" +msgstr "%b %e %H:%M" + +#: src/ls.c:1307 +#, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "" +"valeur invalide ignorée de la variable d'environnement QUOTING_STYLE: %s" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "" +"La taille des colonnes est ignorée:\n" +"la variable d'environnement COLUMNS %s est invalide." + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "" +"La taille de tabulation est ignorée:\n" +"la variable d'environnement TABSIZE %s est invalide." + +#: src/ls.c:1482 +#, c-format +msgid "invalid line width: %s" +msgstr "largeur de ligne invalide: %s" + +#: src/ls.c:1556 +#, c-format +msgid "invalid tab size: %s" +msgstr "taille de tabulation invalide: %s" + +#: src/ls.c:1722 +#, c-format +msgid "invalid time style format %s" +msgstr "format de style de temps invalide %s" + +#: src/ls.c:2054 +#, c-format +msgid "unrecognized prefix: %s" +msgstr "préfixe non reconnu: %s" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "" +"La valeur de la variable d'environnement LS_COLORS\n" +"est syntaxiquement erronée." + +#: src/ls.c:2145 +#, c-format +msgid "cannot determine device and inode of %s" +msgstr "ne peut déterminer le périphérique et l'inode de %s" + +#: src/ls.c:2155 +#, c-format +msgid "not listing already-listed directory: %s" +msgstr "ne peut lister un répertoire déjà listé: %s" + +#: src/ls.c:2208 src/remove.c:929 +#, c-format +msgid "reading directory %s" +msgstr "lecture du répertoire %s" + +#: src/ls.c:2603 +#, c-format +msgid "cannot compare file names %s and %s" +msgstr "ne peut comparer les noms de fichier %s et %s" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" +"Afficher les informations au sujet des FICHIERS (du répertoire\n" +"courant par défaut). Trier les entrées alphabétiquement si aucune\n" +"des options -cftuSUX ou --sort n'est utilisée.\n" +"\n" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" +" -a, --all ne pas cacher les entrées débutant par .\n" +" -A, --almost-all ne pas inclure dans la liste . et ..\n" +" --author afficher l'auteur de chaque fichier\n" +" -b, --escape afficher en octal les caractères\n" +" non-graphiques\n" +" en utilisant des séquences d'échappement\n" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" +" --block-size=TAILLE utiliser la TAILLE de blocs\n" +" -B, --ignore-backups ne pas inclure dans la liste,\n" +" les entrées se terminant par ~\n" +" -c lister les fichiers triés selon leur date de\n" +" modification; \n" +" avec -lt: trier par la date de modification\n" +" et afficher la date de modification (ctime)\n" +" avec -l: trier par nom et afficher avec\n" +" avec la date de modification (ctime)\n" +" autrement: trier par la date de modification " +"(ctime)\n" + +#: src/ls.c:3784 +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" +" -C afficher en colonnes\n" +" --color[=PARAM] afficher avec une couleur pour distinguer les " +"types de fichiers\n" +" de fichiers, selon un des PARAMètres\n" +" suivants: `never', `always', ou `auto'\n" +" -d, --directory lister les noms de répertoires plutôt\n" +" que leur contenu et ne pas déférencer les liens " +"symboliques\n" +" -D, --dired générer une sortie adaptée pour le mode\n" +" « dired » de Emacs\n" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" +" -f ne pas trier, autoriser -aU, interdire -lst\n" +" -F, --classify ajouter un caractère (parmi */=@|) pour chaque " +"entrée\n" +" --format=MODE afficher selon le MODE suivant: -x croisé,\n" +" -m avec virgules, -x horizontal, -l long,\n" +" -1 en colonne simple, -l en mode bavard,\n" +" -C vertical\n" +" --full-time identique à -l --time-style=full-iso\n" + +#: src/ls.c:3799 +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" +" -g (ignorée)\n" +" -G, --no-group inhiber l'affichage des informations de groupe\n" +" -h, --human-readable afficher les tailles dans un format lisible " +"par\n" +" --si un humain (i.e. 1K 234M 2G) en utilisant un " +"multiple\n" +" 1000 et non pas de 1024\n" +" -H, --dereference-command-line\n" +" suivre les liens symboliques de la ligne de " +"commande\n" +" --dereference-command-line-symlink-to-dir\n" +" suivre chaque lein symbolique de la ligne de " +"commande\n" +" qui pointe vers un répertoire\n" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" +" --indicator-style=CODE ajouter en suffixe l'indicateur selon le CODE:\n" +" none (par défaut), classify (-F), file-type (-" +"p)\n" +" -i, --inode afficher le numéro d'index de chaque fichier\n" +" -I, --ignore=PATRON ne pas inclure dans la liste les entrées\n" +" concordant avec le PATRON de shell\n" +" -k identique à --block-size=1K\n" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" +" -l utiliser le format long d'affichage\n" +" -L, --dereference afficher les entrées pointées par des\n" +" liens symboliques, monter l'information pointée " +"par le lien\n" +" -m remplir la largeur par une liste d'entrées\n" +" séparée par des virgules\n" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" +" -n, --numeric-uid-gid identique à -l mais en listant les valeurs " +"numériques\n" +" des UID et GID\n" +" -N, --literal afficher les noms bruts (ne pas traiter les " +"caractères\n" +" de contrôle spécialement)\n" +" -o identique à -l mais sans lister l'information " +"de groupe\n" +" -p, --file-type accoler un indicateur (parmi /=@|) aux entrées\n" + +#: src/ls.c:3831 +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -q, --hide-control-chars afficher ? au lieu de caractères\n" +" non-graphiques\n" +" --show-control-chars afficher les caractères non graphiques\n" +" tel quel (par défaut)\n" +" -Q, --quote-name encapsuler chaque nom d'entrée entre\n" +" guillemets\n" +" --quoting-style=MOT utiliser le style d'encapsultation selon le MOT " +"clé\n" +" suivant: literal, shell, shell-always, c, " +"escape\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" +" -r, --reverse afficher en ordre inverse lors du trie\n" +" -R, --recursive afficher les sous-répertoire récursivement\n" +" -s, --size afficher la taille de chaque fichier en blocs\n" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" +" -S trier selon la taille des fichiers\n" +" --sort=CODE trier selon le CODE suivant: -c pour ctime,\n" +" -X pour extension, -U pour aucun,\n" +" -S pour la taille, -t pour la date\n" +" -v pour la version, -c pour le statut, \n" +" -u pour la date d'accès, -u pour l'accès\n" +" --time=CODE afficher les temps d'accès en mots au lieu de\n" +" date de modification:\n" +" atime, access, use, ctime ou status\n" +" tel que spécifié dans la clé de trie --" +"sort=clé\n" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" +" --time-style=STYLE afficher les dates selon le STYLE désiré:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT est interprété comme « date »; si FORMAT " +"est\n" +" FORMAT1FORMAT2, FORMAT1 " +"s'applique aux\n" +" fichiers non récents et FORMAT2 aux fichiers " +"récents\n" +" -t trier selon la date de modification:\n" +" -T, --tabsize=TAILLE utiliser la tabulation de la TAILLE\n" +" pour chaque colonne au lieu de 8\n" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" +" -u avec -lt: trier selon la date du dernier " +"accès;\n" +" avec -l: afficher la date d'accès et trier par " +"nom\n" +" -U ne pas trier: afficher selon l'ordre\n" +" original des entrées d'un répertoire\n" +" -v trier par version\n" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" +" -w, --width=COLS fixer la largeur de l'écran au lieu de la " +"valeur courante\n" +" -x lister les entrées par ligne au lieu de par " +"colonne\n" +" -X trier alphabétiquement par extension d'entrée\n" +" -1 lister un fichier par ligne\n" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" +"\n" +"Par défaut, la couleur n'est pas utilisée pour distinguer les différents " +"types\n" +"de fichiers. Cela est équivalent à l'utilisation de l'option --" +"color=none. \n" +"L'utilisation de l'option --color sans l'argument WHEN est équivalent à\n" +"l'utilisation de --colors=always. Avec l'option --color=auto, les codes de\n" +"couleur sont transmis vers la sortie standard si celle-ci est reliée à un \n" +"terminal (tty).\n" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "Ulrich Drepper et Scott Miller" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"Usage: %s [OPTION] [FICHIER]...\n" +" ou: %s [OPTION] --check [FICHIER]\n" +"Afficher ou vérifier les sommes de contrôle %s (%d-bits).\n" +"Sans FICHIER, ou quand FICHIER est -, lire de l'entrée standard.\n" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" +"\n" +" -b, --binary lire les fichiers en mode binaire \n" +" (par défaut sous DOS/WIndows)\n" +" -c, --check vérifier les sommes %s par rapport à la liste\n" +" -t, --text lire les fichiers en mode texte (par défaut)\n" +"\n" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" +"Les deux options suivantes sont utiles seulement lors de la vérification\n" +"des sommes de contrôle:\n" +" --status ne rien afficher, sauf le constat\n" +" de fin d'exécution\n" +" -w, --warn avertir si les lignes de contrôle MD5\n" +" sont mal formatées\n" +"\n" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" +"\n" +"Les sommes sont calculées selon la description de %s. Lors de la " +"vérification,\n" +"l'entrée devrait être formellement une sortie de ce programme. Le mode par " +"défaut\n" +"est d'afficher la ligne avec la somme de contrôle, un caractère indiquant\n" +"le type (« * » pour binaire, « » pour texte) et un nom pour chaque FICHIER.\n" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "%s: %lu: ligne de somme de contrôle %s mal formatée." + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "%s: ÉCHEC d'ouverture ou de lecture.\n" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "ÉCHEC" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "OK" + +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%s: erreur de lecture." + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "%s: aucune ligne de somme de contrôle %s repérée." + +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "AVERTISSEMENT: %d des %d affichés %s n'a pu être lu." + +#: src/md5sum.c:473 +msgid "file" +msgstr "fichier" + +#: src/md5sum.c:473 +msgid "files" +msgstr "fichiers" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "AVERTISSEMENT: %d des %d sommes de contrôle %s ne concordent pas." + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "checksum" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "checksums" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" +"Les options --binary et --text sont sans effet lors de la\n" +"la vérification des sommes de contrôle." + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "les options --string et --check sont mutuellement exclusives" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "" +"L'option --status n'a de sens que si la vérification des sommes\n" +"de contrôle est demandée." + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "" +"L'option --warn n'a de sens que si la vérification des sommes\n" +"de contrôle est demandée." + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "Aucun fichier ne peut être spécifié lorsque --string est utilisée." + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "Un seul argument peut être spécifié lorsque --check est utilisée." + +#: src/mkdir.c:61 +#, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "Usage: %s [OPTION] RÉPERTOIRE...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" +"Créer le(s) RÉPERTOIRE(s) si il(s) n'existe(nt) pas.\n" +"\n" + +#: src/mkdir.c:69 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +" -m, --mode=MODE utiliser le MODE des permissions d'accès\n" +" (comme avec chmod),\n" +" et non pas le mode rwxrwxrwx - umask\n" +" -p, --parents si l'exécution est sans erreur parce qu'existant:\n" +" créer des répertoires parents si nécessaire\n" +" -v, --verbose afficher le nom de chaque répertoire créé\n" + +#: src/mkdir.c:113 +#, c-format +msgid "created directory %s" +msgstr "création du répertoire %s" + +#: src/mkdir.c:190 +#, c-format +msgid "cannot set permissions of directory %s" +msgstr "ne peut initialiser les permissions du répertoire %s" + +#: src/mkfifo.c:55 +#, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "Usage: %s [OPTION] NOM...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "Créer un relais nommé (named pipe FIFO) qui portera le NOM.\n" + +#: src/mkfifo.c:63 src/mknod.c:64 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" +" -m, --mode=MODE utiliser le MODE d'accès (comme avec « chmod »),\n" +" mais non pas selon a=rw - umask\n" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "Les fichiers de type « fifo » n'est pas supporté." + +#: src/mkfifo.c:123 src/mknod.c:127 +msgid "invalid mode" +msgstr "mode invalide" + +#: src/mkfifo.c:142 +#, c-format +msgid "cannot set permissions of fifo %s" +msgstr "ne peut initialiser les permissions du fifo %s" + +#: src/mknod.c:55 +#, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "Usage: %s [OPTION]... NOM TYPE [MAJEUR MINEUR]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" +"Créer le fichier spécial avec le NOM et le TYPE donné.\n" +"\n" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" +"\n" +"Les deux MAJEUR et MINEUR doivent être spécifiés quand le TYPE est b, c ou " +"u\n" +"et ils doivent être omis lorsque le TYPE est p. Si MAJEUR et MINEUR avec 0x " +"ou 0X,\n" +"est fourni, ils sont interprétés en hexadécimal; autrement, s'ils débutent " +"pas 0, ils\n" +"le sont en octal autrement en décimal. Le TYPE peut être:\n" + +#: src/mknod.c:76 +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"\n" +" b créer un fichier spécial de type blocage (avec tampon)\n" +" c, u créer un fichier spécial de type caractère (sans tampon) \n" +" p créer un relais de type « fifo »\n" + +#: src/mknod.c:141 +msgid "wrong number of arguments" +msgstr "nombre erroné d'arguments" + +#: src/mknod.c:153 +msgid "block special files not supported" +msgstr "fichier spécial de bloc n'est pas supporté" + +#: src/mknod.c:162 +msgid "character special files not supported" +msgstr "fichier spécial de caractères n'est pas supporté" + +#: src/mknod.c:171 +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" +"Lors de la création d'un fichier spécial, les numéros\n" +"majeur et mineur de périphériques doivent être spécifiés." + +#: src/mknod.c:186 +#, c-format +msgid "invalid major device number %s" +msgstr "numéro majeur de périphérique invalide %s" + +#: src/mknod.c:191 +#, c-format +msgid "invalid minor device number %s" +msgstr "numéro mineur de périphérique invalide %s" + +#: src/mknod.c:196 +#, c-format +msgid "invalid device %s %s" +msgstr "périphérique invalide %s %s" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "" +"Les numéros majeur et mineur de périphérique ne peuvent être\n" +"spécifiés pour des fichiers de type « fifo »" + +#: src/mknod.c:231 +#, c-format +msgid "cannot set permissions of %s" +msgstr "ne peut initialiser les permissions de %s" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "Mike Parker, David MacKenzie et Jim Meyering" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Renommer la SOURCE à la DESTINATION ou déplacer la SOURCE vers la " +"DESTINATION.\n" +"\n" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" +" --backup[=CONTRÔLE] archiver chaque fichier de destination\n" +" -b identique à --backup mais sans argument\n" +" -f, --force détruire les destinations,\n" +" sans demander confirmation\n" +" -i, --interactive demander confirmation avant d'écraser\n" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" +" --reply={yes,no,query} spécifier comment traiter les requêtes à " +"propos\n" +" d'un fichier de destination existant\n" +" --strip-trailing-slashes enlever les « / » en suffixe de chacun\n" +" des arguments SOURCE\n" +" -S, --suffix=SUFFIXE écraser le suffixe d'archivage\n" +" usuel en utilisant SUFFIXE\n" + +#: src/mv.c:339 +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +" --target-directory=RÉP déplacer tous les fichiers SOURCE vers\n" +" le RÉPertoire\n" +" -u, --update déplacer seulement les vieux ou\n" +" les tout nouveaux fichiers\n" +" -v, --verbose expliquer ce qui a été fait\n" + +#: src/mv.c:467 +#, c-format +msgid "specified target, %s is not a directory" +msgstr "cible spécifiée %s n'est pas un répertoire" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "" +"Lors du déplacement de fichiers, le dernier argument doit être un répertoire." + +#: src/nice.c:67 +#, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "Usage: %s [OPTION] [COMMANDE] [ARG]...\n" + +#: src/nice.c:68 +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" +"Exécuter la COMMANDE avec un horaire ajusté de priorité.\n" +"Sans aucune COMMANDE, afficher la priorité courante. AJUSTement est de 10\n" +"par défaut. La plage s'étend de -20 (priorité élevé) à 19 (la plus basse).\n" +"\n" +" -AJUST incrémenter d'abord la priorité selon " +"l'AJUSTement\n" +" -n, --adjustment=AJUST identique à -AJUST\n" + +#: src/nice.c:109 src/nice.c:122 +#, c-format +msgid "invalid option `%s'" +msgstr "option invalide « %s »" + +#: src/nice.c:147 +#, c-format +msgid "invalid priority `%s'" +msgstr "priorité invalide « %s »" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "Une commande doit être soumise avec un ajustement." + +#: src/nice.c:178 src/nice.c:187 +msgid "cannot get priority" +msgstr "ne peut obtenir la priorité" + +#: src/nice.c:192 +msgid "cannot set priority" +msgstr "ne peut initialiser la priorité" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "Scott Bartram et David MacKenzie" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Afficher chaque FICHIER sur la sortie standard, avec numéros de ligne.\n" +"Sans FICHIER, ou FICHIER est -, lire de l'entrée standard.\n" +"\n" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" +" -b, --body-numbering=STYLE utiliser STYLE pour numéroter les lignes\n" +" -d, --section-delimiter=CC utiliser CC pour séparer les pages\n" +" logiques\n" +" -f, --footer-numbering=STYLE utiliser STYLE pour numéroter les lignes\n" +" de bas de page\n" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" +" -h, --header-numbering=STYLE utiliser STYLE pour numéroter les lignes\n" +" d'en-tête\n" +" -i, --page-increment=N incrémenter de N de lignes à chaque ligne\n" +" -l, --join-blank-lines=N regrouper N de lignes vides\n" +" en une seule ligne\n" +" -n, --number-format=FORMAT insérer un numéro de ligne selon FORMAT\n" +" -p, --no-renumber ne pas réinitialiser le nombre de lignes\n" +" aux pages logiques\n" +" -s, --number-separator=CHAÎNE ajouter la CHAÎNE après (si possible)\n" +" le numéro de ligne\n" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" +" -v, --first-page=NUMÉRO utiliser comme premier NUMÉRO de ligne\n" +" sur chaque page logique\n" +" -w, --number-width=N utiliser le NOMBRE de colonnes pour\n" +" numéroter les lignes\n" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" +"\n" +"Par défaut, -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn sont sélectionnées.\n" +"CC se compose de deux caractères délimiteurs pour séparer les pages " +"logiques\n" +"un deuxième caractère manquant implique que:\n" +"taper \\\\ pour \\. STYLE est une des options parmi:\n" +"\n" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" +"\n" +" a numéroter toutes les lignes\n" +" t numéroter seulement les lignes non vides\n" +" n numéroter n lignes\n" +" pEXPREG numéroter seulement les lignes ayant une concordance à EXPREG\n" +"\n" +"FORMAT doit être choisi parmi:\n" +"\n" +" ln justifié à gauche, sans zéro de préfixe\n" +" rn justifié à droite, sans zéro de préfixe\n" +" rz justifié à droite, avec zéros de préfixe\n" +"\n" + +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "Le numéro de ligne de départ « %s » est invalide." + +#: src/nl.c:514 +#, c-format +msgid "invalid line number increment: `%s'" +msgstr "L'incrément du nombre de ligne « %s » est invalide." + +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "Le nombre de lignes blanches « %s » est invalide." + +#: src/nl.c:541 +#, c-format +msgid "invalid line number field width: `%s'" +msgstr "La largeur du champ de la numérotation de ligne « %s » est invalide." + +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"Usage: %s [OPTION]... [FICHIER]...\n" +" ou: %s --traditional [FICHIER] [[+]SAUT [[+]ÉTIQUETTE]]\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"\n" +"Afficher le contenu du FICHIER selon une représentation non ambiguë\n" +"par un affichage des octets en octal par défaut sur la sortie standard.\n" +"Sans FICHIER, ou quand FICHIER est -, lire de l'entrée standard.\n" +"\n" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "" +"Tous les arguments obligatoires pour les options de formes longues\n" +"le sont aussi pour les options de formes courtes.\n" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" +" -A, --address-radix=BASE afficher les octets selon un adressage\n" +" relatif dans la BASE sélectionnée\n" +" -j, --skip-bytes=N escamoter les N premiers octets de chaque\n" +" fichier\n" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" +" -N, --read-bytes=N limiter la vidange à N octets lus à l'entrée\n" +" -s, --strings[=N] afficher la chaîne d'au moins N caractères\n" +" graphiques\n" +" -t, --format=TYPE sélectionner les formats de sortie\n" +" -v, --output-duplicates ne pas utiliser * pour marquer la\n" +" suppression de ligne\n" +" -w, --width[=N] afficher N octets par ligne de sortie\n" +" --traditional accepter les arguments selon la forme " +"traditionnelle\n" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" +"\n" +"Les spécifications de format traditionnels peuvent être entremêlées;\n" +"ils sont alors cumulées:\n" +" -a identique à -t a, sélectionner les caractères nommés\n" +" -b identique à -t oC, sélectionner les octets en octal\n" +" -c identique à -t c, sélectionner les caractères ASCII ou\n" +" les barres obliques inverses\n" +" -d identique à -t u2, sélectionner les entiers courts non signés\n" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" +" -f identique à -t fF, identifier en nombre flottant\n" +" -h identique à -t x2, identifier en hexadécimal court\n" +" -i identique à -t d2, identifier en décimal court\n" +" -l identique à -t d4, identifier en décimal long\n" +" -o identique à -t o2, identifier en octal court\n" +" -x identique à -t x2, identifier en hexadécimal court\n" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" +"\n" +"Pour la syntaxe plus ancienne (deuxième format d'appel), SAUT\n" +"signifie -j SAUT. ÉTIQUETTE est une pseudo adresse du premier octet " +"imprimé\n" +"incrémentée lorsque la vidange s'effectue. Pour le SAUT et l'ÉTIQUETTE, un\n" +"préfixe 0x ou 0X indique un format hexadécimal, les suffixes peuvent\n" +"être . pour l'octal et b pour un multiple de 512 octets.\n" +"\n" +"Le TYPE est composé d'une ou plusieurs spécifications suivantes:\n" +"\n" +" a caractère nommé\n" +" c caractère ASCII ou barre oblique inverse\n" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" +" d[N] décimal signé, N octets par entier\n" +" f[N] point flottant, N octets par entier\n" +" o[N] octal, N octets par entier\n" +" u[N] décimal non signé N octets par entier\n" +" x[N] hexadécimal, N octets par entier\n" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" +"\n" +"N est un nombre. Le TYPE est soit d, o, u ou x, N peut être aussi C pour\n" +"sizeof(char), S pour sizeof(short), I pour sizeof(int) ou L pour\n" +"sizeof(long). Si le TYPE est f, N peut aussi être F pour sizeof(float),\n" +"D pour sizeof(double) ou L pour sizeof(long double).\n" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" +"\n" +"BASE est d pour décimal, o pour octal, x pour hexadécimal ou n pour aucun.\n" +"OCTETS est de type hexadécimal si préfixé par 0x ou 0X, et est un\n" +"multiple de 512 avec le suffixe b, de 1024 avec k et de 1048576 avec m.\n" +"L'ajout du suffixe « z » à chacun de ces types affiche des caractères\n" +"imprimables à la fin de chaque ligne sur la sortie." + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" +"--string sans être suivi d'un nombre implique 3. --width sans \n" +"nombre implique 32. Par défaut, od utilise -A o -t d2 -w 16.\n" + +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "Le type de chaîne « %s » est invalide." + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" +"le type de chaîne « %s » est invalide;\n" +"ce système ne permet pas le type entier %lu-byte" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" +"le type de chaîne « %s » est invalide;\n" +"ce système ne permet pas le type en point flottant %lu-byte" + +#: src/od.c:917 +#, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "Le caractère « %c » est invalide dans le type de chaîne « %s »." + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "Ne peut aller au delà de la fin combinée des fichiers." + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "Vieux style de décalage." + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "" +"La base numérique de sortie est invalide « %c »:\n" +"une seule des options doit être sélectionnée parmi les choix [doxn]." + +#: src/od.c:1717 +msgid "skip argument" +msgstr "Argument escamoté." + +#: src/od.c:1725 +msgid "limit argument" +msgstr "Argument limite." + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "Longueur minimum de la chaîne." + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "%s est trop grand" + +#: src/od.c:1804 +msgid "width specification" +msgstr "Spécification de la largeur." + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "Aucun type ne peut être spécifié lors de l'affichage brut des chaînes." + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "La deuxième opérande « %s » est invalide en mode compatible." + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "" +"En mode compatible, les 2 derniers arguments doivent être des adresses " +"relatives." + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "Le mode compatible supporte au plus 3 arguments." + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "AVERTISSEMENT: largeur invalide %lu; utilise %d à la place." + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "%d: fmt=« %s » largeur=%d\n" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "David M. Ihnat et David MacKenzie" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "L'entrée standard est fermée." + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Coller séquentiellement les lignes correspondantes de chaque\n" +"FICHIER, séparé par des tabulations, vers la sortie standard.\n" +"Sans FICHIER, ou quand FICHIER est -, lire de l'entrée standard.\n" +"\n" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" +" -d, --delimiters=LISTE utiliser les caractères de la LISTE au lieu\n" +" de tabulations\n" +" -s, --serial copier un fichier à la fois au lieu de\n" +" le faire en parallèle\n" + +#: src/pathchk.c:146 +#, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "Usage: %s [OPTION]... NOM...\n" + +#: src/pathchk.c:147 +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" +"Diagnostiquer les construits non portables du NOM.\n" +"\n" +" -p, --portability vérifier pour tous les systèmes POSIX,\n" +" non seulement pour le système courant\n" + +#: src/pathchk.c:237 +#, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "chemin « %s » contient un caractère non portable « %c »" + +#: src/pathchk.c:257 +#, c-format +msgid "`%s' is not a directory" +msgstr "« %s » n'est pas un répertoire" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "Le répertoire « %s » n'est pas accessible." + +#: src/pathchk.c:355 +#, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "Le nom « %s » a une longueur de %ld; excédant la limite %ld" + +#: src/pathchk.c:381 +#, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "Le chemin « %s » a une longueur de %d; excédant la limite %ld" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "Joseph Arceneaux, David MacKenzie et Kaveh Ghazi" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "Nom du compte: " + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "En réalité: " + +#: src/pinky.c:298 +msgid "???\n" +msgstr "???\n" + +#: src/pinky.c:318 +msgid "Directory: " +msgstr "Répertoire" + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "Shell: " + +#: src/pinky.c:341 +msgid "Project: " +msgstr "Projet: " + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "Plan:\n" + +#: src/pinky.c:386 +msgid "Login" +msgstr "Login" + +#: src/pinky.c:388 +msgid "Name" +msgstr "Nom" + +#: src/pinky.c:389 +msgid " TTY" +msgstr " TTY" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "Inactivité" + +#: src/pinky.c:392 +msgid "When" +msgstr "Quand" + +#: src/pinky.c:395 +msgid "Where" +msgstr "Où" + +#: src/pinky.c:469 +#, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "Usage: %s [OPTION]... [USAGER]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" +"\n" +" -l afficher en format long\n" +" -b omettre le répertoire d'attache de l'usager\n" +" et son shell en format long\n" +" -h omettre le fichier de projet de l'usager en\n" +" format long\n" +" -p omettre le fichier de plan de l'usager en\n" +" format long\n" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" +" -f omettre la ligne de l'en-tête des colonnes\n" +" en format court\n" +" -w omettre le nom complet de l'usager en format court\n" +" -i omettre le nom complet de l'usager et le nom de l'hôte\n" +" en format court\n" +" -q omettre le nom complet de l'usager, le nom de l'hôte\n" +" et le temps d'inactivité en format court\n" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" +"\n" +"Une version allégée du programme « finger »; afficher les informations " +"relatives à un usager.\n" +"Le fichier utmp sera %s.\n" + +#: src/pinky.c:574 +msgid "no username specified; at least one must be specified when using -l" +msgstr "" +"aucun nom d'usager spécifié; au moins doit être spécifié lorsque -l est " +"utilisée" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "Pete TerMaat et Roland Huebner" + +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "« --pages » intervalle des pages invalide: « %s »" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "« --pages » numéro de page de départ invalide: « %s »" + +#: src/pr.c:829 +#, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "« --pages » numéro de page finale invalide: « %s »" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "" +"« --pages » numéro de page de départ est plus grand que le no. de page finale" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "« --pages=PREMIÈRE_PAGE[:DERNIÈRE_PAGE] » argument manquant" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "« --columns=N » nombre invalide de colonnes: « %s »" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "« -l LONGUEUR_PAGE » contient un nombre invalide de lignes: « %s »." + +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "« -N NUMBER » contient un nombre invalide de départ: « %s »." + +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "« -o MARGIN » saut de ligne invalide: « %s »" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "" +"« -w LARGEUR_DE_PAGE » contient un nombre invalide de caractères: « %s »" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "" +"« -W LARGEUR_DE_PAGE » contient un nombre invalide de caractères: « %s »" + +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "%b %e %H:%M %Y" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "Ne peut spécifier le nombre de colonnes lorsqu'imprimant en parallèle." + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "Ne peut faire un affichage à la fois croisée et en parallèle." + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "" +"« -%c': caractères superflus ou nombre invalide dans les arguments: « %s »." + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "La largeur de page est trop petite." + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "" +"Le numéro de page de départ est plus grand que le nombre total de pages: « %" +"d »" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "Page %d" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" +"Paginer ou mettre en colonne les FICHIERS pour impression.\n" +"\n" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" +" +PREMIÈRE_PAGE[:DERNIÈRE_PAGE], \n" +" --pages=PREMIÈRE_PAGE[:DERNIÈRE_PAGE]\n" +" débuter [stopper] l'impression à la PREMIÈRE_PAGE\n" +" ou à la DERNIÈRE_PAGE\n" +" -COLUMN\n" +" --columns=COLONNES\n" +" produire une sortie en COLONNES et imprimer les\n" +" les colonnes vers le bas à moins que -a ne soit\n" +" utilisé. Équilibrer le nombre de lignes de chaque\n" +" colonne sur chaque page.\n" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" +" -a, --across imprimer les colonnes horizontalement au lieu de\n" +" verticalement, utilisé ensemble avec -COLUMN\n" +" -c, --show-control-chars\n" +" utiliser une notation par chapeau (^G) et octale\n" +" avec barre oblique inverse\n" +" -d, --double-space\n" +" produire une sortie avec double espacement\n" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" +" -D, --date-format=FORMAT\n" +" utiliser le FORMAT pour l'en-tête de la date\n" +" -e[CAR[LARGEUR]], --expand-tabs[=CAR[LARGEUR]]\n" +" faire l'expansion des CARactères (ou de tabulation)\n" +" selon la LARGEUR de tabulation (par défaut 8)\n" +" -F, -f,\n" +" --form-feed\n" +" utiliser des sauts de page au lieu des sauts de \n" +" lignes pour séparer les pages (3 lignes par en-tête\n" +" avec -f ou 5 lignes par en-tête et bas de page sans -" +"f) \n" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" +" -h EN-TÊTE, --header=EN-TÊTE\n" +" centrer l'EN-TÊTE au lieu du nom de fichier dans\n" +" l'en-tête de la page, \n" +" -h \"\" imprime une ligne blanche.\n" +" ne pas utiliser: -h\"\"\n" +" -i[CAR[LARGEUR]], --output-tabs[=CAR[LARGEUR]]\n" +" remplacer les blancs par des CARactères (ou\n" +" de tabulation) selon la LARGEUR de tabulation (8 par " +"défaut)\n" +" -J, --join-lines\n" +" faire la fusion des lignes pleines, inhiber la \n" +" troncation des lignes -W, sans alignement des\n" +" colonnes -s-sep-string[=CHAÎNE] initialise les " +"séparateurs\n" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" +" -l LONGUEUR_DE_PAGE, --length LONGUEUR_DE_PAGE\n" +" utiliser LONGUEUR_DE_PAGE au lieu de 66 lignes\n" +" (par défaut de lignes est de 56 pour un texte,\n" +" avec -f de 63)\n" +" -m, --merge imprimer tous les fichiers en parallèle un par\n" +" colonne, tronque les lignes, mais joint les\n" +" lignes de pleine longueur avec -j\n" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" +" -n, --number-lines[=SÉP[CHIFFRES]]\n" +" numéroter les lignes, par des CHIFFRES (5), suivi de\n" +" SÉParateurs (TAB) par défaut le compteur débute\n" +" avec la première ligne du fichier d'entrée\n" +" -N, --first-line-number=VALEUR\n" +" débuter le compteur avec la VALEUR avec la 1ère " +"ligne\n" +" de la 1ère page imprimée (voir +PREMIÈRE_PAGE)\n" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" +" -o, --indent=MARGE\n" +" débuter l'impression de chaque ligne après une\n" +" MARGE d'espacement (n'affecte pas -w)\n" +" -r, --no-file-warnings\n" +" inhiber les avertissements lorsqu'un fichier\n" +" ne peut être ouvert\n" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" +" -s[CAR], --separator[=CHAÎNE]\n" +" séparer les colonnes à l'aide d'un simple CARactère\n" +" par défaut le caractère de TABulation sans -w et 'no " +"char»\n" +" avec -w et -s[CAR] inhibe la troncation de ligne des " +"3 colonnes\n" +" options de 3 colonnes (-COLUMN|-a - COLUMN|-m) sauf " +"si -w est utilisé\n" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr " -SSTRING, --sep-string[=CHAÎNE]\n" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" +" séparer les colonnes à l'aide d'une CHAÎNE\n" +" sans -S: le séparateur par défaut est avec -J " +"et \n" +" autrement (identique as -S« »), sans effet sur les " +"options\n" +" des colonnes\n" +" -t, --omit-header\n" +" inhiber l'en-tête et le bas de page\n" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" +" -T, --omit-pagination\n" +" inhiber l'en-tête et le bas de page, éliminer\n" +" les agencements de page par saut de page indiqués\n" +" dans les fichiers d'entrée\n" +" -v, --show-nonprinting\n" +" utiliser la notation octale avec barre oblique\n" +" inverse\n" +" -w LARGEUR_DE_PAGE,\n" +" --width=LARGEUR_DE_PAGE\n" +" utiliser LARGEUR_DE_PAGE au lieu de 72 colonnes\\n\"\n" +" tronquer les lignes (voir aussi l'option -j)\n" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" +" -W LARGEUR_DE_PAGE,\n" +" --page-width=LARGEUR_DE_PAGE\n" +" toujours utiliser une LARGEUR_DE_PAGE de 72 " +"caractères,\n" +" tronquer les lignes, sauf lorsque l'option -J est " +"utilisée\n" +" sans interférence avec -S ou -s\n" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" +"\n" +"L'option -T est implicite lorsque -l N est utilisée et avec -f quand nn <= " +"10\n" +"ou <= 3. Sans FICHIER, ou quand FICHIER est -, lire de l'entrée standard.\n" + +#: src/printenv.c:43 +msgid "David MacKenzie and Richard Mlynarik" +msgstr "David MacKenzie et Richard Mlynarik" + +#: src/printenv.c:63 +#, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" +"Usage: %s [VARIABLE]...\n" +" ou: %s OPTION\n" +"Si aucune VARIABLE d'environnement n'est spécifiée, les afficher toutes.\n" +"\n" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "" +"AVERTISSEMENT: %s: caractère(s) suivant le caractère de constante ignoré(s)" + +#: src/printf.c:100 +#, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" +"Afficher les ARGUMENTS selon le FORMAT.\n" +"\n" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" +"\n" +"Le FORMAT contrôle la sortie comme la fonction printf() en C.\n" +"Les séquences interprétées sont:\n" +"\n" +" \\\" guillemets\n" +" \\0NNN caractère ayant la valeur octale NNN (0 à 3 chiffres)\n" +" \\\\ barre oblique inverse\n" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" +" \\a bip sonore d'alerte\n" +" \\b retour arrière\n" +" \\c ne pas afficher d'autres informations sur la sortie\n" +" \\f saut de page\n" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\n saut de ligne\n" +" \\r retour de chariot\n" +" \\t tabulation horizontale\n" +" \\v tabulation verticale\n" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" +" \\xNNN caractère ayant la valeur hexadécimale NN (1 à 3 chiffres)\n" +"\n" +" \\uNNNN caractère avec la valeur hexadécimale NNNN (4 chiffres)\n" +" \\UNNNNNNNN caractère ayant la valeur hexadécimal NNNNNNNN (8 chiffres)\n" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" +" %% le caractère %%\n" +" %b PARAMÈTRES comme une chaîne avec « \\ » d'échappement interprétés\n" +"\n" +"ainsi que toutes les spécifications de format en C se terminant par une des\n" +"options suivantes diouxXfeEgGcs, avec un ARGUMENT\n" +"converti au premier type approprié.\n" +"Les largeurs variables de champ sont supportées.\n" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "%s: valeur numérique attendue." + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "%s: valeur pas complètement convertie." + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "Nombre hexadécimal manquant dans l'échappement." + +#: src/printf.c:292 +#, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "nom de caractère universel invalide \\%c%0*x" + +#: src/printf.c:472 +#, c-format +msgid "invalid field width: %s" +msgstr "largeur de champ invalide: %s" + +#: src/printf.c:498 +#, c-format +msgid "invalid precision: %s" +msgstr "précision invalide: %s" + +#: src/printf.c:519 +#, c-format +msgid "%%%c: invalid directive" +msgstr "%%%c: directive invalide" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "Usage: %s format [argument...]\n" + +#: src/printf.c:594 +#, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "AVERTISSEMENT: arguments superflus ignorés, débutant avec « %s »" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "%s (pour regexp « %s »)" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"Usage: %s [OPTION]... [ENTRÉE]... (sans l'option -G)\n" +" ou: %s -G [OPTION]... [ÉNTRÉE [SORTIE]]\n" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" +"Produire un index permuté, incluant le contexte des mots des fichiers " +"d'entrée.\n" +"\n" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" +" -A, --auto-reference générer des références automatiquement\n" +" -C, --copyright afficher les Droits d'auteur et les " +"conditions\n" +" de recopie\n" +" -G, --traditional faire fonctionner « ptx » comme en System " +"V\n" +" -F, --flag-truncation=CHAÎNE utiliser la CHAÎNE pour indiquer la " +"troncation\n" +" des lignes\n" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" +" -M, --macro-name=CHAÎNE nom de la macro à utiliser au lieu de « xx " +"»\n" +" -O, --format=roff générer la sortie comme des directives " +"roff\n" +" -R, --right-side-refs placer les références à droite, sans " +"décompte -w\n" +" -S, --sentence-regexp=REGEXP pour la fin des lignes ou des phrases\n" +" -T, --format=tex générer la sortie comme des directives TeX\n" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" +" -W, --word-regexp=REGEXP utiliser REGEXP pour établir la concordance " +"avec chaque mot\n" +" -b, --break-file=FICHIER utiliser les coupures de mots de ce " +"FICHIER\n" +" -f, --ignore-case ramener les minuscules en majuscules pour " +"le trie\n" +" -g, --gap-size=N espacer de N blancs les colonnes entre les " +"champs\n" +" -i, --ignore-file=FICHIER lire la liste des mots à ignorer de ce " +"FICHIER\n" +" -o, --only-file=FICHIER lire la liste des mots uniquement de ce " +"FICHIER\n" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" +" -r, --references donner la référence du 1er champ de chaque " +"ligne\n" +" -t, --typeset-mode - option non implanté -\n" +" -w, --width=N largeur des colonnes, références exclues\n" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" +"\n" +"Sans FICHIER, ou quand le FICHIER est -, lire de l'entrée standard. -F par " +"défaut.\n" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" +"Ce programme est un logiciel libre; vous pouvez le redistribuer ou le\n" +"modifier selon les termes de la License Publique Générale de GNU, publiée\n" +"par la Free Software Foundation (soit la version 2 ou soit, à votre\n" +"discrétion, toute version ultérieure).\n" +"\n" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" +"Ce programme est distribué dans l'espoir qu'il soit utile,\n" +"mais AUCUNE garantie n'est donnée tant pour des raisons COMMERCIALES que\n" +"pour RÉPONDRE À UN BESOIN PARTICULIER. Consulter la licence\n" +"GNU General Public License pour plus de détails.\n" +"\n" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" +"Vous devriez avoir reçu copie de la Licence Publique Générale de GNU\n" +"avec ce programme; sinon, écrire à la Free Software Foundation, Inc.,\n" +"59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" +"Afficher le nom complet du fichier du répertoire courant.\n" +"\n" + +#: src/pwd.c:74 +msgid "ignoring non-option arguments" +msgstr "rejet des arguments qui ne sont pas des options reconnues" + +#: src/pwd.c:78 +msgid "cannot get current directory" +msgstr "ne peut obtenir le répertoire courant" + +#: src/readlink.c:69 +#, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "Usage: %s [OPTION]... FICHIER\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" +"Afficher la valeur d'un lien symbolique sur la sortie standard.\n" +"\n" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" +" -f, --canonicalize canoniser en suivant chaque lien symbolique dans " +"chacun\n" +" des composants d'un chemin donné récursivement\n" +" -n, --no-newline ne pas afficher de retour de chariot en suffixe\n" +" -q, --quiet, \n" +" -s, --silent supprimer la pluplart des messages d'erreur\n" +" -v, --verbose rapporter les message d'erreur\n" + +#: src/remove.c:394 +#, c-format +msgid "cannot chdir from %s to .." +msgstr "ne peut aller du répertoire %s vers .." + +#: src/remove.c:407 src/remove.c:488 +#, c-format +msgid "cannot lstat `.' in %s" +msgstr "ne peut évaluer par lstat() « . » dans %s" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "%s modifié par dev/ino" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, c-format +msgid "cannot lstat %s" +msgstr "ne peut évaluer par lstat() %s" + +#: src/remove.c:603 +#, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "%s: descendre dans un répertoire protégé en écriture %s?" + +#: src/remove.c:604 +#, c-format +msgid "%s: descend into directory %s? " +msgstr "%s: descendre dans le répertoire %s?" + +#: src/remove.c:614 +#, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: détruire un fichier protégé en écriture %s %s? " + +#: src/remove.c:615 +#, c-format +msgid "%s: remove %s %s? " +msgstr "%s: détruire %s %s? " + +#: src/remove.c:639 +#, c-format +msgid "removed %s\n" +msgstr "détruit %s\n" + +#: src/remove.c:654 src/remove.c:1059 +#, c-format +msgid "removed directory: %s\n" +msgstr "détruire le répertoire: %s\n" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, c-format +msgid "cannot remove directory %s" +msgstr "ne peut détruire le répertoire %s" + +#: src/remove.c:815 +#, c-format +msgid "cannot open directory %s" +msgstr "ne peut ouvrir le répertoire %s" + +#: src/remove.c:896 src/remove.c:1002 +#, c-format +msgid "cannot chdir from %s to %s" +msgstr "ne peut aller du le répertoire %s vers %s" + +#: src/remove.c:904 +#, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +"AVERTISSEMENT: structure de répertoire circulaire.\n" +"Cela signifie très certainement que votre système de fichiers est corrompu.\n" +"AVISER VOTRE ADMINISTRATEUR SYSTÈME.\n" +"Le répertoire suivant fait parti du cycle:\n" +" %s\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "ne peut enlever « . » or « .. »" + +#: src/rm.c:60 +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "Paul Rubin, David MacKenzie, Richard Stallman et Jim Meyering" + +#: src/rm.c:99 src/touch.c:244 +#, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "Usage: %s [OPTION]... FICHIER...\n" + +#: src/rm.c:100 +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Enlever (unlink) les FICHIER(s).\n" +"\n" +" -d, --directory enlever le répertoire, même si non vide\n" +" (usager root seulement)\n" +" -f, --force ignorer les fichiers inexistants,\n" +" ne pas demander de confirmation\n" +" -i, --interactive demander une confirmation avant chaque destruction\n" +" -r, -R, --recursive enlever le contenu des répertoires récursivement\n" +" -v, --verbose expliquer ce qui a été fait\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" +"\n" +"Pour enlever un fichier dont le nom début par « - », par exemple « -foo »,\n" +"utiliser une de ces commandes:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" +"\n" +"Noter que si vous utilisez « rm » pour détruire un fichier, il est " +"habituellement possible\n" +"de récupérer le contenu de ce fichier. Si vous désirez plus d'assurance à " +"l'effet\n" +"de ne pas pouvoir récupérer le contenu, considérez shred.\n" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, c-format +msgid "removing directory, %s" +msgstr "destruction du répertoire %s" + +#: src/rmdir.c:146 +#, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "Usage: %s [OPTION]... RÉPERTOIRE...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" +"Enlever les RÉPERTOIRES, s'ils sont vides.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignorer les échecs qui sont causées uniquement\n" +" en raison d'un répertoire qui n'est pas vide\n" + +#: src/rmdir.c:154 +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +" -p, --parents enlever le RÉPERTOIRE, ensuite essayer d'enlever\n" +" chaque répertoire composant le nom du chemin,\n" +" i.e. « rmdir -p a/b/c » est identique à «rmdir a/b/c a/b " +"a'.\n" +" -v, --verbose afficher un diagnostic pour chaque répertoire traité\n" + +#: src/seq.c:82 +#, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"Usage: %s [OPTION]... DERNIER\n" +" ou: %s [OPTION]... PERMIER DERNIER\n" +" ou: %s [OPTION]... PREMIER INCRÉMENT DERNIER\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" +"Afficher les nombres du PREMIER jusqu'au DERNIER,\n" +"selon le PAS d'incrémentation.\n" +"\n" +" -f, --format FORMAT utiliser le style de FORMAT de printf(3)\n" +" (par défaut: %g)\n" +" -s, --separator CHAÎNE utiliser la CHAÎNE pour séparer les nombres\n" +" (par défaut: \\n)\n" +" -w, --equal-width équilibrer les largeurs en remplissant\n" +" par des zéros de tête\n" + +#: src/seq.c:96 +#, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" +"\n" +"Si PREMIER ou PAS sont omis, ils prennent la valeur 1 par défaut.\n" +"PREMIER, PAS, DERNIER sont valeurs interprétées en notation flottante.\n" +"PAS doit être > 0 si PREMIER est plus petit que DERNIER et\n" +"négatif autrement. Lorsque fourni, l'argument de FORMAT doit contenir\n" +"exactement un format de style printf, \n" +"et la notation flottante %e, %f, or %g.\n" + +#: src/seq.c:119 +#, c-format +msgid "invalid floating point argument: %s" +msgstr "arguement en virgule flottante invalide: %s" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" +"lorsque la valeur de départ est plus grande que la limite,\n" +"l'incrément doit être négatif." + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" +"quand la valeur de départ est plus petite que la limite,\n" +"l'incrément doit être positif" + +#: src/seq.c:423 +#, c-format +msgid "invalid format string: `%s'" +msgstr "format de chaîne invalide: « %s »" + +#: src/seq.c:445 +msgid "format string may not be specified when printing equal width strings" +msgstr "" +"format de chaîne ne peut pas être spécifié quand l'impression est égal à la " +"largeur des chaînes" + +#: src/shred.c:160 +#, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "Usage: %s [OPTIONS] FICHIER [...]\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" +"Écraser un fichier de façon répétitive, afin de rendre difficile\n" +"toute récupération des données par du matériel même coûteux.\n" +"\n" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" +" -f, --force modifier les permissions pour permettre\n" +" l'écriture si nécessaire\n" +" -n, --iterations=N écraser N fois au lieu du nombre par défaut (%d)\n" +" -s, --size=N déchiqueter N octets (les suffixes k, M, G sont " +"acceptés)\n" + +#: src/shred.c:174 +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" +" -u, --remove tronquer et détruire le fichier après l'avoir écraser\n" +" -v, --verbose afficher un indicateur de progrès\n" +" -x, --exact ne pas arrondir la taille des fichiers\n" +" jusqu'au prochain bloc complet;\n" +" comportement par défaut pour les fichiers non " +"réguliers\n" +" -z, --zero ajouter une réécriture finale avec des zéros\n" +" pour camoufler le déchiquetage du fichier\n" +" déchiqueter l'entrée standard \n" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" +"\n" +"Détruire le FICHIER si --remove (-u) est spécifié. Le défaut est de ne pas " +"détruire\n" +"les fichiers parce qu'il est commun d'opérer sur le fichier du périphérique " +"comme /dev/hda,\n" +"et habituellement ces fichiers ne sont pas détruits. Sur des fichier " +"réguliers,\n" +"la plupart des gens utilise l'option --remove.\n" +"\n" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" +"ATTENTION: noter que le déchiquetage s'appuie sur l'hypothèse que \n" +"le système de fichiers écrasera les données en place. Cela est la manière\n" +"traditionnelle de faire les choses, mais plusieurs design modernes de " +"systèmes\n" +"de fichiers ne se satisfont pas de cette hypothèse. Les exemples suivants de " +"systèmes\n" +"de fichiers sont ceux où le déchiquetage n'est pas effectif:\n" +"\n" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" +"* systèmes de fichiers à journalisation ou à structure de journalisation \n" +" comme ceux fournis avec AIX et Solaris (et JFS, ReiserFS, XFS, etc.)\n" +"\n" +"* systèmes de fichiers avec écriture redondante et soutienne les écritures\n" +" même lorsqu'il y a erreur d'écriture\n" +" comme sur les systèmes de fichiers RAID\n" +"\n" +"* systèmes de fichiers qui prennent des instantanés, comme\n" +" le serveur NFS de Network Appliance\n" +"\n" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" +"* systèmes de fichiers qui utilisent des caches temporaires,\n" +" comme NFS la version 3 clientète\n" +"\n" +"* systèmes de fichiers compressés\n" +"\n" +"Il faut ajouter que l'archivage des systèmes de fichiers et systèmes miroirs " +"distants peuvent\n" +"contenir des copies de fichiers qui n'ont pas été détruits et qui " +"permettraient qui\n" +"fichier déchiqueté soit récupéré plus tard.\n" + +#: src/shred.c:808 +#, c-format +msgid "%s: cannot rewind" +msgstr "%s: ne peut rembobiner" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "%s: pass %lu/%lu (%s)..." + +#: src/shred.c:868 +#, c-format +msgid "%s: error writing at offset %s" +msgstr "%s: erreur d'écriture au décalage %s" + +#: src/shred.c:897 +#, c-format +msgid "%s: file too large" +msgstr "%s: fichier trop gros" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "%s: passes %lu/%lu (%s)...%s" + +#: src/shred.c:936 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "%s: passes %lu/%lu (%s)...%s/%s %d%%" + +#: src/shred.c:1195 +#, c-format +msgid "%s: invalid file type" +msgstr "%s: type de fichier invalide" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s: le fichier a une taille négative." + +#: src/shred.c:1265 +#, c-format +msgid "%s: error truncating" +msgstr "%s: erreur de troncation" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "%s: ne peut déchiqueter " + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "destruction de « %s »" + +#: src/shred.c:1412 +#, c-format +msgid "%s: renamed to %s" +msgstr "%s: renommé à %s" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s: détruit" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "Ne peut enlever « %s »." + +#: src/shred.c:1551 +#, c-format +msgid "%s: invalid number of passes" +msgstr "%s: nombre de passes invalide" + +#: src/shred.c:1568 +#, c-format +msgid "%s: invalid file size" +msgstr "%s: longueur de fichier invalide" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "Jim Meyering et Paul Eggert" + +#: src/sleep.c:52 +#, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" +"Usage: %s NOMBRE[SUFFIXE]...\n" +" ou: %s OPTION\n" +"Effectuer une pause de NOMBRE de secondes. Le SUFFIXE peut être « s » pour " +"des\n" +"secondes (par défaut), « m » pour des minutes, « h » pour des heures ou « d " +"»\n" +"pour des jours. Contrairement à la plupart des implantations qui requierent " +"un\n" +"nombre entier, ici le NOMBRE peut être un nombre arbitraire en virgule " +"flottante.\n" +"\n" + +#: src/sleep.c:155 +#, c-format +msgid "invalid time interval `%s'" +msgstr "intervalle de temps invalide « %s »" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "ne peut lire l'horloge en temps réel" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "Mike Haertel et Paul Eggert" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" +"Afficher la concaténation triée de tous les FICHIERS sur la sortie " +"standard.\n" +"\n" +"Options de tri:\n" +"\n" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" +" -b, --ignore-leading-blanks ignorer les blancs de tête\n" +" -d, --dictionary-order considérer seulement les blancs et\n" +" les caractères alphanumériques\n" +" -f, --ignore-case suivre les caractères minuscules et " +"majuscules\n" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" +" -g, --general-numeric-sort comparer selon la valeur numérique des " +"caractères\n" +" -i, --ignore-nonprinting considérer seulement les caractères " +"imprimables\n" +" -M, --month-sort comparer (inconnu) < « JAN » < ... < « DÉC »\n" +" -n, --numeric-sort comparer selon la valeur numérique de la " +"chaîne\n" +" -r, --reverse afficher dans l'ordre inverse le résultat\n" +"\n" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" +"Autres options:\n" +"\n" +" -c, --check vérifier si l'entrée est triée; ne pas trier\n" +" -k, --key=POS1[,POS2] débuter avec la clé à la POS1, terminer à POS 2 " +"(origine 1)\n" +" -m, --merge faire la fusion des fichiers déjà triés; ne pas " +"trier\n" +" -o, --output=FICHIER écrire le résultat au FICHIER au lieu de la " +"sortie standard\n" +" -s, --stable stabiliser le tri en inhibant la comparaison de " +"dernier recours\n" +" -S, --buffer-size=TAILLE utiliser la TAILLE pour le tampon mémoire " +"principal\n" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" +" -t, --field-separator=SEP utiliser le SÉParateur au lieu de non- par les " +"transitions d'espace blancs\n" +" -T, --temporary-directory=RÉP utiliser le RÉP pour les fichiers " +"temporaires, pas $TMPDIR ou %s\n" +" options multiples pour spécifier de multiples " +"répertoires\n" +" -u, --unique avec -c: vérifier l'ordonnancement strict\n" +" autrement: afficher les premiers d'une passe " +"équivalente\n" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" +" -z, --zero-terminated terminer les lignes avec l'octet 0, \n" +" et non pas par un retour de chariot\n" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" +"\n" +"POS est F[.C][OPTS], où F est le numéro du champ et C le caractère de la\n" +"position dans le champ. OPTS se compose d'une ou plusieurs lettres " +"simples,\n" +"laquelle écrase l'ordonnancement global pour cette clé.\n" +"Si aucune clé n'est donnée, la ligne entière est utilisée comme clé.\n" +"\n" +"TAILLE peut être suivi d'un des suffixe multiplicatif suivant:\n" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" +"% 1% de mémoire, b 1, k 1024 (par défaut), et ainsi de suite pour M, G, T, " +"P, E, Z, Y.\n" +"\n" +"Sans FICHIER, ou quand FICHIER est -, lire de l'entrée standard.\n" +"\n" +"*** AVERTISSEMENT ***\n" +"La localisation utilisée dans l'environnement affecte l'ordre du tri.\n" +"Utiliser LC_ALL=C pour obtenir un tri selon un ordre traditionnel qui " +"utilise la valeur\n" +"native des octets.\n" + +#: src/sort.c:444 +msgid "cannot create temporary file" +msgstr "Ne peut créer de fichier temporaire" + +#: src/sort.c:467 +msgid "open failed" +msgstr "Échec d'ouverture" + +#: src/sort.c:487 src/sort.c:2496 +msgid "close failed" +msgstr "Échec de fermeture" + +#: src/sort.c:495 +msgid "write failed" +msgstr "Echec d'écriture." + +#: src/sort.c:641 +msgid "sort size" +msgstr "taille du tri" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "Échec de stat()" + +#: src/sort.c:972 +msgid "read failed" +msgstr "Échec de lecture" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "%s: %s:%s: désordre: " + +#: src/sort.c:1574 +msgid "standard error" +msgstr "erreur standard" + +#: src/sort.c:2032 +#, c-format +msgid "%s: invalid field specification `%s'" +msgstr "%s: spécification invalide du champ « %s »" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "%s: décompte « %.*s » trop grand" + +#: src/sort.c:2064 +#, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "%s: compteur invelide au départ de « %s »." + +#: src/sort.c:2298 +msgid "invalid number after `-'" +msgstr "nombre invalide après « - »" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +msgid "invalid number after `.'" +msgstr "nombre invalide après « . »" + +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "caractère égaré dans le champ de spécification" + +#: src/sort.c:2338 +msgid "invalid number at field start" +msgstr "nombre invalide dans le champ de départ" + +#: src/sort.c:2342 src/sort.c:2370 +msgid "field number is zero" +msgstr "numéro de champ est zéro" + +#: src/sort.c:2351 +msgid "character offset is zero" +msgstr "adresse relative du caractère est zéro" + +#: src/sort.c:2366 +msgid "invalid number after `,'" +msgstr "nombre invalide après « , »" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "tab multi-caractère « %s »" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "opérande surnuméraire « %s » non permise avec -c" + +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "Usage: %s [OPTION] [ENTRÉE [PRÉFIXE]]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" +"Afficher sur la sortie des morceaux de l'ENTRÉE de taille selon\n" +"PRÉFIXEaa, PRÉFIXEab, ...; le PRÉFIXE par défaut est « x ».\n" +"Sans ENTRÉE, ou quand l'ENTRÉE est -, lire l'entrée standard.\n" +"\n" + +#: src/split.c:108 +#, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" +" -a, --suffix-length=N utiliser les suffixes de longueur N (par défaut %" +"d)\n" +" -b, --bytes=N écrire N octets par fichier de sortie\n" +" -C, --line-bytes=N écrire au plus N octets par ligne\n" +" par fichier de sortie\n" +" -l, --lines=N écrire N lignes par fichier de sortie\n" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" +" --verbose afficher un diagnostic sur la sortie standard " +"d'erreur\n" +" juste avant l'ouverture du fichier de sortie\n" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "Produire les suffixes des fichiers épuisés" + +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "Création du fichier « %s »\n" + +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "Ne peut segmenter plus d'une façon." + +#: src/split.c:394 +#, c-format +msgid "%s: invalid suffix length" +msgstr "%s: longueur de suffixe invalide" + +#: src/split.c:408 src/split.c:434 +#, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: nombre d'octets invalide." + +#: src/split.c:421 +#, c-format +msgid "%s: invalid number of lines" +msgstr "%s: nombre de lignes invalide." + +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "option « -%d » est obsolète; utiliser « -l %d »" + +#: src/split.c:483 +msgid "invalid number" +msgstr "Nombre invalide." + +#: src/stat.c:326 +msgid "*** invalid date/time ***" +msgstr "*** date/heure invalide ***" + +#: src/stat.c:608 +#, c-format +msgid "cannot read file system information for %s" +msgstr "ne peut lire les informations du système de fichier pour %s" + +#: src/stat.c:684 +#, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "Usage: %s [OPTION] FICHIER...\n" + +# src/stat.c:300 MRO +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" +"Afficher l'état des fichiers ou du système de fichiers.\n" +"\n" +" -f, --filesystem afficher l'état du système de fichiers\n" +" au lieu de l'état des fichiers\n" +" -c --format=FORMAT utiliser le FORMAT spécifié au lieu du défaut\n" +" -L, --deference suivre les liens\n" +" -t, --terse afficher l'information en format terse\n" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" +"\n" +"Le format valide pour les séquences des fichiers (sans --filesystem):\n" +"\n" +" %A droits d'accès en format lisible pour un humain\n" +" %a droits d'accès en octal\n" +" %B la taille en octets de chaque bloc rapporté par `%b'\n" +" %b nombre de blocs alloués (voir %B)\n" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" +" %D numéro de périphéque en hexadécimal\n" +" %d numéro de périphérique en décimal\n" +" %F type de fichier\n" +" %f mode brut en hexadécimal\n" +" %G nom de groupe du propriétaire\n" +" %g identificateur de groupe du propriétaire\n" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" +" %h - nombre de liens directs (hard)\n" +" %i - numéro d'inode\n" +" %N - nom de fichier en citation avec référence si avec lien symbolique\n" +" %n - nom de fichier\n" +" %o - taille de bloc d'entrée/sortie\n" +" %s - taille totale, en octets\n" +" %T - type mineur de périphérique en hexadécimal\n" +" %t - type majeur de périphérique en hexadécimal\n" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" +" %U - nom de l'usager du propriétaire\n" +" %u - identificateur du propriétaire\n" +" %X - date du dernier accès en seconded depuis l'Époque\n" +" %x - date du dernier accès\n" +" %Y - date de la dernière modification en secondes depuis l'Époque\n" +" %y - date de la dernière modification\n" +" %Z - date du dernier changement en secondes depuis l'Époque\n" +" %z - date du dernier changement\n" +"\n" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" +"Séquences valides de format pour les systèmes de fichiers:\n" +"\n" +" %a - blocs lilbres disponibles pour un non super-usager\n" +" %b - total du blocs de données dans le systèmes de fichiers\n" +" %c - total de noeuds de fichiers dans le système de fichiers\n" +" %d - noeuds de fichiers libres dans le système de fichiers\n" +" %f - blocs libres dans le système de fichiers\n" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" +" %i - identificateur du sytème de fichiers en hexadécimal\n" +" %l - longueur maximum des noms de fichiers\n" +" %n - nom de fichier\n" +" %s - taille optimale de bloc de transfert\n" +" %T - afficher en format lisible pour un humain\n" +" %t - afficher en hexadécimal\n" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" +"Usage: %s [-F PÉRIPHÉRIQUE] [--file=PÉRIPHÉRIQUE] [SÉLECTION]...\n" +" ou: %s [-F PÉRIPHÉRIQUE] [--file=PÉRIPHÉRIQUE] [-a|--all]\n" +" ou: %s [-F PÉRIPHÉRIQUE] [--file=PÉRIPHÉRIQUE] [-g|--save]\n" + +#: src/stty.c:504 +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" +"Afficher ou modifier les caractéristiques du terminal.\n" +"\n" +" -a, --all afficher toutes les caractéristiques courantes dans\n" +" un format humainement lisible\n" +" -g, --save afficher toutes les caractéristiques dans un format\n" +" lisible par « stty »\n" +" -F, --file=PÉRIPHÉRIQUE\n" +" utiliser le périphérique spécifié au lieu de stdin\n" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" +"\n" +"Un « - » optionnel avant SÉLECTION indique une négation. Un * indique une\n" +"SÉLECTION non-POSIX. Le système détermine les options applicables.\n" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" +"\n" +"Caractères spéciaux:\n" +"* dsusp CAR CAR émettra un signal d'arrêt de terminal une\n" +" fois le tampon d'entrée vidé\n" +" eof CAR CAR transmettra une fin de fichier\n" +" (pour stopper l'ingestion à l'entrée)\n" +" eol CAR CAR terminera la ligne\n" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" +"* eol2 CAR CAR servira de caractère alternatif de fin de ligne\n" +" erase CAR CAR servira de touche d'effacement sur le dernier\n" +" caractère entrée\n" +" intr CAR CAR transmettra un signal d'interruption\n" +" kill CAR CAR effacera la ligne courante\n" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" +"* lnext CAR CAR entrera le prochain caractère entre guillemets\n" +" quit CAR CAR transmettra un signal de fin\n" +"* rprnt CAR CAR servira à ré-afficher la dernière ligne\n" +" start CAR CAR permettra la poursuite de l'affichage de\n" +" sortie après avoir été stoppé\n" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" +" stop CAR CAR stoppera l'affichage de sortie\n" +" susp CAR CAR transmettra un signal d'arrêt de terminal\n" +"* swtch CAR CAR permettra de passer à une couche différente de shell\n" +"* werase CAR CAR effacera le dernier mot tapé\n" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" +"\n" +"Configurations spéciales:\n" +" N initialiser les vitesses d'entrée et de sortie à N bauds\n" +"* cols N indiquer au kernel que le terminal a N colonnes\n" +"* columns N identique à cols N\n" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" +" ispeed N initialiser la vitesse d'entrée à N\n" +"* line N utiliser le conditionnement propre de la ligne N\n" +" min N avec -icanon, initialiser à N le nombre de caractères\n" +" nécessaires pour obtenir une lecture complète\n" +" ospeed N initialiser la vitesse de sortie à N\n" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" +"* rows N indiquer au kernel que le terminal a N lignes\n" +"* size afficher le nombre de lignes et de colonnes\n" +" selon les paramètres du kernel\n" +" speed afficher la vitesse du terminal\n" +" time N avec -icanon, initialiser le délai\n" +" d'inactivité de lecture à N dizièmes de seconde\n" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" +"\n" +"Configurations de contrôle:\n" +" [-]clocal inhiber les signaux de contrôle du modem\n" +" [-]cread autoriser la réception sur l'entrée\n" +"* [-]crtscts autoriser RTS/CTS handshaking\n" +" csN initialiser la taille des caractères à N bits,\n" +" N variant entre [5..8]\n" + +#: src/stty.c:570 +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" +" [-]cstopb utiliser 2 bits d'arrêt par caractère (un avec « - »)\n" +" [-]hup transmettre un signal de raccrochement quand le\n" +" dernier processus ferme le lien tty\n" +" [-]hupcl identique à [-]hup\n" +" [-]parenb génèrer le bit de parité pour la sortie et\n" +" traiter l'entrée avec un bit de parité implicite\n" +" [-]parodd utiliser une parité impaire (paire avec « - »)\n" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" +"\n" +"Configurations d'entrée:\n" +" [-]brkint le « break » provoque un signal d'interruption\n" +" [-]icrnl traduire le retour de chariot en saut de ligne\n" +" [-]ignbrk ignorer le caractère break\n" +" [-]igncr ignorer le retour de chariot\n" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" +" [-]ignpar ignorer les caractères ayant des erreurs de parité\n" +"* [-]imaxbel indiquer par un bip sonore et ne pas vider le tampon\n" +" d'entrée lors de l'arrivée d'un caractère\n" +" [-]inlcr traduire le saut de ligne en retour de chariot\n" +" [-]inpck autoriser la vérification de la parité à l'entrée\n" +" [-]istrip mettre à zéro le bit du haut (8e) d'un caractère de " +"l'entrée\n" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" +"* [-]iuclc traduire les majuscles en minuscules\n" +"* [-]ixany permettre à n'importe quel caractère de relancer " +"l'affichage\n" +" sur la sortie, pas uniquement le caractère de redémarrage\n" +" [-]ixoff autoriser l'envoie d'un caractère d'arrêt/départ\n" +" [-]ixon autoriser le contrôle de flux XON/XOFF\n" +" [-]parmrk indiquer les erreur de parité par une séquence\n" +" de caractères (255-0)\n" +" [-]tandem identique à [-]ixoff\n" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" +"\n" +"Configurations de sortie:\n" +"* bsN style du délai de retour arrière, N parmi [0..1]\n" +"* crN style du délai du retour de chariot, N parmi [0..3]\n" +"* ffN style du délai du saut de page, N parmi [0..1]\n" +"* nlN style du délai du saut de ligne, N parmi [0..1]\n" + +#: src/stty.c:608 +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" +"* [-]ocrnl traduire un retour de chariot par un saut de ligne\n" +"* [-]ofdel utiliser des caractères d'effacement comme caractère\n" +" de remplissage au lieu de caractères nuls\n" +"* [-]ofill utiliser le remplissage de caractères au lieu du délai\n" +" par minuterie\n" +"* [-]olcuc traduire les minuscules en majuscules\n" +"* [-]onlcr traduire le saut de ligne en retour de chariot-saut de " +"ligne\n" +"* [-]onlret le saut de ligne provoque un retour de chariot\n" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" +"* [-]onocr ne pas afficher un retour de chariot en première colonne\n" +" [-]opost exécuter un post-traitement de sortie\n" +"* tabN style du délai de tabulation horizontale, N parmi [0..3]\n" +"* tabs identique à tab0\n" +"* -tabs identique à tab3\n" +"* vtN style du délai de tabulation verticale, N parmi [0..1]\n" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" +"\n" +"Configurations locales:\n" +" [-]crterase faire l'écho du caractère « erase » selon la séquence\n" +" retour arrière-espace-retour arrière\n" +"* crtkill annuler les ligne respectant la configuration\n" +" « echoprt » et « echoe »\n" +"* -crtkill annuler les lignes respectant la configuration\n" +" « echoctl » et « echok »\n" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" +"* [-]ctlecho faire l'écho des caractères de contrôle par une notation\n" +" en chapeau (« ^c »)\n" +" [-]echo faire l'écho des caractères à l'entrée\n" +"* [-]echoctl identique à [-]ctlecho\n" +" [-]echoe identique à [-]crterase\n" +" [-]echok faire l'écho d'un saut de ligne après un caractère " +"d'annulation\n" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" +"* [-]echoke identique à [-]crtkill\n" +" [-]echonl faire l'écho d'un saut de ligne même s'il n'y pas\n" +" d'écho des autres caractères\n" +"* [-]echoprt faire l'écho des caractères d'effacement par retour " +"arrière,\n" +" entre « \\ » et « / »\n" +" [-]icanon autoriser les caractères spéciaux\n" +" « erase », « kill », « werase », et « rprnt »\n" +" [-]iexten autoriser les caractères spéciaux non-POSIX\n" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" +" [-]isig autoriser les caractères spéciaux\n" +" « interrupt », « quit », et « suspend »\n" +" [-]noflsh inhiber la vidange après réception des caractères\n" +" « interrupt » et « quit »\n" +"* [-]prterase identique à [-]echoprt\n" +"* [-]tostop stopper les tâches d'arrière plan qui essaient d'écrire\n" +" sur le terminal\n" +"* [-]xcase avec « icanon », faire l'échappement avec « \\ »\n" +" pour les majuscules\n" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" +"\n" +"Configuration par combinaison:\n" +"* [-]LCASE identique à [-]lcase\n" +" cbreak identique à -icanon\n" +" -cbreak identique à icanon\n" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" +" cooked identique à brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof et eol selon leur valeur par défaut\n" +" -cooked identique à raw\n" +" crt identique à echoe echoctl echoke\n" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" +" dec identique à echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +"* [-]decctlq identique à [-]ixany\n" +" ek réinitialiser les caractères erase et kill à leur valeur\n" +" par défaut\n" +" evenp identique à parenb -parodd cs7\n" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" +" -evenp identique à -parenb cs8\n" +"* [-]lcase identique à xcase iuclc olcuc\n" +" litout identique à -parenb -istrip -opost cs8\n" +" -litout identique à parenb istrip opost cs7\n" +" nl identique à -icrnl -onlcr\n" +" -nl identique à icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" +" oddp identique à parenb parodd cs7\n" +" -oddp identique à -parenb cs8\n" +" [-]parity identique à [-]evenp\n" +" pass8 identique à -parenb -istrip cs8\n" +" -pass8 identique à parenb istrip cs7\n" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" +" raw identique à -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 fois 0\n" +" -raw identique à cooked\n" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" +" sane identique à cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, et tous les " +"caractères\n" +" spéciaux à leur valeur par défaut.\n" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" +"\n" +"Prendre en charge la ligne « tty » reliée à l'entrée standard. Sans " +"argument,\n" +"afficher la vitesse, le conditionnement de ligne et les modifications " +"appliquées\n" +"par 'stty sane'. Dans les configurations,\n" +"CARactère est pris littéralement, ou codé comme ^c, 0x37, 0177 ou 127;\n" +"les valeurs spéciales comme ^- ou indéfinies sont utilisées pour inhiber\n" +"les caractères spéciaux.\n" + +#: src/stty.c:787 +msgid "only one device may be specified" +msgstr "un seul périphérique peut être spécifié" + +#: src/stty.c:882 +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "" +"les options pour le mode bavard et les styles de sortie de stty-readable\n" +"sont mutuellement exclusives" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "" +"Lors de la spécification d'un style de sortie, \n" +"les mode peuvent ne pas être initialisés." + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "%s: n'a pu réinitialiser en mode non par bloc" + +#: src/stty.c:957 src/stty.c:1064 +#, c-format +msgid "invalid argument `%s'" +msgstr "argument invalide « %s »" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, c-format +msgid "missing argument to `%s'" +msgstr "argument manquant pour « %s »" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "%s: incapable d'exécuter toutes les opérations demandées." + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "new_mode: mode\n" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "%s: aucune information sur la taille pour ce périphérique." + +#: src/stty.c:1944 +#, c-format +msgid "invalid integer argument `%s'" +msgstr "argument numérique invalide « %s »" + +#: src/su.c:289 +msgid "Password:" +msgstr "Mot de passe:" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "getpass(): ne peut ouvrir /dev/tty" + +#: src/su.c:350 +msgid "cannot set groups" +msgstr "ne peut initialiser les groupes" + +#: src/su.c:354 +msgid "cannot set group id" +msgstr "ne peut initialiser l'identificateur de groupe" + +#: src/su.c:356 +msgid "cannot set user id" +msgstr "ne peut initialiser l'identificateur de l'usager" + +#: src/su.c:437 +#, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "Usage: %s [OPTION]... [-] [USAGER [ARG]...]\n" + +#: src/su.c:438 +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" +"Modifier les identificateurs effectifs de l'usager et de groupe comme\n" +"étant ceux de l'USAGER.\n" +"\n" +" -, -l, --login utiliser ce shell comme étant celui de\n" +" la session de travail\n" +" -c, --commmand=COMMANDE passer la COMMANDE au shell avec -c\n" +" -f, --fast passer -f au shell (valable pour csh ou " +"tcsh)\n" +" -m, --preserve-environment ne pas réinitialiser les variables\n" +" d'environnement\n" +" -p identique à -m\n" +" -s, --shell=SHELL lancer le SHELL si /etc/shells le permet\n" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" +"\n" +"Un tiret - implique -l. Si l'argument USAGER n'est pas fourni,\n" +"l'usager « root » est utilisé.\n" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "L'usager %s n'existe pas." + +#: src/su.c:552 +msgid "incorrect password" +msgstr "Mot de passe incorrect." + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "Utilisation du shell %s restreint." + +#: src/su.c:580 +#, c-format +msgid "warning: cannot change directory to %s" +msgstr "AVERTISSEMENT: ne peut changer de répertoire vers %s" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "Kayvan Aghaiepour et David MacKenzie" + +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" +"Imprimer la somme de contrôle et le nombre de blocs pour chaque FICHIER.\n" +"\n" +" -r annuler -s et utiliser l'algorithme de sommation BSD\n" +" avec des blocs de 1K octets\n" +" -s, --sysv utiliser l'algorithme de sommation du Système V\n" +" avec des blocs de 512 octets\n" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" +"Forcer l'écriture des blocs modifiés sur disque et\n" +"la mise à jour du super bloc.\n" + +#: src/sync.c:70 src/tty.c:112 +msgid "ignoring all arguments" +msgstr "tous les arguments sont ignorés" + +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr " --help afficher l'aide-mémoire\n" + +#: src/sys2.h:494 +msgid " --version output version information and exit\n" +msgstr " --version afficher le nom et la version du logiciel\n" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "Jay Lepreau et David MacKenzie" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Écrire chaque FICHIER sur la sortie standard, la dernière ligne en premier.\n" +"Sans FICHIER, ou quand FICHIER est -, lire de l'entrée standard.\n" +"\n" + +#: src/tac.c:139 +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" +" -b, --before placer le séparateur avant plutôt qu'après\n" +" -r, --regex interpréter le séparateur comme une expression\n" +" régulière\n" +" -s, --separator=CHAÎNE utiliser la CHAÎNE comme séparateur au lieu\n" +" du saut de ligne\n" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "stdin: erreur de lecture." + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "Le séparateur ne peut être vide." + +#: src/tail.c:49 +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "Paul Rubin, David MacKenzie, Ian Lance Taylor et Jim Meyering" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Afficher les %d dernières lignes de chaque FICHIER sur la sortie standard.\n" +"Avec plus d'un fichier FICHIER, précéder chacun d'une en-tête donnant le " +"nom.\n" +"Sans FICHIER, ou quand FICHIER est -, lire de l'entrée standard.\n" +"\n" + +# src/tail.c:250 +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" +" --retry continuer de tenter d'ouvrir le fichier même " +"s'il\n" +" est inaccessible lorsque tail démarre ou s'il " +"devient\n" +" inaccessible plus tard -- utile seulement avec -" +"f\n" +" -c, --bytes=N afficher les N derniers octets\n" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" +" -f, --follow[={nom|descripteur}]\n" +" afficher les dernières données ajoutées tant\n" +" que le fichier s'accroît; -f, --follow, et\n" +" --follow=descripteur sont équivalents\n" +" -F identique à --follow=nom --retry\n" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" +" -n, --lines=N afficher les N dernièreslignes, au lieu des %d\n" +" --max-unchanged-stats=N\n" +" avec l'option --follow=nom, le FICHIER qui n'a " +"pas\n" +" changé de taille après N itérations (par défaut %" +"d)\n" +" afin de vérifier s'il a été détruit ou s'il a " +"changé\n" +" de nom (c'est le cas habituellement des fichiers\n" +" de journalisation dont on fait la rotation)\n" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" +" --pid=PID avec -f, terminer après le processus ID, PID est " +"arrêté\n" +" -q, --quiet, --silent ne jamais afficher l'en-tête avec\n" +" les noms de fichiers\n" +" -s, --sleep-interval=S avec -f, attendre S secondes (1.0 par défaut)\n" +" entre les itérations\n" +" -v, --verbose toujours afficher les en-têtes des noms de " +"fichier\n" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" +"\n" +"Si le premier caractère de N (le nombre d'octets ou de lignes) est un « + " +"»,\n" +"afficher à partir du Nième item depuis le début de chaque fichier,\n" +"autrement, afficher les derniers N items du fichier.\n" +"N peut avoir un suffixe multiplicateur:\n" +"b pour 512, k pour 1024, m pour 1048576 (1 Meg).\n" + +# src/tail.c:290 +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" +"Avec l'option --follow (-f), tail utilise par défaut le descripteur de " +"fichier\n" +"qui permet de suivre l'évolution du fichier ciblé même s'il change de nom.\n" +"Tail continuera de suivre l'évolution du fichier jusqu'à la fin. " + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" +"Ce comportement par défaut n'est pas désirable lorsqu'on désire suivre " +"l'évolution\n" +"d'un fichier à l'aide de son nom et non pas par le descripteur de fichier (i." +"e. cas\n" +"lors de la rotation des journaux). Utiliser --follow=nom dans ce cas.\n" +"À ce moment, tail suivra l'évolution du fichier en l'ouvrant périodiquement\n" +"afin de vérifier s'il a été détruit ou recréé par un autre programme.\n" + +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "fermeture %s (fd=%d)" + +#: src/tail.c:391 +#, c-format +msgid "%s: cannot seek to offset %s" +msgstr "%s: ne peut repérer selon le déplacement %s" + +#: src/tail.c:395 +#, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "%s: ne peut repérer selon le déplacement relatif %s" + +#: src/tail.c:400 +#, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "%s: ne peut repérer la fin selon le déplacement relatif %s" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "« %s » est devenu inaccessible" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "" +"« %s » a été remplacé par un fichier dont on ne peut déterminer la taille; " +"abandon sur ce nom." + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "%s» est devenu accessible" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "« %s » a été remplacé; à la suite de la fin d'un nouveau fichier" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "« %s » a été remplacé; à la suite de la fin d'un nouveau fichier" + +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "%s: fichier tronqué" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "aucun fichier restant" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "" +"%s: ne peut déterminer la fin de ce type de fichier; abandon sur ce nom" + +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "%c: caractère invalide en suffixe dans une option désuète." + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"Trop de arguments; lors de l'utilisation d'une syntaxe désuète (%s) de tail\n" +"Il ne peut y avoir plus d'un fichier en argument. Utiliser l'option -n ou -" +"b\n" +"équivalente à la place." + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"AVERTISSEMENT: l'utilisation de 2 ou plusieurs fichiers en argument\n" +"avec une syntaxe désuète des options (%s) de tail n'est pas portable.\n" +"Utiliser les options équivalentes -n ou -c à la place." + +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "option « %s » est obsolète; utiliser « %s-%c %.*s »" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "%s est plus grand que la taille maximale possible sur ce système" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "" +"%s: nombre maximum invalide de changements d'états entre les ouvertures" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "%s: nombre maximum invalide de changements consécutifs de taille" + +#: src/tail.c:1534 +#, c-format +msgid "%s: invalid PID" +msgstr "%s: PID invalide." + +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: nombre de secondes invalide." + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "AVERTISSEMENT: --retry est utile seulement si suivi par un nom" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "" +"AVERTISSEMENT: PID ignoré; --pid=PID est utile seulement lorsqu'il suit" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "AVERTISSEMENT: --pid=PID n'est pas supporté sur ce système" + +#: src/tee.c:33 +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "Mike Parker, Richard Stallman et David MacKenzie" + +#: src/tee.c:64 +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" +"Copier de l'entrée standard vers chaque FICHIER, \n" +"et également vers la sortie standard.\n" +"\n" +" -a, --append accoler la sortie au(x) FICHIER(s),\n" +" sans les écraser\n" +" -i, --ignore-interrupts ignorer les signaux d'interruption\n" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "argument attendu\n" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "expression en valeur entière attendue %s\n" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "« ) » attendu\n" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "attendait « ) », mais a trouvé %s\n" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "%s: opérateur unaire attendu.\n" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "%s: opérateur binaire attendu.\n" + +#: src/test.c:424 +msgid "before -lt" +msgstr "avant -lt" + +#: src/test.c:432 +msgid "after -lt" +msgstr "après -lt" + +#: src/test.c:446 +msgid "before -le" +msgstr "avant -le" + +#: src/test.c:453 +msgid "after -le" +msgstr "après -le" + +#: src/test.c:469 +msgid "before -gt" +msgstr "avant -gt" + +#: src/test.c:476 +msgid "after -gt" +msgstr "après -gt" + +#: src/test.c:490 +msgid "before -ge" +msgstr "avant -ge" + +#: src/test.c:497 +msgid "after -ge" +msgstr "après -ge" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "-nt ne permet pas -l\n" + +#: src/test.c:526 +msgid "before -ne" +msgstr "avant -ne" + +#: src/test.c:533 +msgid "after -ne" +msgstr "après -ne" + +#: src/test.c:549 +msgid "before -eq" +msgstr "avant -eq" + +#: src/test.c:556 +msgid "after -eq" +msgstr "après -eq" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "-ef ne permet pas -l\n" + +#: src/test.c:586 +msgid "-ot does not accept -l\n" +msgstr "-ot ne permet pas -l\n" + +#: src/test.c:593 +msgid "unknown binary operator" +msgstr "opérateur binaire inconnu" + +#: src/test.c:781 +msgid "after -t" +msgstr "après -t" + +#: src/test.c:979 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"Usage: %s EXPRESSION\n" +" or: [EXPRESSION]\n" +" or: %s OPTION\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" +"Terminer l'exécution avec l'état déterminé par l'EXPRESSION.\n" +"\n" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" +"\n" +"L'EXPRESSION est vraie ou fausse et initialise l'état de fin d'exécution. " +"Selon un des options:\n" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" +"\n" +" ( EXPRESSION ) EXPRESSION est vraie\n" +" ! EXPRESSION EXPRESSION est fausse\n" +" EXPRESSION1 -a EXPRESSION2 si les deux EXPRESSION1 et EXPRESSION2\n" +" sont vraies\n" +" EXPRESSION1 -o EXPRESSION2 si l'une ou l'autre des expressions:\n" +" EXPRESSION1 ou EXPRESSION2 est vraie\n" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" +"\n" +" [-n] CHAÎNE si la longueur de la CHAÎNE n'est pas nulle\n" +" -z CHAÎNE si la longueur de la CHAÎNE est nulle\n" +" CHAÎNE1 = CHAÎNE2 si les chaînes sont identiques\n" +" CHAÎNE1 != CHAÎNE2 si les chaînes sont différentes\n" + +#: src/test.c:1009 +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" +"\n" +" ENTIER1 -eq ENTIER2 si ENTIER1 est égal à ENTIER2\n" +" ENTIER1 -ge ENTIER2 si ENTIER1 est plus grand ou égal à ENTIER2\n" +" ENTIER1 -gt ENTIER2 si ENTIER1 est plus grand que ENTIER2\n" +" ENTIER1 -le ENTIER2 si ENTIER1 est plus petit ou égal à ENTIER2\n" +" ENTIER1 -lt ENTIER2 si ENTIER1 est plus petit que ENTIER2\n" +" ENTIER1 -ne ENTIER2 si ENTIER1 n'est pas égal à ENTIER2\n" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" +"\n" +" FICHIER1 -ef FICHIER2 FICHIER1 et FICHIER2 ont les mêmes numéros\n" +" de périphérique et d'inode\n" +" FICHIER1 -nt FICHIER2 FICHIER1 est plus récent (date de modification)\n" +" que FICHIER2\n" +" FICHIER1 -ot FICHIER2 FICHIER1 est plus vieux que FICHIER2\n" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" +"\n" +" -b FICHIER FICHIER existe et est de type à blocage spécial\n" +" -c FICHIER FICHIER existe et est de type caractère spécial\n" +" -d FICHIER FICHIER existe et est un répertoire\n" +" -e FICHIER FICHIER existe\n" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" +" -f FICHIER FICHIER existe et est de type régulier\n" +" -g FICHIER FICHIER existe et le bit « set-group-ID », est initialisé\n" +" -G FICHIER FICHIER existe et appartient au groupe effectif ID\n" +" -k FICHIER FICHIER existe et le bit « sticky » est initialisé\n" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" +" -L FICHIER FICHIER existe et est un lien symbolique\n" +" -O FICHIER FICHIER existe et appartient à l'usager effectif ID\n" +" -p FICHIER FICHIER existe et est un relais nommé (named pipe)\n" +" -r FICHIER FICHIER existe et est lisible\n" +" -s FICHIER FICHIER existe et a une taille non nulle\n" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" +" -S FICHIER FICHIER existe et est de type « socket »\n" +" -t [DF] descripteur de fichier DF (sortie standard par défaut)\n" +" est ouvert sur le terminal\n" +" -u FICHIER FICHIER existe et le bit « set-user-ID », est initialisé\n" +" -w FICHIER FICHIER existe et l'écriture y est permise\n" +" -x FICHIER FICHIER existe et exécutable\n" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" +"\n" +"Portez attention au fait que les parenthèses doivent être précédées par des\n" +"barres obliques inverses (pour éviter l'échappement vers un shell).\n" +"Un ENTIER peut être évalué par la notation -l CHAÎNE, laquelle\n" +"évalue alors la longueur de la chaîne.\n" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "CORRIGEZ-MOI: ksb et mjb" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "« ] » manquant\n" + +#: src/test.c:1125 +msgid "too many arguments\n" +msgstr "trop d'arguments\n" + +#: src/touch.c:39 +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie et Randy Smith" + +#: src/touch.c:164 src/touch.c:179 +#, c-format +msgid "creating %s" +msgstr "création de %s" + +#: src/touch.c:222 +#, c-format +msgid "cannot touch %s" +msgstr "ne peut faire un touch sur %s" + +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "initialisation des dates de %s" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" +"Mettre à jour les dates d'accès et de modification de chaque FICHIER\n" +"selon la date courante.\n" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" +" -a modifier seulement la date d'accès\n" +" -c, --no-create ne créer aucun fichier\n" +" -d, --date=CHAÎNE analyser la CHAÎNE et l'utiliser au lieu\n" +" de la date courante\n" +" -f (ignorée)\n" +" -m modifier seulement la date de modification\n" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" +" -r, --file=FICHIER utiliser la date du FICHIER comme référence\n" +" au lieu de la date courante\n" +" -t DATE utiliser la DATE selon le format:\n" +" [[CC]AA]MMJJhhmm[.ss]\n" +" comme tampon date-heure au lieu de la date courante\n" +" --time=CODE -a pour « atime », -m pour « mtime », -m pour " +"modifié,\n" +" -a pour utilisé\n" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" +"\n" +"Noter que les options -d et -t acceptent différents formats de date et " +"d'heure.\n" + +#: src/touch.c:311 src/touch.c:331 +#, c-format +msgid "invalid date format %s" +msgstr "format de date invalide %s" + +#: src/touch.c:355 +msgid "cannot specify times from more than one source" +msgstr "ne peut spécifier les dates pour plus d'une source" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "" +"AVERTISSEMENT: `touch %s' est obsolète; utiliser `touch -t %04d%02d%02d%02d%" +"02d.%02d'" + +#: src/touch.c:399 +msgid "file arguments missing" +msgstr "arguments fichier manquants" + +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "Usage: %s [OPTION]... ENSEMBLE1 [ENSEMBLE2]\n" + +#: src/tr.c:331 +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" +"Traduire, compresser, et/ou éliminer des caractères de l'entrée standard,\n" +"par écriture sur la sortie standard.\n" +"\n" +" -c, --complement complémenter à un l'ENSEMBLE1 \n" +" -d, --delete éliminer les caractères de l'ENSEMBLE1\n" +" et ne pas traduire\n" +" -s, --squeeze-repeats remplacer chaque séquence d'entrée de caractères " +"répétés\n" +" qui apparaît dans l'ENSEMBLE1 par une seule " +"occurence\n" +" de ce caractère\n" +" -t, --truncate-set1 tronquer d'abord l'ENSEMBLE1 à la longueur\n" +" de l'ENSEMBLE2\n" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" +"\n" +"Les ENSEMBLES sont spécifiés comme des chaînes de caractères.\n" +"La plupart se représente eux-mêmes.\n" +"Les séquences d'interprétation sont:\n" +"\n" +" \\NNN caractère ayant la valeur octale NNN (1 à 3 chiffres " +"octaux)\n" +" \\\\ barre oblique inverse\n" +" \\a cloche sonore \n" +" \\b caractère d'effacement\n" +" \\f saut de page \n" +" \\n saut de ligne \n" +" \\r retour\n" +" \\t saut horizontal\n" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" +" \\v saut vertical \n" +" CAR1-CAR2 tous les caractères de CAR1 à CAR2 en ordre croissant\n" +" [CAR*] dans ENS2, copie de CAR jusqu'à longueur de ENS1\n" +" [CAR*RÉP] RÉPéter copies de CAR, RÉPéter en octal si débute par 0\n" +" [:alnum:] toutes les lettres et les chiffres\n" +" [:alpha:] toutes les lettres\n" +" [:blank:] tous les blancs horizontaux\n" +" [:cntrl:] tous les caractères de contrôle\n" +" [:digit:] tous les chiffres\n" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" +" [:graph:] tous les caractères imprimables, sans inclure les blancs\n" +" [:lower:] tous les lettres minuscules\n" +" [:print:] tous les caractères imprimables, incluant les blancs\n" +" [:punct:] tous les caractères de ponctuation\n" +" [:space:] tous les sauts verticaux ou horizontaux\n" +" [:upper:] toutes les lettres majuscules\n" +" [:xdigit:] tous les chiffres hexadécimaux\n" +" [=CAR=] tous les caractères équivalents à CAR\n" + +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" +"\n" +"La traduction survient si -d n'est pas fourni et si les deux ensembles\n" +"ENSEMBLE1 et ENSEMBLE2 sont fournis en argument.\n" +"L'option -t peut être utilisée seulement lors de la traduction. " +"L'ENSEMBLE2\n" +"est dilaté selon la taille de l'ENSEMBLE1 par répétition des derniers\n" +"caractères si nécessaire." + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" +"Les caractères en excès de l'ENSEMBLE2 sont ignorés.\n" +"Seuls [:lower:] et [:upper:] sont garants d'une expansion en ordre\n" +"en ordre croissant; utilisé dans l'ENSEMBLE2 lors de la traduction, ils " +"peuvent\n" +"seulement être utilisés par paire pour spécifier une conversion de la casse." + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" +"L'option -s s'emploie avec l'ENSEMBLE1 sinon il n'y a pas de traduction ou\n" +"d'élimination autrement la compression utilise l'ENSEMBLE2 et se produit " +"après\n" +"la traduction ou l'élimination.\n" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" +"AVERTISSEMENT: l'échappement ambigu octal \\%c%c%c est\n" +" interprété comme une séquence de 2-octets \\0%c%c, « %c »" + +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "Échappement barre oblique inverse invalide à la fin d'une chaîne." + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "Échappement barre oblique inverse invalide « \\%c »" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "" +"bornes d'intervalle de « %s-%s » sont en ordre inverse de séquence\n" +"de comparaison." + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "compte de répétions « %s » invalide dans le construit [c*n]" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "caractères de nom de classe « [::] » manquants" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "caractères d'équivalence de classe « [==] » manquants" + +#: src/tr.c:1025 +#, c-format +msgid "invalid character class `%s'" +msgstr "caractère de classe « %s » invalide" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "%s: opérande d'équivalence de classe doit être un caractère simple" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "le construit [c*] de répétition ne peut apparaître dans la chaîne1" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "un seul construit de répétition [c*] peut apparaître dans chaîne2" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "" +"les expressions [=c=] ne peuvent apparaître dans chaîne2 lors de traductions" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "lorsque que l'ensemble1 n'est pas tronqué, chaîne2 ne peut être vide" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" +"lors de traduction avec des caractères complémentées de classes,\n" +"la chaîne2 doit ramener tous les caractères du domaine à un seul" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" +"lors de traductions la seule classe de caractères pouvant apparaître\n" +"dans chaîne2 est « upper » ou « lower »" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "" +"le construit [c*] peut apparaître dans chaîne2 seulement lors d'une\n" +"traduction" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "deux chaînes doivent être fournies lors de la traduction" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "" +"deux chaînes doivent être fournies lorsqu'il y a destruction\n" +"et réduction des répétitions" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" +"seule une chaîne peut être fournie lors d'une destruction sans\n" +"réduction des répétitions" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "" +"au moins une chaîne doit être fournie lors de réduction des répétitions" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "construit [:upper:] et/ou [:lower:] mal aligné" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" +"correspondance d'identité invalide: lors de la traduction de contruits\n" +"[:lower:] ou [:upper:], le construit dans la chaîne1 doit être aligné\n" +"avec le construit correspondant ([:upper:] ou [:lower:] respectivement)\n" +"dans la chaîne2" + +#: src/true.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Usage: %s [arguments ignorés de la ligne de commande]\n" +" ou: %s OPTION\n" +"Terminer avec un statut indiquant l'échec.\n" +"\n" +"Ces options ne peuvent pas être abrégées.\n" +"\n" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Usage: %s [OPTION] [FICHIER]\n" +"Afficher une liste totalement ordonnée consistante avec l'ordenancement\n" +"partiel donné dans le FICHIER.\n" +"Sans FICHIER, ou quand le FICHIER est -, lire de l'entrée standard.\n" +"\n" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "%s: l'entrée contient une boucle:" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "Un seul argument peut être spécifié." + +#: src/tty.c:63 +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" +"Afficher le nom de fichier du terminal relié à l'entrée standard.\n" +"\n" +" -s, --silent, --quiet ne rien afficher, retourner seulement un\n" +" statut de fin d'exécution\n" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "n'est pas un « tty »" + +#: src/uname.c:111 +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" +"Afficher certaines informations identifiant le système.\n" +"Sans OPTION, identique à -s.\n" +"\n" +" -a, --all afficher toutes les informations\n" +" -s, --kernel-name afficher le nom du kernel\n" +" -n, --nodename afficher le nom du noeud réseau du poste " +"(hostname)\n" +" -r, --release afficher la révision de la version du\n" +" système d'exploitation\n" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" +" -v, --kernel-version afficher la version du kernel\n" +" -m, --machine afficher le nom du système d'exploitation\n" +" -p, --processor afficher le type de processeur\n" +" -i, --hardware-platform afficher les infos matérielles de la plate-forme\n" +" -o, --operating-system afficher les infos du système d'exploitation\n" + +#: src/uname.c:226 +msgid "cannot get system name" +msgstr "ne peut obtenir le nom de système" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Convertir les blancs d'espacement de chaque FICHIER par des tabulations,\n" +"lors de l'écriture sur la sortie standard.\n" +"Sans FICHIER, ou quand le FICHIER est -, lire de l'entrée standard.\n" + +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" +" -a, --all convertir tous les espaces blancs,\n" +" au lieu du blanc d'espacement initial\n" +" --first-only convertir seulement les séquences de tête d'espaces " +"blancs (écrase -a)\n" +" -t, --tabs=N utiliser N caractères de tabulations au lieu de 8\n" +" -t, --tabs=LISTE utiliser la LISTE explicite de positions\n" +" de tabulation\n" +" séparées par des virgules\n" + +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "option « -LIST » est obsolète; utiliser « --first-only -t LIST »" + +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "Usage: %s [OPTION]... [ENTRÉE [SORTIE]]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" +"Exclure toutes les lignes successives identiques sauf une du FICHIER\n" +"(ou de l'entrée standard), lors de l'écriture dans un FICHIER\n" +"(ou vers la sortie standard).\n" +"\n" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" +" -c, --count préfixer les lignes par le nombre d'occurences\n" +" -d, --repeated afficher seulement les lignes ayant des duplicatats\n" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" +" -D, --all-repeated afficher toutes les lignes qui ont des duplicatats\n" +" delimit-method={none(default),prepend,separate}\n" +" La délimitation est faite avec des lignes blanches.\n" +" -f, --skip-fields=N éviter de comparer les N premiers champs\n" +" -i, --ignore-case ignorer les différences de la casse\n" +" -s, --skip-chars=N éviter de comparer les N premiers caractères\n" +" -u, --unique afficher seulement les lignes uniques\n" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr "" +" -w, --check-chars=N ne pas comparer plus de N caractères des lignes\n" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" +"\n" +"Un champ est une suite de blancs, suivi de caractères non-blancs.\n" +"Les champs sont escamotés avant les caractères.\n" + +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "Erreur lors de la lecture %s" + +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "Erreur lors de l'écriture %s" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "opérande surnuméraire « %s »" + +#: src/uniq.c:473 src/uniq.c:498 +msgid "invalid number of fields to skip" +msgstr "nombre invalide de champs à escamoter" + +#: src/uniq.c:507 +msgid "invalid number of bytes to skip" +msgstr "nombre invalide d'octets à escamoter" + +#: src/uniq.c:516 +msgid "invalid number of bytes to compare" +msgstr "nombre invalide d'octets à comparer" + +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "option « -%lu » est obsolète; utiliser « -f %lu »" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "" +"afficher toutes les lignes dupliquées et le décompte de répétition\n" +"est inutile" + +#: src/unlink.c:51 +#, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"Usage: %s FICHIER...\n" +" ou: %s OPTION\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" +"Appeler la fonction unlink() pour enlever le fichier spécifié.\n" +"\n" + +#: src/unlink.c:99 +#, c-format +msgid "cannot unlink %s" +msgstr "ne peut enlever le lien %s" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "n'a pu obtenir la date du réamorçage" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr " %2d:%02d%s up " + +#: src/uptime.c:140 +msgid "am" +msgstr "am" + +#: src/uptime.c:140 +msgid "pm" +msgstr "pm" + +#: src/uptime.c:142 +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "jour" +msgstr[1] "jours" + +#: src/uptime.c:144 +#, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "%d usager invalide" +msgstr[1] "%d usagers invalides" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr ", charge moyenne: %.2f" + +#: src/uptime.c:191 src/users.c:118 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "Usage: %s [OPTION]... [FICHIER]\n" + +#: src/uptime.c:192 +#, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Afficher la date courante, la durée de temps depuis lequel le système\n" +"a été amorcé, le nombre d'usagers sur le système, et le nombre moyen\n" +"de tâches dans la file d'exécution depuis les dernières 1, 5 et 15 minutes.\n" +"Si FICHIER n'est pas utilisé, utiliser %s. %s comme FICHIER est d'usager " +"courant.\n" +"\n" + +#: src/users.c:35 +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "Joseph Arceneaux et David MacKenzie" + +#: src/users.c:119 +#, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Afficher la liste des usagers actifs selon la liste contenue dans\n" +"le FICHIER. Si le FICHIER n'est pas spécifié, utiliser %s.\n" +"L'utilisation de %s comme FICHIER est d'usage courant.\n" +"\n" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "Paul Rubin et David MacKenzie" + +#: src/wc.c:129 +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" +"Afficher le décompte d'octets, de mots et lignes de chaque FICHIER, et\n" +"le nombre total de ligne si plus d'un FICHIER est spécifié.\n" +"Sans FICHIER, ou quand FICHIER est -, lire de l'entrée standard.\n" +" -c, --bytes afficher le nombre d'octets\n" +" -m, --chars afficher le nombre de caractères\n" +" -l, --lines afficher le nombre de lignes \n" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" +" -L, --max-line-length afficher la longueur de la ligne la plus longue\n" +" -w, --words afficher le nombre de mots\n" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "Joseph Arceneaux, David MacKenzie et Michael Stone" + +#: src/who.c:223 +msgid " old " +msgstr "vieux" + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "id=" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "term=" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "sortie=" + +#: src/who.c:446 +msgid "clock change" +msgstr "changement d'horloge" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "niveau d'exécution" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "dernier=" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" +"\n" +"# usager=%u\n" + +#: src/who.c:498 +msgid "NAME" +msgstr "NOM" + +#: src/who.c:498 +msgid "LINE" +msgstr "LIGNE" + +#: src/who.c:498 +msgid "TIME" +msgstr "HEURE" + +#: src/who.c:498 +msgid "IDLE" +msgstr "OSIF" + +#: src/who.c:498 +msgid "PID" +msgstr "PID" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "COMMENTAIRE" + +#: src/who.c:499 +msgid "EXIT" +msgstr "EXIT" + +#: src/who.c:574 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "Usage: %s [OPTION]... [ FICHIER | ARG1 ARG2]\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" +"\n" +" -a, --all afficher toutes les informations\n" +" -b, --boot afficher l'heure du dernier amorçage\n" +" -d, --dead afficher la liste des processus morts\n" +" -H, --heading afficher les lignes d'en-tête\n" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" +" -i, -u, --idle ajouter le temps d'inactivité de l'usager en\n" +" selon le format HEURE:MINUTES, . ou « old »\n" +" --login afficher la liste des processus système de login\n" +" (équivalent à SUS -l)\n" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" +" -l, --lookup utiliser la forme canonique des noms des hôtes\n" +" via le DNS (-l est déprécié, utiliser --lookup)\n" +" -m seulement du poste (hostname) et\n" +" de l'usager associé à « stdin »\n" +" -p, --process afficher la liste des processus lancés par init\n" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" +" -q, --count afficher tous les comptes actifs et le nombre d'usagers\n" +" présents sur le système\n" +" -r, --runlevel afficher le niveau d'exécution courant\n" +" -s, --short afficher seulement le nom, la ligne et l'heure (par " +"défaut)\n" +" -t, --time afficher l'heure du dernier changement d'heure de " +"l'horloge\n" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" +" -T, -w, --mesg ajouter le statut du message usager avec +, - ou ?\n" +" -u, --users afficher la liste des usagers actifs\n" +" --message identique à -T\n" +" --writeable identique à -T\n" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" +"\n" +"Si FICHIER n'est pas spécifié, utilise %s. %s comme FICHIER\n" +"est d'usage courant. Si PARAM1 et PARAM2 sont fournis, -m est assumé:\n" +"« am i » ou « mom likes » sont d'usage courant.\n" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "" +"AVERTISSEMENT: -i sera retiré dans une prochaine version; utiliser -u à la " +"place" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" +"AVERTISSEMENT: le sens de « -l » sera modifié dans une prochaine version " +"pour se conformer à POSIX" + +#: src/whoami.c:53 +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" +"Afficher le nom de l'usager associé à l'identificateur effectif\n" +"courant de l'usager. Identique à: id -un.\n" +"\n" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "%s: ne trouve pas le nom de l'usager ayant le « UID » %u\n" + +#: src/yes.c:49 +#, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"Usage: %s [CHAÎNE]...\n" +" ou: %s OPTION\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" +"Afficher à répétition une ligne de caractères telle que spécifiée\n" +"par CHAÎNE ou par « y ».\n" + +#~ msgid "\\%c: invalid escape" +#~ msgstr "\\%c: échappement invalide" + +#~ msgid "program error" +#~ msgstr "erreur du programme" + +#~ msgid "stack overflow" +#~ msgstr "débordement de la pile" + +#~ msgid "warning: unable to use large stack" +#~ msgstr "AVERTISSEMENT: incapable d'utiliser une grande pile" + +#~ msgid " Type" +#~ msgstr " Type" + +#~ msgid "missing file arguments" +#~ msgstr "arguments de fichier manquants" + +#~ msgid "cannot change to `..' from directory %s" +#~ msgstr "ne peut aller vers `..' à partir du répertoire %s" + +#~ msgid "%s: is so large that it is not representable" +#~ msgstr "%s: est tellement grand qu'il n'est pas représentable." + +#, fuzzy +#~ msgid "cannot execute %s" +#~ msgstr "Ne peut changer la protection de %s" + +#, fuzzy +#~ msgid "cannot run %s" +#~ msgstr "Ne peut changer la protection de %s" + +#, fuzzy +#~ msgid "Try %s --help' for more information.\n" +#~ msgstr "Pour en savoir davantage, faites: « %s --help ».\n" + +#, fuzzy +#~ msgid "preserving permissions for %s" +#~ msgstr "Ne peut changer les permissions de %s" + +#, fuzzy +#~ msgid "cannot lstat `.'" +#~ msgstr "ne peut initialiser la date." + +#, fuzzy +#~ msgid "closing directory %s" +#~ msgstr "ne peut aller vers le répertoire %s" + +#, fuzzy +#~ msgid "%s: remove directory %s? " +#~ msgstr "Ne peut créer le répertoire %s" + +#~ msgid "%s: directory %s is write protected; descend into it anyway? " +#~ msgstr "%s: répertoire %s protégé en écriture; le parcourir quand même?" + +#~ msgid "removing all entries of directory %s\n" +#~ msgstr "destruction de toutes les entrées du répertoire %s\n" + +#~ msgid "directory %s was replaced before being removed" +#~ msgstr "r/pertoire %s a été remplacé avant d'être enlevé" + +#, fuzzy +#~ msgid "cannot change back to directory %s via `..'" +#~ msgstr "ne peut aller vers le répertoire %s" + +#~ msgid "subdirectory of %s was moved while being removed" +#~ msgstr "sous-répertoire de %s a été déplacé pendant son déplacement" + +#, fuzzy +#~ msgid "%s: remove directory %s%s? " +#~ msgstr "Ne peut créer le répertoire %s" + +#~ msgid " (might be nonempty)" +#~ msgstr " (peut ne pas être vide)" + +#, fuzzy +#~ msgid "removing the directory itself: %s\n" +#~ msgstr "AVERTISSEMENT: ne peut changer pour le répertoire %s" + +#, fuzzy +#~ msgid "cannot remove current directory %s" +#~ msgstr "Ne peut créer le répertoire %s" + +#~ msgid "continue? " +#~ msgstr "poursuivre? " + +#~ msgid "" +#~ "ERROR: the source file %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after opening it), the numbers\n" +#~ "are %lu/%lu. That means that while this program was running,\n" +#~ "the file was replaced with another one. Skipping this file." +#~ msgstr "" +#~ "ERREUR: le fichier source %s avait initialement un numéro de périphérique/" +#~ "inode\n" +#~ "%lu/%lu, mais à présent (après l'avoir ouvert), les numéros\n" +#~ "pour «.» sont %lu/%lu. Cela signifie que durant l'exécution du programme, " +#~ "le\n" +#~ "fichier a été remplacé soit par un autre. Fichier escamoté." + +#, fuzzy +#~ msgid "cannot fork" +#~ msgstr "Ne peut changer la protection de %s" + +#~ msgid "" +#~ "ERROR: the directory %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after a chdir into it), the numbers for `.'\n" +#~ "are %lu/%lu. That means that while rm was running, the directory\n" +#~ "was replaced with either another directory or a link to another directory." +#~ msgstr "" +#~ "ERREUR: le répertoire %s avait initialement un numéro de périphérique/" +#~ "inode\n" +#~ "%lu/%lu, mais à présent (après s'être positionné dedans par chdir), les " +#~ "numéros\n" +#~ "pour «.» sont %lu/%lu. Cela signifie que durant l'exécution de «rm», le\n" +#~ "répertoire a été remplacé soit par un autre répertoire ou un lien\n" +#~ "sur un autre répertoire." + +#~ msgid "" +#~ " --sparse=WHEN control creation of sparse files\n" +#~ " -R, --recursive copy directories recursively\n" +#~ " --reply={yes,no,query} specify how to handle the prompt about an\n" +#~ " existing destination file\n" +#~ " --strip-trailing-slashes remove any trailing slashes from each " +#~ "SOURCE\n" +#~ " argument\n" +#~ msgstr "" +#~ " --sparse=DATE contrôler la DATE de création des " +#~ "fichiers\n" +#~ " dispersés\n" +#~ " --reply={yes,no,query} spécifier comment traiter les requêtes à " +#~ "propos\n" +#~ " d'un fichier de destination existant\n" +#~ " --strip-trailing-slashes enlever les '/' en suffixe de chacun\n" +#~ " des arguments SOURCE\n" + +#~ msgid " or: %s [-acm] MMDDhhmm[YY] FILE... (obsolescent)\n" +#~ msgstr " ou : %s [-acm] MMJJhhmm[AA] FICHIER... (désuet)\n" + +#~ msgid "" +#~ "\n" +#~ "Note that the three time-date formats recognized for the -d and -t " +#~ "options\n" +#~ "and for the obsolescent argument are all different.\n" +#~ msgstr "" +#~ "\n" +#~ "Noter que les 3 formats du tampon date-heure sont reconnus pour les\n" +#~ "options -d et -t et les arguments désuets sont tous différents.\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ " -v, --verbose toujours afficher l'en-tête avec\n" +#~ " les noms de fichiers\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ " -v, --verbose toujours afficher l'en-tête avec\n" +#~ " les noms de fichiers\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ " -v, --verbose toujours afficher l'en-tête avec\n" +#~ " les noms de fichiers\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ " -v, --verbose toujours afficher l'en-tête avec\n" +#~ " les noms de fichiers\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Afficher la somme de contrôle CRC et le décompte d'octets de chaque " +#~ "FICHIER.\n" +#~ "\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Afficher la somme de contrôle CRC et le décompte d'octets de chaque " +#~ "FICHIER.\n" +#~ "\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Afficher la somme de contrôle CRC et le décompte d'octets de chaque " +#~ "FICHIER.\n" +#~ "\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ " -v, --verbose toujours afficher l'en-tête avec\n" +#~ " les noms de fichiers\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Afficher la somme de contrôle CRC et le décompte d'octets de chaque " +#~ "FICHIER.\n" +#~ "\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ " -v, --verbose toujours afficher l'en-tête avec\n" +#~ " les noms de fichiers\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" + +#~ msgid "" +#~ "Change the group membership of each FILE to GROUP.\n" +#~ "\n" +#~ " -c, --changes like verbose but report only when a change is " +#~ "made\n" +#~ " --dereference affect the referent of each symbolic link, " +#~ "rather\n" +#~ " than the symbolic link itself\n" +#~ " -h, --no-dereference affect symbolic links instead of any referenced " +#~ "file\n" +#~ " (available only on systems that can change the\n" +#~ " ownership of a symlink)\n" +#~ " -f, --silent, --quiet suppress most error messages\n" +#~ " --reference=RFILE use RFILE's group rather than the specified\n" +#~ " GROUP value\n" +#~ " -R, --recursive operate on files and directories recursively\n" +#~ " -v, --verbose output a diagnostic for every file processed\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Changer le groupe d'appartenance de chaque FICHIER au GROUPE.\n" +#~ "\n" +#~ " -c, --changes utiliser le mode bavard mais rapporter " +#~ "seulement\n" +#~ " les modifications lorsqu'elles surviennent\n" +#~ " --dereference affecter le référent de chaque lien " +#~ "symbolique,\n" +#~ " plutôt que le lien symbolique lui-même\n" +#~ " -h, --no-dereference modifier les liens symboliques au lieu des\n" +#~ " fichiers référencés (disponible seulement\n" +#~ " sur les systèmes offrant l'appel système " +#~ "lchown)\n" +#~ " -f, --silent, --quiet supprimer la plupart des messages d'erreur\n" +#~ " --reference=FICHIER utiliser le groupe de référence du FICHIER\n" +#~ " au lieu d'une valeur de groupe\n" +#~ " -R, --recursive modifier récursivement fichiers et " +#~ "répertoires\n" +#~ " -v, --verbose produire un diagnostic pour chaque fichier " +#~ "traité\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" + +#~ msgid "" +#~ "Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +#~ "\n" +#~ " -c, --changes like verbose but report only when a change is " +#~ "made\n" +#~ " --dereference affect the referent of each symbolic link, " +#~ "rather\n" +#~ " than the symbolic link itself\n" +#~ " -h, --no-dereference affect symbolic links instead of any referenced " +#~ "file\n" +#~ " (available only on systems that can change the\n" +#~ " ownership of a symlink)\n" +#~ " --from=CURRENT_OWNER:CURRENT_GROUP\n" +#~ " change the owner and/or group of each file only " +#~ "if\n" +#~ " its current owner and/or group match those " +#~ "specified\n" +#~ " here. Either may be omitted, in which case a " +#~ "match\n" +#~ " is not required for the omitted attribute.\n" +#~ " -f, --silent, --quiet suppress most error messages\n" +#~ " --reference=RFILE use RFILE's owner and group rather than\n" +#~ " the specified OWNER:GROUP values\n" +#~ " -R, --recursive operate on files and directories recursively\n" +#~ " -v, --verbose output a diagnostic for every file processed\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Changer le propriétaire et/ou le groupe de chaque FICHIER.\n" +#~ "\n" +#~ " -c, --changes utiliser le mode bavard mais rapporter " +#~ "seulement\n" +#~ " les modifications lorsqu'elles surviennent\n" +#~ " --dereference affecter le référent de chaque lien " +#~ "symbolique,\n" +#~ " plutôt que le lien symbolique lui-même\n" +#~ " -h, --no-dereference modifier les liens symboliques au lieu des\n" +#~ " fichiers référencés (disponible seulement\n" +#~ " sur les systèmes offrant l'appel système " +#~ "lchown)\n" +#~ " --from=PROPRIÉTAIRE_COURANT:GROUPE_COURANT\n" +#~ " changer le propriétaire et/ou le groupe de " +#~ "chaque fichier\n" +#~ " seulement s'il y a concordance avec le " +#~ "propriétaire\n" +#~ " et/ou groupe courant spécifié. Les deux " +#~ "peuvent être\n" +#~ " omis, auquel cas la concordance n'est pas " +#~ "requise pour\n" +#~ " l'argument non spécifié.\n" +#~ " -f, --silent, --quiet supprimer la plupart des messages d'erreur\n" +#~ " --reference=FICHIER utiliser l'appartenance du propriétaire et " +#~ "du\n" +#~ " groupe du FICHIER de référence au lieu\n" +#~ " de valeurs explicites PROPRIÉTAIRE:GROUPE\n" +#~ " -R, --recursive modifier récursivement fichiers et " +#~ "répertoires\n" +#~ " -v, --verbose indiquer ce qui a été fait\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" + +#~ msgid "" +#~ " -l, --link link files instead of copying\n" +#~ " -L, --dereference always follow symbolic links\n" +#~ " -p same as --preserve=mode,ownership," +#~ "timestamps\n" +#~ " --preserve[=ATTR_LIST] preserve the specified attributes " +#~ "(default:\n" +#~ " mode,ownership,timestamps), if possible\n" +#~ " additional attributes: links, all\n" +#~ " --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +#~ " --parents append source path to DIRECTORY\n" +#~ " -P same as `--no-dereference'\n" +#~ " -r copy recursively, non-directories as " +#~ "files\n" +#~ " WARNING: use -R instead when you might " +#~ "copy\n" +#~ " special files like FIFOs or /dev/zero\n" +#~ " --remove-destination remove each existing destination file " +#~ "before\n" +#~ " attempting to open it (contrast with --" +#~ "force)\n" +#~ msgstr "" +#~ " -l, --link établir des liens sur les fichiers au lieu \n" +#~ " de copier\n" +#~ " -L, --dereference toujours suivre les liens symboliques\n" +#~ " -p, identique à --preserve=mode,ownership," +#~ "timestamps\n" +#~ " --preserve[=ATTRIBUTS] préserver les attributs (par défaut:\n" +#~ " mode, propriété, )\n" +#~ " si possible et les attributs additionnels: " +#~ "links,all\n" +#~ " --no-preserve[=ATTRIBUTS]\n" +#~ " ne pas préserver les attributs spécifiés\n" +#~ " --parents accoller le chemin du répertoire source au " +#~ "RÉPERTOIRE\n" +#~ " -P identique à `--no-deference'\n" +#~ " -r copier récursivement , les non-répertoires\n" +#~ " comme des fichiers\n" +#~ " ATTENTION: l'utilisation de -R à la place " +#~ "peut copier\n" +#~ " les fichiers spéciaux comme FIFO ou /dev/" +#~ "zero\n" +#~ " --remove-destination enlever chaque fichier de destination " +#~ "existant\n" +#~ " avant de l'ouvrir (par contraste avec --" +#~ "force)\n" + +#~ msgid "" +#~ " --sparse=WHEN control creation of sparse files\n" +#~ " -R, --recursive copy directories recursively\n" +#~ " --reply={yes,no,query} specify how to handle the prompt about an\n" +#~ " existing destination file\n" +#~ " --strip-trailing-slashes remove any trailing slashes from each " +#~ "SOURCE\n" +#~ " argument\n" +#~ " -s, --symbolic-link make symbolic links instead of copying\n" +#~ " -S, --suffix=SUFFIX override the usual backup suffix\n" +#~ " --target-directory=DIRECTORY move all SOURCE arguments into " +#~ "DIRECTORY\n" +#~ " -u, --update copy only when the SOURCE file is newer\n" +#~ " than the destination file or when the\n" +#~ " destination file is missing\n" +#~ msgstr "" +#~ " --sparse=DATE contrôler la DATE de création des fichiers\n" +#~ " dispersés\n" +#~ " -R, --recursive copier récursivement les répertoires\n" +#~ " --reply={yes,no,query} spécifier comment traiter les requêtes à " +#~ "propos\n" +#~ " d'un fichier de destination existant\n" +#~ " --strip-trailing-slashes\n" +#~ " enlever les '/' en suffixe de chacun\n" +#~ " des arguments SOURCE\n" +#~ " -s, --symbolic-link créer des liens symboliques au lieu de " +#~ "copier\n" +#~ " -S, --suffix=SUFFIXE écraser le suffixe usuel d'archivage\n" +#~ " par le SUFFIXE\n" +#~ " --target-directory=RÉPERTOIRE\n" +#~ " déplacer tous les fichiers SOURCE en " +#~ "arguments\n" +#~ " vers le RÉPERTOIRE\n" +#~ " -u, --update copier seulement lorsque le fichier SOURCE " +#~ "est\n" +#~ " plus récent que le fichier de DESTINATION " +#~ "ou\n" +#~ " lorsque le fichier de DESTINATION n'existe " +#~ "pas\n" + +#~ msgid "" +#~ "Copy a file, converting and formatting according to the options.\n" +#~ "\n" +#~ " bs=BYTES force ibs=BYTES and obs=BYTES\n" +#~ " cbs=BYTES convert BYTES bytes at a time\n" +#~ " conv=KEYWORDS convert the file as per the comma separated keyword " +#~ "list\n" +#~ " count=BLOCKS copy only BLOCKS input blocks\n" +#~ " ibs=BYTES read BYTES bytes at a time\n" +#~ " if=FILE read from FILE instead of stdin\n" +#~ " obs=BYTES write BYTES bytes at a time\n" +#~ " of=FILE write to FILE instead of stdout\n" +#~ " seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +#~ " skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "BLOCKS and BYTES may be followed by the following multiplicative " +#~ "suffixes:\n" +#~ "xM M, c 1, w 2, b 512, kD 1000, k 1024, MD 1,000,000, M 1,048,576,\n" +#~ "GD 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +#~ "Each KEYWORD may be:\n" +#~ "\n" +#~ " ascii from EBCDIC to ASCII\n" +#~ " ebcdic from ASCII to EBCDIC\n" +#~ " ibm from ASCII to alternated EBCDIC\n" +#~ " block pad newline-terminated records with spaces to cbs-size\n" +#~ " unblock replace trailing spaces in cbs-size records with newline\n" +#~ " lcase change upper case to lower case\n" +#~ " notrunc do not truncate the output file\n" +#~ " ucase change lower case to upper case\n" +#~ " swab swap every pair of input bytes\n" +#~ " noerror continue after read errors\n" +#~ " sync pad every input block with NULs to ibs-size; when used\n" +#~ " with block or unblock, pad with spaces rather than NULs\n" +#~ msgstr "" +#~ "Copier un fichier, en le convertissant et le formatant selon les " +#~ "options:\n" +#~ "\n" +#~ " bs=N forcer ibs=N octets et obs=N octets\n" +#~ " cbs=N convertir N octets à la fois\n" +#~ " conv=CLÉS convertir le fichier selon les mots CLÉS d'une liste\n" +#~ " séparés par une virgule\n" +#~ " count=N copier seulement N blocs à partir de l'entrée\n" +#~ " ibs=N lire N octets à la fois\n" +#~ " if=FICHIER lire à partir du FICHIER au lieu de l'entrée standard\n" +#~ " obs=N écrire N octets à la fois\n" +#~ " of=FICHIER écrire dans le FICHIER au lieu de la sortie standard\n" +#~ " seek=N escamoter N blocs de taille 'obs' du fichier de sortie\n" +#~ " skip=N escamoter N blocs de taille 'ibs' du fichier d'entrée\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" +#~ "N peut être suivi d'un suffixe multiplicatif suivant:,\n" +#~ "xM M, c 1, w 2, b 512, kD 1000, k 1024, MD 1,000,000, M 1,048,576,\n" +#~ "GD 1,000,000,000, G 1,073,741,824, et ainsi de suite pour T, P, E, Z, Y.\n" +#~ "Chaque mot CLÉ peut être:\n" +#~ "\n" +#~ " ascii de l'EBCDIC vers l'ASCII\n" +#~ " ebcdic de l'ASCII vers l'EBCDIC\n" +#~ " ibm de l'ASCII vers l'EBCDIC en utilisant une table différente\n" +#~ " block remplir les enregistrements terminés par un saut de ligne\n" +#~ " par des blancs jusqu'à l'obtention de la taille 'cbs'\n" +#~ " unblock remplacer les blancs de la fin des enregistrements\n" +#~ " de taille 'cbs' par des sauts de ligne\n" +#~ " lcase changer les majuscules en minuscules\n" +#~ " notrunc ne pas tronquer le fichier de sortie\n" +#~ " ucase changer les minuscules en majuscules\n" +#~ " swab interchanger chaque paire d'octets\n" +#~ " noerror continuer même après des erreurs de lecture\n" +#~ " sync remplir chaque bloc lu par des nuls jusqu'à concurrence\n" +#~ " de la taille 'ibs'\n" + +#~ msgid "" +#~ "Show information about the filesystem on which each FILE resides,\n" +#~ "or all filesystems by default.\n" +#~ "\n" +#~ " -a, --all include filesystems having 0 blocks\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " -H, --si likewise, but use powers of 1000 not 1024\n" +#~ " -i, --inodes list inode information instead of block usage\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l, --local limit listing to local filesystems\n" +#~ " -m, --megabytes like --block-size=1048576\n" +#~ " --no-sync do not invoke sync before getting usage info " +#~ "(default)\n" +#~ " -P, --portability use the POSIX output format\n" +#~ " --sync invoke sync before getting usage info\n" +#~ " -t, --type=TYPE limit listing to filesystems of type TYPE\n" +#~ " -T, --print-type print filesystem type\n" +#~ " -x, --exclude-type=TYPE limit listing to filesystems not of type " +#~ "TYPE\n" +#~ " -v (ignored)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Afficher les informations à propos du système de fichiers sur lequel\n" +#~ "réside chaque FICHIER ou de tous les systèmes de fichier par défaut.\n" +#~ "\n" +#~ " -a, --all inclure les systèmes de fichiers ayant 0 bloc\n" +#~ " --block-size=TAILLE utiliser la TAILLE de blocs\n" +#~ " -h, --human-readable afficher les tailles dans un format lisible " +#~ "par\n" +#~ " un humain (i.e. 1K 234M 2G)\n" +#~ " -H, --si idem mais utiliser un multiple de 1000\n" +#~ " au lieu de 1024\n" +#~ " -i, --inodes lister les informations sur les 'inodes'\n" +#~ " plutôt que sur l'utilisation des blocs\n" +#~ " -k, --kilobytes utiliser des blocs de 1024 octets, et non pas\n" +#~ " de 512 octets malgré l'option POSIXLY_CORRECT\n" +#~ " -m, --megabytes utiliser des blocs de 1024K-octets, et non pas\n" +#~ " de 512 octets malgré l'option POSIXLY_CORRECT\n" +#~ " --no-sync ne pas effectuer une synchronisation avant\n" +#~ " d'obtenir les informations d'utilisation\n" +#~ " des disques (par défaut)\n" +#~ " -P, --portability utiliser le format de sortie POSIX\n" +#~ " --sync demander une synchronisation avant d'obtenir " +#~ "les\n" +#~ " informations d'utilisation des disques\n" +#~ " (par défaut)\n" +#~ " -t, --type=TYPE limiter l'affichage au TYPE de système de\n" +#~ " fichiers\n" +#~ " -T, --print-type afficher le type du système de fichiers\n" +#~ " -x, --exclude-type=TYPE limiter l'affichage en excluant le TYPE\n" +#~ " de système de fichiers\n" +#~ " -v (ignorée)\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" + +#~ msgid "" +#~ "Summarize disk usage of each FILE, recursively for directories.\n" +#~ "\n" +#~ " -a, --all write counts for all files, not just directories\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -b, --bytes print size in bytes\n" +#~ " -c, --total produce a grand total\n" +#~ " -D, --dereference-args dereference PATHs when symbolic link\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " -H, --si likewise, but use powers of 1000 not 1024\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l, --count-links count sizes many times if hard linked\n" +#~ " -L, --dereference dereference all symbolic links\n" +#~ " -m, --megabytes like --block-size=1048576\n" +#~ " -S, --separate-dirs do not include size of subdirectories\n" +#~ " -s, --summarize display only a total for each argument\n" +#~ " -x, --one-file-system skip directories on different filesystems\n" +#~ " -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +#~ "FILE.\n" +#~ " --exclude=PAT Exclude files that match PAT.\n" +#~ " --max-depth=N print the total for a directory (or file, with --" +#~ "all)\n" +#~ " only if it is N or fewer levels below the " +#~ "command\n" +#~ " line argument; --max-depth=0 is the same as\n" +#~ " --summarize\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Produire un sommaire de l'utilisation de l'espace disque de chaque " +#~ "FICHIER,\n" +#~ "et récursivement dans les répertoires.\n" +#~ "\n" +#~ " -a, --all afficher le décompte pour tous les fichiers,\n" +#~ " pas seulement pour les répertoires\n" +#~ " --block-size=TAILLE utiliser la TAILLE de blocs\n" +#~ " -b, --bytes afficher la taille en octets\n" +#~ " -c, --total produire le grand total\n" +#~ " -D, --dereference-args ne pas tenir compte des CHEMINS lorsqu'il y a\n" +#~ " des liens symboliques\n" +#~ " -h, --human-readable afficher les tailles dans un format lisible " +#~ "par\n" +#~ " un humain (i.e. 1K 234M 2G)\n" +#~ " -H, --si idem mais utiliser un multiple de 1000\n" +#~ " au lieu de 1024\n" +#~ " -k, --kilobytes utiliser des blocs de 1024 octets, et non pas\n" +#~ " de 512 octets malgré l'option POSIXLY_CORRECT\n" +#~ " -l, --count-links dénombrer les tailles aussi souvent qu'il y a\n" +#~ " de liens directs\n" +#~ " -L, --dereference ne pas tenir compte de tous les liens\n" +#~ " symboliques\n" +#~ " -m, --megabytes utiliser des blocs de 1024K-octets, et non " +#~ "pas\n" +#~ " de 512 octets malgré l'option POSIXLY_CORRECT\n" +#~ " -S, --separate-dirs ne pas inclure la taille des sous-répertoires\n" +#~ " -s, --summarize afficher seulement un total pour chaque type\n" +#~ " d'argument\n" +#~ " -x, --one-file-system escamoter les répertoires de différents\n" +#~ " -X FICHIER, \n" +#~ " --exclude-from=FICHIER\n" +#~ " exclure les fichiers qui concordent avec\n" +#~ " le nom du FICHIER\n" +#~ " --exclude=EXPRES exclure les fichier qui concordent avec\n" +#~ " l'expression\n" +#~ " --max-depth=N afficher le total pour un répertoire (ou un\n" +#~ " fichier, avec l'option --all) seulement\n" +#~ " si N a moins de niveau dans la ligne de " +#~ "commande;\n" +#~ " --max-depth=0 est identique à --summurize\n" +#~ " systèmes de fichiers\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" + +#~ msgid "" +#~ "In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +#~ "the existing DIRECTORY, while setting permission modes and owner/group.\n" +#~ "In the third format, create all components of the given DIRECTORY(ies).\n" +#~ "\n" +#~ " --backup[=CONTROL] make a backup of each existing destination file\n" +#~ " -b like --backup but does not accept an argument\n" +#~ " -c (ignored)\n" +#~ " -d, --directory treat all arguments as directory names; create all\n" +#~ " components of the specified directories\n" +#~ " -D create all leading components of DEST except the " +#~ "last,\n" +#~ " then copy SOURCE to DEST; useful in the 1st " +#~ "format\n" +#~ " -g, --group=GROUP set group ownership, instead of process' current " +#~ "group\n" +#~ " -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-" +#~ "xr-x\n" +#~ " -o, --owner=OWNER set ownership (super-user only)\n" +#~ " -p, --preserve-timestamps apply access/modification times of SOURCE " +#~ "files\n" +#~ " to corresponding destination files\n" +#~ " -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +#~ " -S, --suffix=SUFFIX override the usual backup suffix\n" +#~ " -v, --verbose print the name of each directory as it is created\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Dans les deux premiers formats, copier la SOURCE vers la DESTINATION ou " +#~ "des\n" +#~ "fichiers de plusieurs SOURCE(S) vers un RÉPERTOIRE existant, tout en " +#~ "initialisant\n" +#~ "les bits de protection et l'appartenance propriétaire/groupe. Dans le\n" +#~ "3e format, créer tous les composants des RÉPERTOIRES spécifiés.\n" +#~ "\n" +#~ " --backup[=CONTRÔLE] archiver chaque fichier de destination\n" +#~ " -b identique à --backup mais sans argument\n" +#~ " -c (ignorée)\n" +#~ " -d, --directory créer les répertoires de tête,\n" +#~ " obligatoire dans le dans le 3e format\n" +#~ " -D créer tous les composants de tête de la\n" +#~ " DESTINATION excepté le dernier\n" +#~ " ensuite copier la SOURCE vers la DESTINATION\n" +#~ " (pratique lorsque le 1er format est utlisé)\n" +#~ " -g, --group=GROUPE attribuer l'appartenance au GROUPE,\n" +#~ " plutôt qu'au groupe courant du processus\n" +#~ " -m, --mode=MODE initialiser les permissions d'accès au MODE\n" +#~ " (comme par chmod), au lieu de rw-r--r--\n" +#~ " -o, --owner=PROPRIÉTAIRE attribuer l'appartenance au PROPRIÉTAIRE\n" +#~ " (mode super-user seulement)\n" +#~ " -p, --preserve-timestamps conserver les dates d'accès et de " +#~ "modification\n" +#~ " des fichiers SOURCES aux fichiers de la " +#~ "DESTINATION\n" +#~ " -s, --strip enlever les tables de symboles,\n" +#~ " valable pour les 1er et 2e formats seulement\n" +#~ " -S, --suffix=SUFFIXE écraser le SUFFIXE usuel d'archivage\n" +#~ " -v, --verbose afficher le nom de chaque répertoire créé\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" + +#~ msgid "" +#~ "Create a link to the specified TARGET with optional LINK_NAME.\n" +#~ "If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +#~ "created in the current directory. When using the second form with more\n" +#~ "than one TARGET, the last argument must be a directory; create links\n" +#~ "in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +#~ "links with --symbolic. When creating hard links, each TARGET must " +#~ "exist.\n" +#~ "\n" +#~ " --backup[=CONTROL] make a backup of each existing destination " +#~ "file\n" +#~ " -b like --backup but does not accept an " +#~ "argument\n" +#~ " -d, -F, --directory hard link directories (super-user only)\n" +#~ " -f, --force remove existing destination files\n" +#~ " -n, --no-dereference treat destination that is a symlink to a\n" +#~ " directory as if it were a normal file\n" +#~ " -i, --interactive prompt whether to remove destinations\n" +#~ " -s, --symbolic make symbolic links instead of hard links\n" +#~ " -S, --suffix=SUFFIX override the usual backup suffix\n" +#~ " --target-directory=DIRECTORY specify the DIRECTORY in which to " +#~ "create\n" +#~ " the links\n" +#~ " -v, --verbose print name of each file before linking\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Créer un lien vers la CIBLE spécifiée avec optionnellement un " +#~ "NOM_DE_LIEN.\n" +#~ "S'il y le NOM_DE_LIEN est omis, un lien ayant la même base comme CIBLE " +#~ "est\n" +#~ "créé dans le répertoire courant. Lors de l'utilisation de la seconde " +#~ "forme\n" +#~ "avec plus d'une CIBLE, le dernier argument doit être un répertoire;\n" +#~ "créer des liens dans le RÉPERTOIRE pour chaque CIBLE. Créer des liens " +#~ "directs\n" +#~ "par défaut et des liens symboliques avec l'option --symbolic. Lors de " +#~ "la\n" +#~ "création de liens directs, chaque CIBLE doit exister.\n" +#~ "\n" +#~ " --backup[=CONTRÔLE] archiver chaque fichier de destination\n" +#~ " -b identique à --backup mais sans argument\n" +#~ " -d, -F, --directory créer un lien direct à un répertoire\n" +#~ " (super-user seulement)\n" +#~ " -f, --force détruire les destinations existantes,\n" +#~ " sans demander confirmation\n" +#~ " -n, --no-dereference avec --force, détruire la destination qui\n" +#~ " est un lien symbolique vers un répertoire \n" +#~ " -i, --interactive demander confirmation avant de détruire\n" +#~ " les destinations\n" +#~ " -s, --symbolic créer un lien symbolique au lieu d'un\n" +#~ " lien direct\n" +#~ " -S, --suffix=SUFFIXE écraser le suffixe d'archivage par le " +#~ "SUFFIXE\n" +#~ " --target-directory=RÉPERTOIRE\n" +#~ " déplacer tous les fichiers SOURCE en " +#~ "arguments\n" +#~ " vers le RÉPERTOIRE\n" +#~ " -v, --verbose afficher le nom de chaque fichier avant de " +#~ "créer un lien\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" + +#~ msgid "" +#~ "List information about the FILEs (the current directory by default).\n" +#~ "Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +#~ "\n" +#~ " -a, --all do not hide entries starting with .\n" +#~ " -A, --almost-all do not list implied . and ..\n" +#~ " -b, --escape print octal escapes for nongraphic " +#~ "characters\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -B, --ignore-backups do not list implied entries ending with ~\n" +#~ " -c with -lt: sort by, and show, ctime (time of " +#~ "last\n" +#~ " modification of file status information)\n" +#~ " with -l: show ctime and sort by name\n" +#~ " otherwise: sort by ctime\n" +#~ " -C list entries by columns\n" +#~ " --color[=WHEN] control whether color is used to distinguish " +#~ "file\n" +#~ " types. WHEN may be `never', `always', or " +#~ "`auto'\n" +#~ " -d, --directory list directory entries instead of contents\n" +#~ " -D, --dired generate output designed for Emacs' dired " +#~ "mode\n" +#~ " -f do not sort, enable -aU, disable -lst\n" +#~ " -F, --classify append indicator (one of */=@|) to entries\n" +#~ " --format=WORD across -x, commas -m, horizontal -x, long -" +#~ "l,\n" +#~ " single-column -1, verbose -l, vertical -C\n" +#~ " --full-time like -l --time-style=full-iso\n" +#~ msgstr "" +#~ "Afficher les informations au sujet des FICHIERS (du répertoire\n" +#~ "courant par défaut). Trier les entrées alphabétiquement si aucune\n" +#~ "des options -cftuSUX ou --sort n'est utilisée.\n" +#~ "\n" +#~ " -a, --all afficher les noms cachés débutant par .\n" +#~ " -A, --almost-all ne pas inclure dans la liste . et ..\n" +#~ " -b, --escape afficher en octal les caractères\n" +#~ " non-graphiques\n" +#~ " en utilisant des séquences d'échappement\n" +#~ " --block-size=TAILLE utiliser la TAILLE de blocs\n" +#~ " -B, --ignore-backups ne pas inclure dans la liste,\n" +#~ " les entrées se terminant par ~\n" +#~ " -c lister les fichiers triés selon leur date " +#~ "de\n" +#~ " modification; \n" +#~ " avec -lt: trier par la deate de " +#~ "modification\n" +#~ " et afficher la date de " +#~ "modification (ctime)\n" +#~ " avec -l: trier par nom et afficher avec\n" +#~ " avec la date de modification " +#~ "(ctime)\n" +#~ " autrement: trier par la date de modification " +#~ "(ctime)\n" +#~ " -C afficher en colonnes\n" +#~ " --color[=PARAM] afficher les fichiers avec une couleur " +#~ "selon\n" +#~ " leur type à l'aide d'un des PARAMètres\n" +#~ " suivants: never, always ou auto\n" +#~ " -d, --directory lister les noms de répertoires plutôt\n" +#~ " que leur contenu\n" +#~ " -D, --dired générer une sortie adaptée pour le mode\n" +#~ " 'dired' de Emacs\n" +#~ " -f ne pas trier, autoriser -aU, interdire -lst\n" +#~ " -F, --classify ajouter un caractère (parmi */=@|) pour " +#~ "chaque entrée\n" +#~ " --format=MODE afficher selon le MODE suivant: -x croisé,\n" +#~ " -m avec virgules, -x horizontal, -l long,\n" +#~ " -1 en colonne simple, -l en mode bavard,\n" +#~ " -C vertical\n" +#~ " --full-time identique à -l --time-style=full-iso\n" + +#~ msgid "" +#~ " -g like -l, but do not list owner\n" +#~ " -G, --no-group inhibit display of group information\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " --si likewise, but use powers of 1000 not 1024\n" +#~ " -H, --dereference-command-line follow symbolic links on the command " +#~ "line\n" +#~ " --indicator-style=WORD append indicator with style WORD to entry " +#~ "names:\n" +#~ " none (default), classify (-F), file-type (-" +#~ "p)\n" +#~ " -i, --inode print index number of each file\n" +#~ " -I, --ignore=PATTERN do not list implied entries matching shell " +#~ "PATTERN\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l use a long listing format\n" +#~ " -L, --dereference when showing file information for a " +#~ "symbolic\n" +#~ " link, show information for the file the " +#~ "link\n" +#~ " references rather than for the link " +#~ "itself\n" +#~ " -m fill width with a comma separated list of " +#~ "entries\n" +#~ msgstr "" +#~ " -g (ignorée)\n" +#~ " -G, --no-group inhiber l'affichage des informations de " +#~ "groupe\n" +#~ " -h, --human-readable afficher les tailles dans un format lisible " +#~ "par\n" +#~ " --si un humain (i.e. 1K 234M 2G) en utilisant un " +#~ "multiple\n" +#~ " 1000 et non pas de 1024\n" +#~ " -H, --dereference-command-line\n" +#~ " suivre les liens symboliques de la ligne de " +#~ "commande\n" +#~ " --indicator-style=CODE ajouter en suffixe l'indicateur selon le " +#~ "CODE:\n" +#~ " none (par défaut), classify (-F), file-type " +#~ "(-p)\n" +#~ " -i, --inode afficher le numéro d'index de chaque " +#~ "fichier\n" +#~ " -I, --ignore=PATRON ne pas inclure dans la liste les entrées\n" +#~ " concordant avec le PATRON de shell\n" +#~ " -k, --kilobytes identique à --block-size=1024\n" +#~ " -l utiliser le format long d'affichage\n" +#~ " -L, --dereference afficher les entrées pointées par des\n" +#~ " liens symboliques, monter l'information " +#~ "pointée par le lien\n" +#~ " -m remplir la largeur par une liste d'entrées\n" +#~ " séparée par des virgules\n" + +#~ msgid "" +#~ " -S sort by file size\n" +#~ " --sort=WORD extension -X, none -U, size -S, time -t,\n" +#~ " version -v\n" +#~ " status -c, time -t, atime -u, access -u, use " +#~ "-u\n" +#~ " --time=WORD show time as WORD instead of modification " +#~ "time:\n" +#~ " atime, access, use, ctime or status; use\n" +#~ " specified time as sort key if --sort=time\n" +#~ " --time-style=WORD show times using style WORD:\n" +#~ " full-iso, iso, locale, posix-iso\n" +#~ " -t sort by modification time\n" +#~ " -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +#~ " -u with -lt: sort by, and show, access time\n" +#~ " with -l: show access time and sort by " +#~ "name\n" +#~ " otherwise: sort by access time\n" +#~ " -U do not sort; list entries in directory " +#~ "order\n" +#~ " -v sort by version\n" +#~ " -w, --width=COLS assume screen width instead of current " +#~ "value\n" +#~ " -x list entries by lines instead of by columns\n" +#~ " -X sort alphabetically by entry extension\n" +#~ " -1 list one file per line\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "By default, color is not used to distinguish types of files. That is\n" +#~ "equivalent to using --color=none. Using the --color option without the\n" +#~ "optional WHEN argument is equivalent to using --color=always. With\n" +#~ "--color=auto, color codes are output only if standard output is " +#~ "connected\n" +#~ "to a terminal (tty).\n" +#~ msgstr "" +#~ " -S trier selon la taille des fichiers\n" +#~ " --sort=CODE trier selon le CODE suivant: -c pour ctime,\n" +#~ " -X pour extension, -U pour aucun,\n" +#~ " -S pour la taille, -t pour la date\n" +#~ " -v pour la version, -c pour le statut, \n" +#~ " -u pour la date d'accès, -u pour l'accès\n" +#~ " --time=CODE afficher les temps d'accès en mots au lieu " +#~ "de\n" +#~ " date de modification:\n" +#~ " atime, access, use, ctime ou status\n" +#~ " --time-style=CODE afficher les dates selon le CODE:\n" +#~ " full-iso, iso, locale, posix-iso\n" +#~ " -t trier par la date de modification; avec -l:\n" +#~ " afficher 'mtime'\n" +#~ " -T, --tabsize=TAILLE utiliser la tabulation de la TAILLE\n" +#~ " pour chaque colonne au lieu de 8\n" +#~ " -u trier selon la date du dernier accès; avec -" +#~ "l:\n" +#~ " afficher 'atime'\n" +#~ " -U ne pas trier: afficher selon l'ordre\n" +#~ " original des entrées d'un répertoire\n" +#~ " -v trier par version\n" +#~ " -w, --width=LARGEUR utiliser la LARGEUR d'écran au lieu\n" +#~ " des valeurs courantes\n" +#~ " -x afficher les entrées par lignes plutôt que\n" +#~ " par colonnes\n" +#~ " -X trier alphabétiquement par extension des\n" +#~ " entrées\n" +#~ " -1 afficher un fichier par ligne\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" +#~ "Par défaut, la couleur n'est pas utilisée pour distinguer les différents " +#~ "types\n" +#~ "de fichiers. Cela est équivalent à l'utilisation de l'option --" +#~ "color=none. \n" +#~ "L'utilisation de l'option --color sans l'argument WHEN est équivalent à\n" +#~ "l'utilisation de --colors=always. Avec l'option --color=auto, les codes " +#~ "de\n" +#~ "couleur sont transmis vers la sortie standard si celle-ci est reliée à " +#~ "un \n" +#~ "terminal (tty).\n" + +#, fuzzy +#~ msgid "" +#~ "Create named pipes (FIFOs) with the given NAMEs.\n" +#~ "\n" +#~ " -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ " -v, --verbose toujours afficher l'en-tête avec\n" +#~ " les noms de fichiers\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" + +#~ msgid "" +#~ "Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +#~ "for even very expensive hardware probing to recover the data.\n" +#~ "\n" +#~ " -f, --force change permissions to allow writing if necessary\n" +#~ " -n, --iterations=N Overwrite N times instead of the default (%d)\n" +#~ " -s, --size=N shred this many bytes (suffixes like k, M, G accepted)\n" +#~ " -u, --remove truncate and remove file after overwriting\n" +#~ " -v, --verbose show progress\n" +#~ " -x, --exact do not round file sizes up to the next full block\n" +#~ " -z, --zero add a final overwrite with zeros to hide shredding\n" +#~ " - shred standard output\n" +#~ " --help display this help and exit\n" +#~ " --version print version information and exit\n" +#~ "\n" +#~ "Delete FILE(s) if --remove (-u) is specified. The default is not to " +#~ "remove\n" +#~ "the files because it is common to operate on device files like /dev/hda,\n" +#~ "and those files usually should not be removed. When operating on " +#~ "regular\n" +#~ "files, most people use the --remove option.\n" +#~ "\n" +#~ "CAUTION: Note that shred relies on a very important assumption:\n" +#~ "that the filesystem overwrites data in place. This is the traditional\n" +#~ "way to do things, but many modern filesystem designs do not satisfy this\n" +#~ "assumption. The following are examples of filesystems on which shred is\n" +#~ "not effective:\n" +#~ "\n" +#~ "* log-structured or journaled filesystems, such as those supplied with\n" +#~ " AIX and Solaris (and JFS, ReiserFS, XFS, etc.)\n" +#~ "\n" +#~ "* filesystems that write redundant data and carry on even if some writes\n" +#~ " fail, such as RAID-based filesystems\n" +#~ "\n" +#~ "* filesystems that make snapshots, such as Network Appliance's NFS " +#~ "server\n" +#~ "\n" +#~ "* filesystems that cache in temporary locations, such as NFS\n" +#~ " version 3 clients\n" +#~ "\n" +#~ "* compressed filesystems\n" +#~ "\n" +#~ "In addition, file system backups and remote mirrors may contain copies\n" +#~ "of the file that cannot be removed, and that will allow a shredded file\n" +#~ "to be recovered later.\n" +#~ msgstr "" +#~ "Écraser un fichier de façon répétitive, afin de rendre difficile\n" +#~ "toute récupération des données par du matériel même coûteux.\n" +#~ "\n" +#~ " -f, --force modifier les permissions pour permettre\n" +#~ " l'écriture si nécessaire\n" +#~ " -n, --iterations=N écraser N fois au lieu du nombre par défaut %d\n" +#~ " -s, --size=N déchiqueter N octets (les suffixes k, M, G sont " +#~ "acceptés)\n" +#~ " -u, --remove tronquer et détruire le fichier après l'avoir " +#~ "écraser\n" +#~ " -v, --verbose afficher un indicateur de progrès\n" +#~ " -x, --exact ne pas arrondir la taille des fichiers\n" +#~ " jusqu'au prochain bloc complet\n" +#~ " -z, --zero ajouter une écriture finale avec des zéros\n" +#~ " pour camoufler le déchiquetage du fichier\n" +#~ " - déchiqueter l'entrée standard \n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" +#~ "Détruire le FICHIER si --remove (-u) est spécifié. Le défaut est de ne " +#~ "pas détruire\n" +#~ "les fichiers parce qu'il est commun d'opérer sur le fichier du " +#~ "périphérique comme /dev/hda,\n" +#~ "et habituellement ces fichiers ne sont pas détruits. Sur des fichier " +#~ "réguliers,\n" +#~ "la plupart des gens utilise l'option --remove.\n" +#~ "\n" +#~ "ATTENTION: noter que le déchiquetage s'appuie sur l'hypothèse que \n" +#~ "le système de fichiers écrasera les données en place. Cela est la " +#~ "manière\n" +#~ "traditionnelle de faire les choses, mais plusieurs design modernes de " +#~ "systèmes\n" +#~ "de fichiers ne se satisfont pas de cette hypothèse. Les exemples suivants " +#~ "de systèmes\n" +#~ "de fichiers sont ceux où le déchiquetage n'est pas effectif:\n" +#~ "\n" +#~ "* systèmes de fichiers à journalisation, comme ceux fournis avec\n" +#~ " AIX et Solaris (et JFS, ReiserFS, XFS, etc.)\n" +#~ "\n" +#~ "* systèmes de fichiers avec écriture redondante et soutienne les " +#~ "écritures\n" +#~ " même lorsqu'il y a erreur d'écriture\n" +#~ " comme les systèmes de fichiers RAID\n" +#~ "\n" +#~ "* systèmes de fichiers qui prennent des instantanés, comme\n" +#~ " le serveur NFS de Network Appliance\n" +#~ "\n" +#~ "* systèmes de fichiers qui utilisent des caches temporaires,\n" +#~ " comme NFS la version 3 clientète\n" +#~ "\n" +#~ "* systèmes de fichiers compressés\n" + +#, fuzzy +#~ msgid "" +#~ "Force changed blocks to disk, update the super block.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Afficher la somme de contrôle CRC et le décompte d'octets de chaque " +#~ "FICHIER.\n" +#~ "\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" + +#~ msgid "" +#~ "Update the access and modification times of each FILE to the current " +#~ "time.\n" +#~ "\n" +#~ " -a change only the access time\n" +#~ " -c, --no-create do not create any files\n" +#~ " -d, --date=STRING parse STRING and use it instead of current time\n" +#~ " -f (ignored)\n" +#~ " -m change only the modification time\n" +#~ " -r, --reference=FILE use this file's times instead of current time\n" +#~ " -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current " +#~ "time\n" +#~ " --time=WORD set time given by WORD: access atime use (same " +#~ "as -a)\n" +#~ " modify mtime (same as -m)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Note that the three time-date formats recognized for the -d and -t " +#~ "options\n" +#~ "and for the obsolescent argument are all different.\n" +#~ msgstr "" +#~ "Mettre à jour les dates d'accès et de modification de chaque FICHIER\n" +#~ "selon la date courante.\n" +#~ "\n" +#~ " -a modifier seulement la date d'accès\n" +#~ " -c, --no-create ne créer aucun fichier\n" +#~ " -d, --date=CHAÎNE analyser la CHAÎNE et l'utiliser au lieu\n" +#~ " de la date courante\n" +#~ " -f (ignorée)\n" +#~ " -m modifier seulement la date de modification\n" +#~ " -r, --file=FICHIER utiliser la date du FICHIER comme référence\n" +#~ " au lieu de la date courante\n" +#~ " -t DATE utiliser la DATE selon le format:\n" +#~ " [[CC]AA]MMJJhhmm[.ss]\n" +#~ " comme tampon date-heure au lieu de la date " +#~ "courante\n" +#~ " --time=CODE -a pour 'atime', -m pour 'mtime', -m pour " +#~ "modifié,\n" +#~ " -a pour utilisé\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" +#~ "Noter que les 3 formats du tampon date-heure sont reconnus pour les\n" +#~ "options -d et -t et les arguments désuets sont tous différents.\n" + +#~ msgid "Copyright (C) 2001 Free Software Foundation, Inc." +#~ msgstr "Copyright © 2001 Free Software Foundation, Inc." + +#~ msgid "" +#~ "Warning: the meaning of `-P' will change in the future to conform to " +#~ "POSIX.\n" +#~ "Use `--parents' for the old meaning, and `--no-dereference' for the new " +#~ "one." +#~ msgstr "" +#~ "AVERTISSEMENT: le sens de `-P' changera pour se conformer à POSIX.\n" +#~ "Utiliser `--parents' pour le vieux sens et `--no-dereference' pour le " +#~ "nouveau." + +#, fuzzy +#~ msgid "%a %b %d %H:%M:%S %Y" +#~ msgstr "%b %e %H:%M %Y" + +#~ msgid "" +#~ "when creating character special files, major and minor device\n" +#~ "numbers must be specified" +#~ msgstr "" +#~ "Lors de la création d'un fichier de type caractère spécial, les numéros\n" +#~ "majeur et mineur de périphériques doivent être spécifiées." + +#~ msgid "virtual memory exhausted" +#~ msgstr "Mémoire virtuelle épuisée" + +#~ msgid "Memory exhausted" +#~ msgstr "Mémoire épuisée" + +#~ msgid "group of %s changed to %s\n" +#~ msgstr "Le groupe d'appartenance de %s a été attribué à %s.\n" + +#~ msgid "you are not a member of group `%s'" +#~ msgstr "Vous n'êtes pas membre du groupe `%s'." + +#~ msgid "owner of %s changed to " +#~ msgstr "L'appartenance de %s a été attribué à " + +#, fuzzy +#~ msgid "cannot remove old link to `%s'" +#~ msgstr "Ne peut exécuter « ioctl » sur « %s »" + +#, fuzzy +#~ msgid "cannot make fifo `%s'" +#~ msgstr "Ne peut exécuter « ioctl » sur « %s »" + +#~ msgid "" +#~ "Delete a file securely, first overwriting it to hide its contents.\n" +#~ "\n" +#~ " -f, --force change permissions to allow writing if necessary\n" +#~ " -n, --iterations=N Overwrite N times instead of the default (%d)\n" +#~ " -s, --size=N shred this many bytes (suffixes like k, M, G accepted)\n" +#~ " -u, --remove truncate and remove file after overwriting\n" +#~ " -v, --verbose show progress\n" +#~ " -x, --exact do not round file sizes up to the next full block\n" +#~ " -z, --zero add a final overwrite with zeros to hide shredding\n" +#~ " - shred standard output\n" +#~ " --help display this help and exit\n" +#~ " --version print version information and exit\n" +#~ "\n" +#~ "FIXME maybe add more discussion here?" +#~ msgstr "" +#~ "Détruire un fichier de façon sécuritaire, en l'écrasant pour cacher son " +#~ "contenu.\n" +#~ "\n" +#~ " -f, --force modifier les permissions pour permettre\n" +#~ " l'écriture si nécessaire\n" +#~ " -n, --iterations=N écraser N fois au lieu du nombre par défaut %d\n" +#~ " -s, --size=N déchiqueter N octets (les suffixes k, M, G sont " +#~ "acceptés)\n" +#~ " -u, --remove tronquer et détruire le fichier après l'avoir " +#~ "écraser\n" +#~ " -v, --verbose afficher un indicateur de progrès\n" +#~ " -x, --exact ne pas arrondir la taille des fichiers\n" +#~ " jusqu'au prochain bloc complet\n" +#~ " -z, --zero ajouter une écriture finale avec des zéros\n" +#~ " pour camoufler le déchiquetage du fichier\n" +#~ " - déchiqueter l'entrée standard \n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" +#~ "FIXME d'autres détails doivent être fournis par le mainteneur?" + +#~ msgid "--version-control" +#~ msgstr "--version-control" + +#~ msgid "create %s %s to %s" +#~ msgstr "Création de %s %s vers %s" + +#~ msgid "hard link" +#~ msgstr "lien direct" + +#~ msgid "link" +#~ msgstr "lien" + +#, fuzzy +#~ msgid "current directory" +#~ msgstr "répertoire" + +#, fuzzy +#~ msgid "starting directory" +#~ msgstr "répertoire" + +#~ msgid "%s -> %s (backup)\n" +#~ msgstr "%s -> %s (archivage)\n" + +#, fuzzy +#~ msgid "" +#~ "Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +#~ " or: %s [OPTION]... TARGET... DIRECTORY\n" +#~ msgstr "" +#~ "Usage: %s [OPTION]... [ENTRÉE]... (sans l'option -G)\n" +#~ " ou: %s -G [OPTION]... [ÉNTRÉE [SORTIE]]\n" + +#, fuzzy +#~ msgid "Usage: %s [OPTION]... EXISTING_DIR NEW_DIR\n" +#~ msgstr "Usage: %s [OPTION]... ENSEMBLE1 [ENSEMBLE2]\n" + +#, fuzzy +#~ msgid "cannot rename `.' or `..'" +#~ msgstr "Ne peut fixer le nom du poste (hostname) à « %s »" + +#, fuzzy +#~ msgid "%s is closed" +#~ msgstr "L'entrée standard est fermée." + +#, fuzzy +#~ msgid "Error seeking `%s'" +#~ msgstr "Erreur lors de la lecture %s" + +#~ msgid "(Did you remember to open stdin read/write with \"<>file\"?)\n" +#~ msgstr "" +#~ "Rappelez-vous d'ouvrir l'entrée standard comme suit: \"<>FICHIER\"\n" + +#~ msgid "%s: pass %lu/%lu (%s)...%lu/%lu K" +#~ msgstr "%s: pass %lu/%lu (%s)...%lu/%lu K" + +#, fuzzy +#~ msgid "Error syncing `%s'" +#~ msgstr "Erreur lors de la lecture %s" + +#, fuzzy +#~ msgid "Can't fstat file `%s'" +#~ msgstr "Création du fichier « %s »\n" + +#~ msgid "`%s' is not a regular file: use -d to enable operations on devices" +#~ msgstr "" +#~ "`%s' n'est pas un fichier régulier: \n" +#~ "utiliser -d pour permettre les opérations sur périphériques" + +#~ msgid "unable to allocate storage for %lu passes" +#~ msgstr "incapable d'allouer de l'espace de stockage pour %lu passes" + +#, fuzzy +#~ msgid "%s: deleting" +#~ msgstr "%s: fichier trop long" + +#, fuzzy +#~ msgid "%s: deleted" +#~ msgstr "%s: fichier tronqué" + +#~ msgid "Unable to delete file `%s'" +#~ msgstr "Incapable de détruire le fichier `%s'" + +#~ msgid "sparse type" +#~ msgstr "Type dispersé." + +#~ msgid "time type" +#~ msgstr "Type de date" + +#~ msgid "format type" +#~ msgstr "Type de format" + +#~ msgid "colorization criterion" +#~ msgstr "Critère de coloration" + +#~ msgid "indicator style" +#~ msgstr "indicateur de style" + +#~ msgid "quoting style" +#~ msgstr "indicateur de style de guillemets" + +#~ msgid "time selector" +#~ msgstr "Sélecteur de date." + +#~ msgid "" +#~ "the option for counting 1MB blocks may not be used\n" +#~ "with the portable output format" +#~ msgstr "" +#~ "L'option pour compter les blocs de 1Mo ne peut être\n" +#~ "utilisée avec l'option de format de sortie portable." + +#, fuzzy +#~ msgid "removing non-directory %s\n" +#~ msgstr "AVERTISSEMENT: ne peut changer pour le répertoire %s" + +#, fuzzy +#~ msgid "remove directory `%s'%s? " +#~ msgstr "Ne peut créer le répertoire %s" + +#~ msgid "%s: replace `%s', overriding mode %04o? " +#~ msgstr "%s: remplacer`%s', en outrepassant le mode %04o? " + +#, fuzzy +#~ msgid "Usage: %s [OPTION]... GROUP FILE...\n" +#~ msgstr "Usage: %s [OPTION]... [FICHIER]...\n" + +#~ msgid "cannot move `%s' across filesystems: Not a regular file" +#~ msgstr "" +#~ "`%s' ne peut être déplacé à travers des sytèmes de fichiers:\n" +#~ "parce qu'il n'est pas un fichier de type régulier." + +#~ msgid "%s: remove %s`%s', overriding mode %04o? " +#~ msgstr "%s: détruire %s`%s', en outrepassant le mode %04o? " + +#~ msgid "%s: descend directory `%s', overriding mode %04o? " +#~ msgstr "%s: aller dans le répertoire `%s', en outrepassant le mode %04o? " + +#~ msgid "%s: remove directory `%s' (might be nonempty)? " +#~ msgstr "%s: détruire le répertoire «%s» (peut ne pas être vide)? " + +#~ msgid "days" +#~ msgstr "jours" + +#~ msgid "users" +#~ msgstr "usager" + +#, fuzzy +#~ msgid "" +#~ "Run COMMAND with root directory set to NEWROOT.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +#~ msgstr "" +#~ "Afficher la somme de contrôle CRC et le décompte d'octets de chaque " +#~ "FICHIER.\n" +#~ "\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" + +#~ msgid "" +#~ "\n" +#~ "FORMAT controls the output. The only valid option for the second form\n" +#~ "specifies Coordinated Universal Time. Interpreted sequences are:\n" +#~ "\n" +#~ " %%%% a literal %%\n" +#~ " %%a locale's abbreviated weekday name (Sun..Sat)\n" +#~ " %%A locale's full weekday name, variable length (Sunday..Saturday)\n" +#~ " %%b locale's abbreviated month name (Jan..Dec)\n" +#~ " %%B locale's full month name, variable length (January..December)\n" +#~ " %%c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +#~ " %%d day of month (01..31)\n" +#~ " %%D date (mm/dd/yy)\n" +#~ " %%e day of month, blank padded ( 1..31)\n" +#~ " %%h same as %%b\n" +#~ " %%H hour (00..23)\n" +#~ " %%I hour (01..12)\n" +#~ " %%j day of year (001..366)\n" +#~ " %%k hour ( 0..23)\n" +#~ " %%l hour ( 1..12)\n" +#~ " %%m month (01..12)\n" +#~ " %%M minute (00..59)\n" +#~ " %%n a newline\n" +#~ " %%p locale's AM or PM\n" +#~ " %%r time, 12-hour (hh:mm:ss [AP]M)\n" +#~ " %%s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +#~ " %%S second (00..60)\n" +#~ " %%t a horizontal tab\n" +#~ " %%T time, 24-hour (hh:mm:ss)\n" +#~ " %%U week number of year with Sunday as first day of week (00..53)\n" +#~ " %%V week number of year with Monday as first day of week (01..53)\n" +#~ " %%w day of week (0..6); 0 represents Sunday\n" +#~ " %%W week number of year with Monday as first day of week (00..53)\n" +#~ " %%x locale's date representation (mm/dd/yy)\n" +#~ " %%X locale's time representation (%%H:%%M:%%S)\n" +#~ " %%y last two digits of year (00..99)\n" +#~ " %%Y year (1970...)\n" +#~ " %%z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +#~ " %%Z time zone (e.g., EDT), or nothing if no time zone is " +#~ "determinable\n" +#~ "\n" +#~ "By default, date pads numeric fields with zeroes. GNU date recognizes\n" +#~ "the following modifiers between `%%' and a numeric directive.\n" +#~ "\n" +#~ " `-' (hyphen) do not pad the field\n" +#~ " `_' (underscore) pad the field with spaces\n" +#~ msgstr "" +#~ "\n" +#~ "FORMAT contrôle l'affichage. Seule l'option valide de la seconde forme\n" +#~ "s'applique au système de temps UCT. Les séquences interprétées sont:\n" +#~ "\n" +#~ " %%%% le caractère %%\n" +#~ " %%a les noms abrégés localisés des jours de la semaine (Dim..Sam)\n" +#~ " %%A les noms complets localisés des jours de la semaine\n" +#~ " de longueurs variables (Dimanche..Samedi)\n" +#~ " %%b les noms abrégés localisés des mois (Jan..Déc)\n" +#~ " %%B les noms complets localisés des mois de longueurs variables\n" +#~ " (Janvier..Décembre)\n" +#~ " %%c la date et l'heure localisées (Sam 04 Nov 12:02:33 EDT 1989)\n" +#~ " %%d jour du mois (01..31)\n" +#~ " %%D date (mm/jj/aa)\n" +#~ " %%e jour du mois, précédé d'un blanc ( 1..31)\n" +#~ " %%h identique à %%b\n" +#~ " %%H heure (00..23)\n" +#~ " %%I heure (01..12)\n" +#~ " %%j jour numérique de l'année (001..366)\n" +#~ " %%k heure ( 0..23)\n" +#~ " %%l heure ( 1..12)\n" +#~ " %%m mois (01..12)\n" +#~ " %%M minute (00..59)\n" +#~ " %%n un saut de ligne\n" +#~ " %%p localisé AM ou PM\n" +#~ " %%r heure, 12-heure (hh:mm:ss [AP]M)\n" +#~ " %%s secondes depuis 00:00:00, Jan 1, 1970 (une extension de GNU)\n" +#~ " %%S secondes (00..61)\n" +#~ " %%t un saut horizontal de tabulation\n" +#~ " %%T heure, 24-heure (hh:mm:ss)\n" +#~ " %%U numéro de la semaine dans l'année débutant par Dimanche\n" +#~ " comme premier jour de la semaine (00..53)\n" +#~ " %%V numéro de la semaine dans l'année débutant par Lundi\n" +#~ " comme premier jour de la semaine (01..52)\n" +#~ " %%w jour de la semaine (0..6); 0 représente Dimanche\n" +#~ " %%W numéro de la samaine dans l'année débutant par Lundi\n" +#~ " comme premier jour de la semaine (00..53)\n" +#~ " %%x représentation localisée de la date (mm/jj/aa)\n" +#~ " %%X représentation localisée de l'heure (%%H:%%M:%%S)\n" +#~ " %%y les deux derniers chiffres de l'année (00..99)\n" +#~ " %%Y année (1970...)\n" +#~ " %%z fuseau horaire en format numérique selon le RFC-822 (-0500)\n" +#~ " (une extension non-standard)\n" +#~ " %%Z fuseau horaire (i.e. EDT), nul si aucun fuseau horaire\n" +#~ " ne peut être déterminé\n" +#~ "\n" +#~ "Par défaut, les champs numériques de date sont complétés par des zéros.\n" +#~ "GNU reconnaît les modificateurs suivants entre « %% » et une directive " +#~ "numérique.\n" +#~ "\n" +#~ " « - » (tiret) ne pas compléter le champ\n" +#~ " « _ » (souligné) compléter le champ par des blancs\n" + +#~ msgid "" +#~ "Echo the STRING(s) to standard output.\n" +#~ "\n" +#~ " -n do not output the trailing newline\n" +#~ " -e enable interpretation of the backslash-escaped " +#~ "characters\n" +#~ " listed below\n" +#~ " -E disable interpretation of those sequences in STRINGs\n" +#~ " --help display this help and exit (should be alone)\n" +#~ " --version output version information and exit (should be alone)\n" +#~ "\n" +#~ "Without -E, the following sequences are recognized and interpolated:\n" +#~ "\n" +#~ " \\NNN the character whose ASCII code is NNN (octal)\n" +#~ " \\\\ backslash\n" +#~ " \\a alert (BEL)\n" +#~ " \\b backspace\n" +#~ " \\c suppress trailing newline\n" +#~ " \\f form feed\n" +#~ " \\n new line\n" +#~ " \\r carriage return\n" +#~ " \\t horizontal tab\n" +#~ " \\v vertical tab\n" +#~ msgstr "" +#~ "Faire l'écho de CHAÎNE(S) vers la sortie standard.\n" +#~ "\n" +#~ " -n ne pas afficher le saut de ligne de fin\n" +#~ " -e (inutilisée)\n" +#~ " -E inhiber l'interpolation de certaines séquences de la " +#~ "CHAÎNE\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" +#~ "Sans -E, les séquences suivantes sont reconnues et interpolées:\n" +#~ "\n" +#~ " \\NNN le caractère dont le code ASCII est NNN (en octal)\n" +#~ " \\\\ barre oblique inverse\n" +#~ " \\a bip sonore d'alerte\n" +#~ " \\b retour arrière\n" +#~ " \\c supprimer le saut de ligne de fin\n" +#~ " \\f saut de page\n" +#~ " \\n saut de ligne\n" +#~ " \\r retour de chariot\n" +#~ " \\t tabulation horizontale\n" +#~ " \\v tabulation verticale\n" + +#~ msgid "" +#~ "Print the value of EXPRESSION to standard output. A blank line below\n" +#~ "separates increasing precedence groups. EXPRESSION may be:\n" +#~ "\n" +#~ " ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +#~ "\n" +#~ " ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +#~ "\n" +#~ " ARG1 < ARG2 ARG1 is less than ARG2\n" +#~ " ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +#~ " ARG1 = ARG2 ARG1 is equal to ARG2\n" +#~ " ARG1 != ARG2 ARG1 is unequal to ARG2\n" +#~ " ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +#~ " ARG1 > ARG2 ARG1 is greater than ARG2\n" +#~ "\n" +#~ " ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +#~ " ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +#~ "\n" +#~ " ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +#~ " ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +#~ " ARG1 %% ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +#~ "\n" +#~ " STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +#~ "\n" +#~ " match STRING REGEXP same as STRING : REGEXP\n" +#~ " substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +#~ " index STRING CHARS index in STRING where any CHARS is found, or " +#~ "0\n" +#~ " length STRING length of STRING\n" +#~ " quote TOKEN interpret TOKEN as a string, even if it is " +#~ "a\n" +#~ " keyword like `match' or an operator like " +#~ "`/'\n" +#~ "\n" +#~ " ( EXPRESSION ) value of EXPRESSION\n" +#~ msgstr "" +#~ "Afficher la valeur de l'EXPRESSION vers la sortie standard. Une ligne " +#~ "blanche\n" +#~ "sépare la précédence croissante des groupes d'expressions.\n" +#~ "L'EXPRESSION peut être:\n" +#~ "\n" +#~ " PARAM1 | PARAM2 PARAM1 s'il est nul ou 0, autrement PARAM2\n" +#~ "\n" +#~ " PARAM1 & PARAM2 PARAM1 si aucun des paramètres est nul ou 0,\n" +#~ " autrement 0\n" +#~ "\n" +#~ " PARAM1 < PARAM2 PARAM1 si plus petit que PARAM2\n" +#~ " PARAM1 <= PARAM2 PARAM1 si plus petit ou égal à PARAM2\n" +#~ " PARAM1 = PARAM2 PARAM1 si égal à PARAM2\n" +#~ " PARAM1 != PARAM2 PARAM1 si inégal à PARAM2\n" +#~ " PARAM1 >= PARAM2 PARAM1 si plus grand ou égal à PARAM2\n" +#~ " PARAM1 > PARAM2 PARAM1 si plus grand que PARAM2\n" +#~ "\n" +#~ " PARAM1 + PARAM2 somme arithmétique de PARAM1 et PARAM2\n" +#~ " PARAM1 - PARAM2 différence arithmétique de PARAM1 et PARAM2\n" +#~ "\n" +#~ " PARAM1 * PARAM2 produit arithmétique de PARAM1 et PARAM2\n" +#~ " PARAM1 / PARAM2 quotient arithmétique de PARAM1 divisé par " +#~ "PARAM2\n" +#~ " PARAM1 %% PARAM2 reste arithmétique PARAM1 divisé par PARAM2\n" +#~ "\n" +#~ " CHAÎNE: EXPREG patron d'ancrage de concordance de l'EXPREG dans la " +#~ "CHAÎNE\n" +#~ "\n" +#~ " match CHAÎNE EXPREG identique à CHAÎNE: EXPREG\n" +#~ " substr CHAÎNE POS LONG sous-chaîne de CHAÎNE débutant à la POSition\n" +#~ " (comptée à partir de 1) et ayant une LONGueur\n" +#~ " index CHAÎNE CAR valeur de la position du CARactère retrouvé\n" +#~ " dans la CHAÎNE, sinon 0\n" +#~ " length CHAÎNE longueur de la CHAÎNE\n" +#~ " quote JETON interpréter le JETON comme une chaîne, même si " +#~ "c'est\n" +#~ " un mot clé comme « match » ou un opérateur " +#~ "comme « / »\n" +#~ "\n" +#~ " ( EXPRESSION ) valeur de l'EXPRESSION\n" + +#~ msgid "" +#~ "\n" +#~ " -l do long format output\n" +#~ " -b omit the user's home directory and shell in long " +#~ "format\n" +#~ " -h omit the user's project file in long format\n" +#~ " -p omit the user's plan file in long format\n" +#~ " -s do short format output, this is the default\n" +#~ " -f omit the line of column headings in short format\n" +#~ " -w omit the user's full name in short format\n" +#~ " -i omit the user's full name and remote host in short " +#~ "format\n" +#~ " -q omit the user's full name, remote host and idle time\n" +#~ " in short format\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "A lightweight `finger' program; print user information.\n" +#~ "The utmp file will be %s.\n" +#~ msgstr "" +#~ "\n" +#~ " -l afficher en format long\n" +#~ " -b omettre le répertoire d'attache de l'usager\n" +#~ " et son shell en format long\n" +#~ " -h omettre le fichier de projet de l'usager en\n" +#~ " format long\n" +#~ " -p omettre le fichier de plan de l'usager en\n" +#~ " format long\n" +#~ " -s afficher en format court (par défaut)\n" +#~ " -f omettre la ligne de l'en-tête des colonnes\n" +#~ " en format court\n" +#~ " -w omettre le nom complet de l'usager en format court\n" +#~ " -i omettre le nom complet de l'usager et le nom de l'hôte\n" +#~ " en format court\n" +#~ " -q omettre le nom complet de l'usager, le nom de l'hôte\n" +#~ " et le temps d'inactivité en format court\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" +#~ "Une version allégée du programme « finger »; afficher les informations " +#~ "d'un usager.\n" +#~ "Le fichier utmp sera %s.\n" + +#~ msgid "" +#~ "Print ARGUMENT(s) according to FORMAT.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "FORMAT controls the output as in C printf. Interpreted sequences are:\n" +#~ "\n" +#~ " \\\" double quote\n" +#~ " \\0NNN character with octal value NNN (0 to 3 digits)\n" +#~ " \\\\ backslash\n" +#~ " \\a alert (BEL)\n" +#~ " \\b backspace\n" +#~ " \\c produce no further output\n" +#~ " \\f form feed\n" +#~ " \\n new line\n" +#~ " \\r carriage return\n" +#~ " \\t horizontal tab\n" +#~ " \\v vertical tab\n" +#~ " \\xNNN byte with hexadecimal value NNN (1 to 3 digits)\n" +#~ "\n" +#~ " \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +#~ " \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +#~ " %%%% a single %%\n" +#~ " %%b ARGUMENT as a string with `\\' escapes interpreted\n" +#~ "\n" +#~ "and all C format specifications ending with one of diouxXfeEgGcs, with\n" +#~ "ARGUMENTs converted to proper type first. Variable widths are handled.\n" +#~ msgstr "" +#~ "Afficher PARAMÈTRE(s) selon le FORMAT.\n" +#~ "\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" +#~ "Le FORMAT contrôle la sortie comme la fonction printf() en C.\n" +#~ "Les séquences interprétées sont:\n" +#~ "\n" +#~ " \\\" guillemets\n" +#~ " \\0NNN caractère ayant la valeur octale NNN (0 à 3 chiffres)\n" +#~ " \\\\ barre oblique inverse\n" +#~ " \\a bip sonore d'alerte\n" +#~ " \\b retour arrière\n" +#~ " \\c ne pas afficher d'autres informations sur la sortie\n" +#~ " \\f saut de page\n" +#~ " \\n saut de ligne\n" +#~ " \\r retour de chariot\n" +#~ " \\t tabulation horizontale\n" +#~ " \\v tabulation verticale\n" +#~ " \\xNNN caractère ayant la valeur hexadécimale NNN (1 à 3 chiffres)\n" +#~ " \\UNNNNNNNN caractère ayant la valeur hexadécimal NNNNNNNN (8 " +#~ "chiffres)\n" +#~ " %%%% le caractère %%\n" +#~ " %%b PARAMÈTRES comme une chaîne avec « \\ » d'échappement " +#~ "interprétés\n" +#~ "\n" +#~ "ainsi que toutes les spécifications de format en C se terminant par une " +#~ "des\n" +#~ "options suivantes diouxXfeEgGcs, avec un PARAMÈTRE\n" +#~ "converti au premier type approprié.\n" +#~ "Les largeurs variables de champ sont supportées.\n" + +#, fuzzy +#~ msgid "" +#~ "Print the full filename of the current working directory.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Afficher la somme de contrôle CRC et le décompte d'octets de chaque " +#~ "FICHIER.\n" +#~ "\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" + +#~ msgid "" +#~ "\n" +#~ "Special characters:\n" +#~ "* dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +#~ " eof CHAR CHAR will send an end of file (terminate the input)\n" +#~ " eol CHAR CHAR will end the line\n" +#~ "* eol2 CHAR alternate CHAR for ending the line\n" +#~ " erase CHAR CHAR will erase the last character typed\n" +#~ " intr CHAR CHAR will send an interrupt signal\n" +#~ " kill CHAR CHAR will erase the current line\n" +#~ "* lnext CHAR CHAR will enter the next character quoted\n" +#~ " quit CHAR CHAR will send a quit signal\n" +#~ "* rprnt CHAR CHAR will redraw the current line\n" +#~ " start CHAR CHAR will restart the output after stopping it\n" +#~ " stop CHAR CHAR will stop the output\n" +#~ " susp CHAR CHAR will send a terminal stop signal\n" +#~ "* swtch CHAR CHAR will switch to a different shell layer\n" +#~ "* werase CHAR CHAR will erase the last word typed\n" +#~ msgstr "" +#~ "\n" +#~ "Caractères spéciaux:\n" +#~ "* dsusp CAR CAR émettra un signal d'arrêt de terminal une\n" +#~ " fois le tampon d'entrée vidé\n" +#~ " eof CAR CAR transmettra une fin de fichier\n" +#~ " (pour stopper l'ingestion à l'entrée)\n" +#~ " eol CAR CAR terminera la ligne\n" +#~ "* eol2 CAR CAR servira de caractère alternatif de fin de ligne\n" +#~ " erase CAR CAR servira de touche d'effacement sur le dernier\n" +#~ " caractère entrée\n" +#~ " intr CAR CAR transmettra un signal d'interruption\n" +#~ " kill CAR CAR effacera la ligne courante\n" +#~ "* lnext CAR CAR entrera le prochain caractère entre guillemets\n" +#~ " quit CAR CAR transmettra un signal de fin\n" +#~ "* rprnt CAR CAR servira à ré-afficher la dernière ligne\n" +#~ " start CAR CAR permettra la poursuite de l'affichage de\n" +#~ " sortie après avoir été stoppé\n" +#~ " stop CAR CAR stoppera l'affichage de sortie\n" +#~ " susp CAR CAR transmettra un signal d'arrêt de terminal\n" +#~ "* swtch CAR CAR permettra de passer à une couche différente de shell\n" +#~ "* werase CAR CAR effacera le dernier mot tapé\n" + +#~ msgid "" +#~ "\n" +#~ "Special settings:\n" +#~ " N set the input and output speeds to N bauds\n" +#~ "* cols N tell the kernel that the terminal has N columns\n" +#~ "* columns N same as cols N\n" +#~ " ispeed N set the input speed to N\n" +#~ "* line N use line discipline N\n" +#~ " min N with -icanon, set N characters minimum for a completed " +#~ "read\n" +#~ " ospeed N set the output speed to N\n" +#~ "* rows N tell the kernel that the terminal has N rows\n" +#~ "* size print the number of rows and columns according to the " +#~ "kernel\n" +#~ " speed print the terminal speed\n" +#~ " time N with -icanon, set read timeout of N tenths of a second\n" +#~ msgstr "" +#~ "\n" +#~ "Configurations spéciales:\n" +#~ " N initialiser les vitesses d'entrée et de sortie à N bauds\n" +#~ "* cols N indiquer au kernel que le terminal a N colonnes\n" +#~ "* columns N identique à cols N\n" +#~ " ispeed N initialiser la vitesse d'entrée à N\n" +#~ "* line N utiliser le conditionnement propre de la ligne N\n" +#~ " min N avec -icanon, initialiser à N le nombre de caractères\n" +#~ " nécessaires pour obtenir une lecture complète\n" +#~ " ospeed N initialiser la vitesse de sortie à N\n" +#~ "* rows N indiquer au kernel que le terminal a N lignes\n" +#~ "* size afficher le nombre de lignes et de colonnes\n" +#~ " selon les paramètres du kernel\n" +#~ " speed afficher la vitesse du terminal\n" +#~ " time N avec -icanon, initialiser le délai\n" +#~ " d'inactivité de lecture à N dizièmes de seconde\n" + +#~ msgid "" +#~ "\n" +#~ "Input settings:\n" +#~ " [-]brkint breaks cause an interrupt signal\n" +#~ " [-]icrnl translate carriage return to newline\n" +#~ " [-]ignbrk ignore break characters\n" +#~ " [-]igncr ignore carriage return\n" +#~ " [-]ignpar ignore characters with parity errors\n" +#~ "* [-]imaxbel beep and do not flush a full input buffer on a character\n" +#~ " [-]inlcr translate newline to carriage return\n" +#~ " [-]inpck enable input parity checking\n" +#~ " [-]istrip clear high (8th) bit of input characters\n" +#~ "* [-]iuclc translate uppercase characters to lowercase\n" +#~ "* [-]ixany let any character restart output, not only start " +#~ "character\n" +#~ " [-]ixoff enable sending of start/stop characters\n" +#~ " [-]ixon enable XON/XOFF flow control\n" +#~ " [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +#~ " [-]tandem same as [-]ixoff\n" +#~ msgstr "" +#~ "\n" +#~ "Configurations d'entrée:\n" +#~ " [-]brkint le « break » provoque un signal d'interruption\n" +#~ " [-]icrnl traduire le retour de chariot en saut de ligne\n" +#~ " [-]ignbrk ignorer le caractère break\n" +#~ " [-]igncr ignorer le retour de chariot\n" +#~ " [-]ignpar ignorer les caractères ayant des erreurs de parité\n" +#~ "* [-]imaxbel indiquer par un bip sonore et ne pas vider le tampon\n" +#~ " d'entrée lors de l'arrivée d'un caractère\n" +#~ " [-]inlcr traduire le saut de ligne en retour de chariot\n" +#~ " [-]inpck autoriser la vérification de la parité à l'entrée\n" +#~ " [-]istrip mettre à zéro le bit du haut (8e) d'un caractère de " +#~ "l'entrée\n" +#~ "* [-]iuclc traduire les majuscles en minuscules\n" +#~ "* [-]ixany permettre à n'importe quel caractère de relancer " +#~ "l'affichage\n" +#~ " sur la sortie, pas uniquement le caractère de " +#~ "redémarrage\n" +#~ " [-]ixoff autoriser l'envoie d'un caractère d'arrêt/départ\n" +#~ " [-]ixon autoriser le contrôle de flux XON/XOFF\n" +#~ " [-]parmrk indiquer les erreur de parité par une séquence\n" +#~ " de caractères (255-0)\n" +#~ " [-]tandem identique à [-]ixoff\n" + +#~ msgid "" +#~ "\n" +#~ "Local settings:\n" +#~ " [-]crterase echo erase characters as backspace-space-backspace\n" +#~ "* crtkill kill all line by obeying the echoprt and echoe settings\n" +#~ "* -crtkill kill all line by obeying the echoctl and echok settings\n" +#~ "* [-]ctlecho echo control characters in hat notation (`^c')\n" +#~ " [-]echo echo input characters\n" +#~ "* [-]echoctl same as [-]ctlecho\n" +#~ " [-]echoe same as [-]crterase\n" +#~ " [-]echok echo a newline after a kill character\n" +#~ "* [-]echoke same as [-]crtkill\n" +#~ " [-]echonl echo newline even if not echoing other characters\n" +#~ "* [-]echoprt echo erased characters backward, between `\\' and '/'\n" +#~ " [-]icanon enable erase, kill, werase, and rprnt special characters\n" +#~ " [-]iexten enable non-POSIX special characters\n" +#~ " [-]isig enable interrupt, quit, and suspend special characters\n" +#~ " [-]noflsh disable flushing after interrupt and quit special " +#~ "characters\n" +#~ "* [-]prterase same as [-]echoprt\n" +#~ "* [-]tostop stop background jobs that try to write to the terminal\n" +#~ "* [-]xcase with icanon, escape with `\\' for uppercase characters\n" +#~ msgstr "" +#~ "\n" +#~ "Configurations locales:\n" +#~ " [-]crterase faire l'écho du caractère « erase » selon la séquence\n" +#~ " retour arrière-espace-retour arrière\n" +#~ "* crtkill annuler les ligne respectant la configuration\n" +#~ " « echoprt » et « echoe »\n" +#~ "* -crtkill annuler les lignes respectant la configuration\n" +#~ " « echoctl » et « echok »\n" +#~ "* [-]ctlecho faire l'écho des caractères de contrôle par une notation\n" +#~ " en chapeau (« ^c »)\n" +#~ " [-]echo faire l'écho des caractères à l'entrée\n" +#~ "* [-]echoctl identique à [-]ctlecho\n" +#~ " [-]echoe identique à [-]crterase\n" +#~ " [-]echok faire l'écho d'un saut de ligne après un caractère " +#~ "d'annulation\n" +#~ "* [-]echoke identique à [-]crtkill\n" +#~ " [-]echonl faire l'écho d'un saut de ligne même s'il n'y pas\n" +#~ " d'écho des autres caractères\n" +#~ "* [-]echoprt faire l'écho des caractères d'effacement par retour " +#~ "arrière,\n" +#~ " entre « \\ » et « / »\n" +#~ " [-]icanon autoriser les caractères spéciaux\n" +#~ " « erase », « kill », « werase », et « rprnt »\n" +#~ " [-]iexten autoriser les caractères spéciaux non-POSIX\n" +#~ " [-]isig autoriser les caractères spéciaux\n" +#~ " « interrupt », « quit », et « suspend »\n" +#~ " [-]noflsh inhiber la vidange après réception des caractères\n" +#~ " « interrupt » et « quit »\n" +#~ "* [-]prterase identique à [-]echoprt\n" +#~ "* [-]tostop stopper les tâches d'arrière plan qui essaient d'écrire\n" +#~ " sur le terminal\n" +#~ "* [-]xcase avec « icanon », faire l'échappement avec « \\ »\n" +#~ " pour les majuscules\n" + +#~ msgid "" +#~ "\n" +#~ "Combination settings:\n" +#~ "* [-]LCASE same as [-]lcase\n" +#~ " cbreak same as -icanon\n" +#~ " -cbreak same as icanon\n" +#~ " cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +#~ " icanon, eof and eol characters to their default values\n" +#~ " -cooked same as raw\n" +#~ " crt same as echoe echoctl echoke\n" +#~ " dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +#~ " kill ^u\n" +#~ "* [-]decctlq same as [-]ixany\n" +#~ " ek erase and kill characters to their default values\n" +#~ " evenp same as parenb -parodd cs7\n" +#~ " -evenp same as -parenb cs8\n" +#~ "* [-]lcase same as xcase iuclc olcuc\n" +#~ " litout same as -parenb -istrip -opost cs8\n" +#~ " -litout same as parenb istrip opost cs7\n" +#~ " nl same as -icrnl -onlcr\n" +#~ " -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +#~ " oddp same as parenb parodd cs7\n" +#~ " -oddp same as -parenb cs8\n" +#~ " [-]parity same as [-]evenp\n" +#~ " pass8 same as -parenb -istrip cs8\n" +#~ " -pass8 same as parenb istrip cs7\n" +#~ " raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +#~ " -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +#~ " -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +#~ " -raw same as cooked\n" +#~ " sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +#~ " -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +#~ " -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +#~ " isig icanon iexten echo echoe echok -echonl -noflsh\n" +#~ " -xcase -tostop -echoprt echoctl echoke, all special\n" +#~ " characters to their default values.\n" +#~ msgstr "" +#~ "\n" +#~ "Configuration par combinaison:\n" +#~ "* [-]LCASE identique à [-]lcase\n" +#~ " cbreak identique à -icanon\n" +#~ " -cbreak identique à icanon\n" +#~ " cooked identique à brkint ignpar istrip icrnl ixon opost isig\n" +#~ " icanon, eof et eol selon leur valeur par défaut\n" +#~ " -cooked identique à raw\n" +#~ " crt identique à echoe echoctl echoke\n" +#~ " dec identique à echoe echoctl echoke -ixany intr ^c erase " +#~ "0177\n" +#~ " kill ^u\n" +#~ "* [-]decctlq identique à [-]ixany\n" +#~ " ek réinitialiser les caractères erase et kill à leur valeur\n" +#~ " par défaut\n" +#~ " evenp identique à parenb -parodd cs7\n" +#~ " -evenp identique à -parenb cs8\n" +#~ "* [-]lcase identique à xcase iuclc olcuc\n" +#~ " litout identique à -parenb -istrip -opost cs8\n" +#~ " -litout identique à parenb istrip opost cs7\n" +#~ " nl identique à -icrnl -onlcr\n" +#~ " -nl identique à icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +#~ " oddp identique à parenb parodd cs7\n" +#~ " -oddp identique à -parenb cs8\n" +#~ " [-]parity identique à [-]evenp\n" +#~ " pass8 identique à -parenb -istrip cs8\n" +#~ " -pass8 identique à parenb istrip cs7\n" +#~ " raw identique à -ignbrk -brkint -ignpar -parmrk -inpck -" +#~ "istrip\n" +#~ " -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +#~ " -imaxbel -opost -isig -icanon -xcase min 1 fois 0\n" +#~ " -raw identique à cooked\n" +#~ " sane identique à cread -ignbrk brkint -inlcr -igncr icrnl\n" +#~ " -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +#~ " -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +#~ " isig icanon iexten echo echoe echok -echonl -noflsh\n" +#~ " -xcase -tostop -echoprt echoctl echoke, et tous les " +#~ "caractères\n" +#~ " spéciaux à leur valeur par défaut.\n" + +#, fuzzy +#~ msgid "" +#~ "Exit with the status determined by EXPRESSION.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "EXPRESSION is true or false and sets exit status. It is one of:\n" +#~ msgstr "" +#~ "Afficher la somme de contrôle CRC et le décompte d'octets de chaque " +#~ "FICHIER.\n" +#~ "\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" + +#~ msgid "" +#~ "\n" +#~ " FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode " +#~ "numbers\n" +#~ " FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +#~ " FILE1 -ot FILE2 FILE1 is older than FILE2\n" +#~ "\n" +#~ " -b FILE FILE exists and is block special\n" +#~ " -c FILE FILE exists and is character special\n" +#~ " -d FILE FILE exists and is a directory\n" +#~ " -e FILE FILE exists\n" +#~ " -f FILE FILE exists and is a regular file\n" +#~ " -g FILE FILE exists and is set-group-ID\n" +#~ " -G FILE FILE exists and is owned by the effective group ID\n" +#~ " -k FILE FILE exists and has its sticky bit set\n" +#~ " -L FILE FILE exists and is a symbolic link\n" +#~ " -O FILE FILE exists and is owned by the effective user ID\n" +#~ " -p FILE FILE exists and is a named pipe\n" +#~ " -r FILE FILE exists and is readable\n" +#~ " -s FILE FILE exists and has a size greater than zero\n" +#~ " -S FILE FILE exists and is a socket\n" +#~ " -t [FD] file descriptor FD (stdout by default) is opened on a " +#~ "terminal\n" +#~ " -u FILE FILE exists and its set-user-ID bit is set\n" +#~ " -w FILE FILE exists and is writable\n" +#~ " -x FILE FILE exists and is executable\n" +#~ msgstr "" +#~ "\n" +#~ " FICHIER1 -ef FICHIER2 FICHIER1 et FICHIER2 ont les mêmes numéros\n" +#~ " de périphérique et d'inode\n" +#~ " FICHIER1 -nt FICHIER2 FICHIER1 est plus récent (date de " +#~ "modification)\n" +#~ " que FICHIER2\n" +#~ " FICHIER1 -ot FICHIER2 FICHIER1 est plus vieux que FICHIER2\n" +#~ "\n" +#~ " -b FICHIER FICHIER existe et est de type à blocage spécial\n" +#~ " -c FICHIER FICHIER existe et est de type caractère spécial\n" +#~ " -d FICHIER FICHIER existe et est un répertoire\n" +#~ " -e FICHIER FICHIER existe\n" +#~ " -f FICHIER FICHIER existe et est de type régulier\n" +#~ " -g FICHIER FICHIER existe et le bit « set-group-ID », est " +#~ "initialisé\n" +#~ " -G FICHIER FICHIER existe et appartient au groupe effectif ID\n" +#~ " -k FICHIER FICHIER existe et le bit « sticky » est initialisé\n" +#~ " -L FICHIER FICHIER existe et est un lien symbolique\n" +#~ " -O FICHIER FICHIER existe et appartient à l'usager effectif ID\n" +#~ " -p FICHIER FICHIER existe et est un relais nommé (named pipe)\n" +#~ " -r FICHIER FICHIER existe et est lisible\n" +#~ " -s FICHIER FICHIER existe et a une taille non nulle\n" +#~ " -S FICHIER FICHIER existe et est de type « socket »\n" +#~ " -t [DF] descripteur de fichier DF (sortie standard par défaut)\n" +#~ " est ouvert sur le terminal\n" +#~ " -u FICHIER FICHIER existe et le bit « set-user-ID », est " +#~ "initialisé\n" +#~ " -w FICHIER FICHIER existe et l'écriture y est permise\n" +#~ " -x FICHIER FICHIER existe et exécutable\n" + +#~ msgid "" +#~ "Print certain system information. With no OPTION, same as -s.\n" +#~ "\n" +#~ " -a, --all print all information\n" +#~ " -m, --machine print the machine (hardware) type\n" +#~ " -n, --nodename print the machine's network node hostname\n" +#~ " -r, --release print the operating system release\n" +#~ " -s, --sysname print the operating system name\n" +#~ " -p, --processor print the host processor type\n" +#~ " -v print the operating system version\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Afficher certaines informations identifiant le système.\n" +#~ "Sans OPTION, identique à -s.\n" +#~ "\n" +#~ " -a, --all afficher toutes les informations\n" +#~ " -m, --machine afficher le type de configuration matérielle\n" +#~ " -n, --nodename afficher le nom du noeud réseau du poste (hostname)\n" +#~ " -r, --release afficher la révision de la version du\n" +#~ " système d'exploitation\n" +#~ " -s, --sysname afficher le nom du système d'exploitation\n" +#~ " -p, --processor afficher le type de processeur\n" +#~ " -v afficher la version du système d'exploitation\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" + +#~ msgid "cannot get processor type" +#~ msgstr "Ne peut trouver le type de processeur." + +#~ msgid "USER" +#~ msgstr "USAGER" + +#~ msgid "MESG " +#~ msgstr "MESG " + +#~ msgid "LOGIN-TIME " +#~ msgstr "SESSION " + +#~ msgid "FROM\n" +#~ msgstr "DE\n" + +#~ msgid "" +#~ "\n" +#~ " -H, --heading print line of column headings\n" +#~ " -i, -u, --idle add user idle time as HOURS:MINUTES, . or old\n" +#~ " -l, --lookup attempt to canonicalize hostnames via DNS\n" +#~ " -m only hostname and user associated with stdin\n" +#~ " -q, --count all login names and number of users logged on\n" +#~ " -s (ignored)\n" +#~ " -T, -w, --mesg add user's message status as +, - or ?\n" +#~ " --message same as -T\n" +#~ " --writable same as -T\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "If FILE is not specified, use %s. %s as FILE is common.\n" +#~ "If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +#~ msgstr "" +#~ "\n" +#~ " -H, --heading afficher les en-têtes de colonnes\n" +#~ " -i, -u, --idle ajouter le temps d'inactivité de l'usager en\n" +#~ " selon le format HEURE:MINUTES, . ou « old »\n" +#~ " -l, --lookup utiliser la forme canonique des noms des hôtes\n" +#~ " via le DNS\n" +#~ " -m seulement du poste (hostname) et\n" +#~ " de l'usager associé à « stdin »\n" +#~ " -q, --count afficher tous les comptes actifs et le nombre " +#~ "d'usagers\n" +#~ " présents sur le système\n" +#~ " -s (ignorée)\n" +#~ " -T, -w, --mesg ajouter le statut du message usager avec +, - ou ?\n" +#~ " --message identique à -T\n" +#~ " --writeable identique à -T\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" +#~ "Si FICHIER n'est pas spécifié, utiliser %s. %s comme FICHIER\n" +#~ "est d'usage courant. Si PARAM1 et PARAM2 sont fournis, -m est assumé:\n" +#~ "« am i » ou « mom likes » sont d'usage courant.\n" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "Usage: %s [-v]\n" +#~ msgstr "Usage: %s [-v]\n" + +#, fuzzy +#~ msgid "Usage: %s [OPTION]... [VARIABLE]...\n" +#~ msgstr "Usage: %s [OPTION]... [FICHIER]...\n" + +#, fuzzy +#~ msgid "Usage: %s [OPTION]... NUMBER[SUFFIX]\n" +#~ msgstr "Usage: %s [OPTION]... [FICHIER]...\n" + +#~ msgid "" +#~ "\n" +#~ "Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n" +#~ msgstr "" +#~ "\n" +#~ "Au lieu de -t NOMBRE ou -t LISTE, -NOMBRE ou -LISTE peuvent être " +#~ "utilisés.\n" + +#~ msgid "" +#~ "\n" +#~ "SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +#~ "If -VALUE is used as first OPTION, read -c VALUE when one of\n" +#~ "multipliers bkm follows concatenated, else read -n VALUE.\n" +#~ msgstr "" +#~ "\n" +#~ "N peut être suivi d'un suffixe multiplicateur:\n" +#~ "b pour 512, k pour 1K, m pour 1 Meg.\n" +#~ "Si -VALEUR est utilisé comme première OPTION, lire -c VALEUR lorsqu'un " +#~ "des\n" +#~ "multiples bkm suivent concaténée(s), sinon lire -n VALEUR.\n" + +#~ msgid "" +#~ " +POS1 [-POS2] start a key at POS1, end it before POS2 " +#~ "(origin 0)\n" +#~ " Warning: this option is obsolete\n" +#~ msgstr "" +#~ " +POS1 [-POS2] débuter avec la clé de position POS1, et " +#~ "terminer\n" +#~ " avant POS2 (origine à 0)\n" +#~ " AVERTISSEMENT: cette option est obsolète\n" + +#~ msgid "" +#~ " -b, --bytes=SIZE put SIZE bytes per output file\n" +#~ " -C, --line-bytes=SIZE put at most SIZE bytes of lines per output " +#~ "file\n" +#~ " -l, --lines=NUMBER put NUMBER lines per output file\n" +#~ " -NUMBER same as -l NUMBER\n" +#~ " --verbose print a diagnostic to standard error just\n" +#~ " before each output file is opened\n" +#~ msgstr "" +#~ " -b, --bytes=N écrire N octets par fichier de sortie\n" +#~ " -C, --line-bytes=N écrire au plus N octets par ligne\n" +#~ " par fichier de sortie\n" +#~ " -l, --lines=N écrire N lignes par fichier de sortie\n" +#~ " -NOMBRE identique à -l NOMBRE\n" +#~ " --verbose produire un diagnostic sur stderr\n" + +#~ msgid "" +#~ "A first OPTION of -VALUE\n" +#~ "is treated like -n VALUE unless VALUE has one of the [bkm] suffix\n" +#~ "multipliers, in which case it is treated like -c VALUE.\n" +#~ msgstr "" +#~ "Une première OPTION de -VALEUR\n" +#~ "est traitée comme -n VALEUR à moins que VALEUR soit suivie d'un suffixe\n" +#~ "multiplicatif [bkm], laquelle dans ce cas est traitée comme -c VALEUR.\n" + +#~ msgid "" +#~ "A first option of +VALUE is treated like -+VALUE, but this usage is " +#~ "obsolete\n" +#~ "and support for it will be withdrawn.\n" +#~ "\n" +#~ msgstr "" +#~ "Une première option de +VALEUR est traitée comme -+VALEUR, mais cet usage " +#~ "obsolète\n" +#~ "et son support sera abandonné.\n" +#~ "\n" + +#~ msgid "warning: `tail %s' is obsolete; use -n or -c instead" +#~ msgstr "AVERTISSEMENT: `tail %s' est obsolète; utiliser -n ou -c à la place" + +#~ msgid " +N same as -s N (obsolete; will be withdrawn)\n" +#~ msgstr "" +#~ " +N identique à -s N (obsolète; sera abandonné)\n" + +#~ msgid "\n" +#~ msgstr "\n" + +#~ msgid "" +#~ "sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +#~ "for sizeof(double) or L for sizeof(long double).\n" +#~ "\n" +#~ "RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +#~ "BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +#~ msgstr "" +#~ "sizeof(long). Si le TYPE est f, N peut aussi être F pour sizeof(float), " +#~ "D\n" +#~ "pour sizeof(double) ou L pour sizeof(long double).\n" +#~ "\n" +#~ "BASE est d pour décimal, o pour octal, x pour hexadécimal ou n pour " +#~ "aucun.\n" +#~ "OCTETS est de type hexadécimal si préfixé par 0x ou 0X, et est un " +#~ "multiple de 512\n" + +#~ msgid "" +#~ "with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix " +#~ "to\n" +#~ "any type adds a display of printable characters to the end of each line\n" +#~ "of output. -s without a number implies 3. -w without a number implies " +#~ "32.\n" +#~ "By default, od uses -A o -t d2 -w 16.\n" +#~ msgstr "" +#~ "avec le suffixe b, de 1024 avec k et de 1048576 avec m. L'ajout du " +#~ "suffixe z à\n" +#~ "n'imporete quel type ajoute l'affichage de caractères imprimables à la " +#~ "fin de chaque ligne\n" +#~ "de sortie. -s non suivi d un nombre implique 3, 32 pour -w.\n" +#~ "Par défaut, od utilise -A o -t d2 -w 16.\n" + +#~ msgid "" +#~ "Convert tabs in each FILE to spaces, writing to standard output.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -i, --initial do not convert TABs after non whitespace\n" +#~ " -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +#~ msgstr "" +#~ "Convertir les tabulations de chaque FICHIER par des blancs d'espacement,\n" +#~ "en écrivant sur la sortie standard.\n" +#~ "Sans FICHIER, ou quand le FICHIER est -, lire de l'entrée standard.\n" +#~ "\n" +#~ "Les arguments obligatoires pour les options de formes longues le sont " +#~ "aussi\n" +#~ "pour les options de formes courtes.\n" +#~ " -i, --initial ne pas convertir les tabulations après des non " +#~ "blancs\n" +#~ " -t, --tabs=N utiliser N caractères de tabulations, et non 8\n" + +#~ msgid "" +#~ " -t, --tabs=LIST use comma separated list of explicit tab positions\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n" +#~ msgstr "" +#~ " -t, --tabs=LISTE utiliser la LISTE explicite de positions\n" +#~ " de tabulation\n" +#~ " séparées par des virgules\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" +#~ "Au lieu de -t NOMBRE ou -t LISTE, -NOMBRE ou -LISTE peuvent être " +#~ "utilisés.\n" +#~ "Sans FICHIER, ou quand le FICHIER est -, lire de l'entrée standard.\n" + +#~ msgid "" +#~ "Wrap input lines in each FILE (standard input by default), writing to\n" +#~ "standard output.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --bytes count bytes rather than columns\n" +#~ " -s, --spaces break at spaces\n" +#~ " -w, --width=WIDTH use WIDTH columns instead of 80\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Limiter la longueur de chaque ligne de chaque FICHIER (entrée standard " +#~ "par\n" +#~ "défaut) et forcer le bouclage en écrivant sur la sortie standard.\n" +#~ "\n" +#~ "Les arguments obligatoires pour les options de formes longues le sont " +#~ "aussi\n" +#~ "pour les options de formes courtes.\n" +#~ " -b, --bytes compter les octets au lieu des colonnes\n" +#~ " -s, --spaces briser la ligne sur des blancs\n" +#~ " -w, --width=N utiliser N colonnes au lieu de 80\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" + +#~ msgid "" +#~ " -v, --first-page=NUMBER first line number on each logical page\n" +#~ " -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +#~ "two delimiter characters for separating logical pages, a missing\n" +#~ "second character implies :. Type \\\\ for \\. STYLE is one of:\n" +#~ msgstr "" +#~ " -v, --first-page=NUMÉRO utiliser comme premier NUMÉRO de ligne\n" +#~ " sur chaque page logique\n" +#~ " -w, --number-width=N utiliser le NOMBRE de colonnes pour\n" +#~ " numéroter les lignes\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du " +#~ "logiciel\n" +#~ "\n" +#~ "Par défaut, -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn sont sélectionnées.\n" +#~ "CC se compose de deux caractères délimiteurs pour séparer les pages " +#~ "logiques\n" +#~ "un deuxième caractère manquant implique que:\n" +#~ "taper \\\\ pour \\. STYLE est une des options parmi:\n" + +#~ msgid "" +#~ "Write lines consisting of the sequentially corresponding lines from\n" +#~ "each FILE, separated by TABs, to standard output.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +#~ " -s, --serial paste one file at a time instead of in " +#~ "parallel\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Coller séquentiellement les lignes correspondantes de chaque\n" +#~ "FICHIER, séparé par des tabulations, vers la sortie standard.\n" +#~ "Sans FICHIER, ou quand FICHIER est -, lire de l'entrée standard.\n" +#~ "\n" +#~ "Les arguments obligatoires pour les options de formes longues le sont " +#~ "aussi\n" +#~ "pour les options de formes courtes.\n" +#~ " -d, --delimiters=LISTE utiliser les caractères de la LISTE au lieu\n" +#~ " de tabulations\n" +#~ " -s, --serial copier un fichier à la fois au lieu de\n" +#~ " le faire en parallèle\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" + +#~ msgid "" +#~ " -NUMBER same as -l NUMBER\n" +#~ " --verbose print a diagnostic to standard error just\n" +#~ " before each output file is opened\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +#~ msgstr "" +#~ " -NOMBRE identique à -l NOMBRE\n" +#~ " --verbose produire un diagnostic sur stderr\n" +#~ " avant que chaque fichier de sortie ne soit " +#~ "ouvert \n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" +#~ "La TAILLE peut être suivie d'un suffixe multiplicateur:\n" +#~ "b pour 512, k pour 1K, m pour 1 Meg.\n" + +#~ msgid "" +#~ "Write each FILE to standard output, last line first.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --before attach the separator before instead of after\n" +#~ msgstr "" +#~ "Écrire chaque FICHIER sur la sortie standard, la dernière ligne en " +#~ "premier.\n" +#~ "Sans FICHIER, ou quand FICHIER est -, lire de l'entrée standard.\n" +#~ "\n" +#~ "Les arguments obligatoires pour les options de formes longues le sont " +#~ "aussi\n" +#~ "pour les options de formes courtes.\n" +#~ " -b, --before placer le séparateur avant plutôt qu'après\n" + +#~ msgid "" +#~ "Print the last %d lines of each FILE to standard output.\n" +#~ "With more than one FILE, precede each with a header giving the file " +#~ "name.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " --retry keep trying to open a file even if it is\n" +#~ " inaccessible when tail starts or if it " +#~ "becomes\n" +#~ " inaccessible later -- useful only with -f\n" +#~ msgstr "" +#~ "Imprimer les dernières %d lignes de chaque FICHIER sur la sortie " +#~ "standard.\n" +#~ "Avec plus d'un FICHIER, précéder chacun par une en-tête contenant le nom " +#~ "du\n" +#~ "fichier. Sans FICHIER, ou quand FICHIER est -, lire de l'entrée " +#~ "standard.\n" +#~ "\n" +#~ "Les arguments obligatoires pour les options de formes longues le sont " +#~ "aussi\n" +#~ "pour les options de formes courtes.\n" +#~ "\n" +#~ " --retry continuer de tenter d'ouvrir le fichier même " +#~ "s'il\n" +#~ " est inaccessible lorsque tail démarre ou s'il " +#~ "devient\n" +#~ " inaccessible plus tard -- utile seulement avec " +#~ "-f\n" + +#~ msgid "" +#~ "Convert spaces in each FILE to tabs, writing to standard output.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -a, --all convert all whitespace, instead of initial " +#~ "whitespace\n" +#~ msgstr "" +#~ "Convertir les blancs d'espacement de chaque FICHIER par des tabulations,\n" +#~ "lors de l'écriture sur la sortie standard.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Les arguments obligatoires pour les options de formes longues le sont " +#~ "aussi\n" +#~ "pour les options de formes courtes.\n" +#~ " -a, --all convertir tous les espaces blancs,\n" +#~ " au lieu du blanc d'espacement initial\n" + +#~ msgid "" +#~ " -t, --tabs=NUMBER have tabs NUMBER characters apart instead of 8\n" +#~ " -t, --tabs=LIST use comma separated list of explicit tab positions\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n" +#~ msgstr "" +#~ " -t, --tabs=N utiliser N caractères de tabulation au lieu de 8\n" +#~ " -t, --tabs=LISTE utiliser la LISTE séparée de virgules comme " +#~ "positions\n" +#~ " explicite des tabulations\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" +#~ "Au lieu de -t NOMBRE ou -t LISTE, -NOMBRE ou -LISTE peuvent être " +#~ "utilisés.\n" + +#~ msgid "" +#~ "Discard all but one of successive identical lines from INPUT (or\n" +#~ "standard input), writing to OUTPUT (or standard output).\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -c, --count prefix lines by the number of occurrences\n" +#~ " -d, --repeated only print duplicate lines\n" +#~ msgstr "" +#~ "Exclure toutes les lignes successives identiques sauf une du FICHIER\n" +#~ "(ou de l'entrée standard), lors de l'écriture dans un FICHIER\n" +#~ "(ou vers la sortie standard).\n" +#~ "\n" +#~ "Les arguments obligatoires pour les options de formes longues le sont " +#~ "aussi\n" +#~ "pour les options de formes courtes.\n" +#~ " -c, --count préfixer les lignes par le nombre d'occurences\n" +#~ " -d, --repeated afficher seulement les lignes ayant des " +#~ "duplicatats\n" + +#~ msgid "" +#~ "Output pieces of FILE separated by PATTERN(s) to files `xx01', " +#~ "`xx02', ...,\n" +#~ "and output byte counts of each piece to standard output.\n" +#~ "\n" +#~ " -b, --suffix-format=FORMAT use sprintf FORMAT instead of %%d\n" +#~ " -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +#~ " -k, --keep-files do not remove output files on errors\n" +#~ " -n, --digits=DIGITS use specified number of digits instead of 2\n" +#~ " -s, --quiet, --silent do not print counts of output file sizes\n" +#~ " -z, --elide-empty-files remove empty output files\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Read standard input if FILE is -. Each PATTERN may be:\n" +#~ "\n" +#~ " INTEGER copy up to but not including specified line number\n" +#~ " /REGEXP/[OFFSET] copy up to but not including a matching line\n" +#~ " %%REGEXP%%[OFFSET] skip to, but not including a matching line\n" +#~ " {INTEGER} repeat the previous pattern specified number of " +#~ "times\n" +#~ " {*} repeat the previous pattern as many times as " +#~ "possible\n" +#~ "\n" +#~ "A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +#~ msgstr "" +#~ "Afficher les segments d'un FICHIER séparées par PATRON(s) vers\n" +#~ "les fichiers `xx01', `xx02', ..., ainsi que le nombre\n" +#~ "d'octets de chaque segment vers la sortie standard.\n" +#~ "\n" +#~ " -b, --suffix-format=FORMAT utiliser sprintf FORMAT au lieu de %%d\n" +#~ " -f, --prefix=PRÉFIXE utiliser le PRÉFIXE au lieu de `xx'\n" +#~ " -k, --keep-files ne pas détruire les fichiers \n" +#~ " lorsqu'il y erreur\n" +#~ " -n, --digits=NOMBRE utiliser NOMBRE de chiffres au lieu de 2\n" +#~ " -s, --quiet, --silent ne pas afficher la taille des fichiers\n" +#~ " de sortie\n" +#~ " -z, --elide-empty-files détruire les fichiers de sortie vides\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" +#~ "Lire de l'entrée standard si le FICHIER est -. Chaque PATRON peut être:\n" +#~ "\n" +#~ " ENTIER copier jusqu'à mais sans inclure le nombre " +#~ "spécifiée\n" +#~ " de lignes\n" +#~ " /REGEXP/[SAUT] copier jusqu'à la détection d'une ligne identique\n" +#~ " mais sans l'inclure\n" +#~ " %%REGEXP%%[SAUT] escamoter jusqu'à, mais sans inclure une\n" +#~ " ligne identique\n" +#~ " {ENTIER} répéter le patron précédent un nombre de fois\n" +#~ " {*} répéter le patron précédent le plus souvent " +#~ "possible\n" +#~ "\n" +#~ "Une ligne de SAUT a besoin d'un `+' ou `-' suivi d'un entier positif.\n" + +#~ msgid "" +#~ "Print selected parts of lines from each FILE to standard output.\n" +#~ "\n" +#~ " -b, --bytes=LIST output only these bytes\n" +#~ " -c, --characters=LIST output only these characters\n" +#~ " -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +#~ " -f, --fields=LIST output only these fields; also print any line\n" +#~ " that contains no delimiter character, unless\n" +#~ " the -s option is specified\n" +#~ " -n (ignored)\n" +#~ " -s, --only-delimited do not print lines not containing delimiters\n" +#~ " --output-delimiter=STRING use STRING as the output delimiter\n" +#~ " the default is to use the input delimiter\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +#~ "range, or many ranges separated by commas. Each range is one of:\n" +#~ "\n" +#~ " N N'th byte, character or field, counted from 1\n" +#~ " N- from N'th byte, character or field, to end of line\n" +#~ " N-M from N'th to M'th (included) byte, character or field\n" +#~ " -M from first to M'th (included) byte, character or field\n" +#~ "\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ msgstr "" +#~ "Afficher des parties de lignes de chaque FICHIER vers la sortie " +#~ "standard.\n" +#~ "\n" +#~ " -b, --bytes=LISTE afficher seulement la LISTE des octets\n" +#~ " -c, --characters=LISTE afficher seulement la LISTE des caractères\n" +#~ " -d, --delimiter=DÉLIM utiliser le DÉLIMiteur au lieu d'une " +#~ "tabulation\n" +#~ " comme délimiteur de champs\n" +#~ " -f, --fields=LISTE afficher seulement la LISTE des champs\n" +#~ " -n (ignoré)\n" +#~ " -s, --only-delimited ne pas afficher les lignes ne\n" +#~ " contenant pas de délimiteurs\n" +#~ " --output-delimiter=CHAÎNE\n" +#~ " utiliser la CHAÎNE comme délimiteur de sortie\n" +#~ " par défaut le délimiteur de l'entrée est " +#~ "utilisée\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" +#~ "Utiliser une seule des options -b, -c ou -f. Chaque LISTE se compose " +#~ "d'une\n" +#~ "intervalle, ou de plusieurs séparées par des virgules. Chaque " +#~ "intervalle\n" +#~ "se compose de:\n" +#~ "\n" +#~ " N Nième octet, caractère ou champ, compté à partir de 1\n" +#~ " N- du Nième octet, caractère ou champ, jusqu'à la fin de la ligne\n" +#~ " N-M du Nième au Mième (inclus) octet, caractère ou champ\n" +#~ " -M du premier au Mième (inclus) octet, caractère ou champ\n" +#~ "\n" +#~ "Sans FICHIER, ou quand le FICHIER est -, lire de l'entrée standard.\n" + +#~ msgid "" +#~ "For each pair of input lines with identical join fields, write a line to\n" +#~ "standard output. The default join field is the first, delimited\n" +#~ "by whitespace. When FILE1 or FILE2 (not both) is -, read standard " +#~ "input.\n" +#~ "\n" +#~ " -a SIDE print unpairable lines coming from file SIDE\n" +#~ " -e EMPTY replace missing input fields with EMPTY\n" +#~ " -i, --ignore-case ignore differences in case when comparing fields\n" +#~ " -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +#~ " -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +#~ " -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +#~ " -o FORMAT obey FORMAT while constructing output line\n" +#~ " -t CHAR use CHAR as input and output field separator\n" +#~ " -v SIDE like -a SIDE, but suppress joined output lines\n" +#~ " -1 FIELD join on this FIELD of file 1\n" +#~ " -2 FIELD join on this FIELD of file 2\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +#~ "else fields are separated by CHAR. Any FIELD is a field number counted\n" +#~ "from 1. FORMAT is one or more comma or blank separated specifications,\n" +#~ "each being `SIDE.FIELD' or `0'. Default FORMAT outputs the join field,\n" +#~ "the remaining fields from FILE1, the remaining fields from FILE2, all\n" +#~ "separated by CHAR.\n" +#~ msgstr "" +#~ "Pour chaque paire de lignes en entrée ayant un champ de fusion " +#~ "identique,\n" +#~ "écrire une ligne sur la sortie standard.\n" +#~ "Le champ de fusion est le premier, délimité par un blanc.\n" +#~ "Si FICHIER1 ou FICHIER2 (pas les 2) est -, lire de l'entrée standard.\n" +#~ "\n" +#~ " -a COTÉ afficher les lignes non repérables venant du \n" +#~ " fichier COTÉ\n" +#~ " -e VIDE remplacer les champs d'entrée manquants par VIDE\n" +#~ " -i, --ignore-case ignorer la casse des caractères lors de la\n" +#~ " comparaison des champs\n" +#~ " -j CHAMP option désuète équivalente à `-1 CHAMP -2 CHAMP'\n" +#~ " -j1 CHAMP option désuète équivalente à `-1 CHAMP'\n" +#~ " -j2 CHAMP option désuète équivalente à `-2 CHAMP'\n" +#~ " -o FORMAT respecter le FORMAT lors de la construction\n" +#~ " de sortie\n" +#~ " -t CAR utiliser CAR comme délimiteur de champs à l'entrée\n" +#~ " et à la sortie\n" +#~ " -v COTÉ comme -a COTÉ, mais supprimer les lignes\n" +#~ " de sortie fusionnées\n" +#~ " -1 CHAMP fusionner sur le champs CHAMP du fichier 1\n" +#~ " -2 CHAMP fusionner sur le champs CHAMP du fichier 2\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" +#~ "À moins que -t CAR ne soit donné, les blancs de tête séparant\n" +#~ "les champs sont ignorés sinon les champs sont séparés par CAR.\n" +#~ "Chaque CHAMP est un champ compté numériquement à partir de 1.\n" +#~ "FORMAT est une spécification contenant une ou plusieurs virgules ou " +#~ "blancs\n" +#~ "chacune étant `COTÉ.CHAMP' ou `0'. Par défaut FORMAT affiche des\n" +#~ "champs fusionnés,\n" +#~ "les champs restants de FICHIER1 ou FICHIER2 sont tous séparés par CAR.\n" + +#~ msgid "" +#~ "Usage: %s [OPTION] [FILE]...\n" +#~ " or: %s [OPTION] --check [FILE]\n" +#~ "Print or check %s (%d-bit) checksums.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ " -b, --binary read files in binary mode (default on DOS/" +#~ "Windows)\n" +#~ " -c, --check check %s sums against given list\n" +#~ " -t, --text read files in text mode (default)\n" +#~ "\n" +#~ "The following two options are useful only when verifying checksums:\n" +#~ " --status don't output anything, status code shows " +#~ "success\n" +#~ " -w, --warn warn about improperly formated checksum lines\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "The sums are computed as described in %s. When checking, the input\n" +#~ "should be a former output of this program. The default mode is to print\n" +#~ "a line with checksum, a character indicating type (`*' for binary, ` ' " +#~ "for\n" +#~ "text), and name for each FILE.\n" +#~ msgstr "" +#~ "Usage: %s [OPTION] [FICHIER]...\n" +#~ " ou: %s [OPTION] --check [FICHIER]\n" +#~ "Afficher ou vérifier les sommes de contrôle %s (%d-bits).\n" +#~ "Sans FICHIER, ou quand FICHIER est -, lire de l'entrée standard.\n" +#~ "\n" +#~ " -b, --binary lire les fichiers en mode binaire \n" +#~ " (par défaut sous DOS/WIndows)\n" +#~ " -c, --check vérifier les sommes %s par rapport à la liste\n" +#~ " -t, --text lire les fichiers en mode texte (par défaut)\n" +#~ "\n" +#~ "Les deux options suivantes sont utiles seulement lors de la vérification\n" +#~ "des sommes de contrôle:\n" +#~ " --status ne rien afficher, sauf le constat\n" +#~ " de fin d'exécution\n" +#~ " -w, --warn avertir si les lignes de contrôle MD5\n" +#~ " sont mal formatées\n" +#~ "\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" +#~ "Les sommes sont calculées selon la description de %s. Lors de la " +#~ "vérification,\n" +#~ "l'entrée devrait être formellement une sortie de ce programme. Le mode " +#~ "par défaut\n" +#~ "est d'afficher la ligne avec la somme de contrôle, un caractère " +#~ "indiquant\n" +#~ "le type (`*' pour binaire, ` ' pour texte) et un nom pour chaque " +#~ "FICHIER.\n" + +#~ msgid "" +#~ "Write each FILE to standard output, with line numbers added.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ " -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +#~ " -d, --section-delimiter=CC use CC for separating logical pages\n" +#~ " -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +#~ " -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +#~ " -i, --page-increment=NUMBER line number increment at each line\n" +#~ " -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +#~ "one\n" +#~ " -n, --number-format=FORMAT insert line numbers according to " +#~ "FORMAT\n" +#~ " -p, --no-renumber do not reset line numbers at logical " +#~ "pages\n" +#~ " -s, --number-separator=STRING add STRING after (possible) line " +#~ "number\n" +#~ " -v, --first-page=NUMBER first line number on each logical page\n" +#~ " -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +#~ "two delimiter characters for separating logical pages, a missing\n" +#~ "second character implies :. Type \\\\ for \\. STYLE is one of:\n" +#~ "\n" +#~ " a number all lines\n" +#~ " t number only nonempty lines\n" +#~ " n number no lines\n" +#~ " pREGEXP number only lines that contain a match for REGEXP\n" +#~ "\n" +#~ "FORMAT is one of:\n" +#~ "\n" +#~ " ln left justified, no leading zeros\n" +#~ " rn right justified, no leading zeros\n" +#~ " rz right justified, leading zeros\n" +#~ "\n" +#~ msgstr "" +#~ "Afficher chaque FICHIER sur la sortie standard, avec numéros de ligne.\n" +#~ "Sans FICHIER, ou FICHIER est -, lire de l'entrée standard.\n" +#~ "\n" +#~ " -b, --body-numbering=STYLE utiliser STYLE pour numéroter les " +#~ "lignes\n" +#~ " -d, --section-delimiter=CC utiliser CC pour séparer les pages\n" +#~ " logiques\n" +#~ " -f, --footer-numbering=STYLE utiliser STYLE pour numéroter les " +#~ "lignes\n" +#~ " de bas de page\n" +#~ " -h, --header-numbering=STYLE utiliser STYLE pour numéroter les " +#~ "lignes\n" +#~ " d'en-tête\n" +#~ " -i, --page-increment=N incrémenter de N de lignes à chaque " +#~ "ligne\n" +#~ " -l, --join-blank-lines=N regrouper N de lignes vides\n" +#~ " en une seule ligne\n" +#~ " -n, --number-format=FORMAT insérer un numéro de ligne selon " +#~ "FORMAT\n" +#~ " -p, --no-renumber ne pas réinitialiser le nombre de " +#~ "lignes\n" +#~ " aux pages logiques\n" +#~ " -s, --number-separator=CHAÎNE ajouter la CHAÎNE après (si possible)\n" +#~ " le numéro de ligne\n" +#~ " -v, --first-page=NUMÉRO utiliser comme premier NUMÉRO de ligne\n" +#~ " sur chaque page logique\n" +#~ " -w, --number-width=N utiliser le NOMBRE de colonnes pour\n" +#~ " numéroter les lignes\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du " +#~ "logiciel\n" +#~ "\n" +#~ "Par défaut, -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn sont sélectionnées.\n" +#~ "CC se compose de deux caractères délimiteurs pour séparer les pages " +#~ "logiques\n" +#~ "un deuxième caractère manquant implique que:\n" +#~ "taper \\\\ pour \\. STYLE est une des options parmi:\n" +#~ "\n" +#~ " a numéroter toutes les lignes\n" +#~ " t numéroter seulement les lignes non vides\n" +#~ " n numéroter n lignes\n" +#~ " pEXPREG numéroter seulement les lignes ayant une concordance à " +#~ "EXPREG\n" +#~ "\n" +#~ "FORMAT doit être choisi parmi:\n" +#~ "\n" +#~ " ln justifié à gauche, sans zéro de préfixe\n" +#~ " rn justifié à droite, sans zéro de préfixe\n" +#~ " rz justifié à droite, avec zéros de préfixe\n" +#~ "\n" + +#~ msgid "" +#~ "Write an unambiguous representation, octal bytes by default, of FILE\n" +#~ "to standard output. With no FILE, or when FILE is -, read standard " +#~ "input.\n" +#~ "\n" +#~ " -A, --address-radix=RADIX decide how file offsets are printed\n" +#~ " -j, --skip-bytes=BYTES skip BYTES input bytes first on each file\n" +#~ " -N, --read-bytes=BYTES limit dump to BYTES input bytes per file\n" +#~ " -s, --strings[=BYTES] output strings of at least BYTES graphic " +#~ "chars\n" +#~ " -t, --format=TYPE select output format or formats\n" +#~ " -v, --output-duplicates do not use * to mark line suppression\n" +#~ " -w, --width[=BYTES] output BYTES bytes per output line\n" +#~ " --traditional accept arguments in pre-POSIX form\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Pre-POSIX format specifications may be intermixed, they accumulate:\n" +#~ " -a same as -t a, select named characters\n" +#~ " -b same as -t oC, select octal bytes\n" +#~ " -c same as -t c, select ASCII characters or backslash escapes\n" +#~ " -d same as -t u2, select unsigned decimal shorts\n" +#~ " -f same as -t fF, select floats\n" +#~ " -h same as -t x2, select hexadecimal shorts\n" +#~ " -i same as -t d2, select decimal shorts\n" +#~ " -l same as -t d4, select decimal longs\n" +#~ " -o same as -t o2, select octal shorts\n" +#~ " -x same as -t x2, select hexadecimal shorts\n" +#~ msgstr "" +#~ "Afficher le contenu du FICHIER selon une représentation non ambiguë\n" +#~ "par un affichage des octets en octal par défaut sur la sortie standard.\n" +#~ "Sans FICHIER, ou quand FICHIER est -, lire de l'entrée standard.\n" +#~ "\n" +#~ " -A, --address-radix=BASE afficher les octets selon un adressage\n" +#~ " relatif dans la BASE sélectionnée\n" +#~ " -j, --skip-bytes=N escamoter les N premiers octets de chaque\n" +#~ " fichier\n" +#~ " -N, --read-bytes=N limiter à N le nombre d'octets lus par\n" +#~ " fichier\n" +#~ " -s, --strings[=N] afficher la chaîne d'au moins N caractères\n" +#~ " graphiques\n" +#~ " -t, --format=TYPE sélectionner les formats de sortie\n" +#~ " -v, --output-duplicates ne pas utiliser * pour marquer la\n" +#~ " suppression de ligne\n" +#~ " -w, --width[=N] afficher N octets par ligne de sortie\n" +#~ " --traditional accepter les arguments de la forme pré-" +#~ "POSIX\n" +#~ " --help afficher l'aide-mémore et quitter\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" +#~ "Les spécifications de format pré-POSIX peuvent être entremêlées,\n" +#~ "ils sont alors cumulées:\n" +#~ " -a identique à -t a, identifier les caractères\n" +#~ " -b identique à -t oC, identifier les octets en octal\n" +#~ " -c identique à -t c, identifier les caractères ASCII ou\n" +#~ " la barre oblique inverse\n" +#~ " -d identique à -t u2, identifier en entier court non signé\n" +#~ " -f identique à -t fF, identifier en nombre flottant\n" +#~ " -h identique à -t x2, identifier en hexadécimal court\n" +#~ " -i identique à -t d2, identifier en décimal court\n" +#~ " -l identique à -t d4, identifier en décimal long\n" +#~ " -o identique à -t o2, identifier en octal court\n" +#~ " -x identique à -t x2, identifier en hexadécimal court\n" + +#~ msgid "" +#~ "\n" +#~ "For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +#~ "is the pseudo-address at first byte printed, incremented when dump is\n" +#~ "progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +#~ "hexadecimal, suffixes maybe . for octal and b multiply by 512.\n" +#~ "\n" +#~ "TYPE is made up of one or more of these specifications:\n" +#~ "\n" +#~ " a named character\n" +#~ " c ASCII character or backslash escape\n" +#~ " d[SIZE] signed decimal, SIZE bytes per integer\n" +#~ " f[SIZE] floating point, SIZE bytes per integer\n" +#~ " o[SIZE] octal, SIZE bytes per integer\n" +#~ " u[SIZE] unsigned decimal, SIZE bytes per integer\n" +#~ " x[SIZE] hexadecimal, SIZE bytes per integer\n" +#~ "\n" +#~ "SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +#~ "sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +#~ "sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +#~ "for sizeof(double) or L for sizeof(long double).\n" +#~ "\n" +#~ "RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +#~ "BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +#~ "with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix " +#~ "to\n" +#~ "any type adds a display of printable characters to the end of each line\n" +#~ "of output. -s without a number implies 3. -w without a number implies " +#~ "32.\n" +#~ "By default, od uses -A o -t d2 -w 16.\n" +#~ msgstr "" +#~ "\n" +#~ "Pour respecter une vieille syntaxe (deuxième format d'appel), SAUT\n" +#~ "signifie -j SAUT. ÉTIQUETTE est une pseudo adresse du premier octet " +#~ "imprimé\n" +#~ "incrémentée lorsque la vidange s'effectue. Pour le SAUT et l'ÉTIQUETTE, " +#~ "un\n" +#~ "préfixe 0x ou 0X indique un format hexadécimal, les suffixes peuvent\n" +#~ "être . pour l'octal et b pour un multiple de 512 octets.\n" +#~ "\n" +#~ "Le TYPE est composé d'une ou plusieurs spécifications suivantes:\n" +#~ "\n" +#~ " a identification des caractères\n" +#~ " c caractère ASCII ou barre oblique inverse\n" +#~ " d[N] décimal signé, N octets par entier\n" +#~ " f[N] point flottant, N octets par entier\n" +#~ " o[N] octal, N octets par entier\n" +#~ " u[N] décimal non signé N octets par entier\n" +#~ " x[N] hexadécimal, N octets par entier\n" +#~ "\n" +#~ "N est un nombre. Le TYPE est soit d, o, u ou x, N peut être aussi C " +#~ "pour\n" +#~ "sizeof(char), S pour sizeof(short), I pour sizeof(int) ou L pour\n" +#~ "sizeof(long). Si le TYPE est f, N peut aussi être F pour sizeof(float), " +#~ "D\n" +#~ "pour sizeof(double) ou L pour sizeof(long double).\n" +#~ "\n" +#~ "BASE est d pour décimal, o pour octal, x pour hexadécimal ou n pour " +#~ "aucun.\n" +#~ "OCTETS est de type hexadécimal si préfixé par 0x ou 0X, et est un " +#~ "multiple de\n" +#~ "512 avec le suffixe b, de 1024 avec k et de 1048576 avec m.\n" +#~ "-s non suivi d un nombre implique 3, 32 pour -w.\n" +#~ "Par défaut, od utilise -A o -t d2 -w 16.\n" + +#~ msgid "" +#~ "Paginate or columnate FILE(s) for printing.\n" +#~ "\n" +#~ " +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +#~ " begin [stop] printing with page FIRST_[LAST_]PAGE\n" +#~ " -COLUMN, --columns=COLUMN\n" +#~ " produce COLUMN-column output and print columns down,\n" +#~ " unless -a is used. Balance number of lines in the\n" +#~ " columns on each page.\n" +#~ " -a, --across print columns across rather than down, used together\n" +#~ " with -COLUMN\n" +#~ " -c, --show-control-chars\n" +#~ " use hat notation (^G) and octal backslash notation\n" +#~ " -d, --double-space\n" +#~ " double space the output\n" +#~ " -D, --date-format=FORMAT\n" +#~ " use FORMAT for the header date\n" +#~ " -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +#~ " expand input CHARs (TABs) to tab WIDTH (8)\n" +#~ " -F, -f, --form-feed\n" +#~ " use form feeds instead of newlines to separate pages\n" +#~ " (by a 3-line page header with -F or a 5-line header\n" +#~ " and trailer without -F)\n" +#~ msgstr "" +#~ "Paginer ou mettre en colonne les FICHIERS pour impression.\n" +#~ "\n" +#~ " +PREMIÈRE_PAGE[:DERNIÈRE_PAGE], \n" +#~ " --pages=PREMIÈRE_PAGE[:DERNIÈRE_PAGE]\n" +#~ " débuter [stopper] l'impression à la PREMIÈRE_PAGE\n" +#~ " ou à la DERNIÈRE_PAGE\n" +#~ " -COLUMN\n" +#~ " --columns=COLUMN\n" +#~ " produire une sortie en COLONNES et imprimer les\n" +#~ " les colonnes vers le bas à moins que -a ne soit\n" +#~ " utilisé. Équilibrer le nombre de lignes de " +#~ "chaque\n" +#~ " colonne sur chaque page.\n" +#~ " -a, --across imprimer les colonnes horizontalement au lieu de\n" +#~ " verticalement, utilisé ensemble avec -COLUMN\n" +#~ " -c, --show-control-chars\n" +#~ " utiliser une notation par chapeau (^G) et octale\n" +#~ " avec barre oblique inverse\n" +#~ " -d, --double-space\n" +#~ " produire une sortie avec double espacement\n" +#~ " -e[CAR[LARGEUR]], --expand-tabs[=CAR[LARGEUR]]\n" +#~ " faire l'expansion des CARactères (ou de " +#~ "tabulation)\n" +#~ " selon la LARGEUR de tabulation (par défaut 8)\n" +#~ " -F, -f,\n" +#~ " --form-feed\n" +#~ " utiliser des sauts de page au lieu des sauts de \n" +#~ " lignes pour séparer les pages (3 lignes par en-" +#~ "tête\n" +#~ " avec -f ou 5 lignes par en-tête et bas de page " +#~ "sans -f) \n" + +#~ msgid "" +#~ " -h HEADER, --header=HEADER\n" +#~ " use a centered HEADER instead of filename in page " +#~ "header,\n" +#~ " -h \"\" prints a blank line, don't use -h\"\"\n" +#~ " -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +#~ " replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +#~ " -J, --join-lines merge full lines, turns off -W line truncation, no " +#~ "column\n" +#~ " alignment, -S[STRING] sets separators\n" +#~ " -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +#~ " set the page length to PAGE_LENGTH (66) lines\n" +#~ " (default number of lines of text 56, and with -F 63)\n" +#~ " -m, --merge print all files in parallel, one in each column,\n" +#~ " truncate lines, but join lines of full length with -" +#~ "J\n" +#~ " -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +#~ " number lines, use DIGITS (5) digits, then SEP (TAB),\n" +#~ " default counting starts with 1st line of input file\n" +#~ " -N NUMBER, --first-line-number=NUMBER\n" +#~ " start counting with NUMBER at 1st line of first\n" +#~ " page printed (see +FIRST_PAGE)\n" +#~ " -o MARGIN, --indent=MARGIN\n" +#~ " offset each line with MARGIN (zero) spaces, do not\n" +#~ " affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +#~ " -r, --no-file-warnings\n" +#~ " omit warning when a file cannot be opened\n" +#~ msgstr "" +#~ " -h EN-TÊTE, --header=EN-TÊTE\n" +#~ " centrer l'EN-TÊTE au lieu du nom de fichier dans\n" +#~ " l'en-tête de la page, avec de longues en-têtes\n" +#~ " une troncation du côté gauche peut survenir\n" +#~ " -h \\\"\\\" imprime une ligne blanche.\n" +#~ " Ne pas utiliser: -h\\\"\\\"\\n\"\n" +#~ " -i, --output-tabs[=CAR[LARGEUR]]\n" +#~ " remplacer les blancs par des CARactères (ou\n" +#~ " de tabulation) selon la LARGEUR de tabulation (8)\n" +#~ " -J, --join-lines\n" +#~ " faire la fusion des lignes pleines, inhiber la \n" +#~ " troncation des lignes -w, sans alignement des\n" +#~ " colonnes -s[CHAÎNE] initialise les séparateurs\n" +#~ " -l LONGUEUR_DE_PAGE, --length LONGUEUR_DE_PAGE\n" +#~ " utiliser LONGUEUR_DE_PAGE au lieu de 66 lignes\n" +#~ " (par défaut de lignes est de 56 pour un texte,\n" +#~ " avec -f de 63)\n" +#~ " -m, --merge imprimer tous les fichiers en parallèle un par\n" +#~ " colonne, tronque les lignes, mais joint les\n" +#~ " lignes de pleine longueur avec -j\n" +#~ " -n, --number-lines[=SÉP[CHIFFRES]]\n" +#~ " numéroter les lignes, par des CHIFFRES (5), suivi " +#~ "de\n" +#~ " SÉParateurs (TAB) par défaut le compteur débute\n" +#~ " avec la première ligne du fichier d'entrée\n" +#~ " -N, --first-line-number=VALEUR\n" +#~ " débuter le compteur avec la VALEUR avec la 1ère " +#~ "ligne\n" +#~ " de la 1ère page imprimée (voir +PREMIÈRE_PAGE)\n" +#~ " -o, --indent=MARGE\n" +#~ " débuter l'impression de chaque ligne après une\n" +#~ " MARGE d'espacement (n'affecte pas -w)\n" +#~ " -r, --no-file-warnings\n" +#~ " inhiber les avertissements lorsqu'un fichier\n" +#~ " ne peut être ouvert\n" + +#~ msgid "" +#~ " -s[CHAR],--separator[=CHAR]\n" +#~ " separate columns by a single character, default for " +#~ "CHAR\n" +#~ " is the character without -w and 'no char' with -" +#~ "w\n" +#~ " -s[CHAR] turns off line truncation of all 3 column\n" +#~ " options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +#~ " -S[STRING], --sep-string[=STRING]\n" +#~ " separate columns by an optional STRING, don't use\n" +#~ " -S \"STRING\", -S only: No separator used (same as -S" +#~ "\"\"),\n" +#~ " without -S: Default separator with -J and " +#~ "\n" +#~ " otherwise (same as -S\" \"), no effect on column " +#~ "options\n" +#~ " -t, --omit-header omit page headers and trailers\n" +#~ " -T, --omit-pagination\n" +#~ " omit page headers and trailers, eliminate any " +#~ "pagination\n" +#~ " by form feeds set in input files\n" +#~ " -v, --show-nonprinting\n" +#~ " use octal backslash notation\n" +#~ " -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +#~ " set page width to PAGE_WIDTH (72) characters for\n" +#~ " multiple text-column output only, -s[char] turns off " +#~ "(72)\n" +#~ " -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +#~ " set page width to PAGE_WIDTH (72) characters always,\n" +#~ " truncate lines, except -J option is set, no " +#~ "interference\n" +#~ " with -S or -s\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +#~ "FILE is -, read standard input.\n" +#~ msgstr "" +#~ " -s, --separator[=CHAÎNE]\n" +#~ " séparer les colonnes à l'aide d'une CHAÎNE " +#~ "optionnelle\n" +#~ " optionnelle, ne pas utiliser -s \\\"CHAÎNE\\\"\n" +#~ " sans -s utilise le séparateur (par défaut un " +#~ "blanc)\n" +#~ " identique à -s\\\" \\\"; -s seulement: aucun \n" +#~ " séparateur n'est utilisé, identique à -s\\\"\\\"\n" +#~ " -S[CHAÎNE],\n" +#~ " --sep-string[=CHAÎNE]\n" +#~ " séparer les colonnes à l'aide d'une chaîne " +#~ "optionnelle\n" +#~ " ne pas utiliser -S \"CHAÎNE\", -S seulement: " +#~ "SANS \n" +#~ " utiliser de séparateur (identique à -S\"\"),\n" +#~ " sans -S: séparateur par défaut avec -J et " +#~ "\n" +#~ " autrement (identique as -S\" \"), sans effet sur " +#~ "les options\n" +#~ " des colonnes\n" +#~ " -t, --omit-header\n" +#~ " inhiber l'en-tête et le bas de page\n" +#~ " -T, --omit-pagination\n" +#~ " inhiber l'en-tête et le bas de page, éliminer\n" +#~ " les agencements de page par saut de page indiqués\n" +#~ " dans les fichiers d'entrée\n" +#~ " -v, --show-nonprinting\n" +#~ " utiliser la notation octale avec barre oblique\n" +#~ " inverse\n" +#~ " -w LARGEUR_DE_PAGE,\n" +#~ " --width=LARGEUR_DE_PAGE\n" +#~ " utiliser LARGEUR_DE_PAGE au lieu de 72 colonnes\\n" +#~ "\"\n" +#~ " tronquer les lignes (voir aussi l'option -j)\n" +#~ " -W LARGEUR_DE_PAGE,\n" +#~ " --page-width=LARGEUR_DE_PAGE\n" +#~ " toujours utiliser une LARGEUR_DE_PAGE de 72 " +#~ "caractères,\n" +#~ " tronquer les lignes, sauf lorsque l'option -J est " +#~ "utilisée\n" +#~ " sans interférence avec -S ou -s\n" +#~ " --help afficher l'aide-mémore et quitter\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" +#~ "L'option -T est implicite lorsque -l N est utilisée et avec -f quand nn " +#~ "<= 10\n" +#~ "ou <= 3. Sans FICHIER, ou quand FICHIER est -, lire de l'entrée " +#~ "standard.\n" + +#~ msgid "" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ "\n" +#~ " -A, --auto-reference output automatically generated " +#~ "references\n" +#~ " -C, --copyright display Copyright and copying " +#~ "conditions\n" +#~ " -G, --traditional behave more like System V `ptx'\n" +#~ " -F, --flag-truncation=STRING use STRING for flagging line " +#~ "truncations\n" +#~ " -M, --macro-name=STRING macro name to use instead of `xx'\n" +#~ " -O, --format=roff generate output as roff directives\n" +#~ " -R, --right-side-refs put references at right, not counted in -" +#~ "w\n" +#~ " -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +#~ " -T, --format=tex generate output as TeX directives\n" +#~ " -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +#~ " -b, --break-file=FILE word break characters in this FILE\n" +#~ " -f, --ignore-case fold lower case to upper case for " +#~ "sorting\n" +#~ " -g, --gap-size=NUMBER gap size in columns between output " +#~ "fields\n" +#~ " -i, --ignore-file=FILE read ignore word list from FILE\n" +#~ " -o, --only-file=FILE read only word list from this FILE\n" +#~ " -r, --references first field of each line is a reference\n" +#~ " -t, --typeset-mode - not implemented -\n" +#~ " -w, --width=NUMBER output width in columns, reference " +#~ "excluded\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +#~ msgstr "" +#~ "Les arguments obligatoires pour les options de formes longues le sont " +#~ "aussi\n" +#~ "pour les options de formes courtes.\n" +#~ "\n" +#~ " -A, --auto-reference générer des références automatiquement\n" +#~ " -C, --copyright afficher les Droits d'auteur et les " +#~ "conditions\n" +#~ " de recopie\n" +#~ " -G, --traditional faire fonctionner `ptx' comme en System " +#~ "V\n" +#~ " -F, --flag-truncation=CHAÎNE utiliser la CHAÎNE pour indiquer la " +#~ "troncation\n" +#~ " des lignes\n" +#~ " -M, --macro-name=CHAÎNE nom de la macro à utiliser au lieu de " +#~ "`xx'\n" +#~ " -O, --format=roff générer la sortie comme des directives " +#~ "roff\n" +#~ " -R, --right-side-refs placer les références à droite, sans " +#~ "décompte -w\n" +#~ " -S, --sentence-regexp=REGEXP pour la fin des lignes ou des phrases\n" +#~ " -T, --format=tex générer la sortie comme des directives " +#~ "TeX\n" +#~ " -W, --word-regexp=REGEXP utiliser REGEXP pour établir la " +#~ "concordance avec chaque mot\n" +#~ " -b, --break-file=FICHIER utiliser les coupures de mots de ce " +#~ "FICHIER\n" +#~ " -f, --ignore-case ramener les minuscules en majuscules " +#~ "pour le trie\n" +#~ " -g, --gap-size=N espacer de N blancs les colonnes entre " +#~ "les champs\n" +#~ " -i, --ignore-file=FICHIER lire la liste des mots à ignorer de ce " +#~ "FICHIER\n" +#~ " -o, --only-file=FICHIER lire la liste des mots uniquement de ce " +#~ "FICHIER\n" +#~ " -r, --references donner la référence du 1er champ de " +#~ "chaque ligne\n" +#~ " -t, --typeset-mode - option non implanté -\n" +#~ " -w, --width=N largeur des colonnes, références " +#~ "exclues\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du " +#~ "logiciel\n" +#~ "\n" +#~ "Sans FICHIER, ou quand le FICHIER est -, lire de l'entrée standard. -F " +#~ "par défaut.\n" + +#~ msgid "" +#~ "Other options:\n" +#~ "\n" +#~ " -c, --check check whether input is sorted; do not sort\n" +#~ " -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin " +#~ "1)\n" +#~ " -m, --merge merge already sorted files; do not sort\n" +#~ " -o, --output=FILE write result to FILE instead of standard " +#~ "output\n" +#~ " -s, --stable stabilize sort by disabling last-resort " +#~ "comparison\n" +#~ " -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +#~ " -t, --field-separator=SEP use SEP instead of non- to whitespace " +#~ "transition\n" +#~ " -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %" +#~ "s\n" +#~ " multiple options specify multiple " +#~ "directories\n" +#~ " -u, --unique with -c: check for strict ordering\n" +#~ " otherwise: output only the first of an " +#~ "equal run\n" +#~ " -z, --zero-terminated end lines with 0 byte, not newline\n" +#~ " +POS1 [-POS2] start a key at POS1, end it before POS2 " +#~ "(origin 0)\n" +#~ " Warning: this option is obsolescent\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Autres options:\n" +#~ "\n" +#~ " -c, --check vérifier si l'entrée est triée; ne pas trier\n" +#~ " -k, --key=POS1[,POS2] débuter avec la clé à la POS1, terminer à POS " +#~ "2 (origine 1)\n" +#~ " -m, --merge faire la fusion des fichiers déjà triés; ne " +#~ "pas trier\n" +#~ " -o, --output=FICHIER écrire le résultat au FICHIER au lieu de la " +#~ "sortie standard\n" +#~ " -s, --stable stabiliser le tri en inhibant la comparaison " +#~ "de dernier recours\n" +#~ " -S, --buffer-size=TAILLE utiliser la TAILLE pour le tampon mémoire " +#~ "principal\n" +#~ " -t, --field-separator=SEP utiliser le SÉParateur au lieu de non- par " +#~ "les transitions d'espace blancs\n" +#~ " -T, --temporary-directory=RÉP utiliser le RÉP pour les fichiers " +#~ "temporaires, pas $TMPDIR ou %s\n" +#~ " options multiples pour spécifier de multiples " +#~ "répertoires\n" +#~ " -u, --unique avec -c: vérifier l'ordonnancement strict\n" +#~ " autrement: afficher les premiers d'une passe " +#~ "équivalente\n" +#~ " -z, --zero-terminated terminer les lignes avec l'octet 0, pas par " +#~ "le retour de chariot\n" +#~ " +POS1 [-POS2] débuter avec la clé à POS1, terminer avant " +#~ "POS2 (origin 0)\n" +#~ " AVERTISSEMENT: cette option est désuète\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" + +#~ msgid "" +#~ "Print the last %d lines of each FILE to standard output.\n" +#~ "With more than one FILE, precede each with a header giving the file " +#~ "name.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ " --retry keep trying to open a file even if it is\n" +#~ " inaccessible when tail starts or if it " +#~ "becomes\n" +#~ " inaccessible later -- useful only with -f\n" +#~ " -c, --bytes=N output the last N bytes\n" +#~ " -f, --follow[={name|descriptor}] output appended data as the file " +#~ "grows;\n" +#~ " -f, --follow, and --follow=descriptor are\n" +#~ " equivalent\n" +#~ " -n, --lines=N output the last N lines, instead of the last %" +#~ "d\n" +#~ " --max-unchanged-stats=N\n" +#~ " with --follow=name, reopen a FILE which has " +#~ "not\n" +#~ " changed size after N (default %d) " +#~ "iterations\n" +#~ " to see if it has been unlinked or renamed\n" +#~ " (this is the usual case of rotated log " +#~ "files)\n" +#~ " --pid=PID with -f, terminate after process ID, PID dies\n" +#~ " -q, --quiet, --silent never output headers giving file names\n" +#~ " -s, --sleep-interval=S with -f, each iteration lasts approximately S\n" +#~ " (default 1) seconds\n" +#~ " -v, --verbose always output headers giving file names\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Imprimer les dernières %d lignes de chaque FICHIER sur la sortie " +#~ "standard.\n" +#~ "Avec plus d'un FICHIER, précéder chacun par une en-tête contenant le nom " +#~ "du\n" +#~ "fichier. Sans FICHIER, ou quand FICHIER est -, lire de l'entrée " +#~ "standard.\n" +#~ "\n" +#~ " --retry continuer de tenter d'ouvrir le fichier même " +#~ "s'il\n" +#~ " est inaccessible lorsque tail démarre ou s'il " +#~ "devient\n" +#~ " inaccessible plus tard -- utile seulement avec " +#~ "-f\n" +#~ " -c, --bytes=N afficher les N derniers octets \n" +#~ " -f, --follow[={nom|descripteur}]\n" +#~ " afficher les dernières données ajoutées tant\n" +#~ " que le fichier s'accroît; -f, --follow, et\n" +#~ " --follow=descripteur sont équivalents\n" +#~ " -n, --lines=N afficher les dernières N lignes, au lieu des %" +#~ "d\n" +#~ " --max-unchanged-stats=N\n" +#~ " voir la documentation de texinfo\n" +#~ " (le défaut est %d)\n" +#~ " --pid=PID avec -f, terminer après le processus ID, PID " +#~ "est arrêté\n" +#~ " -q, --quiet, --silent ne jamais afficher l'en-tête avec\n" +#~ " les noms de fichiers\n" +#~ " -s, --sleep-interval=S avec -f, attendre S secondes entre les " +#~ "itérations\n" +#~ " -v, --verbose toujours afficher l'en-tête avec\n" +#~ " les noms de fichiers\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" +#~ "Si le premier caractère de N (le nombre d octets ou lignes) est un `+',\n" +#~ "afficher à partir du Nième item depuis le début de chaque fichier,\n" +#~ "autrement, afficher les derniers N items dans le fichier.\n" +#~ "N peut comporter un suffixe de multiple:\n" +#~ "b pour 512, k pour 1024, m pour 1048576 (1 Meg). Une première OPTION " +#~ "avec\n" +#~ "-VALEUR ou +VALEUR est traitée comme -n VALEUR ou -n + VALEUR\n" +#~ "à moins que VALEUR ait un suffixe multiplicateur [bkm],\n" +#~ "dans ce cas il est traité comme -c VALEUR ou -c +VALEUR.\n" +#~ "Option à décrire par le mainteneur: option non décrite en original.\n" +#~ "\n" +#~ "Avec l'option --follow (-f), tail utilise par défaut le descripteur de " +#~ "fichier\n" +#~ "qui permet de suivre l'évolution du fichier ciblé. Ce comportement n'est " +#~ "pas\n" +#~ "désirable lorsqu'on désire suivre l'évolution d'un fichier à l'aide de " +#~ "son\n" +#~ "nom (lors de la rotation des journaux). Utiliser --follow=nom dans ce " +#~ "cas.\n" +#~ "Cela forcera tail à suivre l'évolution du fichier en l'ouvrant " +#~ "périodiquement\n" +#~ "afin de vérifier s'il a été détruit ou recréé par un autre programme.\n" +#~ "\n" + +#~ msgid "" +#~ "If the first character of N (the number of bytes or lines) is a `+',\n" +#~ "print beginning with the Nth item from the start of each file, " +#~ "otherwise,\n" +#~ "print the last N items in the file. N may have a multiplier suffix:\n" +#~ "b for 512, k for 1024, m for 1048576 (1 Meg). A first OPTION of -VALUE\n" +#~ "or +VALUE is treated like -n VALUE or -n +VALUE unless VALUE has one of\n" +#~ "the [bkm] suffix multipliers, in which case it is treated like -c VALUE\n" +#~ "or -c +VALUE. Warning: a first option of +VALUE is obsolescent, and " +#~ "support\n" +#~ "for it will be withdrawn.\n" +#~ "\n" +#~ "With --follow (-f), tail defaults to following the file descriptor, " +#~ "which\n" +#~ "means that even if a tail'ed file is renamed, tail will continue to " +#~ "track\n" +#~ "its end. This default behavior is not desirable when you really want to\n" +#~ "track the actual name of the file, not the file descriptor (e.g., log\n" +#~ "rotation). Use --follow=name in that case. That causes tail to track " +#~ "the\n" +#~ "named file by reopening it periodically to see if it has been removed " +#~ "and\n" +#~ "recreated by some other program.\n" +#~ "\n" +#~ msgstr "" +#~ "Si le premier caractère de N (le nombre d'octets ou de lignes) est `+',\n" +#~ "afficher le Nième item depuis le début de chaque fichier, autrement,\n" +#~ "afficher les derniers N items du fichier. N peut avoir un suffixe " +#~ "multiplicateur:\n" +#~ "b pour 512, k pour 1024, m pour 1048576 (1 Meg). Une 1è OPTION ayant -" +#~ "VALEUR\n" +#~ "ou +VALEUR est traitée comme -n VALEUR ou -n +VALEUR à moins que VALEUR " +#~ "ait un des\n" +#~ "suffixes multiplicateurs suivants [bkm], dans ce cas il est traité comme -" +#~ "c VALEUR\n" +#~ "ou -c +VALEUR. AVERTISSEMENT: une 1ère option ayant la forme +VALEUR est " +#~ "désuète,\n" +#~ "dont le support ne sera plus disponible.\n" +#~ "\n" +#~ "Avec --follow (-f), suivre par défaut le descripteur de fichier, lequel\n" +#~ "signifie que même si le fichier est renommé alors qu'il est suivi à " +#~ "l'aide d'un `tail'\n" +#~ "le suivi sera poursuivi. Ce comportement par défaut n'est pas " +#~ "souhaitable\n" +#~ "lorsqu'on désire suivre un fichier à l'aide de son nom, pas le " +#~ "descripteur de fichier\n" +#~ "(i.e., rotation de journal). Utiliser --follow=nom dans ce cas. Cela " +#~ "amène `tail'\n" +#~ "à suivre le fichier en le réouvrant de façon périodique afin de voir s'il " +#~ "a été\n" +#~ "renommé ou détruit par un autre programme.\n" +#~ "\n" + +#~ msgid "" +#~ "\n" +#~ "SETs are specified as strings of characters. Most represent themselves.\n" +#~ "Interpreted sequences are:\n" +#~ "\n" +#~ " \\NNN character with octal value NNN (1 to 3 octal digits)\n" +#~ " \\\\ backslash\n" +#~ " \\a audible BEL\n" +#~ " \\b backspace\n" +#~ " \\f form feed\n" +#~ " \\n new line\n" +#~ " \\r return\n" +#~ " \\t horizontal tab\n" +#~ " \\v vertical tab\n" +#~ " CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +#~ " [CHAR*] in SET2, copies of CHAR until length of SET1\n" +#~ " [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +#~ " [:alnum:] all letters and digits\n" +#~ " [:alpha:] all letters\n" +#~ " [:blank:] all horizontal whitespace\n" +#~ " [:cntrl:] all control characters\n" +#~ " [:digit:] all digits\n" +#~ " [:graph:] all printable characters, not including space\n" +#~ " [:lower:] all lower case letters\n" +#~ " [:print:] all printable characters, including space\n" +#~ " [:punct:] all punctuation characters\n" +#~ " [:space:] all horizontal or vertical whitespace\n" +#~ " [:upper:] all upper case letters\n" +#~ " [:xdigit:] all hexadecimal digits\n" +#~ " [=CHAR=] all characters which are equivalent to CHAR\n" +#~ msgstr "" +#~ "\n" +#~ "Les ENSEMBLES sont spécifiés comme des chaînes de caractères.\n" +#~ "La plupart se représente eux-mêmes.\n" +#~ "Les séquences d'interprétation sont:\n" +#~ "\n" +#~ " \\NNN caractère ayant la valeur octale NNN (1 à 3 chiffres " +#~ "octaux)\n" +#~ " \\\\ barre oblique inverse\n" +#~ " \\a cloche sonore \n" +#~ " \\b caractère d'effacement\n" +#~ " \\f saut de page \n" +#~ " \\n saut de ligne \n" +#~ " \\r retour\n" +#~ " \\t saut horizontal\n" +#~ " \\v saut vertical \n" +#~ " CAR1-CAR2 tous les caractères de CAR1 à CAR2 en ordre croissant\n" +#~ " [CAR*] dans ENS2, copie de CAR jusqu'à longueur de ENS1\n" +#~ " [CAR*RÉP] RÉPéter copies de CAR, RÉPéter en octal si débute par " +#~ "0\n" +#~ " [:alnum:] toutes les lettres et les chiffres\n" +#~ " [:alpha:] toutes les lettres\n" +#~ " [:blank:] tous les blancs horizontaux\n" +#~ " [:cntrl:] tous les caractères de contrôle\n" +#~ " [:digit:] tous les chiffres\n" +#~ " [:graph:] tous les caractères imprimables, sans inclure les " +#~ "blancs\n" +#~ " [:lower:] tous les lettres minuscules\n" +#~ " [:print:] tous les caractères imprimables, incluant les blancs\n" +#~ " [:punct:] tous les caractères de ponctuation\n" +#~ " [:space:] tous les sauts verticaux ou horizontaux\n" +#~ " [:upper:] toutes les lettres majuscules\n" +#~ " [:xdigit:] tous les chiffres hexadécimaux\n" +#~ " [=CAR=] tous les caractères équivalents à CAR\n" + +#~ msgid "" +#~ "Discard all but one of successive identical lines from INPUT (or\n" +#~ "standard input), writing to OUTPUT (or standard output).\n" +#~ "\n" +#~ " -c, --count prefix lines by the number of occurrences\n" +#~ " -d, --repeated only print duplicate lines\n" +#~ " -D, --all-repeated print all duplicate lines\n" +#~ " -f, --skip-fields=N avoid comparing the first N fields\n" +#~ " -i, --ignore-case ignore differences in case when comparing\n" +#~ " -s, --skip-chars=N avoid comparing the first N characters\n" +#~ " -u, --unique only print unique lines\n" +#~ " -w, --check-chars=N compare no more than N characters in lines\n" +#~ " -N same as -f N\n" +#~ " +N same as -s N (obsolescent; will be withdrawn)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "A field is a run of whitespace, then non-whitespace characters.\n" +#~ "Fields are skipped before chars.\n" +#~ msgstr "" +#~ "Exclure toutes les lignes successives identiques sauf une du FICHIER\n" +#~ "(ou de l'entrée standard), lors de l'écriture dans un FICHIER\n" +#~ "(ou vers la sortie standard).\n" +#~ "\n" +#~ " -c, --count préfixer les lignes par le nombre d'occurences\n" +#~ " -d, --repeated afficher seulement les lignes ayant des " +#~ "duplicatats\n" +#~ " -D, --all-repeated afficher toutes les lignes qui ont des " +#~ "duplicatats\n" +#~ " -f, --skip-fields=N éviter de comparer les N premiers champs\n" +#~ " -i, --ignore-case ignorer les différences de la casse\n" +#~ " -s, --skip-chars=N éviter de comparer les N premiers caractères\n" +#~ " -u, --unique afficher seulement les lignes uniques\n" +#~ " -w, --check-chars=N ne pas comparer plus de N caractères des lignes\n" +#~ " -N identique à -f N\n" +#~ " +N identique à -s N\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" +#~ "Un champ est une suite de blancs, suivi de caractères non-blancs.\n" +#~ "Les champs sont escamotés avant les caractères.\n" + +#~ msgid "" +#~ "specified number of bytes `%s' is larger than the maximum\n" +#~ "representable value of type `long'" +#~ msgstr "" +#~ "Le nombre d'octets spécifiés `%s' est plus grand que la valeur\n" +#~ "maximale représentable du type `long'" + +#~ msgid "%s%*s%s%*sPage" +#~ msgstr "%s%*s%s%*sPage" + +#~ msgid "" +#~ "Write sorted concatenation of all FILE(s) to standard output.\n" +#~ "\n" +#~ " +POS1 [-POS2] start a key at POS1, end it *before* POS2 " +#~ "(obsolescent)\n" +#~ "\t\t field numbers and character offsets are numbered\n" +#~ " starting with zero (contrast with the -k option)\n" +#~ " -b ignore leading blanks in sort fields or keys\n" +#~ " -c check if given files already sorted, do not sort\n" +#~ " -d consider only [a-zA-Z0-9 ] characters in keys\n" +#~ " -f fold lower case to upper case characters in keys\n" +#~ " -g compare according to general numerical value, imply -" +#~ "b\n" +#~ " -i consider only [\\040-\\0176] characters in keys\n" +#~ " -k POS1[,POS2] start a key at POS1, end it *at* POS2\n" +#~ "\t\t field numbers and character offsets are numbered\n" +#~ " starting with one (contrast with zero-based +POS " +#~ "form)\n" +#~ " -m merge already sorted files, do not sort\n" +#~ " -M compare (unknown) < `JAN' < ... < `DEC', imply -b\n" +#~ " -n compare according to string numerical value, imply -b\n" +#~ " -o FILE write result on FILE instead of standard output\n" +#~ " -r reverse the result of comparisons\n" +#~ " -s stabilize sort by disabling last resort comparison\n" +#~ " -t SEP use SEParator instead of non- to whitespace " +#~ "transition\n" +#~ " -T DIRECTORY use DIRECTORY for temporary files, not $TMPDIR or %s\n" +#~ " -u with -c, check for strict ordering;\n" +#~ " with -m, only output the first of an equal sequence\n" +#~ " -z end lines with 0 byte, not newline, for find -print0\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Écrire la concaténation triée de tous les FICHIERS sur la sortie " +#~ "standard.\n" +#~ "\n" +#~ " +POS1 [-POS2] débuter avec la clé de position POS1, et terminer\n" +#~ " *à* POS2 (forme désuète), les numéros de champs \n" +#~ " et la position relative des caractères sont numérotés\n" +#~ " -b ignorer les blancs de tête dans les champs\n" +#~ " ou les clés triés\n" +#~ " -c vérifier si un fichier soumis a déjà été trié,\n" +#~ " si oui ne pas trier\n" +#~ " -d considérer seulement les caractères [a-zA-Z0-9 ]\n" +#~ " comme clés\n" +#~ " -f considérer les minuscules comme des majuscules\n" +#~ " comme clés\n" +#~ " -g comparer selon la valeur numérique générale, implique -" +#~ "b\n" +#~ " -i considérer seulement les caractères [\\040-\\0176]\n" +#~ " comme clés\n" +#~ " -k POS1[,POS2] identique à +POS1 [-POS2], mais toutes les positions\n" +#~ " comptées à partir de 1, les numéros de champs \n" +#~ " et la position relative des caractères sont numérotés\n" +#~ " -m fusionner les fichiers triés, ne pas trier \n" +#~ " -M comparer selon (inconnu) < `JAN' < ... < `DÉC',\n" +#~ " implique -b\n" +#~ " -n comparer selon la valeur numérique de la chaîne,\n" +#~ " implique -b\n" +#~ " -o FICHIER produire le résultat dans le FICHIER au lieu de la\n" +#~ " sortie standard\n" +#~ " -r inverser le résultat des comparaisons\n" +#~ " -s stabiliser le trie en inhibant la dernière " +#~ "comparaison\n" +#~ " -t SÉP utiliser le SÉParateur au lieu de la transition\n" +#~ " non blanc\n" +#~ " à blanc\n" +#~ " -T RÉPERTOIRE utiliser le RÉPERTOIRE temporaire, non pas $TMPDIR\n" +#~ " ou %s\n" +#~ " -u avec -c, vérifier l'ordonnancement strict\n" +#~ " avec -m, afficher seulement la première séquence\n" +#~ " identique\n" +#~ " -z terminer les lignes avec un octet de valeur 0,\n" +#~ " pour la commande find find -print0\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" + +#~ msgid "flushing file" +#~ msgstr "Fichier rejeté" + +#~ msgid "" +#~ "when using the old-style +POS and -POS key specifiers,\n" +#~ "the +POS specifier must come first" +#~ msgstr "" +#~ "lorsque les options +POS et -POS de la vieille syntaxe\n" +#~ "sont utilisées, l'option +POS doit être spécifiée en premier" + +#~ msgid "option `-k' requires an argument" +#~ msgstr "L'option `-k' requiert un argument." + +#~ msgid "starting field spec has `.' but lacks following character offset" +#~ msgstr "" +#~ "La spécification du champ de départ contient `.' mais n'est pas suivi\n" +#~ "de caractères de saut." + +#~ msgid "" +#~ "starting field character offset argument to the `-k' option\n" +#~ "must be positive" +#~ msgstr "" +#~ "Le caractère du champ de départ du argument de saut de l'option `-k'\n" +#~ "doit être positif." + +#~ msgid "field specification has `,' but lacks following field spec" +#~ msgstr "" +#~ "La spécification du champ contient `,'\n" +#~ "mais n'est pas suivi de champs de spécification." + +#~ msgid "ending field number argument to the `-k' option must be positive" +#~ msgstr "" +#~ "Le numéro du champ de terminaison de l'option `-k' doit être positif." + +#~ msgid "ending field spec has `.' but lacks following character offset" +#~ msgstr "" +#~ "La spécification du champ de terminaison contient `.' mais n'est pas " +#~ "suivi\n" +#~ "de caractères de saut." + +#~ msgid "option `-o' requires an argument" +#~ msgstr "L'option `-o' requiert un argument." + +#~ msgid "option `-t' requires an argument" +#~ msgstr "L'option `-t' requiert un argument." + +#~ msgid "option `-T' requires an argument" +#~ msgstr "L'option `-T' requiert un argument." + +#~ msgid "%s: unrecognized option `-%c'\n" +#~ msgstr "%s: option non reconnue `-%c'\n" + +#~ msgid "could not find loop" +#~ msgstr "ne peut trouver une boucle" + +#~ msgid "%s: cannot follow end of non-regular file" +#~ msgstr "%s: ne peut suivre jusqu'à la fin d'un fichier non régulier." + +#~ msgid "" +#~ "\n" +#~ "Report bugs to ." +#~ msgstr "" +#~ "\n" +#~ "Rapporter toutes anomalies à ." + +#~ msgid "`-w PAGE_WIDTH' invalid column number: `%s'" +#~ msgstr "`-w PAGE_WIDTH' contient un nombre de colonnes invalide: `%s'." + +#~ msgid "`%s' has reappeared" +#~ msgstr "`%s' est réapparu" + +#~ msgid "" +#~ "\n" +#~ "Report bugs to textutils-bugs@gnu.org" +#~ msgstr "" +#~ "\n" +#~ "Rapporter toutes anomalies à textutils-bug@gnu.org." + +#~ msgid "%s: `%s' is so large that it is not representable" +#~ msgstr "%s, `%s' est trop grande qu'elle n'est pas représentable." + +#~ msgid "`+' requires a numeric argument" +#~ msgstr "`+' requiert un argument numérique." + +#~ msgid "%s: extra characters in the argument to the `-%c' option: `%s'\n" +#~ msgstr "" +#~ "%s: caractères superflus dans les arguments de l'option `-%c': `%s'\n" + +#~ msgid "" +#~ "Paginate or columnate FILE(s) for printing.\n" +#~ "\n" +#~ " +PAGE begin printing with page PAGE\n" +#~ " -COLUMN produce COLUMN-column output and print columns down\n" +#~ " -a print columns across rather than down\n" +#~ " -b balance columns on the last page\n" +#~ " -c use hat notation (^G) and octal backslash notation\n" +#~ " -d double space the output\n" +#~ " -e[CHAR[WIDTH]] expand input CHARs (TABs) to tab WIDTH (8)\n" +#~ " -f, -F simulate formfeed with newlines on output\n" +#~ " -h HEADER use HEADER instead of filename in page headers\n" +#~ " -i[CHAR[WIDTH]] replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +#~ " -l PAGE_LENGTH set the page length to PAGE_LENGTH (66) lines\n" +#~ " -m print all files in parallel, one in each column\n" +#~ " -n[SEP[DIGITS]] number lines, use DIGITS (5) digits, then SEP (TAB)\n" +#~ " -o MARGIN offset each line with MARGIN spaces (do not affect -" +#~ "w)\n" +#~ " -r inhibit warning when a file cannot be opened\n" +#~ " -s[SEP] separate columns by character SEP (TAB)\n" +#~ " -t inhibit 5-line page headers and trailers\n" +#~ " -v use octal backslash notation\n" +#~ " -w PAGE_WIDTH set page width to PAGE_WIDTH (72) columns\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "-t implied by -l N when N < 10. Without -s, columns are separated by\n" +#~ "spaces. With no FILE, or when FILE is -, read standard input.\n" +#~ msgstr "" +#~ "Paginer ou mettre en colonne des FICHIERS pour impression.\n" +#~ "\n" +#~ " +N débuter l'impression à la page N\n" +#~ " -COLONNE produire un format de N colonnes et imprimer\n" +#~ " -F, -f simuler les sauts de pages avec des sauts de " +#~ "lignes\n" +#~ " -a imprimer les colonnes en mode croisé plutôt que\n" +#~ " vers le bas\n" +#~ " -b équilibrer les colonnes sur la dernière page\n" +#~ " -c utiliser une notation par chapeau (^G) et octale\n" +#~ " avec barre oblique inverse\n" +#~ " -d faire une sortie avec double espacement\n" +#~ " -e[CAR[LARGEUR]] dilater les CARactères (ou tabulation) selon la\n" +#~ " LARGEUR de tabulation (par défaut 8)\n" +#~ " -h EN_TÊTE afficher l'EN_TÊTE au lieu du nom de fichier\n" +#~ " -i[CAR[LARGEUR]] remplacer les blancs par des CARactères (ou\n" +#~ " tabulation) selon la LARGEUR de tabulation (8)\n" +#~ " -l LONGUEUR_DE_PAGE utiliser LONGUEUR_DE_PAGE au lieu de 66 " +#~ "lignes (par défaut)\n" +#~ " -m imprimer tous les fichiers en parallèle\n" +#~ " un par colonne\n" +#~ " -n[SÉP[CHIFFRES]] numéroter les lignes, par des CHIFFRES (5), suivi " +#~ "de\n" +#~ " SÉParateurs (TAB)\n" +#~ " -o MARGE effectuer le saut de chaque ligne selon la " +#~ "MARGE d'espace (n'affecte pas -w)\n" +#~ " -r inhiber les avertissements lorsqu'un fichier\n" +#~ " ne peut être ouvert\n" +#~ " -s[SÉP] séparer les colonnes par le SÉParateur (ou TAB)\n" +#~ " -t inhiber les 5 lignes d'en-tête et de bas de page \n" +#~ " -v utiliser la notation octale avec barre oblique\n" +#~ " inverse\n" +#~ " -w LARGEUR_DE_PAGE utiliser LARGEUR_DE_PAGE au lieu de 72 colonnes\n" +#~ " (défaut)\n" +#~ " --help afficher l'aide-mémoire\n" +#~ " --version afficher le nom et la version du logiciel\n" +#~ "\n" +#~ "L'option -t est implicite lorsque -l N est utilisé et quand N < 10.\n" +#~ "Sans -s, les colonnes sont séparées par des blancs.\n" +#~ "Sans FICHIER, ou quand FICHIER est -, lire de l'entrée standard.\n" diff --git a/src/apps/bin/coreutils-5.0/po/gl.gmo b/src/apps/bin/coreutils-5.0/po/gl.gmo new file mode 100644 index 0000000000..cfd48c0229 Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/gl.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/gl.po b/src/apps/bin/coreutils-5.0/po/gl.po new file mode 100644 index 0000000000..cd6804f46e --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/gl.po @@ -0,0 +1,11122 @@ +# Galician translation of the GNU textutils. +# Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc. +# Jacobo Tarrio , 2000, 2001, 2002. +# +msgid "" +msgstr "" +"Project-Id-Version: textutils 2.0.22\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2002-07-23 03:07+0200\n" +"Last-Translator: Jacobo Tarrio \n" +"Language-Team: Galician \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8-bit\n" + +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "argumento incorrecto %s para %s" + +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "argumento %s ambiguo para %s" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "Os parámetros correctos son:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "erro de escritura" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "Erro do sistema descoñecido" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "ficheiro normal baleiro" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "ficheiro normal" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "directorio" + +#: lib/file-type.c:48 +msgid "block special file" +msgstr "ficheiro especial de bloque" + +#: lib/file-type.c:51 +msgid "character special file" +msgstr "ficheiro especial de carácter" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "fifo" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "ligazón simbólica" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "socket" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "cola de mensaxes" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "semáforo" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "obxecto de memoria compartida" + +#: lib/file-type.c:71 +msgid "weird file" +msgstr "ficheiro estraño" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: a opción \"%s\" é ambigua\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: a opción \"--%s\" non permite un argumento\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: a opción \"%c%s\" precisa dun argumento\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: a opción \"%s\" precisa dun argumento\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: opción descoñecida \"--%s\"\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: opción descoñecida \"%c%s\"\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: opción incorrecta -- %c\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: opción incorrecta -- %c\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: a opción precisa dun argumento -- %c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: a opción \"-W %s\" é ambigua\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: a opción \"-W %s\" non permite un argumento\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "tamaño de bloque" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "non se pode crea-lo directorio %s" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%s existe pero non é un directorio" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "non se pode cambia-lo propietario e/ou grupo de %s" + +#: lib/makepath.c:338 +#, c-format +msgid "cannot chdir to directory %s" +msgstr "non se pode cambiar ao directorio %s" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "non se pode cambia-los permisos de %s" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "memoria esgotada" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "\"" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "\"" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[sSyY]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[nN]" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "a función iconv non é utilizable" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "a función iconv non está dispoñible" + +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "carácter fóra de rango" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "non se pode converter U+%04X ao xogo de caracteres local" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "non se pode converter U+%04X ao xogo de caracteres local: %s" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "usuario incorrecto" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "grupo incorrecto" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "non se pode obte-lo grupo de login dun UID numérico" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "non se poden omiti-lo usuario e o grupo" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "Escrito por %s.\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +"Isto é software libre; vexa o código fonte polas condicións de copia. NON " +"hai\n" +"garantía; nin sequera de COMERCIABILIDADE ou APTITUDE PARA UN FIN " +"DETERMINADO.\n" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "a comparación de cadeas fallou" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "Estabreza LC_ALL='C' para palia-lo problema" + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "As cadeas que se compararon foron %s e %s" + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Escriba \"%s --help\" para máis información.\n" + +#: src/basename.c:54 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s [FICHEIRO]...\n" +" ou: %s [OPCIÓN]\n" + +#: src/basename.c:59 +#, fuzzy +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" +"Imprimir NOME quitando tódolos compoñentes de directorios.\n" +"Se se indica, quitar tamén o SUFIXO final.\n" +"\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"Informe dos erros no programa a <%s>.\n" +"Informe dos erros na traducción a .\n" + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "número de argumentos insuficiente" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "demasiados argumentos" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "Torbjorn Grandlund e Richard M. Stallman" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "Uso: %s [OPCIÓN] [FICHEIRO]...\n" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" +"Concatenar FICHEIRO(s), ou a entrada estándar, na saída estándar.\n" +"\n" +" -A, --show-all equivalente a -vET\n" +" -b, --number-nonblank numera-las liñas de saída non baleiras\n" +" -e equivalente a -vE\n" +" -E, --show-ends amosar $ ao final de cada liña\n" +" -n, --number numerar tódalas liñas de saída\n" +" -s, --squeeze-blank nunca máis dunha soa liña en branco\n" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" +" -t equivalente a -vT\n" +" -T, --show-tabs amosa-los caracteres TAB coma ^I\n" +" -u (ignorado)\n" +" -v, --show-nonprinting usar notación de ^ e M-, excepto en LFD e TAB\n" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"Sen FICHEIRO, ou cando o FICHEIRO é -, lese da entrada estándar.\n" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" +"\n" +" -B, --binary usar escrituras binarias á consola.\n" +"\n" + +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "non se poden facer operacións de ioctl en \"%s\"" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "saída estándar" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s: o ficheiro de entrada é o mesmo que o de saída" + +#: src/cat.c:858 +#, fuzzy +msgid "closing standard input" +msgstr "entrada estándar" + +#: src/cat.c:861 +#, fuzzy +msgid "closing standard output" +msgstr "saída estándar" + +#: src/chgrp.c:93 +#, fuzzy +msgid "cannot change to null group" +msgstr "non se pode cambia-lo propietario e/ou grupo de %s" + +#: src/chgrp.c:102 +#, fuzzy, c-format +msgid "invalid group name %s" +msgstr "grupo incorrecto" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "número de grupo" + +#: src/chgrp.c:109 +#, fuzzy, c-format +msgid "invalid group number %s" +msgstr "número incorrecto" + +#: src/chgrp.c:126 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Uso: %s [OPCIÓN]... [FICHEIRO]...\n" +" ou: %s --traditional [FICHEIRO] [[+]DESPRAZAMENTO [[+]ETIQUETA]]\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, fuzzy, c-format +msgid "failed to get attributes of %s" +msgstr "obtendo os atributos de %s" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "obtendo os novos atributos de %s" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "o modo de %s mudou a %04lo (%s)\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "non foi posible muda-lo modo de %s a %04lo (%s)\n" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "o modo de %s mantense como %04lo (%s)\n" + +#: src/chmod.c:179 +#, fuzzy, c-format +msgid "changing permissions of %s" +msgstr "non se pode cambia-los permisos de %s" + +#: src/chmod.c:242 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Uso: %s [OPCIÓN]... ÚLTIMO\n" +" ou: %s [OPCIÓN]... PRIMEIRO ÚLTIMO\n" +" ou: %s [OPCIÓN]... PRIMEIRO INCREMENTO ÚLTIMO\n" + +#: src/chmod.c:248 +#, fuzzy +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"Muda o modo de cada FICHEIRO a MODO.\n" +"\n" +" -c, --changes coma `verbose' mais informando só dos cambios\n" +" -f, --silent, --quiet suprimi-la maioría das mensaxes de erro\n" +" -v, --verbose amosar unha mensaxe por cada ficheiro procesado\n" +" --reference=FICH-R usa-lo modo de FICH-R en vez do valor MODO\n" +" -R, --recursive mudar ficheiros e directorios recursivamente\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" +"\n" +"Cada MODO é unha ou máis das letras ugoa, un dos símbolos +-= e unha ou " +"máis\n" +"das letras rwxXstugo.\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" + +#: src/chmod.c:320 +#, fuzzy, c-format +msgid "invalid character %s in mode string %s" +msgstr "carácter \"%c\" incorrecto na cadea de tipo \"%s\"" + +#: src/chmod.c:361 +#, fuzzy, c-format +msgid "invalid mode string: %s" +msgstr "cadea de tipo incorrecta \"%s\"" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "non se mudou a ligazón simbólica %s nin o ficheiro referido\n" + +#: src/chown-core.c:143 +#, c-format +msgid "changed ownership of %s to %s\n" +msgstr "mudouse o dono de %s a %s\n" + +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "mudouse o grupo de %s a %s\n" + +#: src/chown-core.c:148 +#, fuzzy, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "non se pode cambia-los permisos de %s" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "non foi posible mudar o grupo de %s a %s\n" + +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "mantense o dono de %s como %s\n" + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "mantense o grupo de %s como %s\n" + +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "mudando o dono de %s" + +#: src/chown-core.c:327 +#, fuzzy, c-format +msgid "changing group of %s" +msgstr "non se pode cambia-lo propietario e/ou grupo de %s" + +#: src/chown-core.c:345 +#, fuzzy, c-format +msgid "unable to restore permissions of %s" +msgstr "non se pode cambia-los permisos de %s" + +#: src/chown.c:99 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Uso: %s [OPCIÓN]... ÚLTIMO\n" +" ou: %s [OPCIÓN]... PRIMEIRO ÚLTIMO\n" +" ou: %s [OPCIÓN]... PRIMEIRO INCREMENTO ÚLTIMO\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" + +#: src/chown.c:133 +#, fuzzy +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" +"O dono non se altera se non existe. O grupo non se altera se non existe,\n" +"mais cámbiase ao grupo de login se está implícito con `:'. O DONO e o " +"GRUPO\n" +"poden ser numéricos ou simbólicos.\n" + +#: src/chroot.c:45 +#, fuzzy, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s [FICHEIRO]...\n" +" ou: %s [OPCIÓN]\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" + +#: src/chroot.c:84 +#, fuzzy, c-format +msgid "cannot change root directory to %s" +msgstr "non se pode cambiar ao directorio %s" + +#: src/chroot.c:87 +#, fuzzy +msgid "cannot chdir to root directory" +msgstr "non se pode cambiar ao directorio %s" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "%s: ficheiro longo de máis" + +#: src/cksum.c:282 +#, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"Uso: %s [FICHEIRO]...\n" +" ou: %s [OPCIÓN]\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" +"Amosa-la suma de comprobación CRC e o número de bytes de cada FICHEIRO.\n" +"\n" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "Richard Stallman e David MacKenzie" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "Uso: %s [OPCIÓN]... FICHEIRO_ESQUERDO FICHEIRO_DEREITO\n" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" +"Compara os ficheiros ordeados FICHEIRO_ESQUERDO e FICHEIRO_DEREITO liña a " +"liña.\n" +"\n" +" -1 elimina-las liñas que só aparezan no ficheiro esquerdo\n" +" -2 elimina-las liñas que só aparezan no ficheiro dereito\n" +" -3 elimina-las liñas que só aparezan nalgún dos ficheiros\n" + +#: src/copy.c:162 src/du.c:332 +#, fuzzy, c-format +msgid "cannot access %s" +msgstr "non se poden cambia-los permisos de `%s'" + +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "non se pode abrir %s para lectura" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, fuzzy, c-format +msgid "cannot fstat %s" +msgstr "non se poden cambia-los permisos de `%s'" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, fuzzy, c-format +msgid "cannot remove %s" +msgstr "non se poden cambia-los permisos de `%s'" + +#: src/copy.c:277 +#, fuzzy, c-format +msgid "cannot create regular file %s" +msgstr "non se pode crea-lo ficheiro temporal" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, fuzzy, c-format +msgid "reading %s" +msgstr "erro lendo %s" + +#: src/copy.c:362 +#, fuzzy, c-format +msgid "cannot lseek %s" +msgstr "non se poden cambia-los permisos de `%s'" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, fuzzy, c-format +msgid "writing %s" +msgstr "erro escribindo %s" + +#: src/copy.c:409 src/copy.c:415 +#, fuzzy, c-format +msgid "closing %s" +msgstr "pechando %s (fd=%d)" + +#: src/copy.c:610 +#, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: ¿sobrescribir %s, ignorando o modo %04lo? " + +#: src/copy.c:616 +#, fuzzy, c-format +msgid "%s: overwrite %s? " +msgstr "%s: erro de escritura" + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, fuzzy, c-format +msgid "cannot stat %s" +msgstr "non se poden cambia-los permisos de `%s'" + +#: src/copy.c:820 +#, fuzzy, c-format +msgid "omitting directory %s" +msgstr "non se pode crea-lo directorio %s" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "" + +#: src/copy.c:866 src/ln.c:237 +#, c-format +msgid "%s and %s are the same file" +msgstr "%s e %s son o mesmo ficheiro" + +#: src/copy.c:876 +#, fuzzy, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "non se pode cambiar ao directorio %s" + +#: src/copy.c:893 +#, fuzzy, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "non se pode sobrescribir o non-directorio %s co directorio %s" + +#: src/copy.c:904 +#, fuzzy, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "non se pode crea-lo directorio %s" + +#: src/copy.c:965 +#, fuzzy, c-format +msgid "cannot overwrite directory %s" +msgstr "non se pode crea-lo directorio %s" + +#: src/copy.c:974 +#, fuzzy, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "non se pode cambiar ao directorio %s" + +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "facer copia de seguridade de %s destruiría a orixe; %s non movido" + +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "facer copia de seguridade de %s destruiría a orixe; %s non copiado" + +#: src/copy.c:1013 src/ln.c:273 +#, fuzzy, c-format +msgid "cannot backup %s" +msgstr "non se poden cambia-los permisos de `%s'" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr " (copia de seguridade: %s)" + +#: src/copy.c:1099 +#, fuzzy, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "non se pode crea-lo directorio %s" + +#: src/copy.c:1106 +#, fuzzy, c-format +msgid "will not create hard link %s to directory %s" +msgstr "non se pode cambiar ao directorio %s" + +#: src/copy.c:1132 +#, fuzzy, c-format +msgid "cannot create hard link %s to %s" +msgstr "non se pode crea-lo directorio %s" + +#: src/copy.c:1186 +#, fuzzy, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "non se pode cambiar ao directorio %s" + +#: src/copy.c:1229 +#, fuzzy, c-format +msgid "cannot move %s to %s" +msgstr "non se poden cambia-los permisos de `%s'" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "" + +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "non se pode copia-la ligazón simbólica cíclica %s" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "" +"%s: só se poden facer ligazóns simbólicas relativas no directorio actual" + +#: src/copy.c:1353 +#, fuzzy, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "non se pode crea-lo directorio %s" + +#: src/copy.c:1364 +#, fuzzy, c-format +msgid "cannot create link %s" +msgstr "non se pode crea-lo directorio %s" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, fuzzy, c-format +msgid "cannot create fifo %s" +msgstr "non se pode crea-lo directorio %s" + +#: src/copy.c:1403 +#, fuzzy, c-format +msgid "cannot create special file %s" +msgstr "ficheiro especial de carácter" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, fuzzy, c-format +msgid "cannot read symbolic link %s" +msgstr "ligazón simbólica" + +#: src/copy.c:1440 +#, fuzzy, c-format +msgid "cannot create symbolic link %s" +msgstr "non se pode crea-lo directorio %s" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, fuzzy, c-format +msgid "failed to preserve ownership for %s" +msgstr "mantense o dono de %s" + +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "%s é un tipo de ficheiro descoñecido" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "mantense a data de %s" + +#: src/copy.c:1531 +#, fuzzy, c-format +msgid "failed to preserve authorship for %s" +msgstr "mantense o dono de %s" + +#: src/copy.c:1549 +#, fuzzy, c-format +msgid "setting permissions for %s" +msgstr "non se pode cambia-los permisos de %s" + +#: src/copy.c:1571 src/ln.c:326 +#, fuzzy, c-format +msgid "cannot un-backup %s" +msgstr "non se poden cambia-los permisos de `%s'" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s -> %s (restaurado da copia de seguridade)\n" + +#: src/cp.c:53 +#, fuzzy +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie e Jim Meyering" + +#: src/cp.c:164 src/mv.c:311 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"Uso: %s [OPCIÓN]... ÚLTIMO\n" +" ou: %s [OPCIÓN]... PRIMEIRO ÚLTIMO\n" +" ou: %s [OPCIÓN]... PRIMEIRO INCREMENTO ÚLTIMO\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" +"Os argumentos obrigatorios nas opcións longas tamén o son nas opcións " +"curtas.\n" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" + +#: src/cp.c:209 +#, fuzzy +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +" --sparse=CANDO controla-la creación de ficheiros con ocos\n" +" -R, --recursive copia-los directorios recursivamente\n" +" --strip-trailing-slashes quita-la barra final dos argumentos de ORIXE\n" +" -s, --symbolic-link facer ligazóns simbólicas en vez de copiar\n" +" -S, --suffix=SUFIXO substituí-lo sufixo habitual da copia de\n" +" seguridade\n" +" --target-directory=DIRECTORIO mover tódolos argumentos ORIXE ao\n" +" DIRECTORIO\n" +" -u, --update copiar só se o ficheiro ORIXE é máis novo\n" +" que o ficheiro de destino, ou se este\n" +" non existe\n" +" -v, --verbose explica-lo que está a se facer\n" +" -x, --one-file-system manterse neste sistema de ficheiros\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" +"\n" +"Por omisión, os ficheiros ORIXE con ocos son detectados por unha heurística\n" +"ruda e o ficheiro DESTINO correspondente créase tamén con ocos. Este é\n" +"o comportamento escollido por --sparse=auto. Indique --sparse=always para\n" +"crear un ficheiro DESTINO con ocos se o ficheiro ORIXE contén unha\n" +"sucesión de bytes cero longa de abondo. Utilice --sparse=never para\n" +"inhibi-la creación de ficheiros con ocos.\n" +"\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" + +#: src/cp.c:221 +#, fuzzy +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +"Renomea ORIXE a DESTINO, ou mover ORIXE(s) a DIRECTORIO.\n" +"\n" +" --backup[=CONTROL] facer unha copia de seguridade de cada " +"ficheiro\n" +" destino\n" +" -b como --backup mais sen aceptar argumentos\n" +" -f, --force non preguntar antes de sobrescribir\n" +" -i, --interactive preguntar antes de sobrescribir\n" +" --strip-trailing-slashes elimina-las barras finais de tódolos\n" +" argumentos ORIXE\n" +" -S, --suffix=SUFIXO substituí-lo sufixo habitual de copia de\n" +" seguridade\n" +" --target-directory=DIRECTORIO mover tódolos argumentos ORIXE ao\n" +" DIRECTORIO\n" +" -u, --update mover só os non-directorios máis antigos ou\n" +" os recentes\n" +" -v, --verbose explica-lo que está a se facer\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" + +#: src/cp.c:230 +#, fuzzy +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +" --sparse=CANDO controla-la creación de ficheiros con ocos\n" +" -R, --recursive copia-los directorios recursivamente\n" +" --strip-trailing-slashes quita-la barra final dos argumentos de ORIXE\n" +" -s, --symbolic-link facer ligazóns simbólicas en vez de copiar\n" +" -S, --suffix=SUFIXO substituí-lo sufixo habitual da copia de\n" +" seguridade\n" +" --target-directory=DIRECTORIO mover tódolos argumentos ORIXE ao\n" +" DIRECTORIO\n" +" -u, --update copiar só se o ficheiro ORIXE é máis novo\n" +" que o ficheiro de destino, ou se este\n" +" non existe\n" +" -v, --verbose explica-lo que está a se facer\n" +" -x, --one-file-system manterse neste sistema de ficheiros\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" +"\n" +"Por omisión, os ficheiros ORIXE con ocos son detectados por unha heurística\n" +"ruda e o ficheiro DESTINO correspondente créase tamén con ocos. Este é\n" +"o comportamento escollido por --sparse=auto. Indique --sparse=always para\n" +"crear un ficheiro DESTINO con ocos se o ficheiro ORIXE contén unha\n" +"sucesión de bytes cero longa de abondo. Utilice --sparse=never para\n" +"inhibi-la creación de ficheiros con ocos.\n" +"\n" + +#: src/cp.c:239 +#, fuzzy +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"O sufixo de copia de seguridade é `~', a menos que se estableza con --" +"suffix\n" +"ou con SIMPLE_BACKUP_SUFFIX. O método do control de versión pode ser\n" +"establecido coa opción --backup ou coa variable de ambiente " +"VERSION_CONTROL.\n" +"Os valores poden ser:\n" +"\n" +" none, off non facer nunca copias de seguridade (mesmo con --backup)\n" +" numbered, t facer copias de seguridade numeradas\n" +" existing, nil copias numeradas se xa existen numeradas, se non simples\n" +" simple, never facer sempre copias de seguridade simples\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +#, fuzzy +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +"O sufixo de copia de seguridade é `~', a menos que se estableza con --" +"suffix\n" +"ou con SIMPLE_BACKUP_SUFFIX. O método do control de versión pode ser\n" +"establecido coa opción --backup ou coa variable de ambiente " +"VERSION_CONTROL.\n" +"Os valores poden ser:\n" +"\n" +" none, off non facer nunca copias de seguridade (mesmo con --backup)\n" +" numbered, t facer copias de seguridade numeradas\n" +" existing, nil copias numeradas se xa existen numeradas, se non simples\n" +" simple, never facer sempre copias de seguridade simples\n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +"Como caso especial, o cp fai unha copia de seguridad da ORIXE cando se usan\n" +"as opcións `force' e `backup', e ORIXE e DESTINO teñen o mesmo nome que un\n" +"ficheiro regular xa existente.\n" + +#: src/cp.c:325 +#, fuzzy, c-format +msgid "failed to preserve times for %s" +msgstr "mantense a data de %s" + +#: src/cp.c:349 +#, fuzzy, c-format +msgid "failed to preserve permissions for %s" +msgstr "non se pode cambia-los permisos de %s" + +#: src/cp.c:434 +#, fuzzy, c-format +msgid "cannot make directory %s" +msgstr "non se pode crea-lo directorio %s" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +#, fuzzy +msgid "missing file argument" +msgstr "argumento de salto" + +#: src/cp.c:498 +#, fuzzy +msgid "missing destination file" +msgstr "lista de campos non atopada" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "accediendo a %s" + +#: src/cp.c:546 +#, fuzzy, c-format +msgid "%s: specified target is not a directory" +msgstr "%s existe pero non é un directorio" + +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "" +"a copiar varios ficheiros, mais o derradeiro argumento %s non é un directorio" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "ao manter os camiños de acceso, o destino ten que ser un directorio" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"aviso: --version-control (-V) está obsoleta; quitarase o soporte\n" +"nunha versión futuro. Use --backup=%s no seu lugar." + +#: src/cp.c:972 src/ln.c:464 +#, fuzzy +msgid "symbolic links are not supported on this system" +msgstr "aviso: --pid=PID non é soportado neste sistema" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "non se poden facer ligazóns duras e simbólicas ao mesmo tempo" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "tipo de copia de seguridade" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "Stuart Kemp e David MacKenzie" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "erro de lectura" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "a entrada desapareceu" + +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s: número de liña inexistente" + +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: \"%s\": número de liña fóra do seu rango" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr " na repetición %d\n" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s: \"%s\": non se atopou nada que coincidira" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "erro ao buscar por expresións regulares" + +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "erro de escritura en \"%s\"" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "%s: esperábase un \"+\" ou un \"-\" tralo delimitador" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s: esperábase un enteiro tras \"%c\"" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "%s: fai falla un \"}\" no número de repeticións" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "%s}: fai falla un enteiro entre \"{\" e \"}\"" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s: delimitador de peche \"%c\" non atopado" + +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: expresión regular incorrecta: %s" + +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "%s: patrón incorrecto" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s: o número de liña debe ser maior que cero" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "o número de liña \"%s\" é menor que o número de liña anterior, %s" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "aviso: o número de liña \"%s\" é o mesmo que o número de liña anterior" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "especificador de conversión non atopado no sufixo" + +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "especificador de conversión do sufixo incorrecto: %c" + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "especificador de conversión do sufixo incorrecto: \\%.3o" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "especificación de conversión %% non atopada no sufixo" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "demasiadas especificacións de conversión %% no sufixo" + +#: src/csplit.c:1441 +#, c-format +msgid "%s: invalid number" +msgstr "%s: número incorrecto" + +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "Uso: %s [OPCIÓN]... FICHEIRO PATRÓN...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" +"Gravar anacos do FICHEIRO separadas polos PATRÓNs nos ficheiros \"xx01\",\n" +"\"xx02\", ..., e amosa-lo número de bytes de cada anaco na saída estándar.\n" +"\n" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" +" -b, --suffix-format=FORMATO emprega-lo FORMATO de sprintf no canto de %d\n" +" -f, --prefix=PREFIXO emprega-lo PREFIXO no canto de \"xx\"\n" +" -k, --keep-files non elimina-los ficheiros de saída se hai " +"erros\n" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" +" -n, --digits=CIFRAS usa-lo número de cifras indicado no canto de " +"2\n" +" -s, --quite, --silent non amosa-los tamaños dos ficheiros de saída\n" +" -z, --elide-empty-files elimina-los ficheiros de saída baleiros\n" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" +"\n" +"Lese da entrada estándar se o FICHEIRO é -. Cada PATRÓN pode ser:\n" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" +"\n" +" ENTEIRO copiar ata o número de liña indicado, sen incluílo\n" +" /EXPREG/[DESPRAZ] copiar ata a liña que coincide, sen incluíla\n" +" %EXPREG%[DESPRAZ] saltar ata a liña que coincide, sen incluíla\n" +" {ENTEIRO} repeti-lo patrón anterior o número de veces indicado\n" +" {*} repeti-lo patrón anterior tantas veces como se poida\n" +"\n" +"Un DESPRAZamento de liña é un signo \"+\" ou \"-\" seguido por un enteiro " +"positivo.\n" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie e Jim Meyering" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "Uso: %s [OPCIÓN]... [FICHEIRO]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" +"Amosar partes seleccionadas das liñas de cada FICHEIRO na saída estándar.\n" +"\n" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" +" -b, --bytes=LISTA amosar só estes bytes\n" +" -c, --characters=LISTA amosar só estes caracteres\n" +" -d, --delimiter=DELIM emprega-lo DELIMitador no canto da tabulación\n" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" +" -f, --fields=LISTA amosar só estes campos; tamén amosa calquera liña\n" +" que non conteña o carácter delimitador, agás se\n" +" se indica a opción -s\n" +" -n (ignórase)\n" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" +" -s, --only-delimited non amosa-las liñas que non conteñan " +"delimitadores\n" +" --output-delimiter=CADEA emprega-la CADEA coma delimitador de saída\n" +" por defecto emprégase o delimitador de entrada\n" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"Empregue un e só un de -b, -c ou -f. Cada LISTA componse dun rango ou " +"varios\n" +"rangos separados por comas. Cada rango é un de:\n" +"\n" +" N N-ésimo byte, carácter ou campo, contado dende 1\n" +" N- do N-ésimo byte, carácter ou campo, ata a fin da liña\n" +" N-M do N-ésimo ao M-ésimo (inclusive) byte, carácter ou campo\n" +" -M do primeiro ao M-ésimo (inclusive) byte, carácter ou campo\n" +"\n" +"Sen un FICHEIRO, ou cando o FICHEIRO é -, lese da entrada estándar.\n" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "lista de bytes ou campos non correcta" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "só se pode indicar un tipo de lista" + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "lista de posicións non atopada" + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "lista de campos non atopada" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "o delimitador debe ser un só carácter" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "debe especificarse unha lista de bytes, caracteres ou campos" + +#: src/cut.c:720 +#, fuzzy +msgid "an input delimiter may be specified only when operating on fields" +msgstr "só se pode especificar un delimitador cando se traballa con campos" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" +"elimina-las liñas sen delimitadores ten sentido\n" +"\tsó cando se traballa con campos" + +#: src/date.c:117 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" +"Uso: %s [OPCIÓN]... [+FORMATO]\n" +" ou: %s [OPCIÓN] [MMDDhhmm[[SS]AA][.ss]]\n" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "entrada estándar" + +#: src/date.c:268 src/date.c:460 +#, fuzzy, c-format +msgid "invalid date `%s'" +msgstr "anchura non válida: \"%s\"" + +#: src/date.c:364 +#, fuzzy +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "as opcións --string e --check son mutuamente exclusivas" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "as opcións para imprimir e establece-la data non se poden usar xuntas" + +#: src/date.c:377 +#, fuzzy, c-format +msgid "too many non-option arguments: %s%s" +msgstr "demasiados argumentos" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" +"o argumento `%s' non ten un `+' ó comezo;\n" +"Cando se usa unha opción para especificar datas, tódolos\n" +"argumentos que non son opcións teñen que ser unha cadea\n" +"de formato comezando con `+'." + +#: src/date.c:397 +#, fuzzy +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "non se pode especificar ficheiros cando se usa --string" + +#: src/date.c:433 +msgid "undefined" +msgstr "non definido" + +#: src/date.c:435 +#, fuzzy +msgid "cannot get time of day" +msgstr "non se pode partir en máis dun xeito" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "non se pode establece-la data" + +#: src/dd.c:43 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "Paul Rubin e David MacKenzie" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "Uso: %s [OPCIÓN] [FICHEIRO]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "%s+%s rexistros lidos\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "%s+%s rexistros escritos\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "rexistro truncado" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "rexistros truncados" + +#: src/dd.c:382 +#, fuzzy, c-format +msgid "closing input file %s" +msgstr "creando ficheiro \"%s\"\n" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "pechando o ficheiro de saída %s" + +#: src/dd.c:469 +#, fuzzy, c-format +msgid "writing to %s" +msgstr "erro escribindo %s" + +#: src/dd.c:501 +#, fuzzy, c-format +msgid "invalid conversion: %s" +msgstr "opción de anchura non válida: \"%s\"" + +#: src/dd.c:557 +#, fuzzy, c-format +msgid "unrecognized option %s" +msgstr "opción descoñecida \"-%c\"" + +#: src/dd.c:610 +#, fuzzy, c-format +msgid "unrecognized option %s=%s" +msgstr "opción descoñecida \"-%c\"" + +#: src/dd.c:616 +#, fuzzy, c-format +msgid "invalid number %s" +msgstr "número incorrecto" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"só unha conversión de {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" + +#: src/dd.c:1170 src/dd.c:1188 +#, fuzzy, c-format +msgid "opening %s" +msgstr "erro lendo %s" + +#: src/dd.c:1196 +#, fuzzy +msgid "file offset out of range" +msgstr "%s: número de liña inexistente" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "avanzando os pasados %s bytes no ficheiro de saída %s" + +#: src/df.c:49 +#, fuzzy +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "David Ihnat, David MacKenzie e Jim Meyering" + +#: src/df.c:153 +#, fuzzy +msgid "Filesystem Type" +msgstr "Sist. Fich " + +#: src/df.c:155 +#, fuzzy +msgid "Filesystem " +msgstr "Sist. Fich " + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr " Inodos IUsados ILibres IUso%%" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Tamaño Usado Disp Uso%%" + +#: src/df.c:164 +#, fuzzy, c-format +msgid " Size Used Avail Use%%" +msgstr " Tamaño Usado Disp Uso%%" + +#: src/df.c:167 +#, fuzzy, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr "bloques-%4d Usado Dispoñib Capacid" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr "bloques-%4s Usado Dispoñib Uso%%" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr " Montado en\n" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" + +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "o sistema de ficheiros tipo %s foi escollido e exluído ao mesmo tempo" + +#: src/df.c:903 +msgid "Warning: " +msgstr "Aviso: " + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "%snon se pode le-la táboa cos sistemas de ficheiros montados" + +#: src/dircolors.c:103 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "Uso: %s [OPCIÓN]... [FICHEIRO]...\n" + +#: src/dircolors.c:104 +#, fuzzy +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"Escribe os comandos para establece-la variable de ambiente LS_COLORS.\n" +"\n" +"Para axusta-lo formato de saída:\n" +" -b, --sh, --bourne-shell amosa-lo código para establecer LS_COLORS\n" +" para Bourne shell\n" +" -c, --csh, --c-shell amosa-lo código para establecer LS_COLORS\n" +" para C-shell\n" +" -p, --print-database amosa-los códigos predeterminados\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" +"\n" +"Se se indica FICHEIRO, lese para determinar que cores usar para cada tipo\n" +"de ficheiros e extensións. Se non, úsase unha base de datos precompilada.\n" +"Para máis detalles do formato destes ficheiros, execute `dircolors\n" +"--print-database'.\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" + +#: src/dircolors.c:299 +#, fuzzy, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s: número de segundos incorrecto" + +#: src/dircolors.c:371 +#, fuzzy, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s: opción descoñecida \"%c%s\"\n" + +#: src/dircolors.c:372 +msgid "" +msgstr "" + +#: src/dircolors.c:467 +#, fuzzy +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" +"as opcións de estilos de saída lexible para humanos e para o\n" +"stty son mutuamente exluintes" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" +"non se poden usar argumentos de tipo FICHEIRO coa opción para amosa-la\n" +"base de datos interna de dircolors" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "" +"non existe a variable de ambiente SHELL, e non se indicou ningunha opción\n" +"de tipo de shell" + +#: src/dirname.c:33 src/pathchk.c:59 +#, fuzzy +msgid "David MacKenzie and Jim Meyering" +msgstr "David Ihnat, David MacKenzie e Jim Meyering" + +#: src/dirname.c:46 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s [FICHEIRO]...\n" +" ou: %s [OPCIÓN]\n" + +#: src/dirname.c:51 +#, fuzzy +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" +"Amosar NOME co seu /compoñente final quitado; se NOME non contén ningún /,\n" +"escribirase `.' (o directorio actual).\n" +"\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" + +#: src/du.c:49 +#, fuzzy +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "David Ihnat, David MacKenzie e Jim Meyering" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" + +#: src/du.c:337 +#, fuzzy, c-format +msgid "cannot change to parent of directory %s" +msgstr "non se pode cambiar ao directorio %s" + +#: src/du.c:345 +#, fuzzy, c-format +msgid "cannot change to directory %s" +msgstr "non se pode cambiar ao directorio %s" + +#: src/du.c:352 +#, fuzzy, c-format +msgid "cannot read directory %s" +msgstr "non se pode crea-lo directorio %s" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "total" + +#: src/du.c:641 +#, fuzzy, c-format +msgid "invalid maximum depth %s" +msgstr "anchura non válida: \"%s\"" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "non se pode resumir e amosar tódalas entradas ao mesmo tempo" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "aviso: resumir é o mesmo que usar --max-depth=0" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "aviso: resumir vai en conflicto con --max-depth=%d" + +#: src/echo.c:77 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "Uso: %s [OPCIÓN]... [FICHEIRO]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/env.c:93 +#, fuzzy +msgid "Richard Mlynarik and David MacKenzie" +msgstr "Richard Stallman e David MacKenzie" + +#: src/env.c:119 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "Uso: %s [OPCIÓN]... [FICHEIRO]...\n" + +#: src/env.c:122 +#, fuzzy +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" +"Establecer cada NOME a VALOR no ambiente e executar COMANDO.\n" +"\n" +" -i, --ignore-environment comezar cun ambiente baleiro\n" +" -u, --unset=NOME quita-la variable do ambiente\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Converti-las tabulacións de cada FICHEIRO a espacios, gravando na saída\n" +"estándar. Sen un FICHEIRO, ou se o FICHEIRO é -, lese da entrada estándar.\n" +"\n" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" +" -i, --initial non converti-las tabulacións despois de algo distinto\n" +" a un espacio en branco\n" +" -t, --tabs=NÚMERO face-las tabulacións de NÚMERO espacios, non 8\n" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" +" -t, --tabs=LISTA empregar unha lista separada por comas de " +"posicións\n" +" de tabulación\n" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "o tamaño da tabulación contén un carácter incorrecto" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "o tamaño da tabulación non pode ser 0" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "os tamaños das tabulacións deben ser crecentes" + +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "a opción \"-LIST\" é obsoleta; empregue \"-t LISTA\"" + +#: src/expr.c:90 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s [FICHEIRO]...\n" +" ou: %s [OPCIÓN]\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" +"\n" +"Teña en conta que moitos dos operadores necesitan caracteres de escape ou\n" +"comiñas para as shells.\n" +"As comparacións son aritméticas se ambos ARGs son números, doutro xeito " +"serán\n" +"lexicográficas.\n" +"Os encaixes dos patróns devolven a cadea entre \\( e \\), ou nada; se non\n" +"se usan \\( e \\), devólvese o número de caracteres coincidintes ou 0.\n" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +#, fuzzy +msgid "syntax error" +msgstr "erro estándar" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" +"aviso: ERB non portable: `%s': usar `^' coma o primeiro carácter\n" +"cunha expresión regular básica non é portable; ignorarase" + +#: src/expr.c:586 src/expr.c:625 +#, fuzzy +msgid "non-numeric argument" +msgstr "argumento de límite" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "" + +#: src/factor.c:74 +#, fuzzy, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s [FICHEIRO]...\n" +" ou: %s [OPCIÓN]\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" + +#: src/factor.c:85 +#, fuzzy +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" +"Escribir factores de cada NÚMERO; sen argumentos lese da entrada estándar.\n" +"\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" +"\n" +" Amosa-los factores primos de tódolos NÚMEROs enteiros indicados. Se non " +"se\n" +" indicaron argumentos na liña de comandos, lense da entrada estándar.\n" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "`%s' non é un enteiro positivo válido" + +#: src/false.c:34 +#, fuzzy, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Uso: %s [opcións de liña de comandos ignoradas]\n" +" ou: %s OPCIÓN\n" +"Saír cun código de estado indicando fallo.\n" +"\n" +"Estes nomes de opcións non se poden abreviar.\n" +"\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "Uso: %s [-DIXITOS] [OPCIÓN]... [FICHEIRO]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" +"Reformatar cada parágrafo nos FICHEIROs, escribindo na saída estándar.\n" +"Se non se indica un FICHEIRO ou se é \"-\", lese da entrada estándar.\n" +"\n" + +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" +" -c, --crown-margin preserva-lo sangrado das dúas primeiras liñas\n" +" -p, --prefix=CADEA combinar só as liñas coa CADEA coma prefixo\n" +" -s, --splitonly parti-las liñas longas, pero non encher\n" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" +" -t, --tagged-paragraph sangría da primeira liña diferente da da " +"segunda\n" +" -u, --uniform-spacing un espacio entre palabras, dous tralas frases\n" +" -w, --width=NÚMERO ancho de liña máximo (75 columnas por defecto)\n" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" +"\n" +"En -wNÚMERO, a letra \"w\" pódese omitir.\n" + +#: src/fmt.c:345 +#, c-format +msgid "invalid width option: `%s'" +msgstr "opción de anchura non válida: \"%s\"" + +#: src/fmt.c:385 +#, c-format +msgid "invalid width: `%s'" +msgstr "anchura non válida: \"%s\"" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" +"Parti-las liñas de entrada de cada FICHEIRO (entrada estándar por defecto),\n" +"gravando na saída estándar.\n" +"\n" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" +" -b, --bytes contar bytes no canto de columnas\n" +" -s, --spaces partir nos espacios\n" +" -w, --width=ANCHO empregar ANCHO columnas no canto de 80\n" + +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "a opción \"%s\" é obsoleta; empregue \"%s\"" + +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "número de columnas incorrecto: \"%s\"" + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Amosa-las primeiras 10 liñas de cada FICHEIRO na saída estándar.\n" +"Con máis dun FICHEIRO, preceder cada un cunha cabeceira que dá o nome do\n" +"ficheiro. Sen un FICHEIRO, ou cando este é -, lese da entrada estándar.\n" +"\n" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" +" -c, --bytes=TAMAÑO amosa-los primeiros TAMAÑO bytes\n" +" -n, --lines=NÚMERO amosa-las primerias NÚMERO liñas no canto de 10\n" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" +" -q, --quiet, --silent non amosa-las cabeceiras cos nomes dos ficheiros\n" +" -v, --verbose amosar sempre as cabeceiras cos nomes dos " +"ficheiros\n" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" +"\n" +"TAMAÑO pode ter un sufixo multiplicativo: b para 512, k para 1K, m para 1 " +"mega.\n" + +#: src/head.c:190 +#, c-format +msgid "cannot reposition file pointer for %s" +msgstr "non se pode move-lo punteiro do ficheiro de %s" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "%s: %s é tan grande que non é representable" + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "número de liñas" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "número de bytes" + +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "número de liñas incorrecto" + +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "número de bytes incorrecto" + +#: src/head.c:341 +#, c-format +msgid "unrecognized option `-%c'" +msgstr "opción descoñecida \"-%c\"" + +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "a opción \"-%s\" é obsoleta; empregue \"-%c %.*s%.*s%s\"" + +#: src/hostid.c:48 +#, fuzzy, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" +"Uso: %s\n" +" ou: %s OPCIÓN\n" +"Escribi-lo identificador numérico (en hexadecimal) da máquina actual.\n" +"\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" + +#: src/hostname.c:67 +#, fuzzy, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" +"Uso: %s [NOME]\n" +" ou: %s OPCIÓN\n" +"Amosar ou establece-lo nome da máquina deste sistema.\n" +"\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" + +#: src/hostname.c:104 +#, fuzzy, c-format +msgid "cannot set hostname to `%s'" +msgstr "non se poden facer operacións de ioctl en \"%s\"" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "" +"non se pode establece-lo nome de máquina; o sistema non ten esa capacidade" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "non se pode determina-lo nome da máquina" + +#: src/id.c:36 +#, fuzzy +msgid "Arnold Robbins and David MacKenzie" +msgstr "Paul Rubin e David MacKenzie" + +#: src/id.c:87 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "Uso: %s [OPCIÓN]... CONXUNTO1 [CONXUNTO2]\n" + +#: src/id.c:88 +#, fuzzy +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" +"Amosa-la información de NOME_USUARIO, ou do usuario actual.\n" +"\n" +" -a ignorada, para compatibilidade con outras versións\n" +" -g, --group amosar só o ID de grupo\n" +" -G, --groups amosar só os grupos suplementarios\n" +" -n, --name amosa-lo nome en vez do número, para as opcións -ugG\n" +" -r, --real amosa-lo ID real en vez do efectivo, para as opcións -ugG\n" +" -u, --user amosar só o ID de usuario\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión\n" +"\n" +"Sen ningunha OPCIÓN, escríbese un conxunto útil de información de\n" +"identificación.\n" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" + +#: src/id.c:162 +#, fuzzy +msgid "cannot print only user and only group" +msgstr "non se poden omiti-lo usuario e o grupo" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "" +"non se pode escribir só o nome ou o identificador real no formato por defecto" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "%s: Non hai tal usuario" + +#: src/id.c:212 +#, fuzzy, c-format +msgid "cannot find name for user ID %u" +msgstr "%s: non se pode atopa-lo nome de usuario do UID %u\n" + +#: src/id.c:235 +#, fuzzy, c-format +msgid "cannot find name for group ID %u" +msgstr "non se pode cambia-lo propietario e/ou grupo de %s" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "non se pode obte-la lista de grupos suplementarios" + +#: src/id.c:385 +msgid " groups=" +msgstr " grupos=" + +#: src/install.c:269 +#, fuzzy +msgid "the strip option may not be used when installing a directory" +msgstr "" +"a cadea de formato non se pode especificar ó escribir cadeas da mesma anchura" + +#: src/install.c:292 src/mkdir.c:140 +#, fuzzy, c-format +msgid "invalid mode %s" +msgstr "anchura non válida: \"%s\"" + +#: src/install.c:307 src/install.c:371 +#, fuzzy, c-format +msgid "creating directory %s" +msgstr "non se pode crea-lo directorio %s" + +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "" +"a instalar varios ficheiros, mais o derradeiro argumento %s non é un " +"directorio" + +#: src/install.c:435 +#, fuzzy, c-format +msgid "%s is a directory" +msgstr "%s existe pero non é un directorio" + +#: src/install.c:495 +#, fuzzy, c-format +msgid "cannot obtain time stamps for %s" +msgstr "non se pode move-lo punteiro do ficheiro de %s" + +#: src/install.c:507 +#, fuzzy, c-format +msgid "cannot set time stamps for %s" +msgstr "non se pode crea-lo directorio %s" + +#: src/install.c:528 +#, fuzzy +msgid "fork system call failed" +msgstr "ficheiro especial de bloque" + +#: src/install.c:532 +#, fuzzy +msgid "cannot run strip" +msgstr "non se pode executar %s" + +#: src/install.c:539 +#, fuzzy +msgid "strip failed" +msgstr "a obtención de datos do ficheiro fallou" + +#: src/install.c:560 +#, fuzzy, c-format +msgid "invalid user %s" +msgstr "usuario incorrecto" + +#: src/install.c:578 +#, fuzzy, c-format +msgid "invalid group %s" +msgstr "grupo incorrecto" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"Uso: %s [OPCIÓN]... ORIXE DESTINO (primeira forma)\n" +" ou: %s [OPCIÓN]... ORIXE... DIRECTORIO (segunda forma)\n" +" ou: %s -d [OPCIÓN]... DIRECTORIO (terceira forma)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +#, fuzzy +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"O sufixo de copia de seguridade é `~', a menos que se estableza con --" +"suffix\n" +"ou con SIMPLE_BACKUP_SUFFIX. O método do control de versión pode ser\n" +"establecido coa opción --backup ou coa variable de ambiente " +"VERSION_CONTROL.\n" +"Os valores poden ser:\n" +"\n" +" none, off non facer nunca copias de seguridade (mesmo con --backup)\n" +" numbered, t facer copias de seguridade numeradas\n" +" existing, nil copias numeradas se xa existen numeradas, se non simples\n" +" simple, never facer sempre copias de seguridade simples\n" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "Uso: %s [OPCIÓN]... FICHEIRO1 FICHEIRO2\n" + +#: src/join.c:148 +#, fuzzy +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" +"Para cada parella de liñas de entrada con campos de join idénticos, amosar\n" +"unha liña na saída estándar. O campo de join por defecto é o primeiro,\n" +"delimitado con espacios en branco. Cando FICH1 ou FICH2 (non os dous) é -,\n" +"lese da entrada estándar.\n" +"\n" +" -a LADO amosa-las liñas sen parella que proceden do ficheiro " +"LADO\n" +" -e BALEIRO substituí-los campos de entrada baleiros con BALEIRO\n" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" +" -i, --ignore-case ignora-las maiúsculas/minúsculas ao compara-los campos\n" +" -j CAMPO (obsoleto) equivalente a \"-1 CAMPO -2 CAMPO\"\n" +" -j1 CAMPO (obsoleto) equivalente a \"-1 CAMPO\"\n" +" -j2 CAMPO (obsoleto) equivalente a \"-2 CAMPO\"\n" +" -o FORMATO aplica-lo FORMATO ao construí-la liña de saída\n" +" -t CAR emprega-lo CARácter coma separador de campos de entrada\n" +" e saída\n" + +#: src/join.c:165 +#, fuzzy +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" +" -v LADO coma -a LADO, pero suprimindo as liñas de saída " +"correctas\n" +" -1 CAMPO face-lo join neste CAMPO do ficheiro 1\n" +" -2 CAMPO face-lo join neste CAMPO do ficheiro 2\n" + +#: src/join.c:172 +#, fuzzy +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" +"\n" +"A menos que se indique -t CAR, os espacios en branco ao principio da liña\n" +"separan campos e ignóranse; senón os campos sepáranse con CAR. Cada CAMPO é\n" +"un número de campo que se conta dende 1. FORMATO é unha ou máis " +"especificacións\n" +"separadas por comas, cada unha do tipo \"LADO.CAMPO\" ou \"0\". O FORMATO " +"por\n" +"defecto amosa o campo de join, os campos restantes de FICHEIRO1 e os campos\n" +"restantes de FICHEIRO2, todos separados por CAR.\n" + +#: src/join.c:645 +#, c-format +msgid "invalid field specifier: `%s'" +msgstr "especificador de campo incorrecto: \"%s\"" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, c-format +msgid "invalid field number: `%s'" +msgstr "número de campo incorrecto: \"%s\"" + +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "número de ficheiro incorrecto na especificación de campos: \"%s\"" + +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "número de campo incorrecto para o ficheiro 1: \"%s\"" + +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "número de campo incorrecto para o ficheiro 2: \"%s\"" + +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "demasiados argumentos" + +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "insuficientes argumentos" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "os dous ficheiros non poden ser entrada estándar" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" + +#: src/kill.c:106 +#, fuzzy +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" +"Copiar a entrada estándar a cada ficheiro, e tamén á saída estándar.\n" +"\n" +" -a, --append engadir ós FICHEIROs indicados, non " +"sobrescribir\n" +" -i, --ignore-interrupts ignora-los sinais de interrupción\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" + +#: src/kill.c:163 +#, fuzzy, c-format +msgid "%s: invalid signal" +msgstr "%s: PID incorrecto" + +#: src/kill.c:262 +#, fuzzy, c-format +msgid "missing operand after `%s'" +msgstr "%s: esperábase un enteiro tras \"%c\"" + +#: src/kill.c:274 +#, fuzzy, c-format +msgid "%s: invalid process id" +msgstr "%s: patrón incorrecto" + +#: src/kill.c:327 +#, fuzzy, c-format +msgid "invalid option -- %c" +msgstr "%s: opción incorrecta -- %c\n" + +#: src/kill.c:336 +#, fuzzy, c-format +msgid "%s: multiple signals specified" +msgstr "\\%c: secuencia de escape non válida" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "" + +#: src/link.c:51 +#, fuzzy, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s [FICHEIRO]...\n" +" ou: %s [OPCIÓN]\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" + +#: src/link.c:98 +#, fuzzy, c-format +msgid "cannot create link %s to %s" +msgstr "non se pode crea-lo directorio %s" + +#: src/ln.c:39 +#, fuzzy +msgid "Mike Parker and David MacKenzie" +msgstr "Scott Bartram e David MacKenzie" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "" +"%s: aviso: facer unha ligazón dura dunha ligazón simbólica non é portable" + +#: src/ln.c:174 +#, fuzzy, c-format +msgid "%s: hard link not allowed for directory" +msgstr "`%s' non é un directorio" + +#: src/ln.c:246 +#, fuzzy, c-format +msgid "%s: cannot overwrite directory" +msgstr "non se pode crea-lo directorio %s" + +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "%s: ¿substituír %s?" + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: O ficheiro xa existe" + +#: src/ln.c:304 +#, fuzzy, c-format +msgid "create symbolic link %s to %s" +msgstr "ligazón simbólica" + +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "crear ligazón dura %s a %s" + +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "a crear a ligazón simbólica de %s a %s" + +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "a crear a ligazón dura de %s a %s" + +#: src/ln.c:339 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"Uso: %s [OPCIÓN]... ÚLTIMO\n" +" ou: %s [OPCIÓN]... PRIMEIRO ÚLTIMO\n" +" ou: %s [OPCIÓN]... PRIMEIRO INCREMENTO ÚLTIMO\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" + +#: src/ln.c:521 +#, fuzzy, c-format +msgid "%s: specified target directory is not a directory" +msgstr "%s existe pero non é un directorio" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "ao facer varias ligazóns, o último argumento ten que ser un directorio" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "Uso: %s [OPCIÓN] [FICHEIRO]...\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" + +#: src/logname.c:99 +#, fuzzy, c-format +msgid "%s: no login name\n" +msgstr "%s: número incorrecto" + +#: src/ls.c:673 +#, fuzzy +msgid "%b %e %Y" +msgstr "%e %b %Y %H:%M" + +#: src/ls.c:681 +#, fuzzy +msgid "%b %e %H:%M" +msgstr "%e %b %Y %H:%M" + +#: src/ls.c:1307 +#, fuzzy, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "" +"ignorando o tamaño de tabulador non válido na variable de ambiente TABSIZE: %" +"s" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "ignorando o ancho non válido na variable de ambiente COLUMNS: %s" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "" +"ignorando o tamaño de tabulador non válido na variable de ambiente TABSIZE: %" +"s" + +#: src/ls.c:1482 +#, fuzzy, c-format +msgid "invalid line width: %s" +msgstr "anchura non válida: \"%s\"" + +#: src/ls.c:1556 +#, fuzzy, c-format +msgid "invalid tab size: %s" +msgstr "cadea de tipo incorrecta \"%s\"" + +#: src/ls.c:1722 +#, fuzzy, c-format +msgid "invalid time style format %s" +msgstr "argumento incorrecto %s para %s" + +#: src/ls.c:2054 +#, fuzzy, c-format +msgid "unrecognized prefix: %s" +msgstr "opción descoñecida \"-%c\"" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "a variable de ambiente LS_COLORS ten un valor ilexible" + +#: src/ls.c:2145 +#, fuzzy, c-format +msgid "cannot determine device and inode of %s" +msgstr "non se pode move-lo punteiro do ficheiro de %s" + +#: src/ls.c:2155 +#, fuzzy, c-format +msgid "not listing already-listed directory: %s" +msgstr "non se pode crea-lo directorio %s" + +#: src/ls.c:2208 src/remove.c:929 +#, fuzzy, c-format +msgid "reading directory %s" +msgstr "non se pode crea-lo directorio %s" + +#: src/ls.c:2603 +#, fuzzy, c-format +msgid "cannot compare file names %s and %s" +msgstr "As cadeas que se compararon foron %s e %s" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" + +#: src/ls.c:3784 +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" + +#: src/ls.c:3799 +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" + +#: src/ls.c:3831 +#, fuzzy +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -g (ignorada)\n" +" -G, --no-group non amosa-la información do grupo\n" +" -h, --human-readable escribi-los tamaños nun formato lexible para\n" +" humanos (p.ex. 1K 234M 2G)\n" +" --si o mesmo, mais usando potencias de 1000, non " +"1024\n" +" -H igual que `--si' por agora; cambiará para " +"seguir\n" +" a norma POSIX\n" +" --indicator-style=PALABRA engadir un indicador de estilo PALABRA aos\n" +" nomes das entradas: none [ningún] " +"(defecto),\n" +" classify [clasificar] (-F), file-type\n" +" [tipo de ficheiro] (-p)\n" +" -i, --inode escribi-lo número de índice de cada ficheiro\n" +" -I, --ignore=PATRÓN non amosa-las entradas que encaixen co PATRÓN\n" +" de shell\n" +" -k, --kilobytes coma --block-size=1024\n" +" -l usar un formato longo de listaxe\n" +" -L, --dereference amosa-las entradas apuntadas polas ligazóns\n" +" simbólicas\n" +" -m encher ao ancho cunha lista de entradas " +"separadas\n" +" por coma\n" +" -n, --numeric-uid-gid amosar UIDs e GIDs numéricos en vez dos nomes\n" +" -N, --literal amosa-los nomes reais (non tratar p.ex. os\n" +" caracteres de control como especiais)\n" +" -o usar un formato de listado longo sen a " +"información\n" +" do grupo\n" +" -p, --file-type engadir un indicador ás entradas (un de /=@|)\n" +" -q, --hide-control-chars escribir ? en vez dos caracteres non gráficos\n" +" --show-control-chars amosa-los caracteres non gráficos tal como son\n" +" (predeterminado a menos que o programa sexa\n" +" `ls' e a saída sexa un terminal)\n" +" -Q, --quote-name arrodea-los nomes entre comiñas\n" +" --quoting-style=PALABRA utiliza-lo estilo de cita PALABRA para os " +"nomes\n" +" das entradas:\n" +" literal, shell, shell-always, c, escape\n" +" -r, --reverse inverte-la orde ao face-la ordenación\n" +" -R, --recursive amosa-los subdirectorios recursivamente\n" +" -s, --size escribi-lo tamaño de cada ficheiro, en bloques\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" + +#: src/ls.c:3871 +#, fuzzy +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" +" -f, --fields=LISTA amosar só estes campos; tamén amosa calquera liña\n" +" que non conteña o carácter delimitador, agás se\n" +" se indica a opción -s\n" +" -n (ignórase)\n" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "Ulrich Drepper e Scott Miller" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"Emprego: %s [OPCIÓN] [FICHEIRO]...\n" +" ou: %s [OPCIÓN] --check [FICHEIRO]\n" +"Amosar ou comprobar sumas de comprobación %s (de %d bits).\n" +"Sen un FICHEIRO, ou cando o FICHEIRO é -, lese da entrada estándar.\n" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" +"\n" +" -b, --binary le-los ficheiros en modo binario\n" +" (por defecto en DOS/Windows)\n" +" -c, --check comproba-las sumas %s contra a lista dada\n" +" -t, --text le-los ficheiros en modo texto (por defecto)\n" +"\n" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" +"As seguintes dúas opcións son útiles só ao comproba-las sumas:\n" +" --status non amosar nada; o código de estado indica o " +"éxito\n" +" -w, --warn abisar das liñas mal formatadas\n" +"\n" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" +"\n" +"As sumas calcúlanse tal como se describe en %s. Ao comprobar, a entrada\n" +"debería ser unha saída anterior deste programa. O modo por defecto é amosar\n" +"unha liña con suma de comprobación, un carácter que indica tipo (\"*\" para\n" +"binario, \" \" para texto) e o nome de cada FICHEIRO.\n" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "%s: %lu: liña de suma de comprobación %s mal formatada" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "%s: apertura ou lectura FALLIDA\n" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "FALLA" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "OK" + +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%s: erro de lectura" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "%s: non se atoparon liñas de suma de comprobación %s ben formatadas" + +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "AVISO: non se puido ler %d de %d %s listados" + +#: src/md5sum.c:473 +msgid "file" +msgstr "ficheiro" + +#: src/md5sum.c:473 +msgid "files" +msgstr "ficheiros" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "AVISO: NON coincidiron %d de %d %s calculadas" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "sumas" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "sumas" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" +"as opcións --binary e --text non teñen sentido cando se comproban sumas" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "as opcións --string e --check son mutuamente exclusivas" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "a opción --status ten sentido só cando se verifican sumas" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "a opción --warn ten sentido só cando se verifican sumas" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "non se pode especificar ficheiros cando se usa --string" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "só se pode especificar un argumento cando se usa --check" + +#: src/mkdir.c:61 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "Uso: %s [OPCIÓN] [FICHEIRO]...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" + +#: src/mkdir.c:69 +#, fuzzy +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +"Crea o(s) DIRECTORIO(s), se aínda non existen.\n" +"\n" +" -m, --mode=MODO establece-los permisos a MODO (coma en chmod), en vez\n" +" de rwxrwxrwx - umask\n" +" -p, --parents suprimi-los erros se xa existe, crea-los directorios\n" +" pais se for necesario\n" +" -v, --verbose escribir unha mensaxe por cada directorio creado\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" + +#: src/mkdir.c:113 +#, fuzzy, c-format +msgid "created directory %s" +msgstr "non se pode crea-lo directorio %s" + +#: src/mkdir.c:190 +#, fuzzy, c-format +msgid "cannot set permissions of directory %s" +msgstr "non se pode cambia-los permisos de %s" + +#: src/mkfifo.c:55 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "Uso: %s [OPCIÓN] [FICHEIRO]...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" + +#: src/mkfifo.c:63 src/mknod.c:64 +#, fuzzy +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" +"Crea tuberías nomeadas (FIFOs) cos NOMEs indicados.\n" +"\n" +" -m, --mode=MODO establece-los permisos a MODO (coma en chmod), en vez\n" +" de a=rw - umask\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "os ficheiros \"fifo\" non están soportados" + +#: src/mkfifo.c:123 src/mknod.c:127 +#, fuzzy +msgid "invalid mode" +msgstr "número incorrecto" + +#: src/mkfifo.c:142 +#, fuzzy, c-format +msgid "cannot set permissions of fifo %s" +msgstr "non se pode cambia-los permisos de %s" + +#: src/mknod.c:55 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "Uso: %s [OPCIÓN]... CONXUNTO1 [CONXUNTO2]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" + +#: src/mknod.c:76 +#, fuzzy +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"Crea o ficheiro especial NOME do TIPO indicado.\n" +"\n" +" -m, --mode=MODO establece-los permisos a MODO (coma en chmod), en vez\n" +" de a=rw - umask\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" +"\n" +"MAJOR e MINOR están prohibidos para o TIPO p, obrigatorios noutros casos.\n" +"O TIPO pode ser:\n" +"\n" +" b crea un ficheiro especial de bloques (buffered)\n" +" c, u crea un ficheiro especial de caracteres (unbuffered)\n" +" p crea unha FIFO\n" + +#: src/mknod.c:141 +#, fuzzy +msgid "wrong number of arguments" +msgstr "número de argumentos insuficiente" + +#: src/mknod.c:153 +#, fuzzy +msgid "block special files not supported" +msgstr "ficheiro especial de bloque" + +#: src/mknod.c:162 +#, fuzzy +msgid "character special files not supported" +msgstr "ficheiro especial de carácter" + +#: src/mknod.c:171 +#, fuzzy +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" +"ao crear ficheiros especiais de bloque, débense indicar os números\n" +"de dispositivo `major' e `minor'" + +#: src/mknod.c:186 +#, fuzzy, c-format +msgid "invalid major device number %s" +msgstr "número de liña inicial incorrecto: \"%s\"" + +#: src/mknod.c:191 +#, fuzzy, c-format +msgid "invalid minor device number %s" +msgstr "número de liña inicial incorrecto: \"%s\"" + +#: src/mknod.c:196 +#, fuzzy, c-format +msgid "invalid device %s %s" +msgstr "argumento incorrecto %s para %s" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "" +"os números de dispositivo `major' e `minor' non se poden indicar para fifos" + +#: src/mknod.c:231 +#, fuzzy, c-format +msgid "cannot set permissions of %s" +msgstr "non se pode cambia-los permisos de %s" + +#: src/mv.c:44 +#, fuzzy +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie e Jim Meyering" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" + +#: src/mv.c:339 +#, fuzzy +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Renomea ORIXE a DESTINO, ou mover ORIXE(s) a DIRECTORIO.\n" +"\n" +" --backup[=CONTROL] facer unha copia de seguridade de cada " +"ficheiro\n" +" destino\n" +" -b como --backup mais sen aceptar argumentos\n" +" -f, --force non preguntar antes de sobrescribir\n" +" -i, --interactive preguntar antes de sobrescribir\n" +" --strip-trailing-slashes elimina-las barras finais de tódolos\n" +" argumentos ORIXE\n" +" -S, --suffix=SUFIXO substituí-lo sufixo habitual de copia de\n" +" seguridade\n" +" --target-directory=DIRECTORIO mover tódolos argumentos ORIXE ao\n" +" DIRECTORIO\n" +" -u, --update mover só os non-directorios máis antigos ou\n" +" os recentes\n" +" -v, --verbose explica-lo que está a se facer\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" + +#: src/mv.c:467 +#, fuzzy, c-format +msgid "specified target, %s is not a directory" +msgstr "%s existe pero non é un directorio" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "ao mover varios ficheiros, o último argumento debe ser un directorio" + +#: src/nice.c:67 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "Uso: %s [OPCIÓN] [FICHEIRO]...\n" + +#: src/nice.c:68 +#, fuzzy +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" +"Executar COMANDO cunha prioridade de execución axustada.\n" +"Sen COMANDO, escribi-la prioridade de execución actual. AXUSTE é 10\n" +"por defecto. O rango vai dende -20 (máxima prioridade) a 19 (mínima).\n" +"\n" +" -AXUSTE incrementar primeiro a prioridade por AXUSTE\n" +" -n, --adjustment=AXUSTE o mesmo que -AXUSTE\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" + +#: src/nice.c:109 src/nice.c:122 +#, fuzzy, c-format +msgid "invalid option `%s'" +msgstr "opción de anchura non válida: \"%s\"" + +#: src/nice.c:147 +#, fuzzy, c-format +msgid "invalid priority `%s'" +msgstr "anchura non válida: \"%s\"" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "ten que se dar un comando co axuste" + +#: src/nice.c:178 src/nice.c:187 +#, fuzzy +msgid "cannot get priority" +msgstr "non se pode crea-lo directorio %s" + +#: src/nice.c:192 +#, fuzzy +msgid "cannot set priority" +msgstr "non se pode crea-lo directorio %s" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "Scott Bartram e David MacKenzie" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Amosar cada FICHEIRO na saída estándar, engadindo os números de liña.\n" +"Sen un FICHEIRO, ou cando este é -, lese da entrada estánda.\n" +"\n" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" +" -b, --body-numbering=ESTILO usa-lo ESTILO para numera-las liñas do " +"corpo\n" +" -d, --section-delimiter=CC empregar CC para separa-las páxinas " +"lóxicas\n" +" -f, --footer-numbering=ESTILO usa-lo ESTILO para numera-las liñas do pé\n" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" +" -h, --header-numbering=ESTILO emprega-lo ESTILO para numera-las liñas\n" +" da cabeceira\n" +" -i, --page-increment=NÚMERO incremento do número de liña en cada liña\n" +" -l, --join-blank-lines=NÚMERO contar cada grupo de NÚMERO liñas " +"baleiras\n" +" coma unha soa liña\n" +" -n, --number-format=FORMATO inseri-los números de liña seguindo o " +"FORMATO\n" +" -p, --no-renumber non reinicia-los números de liña con cada\n" +" páxina lóxica\n" +" -s, --number-separator=CADEA engadi-la CADEA tras cada número de liña\n" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" +" -v, --first-page=NÚMERO primeiro número de liña nas páxinas " +"lóxicas\n" +" -w, --number-width=NÚMERO empregar NÚMERO columnas nos números de " +"liña\n" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" +"\n" +"Por defecto selecciona -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC son\n" +"dous caracteres delimitadores para separar páxinas lóxicas; use non se\n" +"indica o segundo carácter suponse :. Escriba \\\\ para obter \\.\n" +"ESTILO pode ser:\n" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" +"\n" +" a numerar tódalas liñas\n" +" t numerar só as liñas que non estean baleiras\n" +" n non numerar ningunha liña\n" +" pEXPREG numera-las liñas que encaixen na expresión regular EXPREG\n" +"\n" +"FORMATO pode ser:\n" +"\n" +" ln xustificado á esquerda, sen ceros á esquerda\n" +" rn xustificado á dereita, sen ceros á esquerda\n" +" rz xustificado á dereita, con ceros á esquerda\n" +"\n" + +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "número de liña inicial incorrecto: \"%s\"" + +#: src/nl.c:514 +#, c-format +msgid "invalid line number increment: `%s'" +msgstr "incremento de números de liña incorrecto: \"%s\"" + +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "número de liñas en blanco incorrecto: \"%s\"" + +#: src/nl.c:541 +#, c-format +msgid "invalid line number field width: `%s'" +msgstr "ancho do campo do número de liña incorrecto: \"%s\"" + +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"Uso: %s [OPCIÓN]... [FICHEIRO]...\n" +" ou: %s --traditional [FICHEIRO] [[+]DESPRAZAMENTO [[+]ETIQUETA]]\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"\n" +"Escribir na saída estándar unha representación non ambigua, con\n" +"bytes octais por defecto, do FICHEIRO. Con máis dun argumento de\n" +"FICHEIRO, concatenalos na orde listada para forma-la entrada. Sen\n" +"un FICHEIRO, ou se este é -, lese da entrada estándar.\n" +"\n" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "" +"Tódolos argumentos para as opcións longas son obrigatorios nas opcións " +"curtas.\n" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" +" -A, --address-radix=BASE indicar como se amosan os desprazamentos\n" +" -j, --skip-bytes=BYTES omiti-los primeiros BYTES bytes de entrada\n" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" +" -N, --read-bytes=BYTES limita-lo envorado a BYTES bytes de entrada\n" +" -s, --strings[=BYTES] usar cadeas de alomenos BYTES caracteres " +"gráficos\n" +" -t, --format=TIPO escolle-lo formato ou formatos de saída\n" +" -v, --output-duplicatoes non empregar * para indica-las liñas borradas\n" +" -w, --width[=BYTES] amosar BYTES bytes por liña de saída\n" +" --traditional acepta-los argumentos en formato tradicional\n" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" +"\n" +"As especificacións de formtao tradicionais pódense mesturar; acumúlanse:\n" +" -a igual que -t a, escoller caracteres nomeados\n" +" -b igual que -t oC, escoller bytes octais\n" +" -c igual que -t c, escoller caracteres ASCII ou escapados\n" +" -d igual que -t u2, escoller números curtos decimais sen signo\n" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" +" -f igual que -t fF, escoller números en punto flotante\n" +" -h igual que -t x2, escoller números curtos hexadecimais\n" +" -i igual que -t d2, escoller números curtos decimais\n" +" -l igual que -t d4, escoller números longos decimais\n" +" -o igual que -t o2, escoller números curtos octais\n" +" -x igual que -t x2, escoller números curtos hexadecimais\n" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" +"\n" +"Para a sintaxe antiga (segundo formato de chamada), DESPRAZAMENTO significa\n" +"-j DESPRAZAMENTO. ETIQUETA é o pseudo-enderezo do primeiro byte imprimido,\n" +"que se incrementa segundo o envorcado progresa. Para o DESPRAZAMENTO e a\n" +"ETIQUETA, un prefixo 0x ou 0X indica hexadecimal; os sufixos poden ser .\n" +"para octal e b para multiplicar por 512.\n" +"\n" +"TIPO componse de unha ou máis destas especificacións:\n" +"\n" +" a carácter con nome\n" +" c carácter ASCII ou escapado\n" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" +" d[TAMAÑO] decimal con signo, TAMAÑO bytes por enteiro\n" +" f[TAMAÑO] punto flotante, TAMAÑO bytes por enteiro\n" +" o[TAMAÑO] octal, TAMAÑO bytes por enteiro\n" +" u[TAMAÑO] decimal sen signo, TAMAÑO bytes por enteiro\n" +" x[TAMAÑO] hexadecimal, TAMAÑO bytes por enteiro\n" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" +"\n" +"TAMAÑO é un número. Para cada TIPO de doux, TAMAÑO tamén pode ser C\n" +"para sizeof(char), S para sizeof(short), I para sizeof(int) ou L para\n" +"sizeof(long). Se TIPO é f, TAMAÑO tamén pode ser F para sizeof(float),\n" +"D para sizeof(double) ou L para sizeof(long double).\n" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" +"\n" +"BASE é d para decimal, o para octal, x para hexadecimao ou n para ningunha.\n" +"BYTES é hexadecimal cun prefixo 0x ou 0X; multiplícase por 512 cun sufixo\n" +"b, por 1024 con k e por 1048576 con m. Ao engadir un sufixo z a calquera\n" +"tipo engádese unha mostra de caracteres imprimibles á final de cada liña\n" +"de saída. " + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" +"--string sen un número implica 3. --width sen un número implica 32.\n" +"Por defecto, od emprega -A o -t d2 -w 16.\n" + +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "cadea de tipo incorrecta \"%s\"" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" +"cadea de tipo incorrecta \"%s\";\n" +"este sistema non proporciona un tipo integral de %lu bytes" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" +"cadea de tipo incorrecta \"%s\";\n" +"este sistema non proporciona un tipo de punto flotante de %lu bytes" + +#: src/od.c:917 +#, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "carácter \"%c\" incorrecto na cadea de tipo \"%s\"" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "non se pode saltar máis aló do final da entrada combinada" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "desprazamento ao estilo antigo" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "" +"base de direccións de saída \"%c\" incorrecta; debe ser un carácter de [doxn]" + +#: src/od.c:1717 +msgid "skip argument" +msgstr "argumento de salto" + +#: src/od.c:1725 +msgid "limit argument" +msgstr "argumento de límite" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "lonxitude mínima da cadea" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "%s é grande de máis" + +#: src/od.c:1804 +msgid "width specification" +msgstr "especificación do ancho" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "non se pode especificar un tipo ao volcar cadeas" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "segundo operando no modo de compatibilidade \"%s\" incorrecto" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "" +"no modo de compatibilidade, os últimos 2 argumentos deben ser desprazamentos" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "o modo de compatibilidade soporta 3 argumentos como moito" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "aviso: ancho %lu incorrecto; usando %d na súa vez" + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "%d: fmt=\"%s\" ancho=%d\n" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "David M. Ihnat e David MacKenzi" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "a entrada estándar está pechada" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Escribi-las liñas que consisten nas liñas correspondentes secuenciamente de\n" +"cada FICHEIRO, separadas por tabulacións, na saída estándar.\n" +"Sen un FICHEIRO, ou cando o FICHEIRO é -, lese da entrada estándar.\n" +"\n" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" +" -d, --delimiters=LISTA utilizar carácters da LISTA no canto de " +"tabulacións\n" +" -s, --serial pegar un ficheiro de cada vez no canto de en " +"paralelo\n" + +#: src/pathchk.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "Uso: %s [OPCIÓN]... [FICHEIRO]...\n" + +#: src/pathchk.c:147 +#, fuzzy +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" +"Diagnosticar construccións non portables en NOME.\n" +"\n" +" -p, --portability comprobar para tódolos sistemas POSIX, non só este\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" + +#: src/pathchk.c:237 +#, fuzzy, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "o tamaño da tabulación contén un carácter incorrecto" + +#: src/pathchk.c:257 +#, fuzzy, c-format +msgid "`%s' is not a directory" +msgstr "%s existe pero non é un directorio" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "o directorio `%s' é inaccesible" + +#: src/pathchk.c:355 +#, fuzzy, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "o nome `%s' ten unha lonxitude de %d; excede o límite de %d" + +#: src/pathchk.c:381 +#, fuzzy, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "a rota `%s' ten unha lonxitude de %d; excede o límite de %d" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "Nome de usuario: " + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "Na vida real: " + +#: src/pinky.c:298 +msgid "???\n" +msgstr "???\n" + +#: src/pinky.c:318 +#, fuzzy +msgid "Directory: " +msgstr "directorio" + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "Shell: " + +#: src/pinky.c:341 +msgid "Project: " +msgstr "Proxecto: " + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "Plan:\n" + +#: src/pinky.c:386 +msgid "Login" +msgstr "Login" + +#: src/pinky.c:388 +#, fuzzy +msgid "Name" +msgstr " Nome" + +#: src/pinky.c:389 +#, fuzzy +msgid " TTY" +msgstr "TTY" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "Inactivo" + +#: src/pinky.c:392 +msgid "When" +msgstr "Cando" + +#: src/pinky.c:395 +msgid "Where" +msgstr "Onde" + +#: src/pinky.c:469 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "Uso: %s [OPCIÓN]... [FICHEIRO]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" + +#: src/pinky.c:574 +#, fuzzy +msgid "no username specified; at least one must be specified when using -l" +msgstr "non se pode especificar ficheiros cando se usa --string" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "Pete TerMaat e Roland Huebner" + +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "\"--pages\" rango de números de páxina incorrecto: \"%s\"" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "\"--pages\" número de páxina inicial incorrecto: \"%s\"" + +#: src/pr.c:829 +#, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "\"--pages\" número de páxina final incorrecto: \"%s\"" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "" +"\"--pages\" o número de páxina inicial é maior có número de páxina final" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "\"--pages=PRIMEIRA_PÁXINA[:ÚLTIMA_PÁXINA]\" falta un argumento" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "\"--columns=COLUMNA\" número de columnas incorrecto: \"%s\"" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "\"-l LONXITUDE\" número de liñas incorrecto: \"%s\"" + +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "\"-N NÚMERO\" número de liña inicial incorrecto: \"%s\"" + +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "\"-o MARXE\" desprazamento de liña incorrecto: \"%s\"" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "\"-w ANCHO_PAXINA\" número de caracteres incorrecto: \"%s\"" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "\"-W ANCHO_PAXINA\" número de caracteres incorrecto: \"%s\"" + +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "%e %b %Y %H:%M" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "Non se pode especifica-lo número de columnas ao imprimir en paralelo." + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "Non se pode especifica-la impresión a través e en paralelo á vez." + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "\"-%c\" caracteres extra ou número non válido no argumento: \"%s\"" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "páxina demasiado estreita" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "o número de páxina inicial é maior có número total de páxinas: \"%d\"" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "Páxina %d" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" +"Paxinar ou encolumna-lo(s) FICHEIRO(s) para imprimir.\n" +"\n" + +#: src/pr.c:2766 +#, fuzzy +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" +" +PRIMEIRA[:DERRADEIRA], --pages=PRIMEIRA[:DERRADEIRA]\n" +" comezar [parar] a impresión na páxina PRIMEIRA " +"[DERRADEIRA]\n" +" -COLUMNA, --columns=COLUMNA\n" +" producir unha saída en varias COLUMNAS, e imprimi-las\n" +" columnas, agás se se emprega -a. Balancea-lo número de\n" +" liñas nas columnas de cada páxina.\n" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" +" -a, --across separar en filas horizontais no canto de en columnas\n" +" verticais; emprégase con -COLUMNA\n" +" -c, --show-control-chars\n" +" emprega-la notación do circunflexo (^G) e da barra " +"octal\n" +" -d, --double-space\n" +" amosa-la saída a doble espacio\n" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" +" -D, --date-format=FORMATO\n" +" emprega-lo FORMATO para a data da cabeceira\n" +" -e[CAR[ANCHO]], --expand-tabs[=CAR[ANCHO]]\n" +" expandi-los CARacteres de entrada (tabulacións) ao\n" +" ANCHO de tabulación (8)\n" +" -F, -f, --form-feed\n" +" empregar saltos de páxina no canto de saltos de liña " +"para\n" +" separa-las páxinas (cunha cabeceira de páxina de tres\n" +" liñas con -F ou unha cabeceira e pé de 5 liñas sen -" +"F)\n" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" +" -h CABECEIRA, --header=CABECEIRA\n" +" empregar unha CABECEIRA centrada no canto do nome do\n" +" ficheiro na cabeceira da páxina. -h \"\" amosa unha " +"liña\n" +" e branco; non empregue -h\"\"\n" +" -i[CAR[ANCHO]], -output-tabs[=CAR[ANCHO]]\n" +" cambia-los CARacteres (tabulacións) por espacios ata o\n" +" ANCHO das tabulacións (8)\n" +" -J, --join-lines mesturar liñas completas; desactiva o truncamento de " +"liñas\n" +" de -W, sen aliñamento de columnas, --sep-string[=CADEA\n" +" estabrece os separadores\n" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" +" -l LONXITUDE, --length=LONXITUDE\n" +" estabrece-la lonxitude das páxinas a LONXITUDE (66) " +"liñas\n" +" (o número de liñas de texto por defecto é 56, e con -F " +"63)\n" +" -m, --merge amosar tódolos ficheiros en paralelo, un en cada " +"columna,\n" +" trunca-las liñas, pero uni-las liñas de lonxitude\n" +" completa con -J\n" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" +" -n[SEP[CIFRAS]], --number-lines[=SEP[CIFRAS]]\n" +" numera-las liñas, empregando CIFRAS (5) cifras, e " +"despois\n" +" un SEParador (tabulación); a conta comeza por defecto " +"na\n" +" primeira liña do ficheiro de entrada\n" +" -N NÚMERO, --first-line-number=NÚMERO\n" +" comezar a contar no NÚMERO na primeira liña da primeira\n" +" páxina imprimida (vexa +PRIMEIRA)\n" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" +" -o MARXE, --indent=MARXE\n" +" desprazar cada liña con MARXE (cero) espacios; non ten\n" +" efecto sobre -w ou -W, MARXE hase engadir a ANCHO\n" +" -r, --no-file-warnings\n" +" omiti-lo aviso cando non se pode abrir un ficheiro\n" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" +" -s[CAR], --separator[=CAR]\n" +" separa-las columnas cun só carácter; o valor por " +"defecto\n" +" de CAR é a tabulación sen -w e \"ningún\" con -w\n" +" -s[CAR] desactiva o truncamento das liñas en tódalas\n" +" opcións de tres columnas (-COLUMNA|-a -COLUMNA|-m) agás\n" +" se -w está estabrecido\n" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr " -SCADEA, --sep-string[=CADEA]\n" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" +" separa-las columnas coa CADEA,\n" +" sen -S: Separador por defecto (tabulación) con -J e\n" +" noutro caso (igual que -S\" \"), sen efecto " +"nas\n" +" opcións de columnas\n" +" -t, --omit-header omiti-las cabeceiras e pés de páxina\n" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" +" -T, --omit-pagination\n" +" omiti-las cabeceiras e pés de páxina, e elimina-las\n" +" paxinacións estabrecidas mediante saltos de páxina nos\n" +" ficheiros de entrada\n" +" -v, --show-nonprinting\n" +" emprega-la notación de barra octal\n" +" -w, ANCHO, --width=ANCHO\n" +" estabrece-lo ancho da páxina a ANCHO (72) caracteres só\n" +" para o formato de saída de varias solumnas de texto,\n" +" -s[car] desactívao (72)\n" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" +" -W ANCHO, --page-width=ANCHO\n" +" estabrecer sempre o ancho da páxina a ANCHO (72)\n" +" caracteres, trunca-las liñas, agás cando a opción -J " +"estea\n" +" estabrecida; non interfire con -S ou -s\n" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" +"\n" +"-T vai incluído en -l nn cando nn <= 10 ou <= 3 con -F. Sen un FICHEIRO, ou\n" +"cando o FICHEIRO é -, lese da entrada estándar.\n" + +#: src/printenv.c:43 +#, fuzzy +msgid "David MacKenzie and Richard Mlynarik" +msgstr "David Ihnat, David MacKenzie e Jim Meyering" + +#: src/printenv.c:63 +#, fuzzy, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" +"Uso: %s [VARIABLE]...\n" +" ou: %s OPCIÓN\n" +"Se non se indica ningunha VARIABLE de ambiente, escribir todas elas.\n" +"\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "" +"aviso: %s: os caracteres que seguen á constante de carácter foron ignorados" + +#: src/printf.c:100 +#, fuzzy, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s [FICHEIRO]...\n" +" ou: %s [OPCIÓN]\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "%s: agardábase un valor numérico" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "%s: valor non convertido por completo" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "falta un número hexadecimal na secuencia de escape" + +#: src/printf.c:292 +#, fuzzy, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "clase de caracteres \"%s\" incorrecta" + +#: src/printf.c:472 +#, fuzzy, c-format +msgid "invalid field width: %s" +msgstr "anchura non válida: \"%s\"" + +#: src/printf.c:498 +#, fuzzy, c-format +msgid "invalid precision: %s" +msgstr "opción de anchura non válida: \"%s\"" + +#: src/printf.c:519 +#, fuzzy, c-format +msgid "%%%c: invalid directive" +msgstr "%s: patrón incorrecto" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "Uso: %s formato [argumento...]\n" + +#: src/printf.c:594 +#, fuzzy, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "aviso: os argumentos de máis foron ignorados" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "%s (para a expresión regular \"%s\")" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"Uso: %s [OPCIÓN]... [ENTRADA]... (sen -G)\n" +" ou: %s -G [OPCIÓN] [ENTRADA [SAÍDA]]\n" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" +"Amosar un índice permutado, incluíndo o contexto, das palabras dos ficheiros " +"de entrada.\n" +"\n" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" +" -A, --auto-reference amosa-las referencias xeradas " +"automaticamente\n" +" -C, --copyright amosa-lo Copyright e as condicións de copia\n" +" -G, --traditional funcionar coma o \"ptx\" de System V\n" +" -F, --flag-truncation=CADEA emprega-la CADEA para marca-las liñas " +"truncadas\n" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" +" -M, --macro-name=CADEA nome de macro a empregar no canto de \"xx" +"\"\n" +" -O, --format=roff xera-la saída coma directivas roff\n" +" -R, --right-side-refs pór referencias á dereita, sen contalas en -" +"w\n" +" -S, --sentence-regexp=EXPREG para a fin de liña ou fin de oración\n" +" -T, --format=tex xera-la saída coma directivas TeX\n" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" +" -W, --word-regexp=EXPREG emprega-la EXPREG para compara-las claves\n" +" -b, --break-file=FICHEIRO caracteres que parten palabras neste " +"FICHEIRO\n" +" -f, --ignore-case converte-las minúsculas a maiúsculas\n" +" para ordear\n" +" -g, --gap-size=NÚMERO tamaño do oco entre campos de saída\n" +" -i, --ignore-file=FICHEIRO le-la lista de palabras ignoradas do " +"FICHEIRO\n" +" -o, --only-file=FICHEIRO le-la lista de palabras únicas do FICHEIRO\n" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" +" -r, --references o primeiro campo de cada liña é unha\n" +" referencia\n" +" -t, --typeset-mode - sen implementar -\n" +" -w, --width=NÚMERO ancho da saída, excluíndo referencias\n" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" +"\n" +"Sen un FICHEIRO, ou se o FICHEIRO é -, lese da entrada estándar.\n" +"\"-F /\" por defecto.\n" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" +"Este programa é software libre; pode redistribuílo e/ou modificalo baixo\n" +"os termos da Licencia Pública Xeral de GNU tal como a publicou a Free\n" +"Software Foundation; xa ben a versión 2 ou (á súa elección) calquera\n" +"versión posterior.\n" +"\n" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" +"Este programa distribúese coa intención de que sexa útil, pero\n" +"sen NINGUNHA GARANTÍA; nin sequera a garantía implícita de\n" +"COMERCIABILIDADE ou VALIDEZA PARA UN FIN PARTICULAR. Vexa a Licencia\n" +"Pública Xeral de GNU para máis detalles.\n" +"\n" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" +"Debería ter recibido unha copia da Licencia Pública Xeral con este\n" +"programa; se non, escriba á Free Software Foundation, Inc.,\n" +"59 Temple Place - Suite 330, Boston, MA 02111-1307, EE.UU.\n" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" + +#: src/pwd.c:74 +#, fuzzy +msgid "ignoring non-option arguments" +msgstr "demasiados argumentos" + +#: src/pwd.c:78 +#, fuzzy +msgid "cannot get current directory" +msgstr "non se pode crea-lo directorio %s" + +#: src/readlink.c:69 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "Uso: %s [OPCIÓN]... [FICHEIRO]...\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" + +#: src/remove.c:394 +#, fuzzy, c-format +msgid "cannot chdir from %s to .." +msgstr "non se pode cambiar ao directorio %s" + +#: src/remove.c:407 src/remove.c:488 +#, fuzzy, c-format +msgid "cannot lstat `.' in %s" +msgstr "non se pode executar %s" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, fuzzy, c-format +msgid "cannot lstat %s" +msgstr "non se poden cambia-los permisos de `%s'" + +#: src/remove.c:603 +#, fuzzy, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "non se pode crea-lo directorio %s" + +#: src/remove.c:604 +#, fuzzy, c-format +msgid "%s: descend into directory %s? " +msgstr "non se pode cambiar ao directorio %s" + +#: src/remove.c:614 +#, fuzzy, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: ¿borra-lo ficheiro protexido contra escritura %s? " + +#: src/remove.c:615 +#, fuzzy, c-format +msgid "%s: remove %s %s? " +msgstr "%s: ¿borrar %s? " + +#: src/remove.c:639 +#, fuzzy, c-format +msgid "removed %s\n" +msgstr "borrando %s\n" + +#: src/remove.c:654 src/remove.c:1059 +#, fuzzy, c-format +msgid "removed directory: %s\n" +msgstr "non se pode crea-lo directorio %s" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, fuzzy, c-format +msgid "cannot remove directory %s" +msgstr "non se pode crea-lo directorio %s" + +#: src/remove.c:815 +#, fuzzy, c-format +msgid "cannot open directory %s" +msgstr "non se pode crea-lo directorio %s" + +#: src/remove.c:896 src/remove.c:1002 +#, fuzzy, c-format +msgid "cannot chdir from %s to %s" +msgstr "non se pode cambiar ao directorio %s" + +#: src/remove.c:904 +#, fuzzy, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +"AVISO: Estructura circular de directorios.\n" +"Con probabilidad isto quere dicir que o sistema de ficheiros está " +"corrompido.\n" +"INFÓRMEO AO SEU ADMINISTRADOR DE SISTEMA\n" +"Os dous seguintes directorios teñen o mesmo número de inodo:\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "non se pode borrar `.' nin `..'" + +#: src/rm.c:60 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie e Jim Meyering" + +#: src/rm.c:99 src/touch.c:244 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "Uso: %s [OPCIÓN]... [FICHEIRO]...\n" + +#: src/rm.c:100 +#, fuzzy +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Borra (desliga) o(s) FICHEIRO(s).\n" +"\n" +" -d, --directory desligar directorio, aínda que non estea baleiro\n" +" (só super usuario)\n" +" -f, --force ignora-los ficheiros que non existan, non preguntar\n" +" -i, --interactive preguntar antes de borrar\n" +" -r, -R, --recursive borra-los contidos dos directorios recursivamente\n" +" -v, --verbose explica-lo que está a se facer\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" +"\n" +"Para borrar un ficheiro que empeza con `-', por exemplo `-foo',\n" +"use un destes comandos:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +"\n" +"Advirta que se utiliza rm para borrar un ficheiro, normalmente é posible\n" +"recupera-los contidos dese ficheiro. Se quere ter máis seguridade de que\n" +"o contido é realmente irrecuperable, considere utilizar o shred.\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, fuzzy, c-format +msgid "removing directory, %s" +msgstr "non se pode crea-lo directorio %s" + +#: src/rmdir.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "Uso: %s [OPCIÓN]... [FICHEIRO]...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" + +#: src/rmdir.c:154 +#, fuzzy +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +"Borra o(s) DIRECTORIO(s), se están baleiros.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignora-los erros producidos soamente porque o directorio\n" +" non está baleiro\n" +" -p, --parents borra-lo directorio, e entón tentar borrar tódolos\n" +" directorios compoñentes do seu camiño. P.ex,\n" +" `rmdir -p a/b/c' é similar a `rmdir a/b/c a/b a'\n" +" -v, --verbose amosar unha mensaxe por cada directorio procesado\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información e saír\n" + +#: src/seq.c:82 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"Uso: %s [OPCIÓN]... [ENTRADA]... (sen -G)\n" +" ou: %s -G [OPCIÓN] [ENTRADA [SAÍDA]]\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" + +#: src/seq.c:96 +#, fuzzy, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" +"Escribi-los números dende PRIMEIRO a ÚLTIMO, en incrementos de INCREMENTO.\n" +"\n" +" -f, --format FORMATO usar un FORMATO de estilo printf(3) (defecto: %%" +"g)\n" +" -s, --separator CADEA usar CADEA para separa-los números (defecto: " +"\\n)\n" +" -w, --equal-width iguala-la anchura recheando con ceros ó comezo\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" +"\n" +"Se non se indican PRIMEIRO ou INCREMENTO, por defecto son 1.\n" +"PRIMEIRO, INCREMENTO e ÚLTIMO interprétanse coma valores de coma frotante.\n" +"INCREMENTO ten que ser positivo se PRIMEIRO é máis pequeno que ÚLTIMO, e\n" +"negativo doutro xeito. Se se indica, o argumento de FORMATO ten que conter\n" +"só un dos formatos de coma frotante de estilo printf %%e, %%f, %%g.\n" + +#: src/seq.c:119 +#, fuzzy, c-format +msgid "invalid floating point argument: %s" +msgstr "número de liña inicial incorrecto: \"%s\"" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" +"cando o valor de comezo e máis grande que o límite,\n" +"o incremento ten que ser negativo" + +#: src/seq.c:213 +#, fuzzy +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "o argumento número do campo inicial da opción `-k' debe ser positivo" + +#: src/seq.c:423 +#, fuzzy, c-format +msgid "invalid format string: `%s'" +msgstr "cadea de tipo incorrecta \"%s\"" + +#: src/seq.c:445 +#, fuzzy +msgid "format string may not be specified when printing equal width strings" +msgstr "non se pode especificar un tipo ao volcar cadeas" + +#: src/shred.c:160 +#, fuzzy, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "Uso: %s [OPCIÓN] [FICHEIRO]...\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" + +#: src/shred.c:174 +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" + +#: src/shred.c:808 +#, fuzzy, c-format +msgid "%s: cannot rewind" +msgstr "non se pode executar %s" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "%s: pasada %lu/%lu (%s)..." + +#: src/shred.c:868 +#, fuzzy, c-format +msgid "%s: error writing at offset %s" +msgstr "erro escribindo %s" + +#: src/shred.c:897 +#, fuzzy, c-format +msgid "%s: file too large" +msgstr "%s: ficheiro longo de máis" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "%s: pasada %lu/%lu (%s)...%s" + +#: src/shred.c:936 +#, fuzzy, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "%s: pasada %lu/%lu (%s)...%s/%s" + +#: src/shred.c:1195 +#, fuzzy, c-format +msgid "%s: invalid file type" +msgstr "%s: lonxitude do sufixo non válida" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s: o ficheiro ten un tamaño negativo" + +#: src/shred.c:1265 +#, fuzzy, c-format +msgid "%s: error truncating" +msgstr "%s: ficheiro truncado" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "" +"%s: non se pode facer un borrado seguro dun descriptor de ficheiro\n" +"de tipo só-engadir" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "%s: borrando" + +#: src/shred.c:1412 +#, fuzzy, c-format +msgid "%s: renamed to %s" +msgstr "%s: erro de lectura" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s: borrado" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "%s: non se pode borrar" + +#: src/shred.c:1551 +#, fuzzy, c-format +msgid "%s: invalid number of passes" +msgstr "%s: número de segundos incorrecto" + +#: src/shred.c:1568 +#, fuzzy, c-format +msgid "%s: invalid file size" +msgstr "%s: lonxitude do sufixo non válida" + +#: src/sleep.c:34 +#, fuzzy +msgid "Jim Meyering and Paul Eggert" +msgstr "Mike Haertel e Paul Eggert" + +#: src/sleep.c:52 +#, fuzzy, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" +"Uso: %s NÚMERO[SUFIXO]...\n" +" ou: %s OPCIÓN\n" +"Facer unha pausa de NÚMERO segundos. SUFIXO pode ser `s' para segundos, " +"`m'\n" +"para minutos, `h' para horas ou `d' para días. Ó contrario que a maioría " +"das\n" +"implementacións, que requiren que NÚMERO sexa un enteiro, aquí NÚMERO pode " +"ser\n" +"calquera número de coma frotante.\n" +"\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" + +#: src/sleep.c:155 +#, fuzzy, c-format +msgid "invalid time interval `%s'" +msgstr "número de campo incorrecto: \"%s\"" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "non se pode le-lo reloxo coa hora real" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "Mike Haertel e Paul Eggert" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" +"Escribi-la concatenación ordeada de tódolos FICHEIRO(s) na saída estándar.\n" +"\n" +"Opcións de ordeamento:\n" +"\n" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" +" -b, --ignore-leading-blanks ignora-los espacios en branco iniciais\n" +" -d, --dictionary-order considerar só espacios e caracteres " +"alfanuméricos\n" +" -f, --ignore-case ignora-las maiúsculas e minúsculas\n" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" +" -g, --general-numeric-sort comparar de acordo ao valor numérico xeral\n" +" -i, --ignore-nonprinting considerar só os caracteres imprimibles\n" +" -M, --month-sort comparar (descoñecido) < \"XAN\" < ... < \"DEC" +"\"\n" +" -n, --numeric-sort comarar de acordo ao valor numérico da cadea\n" +" -r, --reverse inverti-lo resultado das comparacións\n" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" +"Outras opcións:\n" +"\n" +" -c, --check comprobar se a entrada está ordeada e non " +"ordear\n" +" -k, --key=POS1[,POS2] comezo da clave en POS1 e remate en POS2\n" +" -m, --merge mesturar ficheiros xa ordeados e non ordear\n" +" -o, --output=FICHEIRO grava-lo resultado no FICHEIRO\n" +" -s, --stable estabiliza-la ordeación eliminando a " +"comparación\n" +" de derradeiro recurso\n" +" -S, --buffer-size=TAMAÑO empregar un buffer de memoria deste TAMAÑO\n" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" +" -t, --field-separator=SEP emprega-lo SEParador no canto de espacios en " +"branco\n" +" -T, --temporary-directory=DIR emprega-lo DIRectorio para ficheiros " +"temporais,\n" +" non $TMPDIR ou %s\n" +" -u, --unique con -c: comprobar se a ordeación é estricta\n" +" noutro caso: amosar só o primeiro dun grupo\n" +" de elementos iguais\n" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" +" -z, --zero-terminated remata-las liñas cun byte 0, non un\n" +" salto de liña\n" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" +"\n" +"POS é F[.C][OPCS], onde F é o número do campo e C a posición do carácter\n" +"no campo. OPCS está composto de unha ou varias opcións de ordenación dunha\n" +"soa letra, que desactivan as opcións globais desa clave. Se non se dá unha\n" +"clave, úsase toda a liña coma a clave.\n" +"\n" +"TAMAÑO pode estar seguido polos seguintes sufixos multiplicativos:\n" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" +"% 1% de memoria, b 1, K 1024 (por defecto), e así para M, G, T, P, E, Z e " +"Y.\n" +"\n" +"Sen un FICHEIRO ou cando o FICHEIRO é -, lese da entrada estándar.\n" +"\n" +"*** AVISO ***\n" +"O locale especificado nas variables de ambiente afecta á orde.\n" +"Estabreza LC_ALL=C para obte-la orde tradicional que emprega\n" +"valores de byte nativos.\n" + +#: src/sort.c:444 +msgid "cannot create temporary file" +msgstr "non se pode crea-lo ficheiro temporal" + +#: src/sort.c:467 +msgid "open failed" +msgstr "a apertura fallou" + +#: src/sort.c:487 src/sort.c:2496 +msgid "close failed" +msgstr "o peche fallou" + +#: src/sort.c:495 +msgid "write failed" +msgstr "erro de escritura" + +#: src/sort.c:641 +msgid "sort size" +msgstr "tamaño de ordeación" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "a obtención de datos do ficheiro fallou" + +#: src/sort.c:972 +msgid "read failed" +msgstr "erro de lectura" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "%s: %s:%s: desorde: " + +#: src/sort.c:1574 +msgid "standard error" +msgstr "erro estándar" + +#: src/sort.c:2032 +#, c-format +msgid "%s: invalid field specification `%s'" +msgstr "%s: especificación de campo incorrecta \"%s\"" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "%s: conta \"%.*s\" grande de máis" + +#: src/sort.c:2064 +#, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "%s: conta non válida ao principio de \"%s\"" + +#: src/sort.c:2298 +msgid "invalid number after `-'" +msgstr "número non válido despois de \"-\"" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +msgid "invalid number after `.'" +msgstr "número non válido despois de \".\"" + +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "carácter de sobras na especificación do campo" + +#: src/sort.c:2338 +msgid "invalid number at field start" +msgstr "número non válido ao comezo do campo" + +#: src/sort.c:2342 src/sort.c:2370 +msgid "field number is zero" +msgstr "o número do campo é cero" + +#: src/sort.c:2351 +msgid "character offset is zero" +msgstr "o desprazamento do carácter é cero" + +#: src/sort.c:2366 +msgid "invalid number after `,'" +msgstr "número non válido despois de \",\"" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "tabulación multi-carácter \"%s\"" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "operando \"%s\" extra non admitido despois de -c" + +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "Uso: %s [OPCIÓN] [ENTRADA [PREFIXO]]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" +"Gravar anacos de ENTRADA de tamaño fixo en PREFIXOaa, PREFIXOab, ...; o " +"PREFIXO\n" +"por defecto é \"x\". Sen ENTRADA, ou se a ENTRADA é -, lese da entrada " +"estándar.\n" +"\n" + +#: src/split.c:108 +#, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" +" -a, --suffix-length=N empregar sufixos de lonxitude N (%d por defecto)\n" +" -b, --byte=TAMAÑO pór TAMAÑO bytes en cada ficheiro de saída\n" +" -C, --line-bytes=TAMAÑO pór como moito TAMAÑO bytes de liñas por ficheiro\n" +" de saída\n" +" -l, --lines=NÚMERO pór NÚMERO liñas por ficheiro de saída\n" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" +" --verbose amosar un diagnóstico no erro estándar antes de\n" +" abrir cada ficheiro de saída\n" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "Esgotáronse os sufixos de ficheiros de saída" + +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "creando ficheiro \"%s\"\n" + +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "non se pode partir en máis dun xeito" + +#: src/split.c:394 +#, c-format +msgid "%s: invalid suffix length" +msgstr "%s: lonxitude do sufixo non válida" + +#: src/split.c:408 src/split.c:434 +#, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: número de bytes incorrecto" + +#: src/split.c:421 +#, c-format +msgid "%s: invalid number of lines" +msgstr "%s: número de liñas incorrecto" + +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "a opción \"-%d\" é obsoleta; empregue \"-l %d\"" + +#: src/split.c:483 +msgid "invalid number" +msgstr "número incorrecto" + +#: src/stat.c:326 +#, fuzzy +msgid "*** invalid date/time ***" +msgstr "anchura non válida: \"%s\"" + +#: src/stat.c:608 +#, fuzzy, c-format +msgid "cannot read file system information for %s" +msgstr "non se pode move-lo punteiro do ficheiro de %s" + +#: src/stat.c:684 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "Uso: %s [OPCIÓN] [FICHEIRO]...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" +"Uso: %s [-F DISPOSITIVO] [--file=DISPOSITIVO] [PARÁMETRO]...\n" +" ou: %s [-F DISPOSITIVO] [--file=DISPOSITIVO] [-a|--all]\n" +" ou: %s [-F DISPOSITIVO] [--file=DISPOSITIVO] [-g|--save]\n" + +#: src/stty.c:504 +#, fuzzy +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" +"Escribir ou cambia-las características do terminal.\n" +"\n" +" -a, --all escribir tódolos parámetros actuais dun xeito lexible\n" +" para humanos\n" +" -g, --save escribir tódolos parámetros actuais dun xeito lexible\n" +" para o stty\n" +" -F, --file=DISPOSITIVO abrir e usa-lo DISPOSITIVO indicado en vez da\n" +" entrada estándar\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" +"\n" +"Un - opcional diante de PARÁMETRO indica negación. Un * marca os " +"parámetros\n" +"non POSIX. O sistema presente define os parámetros que están dispoñibles.\n" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" + +#: src/stty.c:570 +#, fuzzy +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" +"\n" +"Parámetros de control:\n" +" [-]clocal desactiva-los sinais de control do módem\n" +" [-]cread permitir que se reciba entrada\n" +"* [-]crtscts activar negociación RTS/CTS\n" +" csN establece-lo tamaño do carácter a N bits, con N entre " +"[5..8]\n" +" [-]cstopb usar dous bits de parada por carácter (un con `-')\n" +" [-]hup enviar un sinal de colgar cando o último proceso pecha o " +"tty\n" +" [-]hupcl o mesmo que [-]hup\n" +" [-]parenb xerar un bit de paridade na saída e agardar un bit de " +"paridade\n" +" na entrada\n" +" [-]parodd establecer paridade impar (mesmo con `-')\n" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:608 +#, fuzzy +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" +"\n" +"Parámetros da saída:\n" +"* bsN estilo de retardo do carácter de borrado, N entre [0..1]\n" +"* crN estilo de retardo do retorno de carro, N entre [0..3]\n" +"* ffN estilo de retardo do salto de páxina, N entre [0..1]\n" +"* nlN estilo de retardo do carácter de nova liña, N entre [0..1]\n" +"* [-]ocrnl converter retornos de carro en nova liña\n" +"* [-]ofdel usar caracteres de borrado para rechear, en vez de " +"caracteres\n" +" nulos\n" +"* [-]ofill usar caracteres de recheo en vez de tempos de retardo\n" +"* [-]olcuc converter caracteres minúsculos a maiúsculos\n" +"* [-]onlcr converter unha nova liña a retorno de carro + nova liña\n" +"* [-]onlret o carácter de nova liña fai un retorno de carro\n" +"* [-]onocr non escribi-los retornos de carro na primeira columna\n" +" [-]opost pos-procesar a saída\n" +"* tabN estilo de retardo da tabulación horizontal, N entre [0..3]\n" +"* tabs o mesmo que tab0\n" +"* -tabs o mesmo que tab3\n" +"* vtN estilo de retardo da tabulación vertical, N entre [0..1]\n" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" +"\n" +"Manexar a liña tty conectada á entrada estándar. Sen argumentos,\n" +"escribi-la tasa de baudios, a disciplina da liña, e as desviacións respecto\n" +"a stty sane. Nos parámetros, CARAC tómase literalmente, ou codificado\n" +"coma en ^c, 0x37, 0177 ou 127; os valores especiais ^- ou undef úsanse para\n" +"desactiva-los caracteres especiais.\n" + +#: src/stty.c:787 +#, fuzzy +msgid "only one device may be specified" +msgstr "só se pode especificar un argumento" + +#: src/stty.c:882 +#, fuzzy +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "as opcións --string e --check son mutuamente exclusivas" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "cando se indica un estilo de saída, non se poden establecer modos" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "%s: non se pode restablece-lo modo de non bloqueo" + +#: src/stty.c:957 src/stty.c:1064 +#, fuzzy, c-format +msgid "invalid argument `%s'" +msgstr "argumento incorrecto %s para %s" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, fuzzy, c-format +msgid "missing argument to `%s'" +msgstr "argumento %s ambiguo para %s" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "%s: non se poden facer tódalas operacións pedidas" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "new_mode: modo\n" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "%s: non hai información de tamaño para este dispositivo" + +#: src/stty.c:1944 +#, fuzzy, c-format +msgid "invalid integer argument `%s'" +msgstr "incremento de números de liña incorrecto: \"%s\"" + +#: src/su.c:289 +msgid "Password:" +msgstr "Contrasinal:" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "getpass: non se pode abrir /dev/tty" + +#: src/su.c:350 +#, fuzzy +msgid "cannot set groups" +msgstr "non se poden omiti-lo usuario e o grupo" + +#: src/su.c:354 +#, fuzzy +msgid "cannot set group id" +msgstr "non se poden omiti-lo usuario e o grupo" + +#: src/su.c:356 +#, fuzzy +msgid "cannot set user id" +msgstr "non se poden omiti-lo usuario e o grupo" + +#: src/su.c:437 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "Uso: %s [OPCIÓN]... [FICHEIRO]...\n" + +#: src/su.c:438 +#, fuzzy +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" +"Cambia-lo identificador efectivo de usuario e grupo ós de USUARIO.\n" +"\n" +" -, -l, --login facer que a shell sexa de login\n" +" -c, --command=COMANDO enviar un só COMANDO á shell con -c\n" +" -f, --fast enviar a opción -f á shell (para csh ou " +"tcsh)\n" +" -m, --preserve-environment non esquece-las variables de ambiente\n" +" -p o mesmo que -m\n" +" -s, --shell=SHELL executar SHELL se /etc/shells o permite\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "o usuario %s non existe" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "contrasinal incorrecto" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "usando shell restrinxida %s" + +#: src/su.c:580 +#, fuzzy, c-format +msgid "warning: cannot change directory to %s" +msgstr "non se pode crea-lo directorio %s" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "Kayvan Aghaiepour e David MacKenzie" + +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" +"Imprimi-la suma de comprobación e o número de bloques de cada FICHEIRO.\n" +"\n" +" -r non usar -s, usa-lo algoritmo de suma de BSD e bloques de " +"1k\n" +" -s, --sysv usa-lo algoritmo de suma System V, usar bloques de 512 " +"bytes\n" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" + +#: src/sync.c:70 src/tty.c:112 +#, fuzzy +msgid "ignoring all arguments" +msgstr "demasiados argumentos" + +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr " --help amosar esta axuda e saír\n" + +#: src/sys2.h:494 +msgid " --version output version information and exit\n" +msgstr " --version amosar información da versión e saír\n" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "Jay Lepreau e David MacKenzie" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Amosar cada FICHEIRO na saída estándar, coa derradeira liña de primeira.\n" +"Sen un FICHEIRO, ou cando o FICHEIRO é -, lese da entrada estándar.\n" + +#: src/tac.c:139 +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" +" -b, --before incluí-lo separador antes e non despois\n" +" -r, --regex interpreta-lo separador como unha expresión " +"regular\n" +" -s, --separator=CADEA usa-la CADEA coma separador na vez de salto de " +"liña\n" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "stdin: erro de lectura" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "o separador non pode estar baleiro" + +#: src/tail.c:49 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie e Jim Meyering" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Amosa-las derradeiras %d liñas de cada FICHEIRO na saída estándar.\n" +"Con máis dun FICHEIRO, antecédese cada un cunha cabeceira que dá o nome do\n" +"ficheiro. Sen un FICHEIRO, ou cando o FICHEIRO é -, lese da entrada " +"estándar.\n" +"\n" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" +" --retry seguir tentando abrir un ficheiro incluso se é\n" +" inaccesible cando tail comeza ou se se volve\n" +" inaccesible despois -- útil só con -f\n" +" -c, --bytes=N amosa-los derradeiros N bytes\n" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" +" -f, --follow[={name|descriptor}]\n" +" amosa-los datos engadidos segundo o ficheiro " +"medre;\n" +" -f, --follow e --follow=descriptor son " +"equivalentes\n" +" -F igual que --follow=name --retry\n" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" +" -n, --lines=N amosa-las derradeiras N liñas, no canto de %d\n" +" --max-unchanged-stats=N\n" +" con --follow-name, reabrir un FICHEIRO que non\n" +" cambiou o tamaño despois de N (%d por defecto)\n" +" iteracións para ver se se borrou ou renomeou\n" +" (é o caso normal de ficheiros de rexistro " +"rotados)\n" + +#: src/tail.c:271 +#, fuzzy +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" +" --pid=PID con -f, rematar trala morte do proceso co PID\n" +" -q, --quiet, --silent non amosa-las cabeceiras cos nomes de ficheiro\n" +" -s, --sleep-interval=S con -f, cada iteración dura S (1) segundos\n" +" -v, --verbose amosar sempre as cabeceiras cos nomes de " +"ficheiro\n" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" +"\n" +"Se o primeiro carácter de N (o número de bytes ou liñas) é un \"+\", " +"comézase\n" +"a amosar no N-ésimo elemento dende o principio de cada ficheiro; noutro " +"caso,\n" +"amos-los N derradeiros elementos do ficheiro. N pode ter un sufixo\n" +"multiplicativo: b para 512, k para 1024, m para 1048576 (1 Mega).\n" +"\n" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" +"Con --follow (-f), tail segue por defecto o descriptor de ficheiro, o que\n" +"significa que incluso se se renomea un ficheiro ao que se lle fai tail, " +"tail\n" +"ha continuar seguindo a súa fin. " + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" +"Este comportamento por defecto non é desexable cando quere\n" +"segui-lo nome do ficheiro, non o descriptor do ficheiro (por exemplo,\n" +"rotación de rexistros). Empregue --follow=name neste caso. Isto fai que " +"tail\n" +"siga o ficheiro nomeado reabríndoo periodicamente para ver se outro " +"programa\n" +"o eliminou e volveu crear.\n" + +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "pechando %s (fd=%d)" + +#: src/tail.c:391 +#, fuzzy, c-format +msgid "%s: cannot seek to offset %s" +msgstr "%s: non se pode desprazar á posición %s%s" + +#: src/tail.c:395 +#, fuzzy, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "%s: non se pode desprazar á posición relativa %s%s" + +#: src/tail.c:400 +#, fuzzy, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "%s: non se pode desprazar á posición relativa á final %s%s" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "\"%s\" volveuse inaccesible" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "" +"\"%s\" foi remprazado cun ficheiro do que non se pode amosa-la fin; " +"abandonando este ficheiro" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "\"%s\" volveuse accesible" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "\"%s\" apareceu; buscando a fin do novo ficheiro" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "\"%s\" foi remprazado; buscando a fin do ficheiro novo" + +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "%s: ficheiro truncado" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "non quedan ficheiros" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "" +"%s: non se pode segui-la fin deste tipo de ficheiro; abandoando este nome" + +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "%c: carácter sufixo incorrecto nunha opción obsoleta" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"demasiados argumentos; cando se usa a sintaxe obsoleta de tail (%s) non " +"pode\n" +"haber máis dun argumento de ficheiro. Empregue as opcións equivalentes -n " +"ou\n" +"-c na súa vez." + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"Aviso: non é portable o uso de dous ou máis argumentos de ficheiro coa\n" +"sintaxe obsoleta de tail (%s). Empregue as opcións equivalentes -n ou -c\n" +"na súa vez." + +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "a opción \"%s\" é obsoleta; empregue \"%s-%c %.*s\"" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "%s é maior có tamaño máximo dos ficheiros neste sistema" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "%s: número máximo de datos non cambiados entre aperturas incorrecto" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "%s: número máximo de cambios de tamaño consecutivos incorrecto" + +#: src/tail.c:1534 +#, c-format +msgid "%s: invalid PID" +msgstr "%s: PID incorrecto" + +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: número de segundos incorrecto" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "aviso: --retry é útil só cando vai seguido por name" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "aviso: PID ignorado; --pid=PID é útil só cando segue" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "aviso: --pid=PID non é soportado neste sistema" + +#: src/tee.c:33 +#, fuzzy +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "Richard Stallman e David MacKenzie" + +#: src/tee.c:64 +#, fuzzy +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" +"Copiar a entrada estándar a cada ficheiro, e tamén á saída estándar.\n" +"\n" +" -a, --append engadir ós FICHEIROs indicados, non " +"sobrescribir\n" +" -i, --ignore-interrupts ignora-los sinais de interrupción\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "agardábase un argumento\n" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "agardábase unha expresión enteira %s\n" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "agardábase ')'\n" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "agardábase ')', atopouse %s\n" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "%s: agardábase un operador unario\n" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "%s: agardábase un operador binario\n" + +#: src/test.c:424 +msgid "before -lt" +msgstr "antes de -lt" + +#: src/test.c:432 +msgid "after -lt" +msgstr "despois de -lt" + +#: src/test.c:446 +msgid "before -le" +msgstr "antes de -le" + +#: src/test.c:453 +msgid "after -le" +msgstr "despois de -le" + +#: src/test.c:469 +msgid "before -gt" +msgstr "antes de -gt" + +#: src/test.c:476 +msgid "after -gt" +msgstr "despois de -gt" + +#: src/test.c:490 +msgid "before -ge" +msgstr "antes de -ge" + +#: src/test.c:497 +msgid "after -ge" +msgstr "despois de -ge" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "-nt non acepta -l\n" + +#: src/test.c:526 +msgid "before -ne" +msgstr "antes de -ne" + +#: src/test.c:533 +msgid "after -ne" +msgstr "despois de -ne" + +#: src/test.c:549 +msgid "before -eq" +msgstr "antes de -eq" + +#: src/test.c:556 +msgid "after -eq" +msgstr "despois de -eq" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "-ef non acepta -l\n" + +#: src/test.c:586 +#, fuzzy +msgid "-ot does not accept -l\n" +msgstr "-nt non acepta -l\n" + +#: src/test.c:593 +#, fuzzy +msgid "unknown binary operator" +msgstr "Erro do sistema descoñecido" + +#: src/test.c:781 +msgid "after -t" +msgstr "despois de -t" + +#: src/test.c:979 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s [FICHEIRO]...\n" +" ou: %s [OPCIÓN]\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" + +#: src/test.c:1009 +#, fuzzy +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" +"\n" +" ( EXPRESIÓN ) a EXPRESIÓN é certa\n" +" ! EXPRESIÓN a EXPRESIÓN é falsa\n" +" EXPRESIÓN1 -a EXPRESIÓN2 a EXPRESIÓN1 e a EXPRESIÓN2 son certas\n" +" EXPRESIÓN1 -o EXPRESIÓN2 a EXPRESIÓN1 ou a EXPRESIÓN2 é certa\n" +"\n" +" [-n] CADEA a lonxitude da CADEA é distinta de cero\n" +" -z CADEA a lonxitude da CADEA é cero\n" +" CADEA1 = CADEA2 as cadeas son iguais\n" +" CADEA1 != CADEA2 as cadeas non son iguais\n" +"\n" +" ENTEIRO1 -eq ENTEIRO2 ENTEIRO1 é igual a ENTEIRO2\n" +" ENTEIRO1 -ge ENTEIRO2 ENTEIRO1 é maior ou igual que ENTEIRO2\n" +" ENTEIRO1 -gt ENTEIRO2 ENTEIRO1 é maior que ENTEIRO2\n" +" ENTEIRO1 -le ENTEIRO2 ENTEIRO1 é menor ou igual que ENTEIRO2\n" +" ENTEIRO1 -lt ENTEIRO2 ENTEIRO1 é menor que ENTEIRO2\n" +" ENTEIRO1 -ne ENTEIRO2 ENTEIRO1 é distinto que ENTEIRO2\n" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" +"\n" +"Teña en conta que as parénteses teñen que levar códigos de escape (p.ex con\n" +"barras invertidas) para as shells.\n" +"ENTEIRO pode ser tamén -l CADEA, que se evalúa coma a lonxitude de CADEA.\n" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "falta un `]'\n" + +#: src/test.c:1125 +#, fuzzy +msgid "too many arguments\n" +msgstr "demasiados argumentos" + +#: src/touch.c:39 +#, fuzzy +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "Paul Rubin e David MacKenzie" + +#: src/touch.c:164 src/touch.c:179 +#, fuzzy, c-format +msgid "creating %s" +msgstr "creando ficheiro \"%s\"\n" + +#: src/touch.c:222 +#, fuzzy, c-format +msgid "cannot touch %s" +msgstr "non se poden cambia-los permisos de `%s'" + +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "establecendo a data de %s" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" + +#: src/touch.c:311 src/touch.c:331 +#, fuzzy, c-format +msgid "invalid date format %s" +msgstr "argumento incorrecto %s para %s" + +#: src/touch.c:355 +#, fuzzy +msgid "cannot specify times from more than one source" +msgstr "non se pode partir en máis dun xeito" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "" + +#: src/touch.c:399 +#, fuzzy +msgid "file arguments missing" +msgstr "número de argumentos insuficiente" + +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "Uso: %s [OPCIÓN]... CONXUNTO1 [CONXUNTO2]\n" + +#: src/tr.c:331 +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" +"Traducir, comprimir, e/ou borrar caracteres da entrada estándar,\n" +"escribindo na saída estándar.\n" +"\n" +" -c, --complement complementar antes o CONXUNTO1\n" +" -d, --delete borra-los caracteres do CONXUNTO1, non traducilos\n" +" -s, --squeeze-repeats cambiar cada secuencia de caracteres repetidos\n" +" listados no CONXUNTO1 por unha soa aparición\n" +" dese carácter\n" +" -t, --truncate-set1 truncar antes o CONXUNTO1 á lonxitude do " +"CONXUNTO2\n" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" +"\n" +"Os CONXuntos especifícanse coma cadeas de caracteres. A maioría " +"represéntanse\n" +"a si mesmos. As secuencias interpretadas son:\n" +"\n" +" \\NNN carácter co valor octal NNN (1 a 3 díxitos octais)\n" +" \\\\ barra invertida\n" +" \\a campá audible\n" +" \\b retroceso dun carácter\n" +" \\f salto de páxina\n" +" \\n salto de liña\n" +" \\r retorno de carro\n" +" \\t tabulación horizontal\n" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" +" \\v tabulación vertical\n" +" CAR1-CAR2 tódolos caracteres entre CAR1 e CAR2 en orde ascendente\n" +" [CAR*] en CONX2, copias do CARácter ata a lonxitude de CONX1\n" +" [CAR*REPET] REPETir copias do CARácter, REPET é octal se comeza por 0\n" +" [:alnum:] tódalas letras e díxitos\n" +" [:alpha:] tódalas letras\n" +" [:blank:] tódolos espacios en branco horizontais\n" +" [:cntrl:] tódolos caracteres de control\n" +" [:digit:] tódolos díxitos\n" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" +" [:graph:] tódolos caracteres imprimibles, sen incluí-los espacios\n" +" [:lower:] tódalas letras minúsculas\n" +" [:print:] tódolos caracteres imprimibles, incluíndo os espacios\n" +" [:punct:] tódolos caracteres de puntuación\n" +" [:space:] tódolos espacios en branco horizontais e verticais\n" +" [:upper:] tódalas letras maiúsculas\n" +" [:xdigit:] tódolos díxitos hexadecimais\n" +" [=CAR=] tódolos caracteres equivalentes a CAR\n" + +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" +"\n" +"A traducción ocorre se non se dá -d e CONX1 e CONX2 aparecen. -t pódese\n" +"empregar só ao traducir. CONX2 esténdese ata a lonxitude de CONX1 repetindo\n" +"o seu derradeiro carácter tanto como sexa necesario. " + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" +"Os caracteres sobrantes\n" +"de CONX1 ignóranse. Só se garante que [:lower:] e [:upper:] se expanden en\n" +"orde ascendente; empregado en CONX2 ao traducir, só se poden empregar en\n" +"parellas para especifica-la conversión de maiúsculas a minúsculas e\n" +"viceversa. " + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" +" -s emprega CONX1 se non está traducindo ou borrando; noutro caso\n" +"ao encoller emprégase CONX2 e ocorre trala traducción ou borrado.\n" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" +"aviso: a secuencia de escape octal ambigua \\%c%c%c é\n" +"\tinterpretada coma a secuencia de 2 bytes \\0%c%c, \"%c\"" + +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "secuencia de escape incorrecta na fin da cadea" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "secuencia de escape \"\\%c\" incorrecta" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "os estremos do rango \"%s-%s\" están en orde inversa" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "número de repeticións \"%s\" incorrecto na construcción [c*n]" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "falta o nome da clase de caracteres \"[::]\"" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "falta o carácter da clase de equivalencias \"[==]\"" + +#: src/tr.c:1025 +#, c-format +msgid "invalid character class `%s'" +msgstr "clase de caracteres \"%s\" incorrecta" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "%s: o operando de clases de equivalencia debe ser un só carácter" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "a construcción de repetición [c*] non pode aparecer na cadea1" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "só pode aparecer una construcción de repetición [c*] na cadea2" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "as expresións [=c=] non poden aparecer na cadea2 ao traducir" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "cando non se trunca o conxunto1, a cadea2 non debe estar baleira" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" +"cando se traduce con clases de caracteres complementarias,\n" +"a cadea2 debe facer corresponder tódolos caracteres do dominio nun só" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" +"cando se traduce, as únicas clases de caracteres que poden aparecer\n" +"na cadea2 son \"upper\" e \"lower\"" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "a construcción [c*] pode aparecer na cadea2 só cando se traduce" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "deben proporcionarse dúas cadeas para traducir" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "deben proporcionarse dúas cadeas para borrar e comprimir repeticións" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" +"debe proporcionarse só unha cadea para borrar sen comprimir repeticións" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "debe proporcionarse alomenos unha cadea para comprimir repeticións" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "construcción [:upper:] e/ou [:lower:] mal aliñada" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" +"correspondencia de identidades incorrecta; ao traducir, toda construcción\n" +"[:lower:] ou [:upper:] da cadea1 debe aliñarse cunha construcción que\n" +"corresponda ([:upper:] ou [:lower:], respectivamente) na cadea2" + +#: src/true.c:34 +#, fuzzy, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Uso: %s [opcións de liña de comandos ignoradas]\n" +" ou: %s OPCIÓN\n" +"Saír cun código de estado indicando éxito.\n" +"\n" +"Estes nomes de opcións non se poden abreviar.\n" +"\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Uso: %s [OPCIÓN] [FICHEIRO]\n" +"Escribir unha lista totalmente ordeada consistente coa ordeación parcial\n" +"do FICHEIRO. Se non se indica un FICHEIRO, ou cando o FICHEIRO é -, lese\n" +"da entrada estándar.\n" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "%s: a entrada contén un lazo:" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "só se pode especificar un argumento" + +#: src/tty.c:63 +#, fuzzy +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" +"Escribi-lo nome de ficheiro do terminal conectado á entrada estándar.\n" +"\n" +" -s, --silent, --quiet non escribir nada, só devolver un código de saída\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "non é unha tty" + +#: src/uname.c:111 +#, fuzzy +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" +"Escribir información do sistema. Sen ningunha OPCIÓN, suponse -s.\n" +"\n" +" -a, --all amosar toda a información\n" +" -m, --machine amosa-lo tipo de máquina (hardware)\n" +" -n, --nodename amosa-lo nome da máquina de nó de rede\n" +" -r, --release amosa-la distribución do sistema operativo\n" +" -s, --sysname amosa-lo nome do sistema operativo\n" +" -p, --processor amosa-lo tipo de procesador da máquina\n" +" -v amosa-la versión do sistema operativo\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" + +#: src/uname.c:226 +#, fuzzy +msgid "cannot get system name" +msgstr "non se pode crea-lo ficheiro temporal" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Converte-los espacios de cada FICHEIRO a tabulacións, gravando na saída\n" +"estándar. Sen un FICHEIRO ou cando o FICHEIRO é -, lese da entrada " +"estándar.\n" +"\n" + +#: src/unexpand.c:387 +#, fuzzy +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" +" -a, --all converter tódolos espacios, no canto de só os " +"iniciais\n" +" -t, --tabs=NÚMERO tabulacións de NÚMERO caracteres no canto de 8\n" +" -t, --tabs=LISTA empregar unha lista de posicións separadas por comas\n" + +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "a opción \"-LISTA\" é obsoleta; empregue \"--first-only -t LISTA\"" + +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "Uso: %s [OPCIÓN]... [ENTRADA [SAÍDA]]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" +"Descartar tódalas liñas idénticas da ENTRADA (ou entrada estándar) agás " +"unha,\n" +"gravando na SAÍDA (ou saída estándar).\n" +"\n" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" +" -c, --count preceder cada liña co número de aparicións\n" +" -d, --repeated amosar só as liñas duplicadas\n" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" +" -D, --all-repeated[=método] amosar tódalas liñas duplicadas\n" +" método={none(por defecto),prepend,separate}\n" +" (ningún, anteceder, separar)\n" +" A delimitación faise con liñas en branco.\n" +" -f, --skip-fields=N evitar compara-los primeiros N campos\n" +" -i, --ignore-case ignora-las diferencias entre maiúsculas-minúsculas\n" +" ao comparar\n" +" -s, --skip­chars=N evitar compara-los primeiros N caracteres\n" +" -u, --unique amosar só as liñas únicas\n" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr "" +" -w, --check-chars=N non comparar máis de N caracteres en cada liña\n" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" +"\n" +"Un campo é un grupo de espacios seguidos de varios caracteres.\n" +"Os campos omítense antes dos caracteres.\n" + +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "erro lendo %s" + +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "erro escribindo %s" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "operando \"%s\" extra" + +#: src/uniq.c:473 src/uniq.c:498 +msgid "invalid number of fields to skip" +msgstr "número de campos a omitir non válido" + +#: src/uniq.c:507 +msgid "invalid number of bytes to skip" +msgstr "número de bytes a omitir non válido" + +#: src/uniq.c:516 +msgid "invalid number of bytes to compare" +msgstr "número de bytes a comparar non válido" + +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "a opción \"-%lu\" é obsoleta; empregue \"-f %lu\"" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "" +"amosar tódalas liñas duplicadas e a conta de repeticións non ten sentido" + +#: src/unlink.c:51 +#, fuzzy, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s [FICHEIRO]...\n" +" ou: %s [OPCIÓN]\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" + +#: src/unlink.c:99 +#, fuzzy, c-format +msgid "cannot unlink %s" +msgstr "non se poden cambia-los permisos de `%s'" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "non se pode obte-la data de inicio" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr " %2d:%02d%s funcionando " + +#: src/uptime.c:140 +msgid "am" +msgstr "am" + +#: src/uptime.c:140 +msgid "pm" +msgstr "pm" + +#: src/uptime.c:142 +#, fuzzy, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "día" +msgstr[1] "día" + +#: src/uptime.c:144 +#, fuzzy, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "usuario incorrecto" +msgstr[1] "usuario incorrecto" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr ", carga media: %.2f" + +#: src/uptime.c:191 src/users.c:118 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "Uso: %s [OPCIÓN]... [FICHEIRO]...\n" + +#: src/uptime.c:192 +#, fuzzy, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Escribi-la hora actual, o tempo que leva o sistema funcionando, o\n" +"número de usuarios no sistema, e o número medio de procesos na fila\n" +"de execución nos últimos 1, 5 e 15 minutos.\n" +"Se non se indica FICHEIRO, usarase %s. O normal como FICHEIRO\n" +"é %s\n" +"\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" + +#: src/users.c:35 +#, fuzzy +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "Jay Lepreau e David MacKenzie" + +#: src/users.c:119 +#, fuzzy, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Escribir quen está conectado actualmente segundo FICHEIRO.\n" +"Se non se indica FICHEIRO, usarase %s. O normal como FICHEIRO\n" +"é %s\n" +"\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "Paul Rubin e David MacKenzie" + +#: src/wc.c:129 +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" +"Escribi-lo número de bytes, palabras e liñas de cada FICHEIRO, e unha liña\n" +"cos totais se se indica máis dun FICHEIRO. Se non se indica un FICHEIRO, " +"ou\n" +"se o FICHEIRO é -, lese da entrada estándar.\n" +" -c, --bytes escribi-lo número de bytes\n" +" -m, --chars escribi-lo número de caracteres\n" +" -l, --lines escribi-lo número de saltos de liña\n" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" +" -L, --max-line-length escribi-la lonxitude da liña máis longa\n" +" -w, --words escribi-lo número de palabras\n" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "" + +#: src/who.c:223 +msgid " old " +msgstr " antigo " + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "" + +#: src/who.c:446 +msgid "clock change" +msgstr "" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" +"\n" +"número de usuarios=%u\n" + +#: src/who.c:498 +msgid "NAME" +msgstr "" + +#: src/who.c:498 +msgid "LINE" +msgstr "LIÑA" + +#: src/who.c:498 +msgid "TIME" +msgstr "" + +#: src/who.c:498 +#, fuzzy +msgid "IDLE" +msgstr "FALLA" + +#: src/who.c:498 +msgid "PID" +msgstr "" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "" + +#: src/who.c:499 +msgid "EXIT" +msgstr "" + +#: src/who.c:574 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "Uso: %s [OPCIÓN]... FICHEIRO1 FICHEIRO2\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" + +#: src/whoami.c:53 +#, fuzzy +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" +"Escribi-lo nome de usuario asociado ó identificador efectivo de usuario " +"actual\n" +"O mesmo que id -un.\n" +"\n" +" --help amosar esta axuda e saír\n" +" --version amosa-la información da versión e saír\n" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "%s: non se pode atopa-lo nome de usuario do UID %u\n" + +#: src/yes.c:49 +#, fuzzy, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s [FICHEIRO]...\n" +" ou: %s [OPCIÓN]\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" + +#, fuzzy +#~ msgid "\\%c: invalid escape" +#~ msgstr "%s: patrón incorrecto" + +#~ msgid "program error" +#~ msgstr "erro do programa" + +#~ msgid "stack overflow" +#~ msgstr "desbordamento da pila" + +#~ msgid " Type" +#~ msgstr " Tipo" + +#, fuzzy +#~ msgid "cannot convert time" +#~ msgstr "non se pode establece-la data" + +#, fuzzy +#~ msgid "cannot format time" +#~ msgstr "non se poden cambia-los permisos de `%s'" + +#, fuzzy +#~ msgid "cannot change to `..' from directory %s" +#~ msgstr "non se pode cambiar ao directorio %s" + +#, fuzzy +#~ msgid "missing file arguments" +#~ msgstr "número de argumentos insuficiente" + +#, fuzzy +#~ msgid "environment variable, QUOTING_STYLE" +#~ msgstr "" +#~ "ignorando o tamaño de tabulador non válido na variable de ambiente " +#~ "TABSIZE: %s" + +#~ msgid "%s: is so large that it is not representable" +#~ msgstr "%s: é tan grande que non é representable" + +#, fuzzy +#~ msgid "cannot execute %s" +#~ msgstr "non se poden cambia-los permisos de `%s'" + +#, fuzzy +#~ msgid "Try %s --help' for more information.\n" +#~ msgstr "Escriba \"%s --help\" para máis información.\n" + +#, fuzzy +#~ msgid "preserving permissions for %s" +#~ msgstr "non se pode cambia-los permisos de %s" + +#, fuzzy +#~ msgid "cannot lstat `.'" +#~ msgstr "non se pode establece-la data" + +#, fuzzy +#~ msgid "closing directory %s" +#~ msgstr "non se pode cambiar ao directorio %s" + +#, fuzzy +#~ msgid "%s: remove directory %s? " +#~ msgstr "non se pode crea-lo directorio %s" + +#~ msgid "%s: directory %s is write protected; descend into it anyway? " +#~ msgstr "" +#~ "%s: o directorio %s está protexido contra escritura; ¿entrar nel de\n" +#~ "calquera xeito? " + +#~ msgid "removing all entries of directory %s\n" +#~ msgstr "borrando tódalas entradas do directorio %s\n" + +#~ msgid "continue? " +#~ msgstr "¿continuar? " + +#, fuzzy +#~ msgid "cannot change back to directory %s via `..'" +#~ msgstr "non se pode cambiar ao directorio %s" + +#, fuzzy +#~ msgid "%s: remove directory %s%s? " +#~ msgstr "non se pode crea-lo directorio %s" + +#~ msgid " (might be nonempty)" +#~ msgstr " (podería non estar baleiro)" + +#, fuzzy +#~ msgid "removing the directory itself: %s\n" +#~ msgstr "aviso: non se pode cambiar ó directorio %s" + +#, fuzzy +#~ msgid "" +#~ "ERROR: the source file %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after opening it), the numbers\n" +#~ "are %lu/%lu. That means that while this program was running,\n" +#~ "the file was replaced with another one. Skipping this file." +#~ msgstr "" +#~ "ERRO: o directorio %s tiña inicialmente os números %lu/%lu de\n" +#~ "dispositivo/inodo, pero agora (tras acceder a el), os números de `.'\n" +#~ "son %lu/%lu. Isto significa que mentres rm estaba a se executar,\n" +#~ "o directorio foi substituído por outro directorio ou por unha ligazón\n" +#~ "a outro directorio." + +#~ msgid "" +#~ "ERROR: the directory %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after a chdir into it), the numbers for `.'\n" +#~ "are %lu/%lu. That means that while rm was running, the directory\n" +#~ "was replaced with either another directory or a link to another directory." +#~ msgstr "" +#~ "ERRO: o directorio %s tiña inicialmente os números %lu/%lu de\n" +#~ "dispositivo/inodo, pero agora (tras acceder a el), os números de `.'\n" +#~ "son %lu/%lu. Isto significa que mentres rm estaba a se executar,\n" +#~ "o directorio foi substituído por outro directorio ou por unha ligazón\n" +#~ "a outro directorio." + +#, fuzzy +#~ msgid "" +#~ "ERROR: the directory %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after changing into at least one subdirectory\n" +#~ "and changing back via `..'), the numbers for `.' are %lu/%lu.\n" +#~ "That means that while rm was running, a partially-removed subdirectory\n" +#~ "was moved to a different position in the file system hierarchy." +#~ msgstr "" +#~ "ERRO: o directorio %s tiña inicialmente os números %lu/%lu de\n" +#~ "dispositivo/inodo, pero agora (tras acceder a el), os números de `.'\n" +#~ "son %lu/%lu. Isto significa que mentres rm estaba a se executar,\n" +#~ "o directorio foi substituído por outro directorio ou por unha ligazón\n" +#~ "a outro directorio." + +#, fuzzy +#~ msgid " or: %s [-acm] MMDDhhmm[YY] FILE... (obsolete)\n" +#~ msgstr " ou: %s [-acm] MMDDhhmm[AA] FICHEIRO... (obsoleto)\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Visualiza-la conta de comprobación CRC e o número de bytes de cada " +#~ "FICHEIRO.\n" +#~ "\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Visualiza-la conta de comprobación CRC e o número de bytes de cada " +#~ "FICHEIRO.\n" +#~ "\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Visualiza-la conta de comprobación CRC e o número de bytes de cada " +#~ "FICHEIRO.\n" +#~ "\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Visualiza-la conta de comprobación CRC e o número de bytes de cada " +#~ "FICHEIRO.\n" +#~ "\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Visualiza-la conta de comprobación CRC e o número de bytes de cada " +#~ "FICHEIRO.\n" +#~ "\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Visualiza-la conta de comprobación CRC e o número de bytes de cada " +#~ "FICHEIRO.\n" +#~ "\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Visualiza-la conta de comprobación CRC e o número de bytes de cada " +#~ "FICHEIRO.\n" +#~ "\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Visualiza-la conta de comprobación CRC e o número de bytes de cada " +#~ "FICHEIRO.\n" +#~ "\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Visualiza-la conta de comprobación CRC e o número de bytes de cada " +#~ "FICHEIRO.\n" +#~ "\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Visualiza-la conta de comprobación CRC e o número de bytes de cada " +#~ "FICHEIRO.\n" +#~ "\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Visualiza-la conta de comprobación CRC e o número de bytes de cada " +#~ "FICHEIRO.\n" +#~ "\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" + +#~ msgid "" +#~ "Change the group membership of each FILE to GROUP.\n" +#~ "\n" +#~ " -c, --changes like verbose but report only when a change is " +#~ "made\n" +#~ " --dereference affect the referent of each symbolic link, " +#~ "rather\n" +#~ " than the symbolic link itself\n" +#~ " -h, --no-dereference affect symbolic links instead of any referenced " +#~ "file\n" +#~ " (available only on systems that can change the\n" +#~ " ownership of a symlink)\n" +#~ " -f, --silent, --quiet suppress most error messages\n" +#~ " --reference=RFILE use RFILE's group rather than the specified\n" +#~ " GROUP value\n" +#~ " -R, --recursive operate on files and directories recursively\n" +#~ " -v, --verbose output a diagnostic for every file processed\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Muda a pertenza de grupo de cada FICHEIRO a GRUPO.\n" +#~ "\n" +#~ " -c, --changes coma `verbose' mais informando só dos cambios\n" +#~ " --dereference afectar ao ficheiro ao que se refire a ligazón\n" +#~ " simbólica, en vez da propia ligazón simbólica\n" +#~ " -h, --no-dereference afectar ás ligazóns simbólicas en vez dos " +#~ "ficheiros\n" +#~ " referidos (só dispoñible en sistemas que poidan\n" +#~ " muda-lo dono dunha ligazón simbólica)\n" +#~ " -f, --silent, --quiet suprimi-la maioría das mensaxes de erro\n" +#~ " --reference=FICH-R usa-lo grupo de FICH-R en vez do valor indicado\n" +#~ " de GRUPO\n" +#~ " -R, --recursive operar en ficheiros e directorios " +#~ "recursivamente\n" +#~ " -v, --verbose amosar unha mensaxe por cada ficheiro procesado\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosa-la información da versión e saír\n" + +#~ msgid "" +#~ "Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +#~ "\n" +#~ " -c, --changes like verbose but report only when a change is " +#~ "made\n" +#~ " --dereference affect the referent of each symbolic link, " +#~ "rather\n" +#~ " than the symbolic link itself\n" +#~ " -h, --no-dereference affect symbolic links instead of any referenced " +#~ "file\n" +#~ " (available only on systems that can change the\n" +#~ " ownership of a symlink)\n" +#~ " --from=CURRENT_OWNER:CURRENT_GROUP\n" +#~ " change the owner and/or group of each file only " +#~ "if\n" +#~ " its current owner and/or group match those " +#~ "specified\n" +#~ " here. Either may be omitted, in which case a " +#~ "match\n" +#~ " is not required for the omitted attribute.\n" +#~ " -f, --silent, --quiet suppress most error messages\n" +#~ " --reference=RFILE use RFILE's owner and group rather than\n" +#~ " the specified OWNER:GROUP values\n" +#~ " -R, --recursive operate on files and directories recursively\n" +#~ " -v, --verbose output a diagnostic for every file processed\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Muda o dono e/ou grupo de cada FICHEIRO a DONO e/ou GRUPO.\n" +#~ "\n" +#~ " -c, --changes coma --verbose pero só cando hai algún cambio\n" +#~ " --dereference afectar ao ficheiro ao que se refire a ligazón\n" +#~ " simbólica, en vez da propia ligazón simbólica\n" +#~ " -h, --no-dereference afectar ás ligazóns simbólicas en vez dos " +#~ "ficheiros\n" +#~ " referidos (só dispoñible en sistemas que poden\n" +#~ " muda-lo dono dunha ligazón simbólica)\n" +#~ " --from=DONO_ACTUAL:GRUPO_ACTUAL\n" +#~ " muda-lo dono e/ou o grupo de cada ficheiro só " +#~ "se\n" +#~ " o seu dono e/ou grupo actual coincide co " +#~ "indicado\n" +#~ " aquí. Pode indicarse só un deles, nese caso " +#~ "non\n" +#~ " se requirirá a coincidencia co atributo " +#~ "omitido.\n" +#~ " -f, --silent, --quiet suprimi-la maioría das mensaxes de erro\n" +#~ " --reference=FICH-R usa-lo dono e o grupo de FICH-R en vez dos " +#~ "valores\n" +#~ " DONO:GRUPO indicados\n" +#~ " -R, --recursive cambiar ficheiros e directorios recursivamente\n" +#~ " -v, --verbose amosar unha mensaxe por cada ficheiro procesado\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosa-la información da versión e saír\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ " -l, --link link files instead of copying\n" +#~ " -L, --dereference always follow symbolic links\n" +#~ " -p same as --preserve=mode,ownership," +#~ "timestamps\n" +#~ " --preserve[=ATTR_LIST] preserve the specified attributes " +#~ "(default:\n" +#~ " mode,ownership,timestamps), if possible\n" +#~ " additional attributes: links, all\n" +#~ " --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +#~ " --parents append source path to DIRECTORY\n" +#~ " -P same as `--no-dereference'\n" +#~ " -r copy recursively, non-directories as " +#~ "files\n" +#~ " WARNING: use -R instead when you might " +#~ "copy\n" +#~ " special files like FIFOs or /dev/zero\n" +#~ " --remove-destination remove each existing destination file " +#~ "before\n" +#~ " attempting to open it (contrast with --" +#~ "force)\n" +#~ msgstr "" +#~ "Copia ORIXE a DESTINO, ou múltiples ORIXE(s) a un DIRECTORIO.\n" +#~ "\n" +#~ " -a, --archive igual a -dpR\n" +#~ " --backup[=CONTROL] facer unha copia de seguridade de cada " +#~ "ficheiro\n" +#~ " destino\n" +#~ " -b como --backup mais sen aceptar argumentos\n" +#~ " -d, --no-dereference non seguir as ligazóns simbólicas\n" +#~ " -f, --force se non se pode abrir un ficheiro destino,\n" +#~ " borralo e tentar de novo\n" +#~ " -i, --interactive preguntar antes de sobrescribir\n" +#~ " -H segui-las ligazóns simbólicas de liña de\n" +#~ " comandos\n" +#~ " -l, --link facer ligazóns en vez de copiar\n" +#~ " -L, --dereference seguir as ligazóns simbólicas\n" +#~ " -p, --preserve mante-los atributos dos ficheiros se é " +#~ "posible\n" +#~ " --parents engadi-lo camiño da orixe ao DIRECTORIO\n" +#~ " -P o mesmo que `--parents' por agora; logo " +#~ "será\n" +#~ " `--no-dereference' para seguir POSIX\n" +#~ " -r copiar recursivamente, os non-directorios " +#~ "coma\n" +#~ " ficheiros. AVISO: empregue -R se " +#~ "quere\n" +#~ " copiar ficheiros especiais coma FIFOs " +#~ "ou\n" +#~ " /dev/zero\n" +#~ " --remove-destination eliminar os ficheiros de destino antes de\n" +#~ " tentar abrilos (contraste con --force)\n" + +#~ msgid "" +#~ "Copy a file, converting and formatting according to the options.\n" +#~ "\n" +#~ " bs=BYTES force ibs=BYTES and obs=BYTES\n" +#~ " cbs=BYTES convert BYTES bytes at a time\n" +#~ " conv=KEYWORDS convert the file as per the comma separated keyword " +#~ "list\n" +#~ " count=BLOCKS copy only BLOCKS input blocks\n" +#~ " ibs=BYTES read BYTES bytes at a time\n" +#~ " if=FILE read from FILE instead of stdin\n" +#~ " obs=BYTES write BYTES bytes at a time\n" +#~ " of=FILE write to FILE instead of stdout\n" +#~ " seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +#~ " skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "BLOCKS and BYTES may be followed by the following multiplicative " +#~ "suffixes:\n" +#~ "xM M, c 1, w 2, b 512, kD 1000, k 1024, MD 1,000,000, M 1,048,576,\n" +#~ "GD 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +#~ "Each KEYWORD may be:\n" +#~ "\n" +#~ " ascii from EBCDIC to ASCII\n" +#~ " ebcdic from ASCII to EBCDIC\n" +#~ " ibm from ASCII to alternated EBCDIC\n" +#~ " block pad newline-terminated records with spaces to cbs-size\n" +#~ " unblock replace trailing spaces in cbs-size records with newline\n" +#~ " lcase change upper case to lower case\n" +#~ " notrunc do not truncate the output file\n" +#~ " ucase change lower case to upper case\n" +#~ " swab swap every pair of input bytes\n" +#~ " noerror continue after read errors\n" +#~ " sync pad every input block with NULs to ibs-size; when used\n" +#~ " with block or unblock, pad with spaces rather than NULs\n" +#~ msgstr "" +#~ "Copia un ficheiro, converténdoo e formatándoo segundo as opcións.\n" +#~ "\n" +#~ " bs=BYTES forzar ibs=BYTES e obs=BYTES\n" +#~ " cbs=BYTES converter BYTES bytes de cada vez\n" +#~ " conv=PALABRAS converte-lo ficheiro segundo a lista de palabras " +#~ "separadas\n" +#~ " por coma.\n" +#~ " count=BLOQUES copiar só BLOQUES bloques de entrada\n" +#~ " ibs=BYTES ler BYTES bytes de cada vez\n" +#~ " if=FICHEIRO ler do FICHEIRO en vez da entrada estándar\n" +#~ " obs=BYTES escribir BYTES bytes de cada vez\n" +#~ " of=FILE escribir no FICHEIRO en vez da saída estándar\n" +#~ " seek=BLOQUES saltar na saída os primeiros BLOQUES de tamaño obs\n" +#~ " skip=BLOQUES saltar na entrada os primeiros BLOQUES de tamaño ibs\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosa-la información da versión e saír\n" +#~ "\n" +#~ "BLOQUES e BYTES poden te-los seguintes sufixos multiplicativos:\n" +#~ "xM M, c 1, w 2, b 512, kD 1000, k 1024, MD 1.000.000, M 1.048.576,\n" +#~ "GD 1.000.000.000, G 1.073.741.824, e do mesmo xeito para T, P, E, Z, Y.\n" +#~ "Cada PALABRA pode ser:\n" +#~ "\n" +#~ " ascii de EBCDIC a ASCII\n" +#~ " ebcdic de ASCII a EBCDIC\n" +#~ " ibm de ASCII a EBCDIC alternado\n" +#~ " block completar rexistros rematados en nova liña con espacios ata " +#~ "o\n" +#~ " tamaño cbs\n" +#~ " unblock substituí-los espacios finais dos rexistros de tamaño cbs " +#~ "por\n" +#~ " unha fin de liña\n" +#~ " lcase cambia-las letras maiúsculas a minúsculas\n" +#~ " notrunc non trunca-lo ficheiro de saída\n" +#~ " ucase cambia-las letras minúsculas a maiúsculas\n" +#~ " swab trocar cada par de bytes da entrada\n" +#~ " noerror continuar se hai erros de lectura\n" +#~ " sync completar cada bloque de entrada con NULs ata o tamaño ibs; " +#~ "ao\n" +#~ " usalo con block e unblock, completar con espacios en vez de " +#~ "NULs\n" + +#~ msgid "" +#~ "Show information about the filesystem on which each FILE resides,\n" +#~ "or all filesystems by default.\n" +#~ "\n" +#~ " -a, --all include filesystems having 0 blocks\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " -H, --si likewise, but use powers of 1000 not 1024\n" +#~ " -i, --inodes list inode information instead of block usage\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l, --local limit listing to local filesystems\n" +#~ " -m, --megabytes like --block-size=1048576\n" +#~ " --no-sync do not invoke sync before getting usage info " +#~ "(default)\n" +#~ " -P, --portability use the POSIX output format\n" +#~ " --sync invoke sync before getting usage info\n" +#~ " -t, --type=TYPE limit listing to filesystems of type TYPE\n" +#~ " -T, --print-type print filesystem type\n" +#~ " -x, --exclude-type=TYPE limit listing to filesystems not of type " +#~ "TYPE\n" +#~ " -v (ignored)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Amosa información acerca do sistema de ficheiros no que reside cada " +#~ "FICHEIRO,\n" +#~ "ou tódolos sistemas de ficheiros por omisión.\n" +#~ "\n" +#~ " -a, --all incluí-los sistemas de ficheiros con 0 bloques\n" +#~ " --block-size=TAM utilizar bloques de TAM bytes\n" +#~ " -h, --human-readable escribi-los tamaños nun formato lexible para " +#~ "persoas\n" +#~ " (p.ex. 1K 234M 2G)\n" +#~ " -H, --si o mesmo, mais usando potencias de 1000, non de " +#~ "1024\n" +#~ " -i, --inodes amosa-la información de inodos en vez dos " +#~ "bloques\n" +#~ " utilizados\n" +#~ " -k, --kilobytes coma --block-size=1024\n" +#~ " -l, --local limita-la lista aos sistemas de ficheiros locais\n" +#~ " -m, --megabytes coma --block-size=1048576\n" +#~ " --no-sync non chamar a sync antes de obte-la información " +#~ "de\n" +#~ " uso (opción por defecto)\n" +#~ " -P, --portability usa-lo formato POSIX de saída\n" +#~ " --sync chamar a sync antes de obte-la información de " +#~ "uso\n" +#~ " -t, --type=TIPO limita-la lista aos sistemas de ficheiros do tipo " +#~ "TIPO\n" +#~ " -T, --print-type escribi-lo tipo de sistema de ficheiros\n" +#~ " -x, --exclude-type=TIPO limita-la lista aos sistemas de ficheiros que " +#~ "non\n" +#~ " sexan do tipo TIPO\n" +#~ " -v (ignorada)\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosa-la información da versión e saír\n" + +#~ msgid "" +#~ "Summarize disk usage of each FILE, recursively for directories.\n" +#~ "\n" +#~ " -a, --all write counts for all files, not just directories\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -b, --bytes print size in bytes\n" +#~ " -c, --total produce a grand total\n" +#~ " -D, --dereference-args dereference PATHs when symbolic link\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " -H, --si likewise, but use powers of 1000 not 1024\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l, --count-links count sizes many times if hard linked\n" +#~ " -L, --dereference dereference all symbolic links\n" +#~ " -m, --megabytes like --block-size=1048576\n" +#~ " -S, --separate-dirs do not include size of subdirectories\n" +#~ " -s, --summarize display only a total for each argument\n" +#~ " -x, --one-file-system skip directories on different filesystems\n" +#~ " -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +#~ "FILE.\n" +#~ " --exclude=PAT Exclude files that match PAT.\n" +#~ " --max-depth=N print the total for a directory (or file, with --" +#~ "all)\n" +#~ " only if it is N or fewer levels below the " +#~ "command\n" +#~ " line argument; --max-depth=0 is the same as\n" +#~ " --summarize\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Amosa un resume da utilización do disco de cada FICHEIRO, recursivamente " +#~ "para\n" +#~ "directorios.\n" +#~ "\n" +#~ " -a, --all escribi-la conta para tódolos ficheiros, non só " +#~ "os\n" +#~ " directorios\n" +#~ " -b, --bytes escribi-lo tamaño en bytes\n" +#~ " -c, --total producir un total\n" +#~ " -D, --dereference-args segui-los camiños a través de ligazóns " +#~ "simbólicas\n" +#~ " -h, --human-readable escribi-los tamaños nun formato lexible para " +#~ "persoas\n" +#~ " (p.ex., 1K 234M 2G)\n" +#~ " -H, --si o mesmo, mais usando potencias de 1000, non de " +#~ "1024\n" +#~ " -k, --kilobytes coma --block-size=1024\n" +#~ " -l, --count-links conta-los tamaños múltiples veces se hai ligazóns " +#~ "duras\n" +#~ " -L, --dereference seguir tódalas ligazóns simbólicas\n" +#~ " -m, --megabytes coma --block-size=1048576\n" +#~ " -S, --separate-dirs non incluí-lo tamaño dos subdirectorios\n" +#~ " -s, --summarize amosar só o total para cada argumento\n" +#~ " -x, --one-file-system omiti-los directorios en sistemas de ficheiros\n" +#~ " distintos\n" +#~ " -X FICH, --exclude-from=FICH excluí-los ficheiros que coincidan con " +#~ "algún\n" +#~ " patrón contido en FICH.\n" +#~ " --exclude=PATRÓN excluí-los ficheiros que coincidan co PATRÓN\n" +#~ " --max-depth=N escribi-lo total para un directorio (ou ficheiro, " +#~ "con\n" +#~ " --all), só se está N ou menos niveis debaixo " +#~ "do\n" +#~ " argumento da liña de comandos; --max-depth=0 é " +#~ "o\n" +#~ " mesmo que --summarize\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosa-la información da versión e saír\n" + +#~ msgid "" +#~ "In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +#~ "the existing DIRECTORY, while setting permission modes and owner/group.\n" +#~ "In the third format, create all components of the given DIRECTORY(ies).\n" +#~ "\n" +#~ " --backup[=CONTROL] make a backup of each existing destination file\n" +#~ " -b like --backup but does not accept an argument\n" +#~ " -c (ignored)\n" +#~ " -d, --directory treat all arguments as directory names; create all\n" +#~ " components of the specified directories\n" +#~ " -D create all leading components of DEST except the " +#~ "last,\n" +#~ " then copy SOURCE to DEST; useful in the 1st " +#~ "format\n" +#~ " -g, --group=GROUP set group ownership, instead of process' current " +#~ "group\n" +#~ " -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-" +#~ "xr-x\n" +#~ " -o, --owner=OWNER set ownership (super-user only)\n" +#~ " -p, --preserve-timestamps apply access/modification times of SOURCE " +#~ "files\n" +#~ " to corresponding destination files\n" +#~ " -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +#~ " -S, --suffix=SUFFIX override the usual backup suffix\n" +#~ " -v, --verbose print the name of each directory as it is created\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Nas dúas primeiras formas, copia a ORIXE en DESTINO ou varias ORIXE(s) " +#~ "ao\n" +#~ "DIRECTORIO existente, axustando os permisos e o dono/grupo.\n" +#~ "Na terceira forma, crea tódolos compoñentes do(s) DIRECTORIO(s) " +#~ "indicados.\n" +#~ "\n" +#~ " --backup[=CONTROL] facer unha copia de seguridade de cada " +#~ "ficheiro\n" +#~ " destino\n" +#~ " -b como --backup mais sen aceptar argumentos\n" +#~ " -c (ignorada)\n" +#~ " -d, --directory tratar tódolos argumentos como directorios; crear " +#~ "tódolos\n" +#~ " compoñentes dos directorios indicados\n" +#~ " -D crear tódolos compoñentes iniciais de DESTINO agás " +#~ "o\n" +#~ " derradeiro, entón copiar ORIXE a DESTINO; útil na\n" +#~ " primeira forma\n" +#~ " -g, --group=GRUPO establece-los permisos de grupo, en vez do grupo " +#~ "do\n" +#~ " proceso\n" +#~ " -m, --mode=MODO establece-los permisos (coma en chmod), en vez de\n" +#~ " rwxr-xr-x\n" +#~ " -o, --owner=OWNER establece-lo dono (só super-usuario)\n" +#~ " -p, --preserve-timestamps mante-las datas de acceso/modificación dos\n" +#~ " ficheiros ORIXE nos correspondentes de " +#~ "destino\n" +#~ " -s, --strip elimina-las táboas de símbolos, só para a primeira " +#~ "e\n" +#~ " segunda forma\n" +#~ " -S, --suffix=SUFIXO subsituí-lo sufixo habitual da copia de seguridade\n" +#~ " -v, --verbose escribi-lo nome de cada directorio ao crealo\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosa-la versión da información e saír\n" +#~ "\n" + +#~ msgid "" +#~ "Create a link to the specified TARGET with optional LINK_NAME.\n" +#~ "If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +#~ "created in the current directory. When using the second form with more\n" +#~ "than one TARGET, the last argument must be a directory; create links\n" +#~ "in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +#~ "links with --symbolic. When creating hard links, each TARGET must " +#~ "exist.\n" +#~ "\n" +#~ " --backup[=CONTROL] make a backup of each existing destination " +#~ "file\n" +#~ " -b like --backup but does not accept an " +#~ "argument\n" +#~ " -d, -F, --directory hard link directories (super-user only)\n" +#~ " -f, --force remove existing destination files\n" +#~ " -n, --no-dereference treat destination that is a symlink to a\n" +#~ " directory as if it were a normal file\n" +#~ " -i, --interactive prompt whether to remove destinations\n" +#~ " -s, --symbolic make symbolic links instead of hard links\n" +#~ " -S, --suffix=SUFFIX override the usual backup suffix\n" +#~ " --target-directory=DIRECTORY specify the DIRECTORY in which to " +#~ "create\n" +#~ " the links\n" +#~ " -v, --verbose print name of each file before linking\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Crea unha ligazón ao OBXECTIVO indicado cun NOME_DA_LIGAZÓN opcional.\n" +#~ "Se se omite o NOME_DA_LIGAZÓN, crearase unha ligazón co mesmo nome base " +#~ "que\n" +#~ "o OBXECTIVO no directorio actual. Cando se usa a segunda forma con máis " +#~ "dun\n" +#~ "OBXECTIVO, o último argumento ten que ser un directorio; crea ligazóns " +#~ "no\n" +#~ "DIRECTORIO para cada OBXECTIVO. Crea ligazóns duras por defecto, " +#~ "ligazóns\n" +#~ "simbólicas con --symbolic. Cando se crean ligazóns duras, cada " +#~ "OBXECTIVO\n" +#~ "debe existir.\n" +#~ "\n" +#~ " --backup[=CONTROL] facer unha copia de seguridade de cada " +#~ "ficheiro\n" +#~ " destino\n" +#~ " -b como --backup mais sen aceptar argumentos\n" +#~ " -d, -F, --directory facer ligazón dura de directorios (só " +#~ "super\n" +#~ " usuario)\n" +#~ " -f, --force borra-los ficheiros destino que xa existan\n" +#~ " -n, --no-dereference trata-los destinos que sexan ligazóns " +#~ "simbólicas\n" +#~ " a un directorio coma se fosen ficheiros " +#~ "normais\n" +#~ " -i, --interactive preguntar se os destinos se borran\n" +#~ " -s, --symbolic facer ligazóns simbólicas en vez de duras\n" +#~ " -S, --suffix=SUFIXO substituí-lo sufixo habitual da copia de\n" +#~ " seguridade\n" +#~ " --target-directory=DIRECTORIO indica-lo DIRECTORIO onde se crean " +#~ "as\n" +#~ " ligazóns\n" +#~ " -v, --verbose escribi-lo nome de cada ficheiro antes de\n" +#~ " face-la ligazón\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosa-la información da versión e saír\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "List information about the FILEs (the current directory by default).\n" +#~ "Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +#~ "\n" +#~ " -a, --all do not hide entries starting with .\n" +#~ " -A, --almost-all do not list implied . and ..\n" +#~ " -b, --escape print octal escapes for nongraphic " +#~ "characters\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -B, --ignore-backups do not list implied entries ending with ~\n" +#~ " -c with -lt: sort by, and show, ctime (time of " +#~ "last\n" +#~ " modification of file status information)\n" +#~ " with -l: show ctime and sort by name\n" +#~ " otherwise: sort by ctime\n" +#~ " -C list entries by columns\n" +#~ " --color[=WHEN] control whether color is used to distinguish " +#~ "file\n" +#~ " types. WHEN may be `never', `always', or " +#~ "`auto'\n" +#~ " -d, --directory list directory entries instead of contents\n" +#~ " -D, --dired generate output designed for Emacs' dired " +#~ "mode\n" +#~ " -f do not sort, enable -aU, disable -lst\n" +#~ " -F, --classify append indicator (one of */=@|) to entries\n" +#~ " --format=WORD across -x, commas -m, horizontal -x, long -" +#~ "l,\n" +#~ " single-column -1, verbose -l, vertical -C\n" +#~ " --full-time like -l --time-style=full-iso\n" +#~ msgstr "" +#~ "Amosa información dos FICHEIROs (por omisión no directorio actual).\n" +#~ "Ordena as entradas alfabeticamente se non se indica ningunha das opcións\n" +#~ "-cftuSUX nin --sort.\n" +#~ "\n" +#~ " -a, --all non oculta-las entradas que empezan con .\n" +#~ " -A, --almost-all non amosa-las entradas . e .. implícitas\n" +#~ " -b, --escape escribir caracteres de escape en octal para\n" +#~ " os caracteres non gráficos\n" +#~ " --block-size=TAMAÑO usar bloques de TAMAÑO bytes\n" +#~ " -B, --ignore-backups non lista-las entradas que rematan con ~\n" +#~ " -c con -lt: amosar e ordenar por ctime (data " +#~ "da\n" +#~ " última modificación da información do " +#~ "estado\n" +#~ " de ficheiro)\n" +#~ " con -l: amosar ctime e ordenar polo nome\n" +#~ " doutro xeito: ordenar por ctime\n" +#~ " -C amosa-las entradas en columnas\n" +#~ " --color[=CANDO] controla-lo emprego da cor para distingui-" +#~ "los\n" +#~ " tipos de ficheiros. CANDO pode ser " +#~ "`never'\n" +#~ " (nunca), `always' (sempre) ou " +#~ "`auto' (auto)\n" +#~ " -d, --directory amosa-las entradas de directorio en vez dos\n" +#~ " seus contidos\n" +#~ " -D, --dired xera-la saída para o modo `dired' de Emacs\n" +#~ " -f non ordenar, actívase -aU, desactívase -lst\n" +#~ " -F, --classify engadir un indicador ás entradas (un de */" +#~ "=@|)\n" +#~ " --format=PALABRA accross -x [cruzar], commas -m [comas],\n" +#~ " horizontal -x, long -l [longo], single-" +#~ "column\n" +#~ " -1 [unha columna], verbose -l " +#~ "[explicativo],\n" +#~ " vertical -C\n" +#~ " --full-time amosa-la data e a hora completas\n" + +#, fuzzy +#~ msgid "" +#~ " -g like -l, but do not list owner\n" +#~ " -G, --no-group inhibit display of group information\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " --si likewise, but use powers of 1000 not 1024\n" +#~ " -H, --dereference-command-line follow symbolic links on the command " +#~ "line\n" +#~ " --indicator-style=WORD append indicator with style WORD to entry " +#~ "names:\n" +#~ " none (default), classify (-F), file-type (-" +#~ "p)\n" +#~ " -i, --inode print index number of each file\n" +#~ " -I, --ignore=PATTERN do not list implied entries matching shell " +#~ "PATTERN\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l use a long listing format\n" +#~ " -L, --dereference when showing file information for a " +#~ "symbolic\n" +#~ " link, show information for the file the " +#~ "link\n" +#~ " references rather than for the link " +#~ "itself\n" +#~ " -m fill width with a comma separated list of " +#~ "entries\n" +#~ msgstr "" +#~ " -g (ignorada)\n" +#~ " -G, --no-group non amosa-la información do grupo\n" +#~ " -h, --human-readable escribi-los tamaños nun formato lexible " +#~ "para\n" +#~ " humanos (p.ex. 1K 234M 2G)\n" +#~ " --si o mesmo, mais usando potencias de 1000, non " +#~ "1024\n" +#~ " -H igual que `--si' por agora; cambiará para " +#~ "seguir\n" +#~ " a norma POSIX\n" +#~ " --indicator-style=PALABRA engadir un indicador de estilo PALABRA " +#~ "aos\n" +#~ " nomes das entradas: none [ningún] " +#~ "(defecto),\n" +#~ " classify [clasificar] (-F), file-type\n" +#~ " [tipo de ficheiro] (-p)\n" +#~ " -i, --inode escribi-lo número de índice de cada " +#~ "ficheiro\n" +#~ " -I, --ignore=PATRÓN non amosa-las entradas que encaixen co " +#~ "PATRÓN\n" +#~ " de shell\n" +#~ " -k, --kilobytes coma --block-size=1024\n" +#~ " -l usar un formato longo de listaxe\n" +#~ " -L, --dereference amosa-las entradas apuntadas polas ligazóns\n" +#~ " simbólicas\n" +#~ " -m encher ao ancho cunha lista de entradas " +#~ "separadas\n" +#~ " por coma\n" +#~ " -n, --numeric-uid-gid amosar UIDs e GIDs numéricos en vez dos " +#~ "nomes\n" +#~ " -N, --literal amosa-los nomes reais (non tratar p.ex. os\n" +#~ " caracteres de control como especiais)\n" +#~ " -o usar un formato de listado longo sen a " +#~ "información\n" +#~ " do grupo\n" +#~ " -p, --file-type engadir un indicador ás entradas (un de /" +#~ "=@|)\n" +#~ " -q, --hide-control-chars escribir ? en vez dos caracteres non " +#~ "gráficos\n" +#~ " --show-control-chars amosa-los caracteres non gráficos tal como " +#~ "son\n" +#~ " (predeterminado a menos que o programa " +#~ "sexa\n" +#~ " `ls' e a saída sexa un terminal)\n" +#~ " -Q, --quote-name arrodea-los nomes entre comiñas\n" +#~ " --quoting-style=PALABRA utiliza-lo estilo de cita PALABRA para os " +#~ "nomes\n" +#~ " das entradas:\n" +#~ " literal, shell, shell-always, c, escape\n" +#~ " -r, --reverse inverte-la orde ao face-la ordenación\n" +#~ " -R, --recursive amosa-los subdirectorios recursivamente\n" +#~ " -s, --size escribi-lo tamaño de cada ficheiro, en " +#~ "bloques\n" + +#, fuzzy +#~ msgid "" +#~ " -S sort by file size\n" +#~ " --sort=WORD extension -X, none -U, size -S, time -t,\n" +#~ " version -v\n" +#~ " status -c, time -t, atime -u, access -u, use " +#~ "-u\n" +#~ " --time=WORD show time as WORD instead of modification " +#~ "time:\n" +#~ " atime, access, use, ctime or status; use\n" +#~ " specified time as sort key if --sort=time\n" +#~ " --time-style=WORD show times using style WORD:\n" +#~ " full-iso, iso, locale, posix-iso\n" +#~ " -t sort by modification time\n" +#~ " -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +#~ " -u with -lt: sort by, and show, access time\n" +#~ " with -l: show access time and sort by " +#~ "name\n" +#~ " otherwise: sort by access time\n" +#~ " -U do not sort; list entries in directory " +#~ "order\n" +#~ " -v sort by version\n" +#~ " -w, --width=COLS assume screen width instead of current " +#~ "value\n" +#~ " -x list entries by lines instead of by columns\n" +#~ " -X sort alphabetically by entry extension\n" +#~ " -1 list one file per line\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "By default, color is not used to distinguish types of files. That is\n" +#~ "equivalent to using --color=none. Using the --color option without the\n" +#~ "optional WHEN argument is equivalent to using --color=always. With\n" +#~ "--color=auto, color codes are output only if standard output is " +#~ "connected\n" +#~ "to a terminal (tty).\n" +#~ msgstr "" +#~ " -S ordenar polo tamaño dos ficheiros\n" +#~ " --sort=PALABRA extension [extensión] -X, none [ningunha] -" +#~ "U,\n" +#~ " size [tamaño] -S, time [data] -t, version\n" +#~ " [version] -v, status [estado] -c, atime " +#~ "[data\n" +#~ " de acceso] -u, access [acceso] -u, use " +#~ "[use] -u\n" +#~ " --time=PALABRA amosa-la data segundo PALABRA, en vez da " +#~ "data\n" +#~ " de modificación: atime, access, use, " +#~ "ctime, ou\n" +#~ " status; usa-la data especificada para " +#~ "ordenar\n" +#~ " se --sort=time\n" +#~ " -t ordenar pola data de modificación\n" +#~ " -T, --tabsize=COLS establece-los tabuladores cada COLS, en vez " +#~ "de 8\n" +#~ " -u con -lt: amosar e ordenar pola data de " +#~ "acceso\n" +#~ " con -l: amosa-la data de acceso e ordenar " +#~ "polo\n" +#~ " nome\n" +#~ " doutro xeito: ordear pola data de acceso\n" +#~ " -U non ordenar; amosa-las entradas na orde do\n" +#~ " directorio\n" +#~ " -v ordenar por versión\n" +#~ " -w, --width=COLS establece-la anchura da pantalla en vez do\n" +#~ " valor actual\n" +#~ " -x amosa-las entradas en liñas, en vez de " +#~ "columnas\n" +#~ " -X ordenar alfabéticamente pola extensión da\n" +#~ " entrada\n" +#~ " -1 amosar un ficheiro por liña\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosa-la información da versión e saír\n" +#~ "\n" +#~ "Por defecto, non se usan cores para distingui-los tipos de ficheiros. É\n" +#~ "equivalente a usar --color=none. Usa-la opción --color sen o argumento\n" +#~ "opcional CANDO é equivalente a usar --color=always. Con --color=auto, " +#~ "os\n" +#~ "códigos de cor escríbense só se a saída está conectada a un terminal " +#~ "(tty).\n" + +#, fuzzy +#~ msgid "" +#~ "Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +#~ "for even very expensive hardware probing to recover the data.\n" +#~ "\n" +#~ " -f, --force change permissions to allow writing if necessary\n" +#~ " -n, --iterations=N Overwrite N times instead of the default (%d)\n" +#~ " -s, --size=N shred this many bytes (suffixes like k, M, G accepted)\n" +#~ " -u, --remove truncate and remove file after overwriting\n" +#~ " -v, --verbose show progress\n" +#~ " -x, --exact do not round file sizes up to the next full block\n" +#~ " -z, --zero add a final overwrite with zeros to hide shredding\n" +#~ " - shred standard output\n" +#~ " --help display this help and exit\n" +#~ " --version print version information and exit\n" +#~ "\n" +#~ "Delete FILE(s) if --remove (-u) is specified. The default is not to " +#~ "remove\n" +#~ "the files because it is common to operate on device files like /dev/hda,\n" +#~ "and those files usually should not be removed. When operating on " +#~ "regular\n" +#~ "files, most people use the --remove option.\n" +#~ "\n" +#~ "CAUTION: Note that shred relies on a very important assumption:\n" +#~ "that the filesystem overwrites data in place. This is the traditional\n" +#~ "way to do things, but many modern filesystem designs do not satisfy this\n" +#~ "assumption. The following are examples of filesystems on which shred is\n" +#~ "not effective:\n" +#~ "\n" +#~ "* log-structured or journaled filesystems, such as those supplied with\n" +#~ " AIX and Solaris (and JFS, ReiserFS, XFS, etc.)\n" +#~ "\n" +#~ "* filesystems that write redundant data and carry on even if some writes\n" +#~ " fail, such as RAID-based filesystems\n" +#~ "\n" +#~ "* filesystems that make snapshots, such as Network Appliance's NFS " +#~ "server\n" +#~ "\n" +#~ "* filesystems that cache in temporary locations, such as NFS\n" +#~ " version 3 clients\n" +#~ "\n" +#~ "* compressed filesystems\n" +#~ "\n" +#~ "In addition, file system backups and remote mirrors may contain copies\n" +#~ "of the file that cannot be removed, and that will allow a shredded file\n" +#~ "to be recovered later.\n" +#~ msgstr "" +#~ "Sobrescribe repetidamente o(s) FICHEIRO(s) indicados, para facer que " +#~ "sexa\n" +#~ "máis difícil recuperar os datos, mesmo en hardware complexo.\n" +#~ "\n" +#~ " -f, --force alterar os permisos para poder escribir se for " +#~ "necesario\n" +#~ " -n, --iterations=N Sobrescribir N veces en vez do predeterminado (%d)\n" +#~ " -s, --size=N destruír este número de bytes (acéptanse sufixos coma k, " +#~ "M, G)\n" +#~ " -u, --remove truncar e eliminar o ficheiro tras sobrescribilo\n" +#~ " -v, --verbose amosar a evolución\n" +#~ " -x, --exact non axustar o tamaño dos ficheiros ata un bloque " +#~ "completo\n" +#~ " -z, --zero sobrescribir con ceros ao rematar para agochar a " +#~ "destrucción\n" +#~ " - saída estándar do shred\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosa-la información da versión e saír\n" +#~ "\n" +#~ "Os ficheiros bórranse ao indicarse --remove (-u). Por omisión non se " +#~ "eliminan\n" +#~ "porque o habitual é actuar en ficheiros de dispositivo como /dev/hda, e\n" +#~ "normalmente estes non deben ser borrados. No caso dos ficheiros " +#~ "regulares,\n" +#~ "a maioría da xente usa a opción --remove.\n" +#~ "\n" +#~ "PRECAUCIÓN: Advirta que o shred se basea en asumir algo moi importante:\n" +#~ "que os sistemas de ficheiros sobrescriben os datos. Isto é o xeito " +#~ "tradicional\n" +#~ "de facelo, pero moitos sistemas de ficheiros modernos están deseñados " +#~ "para\n" +#~ "non satisfacer isto. Estes son exemplos de sistemas de ficheiros cos que " +#~ "o\n" +#~ "shred non é efectivo:\n" +#~ "\n" +#~ "* sistemas 'journaled' ou estructurados con log, como os fornecidos con " +#~ "AIX\n" +#~ " e Solaris (e JFS, ReiserFS, XFS, etc.)\n" +#~ "\n" +#~ "* sistemas que escriben datos redundantes e continúan mesmo se algunha\n" +#~ " escritura falla, como os sistemas de ficheiros baseados en RAID\n" +#~ "\n" +#~ "* sistemas que fan capturas periódicas, como o servidor NFS de Network\n" +#~ " Appliance\n" +#~ "\n" +#~ "* sistemas que fan caché en localizacións temporais, como os clientes de\n" +#~ " NFS versión 3\n" +#~ "\n" +#~ "* sistemas de ficheiros comprimidos\n" + +#~ msgid "" +#~ "Update the access and modification times of each FILE to the current " +#~ "time.\n" +#~ "\n" +#~ " -a change only the access time\n" +#~ " -c, --no-create do not create any files\n" +#~ " -d, --date=STRING parse STRING and use it instead of current time\n" +#~ " -f (ignored)\n" +#~ " -m change only the modification time\n" +#~ " -r, --reference=FILE use this file's times instead of current time\n" +#~ " -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current " +#~ "time\n" +#~ " --time=WORD set time given by WORD: access atime use (same " +#~ "as -a)\n" +#~ " modify mtime (same as -m)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Note that the three time-date formats recognized for the -d and -t " +#~ "options\n" +#~ "and for the obsolescent argument are all different.\n" +#~ msgstr "" +#~ "Actualiza a data de acceso e modificación de cada FICHEIRO á data " +#~ "actual.\n" +#~ "\n" +#~ " -a cambiar só a data de acceso\n" +#~ " -c, --no-create non crear ningún ficheiro\n" +#~ " -d, --date=CADEA analizar CADEA e usala en vez da data actual\n" +#~ " -f (ignorada)\n" +#~ " -m cambiar só a data de modificación\n" +#~ " -r, --reference=FICH usa-las datas deste ficheiro en vez da data " +#~ "actual\n" +#~ " -t DATA usar [[SS]AA]MMDDhhmm[.ss] en vez da data " +#~ "actual\n" +#~ " --time=PALABRA establece-lo tempo indicado por PALABRA:\n" +#~ " [acceso] -a, atime [data de acceso] -a,\n" +#~ " mtime [data de modificación] -m, modify\n" +#~ " [modificación] -m, use [uso] -a\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosa-la información da versión e saír\n" +#~ "\n" +#~ "Advirta de que os tres formatos de hora/data recoñecidos polas opcións -" +#~ "d\n" +#~ "e -t, e polo argumento obsoleto, son todos diferentes.\n" + +#~ msgid "" +#~ "Warning: the meaning of `-P' will change in the future to conform to " +#~ "POSIX.\n" +#~ "Use `--parents' for the old meaning, and `--no-dereference' for the new " +#~ "one." +#~ msgstr "" +#~ "Aviso: o significado de `-P' mudará no futuro para seguir a norma POSIX.\n" +#~ "Use `--parents' para o significado antigo, e `--no-dereference' para o " +#~ "novo." + +#, fuzzy +#~ msgid "Copyright (C) 2001 Free Software Foundation, Inc." +#~ msgstr "Copyright (C) 1999 Free Software Foundation, Inc." + +#, fuzzy +#~ msgid "%a %b %d %H:%M:%S %Y" +#~ msgstr "%e %b %Y %H:%M" + +#~ msgid "" +#~ "when creating character special files, major and minor device\n" +#~ "numbers must be specified" +#~ msgstr "" +#~ "ao crear ficheiros especiais de carácter, débense indicar os números\n" +#~ "de dispositivo `major' e `minor'" + +#~ msgid "days" +#~ msgstr "días" + +#~ msgid "users" +#~ msgstr "usuarios" + +#, fuzzy +#~ msgid "%s: only one signal specififier allowed" +#~ msgstr "só se pode especificar un argumento" + +#, fuzzy +#~ msgid "" +#~ "Display the current time in the given FORMAT, or set the system date.\n" +#~ "\n" +#~ " -d, --date=STRING display time described by STRING, not `now'\n" +#~ " -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +#~ msgstr "" +#~ "Amosa-la data actual no FORMATO indicado, ou establece-la data do " +#~ "sistema.\n" +#~ "\n" +#~ " -d, --date=CADEA amosa-la data descrita por CADEA, non " +#~ "`agora'\n" +#~ " -f, --file=FICH_DATA coma --date, unha vez para cada liña en " +#~ "FICH_DATA\n" +#~ " -I, --iso-8601[=ESPDATA] escribir unha cadea de data/hora seguindo o\n" +#~ " estándar ISO-8601. ESPDATA=`date' (ou sen " +#~ "nada)\n" +#~ " para que só o sexa a data, `hours', `minutes' " +#~ "ou\n" +#~ " `seconds' para a data e a hora coa precisión\n" +#~ " indicada.\n" +#~ " -r, --reference=FICH amosa-la última data de modificación de FICH\n" +#~ " -R, --rfc-822 amosar unha cadea coa data seguindo o RFC-" +#~ "822\n" +#~ " -s, --set=CADEA establece-la data descrita por CADEA\n" +#~ " -u, --utc, --universal escribir ou establece-la Hora Universal " +#~ "Coordinada\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosa-la información da versión e saír\n" + +#, fuzzy +#~ msgid "" +#~ "Run COMMAND with root directory set to NEWROOT.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +#~ msgstr "" +#~ "Visualiza-la conta de comprobación CRC e o número de bytes de cada " +#~ "FICHEIRO.\n" +#~ "\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "FORMAT controls the output. The only valid option for the second form\n" +#~ "specifies Coordinated Universal Time. Interpreted sequences are:\n" +#~ "\n" +#~ " %%%% a literal %%\n" +#~ " %%a locale's abbreviated weekday name (Sun..Sat)\n" +#~ " %%A locale's full weekday name, variable length (Sunday..Saturday)\n" +#~ " %%b locale's abbreviated month name (Jan..Dec)\n" +#~ " %%B locale's full month name, variable length (January..December)\n" +#~ " %%c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +#~ " %%C century (year divided by 100 and truncated to an integer) [00-" +#~ "99]\n" +#~ " %%d day of month (01..31)\n" +#~ " %%D date (mm/dd/yy)\n" +#~ " %%e day of month, blank padded ( 1..31)\n" +#~ " %%h same as %%b\n" +#~ " %%H hour (00..23)\n" +#~ " %%I hour (01..12)\n" +#~ " %%j day of year (001..366)\n" +#~ " %%k hour ( 0..23)\n" +#~ " %%l hour ( 1..12)\n" +#~ " %%m month (01..12)\n" +#~ " %%M minute (00..59)\n" +#~ " %%n a newline\n" +#~ " %%p locale's AM or PM\n" +#~ " %%r time, 12-hour (hh:mm:ss [AP]M)\n" +#~ " %%s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +#~ " %%S second (00..60)\n" +#~ " %%t a horizontal tab\n" +#~ " %%T time, 24-hour (hh:mm:ss)\n" +#~ " %%u day of week (1..7); 1 represents Monday\n" +#~ " %%U week number of year with Sunday as first day of week (00..53)\n" +#~ " %%V week number of year with Monday as first day of week (01..53)\n" +#~ " %%w day of week (0..6); 0 represents Sunday\n" +#~ " %%W week number of year with Monday as first day of week (00..53)\n" +#~ " %%x locale's date representation (mm/dd/yy)\n" +#~ " %%X locale's time representation (%%H:%%M:%%S)\n" +#~ " %%y last two digits of year (00..99)\n" +#~ " %%Y year (1970...)\n" +#~ " %%z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +#~ " %%Z time zone (e.g., EDT), or nothing if no time zone is " +#~ "determinable\n" +#~ "\n" +#~ "By default, date pads numeric fields with zeroes. GNU date recognizes\n" +#~ "the following modifiers between `%%' and a numeric directive.\n" +#~ "\n" +#~ " `-' (hyphen) do not pad the field\n" +#~ " `_' (underscore) pad the field with spaces\n" +#~ msgstr "" +#~ "\n" +#~ "FORMATO controla a saída. A única opción válida para a segunda forma\n" +#~ "indica a Hora Universal Coordinada. As secuencias interpretadas son:\n" +#~ "\n" +#~ " %%%% un %% literal\n" +#~ " %%a o nome de semana abreviado localizado (Dom..Sáb)\n" +#~ " %%A o nome de semana completo localizado, lonx. variable (Domingo.." +#~ "Sábado)\n" +#~ " %%b o nome de mes abreviado localizado (Xan..Dec)\n" +#~ " %%B o nome de mes completo localizado, lonx. variable (Xaneiro.." +#~ "Decembro)\n" +#~ " %%c data e hora localizadas (Sáb Nov 04 12:02:33 EST 1989)\n" +#~ " %%d día de mes (01..31)\n" +#~ " %%D data (mm/dd/aa)\n" +#~ " %%e día de mes, recheado con espacios en blanco ( 1..31)\n" +#~ " %%h o mesmo que %%b\n" +#~ " %%H hora (00..23)\n" +#~ " %%I hora (01..12)\n" +#~ " %%j día do ano (001..336)\n" +#~ " %%k hora ( 0..23)\n" +#~ " %%l hora ( 1..12)\n" +#~ " %%m mes (01..12)\n" +#~ " %%M minuto (00..59)\n" +#~ " %%n un carácter de nova liña\n" +#~ " %%p AM ou PM localizados\n" +#~ " %%r hora, en formato de 12 horas (hh:mm:ss [AP]M)\n" +#~ " %%s segundos dende as 00:00:00 do 1 de xaneiro de 1970 (extensión " +#~ "GNU)\n" +#~ " %%S segundo (00..60)\n" +#~ " %%t un tabulador horizontal\n" +#~ " %%T hora, en formato de 24 horas (hh:mm:ss)\n" +#~ " %%U número de semana do ano, co domingo de primeiro día da semana " +#~ "(00..53)\n" +#~ " %%V número de semana do ano, co luns de primeiro día da semana " +#~ "(01..53)\n" +#~ " %%w día da semana (0..6); 0 é o domingo\n" +#~ " %%W número de semana do ano, co luns de primeiro día da semana " +#~ "(00..53)\n" +#~ " %%x representación da data localizada (dd/mm/aa)\n" +#~ " %%X representación da hora localizada (%%H:%%M:%%S)\n" +#~ " %%y últimos dous díxitos do ano (00..99)\n" +#~ " %%Y ano (1970..)\n" +#~ " %%z zona horaria numérica estilo RFC-822 (+0100) (extensión non " +#~ "estándar)\n" +#~ " %%Z zona horaria (p.ex, CET), ou nada se non se pode determina-la " +#~ "zona\n" +#~ "\n" +#~ "Por defecto, date rechea os campos numéricos con ceros. O date de GNU\n" +#~ "recoñece os seguintes modificadores entre `%%' e unha directiva " +#~ "numérica.\n" +#~ "\n" +#~ " `-' (guión) non rechea-lo campo\n" +#~ " `_' (subliñado) rechea-lo campo con espacios\n" + +#~ msgid "" +#~ "Echo the STRING(s) to standard output.\n" +#~ "\n" +#~ " -n do not output the trailing newline\n" +#~ " -e enable interpretation of the backslash-escaped " +#~ "characters\n" +#~ " listed below\n" +#~ " -E disable interpretation of those sequences in STRINGs\n" +#~ " --help display this help and exit (should be alone)\n" +#~ " --version output version information and exit (should be alone)\n" +#~ "\n" +#~ "Without -E, the following sequences are recognized and interpolated:\n" +#~ "\n" +#~ " \\NNN the character whose ASCII code is NNN (octal)\n" +#~ " \\\\ backslash\n" +#~ " \\a alert (BEL)\n" +#~ " \\b backspace\n" +#~ " \\c suppress trailing newline\n" +#~ " \\f form feed\n" +#~ " \\n new line\n" +#~ " \\r carriage return\n" +#~ " \\t horizontal tab\n" +#~ " \\v vertical tab\n" +#~ msgstr "" +#~ "Escribi-la(s) CADEA(s) á saída estándar.\n" +#~ "\n" +#~ " -n non escribi-lo carácter de nova liña ó final\n" +#~ " -e activa-la interpretación de caracteres de escape " +#~ "mediante\n" +#~ " barra invertida, listados abaixo\n" +#~ " -E desactiva-la interpretación desas secuencias nas " +#~ "CADEAs\n" +#~ " --help amosar esta axuda e saír (ten que estar soa)\n" +#~ " --version amosa-la información da versión e saír (ten que estar " +#~ "soa)\n" +#~ "\n" +#~ "Sen -E, as seguintes secuencias son recoñecidas e inseridas:\n" +#~ "\n" +#~ " \\NNN o carácter co código ASCII NNN (en octal)\n" +#~ " \\\\ barra invertida\n" +#~ " \\a campá (BEL)\n" +#~ " \\b borrado do carácter anterior\n" +#~ " \\c suprime o carácter de nova liña final\n" +#~ " \\f salto de páxina\n" +#~ " \\n nova liña\n" +#~ " \\r retorno de carro\n" +#~ " \\t tabulación horizontal\n" +#~ " \\v tabulación vertical\n" + +#, fuzzy +#~ msgid "" +#~ "Print the value of EXPRESSION to standard output. A blank line below\n" +#~ "separates increasing precedence groups. EXPRESSION may be:\n" +#~ "\n" +#~ " ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +#~ "\n" +#~ " ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +#~ "\n" +#~ " ARG1 < ARG2 ARG1 is less than ARG2\n" +#~ " ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +#~ " ARG1 = ARG2 ARG1 is equal to ARG2\n" +#~ " ARG1 != ARG2 ARG1 is unequal to ARG2\n" +#~ " ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +#~ " ARG1 > ARG2 ARG1 is greater than ARG2\n" +#~ "\n" +#~ " ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +#~ " ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +#~ "\n" +#~ " ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +#~ " ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +#~ " ARG1 %% ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +#~ "\n" +#~ " STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +#~ "\n" +#~ " match STRING REGEXP same as STRING : REGEXP\n" +#~ " substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +#~ " index STRING CHARS index in STRING where any CHARS is found, or " +#~ "0\n" +#~ " length STRING length of STRING\n" +#~ " + TOKEN interpret TOKEN as a string, even if it is " +#~ "a\n" +#~ " keyword like `match' or an operator like " +#~ "`/'\n" +#~ "\n" +#~ " ( EXPRESSION ) value of EXPRESSION\n" +#~ msgstr "" +#~ "Escribi-lo valor de EXPRESIÓN á saída estándar. As liñas en branco " +#~ "separan\n" +#~ "os grupos de prioridade crecente. EXPRESIÓN pode ser:\n" +#~ "\n" +#~ " ARG1 | ARG2 ARG1 se non é nulo nin 0, doutro xeito ARG2\n" +#~ "\n" +#~ " ARG1 & ARG2 ARG1 se ningún argumento é nulo ou cero, doutro xeito " +#~ "0\n" +#~ "\n" +#~ " ARG1 < ARG2 ARG1 é menor que ARG2\n" +#~ " ARG1 <= ARG2 ARG1 é menor ou igual que ARG2\n" +#~ " ARG1 = ARG2 ARG1 é igual que ARG2\n" +#~ " ARG1 != ARG2 ARG1 é distinto que ARG2\n" +#~ " ARG1 >= ARG2 ARG1 é maior ou igual que ARG2\n" +#~ " ARG1 > ARG2 ARG1 é maior que ARG2\n" +#~ "\n" +#~ " ARG1 + ARG2 suma aritmética de ARG1 e ARG2\n" +#~ " ARG1 - ARG2 resta aritmética de ARG1 e ARG2\n" +#~ "\n" +#~ " ARG1 * ARG2 producto aritmético de ARG1 e ARG2\n" +#~ " ARG1 / ARG2 cociente aritmético de ARG1 dividido entre ARG2\n" +#~ " ARG1 %% ARG2 resto aritmético de ARG1 dividido entre ARG2\n" +#~ "\n" +#~ " CADEA : REGEXP encaixe da expresión regular REGEXP en CADEA\n" +#~ "\n" +#~ " match CADEA REGEXP o mesmo que CADEA : REGEXP\n" +#~ " substr CADEA POS LONXIT subcadea de CADEA, contando a POS dende 1\n" +#~ " index CADEA CARACTERES índice da CADEA onde se atopa calquera dos\n" +#~ " CARACTERES, senón 0\n" +#~ " length CADEA lonxitude da CADEA\n" +#~ " quote PALABRA interpreta PALABRA como unha cadea, mesmo se\n" +#~ " é unha palabra reservada coma `match' ou " +#~ "un\n" +#~ " un operador coma `/'\n" +#~ "\n" +#~ " ( EXPRESIÓN ) valor de EXPRESIÓN\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " -l produce long format output for the specified USERs\n" +#~ " -b omit the user's home directory and shell in long " +#~ "format\n" +#~ " -h omit the user's project file in long format\n" +#~ " -p omit the user's plan file in long format\n" +#~ " -s do short format output, this is the default\n" +#~ " -f omit the line of column headings in short format\n" +#~ " -w omit the user's full name in short format\n" +#~ " -i omit the user's full name and remote host in short " +#~ "format\n" +#~ " -q omit the user's full name, remote host and idle time\n" +#~ " in short format\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "A lightweight `finger' program; print user information.\n" +#~ "The utmp file will be %s.\n" +#~ msgstr "" +#~ "\n" +#~ " -l escribir a saída cun formato longo\n" +#~ " -b omiti-lo directorio do usuario e a shell no formato " +#~ "longo\n" +#~ " -h omiti-lo ficheiro de proxecto do usuario no formato " +#~ "longo\n" +#~ " -p omiti-lo ficheiro plan do usuario no formato longo\n" +#~ " -s escribir a saída cun formato curto (por defecto)\n" +#~ " -f omiti-la liña de cabeceiras no formato curto\n" +#~ " -w omiti-lo nome completo do usuario no formato curto\n" +#~ " -i omiti-lo nome completo do usuario e a máquina remota " +#~ "no\n" +#~ " formato curto\n" +#~ " -q omiti-lo nome completo do usuario, a máquina remota e " +#~ "o\n" +#~ " tempo de inactividade no formato curto\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosa-la información da versión e saír\n" +#~ "\n" +#~ "Un programa `finger' lixeiro; escribe a información de usuario\n" +#~ "O ficheiro utmp será %s.\n" + +#, fuzzy +#~ msgid "" +#~ "Print ARGUMENT(s) according to FORMAT.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "FORMAT controls the output as in C printf. Interpreted sequences are:\n" +#~ "\n" +#~ " \\\" double quote\n" +#~ " \\0NNN character with octal value NNN (0 to 3 digits)\n" +#~ " \\\\ backslash\n" +#~ " \\a alert (BEL)\n" +#~ " \\b backspace\n" +#~ " \\c produce no further output\n" +#~ " \\f form feed\n" +#~ " \\n new line\n" +#~ " \\r carriage return\n" +#~ " \\t horizontal tab\n" +#~ " \\v vertical tab\n" +#~ " \\xNNN byte with hexadecimal value NNN (1 to 3 digits)\n" +#~ "\n" +#~ " \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +#~ " \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +#~ " %%%% a single %%\n" +#~ " %%b ARGUMENT as a string with `\\' escapes interpreted\n" +#~ "\n" +#~ "and all C format specifications ending with one of diouxXfeEgGcs, with\n" +#~ "ARGUMENTs converted to proper type first. Variable widths are handled.\n" +#~ msgstr "" +#~ "Escribi-lo(s) ARGUMENTO(s) seguindo o FORMATO.\n" +#~ "\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosa-la información da versión e saír\n" +#~ "\n" +#~ "FORMATO controla a saída, como en printf de C. As secuencias " +#~ "interpretadas\n" +#~ "son:\n" +#~ "\n" +#~ " \\\" comiñas\n" +#~ " \\0NNN carácter co valor octal NNN (0 a 3 díxitos)\n" +#~ " \\\\ barra invertida\n" +#~ " \\a campá audible (BEL)\n" +#~ " \\b borrar carácter anterior\n" +#~ " \\c non escribir nada máis\n" +#~ " \\f salto de páxina\n" +#~ " \\n nova liña\n" +#~ " \\r retorno de carro\n" +#~ " \\t tabulación horizontal\n" +#~ " \\v tabulación vertical\n" +#~ " \\xNNN carácter co valor hexadecimal NNN (1 a 3 díxitos)\n" +#~ "\n" +#~ " %%%% un carácter %%\n" +#~ " %%b ARGUMENTO é unha cadea con caracteres de escape `\\' " +#~ "interpretados\n" +#~ "\n" +#~ "e tódalas especificacións de formato de C rematando cunha das letras\n" +#~ "diouxXfeEgGcs, convertendo os ARGUMENTOs ó tipo correcto primeiro. " +#~ "Manéxanse\n" +#~ "as anchuras das variables.\n" + +#, fuzzy +#~ msgid "" +#~ "Print the full filename of the current working directory.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Visualiza-la conta de comprobación CRC e o número de bytes de cada " +#~ "FICHEIRO.\n" +#~ "\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Special characters:\n" +#~ " * dsusp CHAR CHAR will send a terminal stop signal once input " +#~ "flushed\n" +#~ " eof CHAR CHAR will send an end of file (terminate the input)\n" +#~ " eol CHAR CHAR will end the line\n" +#~ " * eol2 CHAR alternate CHAR for ending the line\n" +#~ " erase CHAR CHAR will erase the last character typed\n" +#~ " intr CHAR CHAR will send an interrupt signal\n" +#~ " kill CHAR CHAR will erase the current line\n" +#~ " * lnext CHAR CHAR will enter the next character quoted\n" +#~ " quit CHAR CHAR will send a quit signal\n" +#~ " * rprnt CHAR CHAR will redraw the current line\n" +#~ " start CHAR CHAR will restart the output after stopping it\n" +#~ " stop CHAR CHAR will stop the output\n" +#~ " susp CHAR CHAR will send a terminal stop signal\n" +#~ " * swtch CHAR CHAR will switch to a different shell layer\n" +#~ " * werase CHAR CHAR will erase the last word typed\n" +#~ msgstr "" +#~ "\n" +#~ "Caracteres especiais:\n" +#~ "* dsusp CARAC CARAC enviará un sinal de para-lo terminal unha vez que " +#~ "a\n" +#~ " entrada sexa limpada\n" +#~ " eof CARAC CARAC enviará un final de ficheiro (remata-la entrada)\n" +#~ " eol CARAC CARAC enviará un final de liña\n" +#~ "* eol2 CARAC CARAC alternativo para rematar unha liña\n" +#~ " erase CARAC CARAC borrará o último carácter escrito\n" +#~ " intr CARAC CARAC enviará un sinal de interrupción\n" +#~ " kill CARAC CARAC borrará a liña actual\n" +#~ "* lnext CARAC CARAC introducirá o seguinte carácter tal como é\n" +#~ " quit CARAC CARAC enviará un sinal de saída\n" +#~ "* rprnt CARAC CARAC redebuxará a liña actual\n" +#~ " start CARAC CARAC reiniciará a saída despois de parala\n" +#~ " stop CARAC CARAC parará a saída\n" +#~ " susp CARAC CARAC enviará un sinal de parada do terminal\n" +#~ "* swtch CARAC CARAC trocará a unha capa de shell distinta\n" +#~ "* werase CARAC CARAC borrará a última palabra escrita\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Special settings:\n" +#~ " N set the input and output speeds to N bauds\n" +#~ " * cols N tell the kernel that the terminal has N columns\n" +#~ " * columns N same as cols N\n" +#~ " ispeed N set the input speed to N\n" +#~ " * line N use line discipline N\n" +#~ " min N with -icanon, set N characters minimum for a completed " +#~ "read\n" +#~ " ospeed N set the output speed to N\n" +#~ " * rows N tell the kernel that the terminal has N rows\n" +#~ " * size print the number of rows and columns according to the " +#~ "kernel\n" +#~ " speed print the terminal speed\n" +#~ " time N with -icanon, set read timeout of N tenths of a second\n" +#~ msgstr "" +#~ "\n" +#~ "Parámetros especiais:\n" +#~ " N establece-las velocidades de entrada e de saída a N " +#~ "baudios\n" +#~ "* cols N dicirlle ó núcleo que o terminal ten N columnas\n" +#~ "* columns N o mesmo que cols N\n" +#~ " ispeed N establece-la velocidade de entrada a N\n" +#~ "* line N usa-la disciplina de liña N\n" +#~ " min N con -icanon, establecer a N o número de caracteres mínimo " +#~ "para\n" +#~ " unha lectura completa\n" +#~ " ospeed N establece-la velocidade de saída a N\n" +#~ "* rows N dicirlle ó núcleo que o terminal ten N ringleiras\n" +#~ "* size escribi-lo número de ringleiras e columnas segundo o " +#~ "núcleo\n" +#~ " speed escribi-la velocidade do terminal\n" +#~ " time N con -icanon, establece-lo tempo de expiración de lectura, " +#~ "en\n" +#~ " N décimas de segundo\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Input settings:\n" +#~ " [-]brkint breaks cause an interrupt signal\n" +#~ " [-]icrnl translate carriage return to newline\n" +#~ " [-]ignbrk ignore break characters\n" +#~ " [-]igncr ignore carriage return\n" +#~ " [-]ignpar ignore characters with parity errors\n" +#~ " * [-]imaxbel beep and do not flush a full input buffer on a " +#~ "character\n" +#~ " [-]inlcr translate newline to carriage return\n" +#~ " [-]inpck enable input parity checking\n" +#~ " [-]istrip clear high (8th) bit of input characters\n" +#~ " * [-]iuclc translate uppercase characters to lowercase\n" +#~ " * [-]ixany let any character restart output, not only start " +#~ "character\n" +#~ " [-]ixoff enable sending of start/stop characters\n" +#~ " [-]ixon enable XON/XOFF flow control\n" +#~ " [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +#~ " [-]tandem same as [-]ixoff\n" +#~ msgstr "" +#~ "\n" +#~ "Parámetros da entrada:\n" +#~ " [-]brkint o carácter `break' provoca un sinal de interrupción\n" +#~ " [-]icrnl converter un retorno de carro a unha nova liña\n" +#~ " [-]ignbrk ignora-los caracteres `break'\n" +#~ " [-]igncr ignora-los retornos de carro\n" +#~ " [-]ignpar ignora-los caracteres con erro de paridade\n" +#~ "* [-]imaxbel se o buffer de entrada está cheo e chega un carácter, " +#~ "non\n" +#~ " limpalo e emitir un pitido\n" +#~ " [-]inlcr converter unha nova liña a un retorno de carro\n" +#~ " [-]inpck activa-la comprobación da paridade da entrada\n" +#~ " [-]istrip limpa-lo bit alto (oitavo) dos caracteres de entrada\n" +#~ "* [-]iuclc converte-los caracteres maiúsculos a minúsculos\n" +#~ "* [-]ixany permitir que calquera carácter reinicie a saída, non só\n" +#~ " o carácter de comezo\n" +#~ " [-]ixoff activa-lo envío de caracteres de comezo/parada\n" +#~ " [-]ixon activa-lo control de fluxo XON/XOFF\n" +#~ " [-]parmrk marcar erros de paridade (cunha secuencia 255-0-" +#~ "carácter)\n" +#~ " [-]tandem o mesmo que [-]ixoff\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Local settings:\n" +#~ " [-]crterase echo erase characters as backspace-space-backspace\n" +#~ " * crtkill kill all line by obeying the echoprt and echoe settings\n" +#~ " * -crtkill kill all line by obeying the echoctl and echok settings\n" +#~ " * [-]ctlecho echo control characters in hat notation (`^c')\n" +#~ " [-]echo echo input characters\n" +#~ " * [-]echoctl same as [-]ctlecho\n" +#~ " [-]echoe same as [-]crterase\n" +#~ " [-]echok echo a newline after a kill character\n" +#~ " * [-]echoke same as [-]crtkill\n" +#~ " [-]echonl echo newline even if not echoing other characters\n" +#~ " * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +#~ " [-]icanon enable erase, kill, werase, and rprnt special " +#~ "characters\n" +#~ " [-]iexten enable non-POSIX special characters\n" +#~ " [-]isig enable interrupt, quit, and suspend special characters\n" +#~ " [-]noflsh disable flushing after interrupt and quit special " +#~ "characters\n" +#~ " * [-]prterase same as [-]echoprt\n" +#~ " * [-]tostop stop background jobs that try to write to the terminal\n" +#~ " * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +#~ msgstr "" +#~ "\n" +#~ "Parámetros locais:\n" +#~ " [-]crterase escribi-los caracteres de suprimir coma borrar-espacio-" +#~ "borrar\n" +#~ "* crtkill eliminar toda a liña obedecendo ós parámetros echoprt e " +#~ "echoe\n" +#~ "* -crtkill elimitar toda a liña obedecendo ós parámetros echoctl e " +#~ "echok\n" +#~ "* [-]ctlecho escribi-los caracteres de control cunha notación en " +#~ "sombreiro\n" +#~ " (`^c')\n" +#~ " [-]echo escribi-los caracteres da entrada\n" +#~ "* [-]echoctl o mesmo que [-]ctlecho\n" +#~ " [-]echoe o mesmo que [-]crterase\n" +#~ " [-]echok escribir unha nova liña despois dun carácter de matar\n" +#~ "* [-]echoke o mesmo que [-]crtkill\n" +#~ " [-]echonl escribir unha nova liña mesmo se non se están a escribir\n" +#~ " outros caracteres\n" +#~ "* [-]echoprt escribi-los caracteres borrados para atrás, entre `\\' e " +#~ "'/'\n" +#~ " [-]icanon permiti-los caracteres especiais erase, kill, werase e " +#~ "rprnt\n" +#~ " [-]iexten permiti-los caracteres especiais non-POSIX\n" +#~ " [-]isig permiti-los caracteres especiais interrupt, quit e " +#~ "suspend\n" +#~ " [-]noflsh non limpa-lo buffer despois dos caracteres especiais " +#~ "interrupt\n" +#~ " e quit\n" +#~ "* [-]prterase o mesmo que [-]echoprt\n" +#~ "* [-]tostop para-los traballos en background que tenten escribir ó " +#~ "terminal\n" +#~ "* [-]xcase con icanon, marca-los caracteres maiúsculos con `\\'\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Combination settings:\n" +#~ " * [-]LCASE same as [-]lcase\n" +#~ " cbreak same as -icanon\n" +#~ " -cbreak same as icanon\n" +#~ " cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +#~ " icanon, eof and eol characters to their default values\n" +#~ " -cooked same as raw\n" +#~ " crt same as echoe echoctl echoke\n" +#~ " dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +#~ " kill ^u\n" +#~ " * [-]decctlq same as [-]ixany\n" +#~ " ek erase and kill characters to their default values\n" +#~ " evenp same as parenb -parodd cs7\n" +#~ " -evenp same as -parenb cs8\n" +#~ " * [-]lcase same as xcase iuclc olcuc\n" +#~ " litout same as -parenb -istrip -opost cs8\n" +#~ " -litout same as parenb istrip opost cs7\n" +#~ " nl same as -icrnl -onlcr\n" +#~ " -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +#~ " oddp same as parenb parodd cs7\n" +#~ " -oddp same as -parenb cs8\n" +#~ " [-]parity same as [-]evenp\n" +#~ " pass8 same as -parenb -istrip cs8\n" +#~ " -pass8 same as parenb istrip cs7\n" +#~ " raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +#~ " -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +#~ " -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +#~ " -raw same as cooked\n" +#~ " sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +#~ " -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +#~ " -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +#~ " isig icanon iexten echo echoe echok -echonl -noflsh\n" +#~ " -xcase -tostop -echoprt echoctl echoke, all special\n" +#~ " characters to their default values.\n" +#~ msgstr "" +#~ "\n" +#~ "Parámetros de combinacións:\n" +#~ "* [-]LCASE o mesmo que [-]lcase\n" +#~ " cbreak o mesmo que -icanon\n" +#~ " -cbreak o mesmo que icanon\n" +#~ " cooked o mesmo que brkint ignpar istrip icrnl ixon opost isig\n" +#~ " icanon, caracteres eof e eol ós seus valores por defecto\n" +#~ " -cooked o mesmo que raw\n" +#~ " crt o mesmo que echoe echoctl echoke\n" +#~ " dec o mesmo que echoe echoctl echoke -ixany intr ^c erase " +#~ "0177\n" +#~ " kill ^u\n" +#~ "* [-]decctlq o mesmo que [-]ixany\n" +#~ " ek caracteres erase e kill ós seus valores por defecto\n" +#~ " evenp o mesmo que parenb -parodd cs7\n" +#~ " -evenp o mesmo que -parenb cs8\n" +#~ "* [-]lcase o mesmo que xcase iuclc olcuc\n" +#~ " litout o mesmo que -parenb -istrip -opost cs8\n" +#~ " -litout o mesmo que parenb istrip opost cs7\n" +#~ " nl o mesmo que -icrnl -onlcr\n" +#~ " -nl o mesmo que icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +#~ " oddp o mesmo que parenb parodd cs7\n" +#~ " -oddp o mesmo que -parenb cs8\n" +#~ " [-]parity o mesmo que [-]evenp\n" +#~ " pass8 o mesmo que -parenb -istrip cs8\n" +#~ " -pass8 o mesmo que parenb istrip cs7\n" +#~ " raw o mesmo que -ignbrk -brkint -ignpar -parmrk -inpck\n" +#~ " -istrip -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +#~ " -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +#~ " -raw o mesmo que cooked\n" +#~ " sane o mesmo que cread -ignbrk brkint -inlcr -igncr icrnl\n" +#~ " -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +#~ " -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +#~ " isig icanon iexten echo echoe echok -echonl -noflsh\n" +#~ " -xcase -tostop -echoprt echoctl echoke, e tódolos\n" +#~ " caracteres especiais ós seus valores por defecto.\n" + +#, fuzzy +#~ msgid "" +#~ "Exit with the status determined by EXPRESSION.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "EXPRESSION is true or false and sets exit status. It is one of:\n" +#~ msgstr "" +#~ "Visualiza-la conta de comprobación CRC e o número de bytes de cada " +#~ "FICHEIRO.\n" +#~ "\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode " +#~ "numbers\n" +#~ " FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +#~ " FILE1 -ot FILE2 FILE1 is older than FILE2\n" +#~ "\n" +#~ " -b FILE FILE exists and is block special\n" +#~ " -c FILE FILE exists and is character special\n" +#~ " -d FILE FILE exists and is a directory\n" +#~ " -e FILE FILE exists\n" +#~ " -f FILE FILE exists and is a regular file\n" +#~ " -g FILE FILE exists and is set-group-ID\n" +#~ " -h FILE FILE exists and is a symbolic link (same as -L)\n" +#~ " -G FILE FILE exists and is owned by the effective group ID\n" +#~ " -k FILE FILE exists and has its sticky bit set\n" +#~ " -L FILE FILE exists and is a symbolic link (same as -h)\n" +#~ " -O FILE FILE exists and is owned by the effective user ID\n" +#~ " -p FILE FILE exists and is a named pipe\n" +#~ " -r FILE FILE exists and is readable\n" +#~ " -s FILE FILE exists and has a size greater than zero\n" +#~ " -S FILE FILE exists and is a socket\n" +#~ " -t [FD] file descriptor FD (stdout by default) is opened on a " +#~ "terminal\n" +#~ " -u FILE FILE exists and its set-user-ID bit is set\n" +#~ " -w FILE FILE exists and is writable\n" +#~ " -x FILE FILE exists and is executable\n" +#~ msgstr "" +#~ "\n" +#~ " FICHEIRO1 -ef FICHEIRO2 o FICHEIRO1 e o FICHEIRO2 teñen os mesmos " +#~ "números\n" +#~ " de dispositivo e de inodo\n" +#~ " FICHEIRO1 -nt FICHEIRO2 o FICHEIRO1 é máis novo (data de " +#~ "modificación)\n" +#~ " que o FICHEIRO2\n" +#~ " FICHEIRO1 -ot FICHEIRO2 o FICHEIRO1 é máis antigo que o FICHEIRO2\n" +#~ "\n" +#~ " -b FICHEIRO o FICHEIRO existe e é especial de bloque\n" +#~ " -c FICHEIRO o FICHEIRO existe e é especial de carácter\n" +#~ " -d FICHEIRO o FICHEIRO existe e é un directorio\n" +#~ " -e FICHEIRO o FICHEIRO existe\n" +#~ " -f FICHEIRO o FICHEIRO existe e é un ficheiro normal\n" +#~ " -g FICHEIRO o FICHEIRO existe e ten o bit de establecer ID de grupo\n" +#~ " -G FICHEIRO o FICHEIRO existe e o seu dono é o ID efectivo de grupo\n" +#~ " -k FICHEIRO o FICHEIRO existe e ten o bit pegañento (sticky)\n" +#~ " -L FICHEIRO o FICHEIRO existe e é unha ligazón simbólica\n" +#~ " -O FICHEIRO o FICHEIRO existe e o seu dono é o ID efectivo de " +#~ "usuario\n" +#~ " -p FICHEIRO o FICHEIRO existe e é unha canalización nomeada (named " +#~ "pipe)\n" +#~ " -r FICHEIRO o FICHEIRO existe e é lexible\n" +#~ " -s FICHEIRO o FICHEIRO existe e ten un tamaño maior que cero\n" +#~ " -S FICHEIRO o FICHEIRO existe e é un socket\n" +#~ " -t [DF] o descritor de FICHEIRO DF (saída estándar por defecto) " +#~ "está\n" +#~ " aberto nun terminal\n" +#~ " -u FICHEIRO o FICHEIRO existe e ten o bit de establecer ID de " +#~ "usuario\n" +#~ " -w FICHEIRO o FICHEIRO existe e pódese escribir\n" +#~ " -x FICHEIRO o FICHEIRO existe e é executable\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " -a, --all same as -b -d --login -p -r -t -T -u\n" +#~ " -b, --boot time of last system boot\n" +#~ " -d, --dead print dead processes\n" +#~ " -H, --heading print line of column headings\n" +#~ " -i, --idle add idle time as HOURS:MINUTES, . or old\n" +#~ " (deprecated, use -u)\n" +#~ " --login print system login processes\n" +#~ " (equivalent to SUS -l)\n" +#~ " -l, --lookup attempt to canonicalize hostnames via DNS\n" +#~ " (-l is deprecated, use --lookup)\n" +#~ " -m only hostname and user associated with stdin\n" +#~ " -p, --process print active processes spawned by init\n" +#~ " -q, --count all login names and number of users logged on\n" +#~ " -r, --runlevel print current runlevel\n" +#~ " -s, --short print only name, line, and time (default)\n" +#~ " -t, --time print last system clock change\n" +#~ " -T, -w, --mesg add user's message status as +, - or ?\n" +#~ " -u, --users lists users logged in\n" +#~ " --message same as -T\n" +#~ " --writable same as -T\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "If FILE is not specified, use %s. %s as FILE is common.\n" +#~ "If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +#~ msgstr "" +#~ "\n" +#~ " -H, --heading escribir unha liña coas cabeceiras das columnas\n" +#~ " -i, -u, --idle engadir o tempo de inactividade do usuario na forma\n" +#~ " HORAS:MINUTOS, . ou antigo\n" +#~ " -l, --lookup tentar canoniza-los nomes de máquinas a través de " +#~ "DNS\n" +#~ " -m só o nome da máquina e o usuario asociado coa " +#~ "entrada\n" +#~ " estándar\n" +#~ " -q, --count tódolos nomes de entrada e número de usuarios " +#~ "conectados\n" +#~ " -s (ignorada)\n" +#~ " -T, -w, --mesg engadi-lo estado de mensaxes do usuario como +, - " +#~ "ou ?\n" +#~ " --message o mesmo que -T\n" +#~ " --writable o mesmo que -T\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosa-la información da versión e saír\n" +#~ "\n" +#~ "Se non se indica FICHEIRO, usarase %s. O normal como FICHEIRO\n" +#~ "é %s.\n" +#~ "Se se indican ARG1 e ARG2, asumirase -m: usualmente son `am i' ou `mom " +#~ "likes'.\n" + +#, fuzzy +#~ msgid "" +#~ "Repeatedly output a line with all specified STRING(s), or `y'.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Visualiza-la conta de comprobación CRC e o número de bytes de cada " +#~ "FICHEIRO.\n" +#~ "\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" + +#~ msgid "cannot get processor type" +#~ msgstr "non se pode obte-lo tipo de procesador" + +#~ msgid "USER" +#~ msgstr "USUARIO" + +#~ msgid "MESG " +#~ msgstr "MENS " + +#~ msgid "LOGIN-TIME " +#~ msgstr "HORA DE LOGIN" + +#~ msgid "FROM\n" +#~ msgstr "DENDE\n" + +#~ msgid "virtual memory exhausted" +#~ msgstr "memoria virtual esgotada" + +#~ msgid "Memory exhausted" +#~ msgstr "Memoria esgotada" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ "Output pieces of FILE separated by PATTERN(s) to files `xx01', " +#~ "`xx02', ...,\n" +#~ "and output byte counts of each piece to standard output.\n" +#~ "\n" +#~ " -b, --suffix-format=FORMAT use sprintf FORMAT instead of %%d\n" +#~ " -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +#~ " -k, --keep-files do not remove output files on errors\n" +#~ " -n, --digits=DIGITS use specified number of digits instead of 2\n" +#~ " -s, --quiet, --silent do not print counts of output file sizes\n" +#~ " -z, --elide-empty-files remove empty output files\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Read standard input if FILE is -. Each PATTERN may be:\n" +#~ "\n" +#~ " INTEGER copy up to but not including specified line number\n" +#~ " /REGEXP/[OFFSET] copy up to but not including a matching line\n" +#~ " %%REGEXP%%[OFFSET] skip to, but not including a matching line\n" +#~ " {INTEGER} repeat the previous pattern specified number of " +#~ "times\n" +#~ " {*} repeat the previous pattern as many times as " +#~ "possible\n" +#~ "\n" +#~ "A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +#~ msgstr "" +#~ "Extraer anacos de FICHEIRO separados por PATRÓN(s) aos ficheiros `xx01',\n" +#~ "`xx02', ..., e escribi-lo tamaño de cada anaco na saída estándar.\n" +#~ "\n" +#~ " -b, --suffix-format=FORMATO usa-lo FORMATO de sprintf na vez de %%d\n" +#~ " -f, --prefix=PREFIXO usa-lo PREFIXO na vez de `xx'\n" +#~ " -k, --keep-files non borra-los ficheiros de saida se hai " +#~ "erros\n" +#~ " -n, --digits=DIXITOS usa-lo número de díxitos indicado na vez de " +#~ "2\n" +#~ " -s, --quiet, --silent non visualiza-lo tamaño dos ficheiros de " +#~ "saida\n" +#~ " -z, --elide-empty-files borra-los ficheiros de saída baleiros\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" +#~ "\n" +#~ "Le-la entrada estándar se o FICHEIRO é -. Cada PATRÓN pode ser:\n" +#~ "\n" +#~ " ENTEIRO copiar ata, non incluíndoo, o número de liña " +#~ "indicado\n" +#~ " /REGEXP/[DESPRAZ] copiar ata, non incluíndoa, unha liña que coincida\n" +#~ " %%REGEXP/[DESPRAZ] saltar ata, non incluíndoa, unha liña que coincida\n" +#~ " {ENTEIRO} repeti-lo último patrón o número de veces que se " +#~ "indica\n" +#~ " {*} repeti-lo último patrón tantas veces como se poida\n" +#~ "\n" +#~ "Un DESPRAZamento de liña é un `+' ou `-' seguido dun enteiro positivo.\n" + +#~ msgid "" +#~ "Print selected parts of lines from each FILE to standard output.\n" +#~ "\n" +#~ " -b, --bytes=LIST output only these bytes\n" +#~ " -c, --characters=LIST output only these characters\n" +#~ " -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +#~ " -f, --fields=LIST output only these fields\n" +#~ " -n (ignored)\n" +#~ " -s, --only-delimited do not print lines not containing delimiters\n" +#~ " --output-delimiter=STRING use STRING as the output delimiter\n" +#~ " the default is to use the input delimiter\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +#~ "range, or many ranges separated by commas. Each range is one of:\n" +#~ "\n" +#~ " N N'th byte, character or field, counted from 1\n" +#~ " N- from N'th byte, character or field, to end of line\n" +#~ " N-M from N'th to M'th (included) byte, character or field\n" +#~ " -M from first to M'th (included) byte, character or field\n" +#~ "\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ msgstr "" +#~ "Imprimir partes seleccionadas de liñas de cada FICHEIRO na saída " +#~ "estándar.\n" +#~ "\n" +#~ " -b, --bytes=LISTA amosar só eses bytes\n" +#~ " -c, --characters=LISTA amosar só eses caracteres\n" +#~ " -d, --delimiter=DELIM usar DELIM en vez de TAB como delimitador de " +#~ "campo\n" +#~ " -f, --fields=LISTA amosar só eses campos\n" +#~ " -n (ignorado)\n" +#~ " -s, --only-delimited non amosar liñas que non conteñan " +#~ "delimitadores\n" +#~ " --output-delimiter=CADEA usar CADEA coma delimitador de saída\n" +#~ " por defecto emprégase o delimitador de " +#~ "entrada\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" +#~ "\n" +#~ "Use unha, e só unha das opcións -b, -c ou -f. Cada LISTA componse dun\n" +#~ "rango, ou varios rangos separados por comas. Cada rango é un de:\n" +#~ "\n" +#~ " N N-ésimo byte, carácter ou campo, contado a partir de 1\n" +#~ " N- do N-ésimo byte, carácter ou campo, á fin da liña\n" +#~ " N-M do N-ésimo ao M-ésimo (inclusive) byte, carácter ou campo\n" +#~ " -M do primeiro ao M-ésimo (inclusive) byte, carácter ou campo\n" +#~ "\n" +#~ "Sen un FICHEIRO, ou cando o FICHEIRO é -, lese da entrada estándar.\n" + +#~ msgid "" +#~ "Convert tabs in each FILE to spaces, writing to standard output.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ " -i, --initial do not convert TABs after non whitespace\n" +#~ " -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +#~ " -t, --tabs=LIST use comma separated list of explicit tab positions\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n" +#~ msgstr "" +#~ "Converte-las tabulacións en cada FICHEIRO en espacios, escribindo na " +#~ "saída\n" +#~ "estándar. Sen un FICHEIRO, ou cando o FICHEIRO é -, le-la entrada " +#~ "estándar.\n" +#~ "\n" +#~ " -i, --initial converter só as tabulacións do principio da liña\n" +#~ " -t, --tabs=NÚMERO usar tabulacións de NÚMERO caracteres, e non 8\n" +#~ " -t, --tabs=LISTA usar unha lista de posicións separadas por comas\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" +#~ "\n" +#~ "Na vez de -t NÚMERO ou -t LISTA, pódense usar -NÚMERO ou -LISTA.\n" + +#~ msgid "" +#~ "Reformat each paragraph in the FILE(s), writing to standard output.\n" +#~ "If no FILE or if FILE is `-', read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -c, --crown-margin preserve indentation of first two lines\n" +#~ " -p, --prefix=STRING combine only lines having STRING as prefix\n" +#~ " -s, --split-only split long lines, but do not refill\n" +#~ " -t, --tagged-paragraph indentation of first line different from " +#~ "second\n" +#~ " -u, --uniform-spacing one space between words, two after sentences\n" +#~ " -w, --width=NUMBER maximum line width (default of 75 columns)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "In -wNUMBER, the letter `w' may be omitted.\n" +#~ msgstr "" +#~ "Reformatar cada parágrafo no(s) FICHEIRO(s), escribindo na saída " +#~ "estándar.\n" +#~ "Se non se indica un FICHEIRO, ou se o FICHEIRO é `-', ler na entrada " +#~ "estándar.\n" +#~ "\n" +#~ "Os argumentos obligatorios nas opcións longas sono tamén nas curtas.\n" +#~ " -c, --crown-margin conserva-la sangría das primeiras dúas liñas.\n" +#~ " -p, --prefix=CADEA combinar só as liñas que teñan a CADEA de " +#~ "prefixo\n" +#~ " -s, --split-only parti-las liñas longas, pero non reencher\n" +#~ " -t, --tagged-paragraph a sangría da primeira liña é distinta da da " +#~ "segunda\n" +#~ " -u, --uniform-spacing un espacio entre palabras, e dous entre " +#~ "oracións\n" +#~ " -w, --width=NÚMERO ancho máximo da liña (75 columnas se non se " +#~ "indica)\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" +#~ "\n" +#~ "En -wNÚMERO, a letra `w' pode ser omitida.\n" + +#~ msgid "" +#~ "Wrap input lines in each FILE (standard input by default), writing to\n" +#~ "standard output.\n" +#~ "\n" +#~ " -b, --bytes count bytes rather than columns\n" +#~ " -s, --spaces break at spaces\n" +#~ " -w, --width=WIDTH use WIDTH columns instead of 80\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Parti-las liñas de entrada de cada FICHEIRO (a entrada estándar se non " +#~ "se\n" +#~ "indican), escribindo na saída estándar.\n" +#~ "\n" +#~ " -b, --bytes contar bytes na vez de columnas\n" +#~ " -s, --spaces parti-las liñas nos espacios en branco\n" +#~ " -w, --width=ANCHO usar ANCHO columnas na vez de 80\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" + +#~ msgid "" +#~ "Print first 10 lines of each FILE to standard output.\n" +#~ "With more than one FILE, precede each with a header giving the file " +#~ "name.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ " -c, --bytes=SIZE print first SIZE bytes\n" +#~ " -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +#~ " -q, --quiet, --silent never print headers giving file names\n" +#~ " -v, --verbose always print headers giving file names\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +#~ "If -VALUE is used as first OPTION, read -c VALUE when one of\n" +#~ "multipliers bkm follows concatenated, else read -n VALUE.\n" +#~ msgstr "" +#~ "Visualiza-las primeiras 10 liñas de cada FICHEIRO na saída estándar.\n" +#~ "Con máis dun FICHEIRO, precede cada un cunha cabeceira que indica o seu " +#~ "nome.\n" +#~ "Se non se indica un FICHEIRO ou cando o FICHEIRO é -, ler da entrada " +#~ "estándar.\n" +#~ "\n" +#~ " -c, --bytes=TAMAÑO visualiza-los primeiros TAMAÑO bytes\n" +#~ " -n, --lines=NÚMERO visualiza-las primeiras NÚMERO liñas na vez de " +#~ "10\n" +#~ " -q, --quiet, --silent non visualiza-las cabeceiras cos nomes de " +#~ "ficheiro\n" +#~ " -v, --verbose visualiza-las cabeceiras sempre\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" +#~ "\n" +#~ "TAMAÑO pode ter un sufixo multiplicador: b para 512, k para 1K, m para " +#~ "1M.\n" +#~ "Se se usa -VALOR como primeira OPCIÓN, ler -c VALOR cando un dos\n" +#~ "multiplicadores bkm segue inmediatamente ó VALOR; noutro caso ler -n " +#~ "VALOR.\n" + +#~ msgid "" +#~ "For each pair of input lines with identical join fields, write a line to\n" +#~ "standard output. The default join field is the first, delimited\n" +#~ "by whitespace. When FILE1 or FILE2 (not both) is -, read standard " +#~ "input.\n" +#~ "\n" +#~ " -a SIDE print unpairable lines coming from file SIDE\n" +#~ " -e EMPTY replace missing input fields with EMPTY\n" +#~ " -i, --ignore-case ignore differences in case when comparing fields\n" +#~ " -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +#~ " -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +#~ " -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +#~ " -o FORMAT obey FORMAT while constructing output line\n" +#~ " -t CHAR use CHAR as input and output field separator\n" +#~ " -v SIDE like -a SIDE, but suppress joined output lines\n" +#~ " -1 FIELD join on this FIELD of file 1\n" +#~ " -2 FIELD join on this FIELD of file 2\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +#~ "else fields are separated by CHAR. Any FIELD is a field number counted\n" +#~ "from 1. FORMAT is one or more comma or blank separated specifications,\n" +#~ "each being `SIDE.FIELD' or `0'. Default FORMAT outputs the join field,\n" +#~ "the remaining fields from FILE1, the remaining fields from FILE2, all\n" +#~ "separated by CHAR.\n" +#~ msgstr "" +#~ "Para cada parella de liñas de entrada con campos de join idénticos, " +#~ "escribir\n" +#~ "unha liña na saída estándar. O campo de join é o primeiro, delimitado " +#~ "por\n" +#~ "espacios en branco, se non se indica outro. Cando o FICHEIRO1 ou o " +#~ "FICHEIRO2\n" +#~ "(non ámbolos dous á vez) é -, lese da entrada estándar.\n" +#~ "\n" +#~ " -a LADO visualiza-las liñas non emparellables do ficheiro " +#~ "LADO\n" +#~ " -e BALEIRO cambia-los campos de entrada non atopados por " +#~ "BALEIRO\n" +#~ " -i, --ignore-case ignora-las maiúsculas/minúsculas ao compara-los " +#~ "campos\n" +#~ " -j CAMPO (obsoleto) equivalente a `-1 CAMPO -2 CAMPO'\n" +#~ " -j1 CAMPO (obsoleto) equivalente a `-1 CAMPO'\n" +#~ " -j2 CAMPO (obsoleto) equivalente a `-2 CAMPO'\n" +#~ " -o FORMATO aplica-lo FORMATO ao construi-la liña resultante\n" +#~ " -t CARÁCTER usa-lo CARÁCTER como separador de campos\n" +#~ " -v LADO coma -a LADO, pero eliminando as liñas de saída\n" +#~ " -1 CAMPO unir po-lo CAMPO indicado do ficheiro 1\n" +#~ " -2 CAMPO unir po-lo CAMPO indicado do ficheiro 2\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" +#~ "\n" +#~ "A menos que se indique -t CARÁCTER, os espacios en branco iniciais " +#~ "separan\n" +#~ "campos e son ignorados; do outro xeito, os campos son separados por " +#~ "CARÁCTER.\n" +#~ "Un CAMPO é un número de campo contando a partir de 1. FORMATO é unha ou " +#~ "máis\n" +#~ "especificacións separadas por comas ou espacios en branco, cada unha da " +#~ "forma\n" +#~ "`LADO.CAMPO' ou `0'. O FORMATO que se aplica se non se indica ningún\n" +#~ "visualiza o campo de join, os campos restantes de FICHEIRO1 e os campos\n" +#~ "restantes de FICHEIRO2, todo separado por CHAR.\n" + +#~ msgid "" +#~ "Usage: %s [OPTION] [FILE]...\n" +#~ " or: %s [OPTION] --check [FILE]\n" +#~ "Print or check MD5 checksums.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ " -b, --binary read files in binary mode (default on DOS/" +#~ "Windows)\n" +#~ " -c, --check check MD5 sums against given list\n" +#~ " -t, --text read files in text mode (default)\n" +#~ "\n" +#~ "The following two options are useful only when verifying checksums:\n" +#~ " --status don't output anything, status code shows " +#~ "success\n" +#~ " -w, --warn warn about improperly formated MD5 checksum " +#~ "lines\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "The sums are computed as described in RFC 1321. When checking, the " +#~ "input\n" +#~ "should be a former output of this program. The default mode is to print\n" +#~ "a line with checksum, a character indicating type (`*' for binary, ` ' " +#~ "for\n" +#~ "text), and name for each FILE.\n" +#~ msgstr "" +#~ "Uso: %s [OPCIÓN] [FICHEIRO]...\n" +#~ " ou: %s [OPCIÓN] --check [FICHEIRO]\n" +#~ "Visualizar ou comproba-las sumas de comprobación MD5.\n" +#~ "Se non se indica un FICHEIRO, ou se o FICHEIRO é -, lese da entrada " +#~ "estándar.\n" +#~ "\n" +#~ " -b, --binary le-los ficheiros en modo binario (por defecto " +#~ "en DOS/Windows)\n" +#~ " -c, --check comproba-las sumas MD5 contra a lista dada\n" +#~ " -t, --text le-los ficheiros en modo texto (por defecto)\n" +#~ "\n" +#~ "As seguintes dúas opcións son útiles só cando se comproban as sumas:\n" +#~ " --status non visualizar, o código de estado informa do " +#~ "éxito\n" +#~ " -w, --warn avisar de liñas de suma MD5 mal formatadas\n" +#~ "\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" +#~ "\n" +#~ "As sumas calcúlanse como se describe no RFC 1321. Cando se comproban, a\n" +#~ "entrada debería ser unha saída anterior deste programa. O modo por " +#~ "defecto\n" +#~ "é visualizar unha liña con suma de comprobación, un carácter que indica " +#~ "o\n" +#~ "tipo (`*' para binario, ` ' para texto), e o nome de cada FICHEIRO.\n" + +#~ msgid "" +#~ "Write each FILE to standard output, with line numbers added.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ " -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +#~ " -d, --section-delimiter=CC use CC for separating logical pages\n" +#~ " -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +#~ " -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +#~ " -i, --page-increment=NUMBER line number increment at each line\n" +#~ " -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +#~ "one\n" +#~ " -n, --number-format=FORMAT insert line numbers according to " +#~ "FORMAT\n" +#~ " -p, --no-renumber do not reset line numbers at logical " +#~ "pages\n" +#~ " -s, --number-separator=STRING add STRING after (possible) line " +#~ "number\n" +#~ " -v, --first-page=NUMBER first line number on each logical page\n" +#~ " -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +#~ "two delimiter characters for separating logical pages, a missing\n" +#~ "second character implies :. Type \\\\ for \\. STYLE is one of:\n" +#~ "\n" +#~ " a number all lines\n" +#~ " t number only nonempty lines\n" +#~ " n number no lines\n" +#~ " pREGEXP number only lines that contain a match for REGEXP\n" +#~ "\n" +#~ "FORMAT is one of:\n" +#~ "\n" +#~ " ln left justified, no leading zeros\n" +#~ " rn right justified, no leading zeros\n" +#~ " rz right justified, leading zeros\n" +#~ "\n" +#~ msgstr "" +#~ "Escribir cada FICHEIRO na saída estándar, con números de liña engadidos.\n" +#~ "Se non se indica un FICHEIRO, ou se o FICHEIRO é -, ler da entrada " +#~ "estándar.\n" +#~ "\n" +#~ " -b, --body-numbering=ESTILO usa-lo ESTILO para numera-las liñas do " +#~ "corpo\n" +#~ " -d, --section-delimiter=CC usar CC para separa-las páxinas " +#~ "lóxicas\n" +#~ " -f, --footer-numbering=ESTILO usa-lo ESTILO para numera-las liñas do " +#~ "pé\n" +#~ " -h, --header-numbering=ESTILO usa-lo ESTILO para numera-las liñas da\n" +#~ " cabeceira\n" +#~ " -i, --page-increment=NÚMERO incremento do número de liña\n" +#~ " -l, --join-blank-lines=NÚMERO cada grupo de NÚMERO liñas baleiras " +#~ "cóntase\n" +#~ " como unha soa\n" +#~ " -n, --number-format=FORMATO inserta-los números de liña polo " +#~ "FORMATO\n" +#~ " -p, --no-renumber non reinicia-los números de liña coa " +#~ "páxina\n" +#~ " -s, --number-separator=CADEA engadi-la CADEA tras cada número de " +#~ "liña\n" +#~ " -v, --first-page=NÚMERO primeiro número de liña de cada páxina\n" +#~ " -w, --number-width=NÚMERO usar NÚMERO columnas para os números de " +#~ "liña\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e " +#~ "saír\n" +#~ "\n" +#~ "Se non se indica, selecciónase -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn.\n" +#~ "CC son dous caracteres delimitadores para separar páxinas lóxicas; se " +#~ "non\n" +#~ "hai segundo carácter suponse :. Teclee \\\\ para obter \\. O ESTILO é " +#~ "un de:\n" +#~ "\n" +#~ " a numerar tódalas liñas\n" +#~ " t numerar só as liñas non baleiras\n" +#~ " n non numera-las liñas\n" +#~ " pREGEXP numerar só as liñas que coinciden con REGEXP\n" +#~ "\n" +#~ "O FORMATO é un de:\n" +#~ "\n" +#~ " ln xustificar á esquerda, sen ceros iniciais\n" +#~ " rn xustificar á dereita, sen ceros iniciais\n" +#~ " rz xustificar á dereita, con ceros iniciais\n" +#~ "\n" + +#~ msgid "" +#~ "Write an unambiguous representation, octal bytes by default, of FILE\n" +#~ "to standard output. With no FILE, or when FILE is -, read standard " +#~ "input.\n" +#~ "\n" +#~ " -A, --address-radix=RADIX decide how file offsets are printed\n" +#~ " -j, --skip-bytes=BYTES skip BYTES input bytes first on each file\n" +#~ " -N, --read-bytes=BYTES limit dump to BYTES input bytes per file\n" +#~ " -s, --strings[=BYTES] output strings of at least BYTES graphic " +#~ "chars\n" +#~ " -t, --format=TYPE select output format or formats\n" +#~ " -v, --output-duplicates do not use * to mark line suppression\n" +#~ " -w, --width[=BYTES] output BYTES bytes per output line\n" +#~ " --traditional accept arguments in pre-POSIX form\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Pre-POSIX format specifications may be intermixed, they accumulate:\n" +#~ " -a same as -t a, select named characters\n" +#~ " -b same as -t oC, select octal bytes\n" +#~ " -c same as -t c, select ASCII characters or backslash escapes\n" +#~ " -d same as -t u2, select unsigned decimal shorts\n" +#~ " -f same as -t fF, select floats\n" +#~ " -h same as -t x2, select hexadecimal shorts\n" +#~ " -i same as -t d2, select decimal shorts\n" +#~ " -l same as -t d4, select decimal longs\n" +#~ " -o same as -t o2, select octal shorts\n" +#~ " -x same as -t x2, select hexadecimal shorts\n" +#~ msgstr "" +#~ "Escribir unha representación non ambigua, con bytes octais se non se " +#~ "indica,\n" +#~ "do FICHEIRO na saída estándar. Sen un FICHEIRO, ou se o FICHEIRO é -, " +#~ "ler da\n" +#~ "entrada estándar.\n" +#~ "\n" +#~ " -A, --address-radix=BASE decidir cómo se visualizan os " +#~ "desprazamentos\n" +#~ " -j, --skip-bytes=BYTES saltarse BYTES bytes de entrada en cada " +#~ "ficheiro\n" +#~ " -N, --read-bytes=BYTES limita-lo volcado a BYTES bytes por " +#~ "ficheiro\n" +#~ " -s, --strings[=BYTES] visualizar cadeas de alomenos BYTES " +#~ "caracteres\n" +#~ " gráficos\n" +#~ " -t, --format=TIPO selecciona-lo formato ou formatos de saída\n" +#~ " -v, --output-duplicates non usar * para marca-la eliminación de " +#~ "liñas\n" +#~ " -w, --width[=BYTES] visualizar BYTES bytes por liña de saída\n" +#~ " --traditional aceptar argumentos en formato pre-POSIX\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" +#~ "\n" +#~ "Pódense mestura-las especificacións de formato pre-POSIX, e son " +#~ "acumulativas:\n" +#~ " -a igual que -t a, selecciona-los caracteres nomeados\n" +#~ " -b igual que -t oC, seleccionar bytes octais\n" +#~ " -c igual que -t c, seleccionar caracteres ASCII ou secuencias de " +#~ "escape\n" +#~ " -d igual que -t u2, seleccionar enteiros curtos decimais sen signo\n" +#~ " -f igual que -t fF, seleccionar números en coma flotante\n" +#~ " -h igual que -t x2, seleccionar enteiros curtos hexadecimais\n" +#~ " -i igual que -t d2, seleccionar enteiros curtos decimais\n" +#~ " -l igual que -t d4, seleccionar enteiros longos decimais\n" +#~ " -o igual que -t o2, seleccionar enteiros curtos octais\n" +#~ " -x igual que -t x2, seleccionar enteiros curtos hexadecimais\n" + +#~ msgid "" +#~ "\n" +#~ "For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +#~ "is the pseudo-address at first byte printed, incremented when dump is\n" +#~ "progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +#~ "hexadecimal, suffixes maybe . for octal and b multiply by 512.\n" +#~ "\n" +#~ "TYPE is made up of one or more of these specifications:\n" +#~ "\n" +#~ " a named character\n" +#~ " c ASCII character or backslash escape\n" +#~ " d[SIZE] signed decimal, SIZE bytes per integer\n" +#~ " f[SIZE] floating point, SIZE bytes per integer\n" +#~ " o[SIZE] octal, SIZE bytes per integer\n" +#~ " u[SIZE] unsigned decimal, SIZE bytes per integer\n" +#~ " x[SIZE] hexadecimal, SIZE bytes per integer\n" +#~ "\n" +#~ "SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +#~ "sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +#~ "sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +#~ "for sizeof(double) or L for sizeof(long double).\n" +#~ "\n" +#~ "RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +#~ "BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +#~ "with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix " +#~ "to\n" +#~ "any type adds a display of printable characters to the end of each line\n" +#~ "of output. -s without a number implies 3. -w without a number implies " +#~ "32.\n" +#~ "By default, od uses -A o -t d2 -w 16.\n" +#~ msgstr "" +#~ "\n" +#~ "Para a sintaxe antiga (segundo formato de chamada), DESPRAZAMENTO quere " +#~ "dicir\n" +#~ "-j DESPRAZAMENTO. ETIQUETA é a pseudo-dirección do primeiro byte " +#~ "visualizado,\n" +#~ "que se incrementa durante o volcado. Para DESPRAZAMENTO e ETIQUETA, un\n" +#~ "prefixo 0x ou 0X indica hexadecimal; os sufixos poden ser . para octal e\n" +#~ "b para multiplicar por 512.\n" +#~ "\n" +#~ "TIPO componse dunha ou máis destas especificacións:\n" +#~ "\n" +#~ " a carácter nomeado\n" +#~ " c carácter ASCII ou secuencia de escape\n" +#~ " d[TAMAÑO] decimal con signo, TAMAÑO bytes por enteiro\n" +#~ " f[TAMAÑO] punto flotante, TAMAÑO bytes por enteiro\n" +#~ " o[TAMAÑO] octal, TAMAÑO bytes por enteiro\n" +#~ " u[TAMAÑO] decimal sen signo, TAMAÑO bytes por enteiro\n" +#~ " x[TAMAÑO] hexadecimal, TAMAÑO bytes por enteiro\n" +#~ "\n" +#~ "TAMAÑO é un número. Para o TIPO en doux, TAMAÑO pode tamén ser C para\n" +#~ "sizeof(char), S para sizeof(short), I para sizeof(int) ou L para\n" +#~ "sizeof(long). Se TIPO é f, TAMAÑO tamén pode ser F para sizeof(float), D\n" +#~ "para sizeof(double) ou L para sizeof(long double).\n" +#~ "\n" +#~ "BASE é d para decimal, o para octal, x para hexadecimal ou n para " +#~ "ningunha.\n" +#~ "BYTES é hexadecimal se leva un prefixo 0x ou 0X, multiplícase por 512 se\n" +#~ "leva un sufixo b, por 1024 cun k e por 1048576 cun m. Engadir un sufixo " +#~ "z\n" +#~ "a calqueira tipo engade unha mostra de caracteres imprimibles á fin de " +#~ "cada\n" +#~ "liña de saída. -s sen un número implica 3. -w sen un número implica " +#~ "32.\n" +#~ "Se non se indica nada, od usa -A o -t d2 -w 16.\n" + +#~ msgid "" +#~ "specified number of bytes `%s' is larger than the maximum\n" +#~ "representable value of type `long'" +#~ msgstr "" +#~ "o número de bytes indicado `%s' é maior có valor máximo\n" +#~ "representable de tipo `long'" + +#~ msgid "" +#~ "Write lines consisting of the sequentially corresponding lines from\n" +#~ "each FILE, separated by TABs, to standard output.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ " -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +#~ " -s, --serial paste one file at a time instead of in " +#~ "parallel\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Escribir liñas consistentes nas liñas que corresponden secuencialmente " +#~ "en\n" +#~ "cada FICHEIRO, separadas por tabulacións, na saída estándar.\n" +#~ "Se non se indica un FICHEIRO, ou se o FICHEIRO é -, lese da entrada " +#~ "estándar.\n" +#~ "\n" +#~ " -d, --delimiters=LISTA usa-los caracteres da LISTA na vez de " +#~ "tabulacións\n" +#~ " -s, --serial pegar un ficheiro de cada vez na vez de en " +#~ "paralelo\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" + +#~ msgid "%s%*s%s%*sPage" +#~ msgstr "%s%*s%s%*sPáxina" + +#~ msgid "" +#~ "Paginate or columnate FILE(s) for printing.\n" +#~ "\n" +#~ " +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +#~ " begin [stop] printing with page FIRST_[LAST_]PAGE\n" +#~ " -COLUMN, --columns=COLUMN\n" +#~ " produce COLUMN-column output and print columns down,\n" +#~ " unless -a is used. Balance number of lines in the\n" +#~ " columns on each page.\n" +#~ " -a, --across print columns across rather than down, used together\n" +#~ " with -COLUMN\n" +#~ " -c, --show-control-chars\n" +#~ " use hat notation (^G) and octal backslash notation\n" +#~ " -d, --double-space\n" +#~ " double space the output\n" +#~ " -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +#~ " expand input CHARs (TABs) to tab WIDTH (8)\n" +#~ " -F, -f, --form-feed\n" +#~ " use form feeds instead of newlines to separate pages\n" +#~ " (by a 3-line page header with -F or a 5-line header\n" +#~ " and trailer without -F)\n" +#~ msgstr "" +#~ "Paxinar ou encolumna-lo(s) FICHEIRO(s) para imprimir.\n" +#~ "\n" +#~ " +PRIMEIRA_PÁXINA[:ÚLTIMA_PÁXINA]\n" +#~ " comezar [deter] a impresión coa PRIMEIRA_[ÚLTIMA_]" +#~ "PÁXINA\n" +#~ " -COLUMNAS, --columnas=COLUMNAS\n" +#~ " producir unha saida de COLUMNAS columnas e imprimir " +#~ "por\n" +#~ " columnas, agás se se usa a opción -a. Iguala-lo " +#~ "número\n" +#~ " de liñas nas columnas de cada páxina.\n" +#~ " -a, --across imprimi-las columnas a través e non cara a abaixo, " +#~ "úsase\n" +#~ " á vez que -COLUMNAS\n" +#~ " -c, --show-control-chars\n" +#~ " usa-las notacións de circunflexo (^G) e barra octal\n" +#~ " -d, --double-space\n" +#~ " producir a saída a dobre espacio\n" +#~ " -e[CAR[ANCHO]], --expand-tabs[=CAR[ANCHO]]\n" +#~ " expandi-los CARacteres de entrada (TABs) ao ANCHO " +#~ "(8)\n" +#~ " -F, -f, --form-feed\n" +#~ " usar saltos de páxina na vez de saltos de liña para\n" +#~ " separar páxinas (por unha cabeceira de páxina de 3 " +#~ "liñas\n" +#~ " con -f ou unha cabeceira e un pé de 5 liñas sen -f)\n" + +#~ msgid "" +#~ " -h HEADER, --header=HEADER\n" +#~ " use a centered HEADER instead of filename in page " +#~ "header,\n" +#~ " with long headers left-hand-side truncation may " +#~ "occur,\n" +#~ " -h \"\" prints a blank line, don't use -h\"\"\n" +#~ " -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +#~ " replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +#~ " -J, --join-lines merge full lines, turns off -W line truncation, no " +#~ "column\n" +#~ " alignment, -S[STRING] sets separators\n" +#~ " -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +#~ " set the page length to PAGE_LENGTH (66) lines\n" +#~ " (default number of lines of text 56, and with -F 63)\n" +#~ " -m, --merge print all files in parallel, one in each column,\n" +#~ " truncate lines, but join lines of full length with -" +#~ "J\n" +#~ " -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +#~ " number lines, use DIGITS (5) digits, then SEP (TAB),\n" +#~ " default counting starts with 1st line of input file\n" +#~ " -N NUMBER, --first-line-number=NUMBER\n" +#~ " start counting with NUMBER at 1st line of first\n" +#~ " page printed (see +FIRST_PAGE)\n" +#~ " -o MARGIN, --indent=MARGIN\n" +#~ " offset each line with MARGIN (zero) spaces, do not\n" +#~ " affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +#~ " -r, --no-file-warnings\n" +#~ " omit warning when a file cannot be opened\n" +#~ msgstr "" +#~ " -h CABECEIRA, --header=CABECEIRA\n" +#~ " usar unha CABECEIRA centrada na vez do nome do " +#~ "ficheiro.\n" +#~ " Con cabeceiras longas, pode haber truncamento á " +#~ "esquerda\n" +#~ " -h \"\" imprime unha liña en branco. Non use -h\"\"\n" +#~ " -i[CAR[ANCHO]], --output-tabs[=CAR[ANCHO]]\n" +#~ " cambia-los espacios por CARacteres (TABs) de ANCHO " +#~ "(8)\n" +#~ " -J, --join-lines mesturar liñas completas, desactiva -W, sen " +#~ "aliñamento\n" +#~ " de columnas, -S[CADEA] pon separadores\n" +#~ " -l LONXITUDE, --length=LONXITUDE\n" +#~ " establece-la lonxitude da páxina a LONXITUDE (66) " +#~ "liñas\n" +#~ " (se non se indica nada, 56 liñas, e con -F 63)\n" +#~ " -m, --merge imprimir tódolos ficheiros en paralelo, un en cada\n" +#~ " columna, trunca-las liñas, pero uni-las liñas de\n" +#~ " lonxitude completa con -J\n" +#~ " -n[SEP[CIFRAS]], --number-lines[=SEP[CIFRAS]]\n" +#~ " numera-las liñas, empregar CIFRAS (5) cifras, e logo " +#~ "o\n" +#~ " SEParador (TAB), a conta comeza por defecto coa " +#~ "primeira\n" +#~ " liña do ficheiro de entrada\n" +#~ " -N NÚMERO, --first-line-number=NÚMERO\n" +#~ " comezar a contar polo NÚMERO na primeira liña da " +#~ "primeira\n" +#~ " páxina imprimida (vexa +PRIMEIRA_PÁXINA)\n" +#~ " -o MARXE, --indent=MARXE\n" +#~ " desprazar cada liña MARXE (cero) espacios, non " +#~ "afectar\n" +#~ " a -w ou -W, a MARXE engádese ao ANCHO_PAXINA\n" +#~ " -r, --no-file-warnings\n" +#~ " omiti-los avisos cando non se pode abrir un ficheiro\n" + +#~ msgid "" +#~ " -s[CHAR],--separator[=CHAR]\n" +#~ " separate columns by a single character, default for " +#~ "CHAR\n" +#~ " is the character without -w and 'no char' with -" +#~ "w\n" +#~ " -s[CHAR] turns off line truncation of all 3 column\n" +#~ " options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +#~ " -S[STRING], --sep-string[=STRING]\n" +#~ " separate columns by an optional STRING, don't use\n" +#~ " -S \"STRING\", -S only: No separator used (same as -S" +#~ "\"\"),\n" +#~ " without -S: Default separator with -J and " +#~ "\n" +#~ " otherwise (same as -S\" \"), no effect on column " +#~ "options\n" +#~ " -t, --omit-header omit page headers and trailers\n" +#~ " -T, --omit-pagination\n" +#~ " omit page headers and trailers, eliminate any " +#~ "pagination\n" +#~ " by form feeds set in input files\n" +#~ " -v, --show-nonprinting\n" +#~ " use octal backslash notation\n" +#~ " -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +#~ " set page width to PAGE_WIDTH (72) characters for\n" +#~ " multiple text-column output only, -s[char] turns off " +#~ "(72)\n" +#~ " -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +#~ " set page width to PAGE_WIDTH (72) characters always,\n" +#~ " truncate lines, except -J option is set, no " +#~ "interference\n" +#~ " with -S or -s\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +#~ "FILE is -, read standard input.\n" +#~ msgstr "" +#~ " -s[CAR], --separator[=CAR]\n" +#~ " separa-las columnas cun só CARácter, o CARácter por\n" +#~ " defecto é o carácter sen -w, e ningún con -w\n" +#~ " -s[CAR] desactiva o truncamento das tres opcións de\n" +#~ " columnas (-COLUMNAS|-a -COLUMNAS|-m) agás se se " +#~ "indica -w\n" +#~ " -S[CADEA], --sep-string[=CADEA]\n" +#~ " separa-las columnas cunha CADEA opcional, non " +#~ "empregue\n" +#~ " -S \"CADEA\", -S só: Non se emprega separador (igual " +#~ "ca\n" +#~ " -S\"\"), sen -S: Separador por defecto con -J " +#~ "e\n" +#~ " , noutro caso (igual que -S\" \"), sen " +#~ "efecto nas\n" +#~ " opcións de columnas\n" +#~ " -t, --omit-header omiti-las cabeceiras e pés de páxina\n" +#~ " -T, --omit-pagination\n" +#~ " omiti-las cabeceiras e pés de páxina, eliminar toda " +#~ "a\n" +#~ " paxinación con saltos de liña dos ficheiros de " +#~ "entrada\n" +#~ " -v, --show-nonprinting\n" +#~ " usa-la notación octal de barra invertida\n" +#~ " -w ANCHO_PÁXINA, --width=ANCHO_PÁXINA\n" +#~ " poñe-lo ancho de páxina a ANCHO_PÁXINA (72) " +#~ "caracteres\n" +#~ " só para a saida de varias columnas de texto, -s[car]\n" +#~ " desactívao (72)\n" +#~ " -W ANCHO_PÁXINA, --page-width=ANCHO_PÁXINA\n" +#~ " establece-lo ancho da páxina a ANCHO_PÁXINA (72)\n" +#~ " caracteres e trunca-las liñas, agás cando se indica " +#~ "a\n" +#~ " opción -J, sen interferencias con -S ou -s\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" +#~ "\n" +#~ "-T é implicado por -l nn cando nn <= 10 ou <= 3 con -F. Se non se indica " +#~ "un\n" +#~ "FICHEIRO, ou cando o FICHEIRO é -, ler da entrada estándar.\n" + +#~ msgid "" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ "\n" +#~ " -A, --auto-reference output automatically generated " +#~ "references\n" +#~ " -C, --copyright display Copyright and copying " +#~ "conditions\n" +#~ " -G, --traditional behave more like System V `ptx'\n" +#~ " -F, --flag-truncation=STRING use STRING for flagging line " +#~ "truncations\n" +#~ " -M, --macro-name=STRING macro name to use instead of `xx'\n" +#~ " -O, --format=roff generate output as roff directives\n" +#~ " -R, --right-side-refs put references at right, not counted in -" +#~ "w\n" +#~ " -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +#~ " -T, --format=tex generate output as TeX directives\n" +#~ " -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +#~ " -b, --break-file=FILE word break characters in this FILE\n" +#~ " -f, --ignore-case fold lower case to upper case for " +#~ "sorting\n" +#~ " -g, --gap-size=NUMBER gap size in columns between output " +#~ "fields\n" +#~ " -i, --ignore-file=FILE read ignore word list from FILE\n" +#~ " -o, --only-file=FILE read only word list from this FILE\n" +#~ " -r, --references first field of each line is a reference\n" +#~ " -t, --typeset-mode - not implemented -\n" +#~ " -w, --width=NUMBER output width in columns, reference " +#~ "excluded\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +#~ msgstr "" +#~ "Os argumentos que son obrigatorios nas opcións longas son obrigatorios " +#~ "nas\n" +#~ "curtas tamén.\n" +#~ "\n" +#~ " -A, --auto-reference amosa-las referencias xeradas " +#~ "automaticamente\n" +#~ " -C, --copyright amosa-lo Copyright e as condicións de " +#~ "copia\n" +#~ " -G, --traditional parecerse máis ao `ptx' de System V\n" +#~ " -F, --flag-truncation=CADEA usa-la CADEA para marca-las liñas " +#~ "truncadas\n" +#~ " -M, --macro-name=CADEA nome de macro que empregar na vez de " +#~ "`xx'\n" +#~ " -O, --format=roff xera-la saída coma directivas de roff\n" +#~ " -R, --right-side-refs poñe-las referencias á dereita, non " +#~ "contadas\n" +#~ " en -w\n" +#~ " -S, --sentence-regexp=REGEXP para a fin das liñas ou das oracións\n" +#~ " -T, --format=tex xera-la saída coma directivas de TeX\n" +#~ " -W, --word-regexp=REGEXP usar REGEXP para busca-las claves\n" +#~ " -b, --break-file=FICHEIRO caracteres que parten palabras neste " +#~ "FICHEIRO\n" +#~ " -f, --ignore-case converte-las minúsculas a maiúsculas " +#~ "para\n" +#~ " ordear\n" +#~ " -g, --gap-size=NÚMERO tamaño do oco entre campos da saída\n" +#~ " -i, --ignore-file=FICHEIRO ler toda a lista de palabras de " +#~ "FICHEIRO\n" +#~ " -o, --only-file=FICHEIRO le-la lista de palabras só do FICHEIRO\n" +#~ " -r, --references o primeiro campo de cada liña é unha\n" +#~ " referencia\n" +#~ " -t, --typeset-mode - non implementado -\n" +#~ " -w, --width=NÚMERO ancho da saída, excluindo a referencia\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosa-la información sobre a versión e " +#~ "saír\n" +#~ "\n" +#~ "Se non se indica un FICHEIRO ou se o FICHEIRO é -, lese da entrada " +#~ "estándar.\n" +#~ "A opción `-F /' inclúese se non se indica outra cousa.\n" + +#~ msgid "" +#~ "This program is free software; you can redistribute it and/or modify\n" +#~ "it under the terms of the GNU General Public License as published by\n" +#~ "the Free Software Foundation; either version 2, or (at your option)\n" +#~ "any later version.\n" +#~ "\n" +#~ "This program is distributed in the hope that it will be useful,\n" +#~ "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +#~ "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +#~ "GNU General Public License for more details.\n" +#~ "\n" +#~ "You should have received a copy of the GNU General Public License\n" +#~ "along with this program; if not, write to the Free Software Foundation,\n" +#~ "Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +#~ msgstr "" +#~ "Este programa é software libre; pode redistribuílo e/ou modificalo\n" +#~ "baixo os termos da Licencia Pública Xeral de GNU tal como foi publicada\n" +#~ "pola Free Software Foundation; xa a versión 2, ou (á súa elección)\n" +#~ "calqueira versión posterior.\n" +#~ "\n" +#~ "Este programa é distribuído coa esperanza de que sexa útil, pero\n" +#~ "SEN NINGUNHA GARANTÍA; nin sequera a garantía implícita de " +#~ "COMERCIABILIDADE\n" +#~ "ou APTITUDE PARA UN FIN EN PARTICULAR. Vexa a Licencia Pública Xeral de\n" +#~ "GNU para ter máis detalles.\n" +#~ "\n" +#~ "Debería ter recibido unha copia da Licencia Pública Xeral de GNU con\n" +#~ "este programa; se non é o caso, escriba á Free Software Foundation, " +#~ "Inc.,\n" +#~ "59 Temple Place - Suite 330, Boston, MA 02111-1307, EE.UU.\n" + +#~ msgid "" +#~ "Write sorted concatenation of all FILE(s) to standard output.\n" +#~ "\n" +#~ " +POS1 [-POS2] start a key at POS1, end it *before* POS2 " +#~ "(obsolescent)\n" +#~ "\t\t field numbers and character offsets are numbered\n" +#~ " starting with zero (contrast with the -k option)\n" +#~ " -b ignore leading blanks in sort fields or keys\n" +#~ " -c check if given files already sorted, do not sort\n" +#~ " -d consider only [a-zA-Z0-9 ] characters in keys\n" +#~ " -f fold lower case to upper case characters in keys\n" +#~ " -g compare according to general numerical value, imply -" +#~ "b\n" +#~ " -i consider only [\\040-\\0176] characters in keys\n" +#~ " -k POS1[,POS2] start a key at POS1, end it *at* POS2\n" +#~ "\t\t field numbers and character offsets are numbered\n" +#~ " starting with one (contrast with zero-based +POS " +#~ "form)\n" +#~ " -m merge already sorted files, do not sort\n" +#~ " -M compare (unknown) < `JAN' < ... < `DEC', imply -b\n" +#~ " -n compare according to string numerical value, imply -b\n" +#~ " -o FILE write result on FILE instead of standard output\n" +#~ " -r reverse the result of comparisons\n" +#~ " -s stabilize sort by disabling last resort comparison\n" +#~ " -t SEP use SEParator instead of non- to whitespace " +#~ "transition\n" +#~ " -T DIRECTORY use DIRECTORY for temporary files, not $TMPDIR or %s\n" +#~ " -u with -c, check for strict ordering;\n" +#~ " with -m, only output the first of an equal sequence\n" +#~ " -z end lines with 0 byte, not newline, for find -print0\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Escribir una concatenación ordeada de tódolos FICHEIRO(s) na saída " +#~ "estándar.\n" +#~ "\n" +#~ " +POS1 [-POS2] comezar unha clave en POS1, e acabala *antes* de POS2\n" +#~ " (obsoleta). Os números de campo e os desprazamentos\n" +#~ " numéranse comezando por 0 (non coma a opción -k\n" +#~ " -b ignora-los espacios en branco iniciais nos campos e " +#~ "claves\n" +#~ " de ordeación\n" +#~ " -c comprobar se os ficheiros xa están ordeados, non " +#~ "ordear\n" +#~ " -d considerar só os caracteres [a-zA-Z0-9 ] nas claves\n" +#~ " -f converter minúsculas a maiúsculas nas claves\n" +#~ " -g comparar segundo o valor numérico xeral, implica -b\n" +#~ " -i considerar só os caracteres [\\040-\\0176] nas claves\n" +#~ " -k POS1[,POS2] comezar unha clave en POS1, e acabala *en* POS2\n" +#~ " os números de campo e os desprazamentos numéranse " +#~ "comezando\n" +#~ " por 1 (non coma a forma +POS, que comeza en 0)\n" +#~ " -m mesturar ficheiros xa ordeados, non ordear\n" +#~ " -M comparar (descoñecido) < 'JAN' < ... < 'DEC', implica -" +#~ "b\n" +#~ " -n comparar polo valor numérico de cadea, implica -b\n" +#~ " -o FICHEIRO escribi-lo resultado no FICHEIRO na vez da saída " +#~ "estándar\n" +#~ " -r inverti-lo resultado das comparacións\n" +#~ " -s estabiliza-la ordeación desactivando a comparación de\n" +#~ " derradeiro recurso\n" +#~ " -t SEP usa-lo SEParador na vez de espacios en branco\n" +#~ " -T DIRECTORIO usa-lo DIRECTORIO para ficheiros temporais, non " +#~ "$TMPDIR\n" +#~ " ou %s\n" +#~ " -u con -c, controla-la ordenación estricta;\n" +#~ " con -m, visualizar só a primeira dun grupo de iguais\n" +#~ " -z acabada-las liñas cun byte 0, non cun salto de liña, " +#~ "para\n" +#~ " find -print0\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" +#~ "\n" + +#~ msgid "flushing file" +#~ msgstr "volcando o ficheiro" + +#~ msgid "" +#~ "when using the old-style +POS and -POS key specifiers,\n" +#~ "the +POS specifier must come first" +#~ msgstr "" +#~ "cando se usan os especificadores de clave ao antigo estilo +POS e -POS,\n" +#~ "o especificador +POS debe ir primeiro" + +#~ msgid "option `-k' requires an argument" +#~ msgstr "a opción `-k' precisa dun argumento" + +#~ msgid "starting field spec has `.' but lacks following character offset" +#~ msgstr "" +#~ "a especificación do campo inicial ten un `.' pero non o segue\n" +#~ "o desprazamento" + +#~ msgid "" +#~ "starting field character offset argument to the `-k' option\n" +#~ "must be positive" +#~ msgstr "" +#~ "o argumento desprazamento do campo inicial da opción `-k'\n" +#~ "debe ser positivo" + +#~ msgid "field specification has `,' but lacks following field spec" +#~ msgstr "" +#~ "a especificación do campo ten un `,' pero non o segue a\n" +#~ "especificación do seguinte campo" + +#~ msgid "ending field number argument to the `-k' option must be positive" +#~ msgstr "o argumento número de campo final da opción `-k' debe ser positivo" + +#~ msgid "ending field spec has `.' but lacks following character offset" +#~ msgstr "" +#~ "a especificación do campo final ten `.' pero non segue\n" +#~ "o desprazamento" + +#~ msgid "option `-o' requires an argument" +#~ msgstr "a opción `-o' precisa dun argumento" + +#~ msgid "option `-t' requires an argument" +#~ msgstr "a opción `-t' precisa dun argumento" + +#~ msgid "option `-T' requires an argument" +#~ msgstr "a opción `-T' precisa dun argumento" + +#~ msgid "%s: unrecognized option `-%c'\n" +#~ msgstr "%s: opción descoñecida `-%c'\n" + +#~ msgid "" +#~ "Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +#~ "PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +#~ "\n" +#~ " -b, --bytes=SIZE put SIZE bytes per output file\n" +#~ " -C, --line-bytes=SIZE put at most SIZE bytes of lines per output " +#~ "file\n" +#~ " -l, --lines=NUMBER put NUMBER lines per output file\n" +#~ " -NUMBER same as -l NUMBER\n" +#~ " --verbose print a diagnostic to standard error just\n" +#~ " before each output file is opened\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +#~ msgstr "" +#~ "Escribir anacos de tamaño fixo do ficheiro de ENTRADA nos ficheiros " +#~ "PREFIXOaa,\n" +#~ "PREFIXOab, ...; se non se indica o prefixo, este é `x'. Sen un ficheiro " +#~ "de\n" +#~ "ENTRADA, ou se a ENTRADA é -, lese da entrada estándar.\n" +#~ "\n" +#~ " -b, --bytes=TAMAÑO poñer TAMAÑO bytes por ficheiro de saída\n" +#~ " -C, --line-bytes=TAMAÑO poñer como máximo TAMAÑO bytes de liñas por " +#~ "ficheiro\n" +#~ " de saída\n" +#~ " -l, --lines=NÚMERO poner NÚMERO liñas por ficheiro de saída\n" +#~ " -NÚMERO igual que -l NÚMERO\n" +#~ " --verbose visualizar un diagnóstico no error estándar " +#~ "xusto\n" +#~ " antes de abrir cada ficheiro de saída\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" +#~ "\n" +#~ "O TAMAÑO pode ter un sufixo multiplicador: b para 512, k para 1K, m para " +#~ "1Meg.\n" + +#~ msgid "" +#~ "Print the last %d lines of each FILE to standard output.\n" +#~ "With more than one FILE, precede each with a header giving the file " +#~ "name.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ " --retry keep trying to open a file even if it is\n" +#~ " inaccessible when tail starts or if it " +#~ "becomes\n" +#~ " inaccessible later -- useful only with -f\n" +#~ " -c, --bytes=N output the last N bytes\n" +#~ " -f, --follow[={name|descriptor}] output appended data as the file " +#~ "grows;\n" +#~ " -f, --follow, and --follow=descriptor are\n" +#~ " equivalent\n" +#~ " -n, --lines=N output the last N lines, instead of the last %" +#~ "d\n" +#~ " --max-unchanged-stats=N see the texinfo documentation\n" +#~ " (the default is %d)\n" +#~ " --max-consecutive-size-changes=N see the texinfo documentation\n" +#~ " (the default is %d)\n" +#~ " --pid=PID with -f, terminate after process ID, PID dies\n" +#~ " -q, --quiet, --silent never output headers giving file names\n" +#~ " -s, --sleep-interval=S with -f, sleep S seconds between iterations\n" +#~ " -v, --verbose always output headers giving file names\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "If the first character of N (the number of bytes or lines) is a `+',\n" +#~ "print beginning with the Nth item from the start of each file, " +#~ "otherwise,\n" +#~ "print the last N items in the file. N may have a multiplier suffix:\n" +#~ "b for 512, k for 1024, m for 1048576 (1 Meg). A first OPTION of -VALUE\n" +#~ "or +VALUE is treated like -n VALUE or -n +VALUE unless VALUE has one of\n" +#~ "the [bkm] suffix multipliers, in which case it is treated like -c VALUE\n" +#~ "or -c +VALUE.\n" +#~ "\n" +#~ "With --follow (-f), tail defaults to following the file descriptor, " +#~ "which\n" +#~ "means that even if a tail'ed file is renamed, tail will continue to " +#~ "track\n" +#~ "its end. This default behavior is not desirable when you really want to\n" +#~ "track the actual name of the file, not the file descriptor (e.g., log\n" +#~ "rotation). Use --follow=name in that case. That causes tail to track " +#~ "the\n" +#~ "named file by reopening it periodically to see if it has been removed " +#~ "and\n" +#~ "recreated by some other program.\n" +#~ "\n" +#~ msgstr "" +#~ "Escribi-las derradeiras %d liñas de cada FICHEIRO na saída estándar.\n" +#~ "Con máis dun FICHEIRO, precédese cada un cunha cabeceira que indica o " +#~ "nome.\n" +#~ "Se non se indica un FICHEIRO, ou se o FICHEIRO é -, lese da entrada " +#~ "estándar.\n" +#~ "\n" +#~ " --retry seguir tentando abrir un ficheiro incluso se " +#~ "é\n" +#~ " inaccesible cando tail comeza ou se se " +#~ "volve\n" +#~ " inaccesible despois -- útil só con -f\n" +#~ " -c, --bytes=N escribi-los derradeiros N bytes\n" +#~ " -f, --follow[={name|descriptor}] escribi-los datos engadidos cando o\n" +#~ " ficheiro medra. -f, --follow, e\n" +#~ " --follow=descriptor son equivalentes\n" +#~ " -n, --lines=N escribi-las derradeiras N liñas, na vez das %" +#~ "d\n" +#~ " --max-unchanged-stats=N vexa a documentación de texinfo\n" +#~ " (por defecto é %d)\n" +#~ " --max-consecutive-size-changes=N vexa a documentación de texinfo\n" +#~ " (por defecto é %d)\n" +#~ " --pid=PID con -f, rematar despois de que proceso " +#~ "indicado\n" +#~ " morra\n" +#~ " -q, --quiet, --silent non escribi-las cabeceiras que indican os " +#~ "nomes\n" +#~ " -s, --sleep-interval=S con -f, durmir S segundos entre iteracións\n" +#~ " -v, --verbose escribir sempre as cabeceiras que indican os " +#~ "nomes\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" +#~ "\n" +#~ "Se o primeiro carácter de N (o número de bytes ou liñas) é un `+',\n" +#~ "escríbese comezando polo N-ésimo elemento dende o principio de cada " +#~ "ficheiro,\n" +#~ "e nos demáis casos escríbense os derradeiros N elementos do ficheiro. N " +#~ "pode\n" +#~ "ter un sufixo multiplicativo: b para 512, k para 1024, m para 1048576 (1\n" +#~ "Mega). Unha primeira OPCIÓN de -VALOR ou +VALOR é tratada coma -n VALOR " +#~ "ou\n" +#~ "-n +VALOR agás se VALOR ten un dos sufixos multiplicadores [bkm], entón\n" +#~ "trátase coma -c VALOR ou -c +VALOR.\n" +#~ "\n" +#~ "Con --follow (-f), tail segue, por defecto, o descriptor do ficheiro, o " +#~ "que\n" +#~ "significa que incluso se un ficheiro ao que se fai tail se lle cambia o " +#~ "nome,\n" +#~ "tail segue amosando a súa fin. Este comportamento por defecto non é " +#~ "desexable\n" +#~ "cando quere amosa-lo ficheiro con ese nome, non o seu descriptor (por " +#~ "exemplo,\n" +#~ "rotación de ficheiros de rexistro). Use --follow=name nese caso. Isto fai " +#~ "que\n" +#~ "tail busque o ficheiro con ese nome reabríndoo periodicamente para ver " +#~ "se\n" +#~ "foi eliminado e recreado por outro programa.\n" +#~ "\n" + +#~ msgid "" +#~ "\n" +#~ "SETs are specified as strings of characters. Most represent themselves.\n" +#~ "Interpreted sequences are:\n" +#~ "\n" +#~ " \\NNN character with octal value NNN (1 to 3 octal digits)\n" +#~ " \\\\ backslash\n" +#~ " \\a audible BEL\n" +#~ " \\b backspace\n" +#~ " \\f form feed\n" +#~ " \\n new line\n" +#~ " \\r return\n" +#~ " \\t horizontal tab\n" +#~ " \\v vertical tab\n" +#~ " CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +#~ " [CHAR1-CHAR2] same as CHAR1-CHAR2, if both SET1 and SET2 use this\n" +#~ " [CHAR*] in SET2, copies of CHAR until length of SET1\n" +#~ " [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +#~ " [:alnum:] all letters and digits\n" +#~ " [:alpha:] all letters\n" +#~ " [:blank:] all horizontal whitespace\n" +#~ " [:cntrl:] all control characters\n" +#~ " [:digit:] all digits\n" +#~ " [:graph:] all printable characters, not including space\n" +#~ " [:lower:] all lower case letters\n" +#~ " [:print:] all printable characters, including space\n" +#~ " [:punct:] all punctuation characters\n" +#~ " [:space:] all horizontal or vertical whitespace\n" +#~ " [:upper:] all upper case letters\n" +#~ " [:xdigit:] all hexadecimal digits\n" +#~ " [=CHAR=] all characters which are equivalent to CHAR\n" +#~ msgstr "" +#~ "\n" +#~ "Os CONXUNTOs especifícanse como cadeas de caracteres. A maioría " +#~ "represéntanse\n" +#~ "a sí mesmos. As secuencias interpretadas son:\n" +#~ "\n" +#~ " \\NNN o carácter co valor octal NNN (de 1 a 3 díxitos " +#~ "octais)\n" +#~ " \\\\ barra invertida\n" +#~ " \\a campá audible (BEL)\n" +#~ " \\b borrar carácter anterior\n" +#~ " \\f salto de páxina\n" +#~ " \\n salto de liña\n" +#~ " \\r retorno de carro\n" +#~ " \\t tabulación horizontal\n" +#~ " \\v tabulación vertical\n" +#~ " CAR1-CAR2 tódolos caracteres de CAR1 a CAR2 en orde crecente\n" +#~ " [CAR1-CAR2] igual que CAR1-CAR2, se CONXUNTO1 e CONXUNTO2 o usan á " +#~ "vez\n" +#~ " [CAR*] en CONXUNTO2, copias de CAR ata a lonxitude do " +#~ "CONXUNTO1\n" +#~ " [CAR*REPET] REPETir copias de CAR, REPETir un octal se comeza por " +#~ "0\n" +#~ " [:alnum:] tódalas letras e díxitos\n" +#~ " [:alpha:] tódalas letras\n" +#~ " [:blank:] tódolos espacios en branco horizontais\n" +#~ " [:cntrl:] tódolos caracteres de control\n" +#~ " [:digit:] tódolos díxitos\n" +#~ " [:graph:] tódolos caracteres imprimibles, sen conta-lo espacio\n" +#~ " [:lower:] tódalas letras minúsculas\n" +#~ " [:print:] tódolos caracteres imprimibles, contando o espacio\n" +#~ " [:punct:] tódolos caracteres de puntuación\n" +#~ " [:space:] tódolos espacios en branco horizontais e verticais\n" +#~ " [:upper:] tódalas letras maiúsculas\n" +#~ " [:xdigit:] tódolos díxitos hexadecimais\n" +#~ " [=CAR=] tódolos caracteres equivalentes a CAR\n" + +#~ msgid "" +#~ "\n" +#~ "Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +#~ "-t may be used only when translating. SET2 is extended to length of\n" +#~ "SET1 by repeating its last character as necessary. Excess characters\n" +#~ "of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +#~ "expand in ascending order; used in SET2 while translating, they may\n" +#~ "only be used in pairs to specify case conversion. -s uses SET1 if not\n" +#~ "translating nor deleting; else squeezing uses SET2 and occurs after\n" +#~ "translation or deletion.\n" +#~ msgstr "" +#~ "\n" +#~ "A traducción faise se non se indica -d e ámbolos dous CONXUNTO1 e " +#~ "CONXUNTO2\n" +#~ "aparecen. Pode usarse -t só cando se traduce. CONXUNTO2 esténdese ata " +#~ "a\n" +#~ "lonxitude do CONXUNTO1 repetindo o seu derradeiro carácter tantas veces " +#~ "como\n" +#~ "sexa necesario. Os caracteres excesivos do CONXUNTO2 ignóranse. Só se\n" +#~ "garantiza que [:lower:] e [:upper:] serán expandidos en orde crecente; " +#~ "usados\n" +#~ "no CONXUNTO2 na traducción, poden ser usados só en parellas para indica-" +#~ "la\n" +#~ "conversión de maiúsculas a minúsculas e viceversa. -s usa o CONXUNTO1 se " +#~ "non\n" +#~ "se está a traducir ou borrar; noutro caso a compresión usa o CONXUNTO2 e\n" +#~ "sucede trala traducción ou borrado.\n" + +#~ msgid "" +#~ "Convert spaces in each FILE to tabs, writing to standard output.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ " -a, --all convert all whitespace, instead of initial " +#~ "whitespace\n" +#~ " -t, --tabs=NUMBER have tabs NUMBER characters apart instead of 8\n" +#~ " -t, --tabs=LIST use comma separated list of explicit tab positions\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n" +#~ msgstr "" +#~ "Converte-los espacios de cada FICHEIRO a tabulacións, escribindo na " +#~ "saída\n" +#~ "estándar. Se non se indica un FICHEIRO, ou se o FICHEIRO é -, lese da " +#~ "entrada\n" +#~ "estándar.\n" +#~ "\n" +#~ " -a, --all converte-los espacios en branco, non só os " +#~ "iniciais\n" +#~ " -t, --tabs=NÚMERO que as tabulacións sexan de NÚMERO caracteres e non " +#~ "8\n" +#~ " -t, --tabs=LISTA usar unha lista de posicións separadas por comas\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" +#~ "\n" +#~ "Na vez de -t NÚMERO ou -t LISTA, pode empregarse -NÚMERO ou -LISTA.\n" + +#~ msgid "" +#~ "Discard all but one of successive identical lines from INPUT (or\n" +#~ "standard input), writing to OUTPUT (or standard output).\n" +#~ "\n" +#~ " -c, --count prefix lines by the number of occurrences\n" +#~ " -d, --repeated only print duplicate lines\n" +#~ " -D, --all-repeated print all duplicate lines\n" +#~ " -f, --skip-fields=N avoid comparing the first N fields\n" +#~ " -i, --ignore-case ignore differences in case when comparing\n" +#~ " -s, --skip-chars=N avoid comparing the first N characters\n" +#~ " -u, --unique only print unique lines\n" +#~ " -w, --check-chars=N compare no more than N characters in lines\n" +#~ " -N same as -f N\n" +#~ " +N same as -s N\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "A field is a run of whitespace, then non-whitespace characters.\n" +#~ "Fields are skipped before chars.\n" +#~ msgstr "" +#~ "Desbotar tódalas as liñas idénticas sucesivas, agás unha, da ENTRADA (ou\n" +#~ "entrada estándar), escribindo na SAÍDA (ou saída estándar).\n" +#~ "\n" +#~ " -c, --count precede-las liñas polo número de repeticións\n" +#~ " -d, --repeated escribir só as liñas duplicadas\n" +#~ " -D, --all-repeated escribir tódalas liñas duplicadas\n" +#~ " -f, --skip-fields=N evita-la comparación dos primeiros N campos\n" +#~ " -i, --ignore-case ignora-las maiúsculas e minúsculas na " +#~ "comparación\n" +#~ " -s, --skip-chars=N evita-la comparación dos primeiros N caracteres\n" +#~ " -u, --unique escribir só as liñas que non estén duplicadas\n" +#~ " -w, --check-chars=N non comparar máis de N caracteres nas liñas\n" +#~ " -N igual que -f N\n" +#~ " +N igual que -s N\n" +#~ " --help amosar esta axuda e saír\n" +#~ " --version amosar información sobre a versión e saír\n" +#~ "\n" +#~ "Un campo é un conxunto de caracteres distintos de espacios en branco.\n" +#~ "Sáltanse os campos e logo os caracteres.\n" + +#~ msgid "could not find loop" +#~ msgstr "non se puido atopa-lo lazo" diff --git a/src/apps/bin/coreutils-5.0/po/hu.gmo b/src/apps/bin/coreutils-5.0/po/hu.gmo new file mode 100644 index 0000000000..a753a819ca Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/hu.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/hu.po b/src/apps/bin/coreutils-5.0/po/hu.po new file mode 100644 index 0000000000..6e1389e478 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/hu.po @@ -0,0 +1,7212 @@ +# Hungarian translation of GNU fileutils +# Copyright (C) 2002 Free Software Foundation, Inc. +# Emese Kovács , 2002 +# This file is distributed under the same license as the fileutils package. +# Translated using gnu.twm +msgid "" +msgstr "" +"Project-Id-Version: fileutils 4.1.8\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2002-05-07 09:03+0200\n" +"Last-Translator: Emese Kovács \n" +"Language-Team: Hungarian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" + +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "A `%s' argumentum érvénytelen ehhez: %s" + +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "`%s' argumentum nem egyértelmû a következõhöz: `%s'" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "Az érvényes argumentumok a következõk:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "írási hiba" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "Ismeretlen rendszerhiba" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "" + +#: lib/file-type.c:45 +#, fuzzy +msgid "directory" +msgstr "%s könyvtár" + +#: lib/file-type.c:48 +#, fuzzy +msgid "block special file" +msgstr "a speciális blokkfájl nem támogatott" + +#: lib/file-type.c:51 +#, fuzzy +msgid "character special file" +msgstr "a speciális karakterfájl nem támogatott" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "" + +#: lib/file-type.c:57 +#, fuzzy +msgid "symbolic link" +msgstr "nem lehet olvasni a következõ szimbolikus linket: %s" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "" + +#: lib/file-type.c:71 +msgid "weird file" +msgstr "" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: a `%s' kapcsoló nem egyértelmû\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: a `--%s' kapcsoló nem enged meg argumentumot\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: a `%c%s' kapcsoló nem enged meg argumentumot\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: a `%s' kapcsolóhoz argumentum szükséges\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: a `--%s' kapcsoló ismeretlen\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: a `%c%s' kapcsoló ismeretlen\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: illegális kapcsoló -- %c\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: érvénytelen kapcsoló -- %c\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: a kapcsolónak szüksége van egy argumentumra -- %c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: a `-W %s' kapcsoló nem egyértelmû\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: a `-W %s' kapcsoló nem enged meg argumentumot\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "blokkméret" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "nem lehet a következõ könyvtárat létrehozni: %s" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%s létezik, de nem könyvtár" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "nem lehet %s tulajdonosát és vagy csoportját megváltoztatni" + +#: lib/makepath.c:338 +#, c-format +msgid "cannot chdir to directory %s" +msgstr "nem lehet a következõ könyvtárba lépni: %s" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "nem lehet %s jogosultságait megváltoztatni" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "elfogyott a memória" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "`" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "'" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[iIyY]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[nN]" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "az iconv függvény nem használható" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "az iconv függvény nem elérhetõ" + +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "tartományon kívüli karakter" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "nem lehet helyi karakterkészletbe átalakítani a következõt: U+%04X" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "nem lehet U+%04X-t helyi karakterkészletbe átalakítani: %s" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "érvénytelen felhasználó" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "érvénytelen csoport" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "az UID-hez tartozó bejelentkezési csoportot nem lehet megállapítani" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "nem lehet egyszerre a csoportot és a felhasználót is elhagyni" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "Írta %s.\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +"Ez szabad szoftver; a sokszorosításra vonatkozó feltételeket lásd a " +"forrásban.\n" +"SEMMILYEN garanciát nem vállalunk, még azt sem állítjuk, hogy ez a program\n" +"KERESKEDELMI CÉLOKRA ALKALMAS vagy HASZNÁLHATÓ EGY ADOTT FELADATRA.\n" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "karakterlánc-összehasonlítás sikertelen" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "Állítsd be az LC_ALL='C' -t a probléma elkerüléséhez." + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "Az összehasonlított karakterláncok: %s és %s." + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Próbáld a `%s --help'-et.\n" + +#: src/basename.c:54 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "Használat: %s [KAPCSOLÓ]\n" + +#: src/basename.c:59 +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, fuzzy, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"A hibákat jelentsd a címen." + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "túl kevés argumentum" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "túl sok argumentum" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "" + +#: src/cat.c:92 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "Használat: %s [KAPCSOLÓ]... FÁJL...\n" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" + +#: src/cat.c:314 +#, fuzzy, c-format +msgid "cannot do ioctl on `%s'" +msgstr "nem lehet a következõ könyvtárat megnyitni: %s" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "szabványos kimenet" + +#: src/cat.c:800 +#, fuzzy, c-format +msgid "%s: input file is output file" +msgstr "%s: érvénytelen fájlméret" + +#: src/cat.c:858 +#, fuzzy +msgid "closing standard input" +msgstr "szabványos bemenet" + +#: src/cat.c:861 +#, fuzzy +msgid "closing standard output" +msgstr "szabványos kimenet" + +#: src/chgrp.c:93 +msgid "cannot change to null group" +msgstr "a csoportot nem lehet nullra változtatni" + +#: src/chgrp.c:102 +#, c-format +msgid "invalid group name %s" +msgstr "érvénytelen csoportnév: %s" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "csoportszám" + +#: src/chgrp.c:109 +#, c-format +msgid "invalid group number %s" +msgstr "érvénytelen csoportszám: %s" + +#: src/chgrp.c:126 +#, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Használat: %s [KAPCSOLÓ]... CSOPORT FÁJL...\n" +" vagy: %s [KAPCSOLÓ]... --reference=REFERENCIAFÁJL FÁJL...\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Megváltoztatja mindegyik FÁJL csoportját CSOPORTRA.\n" +"\n" +" -c, --changes mint a bõbeszédû mód, de csak a változásokat " +"jelzi\n" +" --dereference nem a szimbolikus link csoportját változtatja " +"meg,\n" +" hanem a fájlét, amire az mutat\n" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" +" -h, --no-dereference nem a fájl, hanem a rá mutató szimbolikus link\n" +" csoportját állítja át (csak azokon a rendszereken\n" +" mûködik, ahol a szimlink csoportja állítható)\n" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet megszünteti a legtöbb hibaüzenetet\n" +" --reference=RFÁJL a megadott RFÁJL csoportját állítja be a " +"CSOPORT\n" +" értéke helyett\n" +" -R, --recursive rekurzívan módosítja a fájlokat és könyvtárakat\n" +" -v, --verbose minden feldolgozott fájl után üzenetet ír ki\n" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, c-format +msgid "failed to get attributes of %s" +msgstr "%s attribútumainak beolvasása sikertelen" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "%s új attribútumainak beolvasása" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "%s jogosultságai megváltoztak %04lo -ra (%s)\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "%s jogosultságainak megváltoztatása %04lo -ra sikertelen (%s)\n" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "%s jogosultsága maradt a következõ: %04lo (%s)\n" + +#: src/chmod.c:179 +#, c-format +msgid "changing permissions of %s" +msgstr "%s jogosultságainak megváltoztatása" + +#: src/chmod.c:242 +#, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Használat: %s [KAPCSOLÓ]... MÓD[,MÓD]... FÁJL...\n" +" vagy: %s [KAPCSOLÓ]... OKTÁLIS_MÓD FÁJL...\n" +" vagy: %s [KAPCSOLÓ]... --reference=REFERENCIAFÁJL FÁJL...\n" + +#: src/chmod.c:248 +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"Megváltoztatja mindegyik FÁJL jogosultságait MÓDra.\n" +"\n" +" -c, --changes mint a bõbeszédû mód, de csak a változásokat " +"jelzi\n" +" -f, --silent, --quiet megszünteti a legtöbb hibaüzenetet\n" +" -v, --verbose minden feldolgozott fájl után üzenetet ír ki\n" +" --reference=RFÁJL RFÁJL MÓDját állítja be a MÓD értékek helyett\n" +" -R, --recursive rekurzívan módosítja a fájlokat és könyvtárakat\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" +"\n" +"A MÓD az ugoa betûk kombinációjából, a +-= jelek egyikébõl és az rwxXstugo\n" +"betûk kombinációjából áll.\n" + +#: src/chmod.c:320 +#, c-format +msgid "invalid character %s in mode string %s" +msgstr "érvénytelen karakter (%s) a `%s' módkarakterláncban" + +#: src/chmod.c:361 +#, c-format +msgid "invalid mode string: %s" +msgstr "érvénytelen módkarakterlánc: %s" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "" +"a szimbolikus link (%s) és az általa mutatott fájl egyaránt változatlan\n" + +#: src/chown-core.c:143 +#, fuzzy, c-format +msgid "changed ownership of %s to %s\n" +msgstr "%s tulajdonosának megváltoztatása %s-re sikertelen\n" + +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "%s csoportja megváltozott a következõre: %s\n" + +#: src/chown-core.c:148 +#, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "%s tulajdonosának megváltoztatása %s-re sikertelen\n" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "%s csoportjának megváltoztatása %s-re sikertelen\n" + +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "%s tulajdonosa maradt %s\n" + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "%s csoportja maradt %s\n" + +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "%s tulajdonosának megváltoztatása" + +#: src/chown-core.c:327 +#, c-format +msgid "changing group of %s" +msgstr "%s csoportjának megváltoztatása" + +#: src/chown-core.c:345 +#, c-format +msgid "unable to restore permissions of %s" +msgstr "%s jogosultságainak visszaállítása sikertelen" + +#: src/chown.c:99 +#, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Használat: %s [KAPCSOLÓ]... TULAJDONOS[:[CSOPORT]] FÁJL...\n" +" vagy: %s [KAPCSOLÓ]... :CSOPORT FÁJL...\n" +" vagy: %s [KAPCSOLÓ]... --reference=REFERENCIAFÁJL FÁJL...\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Megváltoztatja mindegyik FÁJL tulajdonosát és/vagy csoportját TULAJDONOSRA \n" +"és/vagy CSOPORTRA.\n" +"\n" +" -c, --changes mint a bõbeszédû mód, de csak a változásokat " +"jelzi\n" +" --dereference nem a szimbolikus link csoportját változtatja " +"meg,\n" +" hanem a fájlét, amire az mutat\n" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" +" --from=JELENLEGI_TULAJ:JELENLEGI_CSOPORT\n" +" csak akkor változtatja meg a fájl tulajdonosát és/\n" +" vagy csoportját, ha a jelenlegi beállítások\n" +" megegyeznek a megadottakkal. A két argumentum\n" +" közül bármelyik elhagyható.\n" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet megszünteti a legtöbb hibaüzenetet\n" +" --reference=RFÁJL a megadott RFÁJL csoportját és tulajdonosát\n" +" állítja be a TULAJ:CSOPORT értéke helyett\n" +" -R, --recursive rekurzívan módosítja a fájlokat és könyvtárakat\n" +" -v, --verbose minden feldolgozott fájl után üzenetet ír ki\n" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" +"\n" +"A tulajdonos változatlan marad, ha nincs megadva. A csoport változatlan\n" +"marad, ha nincs megadva, de megváltozik a bejelentkezési csoportra, ha \n" +"megadod a \":\"-ot.\n" +"TULAJDONOST és CSOPORTOT lehet számmal vagy névvel megadni.\n" + +#: src/chroot.c:45 +#, fuzzy, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "Használat: %s [KAPCSOLÓ]\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" + +#: src/chroot.c:84 +#, fuzzy, c-format +msgid "cannot change root directory to %s" +msgstr "nem lehet a következõ könyvtárba lépni: %s" + +#: src/chroot.c:87 +#, fuzzy +msgid "cannot chdir to root directory" +msgstr "nem lehet a következõ könyvtárba lépni: %s" + +#: src/cksum.c:234 +#, fuzzy, c-format +msgid "%s: file too long" +msgstr "%s: a fájl túl nagy" + +#: src/cksum.c:282 +#, fuzzy, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "Használat: %s [KAPCSOLÓ]\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "Richard Stallman és David MacKenzie" + +#: src/comm.c:73 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "Használat: %s [KAPCSOLÓ]... [FÁJL]\n" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" + +#: src/copy.c:162 src/du.c:332 +#, c-format +msgid "cannot access %s" +msgstr "%s: hozzáférés sikertelen" + +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "%s megnyitása olvasásra sikertelen" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, c-format +msgid "cannot fstat %s" +msgstr "fstat %s sikertelen" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "%s fájl kihagyása, mivel kicserélték másolás közben" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, c-format +msgid "cannot remove %s" +msgstr "nem lehet törölni a következõt: `%s'" + +#: src/copy.c:277 +#, c-format +msgid "cannot create regular file %s" +msgstr "nem lehet létrehozni a következõ reguláris fájlt: %s" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, c-format +msgid "reading %s" +msgstr "%s olvasása" + +#: src/copy.c:362 +#, c-format +msgid "cannot lseek %s" +msgstr "lseek %s sikertelen" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, c-format +msgid "writing %s" +msgstr "%s írása" + +#: src/copy.c:409 src/copy.c:415 +#, c-format +msgid "closing %s" +msgstr "%s lezárása" + +#: src/copy.c:610 +#, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: %s felülírása %04lo mód figyelmen kívül hagyásával? " + +#: src/copy.c:616 +#, c-format +msgid "%s: overwrite %s? " +msgstr "%s: felülírod %s-t? " + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, c-format +msgid "cannot stat %s" +msgstr "stat %s sikertelen" + +#: src/copy.c:820 +#, c-format +msgid "omitting directory %s" +msgstr "%s könyvtár kihagyása" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "vigyázat: %s forrásfájl többször is meg van adva" + +#: src/copy.c:866 src/ln.c:237 +#, c-format +msgid "%s and %s are the same file" +msgstr "%s és %s ugyanaz a fájl" + +#: src/copy.c:876 +#, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "%s nem-könyvtárat nem lehet %s könyvtárral felülírni" + +#: src/copy.c:893 +#, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "az éppen létrehozott %s-t nem fogom felülírni ezzel: %s" + +#: src/copy.c:904 +#, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "%s könyvtárat nem lehet nem-könyvtárral felülírni" + +#: src/copy.c:965 +#, c-format +msgid "cannot overwrite directory %s" +msgstr "nem lehet %s könyvtárat felülírni" + +#: src/copy.c:974 +#, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "a könyvtárat nem lehet nem-könyvtárba áthelyezni: %s -> %s" + +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "" +"biztonsági mentés %s-rõl megsemmisítené a forrást:\n" +"%s nem került áthelyezésre" + +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "" +"biztonsági mentés %s-rõl megsemmisítené a forrást:\n" +"%s nem került másolásra" + +#: src/copy.c:1013 src/ln.c:273 +#, c-format +msgid "cannot backup %s" +msgstr "%s biztonsági mentése sikertelen" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr " (biztonsági mentés: %s)" + +#: src/copy.c:1099 +#, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "%s könyvtárat nem lehet saját magába (%s) másolni" + +#: src/copy.c:1106 +#, c-format +msgid "will not create hard link %s to directory %s" +msgstr "%2$s könyvtárra mutató %1$s hard link nem hozható létre" + +#: src/copy.c:1132 +#, c-format +msgid "cannot create hard link %s to %s" +msgstr "%2$s-re mutató %1$s hard linket nem lehet létrehozni" + +#: src/copy.c:1186 +#, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "%s-t nem lehet egy saját alkönyvtárába (%s) áthelyezni" + +#: src/copy.c:1229 +#, c-format +msgid "cannot move %s to %s" +msgstr "%s-t nem lehet ide áthelyezni: %s" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "" +"eszközközi áthelyezés sikertelen:\n" +"%s --> %s; cél törlése sikertelen" + +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "%s körkörös linket nem lehet másolni" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "" +"%s: relatív szimbolikus linkeket csak az aktuális\n" +"könyvtárban lehet létrehozni" + +#: src/copy.c:1353 +#, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "nem lehet létrehozni %2$s-re mutató %1$s szimbolikus linket" + +#: src/copy.c:1364 +#, c-format +msgid "cannot create link %s" +msgstr "nem lehet a következõ linket létrehozni: %s" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, c-format +msgid "cannot create fifo %s" +msgstr "nem lehet a következõ fifot létrehozni: %s" + +#: src/copy.c:1403 +#, c-format +msgid "cannot create special file %s" +msgstr "nem lehet létrehozni a következõ speciális fájlt: %s" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, c-format +msgid "cannot read symbolic link %s" +msgstr "nem lehet olvasni a következõ szimbolikus linket: %s" + +#: src/copy.c:1440 +#, c-format +msgid "cannot create symbolic link %s" +msgstr "nem lehet létrehozni a következõ szimbolikus linket: %s" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, fuzzy, c-format +msgid "failed to preserve ownership for %s" +msgstr "%s tulajdonosának megtartása" + +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "%s fájltípusa ismeretlen" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "%s összes idejének megtartása" + +#: src/copy.c:1531 +#, fuzzy, c-format +msgid "failed to preserve authorship for %s" +msgstr "%s tulajdonosának megtartása" + +#: src/copy.c:1549 +#, c-format +msgid "setting permissions for %s" +msgstr "%s jogosultságainak beállítása" + +#: src/copy.c:1571 src/ln.c:326 +#, c-format +msgid "cannot un-backup %s" +msgstr "%s biztonsági mentés visszaállítása sikertelen" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s -> %s (biztonsági mentés visszaállítása)\n" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "Torbjorn Granlund, David MacKenzie és Jim Meyering" + +#: src/cp.c:164 src/mv.c:311 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"Használat: %s [KAPCSOLÓ]... FORRÁS CÉL\n" +" vagy: %s [KAPCSOLÓ]... FORRÁS... KÖNYVTÁR\n" +" vagy: %s [KAPCSOLÓ]... --target-directory=KÖNYVTÁR FORRÁS...\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "FORRÁST CÉLRA vagy több FORRÁST egy CÉLKÖNYVTÁRBA másol.\n" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" +"Ha egy hosszú kapcsolóhoz kötelezõ argumentumot megadni, akkor ez a \n" +"megfelelõ rövid kapcsolónál is kötelezõ.\n" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" +" -a, --archive ugyanaz, mint -dpR\n" +" --backup[=CONTROL] minden létezõ célfájlról mentést készít\n" +" -b mint --backup, de nem fogad el argumentumot\n" +" --copy-contents rekurzió esetén speciális fájlok tartalmát \n" +" is másolja\n" +" -d mint --no-dereference --preserve=link\n" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" +" --no-dereference soha sem követi a szimbolikus linkeket\n" +" -f, --force ha egy létezõ CÉLfájlt nem lehet megnyitni,\n" +" törli azt, majd újrapróbálja\n" +" -i, --interactive felülírás elõtt kérdez\n" +" -H \"command-line\" szimbolikus linkek követése\n" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" +" -l, --link fájlok linkelése másolás helyett\n" +" -L, --dereference mindig követi a szimbolikus linkeket\n" +" -p mint --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] megadott fájl attribútumok megõrzése (alap:\n" +" mode,ownership,timestamps), ha lehet\n" +" további attribútumokat is: links, all\n" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" +" --no-preserve=ATTR_LISTA nem õrzi meg a megadott attribútumokat\n" +" --parents forrásútvonal hozzáadása KÖNYVTÁRHOZ\n" +" -P mint --no-dereference\n" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" +" -R, -r, --recursive könyvtárak rekurzív másolása\n" +" --remove-destination törli a célfájl, még mielõtt megpróbálná\n" +" megnyitni (ellentétben a --force " +"kapcsolóval)\n" + +#: src/cp.c:209 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +" --reply={yes,no,query} mi történjen, ha már létezik a célfájl\n" +" --sparse=EKKOR lyukas fájlok létrehozásának szabályozása\n" +" --strip-trailing-slashes eltávolítja a befejezõ per jeleket minden\n" +" forrásról\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" +" -s, --symbolic-link szimbolikus link másolás helyett\n" +" -S, --suffix=KITERJESZTES a biztonsági másolat szokásos \n" +" kiterjesztésének felülbírálása\n" +" --target-directory=KÖNYVTÁR minden FORRÁS másolása a megadott \n" +" KÖNYVTÁRBA\n" + +#: src/cp.c:221 +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +" -u, --update csak akkor másolja, ha a CÉL régebbi mint a\n" +" FORRÁS vagy ha a CÉL nem létezik\n" +" -v, --verbose elmagyarázza, mi történik\n" +" -x, --one-file-system az adott fájlrendszeren marad\n" + +#: src/cp.c:230 +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +"\n" +"Alapértelmezésben a program kitalálja, hogy a FORRÁS fájl lyukas-e vagy " +"nem.\n" +"Amennyiben igen, a megfelelõ CÉL fájl is lyukas lesz. Ez a --sparse=auto\n" +"kapcsolónak megfelelõ viselkedés. Megadhatod a --sparse=always kapcsolót,\n" +"ekkor a CÉL fájl lyukas lesz, amennyiben megfelelõ mennyiségû null bájtot\n" +"tartalmaz.\n" +"A --sparse=never kapcsolóval letilthatod a lyukas fájlok létrehozását.\n" +"\n" + +#: src/cp.c:239 +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"A biztonsági másolat kiterjesztése `~', ha nincs megadva a --suffix vagy\n" +"a SIMPLE_BACKUP_SUFFIX. A verziókövetés módját megválaszthatod a --backup\n" +"kapcsolóval vagy a VERSION_CONTROL környezeti változó segítségével.\n" +"Az érvényes értékek a következõk:\n" +"\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +" none, off nem készít mentést (még --backup esetén sem)\n" +" numbered, t számozott mentést készít\n" +" existing, nil számozott, ha már létezik számozott változat, \n" +" egyébként egyszerû\n" +" simple, never mindig egyszerû biztonsági mentés\n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +"Kivételt képez, amikor a cp biztonsági mentést készít a FORRÁSRÓL és a " +"force\n" +"és backup kapcsolók egyaránt meg vannak adva, továbbá FORRÁS és CÉL ugyanaz " +"a\n" +"reguláris fájl.\n" + +#: src/cp.c:325 +#, fuzzy, c-format +msgid "failed to preserve times for %s" +msgstr "%s összes idejének megtartása" + +#: src/cp.c:349 +#, fuzzy, c-format +msgid "failed to preserve permissions for %s" +msgstr "%s jogosultságainak visszaállítása sikertelen" + +#: src/cp.c:434 +#, c-format +msgid "cannot make directory %s" +msgstr "nem lehet %s könyvtárat létrehozni" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +msgid "missing file argument" +msgstr "hiányzó fájlargumentum" + +#: src/cp.c:498 +msgid "missing destination file" +msgstr "hiányzó célfájl" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "%s elérése" + +#: src/cp.c:546 +#, c-format +msgid "%s: specified target is not a directory" +msgstr "%s: a megadott cél nem könyvtár" + +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "több fájl másolása, de az utolsó argumentum (%s) nem könyvtár" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "az útvonal megtartásakor a cél könyvtár kell legyen" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"vigyázat: a --version-control (-V) kapcsoló elavult, támogatottsága \n" +"meg fog szünni a következõ verzióval.\n" +"Használd a --backup=%s kapcsolót helyette." + +#: src/cp.c:972 src/ln.c:464 +msgid "symbolic links are not supported on this system" +msgstr "ez a rendszer nem támogatja a szimbolikus linkeket" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "nem lehet egyszerre hard linket és szimbolikus linket létrehozni" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "biztonsági mentés típusa" + +#: src/csplit.c:41 +#, fuzzy +msgid "Stuart Kemp and David MacKenzie" +msgstr "Mike Parker és David MacKenzie" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +#, fuzzy +msgid "read error" +msgstr "írási hiba" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "" + +#: src/csplit.c:705 src/csplit.c:716 +#, fuzzy, c-format +msgid "%s: line number out of range" +msgstr "%s: érvénytelen menetszám" + +#: src/csplit.c:743 +#, fuzzy, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: érvénytelen menetszám" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr "" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "" + +#: src/csplit.c:992 +#, fuzzy, c-format +msgid "write error for `%s'" +msgstr "írási hiba" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "" + +#: src/csplit.c:1141 +#, fuzzy, c-format +msgid "%s: invalid regular expression: %s" +msgstr "érvénytelen konverzió: %s" + +#: src/csplit.c:1174 +#, fuzzy, c-format +msgid "%s: invalid pattern" +msgstr "%s: érvénytelen fájltípus" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "" + +#: src/csplit.c:1320 +#, fuzzy, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "érvénytelen konverzió: %s" + +#: src/csplit.c:1323 +#, fuzzy, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "érvénytelen konverzió: %s" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "" + +#: src/csplit.c:1441 +#, fuzzy, c-format +msgid "%s: invalid number" +msgstr "érvénytelen szám: %s" + +#: src/csplit.c:1496 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "Használat: %s [KAPCSOLÓ]... FÁJL...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" + +#: src/cut.c:39 +#, fuzzy +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "Mike Parker, David MacKenzie és Jim Meyering" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "Használat: %s [KAPCSOLÓ]... [FÁJL]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" + +#: src/cut.c:190 +#, fuzzy +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" +" -w, --width=OSZL feltételezi, hogy a képernyõ OSZL széles\n" +" -x a bejegyzéseket soronként, és nem " +"oszloponként \n" +" listázza\n" +" -X ábécé sorba rendez, kiterjesztés szerint\n" +" -1 soronként egy fájlnevet ír ki\n" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +#, fuzzy +msgid "invalid byte or field list" +msgstr "érvénytelen idõformátum: %s" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "" + +#: src/cut.c:670 +#, fuzzy +msgid "missing list of positions" +msgstr "hiányzó célfájl" + +#: src/cut.c:679 +#, fuzzy +msgid "missing list of fields" +msgstr "hiányzó célfájl" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "" + +#: src/cut.c:720 +msgid "an input delimiter may be specified only when operating on fields" +msgstr "" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" + +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "szabványos bemenet" + +#: src/date.c:268 src/date.c:460 +#, fuzzy, c-format +msgid "invalid date `%s'" +msgstr "érvénytelen mód: %s" + +#: src/date.c:364 +#, fuzzy +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "" +"a dircolors belsõ adatbázisának kilistázása és a shell szintaxis\n" +"kiíratása két egymást kölcsönösen kizáró kapcsoló" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "" + +#: src/date.c:377 +#, fuzzy, c-format +msgid "too many non-option arguments: %s%s" +msgstr "túl sok argumentum" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" + +#: src/date.c:397 +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "" + +#: src/date.c:433 +msgid "undefined" +msgstr "" + +#: src/date.c:435 +#, fuzzy +msgid "cannot get time of day" +msgstr "nem lehet beállítani %s idõbélyegét" + +#: src/date.c:468 +#, fuzzy +msgid "cannot set date" +msgstr "stat %s sikertelen" + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "Paul Rubin, David MacKenzie és Stuart Kemp" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "Használat: %s [KAPCSOLÓ]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" +"Fájl másolása, a beállításoknak megfelelõ átalakításokkal.\n" +"\n" +" bs=BÁJT ibs=BÁJT és obs=BÁJT beállítása\n" +" cbs=BÁJT BÁJT bájtot alakít át alkalmanként\n" +" conv=KULCSSZÓ a vesszõvel elválasztott kulcsszavaknak megfelelõen " +"konvertál\n" +" count=BLOKK csak BLOKK bemeneti blokkot másol\n" +" ibs=BÁJT egyszerre BÁJT bájtot olvas be\n" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" +" if=FÁJL FÁJLBÓL olvas a szabványos bemenet helyett\n" +" obs=BÁJT egyszerre BÁJT bájtot ír ki\n" +" of=FÁJL FÁJLBA ír a szabványos kimenet helyett\n" +" seek=BLOKK ennyi obs-méretû blokkot hagy ki a kimenet elején\n" +" skip=BLOKK ennyi ibs-méretû blokkot hagy ki a bemenet elején\n" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" +"\n" +"BLOKKHOZ és BÁJTHOZ a következõ szorzó-utótagokat adhatod meg:\n" +"xM M, c 1, w 2, b 512, kD 1000, k 1024, MD 1 000 000, M 1 048 576,\n" +"GD 1 000 000 000, G 1 073 741 824, és ugyanígy T, P, E, Z, Y.\n" +"A KULCSSZÓ lehet:\n" +"\n" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" +" ascii EBCDIC-bõl ASCII-ba\n" +" ebcdic ASCII-ból EBCDIC-be\n" +" ibm ASCII-ból \"alternated\" EBCDIC-be\n" +" block az újsorra végzõdõ rekordokat cbs méretûre tölti ki szóközökkel\n" +" unblock a sorvégi szóközöket cbs méretû rekordokban soremelésre cseréli\n" +" lcase nagybetûrõl kisbetûre cserél\n" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" +" notrunc nem csonkolja a kimeneti fájlt\n" +" ucase kisbetûrõl nagybetûre cserél\n" +" swab minden bemeneti bájtpár sorrendjét megcseréli\n" +" noerror folytatás olvasási hibák esetén\n" +" sync minden bemeneti blokkot NULL bájtokkal ibs méretûre egészít ki;\n" +" ha a \"block\" vagy \"unblock\" is szerepel a listában, \n" +" NULL helyett szóközt használ\n" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "%s+%s beolvasott rekord\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "%s+%s kiírt rekord\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "levágott rekord" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "levágott rekord" + +#: src/dd.c:382 +#, c-format +msgid "closing input file %s" +msgstr "%s bemeneti fájl lezárása" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "%s kimeneti fájl lezárása" + +#: src/dd.c:469 +#, c-format +msgid "writing to %s" +msgstr "írás a következõbe: %s" + +#: src/dd.c:501 +#, c-format +msgid "invalid conversion: %s" +msgstr "érvénytelen konverzió: %s" + +#: src/dd.c:557 +#, c-format +msgid "unrecognized option %s" +msgstr "ismeretlen kapcsoló: %s" + +#: src/dd.c:610 +#, c-format +msgid "unrecognized option %s=%s" +msgstr "ismeretlen kapcsoló: %s=%s" + +#: src/dd.c:616 +#, c-format +msgid "invalid number %s" +msgstr "érvénytelen szám: %s" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"csak egy konverzió engedélyezett ezek közül: {ascii,ebcdic,ibm},\n" +"{lcase,ucase}, {block,unblock}, {unblock,sync}" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" +"vigyázat: lseek kernel hiba kivédése a következõ fájlnál:\n" +"%s (mt_type=0x%0lx)\n" +"A fájlban megtalálod a típusok listáját" + +#: src/dd.c:1170 src/dd.c:1188 +#, c-format +msgid "opening %s" +msgstr "%s megnyitása" + +#: src/dd.c:1196 +msgid "file offset out of range" +msgstr "a fájl offset túlmutat a fájlon" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "%s bájtnál továbbléptünk a következõ kimeneti fájlban: %s" + +#: src/df.c:49 +#, fuzzy +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "Torbjorn Granlund, David MacKenzie és Jim Meyering" + +#: src/df.c:153 +#, fuzzy +msgid "Filesystem Type" +msgstr "Fájlrendszer " + +#: src/df.c:155 +#, fuzzy +msgid "Filesystem " +msgstr "Fájlrendszer " + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr "Inode-ok IFogl. ISzab. IFo.%%" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Méret Fogl. Szab. %%" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Méret Fogl. Szab. %%" + +#: src/df.c:167 +#, fuzzy, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr " %4d-blokk Foglalt Szabad Fogl.%%" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr " %4s-blokk Foglalt Szabad %%" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr " Csatl. pont\n" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" +"Arról a fájlrendszerrõl jelenít meg adatokat, ahol a megadott FÁJL\n" +"található, alapértelmezésben minden fájlrendszerrõl.\n" +"\n" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" +" -a, --all 0 blokkot tartalmazó fájlrendszereket is listázza\n" +" -B --block-size=MÉRET megadott blokkMÉRETET használ\n" +" -h, --human-readable ember által olvasható formátum (pl., 1K 234M 2G)\n" +" -H, --si u.a. mint elõbb, de 1000-es szorzó 1024-es helyett\n" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" +" -i, --inodes inode információ blokkinformáció helyett\n" +" -k u.a. mint --block-size=1K\n" +" -l, --local csak a helyi fájlrendszereket írja ki\n" +" --no-sync nem adja ki a sync parancsot az info beolvasása " +"elõtt\n" +" (alapértelmezett)\n" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" +" -P, --portability POSIX kompatíbilis kimenet\n" +" --sync kiadja a sync parancsot az információ beolvasása " +"elõtt\n" +" -t, --type=TÍPUS csak az adott TÍPUSÚ fájlrendszereket írja ki\n" +" -T, --print-type fájlrendszer-típusok kiírása\n" +" -x, --exclude-type=TÍPUS a megadott fájlrendszereket nem listázza ki\n" +" -v (figyelmen kívül hagyva)\n" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" +"\n" +"MÉRET megadható a következõkkel:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576 és ugyanígy G, T, P, E, Z, Y.\n" + +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "" +"%s típusú fájlrendszer ki van jelölve, de figyelmen\n" +"kívül is van hagyva" + +#: src/df.c:903 +msgid "Warning: " +msgstr "Vigyázat: " + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "A beillesztett fájlrendszerek tábláját %s nem tudja olvasni" + +#: src/dircolors.c:103 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "Használat: %s [KAPCSOLÓ]... [FÁJL]\n" + +#: src/dircolors.c:104 +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"Kiírja a megfelelõ shell parancsot az LS_COLOR környezeti \n" +"változó beállításához.\n" +"\n" +"Kimeneti formátum megállapítása\n" +" -b, --sh, --bourne-shell Bourne shell kód az LS_COLORS beállításához\n" +" -c, --csh, --c-shell C shell kód az LS_COLORS beállításához\n" +" -p, --print-data-base alapértelmezés kiírása\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" +"\n" +"Ha a FÁJL argumentum meg van adva, beolvassa azt és megállapítja, hogy " +"melyik\n" +"fájltípushoz milyen színt használjon. Ha nincs, a program az " +"alapértelmezett\n" +"adatbázist használja. Ha többet akarsz tudni a fájl formátumáról, futtasd\n" +"a 'dircolors --print-database'-t.\n" + +#: src/dircolors.c:299 +#, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s:%lu: érvénytelen sor; a második token hiányzik" + +#: src/dircolors.c:371 +#, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s:%lu: %s kulcsszó ismeretlen" + +#: src/dircolors.c:372 +msgid "" +msgstr "" + +#: src/dircolors.c:467 +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" +"a dircolors belsõ adatbázisának kilistázása és a shell szintaxis\n" +"kiíratása két egymást kölcsönösen kizáró kapcsoló" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" +"nem lehet FÁJL argumentumot használni a dircolor belsõ adabázisának\n" +"kiíratásakor" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "nincs SHELL változó beállítva és nem adtad meg a shell típusát" + +#: src/dirname.c:33 src/pathchk.c:59 +#, fuzzy +msgid "David MacKenzie and Jim Meyering" +msgstr "Mike Parker, David MacKenzie és Jim Meyering" + +#: src/dirname.c:46 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "Használat: %s [KAPCSOLÓ]\n" + +#: src/dirname.c:51 +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" + +#: src/du.c:49 +#, fuzzy +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "Torbjorn Granlund, David MacKenzie és Jim Meyering" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" +"Összefoglalja a lemezhasználatot minden FÁJLRA, rekurzívan minden " +"könyvtárban.\n" +"\n" + +#: src/du.c:182 +#, fuzzy +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" +" -a, --all minden fájl adatait kiírja, nem csak a " +"könyvtárakat\n" +" -B --block-size=MÉRET MÉRET bájtos blokkokat használ\n" +" -b, --bytes bájtban írja ki a méretet\n" +" -c, --total csak az összesítést írja ki\n" +" -D, --dereference-args szimbolikus linkek esetén a fájlt számolja\n" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" +" -h, --human-readable ember által olvasható formátum (pl., 1K 234M 2G)\n" +" -H, --si mint elõbb, de 1000-es szorzó 1024-es helyett\n" +" -k mint --block-size=1K\n" +" -l, --count-links többször számolja a méretet, ha hard linkek vannak\n" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" +" -L, --dereference mindig követi a szimbólikus linkeket\n" +" -S, --separate-dirs alkönyvtárakat nem számolja bele\n" +" -s, --summarize argumentumonként egy összeget mutat\n" + +#: src/du.c:204 +#, fuzzy +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" +" -x, --one-file-system csak az adott fájlrendszeren lévõ könyvtárakat\n" +" -X FÁJL, --exclude-from=FÁJL a FÁJL-ban található mintákra illeszkedõ \n" +" fájlokat átugorja\n" +" --exclude=MINTA a MINTÁRA illeszkedõ nevû fájlokat kihagyja\n" +" --max-depth=N csak akkor írja ki az összesítést egy adott\n" +" könyvtárra, ha az legfeljebb N szinttel van a\n" +" parancssorban megadott könyvtár alatt.\n" +" A --max-depth=0 ugyanaz, mint a --summarize\n" + +#: src/du.c:337 +#, fuzzy, c-format +msgid "cannot change to parent of directory %s" +msgstr "nem lehet a következõ könyvtárba lépni: %s" + +#: src/du.c:345 +#, c-format +msgid "cannot change to directory %s" +msgstr "nem lehet a következõ könyvtárba lépni: %s" + +#: src/du.c:352 +#, fuzzy, c-format +msgid "cannot read directory %s" +msgstr "nem lehet a következõ könyvtárat létrehozni: %s" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "összesen" + +#: src/du.c:641 +#, c-format +msgid "invalid maximum depth %s" +msgstr "érvénytelen maximális mélység: %s" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "" +"nem lehet egyszerre összesítést kérni és minden bejegyzést megjeleníteni" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "" +"vigyázat: az összesítés megegyezik a --max-depth=0 kapcsoló használatával" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "vigyázat: az összesítés kérése ellenkezik a --max-depth=%d kapcsolóval" + +#: src/echo.c:77 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "Használat: %s [KAPCSOLÓ]... [FÁJL]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/env.c:93 +#, fuzzy +msgid "Richard Mlynarik and David MacKenzie" +msgstr "Richard Stallman és David MacKenzie" + +#: src/env.c:119 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "Használat: %s [KAPCSOLÓ]... NÉV TÍPUS [MAJOR MINOR]\n" + +#: src/env.c:122 +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "" + +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "" + +#: src/expr.c:90 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "Használat: %s [KAPCSOLÓ]\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +#, fuzzy +msgid "syntax error" +msgstr "írási hiba" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" + +#: src/expr.c:586 src/expr.c:625 +#, fuzzy +msgid "non-numeric argument" +msgstr "rossz az argumentumok száma" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "" + +#: src/factor.c:74 +#, fuzzy, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "Használat: %s [KAPCSOLÓ]\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" + +#: src/factor.c:85 +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "" + +#: src/false.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" + +#: src/fmt.c:271 +#, fuzzy, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "Használat: %s [KAPCSOLÓ]... [FÁJL]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" + +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" + +#: src/fmt.c:345 +#, fuzzy, c-format +msgid "invalid width option: `%s'" +msgstr "érvénytelen sorhossz: %s" + +#: src/fmt.c:385 +#, fuzzy, c-format +msgid "invalid width: `%s'" +msgstr "érvénytelen sorhossz: %s" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" + +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "" + +#: src/fold.c:295 +#, fuzzy, c-format +msgid "invalid number of columns: `%s'" +msgstr "érvénytelen szám: %s" + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" + +#: src/head.c:190 +#, fuzzy, c-format +msgid "cannot reposition file pointer for %s" +msgstr "nem lehet beolvasni %s idõbélyegét" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "" + +#: src/head.c:257 src/tail.c:1390 +#, fuzzy +msgid "number of lines" +msgstr "rossz az argumentumok száma" + +#: src/head.c:257 src/tail.c:1391 +#, fuzzy +msgid "number of bytes" +msgstr "rossz az argumentumok száma" + +#: src/head.c:264 src/tail.c:1478 +#, fuzzy +msgid "invalid number of lines" +msgstr "érvénytelen szám: %s" + +#: src/head.c:265 src/tail.c:1479 +#, fuzzy +msgid "invalid number of bytes" +msgstr "érvénytelen szám: %s" + +#: src/head.c:341 +#, fuzzy, c-format +msgid "unrecognized option `-%c'" +msgstr "ismeretlen kapcsoló: %s" + +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "" + +#: src/hostid.c:48 +#, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" + +#: src/hostname.c:67 +#, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" + +#: src/hostname.c:104 +#, fuzzy, c-format +msgid "cannot set hostname to `%s'" +msgstr "nem lehet beállítani %s idõbélyegét" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "" + +#: src/hostname.c:117 +#, fuzzy +msgid "cannot determine hostname" +msgstr "nem lehet %s jogosultságait beállítani" + +#: src/id.c:36 +#, fuzzy +msgid "Arnold Robbins and David MacKenzie" +msgstr "Richard Stallman és David MacKenzie" + +#: src/id.c:87 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "Használat: %s [KAPCSOLÓ]... [FÁJL]\n" + +#: src/id.c:88 +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" + +#: src/id.c:162 +#, fuzzy +msgid "cannot print only user and only group" +msgstr "nem lehet egyszerre a csoportot és a felhasználót is elhagyni" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "" + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "" + +#: src/id.c:235 +#, fuzzy, c-format +msgid "cannot find name for group ID %u" +msgstr "nem lehet %s tulajdonosát és vagy csoportját megváltoztatni" + +#: src/id.c:273 +#, fuzzy +msgid "cannot get supplemental group list" +msgstr "a csoportot nem lehet nullra változtatni" + +#: src/id.c:385 +msgid " groups=" +msgstr "" + +#: src/install.c:269 +msgid "the strip option may not be used when installing a directory" +msgstr "könyvtár telepítésénél nem lehet használni a `strip' lehetõséget" + +#: src/install.c:292 src/mkdir.c:140 +#, c-format +msgid "invalid mode %s" +msgstr "érvénytelen mód: %s" + +#: src/install.c:307 src/install.c:371 +#, c-format +msgid "creating directory %s" +msgstr "%s könyvtár létrehozása" + +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "több fájl telepítése, de az utolsó argumentum (%s) nem könyvtár" + +#: src/install.c:435 +#, c-format +msgid "%s is a directory" +msgstr "%s könyvtár" + +#: src/install.c:495 +#, c-format +msgid "cannot obtain time stamps for %s" +msgstr "nem lehet beolvasni %s idõbélyegét" + +#: src/install.c:507 +#, c-format +msgid "cannot set time stamps for %s" +msgstr "nem lehet beállítani %s idõbélyegét" + +#: src/install.c:528 +msgid "fork system call failed" +msgstr "fork() rendszerhívás sikertelen" + +#: src/install.c:532 +msgid "cannot run strip" +msgstr "strip futtatása sikertelen" + +#: src/install.c:539 +msgid "strip failed" +msgstr "strip sikertelen" + +#: src/install.c:560 +#, c-format +msgid "invalid user %s" +msgstr "érvénytelen felhasználó: %s" + +#: src/install.c:578 +#, c-format +msgid "invalid group %s" +msgstr "érvénytelen csoport: %s" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"Használat: %s [KAPCSOLÓ]... FORRÁS CÉL (1. alak)\n" +" vagy: %s [KAPCSOLÓ]... FORRÁS... KÖNYVTÁR (2. alak)\n" +" vagy: %s -d [KAPCSOLÓ]... KÖNYVTÁR... (3. alak)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" +"Az elsõ két alaknál FORRÁST a CÉLRA másolja, több FORRÁS esetén a létezõ\n" +"KÖNYVTÁRBA másolja a fájlokat. Másolás közben beállítja a fájlok \n" +"jogosultságait és a tulajt/csoportot.\n" +"A harmadik alaknál létrehozza az adott KÖNYVTÁRAK minden elemét.\n" +"\n" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" +" --backup[=CONTROL] minden létezõ célfájlról mentést készít\n" +" -b mint --backup, de nem fogad el argumentumot\n" +" -c (figyelmen kívül hagyva)\n" +" -d, --directory minden argumentum könyvtár; az adott könyvtár\n" +" minden elemét létrehozza\n" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" +" -D a CÉL minden elemét létrehozza, kivéve az " +"utolsót,\n" +" majd FORRÁST CÉLRA másolja; elsõ alakkal " +"hasznos\n" +" -g, --group=CSOPORT CSOPORTOT állítja be, a processz csoportja " +"helyett\n" +" -m, --mode=MÓD jogosultságot MÓDRA állítja, rwxr-xr-x helyett\n" +" -o, --owner=TULAJDONOS tulajdonos beállítása (csak root)\n" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" +" -p, --preserve-timestamps a FORRÁS elérési és módosítási idejét állítja\n" +" be a megfelelõ CÉLfájlon\n" +" -s, --strip eltávolítja a szimbólum táblát, csak 1. és \n" +" 2. alaknál érvényes\n" +" -S, --suffix=KITERJESZTES a biztonsági másolat szokásos \n" +" kiterjesztésének felülbírálása\n" +" -v, --verbose minden létrehozott könyvtár nevét kiírja\n" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"\n" +"A biztonsági másolat kiterjesztése `~', ha nincs megadva a --suffix vagy\n" +"a SIMPLE_BACKUP_SUFFIX. A verziókövetés módját megválaszthatod a --backup\n" +"kapcsolóval vagy a VERSION_CONTROL környezeti változó segítségével.\n" +"Az érvényes értékek a következõk:\n" +"\n" + +#: src/join.c:144 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "Használat: %s [KAPCSOLÓ]... [FÁJL]\n" + +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" + +#: src/join.c:165 +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" + +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" + +#: src/join.c:645 +#, fuzzy, c-format +msgid "invalid field specifier: `%s'" +msgstr "érvénytelen tabulátorméret: %s" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, fuzzy, c-format +msgid "invalid field number: `%s'" +msgstr "érvénytelen szám: %s" + +#: src/join.c:672 +#, fuzzy, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "érvénytelen szám: %s" + +#: src/join.c:792 +#, fuzzy, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "érvénytelen szám: %s" + +#: src/join.c:801 +#, fuzzy, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "érvénytelen szám: %s" + +#: src/join.c:833 +#, fuzzy +msgid "too many non-option arguments" +msgstr "túl sok argumentum" + +#: src/join.c:855 +#, fuzzy +msgid "too few non-option arguments" +msgstr "túl kevés argumentum" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" + +#: src/kill.c:106 +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" + +#: src/kill.c:163 +#, fuzzy, c-format +msgid "%s: invalid signal" +msgstr "%s: érvénytelen fájltípus" + +#: src/kill.c:262 +#, c-format +msgid "missing operand after `%s'" +msgstr "" + +#: src/kill.c:274 +#, fuzzy, c-format +msgid "%s: invalid process id" +msgstr "%s: érvénytelen fájlméret" + +#: src/kill.c:327 +#, fuzzy, c-format +msgid "invalid option -- %c" +msgstr "%s: érvénytelen kapcsoló -- %c\n" + +#: src/kill.c:336 +#, c-format +msgid "%s: multiple signals specified" +msgstr "" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "" + +#: src/link.c:51 +#, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" + +#: src/link.c:98 +#, fuzzy, c-format +msgid "cannot create link %s to %s" +msgstr "%2$s-re mutató %1$s hard linket nem lehet létrehozni" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "Mike Parker és David MacKenzie" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "" +"%s: vigyázat: a szimbolikus linkre mutató hard link\n" +"létrehozása nem hordozható" + +#: src/ln.c:174 +#, c-format +msgid "%s: hard link not allowed for directory" +msgstr "%s: könyvtárra mutató hard link nem engedélyezett" + +#: src/ln.c:246 +#, c-format +msgid "%s: cannot overwrite directory" +msgstr "%s: könyvtár felülírása sikertelen" + +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "%s: %s cseréje? " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: a fájl létezik" + +#: src/ln.c:304 +#, c-format +msgid "create symbolic link %s to %s" +msgstr "%s szimbolikus link létrehozása a következõre: %s" + +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "%s hard link létrehozása a következõre: %s" + +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "%2$s fájlra mutató %1$s szimbolikus link létrehozása" + +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "%2$s fájlra mutató %1$s hard link létrehozása" + +#: src/ln.c:339 +#, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"Használat: %s [KAPCSOLÓ]... CÉL [LINK_NEVE]\n" +" vagy: %s [KAPCSOLÓ]... CÉL... KÖNYVTÁR\n" +" vagy: %s [KAPCSOLÓ]... --target-directory=KÖNYVTÁR CÉL...\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" +"Link létrehozása a megadott CÉLRA, opcionális LINK_NÉV megadásával.\n" +"Ha a LINK_NÉV nincs megadva, a CÉLLAL megegyezõ nevû link jön lére a\n" +"jelenlegi könyvtárban. A második alak használatakor, több CÉL esetén,\n" +"az utolsó argumentum kötelezõen könyvtár; ekkor a KÖNYVTÁRBAN linkek " +"jönnek \n" +"létre a CÉLOKRA. Alapértelmezésben hard linekeket hoz éltre, szimbolikus\n" +"linkekhez használd a --symbolic kapcsolót. Hard linkek létrehozásakor\n" +"minden CÉLNAK léteznie kell.\n" +"\n" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" +" --backup[=CONTROL] minden létezõ célfájlról mentést készít\n" +" -b mint --backup, de nem fogad el argumentumot\n" +" -d, -F, --directory könyvtárak hard linkelése (csak root)\n" +" -f, --force létezõ célfájlok törlése\n" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" +" -n, --no-dereference ha a cél szimbolikus link egy könyvtárra\n" +" kezelje normális fájlként\n" +" -i, --interactive célfájlok törlésénél kérdez\n" +" -s, --symbolic szimbolikus link hard link helyett\n" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" +" -S, --suffix=KITERJESZTES a biztonsági másolat szokásos \n" +" kiterjesztésének felülbírálása\n" +" --target-directory=DIRECTORY a linkek létrehozására szolgáló " +"könyvtár\n" +" megadása\n" +" -v, --verbose linkelés elõtt kiírja minden fájl nevét\n" + +#: src/ln.c:521 +#, c-format +msgid "%s: specified target directory is not a directory" +msgstr "%s: a megadott célkönyvtár nem könyvtár" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "több link létrehozásánál az utolsó argumentum könyvtár kell legyen" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "Használat: %s [KAPCSOLÓ]\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" + +#: src/logname.c:99 +#, c-format +msgid "%s: no login name\n" +msgstr "" + +#: src/ls.c:673 +msgid "%b %e %Y" +msgstr "%b %e %Y" + +#: src/ls.c:681 +msgid "%b %e %H:%M" +msgstr "%b %e %H:%M" + +#: src/ls.c:1307 +#, fuzzy, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "" +"a QUOTING_STYLE környezeti változóban megadott érvénytelen érték \n" +"figyelmen kívül hagyása: %s" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "" +"a COLUMNS környezeti változóban megadott érvénytelen érték\n" +"figyelmen kívül hagyása: %s" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "" +"a TABSIZE környezeti változóban megadott érvénytelen tab méret\n" +"figyelmen kívül hagyása: %s" + +#: src/ls.c:1482 +#, c-format +msgid "invalid line width: %s" +msgstr "érvénytelen sorhossz: %s" + +#: src/ls.c:1556 +#, c-format +msgid "invalid tab size: %s" +msgstr "érvénytelen tabulátorméret: %s" + +#: src/ls.c:1722 +#, c-format +msgid "invalid time style format %s" +msgstr "érvénytelen idõformátum stílus %s" + +#: src/ls.c:2054 +#, c-format +msgid "unrecognized prefix: %s" +msgstr "ismeretlen elõtag: %s" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "az LS_COLORS környezeti változó értéke nem értelemezhetõ" + +#: src/ls.c:2145 +#, c-format +msgid "cannot determine device and inode of %s" +msgstr "%s eszközét és inode-ját nem lehet megállapítani" + +#: src/ls.c:2155 +#, c-format +msgid "not listing already-listed directory: %s" +msgstr "a következõ, már korábban listázott, könyvtár kihagyása: %s" + +#: src/ls.c:2208 src/remove.c:929 +#, fuzzy, c-format +msgid "reading directory %s" +msgstr "%s könyvtár létrehozása" + +#: src/ls.c:2603 +#, c-format +msgid "cannot compare file names %s and %s" +msgstr "%s és %s fájlnevek összehasonlítása sikertelen" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" +"Információt ír ki a FÁJLOKRÓL, alapértelemezésben az aktuális könyvtárról.\n" +"Ábécé sorrendbe rendezi a bejegyzéseket, ha nincs megadva a -cftuSUX\n" +"kapcsolók valamelyike vagy a --sort.\n" +"\n" + +#: src/ls.c:3770 +#, fuzzy +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" +" -a, --all nem rejti el a .-al kezdõdõ bejegyzéseket\n" +" -A, --almost-all nem listázza ki a . és .. bejegyzéseket\n" +" -b, --escape oktális escape karaktereket jelenít meg \n" +" a nem-grafikus karakterek helyett\n" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" +" --block-size=MÉRET MÉRET bájtos blokkokat használ\n" +" -B, --ignore-backups nem listázza ki a ~-ra végzõdõ fájlokat\n" +" -c \"-lt\"-vel: rendezés és kiírás ctime " +"(fájlállapot-\n" +" információ utolsó módosításának ideje) " +"szerint\n" +" \"-l\"-lel: kiírja a ctime-ot és név szerint " +"rendez\n" +" egyébként: ctime szerint rendez\n" + +#: src/ls.c:3784 +#, fuzzy +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" +" -C oszlopok szerint listáz\n" +" --color[=EKKOR] beállítja, hogy mikor legyen színes a kimenet\n" +" (fájltípusok szerint).\n" +" EKKOR lehet 'always', 'never' vagy 'auto'\n" +" -d, --directory könyvtár listázása a könyvtár tartalma helyett\n" +" -D, --dired az Emacs dired módja által használt kimenet\n" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" +" -f nem rendez, bekapcsolja a \"-aU\" kapcsolókat, " +"kikapcsolja a \"-lst\" kapcsolókat\n" +" -F, --classify jelet fûz a bejegyzéshez (*/=@ vagy |)\n" +" --format=SZÓ across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time mint -l --time-style=full-iso\n" + +#: src/ls.c:3799 +#, fuzzy +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" +" -g mint -l, de tulajdonos nélkül\n" +" -G, --no-group nem mutatja a csoportinformációt\n" +" -h, --human-readable ember által olvasható formátum (pl., 1K 234M 2G)\n" +" --si u.a. mint elõbb, de 1000-es szorzó 1024-es " +"helyett\n" +" -H, --dereference-command-line szimbolikus linkek követése parancssorban\n" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" +" --indicator-style=SZÓ a bejegyzésnevekhez indikátor fûz SZÓ alapján:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode kiírja minden fájl index számát\n" +" -I, --ignore=MINTA nem írja ki a shell MINTÁRA illeszkedõ\n" +" bejegyzéseket\n" +" -k mint --block-size=1K\n" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" +" -l hosszú formátum\n" +" -L, --dereference kilistázza a szimbolikus linkek által mutatott\n" +" fájlok adatait\n" +" -m a szélességet a bejegyzések vesszõvel\n" +" elválasztott listájával tölti ki\n" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" +" -n, --numeric-uid-gid mint -l, de UID-ket és GID-ket számmal írja ki\n" +" -N, --literal nyers bejegyzésnevek kiírása (nem kezeli\n" +" megkülönböztetett módon pl. a\n" +" vezérlõkaraktereket)\n" +" -o mint -l, de tulajdonos adatai nélkül\n" +" -p, --file-type jelet fûz a bejegyzéshez (*/=@ vagy |)\n" + +#: src/ls.c:3831 +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -q, --hide-control-chars ? kiírása a nem grafikus karakterek helyett\n" +" --show-control-chars megjeleníti a nem grafikus karaktereket\n" +" (alapértelmezett kivéve ha a program 'ls' és " +"a \n" +" kimenet terminál)\n" +" -Q, --quote-name minden bejegyzésnevet idézõjelbe\n" +" --quoting-style=SZÓ a következõ kulcsSZÓ alapján idézõjelez:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" +" -r, --reverse fordított sorrendbe rendez\n" +" -R, --recursive könyvtárak rekurzív listázása\n" +" -s, --size kiírja a fájlok méretét blokkban\n" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" +" -S rendezés fájlméret alapján\n" +" --sort=SZÓ SZÓ lehet:\n" +" -X, none -U, size -S, time -t, version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=IDÕ különbözõ idõk mutatása (módosítás ideje " +"helyett):\n" +" atime, access, use, ctime vagy status;\n" +" a megadott idõ alapján rendez, \n" +" ha a --sort=time meg van adva\n" + +#: src/ls.c:3853 +#, fuzzy +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" +" --time-style=SZÓ idõ mutatása különbözõ formátumokban:\n" +" full-iso, iso, locale, posix-iso, +FORMAT\n" +" FORMAT ugyanolyan, mint `date'; ha a " +"formátum\n" +" FORMAT1<újsor>FORMAT2, FORMAT1 a régebbi,\n" +" még FORMAT2 az újabb fájlokra vonatkozik\n" +" -t módosítás dátuma alapján rendez\n" +" -T, --tabsize=OSZL tabulátor minden OSZL-nál, 8 helyett\n" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" +" -u \"-lt\"-vel: access time alapján rendez és azt " +"is \n" +" mutatja\n" +" \"-l\"-lel: név alapján rendez és az access " +"time-ot\n" +" mutatja\n" +" egyébként: access time alapján rendez\n" +" -U nem rendez; bejegyzések könyvtári sorrendben\n" +" -v verzió alapján rendez\n" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" +" -w, --width=OSZL feltételezi, hogy a képernyõ OSZL széles\n" +" -x a bejegyzéseket soronként, és nem " +"oszloponként \n" +" listázza\n" +" -X ábécé sorba rendez, kiterjesztés szerint\n" +" -1 soronként egy fájlnevet ír ki\n" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" +"\n" +"Az alapértelmezett kimenet nem színes. Ez megegyezik a --color=none \n" +"beállítással. A --color kapcsoló használata EKKOR argumentum nélkül\n" +"megegyezik a --color=always viselkedésével. A --color=auto csak akkor\n" +"jelenít meg színkódokat, ha a kimenet terminál (tty).\n" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "" + +#: src/md5sum.c:444 +#, fuzzy, c-format +msgid "%s: read error" +msgstr "%s: átnevezve a következõre: %s" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "" + +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "" + +#: src/md5sum.c:473 +msgid "file" +msgstr "" + +#: src/md5sum.c:473 +msgid "files" +msgstr "" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "" + +#: src/mkdir.c:61 +#, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "Használat: %s [KAPCSOLÓ] KÖNYVTÁR...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" +"KÖNYVTÁRAKAT hoz létre, ha még nem léteznek.\n" +"\n" + +#: src/mkdir.c:69 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +" -m, --mode=MÓD a megadott jogosultságokkal hozza létre a könyvtárat \n" +" (mint a chmod), nem rwxrwxrwx - umask\n" +" -p, --parents könyvtárstruktúrát hoz létre. Nem ad hibát, ha már " +"létezik\n" +" -v, --verbose kiírja minden létrehozott könyvtár nevét\n" + +#: src/mkdir.c:113 +#, c-format +msgid "created directory %s" +msgstr "%s könyvtár létrejött" + +#: src/mkdir.c:190 +#, c-format +msgid "cannot set permissions of directory %s" +msgstr "nem lehet %s könyvtár jogosultságait beállítani" + +#: src/mkfifo.c:55 +#, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "Használat: %s [KAPCSOLÓ] NÉV...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" +"NÉV nevû \"Named pipe\"-ot (FIFO-t) hoz létre.\n" +"\n" + +#: src/mkfifo.c:63 src/mknod.c:64 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" +" -m, --mode=MÓD jogosultságok beállítása (mint a chmod), nem a=rw - " +"umask\n" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "a fifo fájlok nem támogatottak" + +#: src/mkfifo.c:123 src/mknod.c:127 +msgid "invalid mode" +msgstr "érvénytelen mód" + +#: src/mkfifo.c:142 +#, c-format +msgid "cannot set permissions of fifo %s" +msgstr "nem lehet %s fifo jogosultságait beállítani" + +#: src/mknod.c:55 +#, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "Használat: %s [KAPCSOLÓ]... NÉV TÍPUS [MAJOR MINOR]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" +"Adott NÉVÛ és TÍPUSÚ speciális fájlt hoz létre.\n" +"\n" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" + +#: src/mknod.c:76 +#, fuzzy +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"\n" +"MAJORT és MINORT nem lehet használni p TÍPUSNÁL, egyébként kötelezõ.\n" +"TÍPUS lehet:\n" +"\n" +" b speciális blokkfájl (pufferelt) létrehozása\n" +" c, u speciális karakterfájl (nem-pufferelt) létrehozása\n" +" p FIFO létrehozása\n" + +#: src/mknod.c:141 +msgid "wrong number of arguments" +msgstr "rossz az argumentumok száma" + +#: src/mknod.c:153 +msgid "block special files not supported" +msgstr "a speciális blokkfájl nem támogatott" + +#: src/mknod.c:162 +msgid "character special files not supported" +msgstr "a speciális karakterfájl nem támogatott" + +#: src/mknod.c:171 +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" +"speciális fájlok létrehozásakor meg kell adni major és minor\n" +"eszközszámokat" + +#: src/mknod.c:186 +#, c-format +msgid "invalid major device number %s" +msgstr "érvénytelen major eszközszám: %s" + +#: src/mknod.c:191 +#, c-format +msgid "invalid minor device number %s" +msgstr "érvénytelen minor eszközszám: %s" + +#: src/mknod.c:196 +#, c-format +msgid "invalid device %s %s" +msgstr "érvénytelen eszköz %s %s" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "fifo fájlokhoz nem lehet major és minor eszközszámokat megadni" + +#: src/mknod.c:231 +#, c-format +msgid "cannot set permissions of %s" +msgstr "nem lehet %s jogosultságait beállítani" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "Mike Parker, David MacKenzie és Jim Meyering" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"FORRÁST átnevezi CÉLRA vagy több FORRÁST egy CÉLKÖNYVTÁRBA helyez át.\n" +"\n" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" +" --backup[=CONTROL] minden létezõ célfájlról mentést készít\n" +" -b mint --backup, de nem fogad el argumentumot\n" +" -f, --force nem kérdez felülírás elõtt\n" +" mint --reply=yes\n" +" -i, --interactive felülírás elõtt kérdez\n" +" mint --reply=query\n" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" +" --reply={yes,no,query} mi történjen, ha már létezik a célfájl\n" +" --strip-trailing-slashes eltávolítja a befejezõ per jeleket minden\n" +" forrásról\n" +" -S, --suffix=KITERJESZTES a biztonsági másolat szokásos\n" +" kiterjesztésének felülbírálása\n" + +#: src/mv.c:339 +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +" --target-directory=KÖNYVTÁR minden FORRÁS áthelyezése a megadott \n" +" KÖNYVTÁRBA\n" +" -u, --update csak akkor helyezi át, ha a CÉL régebbi, mint " +"a\n" +" FORRÁS vagy ha a CÉL nem létezik\n" +" -v, --verbose elmagyarázza, mi történik\n" + +#: src/mv.c:467 +#, c-format +msgid "specified target, %s is not a directory" +msgstr "a megadott cél (%s) nem könyvtár" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "több fájl áthelyezésénél az utolsó argumentum könyvtár kell legyen" + +#: src/nice.c:67 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "Használat: %s [KAPCSOLÓ] NÉV...\n" + +#: src/nice.c:68 +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" + +#: src/nice.c:109 src/nice.c:122 +#, fuzzy, c-format +msgid "invalid option `%s'" +msgstr "érvénytelen csoport: %s" + +#: src/nice.c:147 +#, fuzzy, c-format +msgid "invalid priority `%s'" +msgstr "érvénytelen csoport: %s" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "" + +#: src/nice.c:178 src/nice.c:187 +#, fuzzy +msgid "cannot get priority" +msgstr "nem lehet a következõ könyvtárba lépni: %s" + +#: src/nice.c:192 +#, fuzzy +msgid "cannot set priority" +msgstr "nem lehet %s jogosultságait beállítani" + +#: src/nl.c:39 +#, fuzzy +msgid "Scott Bartram and David MacKenzie" +msgstr "Richard Stallman és David MacKenzie" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" + +#: src/nl.c:504 +#, fuzzy, c-format +msgid "invalid starting line number: `%s'" +msgstr "érvénytelen major eszközszám: %s" + +#: src/nl.c:514 +#, fuzzy, c-format +msgid "invalid line number increment: `%s'" +msgstr "érvénytelen sorhossz: %s" + +#: src/nl.c:527 +#, fuzzy, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "%s: érvénytelen menetszám" + +#: src/nl.c:541 +#, fuzzy, c-format +msgid "invalid line number field width: `%s'" +msgstr "érvénytelen sorhossz: %s" + +#: src/od.c:287 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"Használat: %s [KAPCSOLÓ]... CSOPORT FÁJL...\n" +" vagy: %s [KAPCSOLÓ]... --reference=REFERENCIAFÁJL FÁJL...\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/od.c:299 +#, fuzzy +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "" +"Ha egy hosszú kapcsolóhoz kötelezõ argumentumot megadni, akkor ez a \n" +"megfelelõ rövid kapcsolónál is kötelezõ.\n" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" + +#: src/od.c:722 src/od.c:844 +#, fuzzy, c-format +msgid "invalid type string `%s'" +msgstr "érvénytelen módkarakterlánc: %s" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" + +#: src/od.c:917 +#, fuzzy, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "érvénytelen karakter (%s) a `%s' módkarakterláncban" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "" + +#: src/od.c:1717 +#, fuzzy +msgid "skip argument" +msgstr "hiányzó fájlargumentum" + +#: src/od.c:1725 +#, fuzzy +msgid "limit argument" +msgstr "Az érvényes argumentumok a következõk:" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "" + +#: src/od.c:1740 src/od.c:1806 +#, fuzzy, c-format +msgid "%s is too large" +msgstr "%s: a fájl túl nagy" + +#: src/od.c:1804 +msgid "width specification" +msgstr "" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "" + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "" + +#: src/paste.c:50 +#, fuzzy +msgid "David M. Ihnat and David MacKenzie" +msgstr "Mike Parker és David MacKenzie" + +#: src/paste.c:208 +#, fuzzy +msgid "standard input is closed" +msgstr "szabványos bemenet" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" + +#: src/pathchk.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "Használat: %s [KAPCSOLÓ] NÉV...\n" + +#: src/pathchk.c:147 +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" + +#: src/pathchk.c:237 +#, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "" + +#: src/pathchk.c:257 +#, fuzzy, c-format +msgid "`%s' is not a directory" +msgstr "%s könyvtár" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "" + +#: src/pathchk.c:355 +#, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "" + +#: src/pathchk.c:381 +#, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "" + +#: src/pinky.c:35 src/uptime.c:39 +#, fuzzy +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "Mike Parker, David MacKenzie és Jim Meyering" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "" + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "" + +#: src/pinky.c:298 +msgid "???\n" +msgstr "" + +#: src/pinky.c:318 +#, fuzzy +msgid "Directory: " +msgstr "%s könyvtár" + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "" + +#: src/pinky.c:341 +msgid "Project: " +msgstr "" + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "" + +#: src/pinky.c:386 +msgid "Login" +msgstr "" + +#: src/pinky.c:388 +msgid "Name" +msgstr "" + +#: src/pinky.c:389 +msgid " TTY" +msgstr "" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "" + +#: src/pinky.c:392 +msgid "When" +msgstr "" + +#: src/pinky.c:395 +msgid "Where" +msgstr "" + +#: src/pinky.c:469 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "Használat: %s [KAPCSOLÓ]... [FÁJL]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" + +#: src/pinky.c:574 +msgid "no username specified; at least one must be specified when using -l" +msgstr "" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "" + +#: src/pr.c:805 +#, fuzzy, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "érvénytelen csoportszám: %s" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "" + +#: src/pr.c:829 +#, fuzzy, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "érvénytelen csoportszám: %s" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "" + +#: src/pr.c:1000 +#, fuzzy, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "érvénytelen minor eszközszám: %s" + +#: src/pr.c:1012 +#, fuzzy, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "érvénytelen sorhossz: %s" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "" + +#: src/pr.c:1079 +#, fuzzy +msgid "%b %e %H:%M %Y" +msgstr "%b %e %H:%M" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "" + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "" + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr "" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" + +#: src/printenv.c:43 +#, fuzzy +msgid "David MacKenzie and Richard Mlynarik" +msgstr "Mike Parker, David MacKenzie és Jim Meyering" + +#: src/printenv.c:63 +#, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "" + +#: src/printf.c:100 +#, fuzzy, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "Használat: %s [KAPCSOLÓ]\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "" + +#: src/printf.c:292 +#, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "" + +#: src/printf.c:472 +#, fuzzy, c-format +msgid "invalid field width: %s" +msgstr "érvénytelen sorhossz: %s" + +#: src/printf.c:498 +#, fuzzy, c-format +msgid "invalid precision: %s" +msgstr "érvénytelen konverzió: %s" + +#: src/printf.c:519 +#, fuzzy, c-format +msgid "%%%c: invalid directive" +msgstr "%s: érvénytelen fájlméret" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "" + +#: src/printf.c:594 +#, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" + +#: src/pwd.c:74 +#, fuzzy +msgid "ignoring non-option arguments" +msgstr "minden argumentum figyelmen kívül hagyva" + +#: src/pwd.c:78 +#, fuzzy +msgid "cannot get current directory" +msgstr "nem lehet az aktuális könyvtárat törölni: %s" + +#: src/readlink.c:69 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "Használat: %s [KAPCSOLÓ]... [FÁJL]\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" + +#: src/remove.c:394 +#, fuzzy, c-format +msgid "cannot chdir from %s to .." +msgstr "nem lehet a következõ könyvtárba lépni: %s" + +#: src/remove.c:407 src/remove.c:488 +#, c-format +msgid "cannot lstat `.' in %s" +msgstr "nem lehet a (`.') könyvtárat lstat-olni itt: %s " + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, fuzzy, c-format +msgid "cannot lstat %s" +msgstr "stat %s sikertelen" + +#: src/remove.c:603 +#, fuzzy, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "%s: %s írásvédett könyvtár törlése? " + +#: src/remove.c:604 +#, c-format +msgid "%s: descend into directory %s? " +msgstr "%s: belépsz %s könyvtárba? " + +#: src/remove.c:614 +#, fuzzy, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: %s írásvédett fájl törlése? " + +#: src/remove.c:615 +#, fuzzy, c-format +msgid "%s: remove %s %s? " +msgstr "%s: %s törlése? " + +#: src/remove.c:639 +#, fuzzy, c-format +msgid "removed %s\n" +msgstr "%s törlése\n" + +#: src/remove.c:654 src/remove.c:1059 +#, fuzzy, c-format +msgid "removed directory: %s\n" +msgstr "%s könyvtár törlése" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, c-format +msgid "cannot remove directory %s" +msgstr "nem lehet törölni a következõ könyvtárat: `%s'" + +#: src/remove.c:815 +#, c-format +msgid "cannot open directory %s" +msgstr "nem lehet a következõ könyvtárat megnyitni: %s" + +#: src/remove.c:896 src/remove.c:1002 +#, fuzzy, c-format +msgid "cannot chdir from %s to %s" +msgstr "nem lehet a következõ könyvtárba lépni: %s" + +#: src/remove.c:904 +#, fuzzy, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +"VIGYÁZAT: körkörös könyvtárszerkezet.\n" +"Ez majdnem biztosan azt jeleni, hogy sérült a fájlrendszered.\n" +"ÉRTESÍTSD A RENDSZERGAZDÁT!\n" +"A következõ két könyvtárnak azonos az inode száma:\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "nem lehet törölni `.'-ot vagy `..'-ot" + +#: src/rm.c:60 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "Mike Parker, David MacKenzie és Jim Meyering" + +#: src/rm.c:99 src/touch.c:244 +#, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "Használat: %s [KAPCSOLÓ]... FÁJL...\n" + +#: src/rm.c:100 +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"FÁJL(OK) törlése (unlink).\n" +"\n" +" -d, --directory FÁJL törlése, akkor is, ha nem-üres könyvtár\n" +" (csak root)\n" +" -f, --force nem törõdik a nem létezõ fájlokkal, nem kérdez\n" +" -i, --interactive minden törlés elõtt kérdez\n" +" -R, -r, --recursive könyvtárak rekurzív törlése\n" +" -v, --verbose elmagyarázza, mi történik\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" +"\n" +"Ha \"-\" jellel kezdõdik a törlendõ fájl, például \"-foo\",\n" +"használd a következõ parancsok egyikét:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" +"\n" +"Megjegyzés: az rm paranccsal törölt fájl tartalma általában\n" +"visszaállítható. Végleges törléshez fontold meg a shred parancs\n" +"használatát.\n" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, c-format +msgid "removing directory, %s" +msgstr "%s könyvtár törlése" + +#: src/rmdir.c:146 +#, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "Használat: %s [KAPCSOLÓ]... KÖNYVTÁR...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" +"Törli a KÖNYVTÁRAKAT, ha ezek üresek.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" törli a könyvtárat abban az esetben, ha a törlésnek " +"egyetlen\n" +" akadálya az, hogy a könyvtár nem üres\n" + +#: src/rmdir.c:154 +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +" -p, --parents törli a KÖNYVTÁRAT, majd megpróbálja törölni a\n" +" szülõkönyvtárait. Pl., \"rmdir -p a/b/c\" u.a., mint\n" +" \"rmdir a/b/c a/b a\".\n" +" -v, --verbose minden feldolgozott könyvtár után üzenetet ír ki\n" + +#: src/seq.c:82 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"Használat: %s [KAPCSOLÓ]... FORRÁS CÉL\n" +" vagy: %s [KAPCSOLÓ]... FORRÁS... KÖNYVTÁR\n" +" vagy: %s [KAPCSOLÓ]... --target-directory=KÖNYVTÁR FORRÁS...\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" + +#: src/seq.c:96 +#, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" + +#: src/seq.c:119 +#, fuzzy, c-format +msgid "invalid floating point argument: %s" +msgstr "érvénytelen idõformátum: %s" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" + +#: src/seq.c:423 +#, fuzzy, c-format +msgid "invalid format string: `%s'" +msgstr "érvénytelen módkarakterlánc: %s" + +#: src/seq.c:445 +#, fuzzy +msgid "format string may not be specified when printing equal width strings" +msgstr "könyvtár telepítésénél nem lehet használni a `strip' lehetõséget" + +#: src/shred.c:160 +#, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "Használat: %s [KAPCSOLÓK] FÁJL [...]\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" +"A megadott FÁJLT többször egymás után felülírja, így még nagyon költséges\n" +"hardver megoldásokkal sem lehet könnyen visszaállítani az adatokat.\n" +"\n" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" +" -f, --force jogosultságok megváltoztatása, ha akadályozzák az írást\n" +" -n, --iterations=N N-szer írja felül az alapértelmezett %d helyett\n" +" -s, --size=N shred-elj ennyi bájtot (a k, M, G utótagok megengedett)\n" + +#: src/shred.c:174 +#, fuzzy +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" +" -u, --remove fájl csonkolása és törlése felülírás után\n" +" -v, --verbose folyamat elõrehaladásának mutatása\n" +" -x, --exact nem kerekíti a fájlméretet egész blokkra\n" +" -z, --zero a végén nullákkal írja felül a fájlt, így álcázva a " +"shreddelést\n" +" - szabványos kimenet shreddelése\n" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" +"\n" +"FÁJLOK törlése, csak ha megadod a --remove (-u) kapcsolót.\n" +"Alapértelmezésben nem törli a fájlokat, mert gyakran használatos\n" +"eszközfájlokon (pl. /dev/hda), és ezeket a fájlokat általában nem kell\n" +"törölni. Általános fájlokon használni szokták a --remove kapcsolót.\n" +"\n" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" +"VIGYÁZAT: A shred mûködése egy fontos feltételezésen alapul:\n" +"azon, hogy a fájlrendszer azonnal felülírja az adatokat. Ez a hagyományos\n" +"eljárás, de sok korszerû fájlrendszer eltér ettõl. A következõ \n" +"fájlrendszereken nem hatásos a shred:\n" +"\n" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" +"* naplózó fájlrendszerek, ilyen az AIX és a Solaris fájlrendszere (valamint\n" +" a JFS, a ReiserFS, az XFS, az Ext3 stb.)\n" +"\n" +"* azon fájlrendszerek, amelyek redundánsan írják az adatokat és akkor is \n" +" továbbhaladnak az írással, ha valamelyik írás sikertelen, ilyenek a\n" +" RAID alapú fájlrendszerek.\n" +"\n" +"* pillantfelvételeket alkalmazó fájlrendszerek, ilyen a Network Appliance \n" +" NFS kiszolgálója\n" +"\n" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" +"* azon fájlrendszerek, amelyeknek átmeneti helyen találhatók a " +"gyorstáraik, \n" +" ilyen az NFS kliens 3-as verziója\n" +"\n" +"* tömörített fájlrendszerek\n" +"\n" +"Ne feledd, hogy a törölni kívánt fájlnak lehetnek példányai mentésben vagy\n" +"egy távoli tükörkiszolgálón. Ezek alapján vissza lehet állítani a shreddelt\n" +"fájlt.\n" + +#: src/shred.c:808 +#, c-format +msgid "%s: cannot rewind" +msgstr "%s: nem lehet visszacsévélni" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "%s: %lu/%lu menet (%s)..." + +#: src/shred.c:868 +#, c-format +msgid "%s: error writing at offset %s" +msgstr "%s: írási hiba a következõ offseten: %s" + +#: src/shred.c:897 +#, c-format +msgid "%s: file too large" +msgstr "%s: a fájl túl nagy" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "%s: %lu/%lu menet (%s)...%s" + +#: src/shred.c:936 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "%s: %lu/%lu menet (%s)...%s/%s %d%%" + +#: src/shred.c:1195 +#, c-format +msgid "%s: invalid file type" +msgstr "%s: érvénytelen fájltípus" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s: a fájl métere negatív" + +#: src/shred.c:1265 +#, c-format +msgid "%s: error truncating" +msgstr "%s: hiba a csonkolásnál" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "%s: nem lehet a shred-elni a csak hozzáfûzésre megnyitott fájlleírón" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "%s: törlés alatt" + +#: src/shred.c:1412 +#, c-format +msgid "%s: renamed to %s" +msgstr "%s: átnevezve a következõre: %s" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s: törölve" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "%s: törlés sikertelen" + +#: src/shred.c:1551 +#, c-format +msgid "%s: invalid number of passes" +msgstr "%s: érvénytelen menetszám" + +#: src/shred.c:1568 +#, c-format +msgid "%s: invalid file size" +msgstr "%s: érvénytelen fájlméret" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "" + +#: src/sleep.c:52 +#, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" + +#: src/sleep.c:155 +#, fuzzy, c-format +msgid "invalid time interval `%s'" +msgstr "érvénytelen idõformátum stílus %s" + +#: src/sleep.c:166 src/tail.c:1031 +#, fuzzy +msgid "cannot read realtime clock" +msgstr "nem lehet a következõ linket létrehozni: %s" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" + +#: src/sort.c:444 +#, fuzzy +msgid "cannot create temporary file" +msgstr "nem lehet létrehozni a következõ reguláris fájlt: %s" + +#: src/sort.c:467 +#, fuzzy +msgid "open failed" +msgstr "strip sikertelen" + +#: src/sort.c:487 src/sort.c:2496 +#, fuzzy +msgid "close failed" +msgstr "strip sikertelen" + +#: src/sort.c:495 +#, fuzzy +msgid "write failed" +msgstr "strip sikertelen" + +#: src/sort.c:641 +#, fuzzy +msgid "sort size" +msgstr "blokkméret" + +#: src/sort.c:715 +#, fuzzy +msgid "stat failed" +msgstr "strip sikertelen" + +#: src/sort.c:972 +#, fuzzy +msgid "read failed" +msgstr "strip sikertelen" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "" + +#: src/sort.c:1574 +#, fuzzy +msgid "standard error" +msgstr "szabványos kimenet" + +#: src/sort.c:2032 +#, fuzzy, c-format +msgid "%s: invalid field specification `%s'" +msgstr "%s: érvénytelen fájlméret" + +#: src/sort.c:2058 +#, fuzzy, c-format +msgid "%s: count `%.*s' too large" +msgstr "%s: a fájl túl nagy" + +#: src/sort.c:2064 +#, fuzzy, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "%s: érvénytelen menetszám" + +#: src/sort.c:2298 +#, fuzzy +msgid "invalid number after `-'" +msgstr "érvénytelen szám: %s" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +#, fuzzy +msgid "invalid number after `.'" +msgstr "érvénytelen szám: %s" + +#: src/sort.c:2304 src/sort.c:2383 +#, fuzzy +msgid "stray character in field spec" +msgstr "a speciális karakterfájl nem támogatott" + +#: src/sort.c:2338 +#, fuzzy +msgid "invalid number at field start" +msgstr "érvénytelen szám: %s" + +#: src/sort.c:2342 src/sort.c:2370 +#, fuzzy +msgid "field number is zero" +msgstr "érvénytelen szám: %s" + +#: src/sort.c:2351 +#, fuzzy +msgid "character offset is zero" +msgstr "a speciális karakterfájl nem támogatott" + +#: src/sort.c:2366 +#, fuzzy +msgid "invalid number after `,'" +msgstr "érvénytelen szám: %s" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "" + +#: src/split.c:96 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "Használat: %s [KAPCSOLÓ]... [FÁJL]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" + +#: src/split.c:108 +#, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "" + +#: src/split.c:189 +#, fuzzy, c-format +msgid "creating file `%s'\n" +msgstr "%s létrehozása" + +#: src/split.c:341 +#, fuzzy +msgid "cannot split in more than one way" +msgstr "az idõt nem lehet több forrásból venni" + +#: src/split.c:394 +#, fuzzy, c-format +msgid "%s: invalid suffix length" +msgstr "%s: érvénytelen fájltípus" + +#: src/split.c:408 src/split.c:434 +#, fuzzy, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: érvénytelen menetszám" + +#: src/split.c:421 +#, fuzzy, c-format +msgid "%s: invalid number of lines" +msgstr "%s: érvénytelen menetszám" + +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "" + +#: src/split.c:483 +#, fuzzy +msgid "invalid number" +msgstr "érvénytelen szám: %s" + +#: src/stat.c:326 +#, fuzzy +msgid "*** invalid date/time ***" +msgstr "érvénytelen mód: %s" + +#: src/stat.c:608 +#, fuzzy, c-format +msgid "cannot read file system information for %s" +msgstr "nem lehet a következõ fifot létrehozni: %s" + +#: src/stat.c:684 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "Használat: %s [KAPCSOLÓ]... FÁJL...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" + +#: src/stty.c:504 +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" + +#: src/stty.c:570 +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:608 +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" + +#: src/stty.c:787 +msgid "only one device may be specified" +msgstr "" + +#: src/stty.c:882 +#, fuzzy +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "" +"a dircolors belsõ adatbázisának kilistázása és a shell szintaxis\n" +"kiíratása két egymást kölcsönösen kizáró kapcsoló" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "" + +#: src/stty.c:957 src/stty.c:1064 +#, fuzzy, c-format +msgid "invalid argument `%s'" +msgstr "A `%s' argumentum érvénytelen ehhez: %s" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, fuzzy, c-format +msgid "missing argument to `%s'" +msgstr "hiányzó fájlargumentum" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "" + +#: src/stty.c:1944 +#, fuzzy, c-format +msgid "invalid integer argument `%s'" +msgstr "A `%s' argumentum érvénytelen ehhez: %s" + +#: src/su.c:289 +msgid "Password:" +msgstr "" + +#: src/su.c:292 +#, fuzzy +msgid "getpass: cannot open /dev/tty" +msgstr "nem lehet a következõ könyvtárat megnyitni: %s" + +#: src/su.c:350 +#, fuzzy +msgid "cannot set groups" +msgstr "stat %s sikertelen" + +#: src/su.c:354 +#, fuzzy +msgid "cannot set group id" +msgstr "a csoportot nem lehet nullra változtatni" + +#: src/su.c:356 +#, fuzzy +msgid "cannot set user id" +msgstr "stat %s sikertelen" + +#: src/su.c:437 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "Használat: %s [KAPCSOLÓ]... [FÁJL]...\n" + +#: src/su.c:438 +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "" + +#: src/su.c:580 +#, fuzzy, c-format +msgid "warning: cannot change directory to %s" +msgstr "nem lehet a következõ könyvtárba lépni: %s" + +#: src/sum.c:36 +#, fuzzy +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "Mike Parker és David MacKenzie" + +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" +"A megváltozott blokkokat azonnal kiírja lemezre, frissíti a szuperblokkot\n" +"\n" + +#: src/sync.c:70 src/tty.c:112 +msgid "ignoring all arguments" +msgstr "minden argumentum figyelmen kívül hagyva" + +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr " --help display this help and exit\n" + +#: src/sys2.h:494 +msgid " --version output version information and exit\n" +msgstr " --version output version information and exit\n" + +#: src/tac.c:54 +#, fuzzy +msgid "Jay Lepreau and David MacKenzie" +msgstr "Mike Parker és David MacKenzie" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tac.c:139 +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "" + +#: src/tail.c:49 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "Mike Parker, David MacKenzie és Jim Meyering" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" + +#: src/tail.c:331 +#, fuzzy, c-format +msgid "closing %s (fd=%d)" +msgstr "%s lezárása" + +#: src/tail.c:391 +#, fuzzy, c-format +msgid "%s: cannot seek to offset %s" +msgstr "lseek %s sikertelen" + +#: src/tail.c:395 +#, fuzzy, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "nem lehet a következõ fifot létrehozni: %s" + +#: src/tail.c:400 +#, fuzzy, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "nem lehet a következõ fifot létrehozni: %s" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "" + +#: src/tail.c:1000 +#, fuzzy, c-format +msgid "%s: file truncated" +msgstr "%s: hiba a csonkolásnál" + +#: src/tail.c:1020 +#, fuzzy +msgid "no files remaining" +msgstr "hiányzó fájlargumentumok" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "" + +#: src/tail.c:1356 +#, fuzzy, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "érvénytelen karakter (%s) a `%s' módkarakterláncban" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" + +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "" + +#: src/tail.c:1510 +#, fuzzy, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "%s: érvénytelen menetszám" + +#: src/tail.c:1522 +#, fuzzy, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "%s: érvénytelen menetszám" + +#: src/tail.c:1534 +#, fuzzy, c-format +msgid "%s: invalid PID" +msgstr "%s: érvénytelen fájlméret" + +#: src/tail.c:1549 +#, fuzzy, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: érvénytelen menetszám" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "" + +#: src/tail.c:1575 +#, fuzzy +msgid "warning: --pid=PID is not supported on this system" +msgstr "ez a rendszer nem támogatja a szimbolikus linkeket" + +#: src/tee.c:33 +#, fuzzy +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "Richard Stallman és David MacKenzie" + +#: src/tee.c:64 +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "" + +#: src/test.c:424 +msgid "before -lt" +msgstr "" + +#: src/test.c:432 +msgid "after -lt" +msgstr "" + +#: src/test.c:446 +msgid "before -le" +msgstr "" + +#: src/test.c:453 +msgid "after -le" +msgstr "" + +#: src/test.c:469 +msgid "before -gt" +msgstr "" + +#: src/test.c:476 +msgid "after -gt" +msgstr "" + +#: src/test.c:490 +msgid "before -ge" +msgstr "" + +#: src/test.c:497 +msgid "after -ge" +msgstr "" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "" + +#: src/test.c:526 +msgid "before -ne" +msgstr "" + +#: src/test.c:533 +msgid "after -ne" +msgstr "" + +#: src/test.c:549 +msgid "before -eq" +msgstr "" + +#: src/test.c:556 +msgid "after -eq" +msgstr "" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "" + +#: src/test.c:586 +msgid "-ot does not accept -l\n" +msgstr "" + +#: src/test.c:593 +#, fuzzy +msgid "unknown binary operator" +msgstr "Ismeretlen rendszerhiba" + +#: src/test.c:781 +msgid "after -t" +msgstr "" + +#: src/test.c:979 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "Használat: %s [KAPCSOLÓ]\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" + +#: src/test.c:1009 +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "" + +#: src/test.c:1125 +#, fuzzy +msgid "too many arguments\n" +msgstr "túl sok argumentum" + +#: src/touch.c:39 +#, fuzzy +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "Richard Stallman és David MacKenzie" + +#: src/touch.c:164 src/touch.c:179 +#, c-format +msgid "creating %s" +msgstr "%s létrehozása" + +#: src/touch.c:222 +#, fuzzy, c-format +msgid "cannot touch %s" +msgstr "%s törlése sikertelen" + +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "%s idejének beállítása" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" +"Frissíti mindegyik FÁJL elérési és módosítási idejét, a jelenlegi idõre.\n" +"\n" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" +" -a csak az elérési idõt módosítja\n" +" -c, --no-create nem hoz létre fájlt\n" +" -d, --date=SZTRING SZTRINGET használja a jelenlegi idõ helyett\n" +" -f (figyelmen kívül hagyva)\n" +" -m csak a módosítás idejét állítja át\n" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" +" -r, --reference=FÁJL FÁJL dátumát használja a jelenlegi helyett\n" +" -t IDÕ [[CC]ÉÉ]HHNNóópp[.ss] formátumot használja a \n" +" jelenlegi idõ helyett\n" +" --time=SZÓ a SZÓ által megadott idõt módosítja. SZÓ lehet:\n" +" access atime use (mint -a)\n" +" modify mtime (mint -m)\n" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" +"\n" +"Megjegyzés: a -d és -t kapcsolókhoz megadandó idõformátum különbözik.\n" + +#: src/touch.c:311 src/touch.c:331 +#, c-format +msgid "invalid date format %s" +msgstr "érvénytelen idõformátum: %s" + +#: src/touch.c:355 +msgid "cannot specify times from more than one source" +msgstr "az idõt nem lehet több forrásból venni" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "" +"vigyázat: `touch %s' elavult; használd helyette a \n" +"`touch -t %04d%02d%02d%02d%02d.%02d' alakot." + +#: src/touch.c:399 +msgid "file arguments missing" +msgstr "hiányzó fájlargumentumok" + +#: src/tr.c:327 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "Használat: %s [KAPCSOLÓ]... [FÁJL]\n" + +#: src/tr.c:331 +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" + +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" + +#: src/tr.c:566 +#, fuzzy +msgid "invalid backslash escape at end of string" +msgstr "érvénytelen karakter (%s) a `%s' módkarakterláncban" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "" + +#: src/tr.c:1025 +#, fuzzy, c-format +msgid "invalid character class `%s'" +msgstr "érvénytelen karakter (%s) a `%s' módkarakterláncban" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" + +#: src/true.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "" + +#: src/tty.c:63 +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "" + +#: src/uname.c:111 +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" + +#: src/uname.c:226 +msgid "cannot get system name" +msgstr "" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" + +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "" + +#: src/uniq.c:139 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "Használat: %s [KAPCSOLÓ]... [FÁJL]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr "" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" + +#: src/uniq.c:381 +#, fuzzy, c-format +msgid "error reading %s" +msgstr "%s olvasása" + +#: src/uniq.c:386 +#, fuzzy, c-format +msgid "error writing %s" +msgstr "%s írása" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "" + +#: src/uniq.c:473 src/uniq.c:498 +#, fuzzy +msgid "invalid number of fields to skip" +msgstr "%s: érvénytelen menetszám" + +#: src/uniq.c:507 +#, fuzzy +msgid "invalid number of bytes to skip" +msgstr "%s: érvénytelen menetszám" + +#: src/uniq.c:516 +#, fuzzy +msgid "invalid number of bytes to compare" +msgstr "%s: érvénytelen menetszám" + +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "" + +#: src/unlink.c:51 +#, fuzzy, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "Használat: %s [KAPCSOLÓ]\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" + +#: src/unlink.c:99 +#, c-format +msgid "cannot unlink %s" +msgstr "%s törlése sikertelen" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr "" + +#: src/uptime.c:140 +msgid "am" +msgstr "" + +#: src/uptime.c:140 +msgid "pm" +msgstr "" + +#: src/uptime.c:142 +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#: src/uptime.c:144 +#, fuzzy, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "érvénytelen felhasználó" +msgstr[1] "érvénytelen felhasználó" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr "" + +#: src/uptime.c:191 src/users.c:118 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "Használat: %s [KAPCSOLÓ]... [FÁJL]\n" + +#: src/uptime.c:192 +#, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" + +#: src/users.c:35 +#, fuzzy +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "Mike Parker és David MacKenzie" + +#: src/users.c:119 +#, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" + +#: src/wc.c:75 +#, fuzzy +msgid "Paul Rubin and David MacKenzie" +msgstr "Mike Parker és David MacKenzie" + +#: src/wc.c:129 +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" + +#: src/who.c:41 +#, fuzzy +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "Mike Parker, David MacKenzie és Jim Meyering" + +#: src/who.c:223 +msgid " old " +msgstr "" + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "" + +#: src/who.c:446 +msgid "clock change" +msgstr "" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" + +#: src/who.c:498 +msgid "NAME" +msgstr "" + +#: src/who.c:498 +msgid "LINE" +msgstr "" + +#: src/who.c:498 +msgid "TIME" +msgstr "" + +#: src/who.c:498 +msgid "IDLE" +msgstr "" + +#: src/who.c:498 +msgid "PID" +msgstr "" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "" + +#: src/who.c:499 +msgid "EXIT" +msgstr "" + +#: src/who.c:574 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "Használat: %s [KAPCSOLÓ]... [FÁJL]\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" + +#: src/who.c:711 +#, fuzzy +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "" +"vigyázat: a --version-control (-V) kapcsoló elavult, támogatottsága \n" +"meg fog szünni a következõ verzióval.\n" +"Használd a --backup=%s kapcsolót helyette." + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" + +#: src/whoami.c:53 +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "" + +#: src/yes.c:49 +#, fuzzy, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "Használat: %s [KAPCSOLÓ]\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" + +#, fuzzy +#~ msgid "\\%c: invalid escape" +#~ msgstr "%s: érvénytelen fájlméret" + +#~ msgid " Type" +#~ msgstr "Típus " + +#, fuzzy +#~ msgid "cannot convert time" +#~ msgstr "stat %s sikertelen" + +#, fuzzy +#~ msgid "cannot format time" +#~ msgstr "stat %s sikertelen" + +#~ msgid "cannot change to `..' from directory %s" +#~ msgstr "nem lehet `..'-ba lépni a következõ könyvtárból: %s" + +#~ msgid "missing file arguments" +#~ msgstr "hiányzó fájlargumentum" + +#, fuzzy +#~ msgid "environment variable, QUOTING_STYLE" +#~ msgstr "" +#~ "a QUOTING_STYLE környezeti változóban megadott érvénytelen érték \n" +#~ "figyelmen kívül hagyása: %s" + +#, fuzzy +#~ msgid "cannot execute %s" +#~ msgstr "lseek %s sikertelen" + +#, fuzzy +#~ msgid "Try %s --help' for more information.\n" +#~ msgstr "Próbáld a `%s --help'-et.\n" + +#~ msgid "preserving permissions for %s" +#~ msgstr "%s jogosultságainak megtartása" + +#~ msgid "cannot lstat `.'" +#~ msgstr "nem lehet az aktuális könyvtárat (`.') lstat-olni" + +#~ msgid "closing directory %s" +#~ msgstr "%s könyvtár lezárása" + +#~ msgid "%s: remove directory %s? " +#~ msgstr "%s: %s könyvtár törlése? " + +#~ msgid "%s: directory %s is write protected; descend into it anyway? " +#~ msgstr "%s: %s könyvtár írásvédett; mégis belépjek? " + +#~ msgid "removing all entries of directory %s\n" +#~ msgstr "a következõ könyvtár összes bejegyzésének törlése: %s\n" + +#~ msgid "directory %s was replaced before being removed" +#~ msgstr "%s könyvtárat kicserélték törlés elõtt" + +#~ msgid "cannot change back to directory %s via `..'" +#~ msgstr "nem lehet visszalépni a következõ könyvtárba `..'-on keresztül: %s" + +#~ msgid "subdirectory of %s was moved while being removed" +#~ msgstr "%s alkönyvtárát áthelyezték törlés közben" + +#~ msgid "%s: remove directory %s%s? " +#~ msgstr "%s: %s%s könyvtár törlése? " + +#~ msgid " (might be nonempty)" +#~ msgstr " (lehet, hogy tartalmaz valamit)" + +#~ msgid "removing the directory itself: %s\n" +#~ msgstr "a könyvtár törlése: %s\n" + +#~ msgid "continue? " +#~ msgstr "folytassam? " + +#~ msgid "%s tulajdonosa megváltozott a következõre: %s\n" +#~ msgstr "%s tulajdonosa megváltozott a következõre: %s\n" diff --git a/src/apps/bin/coreutils-5.0/po/insert-header.sin b/src/apps/bin/coreutils-5.0/po/insert-header.sin new file mode 100644 index 0000000000..b26de01f6c --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/insert-header.sin @@ -0,0 +1,23 @@ +# Sed script that inserts the file called HEADER before the header entry. +# +# At each occurrence of a line starting with "msgid ", we execute the following +# commands. At the first occurrence, insert the file. At the following +# occurrences, do nothing. The distinction between the first and the following +# occurrences is achieved by looking at the hold space. +/^msgid /{ +x +# Test if the hold space is empty. +s/m/m/ +ta +# Yes it was empty. First occurrence. Read the file. +r HEADER +# Output the file's contents by reading the next line. But don't lose the +# current line while doing this. +g +N +bb +:a +# The hold space was nonempty. Following occurrences. Do nothing. +x +:b +} diff --git a/src/apps/bin/coreutils-5.0/po/it.gmo b/src/apps/bin/coreutils-5.0/po/it.gmo new file mode 100644 index 0000000000..0840d60fb1 Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/it.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/it.po b/src/apps/bin/coreutils-5.0/po/it.po new file mode 100644 index 0000000000..fea246c9c6 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/it.po @@ -0,0 +1,7957 @@ +# Italian messages for GNU coreutils +# Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc. +# Marco d'Itri , 1998, 1999. +# Giovanni Bortolozzo , 1998. +# +msgid "" +msgstr "" +"Project-Id-Version: coreutils 4.5.1\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2002-07-24 18:12+0200\n" +"Last-Translator: Marco d'Itri \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "argomento %s non valido per %s" + +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "argomento %s ambiguo per %s" + +#: lib/argmatch.c:155 +#, fuzzy +msgid "Valid arguments are:" +msgstr "" +"#-#-#-#-# trans-it.po (sh-utils 2.0.13) #-#-#-#-#\n" +"Gli argomenti validi sono:\n" +"#-#-#-#-# trans-it.po (fileutils 4.1.11) #-#-#-#-#\n" +"Sono caratteri validi:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "errore di scrittura" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "Errore di sistema sconosciuto" + +#: lib/file-type.c:42 +#, fuzzy +msgid "regular empty file" +msgstr "" +"#-#-#-#-# trans-it.po (sh-utils 2.0.13) #-#-#-#-#\n" +"file regolare vuoto\n" +"#-#-#-#-# trans-it.po (fileutils 4.1.11) #-#-#-#-#\n" +"file normale vuoto" + +#: lib/file-type.c:42 +#, fuzzy +msgid "regular file" +msgstr "" +"#-#-#-#-# trans-it.po (sh-utils 2.0.13) #-#-#-#-#\n" +"file regolare\n" +"#-#-#-#-# trans-it.po (fileutils 4.1.11) #-#-#-#-#\n" +"file normale" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "directory" + +#: lib/file-type.c:48 +#, fuzzy +msgid "block special file" +msgstr "" +"#-#-#-#-# trans-it.po (sh-utils 2.0.13) #-#-#-#-#\n" +"file speciale a blocchi\n" +"#-#-#-#-# trans-it.po (fileutils 4.1.11) #-#-#-#-#\n" +"file speciali a blocchi" + +#: lib/file-type.c:51 +#, fuzzy +msgid "character special file" +msgstr "" +"#-#-#-#-# trans-it.po (sh-utils 2.0.13) #-#-#-#-#\n" +"file speciale a caratteri\n" +"#-#-#-#-# trans-it.po (fileutils 4.1.11) #-#-#-#-#\n" +"file speciali a caratteri" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "fifo" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "link simbolico" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "socket" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "coda di messaggi" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "semaforo" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "oggetto di memoria condivisa" + +#: lib/file-type.c:71 +msgid "weird file" +msgstr "file strano" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: l'opzione `%s' è ambigua\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, fuzzy, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "" +"#-#-#-#-# trans-it.po (sh-utils 2.0.13) #-#-#-#-#\n" +"%s: opzione `--%s' non accetta argomenti\n" +"#-#-#-#-# trans-it.po (fileutils 4.1.11) #-#-#-#-#\n" +"%s: l'opzione `--%s' non accetta argomenti\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: l'opzione `%c%s' non accetta argomenti\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: l'opzione `%s' richiede un argomento\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: opzione `--%s' non riconosciuta\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: opzione `%c%s' non riconosciuta\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: opzione illecita -- %c\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: opzione non valida -- %c\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: l'opzione richiede un argomento -- %c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: l'opzione `-W %s' è ambigua\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: l'opzione `-W %s' non accetta argomenti\n" + +#: lib/human.c:519 +#, fuzzy +msgid "block size" +msgstr "" +"#-#-#-#-# trans-it.po (sh-utils 2.0.13) #-#-#-#-#\n" +"dimensioni del blocco\n" +"#-#-#-#-# trans-it.po (fileutils 4.1.11) #-#-#-#-#\n" +"dimensioni dei blocchi" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "impossibile creare la directory %s" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%s esiste ma non è una directory" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "impossibile cambiare il proprietario e/o il gruppo di %s" + +#: lib/makepath.c:338 +#, fuzzy, c-format +msgid "cannot chdir to directory %s" +msgstr "" +"#-#-#-#-# trans-it.po (sh-utils 2.0.13) #-#-#-#-#\n" +"impossibile fare chdir alla directory %s\n" +"#-#-#-#-# trans-it.po (fileutils 4.1.11) #-#-#-#-#\n" +"impossibile entrare nella directory %s" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "impossibile cambiare i permessi di %s" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "memoria esaurita" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "`" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "'" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[sSyY]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[nN]" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "la funzione iconv non è utilizzabile" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "la funzione iconv non è disponibile" + +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "carattere fuori dall'intervallo" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "impossibile convertire U+%04X nel set di caratteri locale" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "impossibile convertire U+%04X nel set di caratteri locale: %s" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "utente non valido" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "gruppo non valido" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "impossibile ottenere il gruppo di login di un UID numerico" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "impossibile omettere sia l'utente che il gruppo" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "Scritto da %s.\n" + +#: lib/version-etc.c:63 +#, fuzzy +msgid "" +"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" +msgstr "" +"#-#-#-#-# trans-it.po (sh-utils 2.0.13) #-#-#-#-#\n" +"Questo è software libero; si veda il sorgente per le condizioni di " +"copiatura.\n" +"NON c'è alcuna garanzia; neppure di COMMERCIABILITÀ o IDONEITÀ AD UN\n" +"PARTICOLARE SCOPO, nei limiti permessi dalla legge.\n" +"#-#-#-#-# trans-it.po (fileutils 4.1.11) #-#-#-#-#\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" +"Questo è software libero; si veda il sorgente per le condizioni di " +"copiatura.\n" +"NON c'è alcuna garanzia; neppure di COMMERCIABILITÀ o IDONEITÀ AD UN\n" +"PARTICOLARE SCOPO.\n" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "confronto delle stringhe fallito" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "Imposta LC_ALL='C' per aggirare il problema." + +#: lib/xmemcoll.c:60 +#, fuzzy, c-format +msgid "The strings compared were %s and %s." +msgstr "" +"#-#-#-#-# trans-it.po (sh-utils 2.0.13) #-#-#-#-#\n" +"Le stringhe confrontate erano %s e %s.\n" +"#-#-#-#-# trans-it.po (fileutils 4.1.11) #-#-#-#-#\n" +"Le stringhe confrontate sono %s e %s." + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Usare `%s --help' per ulteriori informazioni.\n" + +#: src/basename.c:54 +#, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s NOME [SUFFISSO]\n" +" o: %s OPZIONE\n" + +#: src/basename.c:59 +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" +"Stampa il NOME rimuovendo tutte le componenti di directory iniziali.\n" +"Se specificato, rimuove anche il SUFFISSO finale.\n" +"\n" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, fuzzy, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"#-#-#-#-# trans-it.po (sh-utils 2.0.13) #-#-#-#-#\n" +"\n" +"Segnalare i bug a <%s>.\n" +"#-#-#-#-# trans-it.po (fileutils 4.1.11) #-#-#-#-#\n" +"\n" +"Segnalate i bug a <%s>.\n" + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "troppo pochi argomenti" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "troppi argomenti" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "" + +#: src/cat.c:92 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "Uso: %s [OPZIONE] FILE...\n" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" + +#: src/cat.c:314 +#, fuzzy, c-format +msgid "cannot do ioctl on `%s'" +msgstr "impossibile aprire la directory %s" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "standard output" + +#: src/cat.c:800 +#, fuzzy, c-format +msgid "%s: input file is output file" +msgstr "%s: dimensione del file non valida" + +#: src/cat.c:858 +#, fuzzy +msgid "closing standard input" +msgstr "standard input" + +#: src/cat.c:861 +#, fuzzy +msgid "closing standard output" +msgstr "standard output" + +#: src/chgrp.c:93 +msgid "cannot change to null group" +msgstr "impossibile cambiarlo nel gruppo nullo" + +#: src/chgrp.c:102 +#, c-format +msgid "invalid group name %s" +msgstr "nome di gruppo %s non valido" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "numero del gruppo" + +#: src/chgrp.c:109 +#, c-format +msgid "invalid group number %s" +msgstr "numero del gruppo non valido %s" + +#: src/chgrp.c:126 +#, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Uso: %s [OPZIONE]... GRUPPO FILE...\n" +" o: %s [OPZIONE]... --reference=RFILE FILE...\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Cambia l'appartenenza al gruppo di ogni FILE in GRUPPO.\n" +"\n" +" -c, --changes come verbose ma segnala solo i cambiamenti\n" +" --dereference agisce sul file a cui si riferisce ogni link\n" +" simbolico invece che sul link stesso\n" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" +" -h, --no-dereference agisce sui link simbolici invece che sui file a " +"cui\n" +" si riferiscono (disponibile solo sui sistemi che\n" +" possono cambiare il proprietario di un symlink)\n" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet sopprime la maggior parte dei messaggi di errore\n" +" --reference=RFILE usa il gruppo di RFILE piuttosto che il GRUPPO\n" +" -R, --recursive opera ricorsivamente su file e directory\n" +" -v, --verbose mostra un diagnostico per ogni file elaborato\n" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, c-format +msgid "failed to get attributes of %s" +msgstr "impossibile leggere gli attributi di %s" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "lettura dei nuovi attributi di %s" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "il modo di %s è diventato %04lo (%s)\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "impossibile cambiare il modo di %s in %04lo (%s)\n" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "il modo di %s è rimasto %04lo (%s)\n" + +#: src/chmod.c:179 +#, c-format +msgid "changing permissions of %s" +msgstr "ripristino dei permessi di %s" + +#: src/chmod.c:242 +#, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Uso: %s [OPZIONE]... MODO[,MODO]... FILE...\n" +" o: %s [OPZIONE]... MODO-OTTALE FILE...\n" +" o: %s [OPZIONE]... --reference=RFILE FILE...\n" + +#: src/chmod.c:248 +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"Cambia in MODO i permessi di ogni file.\n" +"\n" +" -c, --changes come verbose ma segnala solo i cambiamenti\n" +" -f, --silent, --quiet sopprime la maggior parte dei messaggi di errore\n" +" -v, --verbose mostra un diagnostico per ogni file processato\n" +" --reference=RFILE usa il modo di RFILE invece che i valori di MODO\n" +" -R, --recursive cambia file e directory ricorsivamente\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" +"\n" +"Ogni MODO è una o più delle lettere ugoa, uno dei simboli +-= e una o più\n" +"delle lettere rwxXstugo.\n" + +#: src/chmod.c:320 +#, c-format +msgid "invalid character %s in mode string %s" +msgstr "carattere %s non valido nella stringa di modo %s" + +#: src/chmod.c:361 +#, c-format +msgid "invalid mode string: %s" +msgstr "stringa di modo %s non valida" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "né il link simbolico %s né il file di riferimento sono cambiati\n" + +#: src/chown-core.c:143 +#, c-format +msgid "changed ownership of %s to %s\n" +msgstr "il proprietario di %s è stato cambiato in %s\n" + +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "il gruppo di %s è stato cambiato in %s\n" + +#: src/chown-core.c:148 +#, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "impossibile cambiare il proprietario di %s in %s\n" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "impossibile cambiare il gruppo di %s in %s\n" + +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "il proprietario di %s è rimasto %s\n" + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "il gruppo di %s è rimasto %s\n" + +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "proprietario di %s è stato cambiato" + +#: src/chown-core.c:327 +#, c-format +msgid "changing group of %s" +msgstr "il gruppo di %s è stato cambiato" + +#: src/chown-core.c:345 +#, c-format +msgid "unable to restore permissions of %s" +msgstr "impossibile ripristinare i permessi di %s" + +#: src/chown.c:99 +#, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Uso: %s [OPZIONE]... PROPRIETARIO[:[GRUPPO]] FILE...\n" +" o: %s [OPZIONE]... :GRUPPO FILE...\n" +" o: %s [OPZIONE]... --reference=RFILE FILE...\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Cambia il proprietario e/o il gruppo di ogni FILE in PROPRIETARIO e/o " +"GRUPPO.\n" +"\n" +" -c, --changes come verbose ma segnala solo le modifiche " +"effettuate\n" +" --dereference agisce sui file puntati dai link simbolici\n" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" +" --from=ATTUALE_PROPRIETARIO:ATTUALE_GRUPPO\n" +" cambia il proprietario e/o il gruppo di ogni file\n" +" solo se il suo attuale proprietario e/o gruppo\n" +" corrisponde a quello specificato qui. Ciascuno può\n" +" essere omesso, e in questo caso non è richiesto " +"che\n" +" corrisponda.\n" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet sopprime la maggior parte dei messaggi di errore\n" +" --reference=RFILE usa il proprietario e gruppo di RFILE piuttosto " +"che\n" +" i valori PROPRIETARIO:GRUPPO specificati\n" +" -R, --recursive opera ricorsivamente su file e directory\n" +" -v, --verbose mostra un diagnostico per ogni file elaborato\n" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" +"\n" +"Il proprietario resta immutato se mancante. Il gruppo resta immutato se\n" +"mancante, ma cambiato al gruppo di login se reso implicito da `:'.\n" +"PROPRIETARIO e GRUPPO possono essere sia numerici che simbolici.\n" + +#: src/chroot.c:45 +#, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s [OPZIONE] NUOVAROOT [COMANDO...]\n" +" o: %s OPZIONE\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" +"Esegue il COMANDO con la root directory impostata a NUOVAROOT.\n" +"\n" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" +"\n" +"Se non è dato alcun comando, lancia ``${SHELL} -i'' (predefinita: /bin/sh).\n" + +#: src/chroot.c:84 +#, c-format +msgid "cannot change root directory to %s" +msgstr "impossibile cambiare la root directory a %s" + +#: src/chroot.c:87 +msgid "cannot chdir to root directory" +msgstr "impossibile fare chdir alla root directory" + +#: src/cksum.c:234 +#, fuzzy, c-format +msgid "%s: file too long" +msgstr "%s: file troppo grande" + +#: src/cksum.c:282 +#, fuzzy, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"Uso: %s FILE\n" +" o: %s OPZIONE\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "Richard Stallman e David MacKenzie" + +#: src/comm.c:73 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "Uso: %s [OPZIONE]... [ FILE ]\n" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" + +#: src/copy.c:162 src/du.c:332 +#, c-format +msgid "cannot access %s" +msgstr "impossibile accedere a %s" + +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "impossibile aprire %s per la lettura" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, c-format +msgid "cannot fstat %s" +msgstr "impossibile fare fstat di %s" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "salto il file %s perché è stato rimpiazzato mentre veniva copiato" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, c-format +msgid "cannot remove %s" +msgstr "impossibile rimuovere %s" + +#: src/copy.c:277 +#, c-format +msgid "cannot create regular file %s" +msgstr "impossibile creare il file normale %s" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, c-format +msgid "reading %s" +msgstr "lettura di %s" + +#: src/copy.c:362 +#, c-format +msgid "cannot lseek %s" +msgstr "impossibile fare lseek in %s" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, c-format +msgid "writing %s" +msgstr "scrittura di %s" + +#: src/copy.c:409 src/copy.c:415 +#, c-format +msgid "closing %s" +msgstr "chiusura di %s" + +#: src/copy.c:610 +#, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: sovrascrivo %s ignorando il modo %04lo? " + +#: src/copy.c:616 +#, c-format +msgid "%s: overwrite %s? " +msgstr "%s: sovrascrivo %s? " + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, c-format +msgid "cannot stat %s" +msgstr "impossibile fare stat di %s" + +#: src/copy.c:820 +#, c-format +msgid "omitting directory %s" +msgstr "directory %s omessa" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "attenzione: il file di origine %s è stato specificato più di una volta" + +#: src/copy.c:866 src/ln.c:237 +#, c-format +msgid "%s and %s are the same file" +msgstr "%s e %s sono lo stesso file" + +#: src/copy.c:876 +#, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "impossibile sovrascrivere la non-directory %s con la directory %s" + +#: src/copy.c:893 +#, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "il %1$s appena creato non sarà sovrascritto da %2$s" + +#: src/copy.c:904 +#, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "impossibile sovrascrivere la directory %s con una non-directory" + +#: src/copy.c:965 +#, c-format +msgid "cannot overwrite directory %s" +msgstr "impossibile sovrascrivere la directory %s" + +#: src/copy.c:974 +#, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "impossibile spostare una directory in una non-directory: %s -> %s" + +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "il backup di %s distruggerebbe l'origine; %s non spostato" + +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "il backup di %s distruggerebbe l'origine; %s non copiato" + +#: src/copy.c:1013 src/ln.c:273 +#, c-format +msgid "cannot backup %s" +msgstr "impossibile fare il backup di %s" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr " (backup: %s)" + +#: src/copy.c:1099 +#, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "impossibile copiare la directory %s dentro sè stessa, %s" + +#: src/copy.c:1106 +#, c-format +msgid "will not create hard link %s to directory %s" +msgstr "impossibile creare l'hard link %s alla directory %s" + +#: src/copy.c:1132 +#, c-format +msgid "cannot create hard link %s to %s" +msgstr "impossibile creare l'hard link %s a %s" + +#: src/copy.c:1186 +#, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "impossibile spostare %s in una subdirectory di sè stesso, %s" + +#: src/copy.c:1229 +#, c-format +msgid "cannot move %s to %s" +msgstr "impossibile spostare %s in %s" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "" +"spostamento tra dispositivi fallito: %s in %s; impossibile rimuovere\n" +"la destinazione" + +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "impossibile copiare il link simbolico ciclico %s" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "" +"%s: si possono fare link simbolici relativi solo nella directory corrente" + +#: src/copy.c:1353 +#, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "impossibile creare il link simbolico %s a %s" + +#: src/copy.c:1364 +#, c-format +msgid "cannot create link %s" +msgstr "impossibile creare il link %s" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, c-format +msgid "cannot create fifo %s" +msgstr "impossibile creare il fifo %s" + +#: src/copy.c:1403 +#, c-format +msgid "cannot create special file %s" +msgstr "impossibile creare il file speciale %s" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, c-format +msgid "cannot read symbolic link %s" +msgstr "impossibile leggere il link simbolico %s" + +#: src/copy.c:1440 +#, c-format +msgid "cannot create symbolic link %s" +msgstr "impossibile creare il link simbolico %s" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, c-format +msgid "failed to preserve ownership for %s" +msgstr "impossibile preservare il proprietario di %s" + +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "%s ha il tipo di file sconosciuto" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "preservato l'orario di %s" + +#: src/copy.c:1531 +#, c-format +msgid "failed to preserve authorship for %s" +msgstr "impossibile preservare l'autore di di %s" + +#: src/copy.c:1549 +#, c-format +msgid "setting permissions for %s" +msgstr "impostazione dei permessi di %s" + +#: src/copy.c:1571 src/ln.c:326 +#, c-format +msgid "cannot un-backup %s" +msgstr "impossibile annullare il backup di %s" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s -> %s (annullamento backup)\n" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "Torbjorn Granlund, David MacKenzie, e Jim Meyering" + +#: src/cp.c:164 src/mv.c:311 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"Uso: %s [OPZIONE]... ORIGINE DESTINAZIONE\n" +" o: %s [OPZIONE]... ORIGINE... DIRECTORY\n" +" o: %s [OPZIONE]... --target-directory=DIRECTORY ORIGINE...\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Copia SORGENTE su DESTINAZIONE, o SORGENTI multiple nella DIRECTORY.\n" +"\n" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +#, fuzzy +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" +"#-#-#-#-# trans-it.po (sh-utils 2.0.13) #-#-#-#-#\n" +"Gli argomenti obbligatori per le opzioni lunghe lo sono anche per quelle " +"brevi.\n" +"#-#-#-#-# trans-it.po (fileutils 4.1.11) #-#-#-#-#\n" +"Gli argomenti obbligatori per le opzioni lunghe lo sono anche per quelle " +"corte.\n" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" +" -a, --archive come -dpR\n" +" --backup[=TIPO] fa il backup di ogni file di destinazione\n" +" -b come --backup ma non accetta un argomento\n" +" --copy-contents quando agisce ricorsivamente copia il " +"contenuto\n" +" dei file speciali\n" +" -d come --no-dereference --preserve=link\n" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" +" --no-dereference non segue mai i link simbolici\n" +" -f, --force se non è possibile aprire un file di\n" +" destinazione esistente lo rimuove e " +"riprova\n" +" -i, --interactive chiede prima di sovrascrivere\n" +" -H segue i link simbolici sulla riga di comando\n" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" +" -R, -r, --recursive copia le directory ricorsivamente\n" +" --remove-destination rimuove ogni file di destinazione esistente\n" +" prima di cercare di aprirlo (in contrasto\n" +" a --force)\n" + +#: src/cp.c:209 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +" --reply={yes,no,query} specifica come gestire la domanda a " +"proposito\n" +" di un file di destinazione già esistente\n" +" --sparse=WHEN controlla la creazione dei file sparsi\n" +" --strip-trailing-slashes rimuove gli slash dalla fine di ogni " +"ORIGINE\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" +" -s, --symbolic-link fa link simbolici invece di copiare\n" +" -S, --suffix=SUFFISSO cambia il normale suffisso dei backup\n" +" --target-directory=DIRECTORY sposta ogni ORIGINE nella DIRECTORY\n" + +#: src/cp.c:221 +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +" -u, --update sposta solo quando ORIGINE è più recente del\n" +" file di destinazione o questo è mancante\n" +" -v, --verbose spiega cosa sta facendo\n" +" -x, --one-file-system rimane su questo file system\n" + +#: src/cp.c:230 +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +"\n" +"Normalmente, i file di ORIGINE sparsi sono individuati da un'euristica\n" +"approssimativa e sono resi sparsi anche i file di DESTINAZIONE " +"corrispondenti.\n" +"Questo è il comportamento selezionabile con --sparse=auto. Specificare\n" +"--sparse=always per creare un file di DESTINAZIONE sparso ogni qualvolta il\n" +"file di ORIGINE contiene una sequenza abbastanza lunga di byte zero.\n" +"Usare --sparse=never per inibire la creazione dei file sparsi.\n" +"\n" + +#: src/cp.c:239 +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"Il suffisso dei backup è ~, a meno che sia impostato con --suffix oppure\n" +"SIMPLE_BACKUP_SUFFIX. Il metodo di controllo di versione può essere scelto\n" +"con l'opzione --backup o la variabile di ambiente VERSION_CONTROL. I valori\n" +"sono:\n" +"\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +" none, off non fa mai backup (anche se è specificato --backup)\n" +" numbered, t fa backup numerati\n" +" existing, nil numerati se esistono backup numerati, altrimenti semplici\n" +" simple, never fa sempre backup semplici\n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +"Come caso particolare, cp fa un backup di ORIGINE quando sono usate le " +"opzioni\n" +"force e backup e ORIGINE e DEST sono lo stesso nome di un file normale già\n" +"esistente.\n" + +#: src/cp.c:325 +#, c-format +msgid "failed to preserve times for %s" +msgstr "impossibile preservare l'orario di %s" + +#: src/cp.c:349 +#, c-format +msgid "failed to preserve permissions for %s" +msgstr "impossibile preservare i permessi di %s" + +#: src/cp.c:434 +#, c-format +msgid "cannot make directory %s" +msgstr "impossibile creare la directory %s" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +msgid "missing file argument" +msgstr "manca il file argomento" + +#: src/cp.c:498 +msgid "missing destination file" +msgstr "manca il file di destinazione" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "accedo a %s" + +#: src/cp.c:546 +#, c-format +msgid "%s: specified target is not a directory" +msgstr "%s: l'obiettivo specificato non è una directory" + +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "copia di file multipli, ma l'ultimo argomento %s non è una directory" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "quando preserva i percorsi, la destinazione deve essere una directory" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"attenzione: --version-control (-V) è obsoleto; la gestione di questa " +"opzione\n" +"sarà rimossa in una versione futura. Usa --backup=%s al suo posto." + +#: src/cp.c:972 src/ln.c:464 +msgid "symbolic links are not supported on this system" +msgstr "i link simbolici non sono gestibili da questo sistema" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "impossibile fare contermporaneamente hard link e link simbolici" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "tipo di backup" + +#: src/csplit.c:41 +#, fuzzy +msgid "Stuart Kemp and David MacKenzie" +msgstr "Mike Parker e David MacKenzie" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "errore di lettura" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "" + +#: src/csplit.c:705 src/csplit.c:716 +#, fuzzy, c-format +msgid "%s: line number out of range" +msgstr "%s: numero di passi non valido" + +#: src/csplit.c:743 +#, fuzzy, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: numero di passi non valido" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr "" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "" + +#: src/csplit.c:992 +#, fuzzy, c-format +msgid "write error for `%s'" +msgstr "errore di scrittura" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "" + +#: src/csplit.c:1068 +#, fuzzy, c-format +msgid "%s: integer expected after `%c'" +msgstr "manca l'operando dopo `%s'" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "" + +#: src/csplit.c:1141 +#, fuzzy, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: process id non valido" + +#: src/csplit.c:1174 +#, fuzzy, c-format +msgid "%s: invalid pattern" +msgstr "%s: segnale non valido" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "" + +#: src/csplit.c:1320 +#, fuzzy, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "conversione non valida: %s" + +#: src/csplit.c:1323 +#, fuzzy, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "conversione non valida: %s" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "" + +#: src/csplit.c:1441 +#, fuzzy, c-format +msgid "%s: invalid number" +msgstr "numero %s non valido" + +#: src/csplit.c:1496 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "Uso: %s [OPZIONE]... FILE...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" + +#: src/cut.c:39 +#, fuzzy +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "Mike Parker, David MacKenzie, e Jim Meyering" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "Uso: %s [OPZIONE]... [FILE]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" + +#: src/cut.c:190 +#, fuzzy +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" +" -w, --width=COL lo schermo è largo COL invece del'attuale " +"valore\n" +" -x elenca le voci per righe invece che per " +"colonne\n" +"\"\" -X ordina alfabeticamente secondo le " +"estensioni\n" +" -1 elenca un file per riga\n" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +#, fuzzy +msgid "invalid byte or field list" +msgstr "formato di orario %s non valido" + +#: src/cut.c:667 src/cut.c:676 +#, fuzzy +msgid "only one type of list may be specified" +msgstr "può essere specificato un solo dispositivo" + +#: src/cut.c:670 +#, fuzzy +msgid "missing list of positions" +msgstr "manca il file di destinazione" + +#: src/cut.c:679 +#, fuzzy +msgid "missing list of fields" +msgstr "manca il file di destinazione" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "" + +#: src/cut.c:720 +#, fuzzy +msgid "an input delimiter may be specified only when operating on fields" +msgstr "" +"la stringa di formato non può essere specificata quando si stampano " +"stringhe\n" +"a ugual larghezza" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" + +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" +"Uso: %s [OPZIONE]... [+FORMATO]\n" +" o: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" +"Visualizza l'ora corrente nel FORMATO specificato, o imposta la data di\n" +"sistema.\n" +"\n" +" -d, --date=STRINGA visualizza l'ora descritta da STRINGA, non " +"`now'\n" +" -f, --file=DATEFILE come --date una volta per ogni riga di DATAFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] stampa una stringa di data/ora nel " +"formato\n" +" ISO-8601. TIMESPEC=`date' per la sola data,\n" +" `hours', `minutes', o `seconds' per la data e\n" +" l'orario con la precisione indicata.\n" +" --iso-8601 senza TIMESPEC userà `date'.\n" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" +" -r, --reference=FILE visualizza l'orario dell'ultima modifica di " +"FILE\n" +" -R, --rfc-822 stampa una stringa di data conforme a RFC-822\n" +" -s, --set=STRINGA imposta l'orario descritto da STRINGA\n" +" -u, --utc, --universal stampa o imposta il Coordinated Universal Time\n" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" +"\n" +"FORMATO controlla l'output. Le sole opzioni valide per la seconda forma\n" +"specificano il Coordinated Universal Time. Le sequenze interpretate sono:\n" +"\n" +" %% un %% letterale\n" +" %a nome localizzato abbreviato del giorno della settimana (lun..dom)\n" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" +" %A nome localizzato completo del giorno della settimana, lunghezza\n" +" variabile (lunedì..domenica)\n" +" %b nome localizzato abbreviato del mese (gen..dic)\n" +" %B nome localizzato completo del mese, lunghezza var. (gennaio.." +"dicembre)\n" +" %c data e ora localizzate (sab nov 04 12:02:33 CET 1989)\n" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" +" %C secolo (anno diviso per 100 e troncato a intero) [00-99]\n" +" %d giorno del mese (01..31)\n" +" %D data (mm/dd/yy)\n" +" %e giorno del mese con spazi ( 1..31)\n" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" +" %F come %Y-%m-%d\n" +" %g l'anno di due cifre corrispondente al numero della settimana %V\n" +" %G l'anno di quattro cifre corrispondente al numero della settimana %V\n" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" +" %h come %b\n" +" %H ora (00..23)\n" +" %I ora (01..12)\n" +" %j giorno dell'anno (001..366)\n" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" +" %k ora ( 0..23)\n" +" %l ora ( 1..12)\n" +" %m mese (01..12)\n" +" %M minuto (00..59)\n" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" +" %n un newline\n" +" %N nanosecondi (000000000..999999999)\n" +" %p indicatore AM o PM localizzato e maiuscolo (nullo in molti locali)\n" +" %P indicatore am o pm localizzato e minuscolo (nullo in molti locali)\n" +" %r orario, 12-ore (hh:mm:ss [AP]M)\n" +" %R orario, 24-ore (hh:mm)\n" +" %s secondi passati dalle `00:00:00 del 1 gen 1970' (estensione GNU)\n" + +#: src/date.c:187 +#, fuzzy +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" +" %S secondi (00..60)\n" +" %t un tab orizzontale\n" +" %T orario, 24-ore (hh:mm:ss)\n" +" %u giorno della settimana (1..7); 1 rappresenta lunedì\n" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" +" %U numero della settimana dell'anno con domenica come primo giorno " +"della\n" +" settimana (00..53)\n" +" %V numero della settimana dell'anno con lunedì come primo giorno della\n" +" settimana (01..52)\n" +" %w giorno della settimana (0..6); 0 rappresenta domenica\n" +" %W numero della settimana dell'anno con lunedì come primo giorno della\n" +" settimana (00..53)\n" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" +" %x rappresentazione localizzata della data (gg/mm/aa)\n" +" %X rappresentazione localizzata dell'ora (%H:%M:%S)\n" +" %y ultime due cifre dell'anno (00..99)\n" +" %Y anno (1970...)\n" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" +" %z fuso orario numerico stile RFC-822 (-0500) (estensione non standard)\n" +" %Z fuso orario (p.es., EDT), o niente se non è determinabile\n" +"\n" +"Come comportamento predefinito, date completa i campi numerici con zeri.\n" +"GNU date riconosce i seguenti modificatori tra `%' e una direttiva " +"numerica.\n" +"\n" +" `-' (trattino) non riempie il campo\n" +" `_' (underscore) riempie il campo con spazi\n" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "standard input" + +#: src/date.c:268 src/date.c:460 +#, c-format +msgid "invalid date `%s'" +msgstr "data `%s' non valida" + +#: src/date.c:364 +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "" +"le opzioni per specificare la stampa di date sono mutualmente esclusive" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "" +"le opzioni per stampare e impostare l'orario non possono essere usate insieme" + +#: src/date.c:377 +#, c-format +msgid "too many non-option arguments: %s%s" +msgstr "troppi argomenti che non sono opzioni: %s%s" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" +"manca un `+' davanti all'argomento `%s';\n" +"quando si usa un'opzione per specificare una o più date, qualsiasi " +"argomento\n" +"che non sia un'opzione deve essere una stringa di formato che inizia con `+'" + +#: src/date.c:397 +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "" +"la stringa di formato non può essere specificata quando si usa l'opzione\n" +"--rfc-822 (-R)" + +#: src/date.c:433 +msgid "undefined" +msgstr "non definita" + +#: src/date.c:435 +msgid "cannot get time of day" +msgstr "impossibile ottenere l'ora" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "impossibile impostare la data" + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "Paul Rubin, David MacKenzie, e Stuart Kemp" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "Uso: %s [OPZIONE]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" +"Copia un file, convertendolo e formattandolo secondo le opzioni.\n" +"\n" +" bs=BYTE forza ibs=BYTE e obs=BYTE\n" +" cbs=BYTE converte BYTE byte per volta\n" +" conv=PAROLE converte il file secondo la lista di PAROLE chiave " +"separate\n" +" da virgole\n" +" count=BLOCCHI copia dall'input solo un certo numero di BLOCCHI\n" +" ibs=BYTE legge BYTE byte per volta\n" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" +" if=FILE legge da FILE invece che da stdin\n" +" obs=BYTE scrive BYTE byte per volta\n" +" of=FILE scrive su FILE invece che su stdout\n" +" seek=BLOCCHI salta un numero di BLOCCHI lunghi obs all'inizio " +"dell'output\n" +" skip=BLOCCHI salta un numero BLOCCHI lunghi ibs all'inizio dell'input\n" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" +"\n" +"BLOCCHI e BYTE possono essere seguito da uno di questi suffissi " +"moltiplicatori:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824 e così via per T, P, E, Z e Y.\n" +"Ogni PAROLA può essere:\n" +"\n" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" +" ascii da EBCDIC a ASCII\n" +" ebcdic da ASCII a EBCDIC\n" +" ibm da ASCII a EBCDIC alternativo\n" +" block completa con spazi fino a cbs i record terminati da newline\n" +" unblock sostituisce con newline gli spazi alla fine di un record lungo " +"cbs\n" +" lcase cambia le maiuscole in minuscole\n" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" +" notrunc non tronca il file di output\n" +" ucase cambia le minuscole in maiuscole\n" +" swab scambia ogni coppia di byte in input\n" +" noerror continua dopo gli errori di lettura\n" +" sync completa con NUL fino a cbs ogni blocco in input; quando è " +"usato\n" +"\"\" con block o unblock completa con spazi invece che con NUL\n" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "entrati %s+%s record\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "usciti %s+%s record\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "record troncato" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "record troncati" + +#: src/dd.c:382 +#, c-format +msgid "closing input file %s" +msgstr "chiusura del file di input %s" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "chiusura del file di output %s" + +#: src/dd.c:469 +#, c-format +msgid "writing to %s" +msgstr "scrittura di %s" + +#: src/dd.c:501 +#, c-format +msgid "invalid conversion: %s" +msgstr "conversione non valida: %s" + +#: src/dd.c:557 +#, c-format +msgid "unrecognized option %s" +msgstr "opzione %s non riconosciuta" + +#: src/dd.c:610 +#, c-format +msgid "unrecognized option %s=%s" +msgstr "opzione %s=%s non riconosciuta" + +#: src/dd.c:616 +#, c-format +msgid "invalid number %s" +msgstr "numero %s non valido" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"una sola conversione tra {ascii,ebcdic,ibm}, {lcase,ucase}, {block," +"unblock},\n" +"{unblock,sync}" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" + +#: src/dd.c:1170 src/dd.c:1188 +#, c-format +msgid "opening %s" +msgstr "apertura di %s" + +#: src/dd.c:1196 +msgid "file offset out of range" +msgstr "offset del file fuori scala" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "avanzamento di %s byte nel file di output %s" + +#: src/df.c:49 +#, fuzzy +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "Torbjorn Granlund, David MacKenzie, e Jim Meyering" + +#: src/df.c:153 +#, fuzzy +msgid "Filesystem Type" +msgstr "Filesystem " + +#: src/df.c:155 +#, fuzzy +msgid "Filesystem " +msgstr "Filesystem " + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr " Inode IUsati ILib. IUso%%" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Dimens. Usati Disp. Uso%%" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Dimens. Usati Disp. Uso%%" + +#: src/df.c:167 +#, fuzzy, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr "blocchi di %d Usati Disponib. Capacità" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr "blocchi di %4s Usati Disponib. Uso%%" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr " Montato su\n" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" +"Mostra informazioni sul filesystem su cui risiede ogni FILE, oppure su " +"tutti\n" +"\"\"i filesystem se FILE non è specificato.\n" +"\n" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" +" -a, --all include i filesystem lunghi 0 blocchi\n" +" --block-size=DIM usa blocchi lunghi DIM\n" +" -h, --human-readable stampa le dimensioni in formato leggibile (es: 1K, " +"23M)\n" +" -H, --si idem, ma usa multipli di 1000 invece che di 1024\n" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" +" -i, --inodes elenca informazioni sugli inode invece che sui " +"blocchi\n" +" -k come --block-size=1K\n" +" -l, --local limita l'elenco ai file system locali\n" +" --no-sync non fa sync prima di prendere le informazioni " +"(predef.)\n" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" +" -P, --portability usa il formato di output POSIX\n" +" --sync fa sync prima di prendere le informazioni sull'uso\n" +" -t, --type=TIPO limita l'elenco ai filesystem di tipo TIPO\n" +" -T, --print-type stampa il tipo di filesystem\n" +" -x, --exclude-type=TIPO limita l'elenco ai filesystem non di tipo TIPO\n" +" -v (ignorato)\n" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" +"\n" +"DIM può essere o opzionalmente può essere seguito uno di questi:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, e così via per G, T, P, E, Z e " +"Y.\n" + +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "il tipo di file system %s è stato sia selezionato che escluso" + +#: src/df.c:903 +msgid "Warning: " +msgstr "Attenzione: " + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "%simpossibile leggere la tabella dei file system montati" + +#: src/dircolors.c:103 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "Uso: %s [OPZIONE]... [FILE]...\n" + +#: src/dircolors.c:104 +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"Stampa i comandi per impostare la variabile di ambiente LS_COLORS\n" +"\n" +"Determina il formato dell'output:\n" +" -b, --sh, --bourne-shell stampa istruzioni per la Bourne shell\n" +" -c, --csh, --c-shell stampa istruzioni per la C shell\n" +" -p, --print-database stampa le impostazioni predefinite\n" +" --help mostra questo aiuto ed esce\n" +" --version stampa le informazioni sulla versione ed esce\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" +"\n" +"Se FILE è specificato viene letto per determinare quali colori usare per i\n" +"diversi tipi di file ed estensioni. Altrimenti è usato un database\n" +"precompilato. Per conoscere i dettagli sul formato di questi file eseguire\n" +"`dircolors --print-database'.\n" + +#: src/dircolors.c:299 +#, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s:%lu: riga non valida; manca il secondo token" + +#: src/dircolors.c:371 +#, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s:%lu: parola chiave non riconosciuta %s" + +#: src/dircolors.c:372 +msgid "" +msgstr "" + +#: src/dircolors.c:467 +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" +"le opzioni per stampare il database interno di dircolors e per selezionare\n" +"una sintassi di shell sono mutuamente esclusive" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" +"l'argomento FILE non può essere usato con l'opzione per stampare\n" +"il database interno di dircolors" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "" +"manca la variabile di ambiente SHELL e non è stata usata l'opzione per\n" +"selezionare il tipo della shell" + +#: src/dirname.c:33 src/pathchk.c:59 +msgid "David MacKenzie and Jim Meyering" +msgstr "David MacKenzie and Jim Meyering" + +#: src/dirname.c:46 +#, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s NOME\n" +" o: %s OPZIONE\n" + +#: src/dirname.c:51 +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" +"Stampa NOME rimuovendo la /componente finale; se NOME non contiene un /,\n" +"stampa `.' (intendendo la directory corrente).\n" +"\n" + +#: src/du.c:49 +#, fuzzy +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "Torbjorn Granlund, David MacKenzie, e Jim Meyering" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" +"Riassume l'uso del disco di ogni FILE, ricorsivamente per le directory.\n" +"\n" + +#: src/du.c:182 +#, fuzzy +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" +" -a, --all stampa i numeri di tutti i file, non solo delle " +"direct.\n" +" -B, --block-size=DIM usa blocchi lunghi DIM\n" +" -b, --bytes stampa le dimensioni in byte\n" +" -c, --total genera un totale complessivo\n" +" -D, --dereference-args dereferenzia i PERCORSI quando ci sono link " +"simbolici\n" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" +" -h, --human-readable stampa le dimensioni in formato leggibile (es: 1K, " +"23M)\n" +" -H, --si idem, ma usa multipli di 1000 invece che di 1024\n" +" -k come --block-size=1K\n" +" -l, --count-links conta le dimensioni più volte se ci sono hard link\n" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" +" -L, --dereference dereferenzia tutti i link simbolici\n" +" -S, --separate-dirs non include le dimensioni delle subdirectory\n" +" -s, --summarize mostra solo un totale per ogni argomento\n" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" +" -x, --one-file-system salta le directory su file system diversi\n" +" -X FILE, --exclude-from=FILE esclude i file che corrispondono a ogni " +"modello\n" +" nel FILE\n" +" --exclude=MODELLO esclude i file che corrispondono al MODELLO\n" +" --max-depth=N stampa il totale per una directory (o file, con --" +"all)\n" +" solo se è N o meno livelli sotto l'argomento della " +"riga\n" +" di comando; --max-depth=0 è lo stesso che --" +"summarize\n" + +#: src/du.c:337 +#, fuzzy, c-format +msgid "cannot change to parent of directory %s" +msgstr "impossibile entrare nella directory %s" + +#: src/du.c:345 +#, c-format +msgid "cannot change to directory %s" +msgstr "impossibile entrare nella directory %s" + +#: src/du.c:352 +#, fuzzy, c-format +msgid "cannot read directory %s" +msgstr "impossibile creare la directory %s" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "totale" + +#: src/du.c:641 +#, c-format +msgid "invalid maximum depth %s" +msgstr "profondità massima %s non valida" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "impossibile riassumere e contemporaneamente mostrare tutte le voci" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "attenzione: --summarize è lo stesso che usare --max-depth=0" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "attenzione: --summarize è in conflitto con --max-depth=%d" + +#: src/echo.c:77 +#, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "Uso: %s [OPZIONE]... [STRINGA]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" +"Stampa la STRINGA sullo standard output.\n" +"\n" +" -n non stampa il newline finale\n" +" -e abilita l'interpretazione delle sequenze di caratteri\n" +" protette da backspace indicate sotto\n" +" -E disabilita l'interpolazione di queste sequenze in STRINGA\n" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" +"\n" +"Senza -E le seguenti sequenze sono riconosciute ed interpolate:\n" +"\n" +" \\NNN il carattere il cui codice ASCII è NNN (ottale)\n" +" \\\\ backslash\n" +" \\a avviso (BEL)\n" +" \\b backspace\n" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\c elimina il newline finale\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t tab orizzontale\n" +" \\v tab verticale\n" + +#: src/env.c:93 +msgid "Richard Mlynarik and David MacKenzie" +msgstr "Richard Mlynarik and David MacKenzie" + +#: src/env.c:119 +#, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "Uso: %s [OPZIONE]... [-] [NOME=VALORE]... [COMANDO [ARG]...]\n" + +#: src/env.c:122 +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" +"Imposta nell'ambiente ogni NOME a VALORE ed esegue il COMANDO.\n" +"\n" +" -i, --ignore-environment inizia con un ambiente vuoto\n" +" -u, --unset=NOME rimuove la variabile dall'ambiente\n" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" +"\n" +"Un semplice - implica -i. Se manca il COMANDO, stampa l'ambiente " +"risultante.\n" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" + +#: src/expand.c:173 src/unexpand.c:153 +#, fuzzy +msgid "tab size contains an invalid character" +msgstr "il percorso `%s' contiene il carattere non portabile `%c'" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "" + +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "" + +#: src/expr.c:90 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s ESPRESSIONE\n" +" o: %s OPZIONE\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" +"\n" +"Stampa sullo standard output il valore dell'ESPRESSIONE. Qui sotto, una " +"riga\n" +"vuota separa gruppi di operatori con precedenza crescente.\n" +"ESPRESSIONE può essere:\n" +"\n" +" ARG1 | ARG2 ARG1 se non è nullo o 0, altrimenti ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 se nessun argomento è nullo o 0, altrimenti 0\n" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" +"\n" +" ARG1 < ARG2 ARG1 è minore di ARG2\n" +" ARG1 <= ARG2 ARG1 è minore o uguale di ARG2\n" +" ARG1 = ARG2 ARG1 è uguale ad ARG2\n" +" ARG1 != ARG2 ARG1 è diverso da ARG2\n" +" ARG1 >= ARG2 ARG1 è maggiore o uguale di ARG2\n" +" ARG1 > ARG2 ARG1 è maggiore di ARG2\n" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" +"\n" +" ARG1 + ARG2 somma aritmetica di ARG1 e ARG2\n" +" ARG1 - ARG2 differenza aritmetica di ARG1 e ARG2\n" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" +"\n" +" ARG1 * ARG2 prodotto aritmetico di ARG1 e ARG2\n" +" ARG1 / ARG2 quoziente aritmetico di ARG1 diviso ARG2\n" +" ARG1 % ARG2 resto aritmetico di ARG1 diviso ARG2\n" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" +"\n" +" STRINGA : REGEXP ricerca ancorata del modello REGEXP nella STRINGA\n" +"\n" +" match STRINGA REGEXP come STRINGA : REGEXP\n" +" substr STRINGA POS LUNG sottostringa della STRINGA, POS è contata da 1\n" +" index STRINGA CAR posizione nella STRINGA di uno dei CAR, se\n" +" trovato, o 0\n" +" length STRINGA lunghezza della STRINGA\n" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" +" + TOKEN interpreta TOKEN come una stringa anche se è " +"una\n" +" parola chiave come `match' o un operatore come " +"`/'\n" +"\n" +" ( ESPRESSIONE ) valore dell'ESPRESSIONE\n" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" +"\n" +"Si noti che molti operatori devono essere preceduti da `\\' (escaped) o\n" +"protetti da apici a causa delle shell. I confronti sono aritmetici se\n" +"entrambi gli ARG sono numeri, altrimenti sono lessicografici. I modelli\n" +"restituiscono la stringa corrispondente tra \\( e \\) oppure nulla; se\n" +"\\( e \\) non sono usati, restituiscono il numero di caratteri " +"corrispondenti\n" +"oppure 0.\n" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +msgid "syntax error" +msgstr "errore di sintassi" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" +"attenzione: BRE non portabile: `%s': l'uso di `^' come primo carattere\n" +"di un'espressione regolare semplice non è portabile; è ignorato" + +#: src/expr.c:586 src/expr.c:625 +msgid "non-numeric argument" +msgstr "argomenti non numerici" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "divisione per zero" + +#: src/factor.c:74 +#, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s [NUMERO]...\n" +" o: %s OPZIONE\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" +"Stampa i fattori primi di ogni NUMERO.\n" +"\n" + +#: src/factor.c:85 +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" +"\n" +" Stampa i fattori primi di tutti i NUMERI interi specificati. Se non sono\n" +" specificati argomenti sulla riga di comando li legge da standard input.\n" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "`%s' non è un intero positivo valido" + +#: src/false.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Uso: %s [argomenti della riga di comando ignorati]\n" +" o: %s OPZIONE\n" +"Esce con un codice di stato indicante l'insuccesso.\n" +"\n" +"I nomi di queste opzioni non possono essere abbreviati.\n" +"\n" + +#: src/fmt.c:271 +#, fuzzy, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "Uso: %s [OPZIONE]... [FILE]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" + +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" + +#: src/fmt.c:345 +#, fuzzy, c-format +msgid "invalid width option: `%s'" +msgstr "opzione `%s' non valida" + +#: src/fmt.c:385 +#, fuzzy, c-format +msgid "invalid width: `%s'" +msgstr "data `%s' non valida" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" + +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "" + +#: src/fold.c:295 +#, fuzzy, c-format +msgid "invalid number of columns: `%s'" +msgstr "numero %s non valido" + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" + +#: src/head.c:190 +#, fuzzy, c-format +msgid "cannot reposition file pointer for %s" +msgstr "impossibile ottenere l'orario di %s" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "" + +#: src/head.c:257 src/tail.c:1390 +#, fuzzy +msgid "number of lines" +msgstr "numero di argomenti errato" + +#: src/head.c:257 src/tail.c:1391 +#, fuzzy +msgid "number of bytes" +msgstr "numero di argomenti errato" + +#: src/head.c:264 src/tail.c:1478 +#, fuzzy +msgid "invalid number of lines" +msgstr "numero %s non valido" + +#: src/head.c:265 src/tail.c:1479 +#, fuzzy +msgid "invalid number of bytes" +msgstr "numero %s non valido" + +#: src/head.c:341 +#, fuzzy, c-format +msgid "unrecognized option `-%c'" +msgstr "opzione %s non riconosciuta" + +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "" + +#: src/hostid.c:48 +#, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" +"Uso: %s\n" +" o: %s OPZIONE\n" +"Stampa l'identificativo numerico (in esadecimale) dell'host corrente.\n" +"\n" + +#: src/hostname.c:67 +#, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" +"Uso: %s [NOME]\n" +" o: %s OPZIONE\n" +"Stampa l'hostname del sistema.\n" +"\n" + +#: src/hostname.c:104 +#, c-format +msgid "cannot set hostname to `%s'" +msgstr "impossibile impostare l'hostname a `%s'" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "" +"impossibile impostare l'hostname; questo sistema non ha questa funzionalità" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "impossibile determinare l'hostname" + +#: src/id.c:36 +msgid "Arnold Robbins and David MacKenzie" +msgstr "Arnold Robbins and David MacKenzie" + +#: src/id.c:87 +#, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "Uso: %s [OPZIONE]... [NOMEUTENTE]\n" + +#: src/id.c:88 +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" +"Stampa informazioni su NOMEUTENTE o sull'utente corrente.\n" +"\n" +" -a ignorato, per compatibilità con altre versioni\n" +" -g, --group stampa solo l'ID del gruppo\n" +" -G, --groups stampa solo i gruppi supplementari\n" +" -n, --name stampa un nome invece di un numero, per -ugG\n" +" -r, --real stampa l'ID reale invece dell'ID efficace, per -ugG\n" +" -u, --user stampa solo l'ID dell'utente\n" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" +"\n" +"Senza alcuna OPZIONE, stampa alcune utili informazioni identificative.\n" + +#: src/id.c:162 +msgid "cannot print only user and only group" +msgstr "impossibile stampare solo l'utente e solo il gruppo" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "" +"impossibile stampare solo i nomi o gli ID reali nel formato predefinito" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "%s: Questo utente non esiste" + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "impossibile trovare il nome dell'utente con ID %u" + +#: src/id.c:235 +#, c-format +msgid "cannot find name for group ID %u" +msgstr "impossibile trovare il nome del gruppo con ID %u" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "impossibile ottenere la lista dei gruppi supplementari" + +#: src/id.c:385 +msgid " groups=" +msgstr " gruppi=" + +#: src/install.c:269 +msgid "the strip option may not be used when installing a directory" +msgstr "l'opzione strip non può essere usata per installare una directory" + +#: src/install.c:292 src/mkdir.c:140 +#, c-format +msgid "invalid mode %s" +msgstr "modo %s non valido" + +#: src/install.c:307 src/install.c:371 +#, c-format +msgid "creating directory %s" +msgstr "creazione della directory %s" + +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "" +"installazione di file multipli, ma l'ultimo argomento %s non è una directory" + +#: src/install.c:435 +#, c-format +msgid "%s is a directory" +msgstr "%s è una directory" + +#: src/install.c:495 +#, c-format +msgid "cannot obtain time stamps for %s" +msgstr "impossibile ottenere l'orario di %s" + +#: src/install.c:507 +#, c-format +msgid "cannot set time stamps for %s" +msgstr "impossibile impostare l'orario di %s" + +#: src/install.c:528 +msgid "fork system call failed" +msgstr "la chiamata di sistema fork è fallita" + +#: src/install.c:532 +msgid "cannot run strip" +msgstr "impossibile eseguire strip" + +#: src/install.c:539 +msgid "strip failed" +msgstr "strip fallito" + +#: src/install.c:560 +#, c-format +msgid "invalid user %s" +msgstr "utente %s non valido" + +#: src/install.c:578 +#, c-format +msgid "invalid group %s" +msgstr "gruppo %s non valido" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"Uso: %s [OPZIONE]... ORIGINE DEST (primo formato)\n" +" o: %s [OPZIONE]... ORIGINE... DIRECTORY (secondo formato)\n" +" o: %s -d [OPZIONE]... DIRECTORY (terzo formato)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" +"Nelle prime due forme copia ORIGINE in DEST o ORIGINE multipli nella " +"DIRECTORY\n" +"esistente, impostando contemporaneamente i permessi e il proprietario/" +"gruppo.\n" +"Nella terza forma crea tutti i componenti della/e DIRECTORY indicata/e.\n" +"\n" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" +" --backup=[CONTROL] fa un backup di ogni file di dest. esistente\n" +" -b come --backup ma non accetta un argomento\n" +" -c (ignorato)\n" +" -d, --directory tratta tutti gli argomenti come nomi di directory; " +"crea\n" +" tutti i componenti delle directory specificate\n" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" +" -D crea tutti i componenti di DEST tranne l'ultimo, poi\n" +" copia ORIGINE in DEST; utile nel primo formato\n" +" -g, --group=GRUPPO imposta il gruppo proprietario, invece dell'attuale\n" +" gruppo del processo\n" +" -m, --mode=PERMESSI imposta i PERMESSI (come in chmod) invece di rwxr-xr-" +"x\n" +"\"\" -o, --owner=PROPR imposta il proprietario (solo per il superuser)\n" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" +" -p, --preserve-timestamps applica le date di accesso/modifica dei file\n" +" di ORIGINE ai file di destinazione corrispondenti\n" +" -s, --strip fa lo strip della tabella dei simboli, solo per la\n" +" prima e la seconda forma\n" +" -S, --suffix=SUFF cambia il normale suffisso dei backup\n" +" -v, --verbose stampa il nome di ogni directory creata\n" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"\n" +"Il suffisso dei backup è ~, a meno che sia impostato con --suffix oppure\n" +"SIMPLE_BACKUP_SUFFIX. Il metodo di controllo di versione può essere scelto\n" +"con l'opzione --backup o la variabile di ambiente VERSION_CONTROL. I valori\n" +"sono:\n" +"\n" + +#: src/join.c:144 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "Uso: %s [OPZIONE]... [ FILE ]\n" + +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" + +#: src/join.c:165 +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" + +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" + +#: src/join.c:645 +#, fuzzy, c-format +msgid "invalid field specifier: `%s'" +msgstr "intervallo di tempo non valido: `%s'" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, fuzzy, c-format +msgid "invalid field number: `%s'" +msgstr "numero %s non valido" + +#: src/join.c:672 +#, fuzzy, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "intervallo di tempo non valido: `%s'" + +#: src/join.c:792 +#, fuzzy, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "intervallo di tempo non valido: `%s'" + +#: src/join.c:801 +#, fuzzy, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "intervallo di tempo non valido: `%s'" + +#: src/join.c:833 +#, fuzzy +msgid "too many non-option arguments" +msgstr "troppi argomenti che non sono opzioni: %s%s" + +#: src/join.c:855 +#, fuzzy +msgid "too few non-option arguments" +msgstr "troppi argomenti che non sono opzioni: %s%s" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" +"Uso: %s [-s SEGNALE | -SEGNALE] PID...\n" +" o: %s -l [SEGNALE]...\n" +" o: %s -t [SEGNALE]...\n" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" +"Manda segnali ai processi o elenca i segnali.\n" +"\n" + +#: src/kill.c:106 +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" +" -s, --signal SEGNALE, -SEGNALE Nome o numero del segnale da inviare.\n" +" -l, --list Elenca i nomi dei segnali.\n" +" -t, --table Stampa una tabella di informazioni sui\n" +" segnali.\n" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" +"\n" +"SEGNALE può essere il nome di un segnale come `HUP', il numero di un " +"segnale\n" +"come `1' oppure lo status di uscita di un processo terminato da un segnale.\n" +"PID è un intero; se è negativo indica un gruppo di processi.\n" + +#: src/kill.c:163 +#, c-format +msgid "%s: invalid signal" +msgstr "%s: segnale non valido" + +#: src/kill.c:262 +#, c-format +msgid "missing operand after `%s'" +msgstr "manca l'operando dopo `%s'" + +#: src/kill.c:274 +#, c-format +msgid "%s: invalid process id" +msgstr "%s: process id non valido" + +#: src/kill.c:327 +#, c-format +msgid "invalid option -- %c" +msgstr "opzione non valida -- %c" + +#: src/kill.c:336 +#, c-format +msgid "%s: multiple signals specified" +msgstr "%s: sono stati specificati segnali multipli" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "sono state specificate opzioni -l o -t multiple" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "non è possibile combinare i segnali con -l o -t" + +#: src/link.c:51 +#, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s FILE1 FILE2\n" +" o: %s OPZIONE\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" +"Chiama la funzione link per creare un link chiamato FILE2 a un FILE1 " +"esistente.\n" +"\n" + +#: src/link.c:98 +#, c-format +msgid "cannot create link %s to %s" +msgstr "impossibile creare il link %s a %s" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "Mike Parker e David MacKenzie" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "%s: attenzione: fare un hard link a un link simbolico non è portabile" + +#: src/ln.c:174 +#, c-format +msgid "%s: hard link not allowed for directory" +msgstr "%s: non è possibile fare un hard link a una directory" + +#: src/ln.c:246 +#, c-format +msgid "%s: cannot overwrite directory" +msgstr "%s: impossibile sovrascrivere una directory" + +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "%s: sostituire %s? " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: Il file esiste" + +#: src/ln.c:304 +#, c-format +msgid "create symbolic link %s to %s" +msgstr "crea il link simbolico %s a %s" + +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "crea un hard link %s a %s" + +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "creazione del link simbolico %s a %s" + +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "creazione dell'hard link %s a %s" + +#: src/ln.c:339 +#, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"Uso: %s [OPZIONE]... OBIETTIVO... [NOME_LINK]\n" +" o: %s [OPZIONE]... OBIETTIVO... DIRECTORY\n" +" o: %s [OPZIONE]... --target-directory=DIRECTORY OBIETTIVO...\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" +"Crea un link all'OBIETTIVO specificato con il NOME_LINK opzionale. Se " +"LINK_NAME\n" +"è omesso, un link con lo stesso nome dell'OBIETTIVO è creato nella " +"directory\n" +"\"\"corrente. Quando si usa la seconda forma con più di un OBIETTIVO, " +"l'ultimo\n" +"argomento deve essere una DIRECTORY; crea nella DIRECTORY un link a ogni\n" +"OBIETTIVO. Normalmente crea hard link, crea link simbolici con --symbolic.\n" +"Quando crea hard link, ogni OBIETTIVO deve esistere.\n" +"\n" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" +" --backup[=CONTROL] fa il backup di ogni file di destinazione " +"esistente\n" +" -b come --backup ma non accetta un argomento\n" +" -d, -F, --directory crea hard link alle directory (solo super-" +"user)\n" +" -f, --force rimuove i file di destinazione esistenti\n" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" +" -n, --no-dereference tratta ogni destinazione che è un link " +"simbolico\n" +" a una directory come se fosse un file " +"normale\n" +" -i, --interactive chiede se rimuovere le destinazioni\n" +" -s, --symbolic crea link simbolici invece che hard link\n" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" +" --target-directory=DIRECTORY specifica la DIRECTORY in cui creare i " +"link\n" +" -S, --suffix=SUFFISSO cambia il normale suffisso dei backup\n" +" -v, --verbose stampa il nome del file prima di fare il link\n" + +#: src/ln.c:521 +#, c-format +msgid "%s: specified target directory is not a directory" +msgstr "%s: la directory obiettivo specificata non è una directory" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "" +"quando si fanno link multipli l'ultimo argomento deve essere una directory" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "Uso: %s [OPZIONE]\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" +"Stampa il nome dell'utente corrente.\n" +"\n" + +#: src/logname.c:99 +#, c-format +msgid "%s: no login name\n" +msgstr "%s: non c'è un nome di login\n" + +#: src/ls.c:673 +msgid "%b %e %Y" +msgstr "%e %b %Y" + +#: src/ls.c:681 +msgid "%b %e %H:%M" +msgstr "%e %b %H:%M" + +#: src/ls.c:1307 +#, fuzzy, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "" +"ignoro il valore non valido della variabile di ambiente QUOTING_STYLE: %s" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "" +"ignorata la larghezza non valida nella variabile di ambiente COLUMNS: %s" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "" +"ignorata la larghezza di tabulazione non valida nella variabile di\n" +"ambiente TABSIZE: %s" + +#: src/ls.c:1482 +#, c-format +msgid "invalid line width: %s" +msgstr "larghezza delle righe non valida: %s" + +#: src/ls.c:1556 +#, c-format +msgid "invalid tab size: %s" +msgstr "dimensioni di tabulazione non valide: %s" + +#: src/ls.c:1722 +#, c-format +msgid "invalid time style format %s" +msgstr "formato dello stile di orario %s non valido" + +#: src/ls.c:2054 +#, c-format +msgid "unrecognized prefix: %s" +msgstr "prefisso non riconosciuto: %s" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "valore non interpretabile nella variabile di ambiente LS_COLORS" + +#: src/ls.c:2145 +#, c-format +msgid "cannot determine device and inode of %s" +msgstr "impossibile determinare il dispositivo e l'inode di %s" + +#: src/ls.c:2155 +#, c-format +msgid "not listing already-listed directory: %s" +msgstr "non elenco la directory già elencata %s" + +#: src/ls.c:2208 src/remove.c:929 +#, fuzzy, c-format +msgid "reading directory %s" +msgstr "creazione della directory %s" + +#: src/ls.c:2603 +#, c-format +msgid "cannot compare file names %s and %s" +msgstr "impossibile confrontare i nomi di file %s e %s" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" +"Elenca informazioni sui FILE (predefinito: la directory corrente).\n" +"Ordina alfabeticamente le voci se non è usato uno di -cftuSUX oppure --" +"sort.\n" +"\"\"\n" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" +" -a, --all non nasconde le voci che iniziano con .\n" +" -A, --almost-all non elenca le voci implicite . e ..\n" +" --author stampa l'autore di ogni file\n" +" -b, --escape stampa escape ottali per i caratteri non " +"grafici\n" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" +" --block-size=DIMENS usa blocchi lunghi DIMENS byte\n" +" -B, --ignore-backups non elenca le voci implicite che terminano con " +"~\n" +" -c con -lt: mostra e ordina secondo il ctime " +"(orario\n" +" di modifica delle informazioni di stato del\n" +" file); con -l: mostra il ctime e ordina " +"secondo\n" +" il nome; altrimenti: ordina secondo il ctime\n" + +#: src/ls.c:3784 +#, fuzzy +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" +" -C elenca le voci per colonne\n" +" --color[=QUANDO] controlla QUANDO bisogna colorare i file " +"secondo\n" +" il tipo. Può essere `never', `always' o " +"`auto'\n" +" -d, --directory elenca le voci di directory invece del " +"contenuto\n" +" -D, --dired genera output adatto al modo dired di Emacs\n" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" +" -f non ordina, abilita -aU, disabilita -lst\n" +" -F, --classify accoda un indicatore alle voci (uno di */=@|)\n" +" --format=TIPO across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time come -l --time-style=full-iso\n" + +#: src/ls.c:3799 +#, fuzzy +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" +" -g come -l, ma non elenca il proprietario\n" +" -G, --no-group inibisce la visualizzazione dei gruppi\n" +" -h, --human-readable stampa le dimensioni in formato leggibile (es: 1K, " +"2G)\n" +" --si idem, ma usa multipli di 1000 invece che di " +"1024\n" +" -H, --dereference-command-line segue i symlink sulla riga di comando\n" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" +" --indicator-style=TIPO accoda ai nomi l'indicatore con lo stile TIPO:\n" +" none (predef), classify (-F), file-type (-p)\n" +" -i, --inode stampa il numero d'indice di ogni file\n" +" -I, --ignore=MODELLO non elenca le voci implicite che soddisfano il\n" +" MODELLO della shell\n" +" -k come --block-size=1K\n" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" +" -l usa un formato di elenco lungo\n" +" -L, --dereference quando mostra le informazioni su un symlink,\n" +" mostra le informazioni sul file a cui si\n" +" riferisce invece che sul link stesso\n" +" -m elenca le voci separandole con virgole\n" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" +" -n, --numeric-uid-gid elenca gli UID e GID numerici al posto dei " +"nomi\n" +" -N, --literal stampa i nomi grezzi (es: non tratta in modo\n" +" speciale i caratteri di controllo)\n" +" -o usa un formato di elenco lungo senza i gruppi\n" +" -p, --file-type accoda un carattere secondo il tipo delle voci\n" + +#: src/ls.c:3831 +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -q, --hide-control-chars stampa ? al posto dei caratteri non grafici\n" +" --show-control-chars mostra i caratteri non grafici come sono " +"(predef.\n" +" a meno che il programma sia `ls' e l'output un " +"terminale)\n" +" -Q, --quote-name racchiude tra doppi apici i nomi delle voci\n" +" --quoting-style=TIPO usa lo stile TIPO con i nomi delle voci:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" +" -r, --reverse inverte il senso dell'ordinamento\n" +" -R, --recursive elenca ricorsivamente le subdirectory\n" +" -s, --size stampa le dimensioni in blocchi di ogni file\n" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" +" -S ordina secondo le dimensioni del file\n" +" --sort=TIPO extension -X, none -U, size -S, time -t, use -" +"u,\n" +" status -c, atime -u, access -u, version -v\n" +" --time=TIPO usa il TIPO di orario invece che quello di\n" +" modifica: atime, access, use, ctime o " +"status;\n" +"\"\" se --sort=time usa l'orario specificato " +"come\n" +" chiave di ordinamento\n" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" +" --time-style=STILE mostra gli orari usando lo STILE specificato:\n" +" full-iso, long-iso, iso, locale, +FORMATO\n" +" FORMATO è interpretato come da `date'; se è\n" +" FORMATO1FORMATO2, FORMATO1 è " +"applicato\n" +" ai file non recenti e FORMATO2 a quelli " +"recenti;\n" +" se STILE ha il prefisso `posix-' avrà effetto\n" +" solo fuori dal locale POSIX\n" +" -t ordina secondo l'orario di modifica\n" +" -T, --tabsize=COL i tab sono larghi COL colonne invece di 8\n" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" +" -u con -lt; mostra ed ordina secondo l'orario\n" +" di accesso; con -l mostra l'orario di " +"accesso\n" +"\"\" ed ordina per nome; altrimenti: ordina " +"secondo\n" +" l'orario di accesso\n" +" -U non ordina; elenca le voci nell'ordine della " +"dir.\n" +" -v ordina secondo la versione\n" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" +" -w, --width=COL lo schermo è largo COL invece del'attuale " +"valore\n" +" -x elenca le voci per righe invece che per " +"colonne\n" +"\"\" -X ordina alfabeticamente secondo le " +"estensioni\n" +" -1 elenca un file per riga\n" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" +"\n" +"L'impostazione predefinita è di non usare i colori differenziare i tipi di\n" +"file. Questo è equivalente a usare --color=none. L'uso dell'opzione --" +"color\n" +"\"\"senza l'argomento opzionale QUANDO è equivalente a usare --" +"color=always.\n" +"Con --color=auto i codici dei colori sono stampati solo se standard output " +"è\n" +"\"\"collegato a un terminale (tty).\n" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "" + +#: src/md5sum.c:431 +#, fuzzy +msgid "FAILED" +msgstr "INATTIVO" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "" + +#: src/md5sum.c:444 +#, fuzzy, c-format +msgid "%s: read error" +msgstr "errore di lettura" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "" + +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "" + +#: src/md5sum.c:473 +msgid "file" +msgstr "" + +#: src/md5sum.c:473 +msgid "files" +msgstr "" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" + +#: src/md5sum.c:572 +#, fuzzy +msgid "the --string and --check options are mutually exclusive" +msgstr "" +"le opzioni per specificare la stampa di date sono mutualmente esclusive" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "" + +#: src/md5sum.c:596 +#, fuzzy +msgid "no files may be specified when using --string" +msgstr "" +"non è stato indicato il nome di un utente; quando si usa -l bisogna " +"indicarne\n" +"almeno uno" + +#: src/md5sum.c:618 +#, fuzzy +msgid "only one argument may be specified when using --check" +msgstr "può essere specificato un solo dispositivo" + +#: src/mkdir.c:61 +#, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "Uso: %s [OPZIONE]... DIRECTORY...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" +"Crea la/le DIRECTORY, se non esistono già.\n" +"\n" + +#: src/mkdir.c:69 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +" -m, --mode=MODO imposta i permessi (come in chmod), non rwxrwxrwx - " +"umask\n" +" -p, --parents nessun errore se esiste, crea le dir. padre se " +"necessario\n" +" -v, --verbose stampa un messaggio per ogni directory creata\n" + +#: src/mkdir.c:113 +#, c-format +msgid "created directory %s" +msgstr "directory %s creata" + +#: src/mkdir.c:190 +#, c-format +msgid "cannot set permissions of directory %s" +msgstr "impossibile impostare i permessi della directory %s" + +#: src/mkfifo.c:55 +#, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "Uso: %s [OPZIONE]... NOME...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" +"Crea pipe con nome (FIFO) con il NOME dato.\n" +"\n" + +#: src/mkfifo.c:63 src/mknod.c:64 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" +" -m, --mode=MODO imposta i permessi (come in chmod), non a=rw - umask\n" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "i file fifo non sono gestiti" + +#: src/mkfifo.c:123 src/mknod.c:127 +msgid "invalid mode" +msgstr "modo non valido" + +#: src/mkfifo.c:142 +#, c-format +msgid "cannot set permissions of fifo %s" +msgstr "impossibile impostare i permessi del fifo %s" + +#: src/mknod.c:55 +#, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "Uso: %s [OPZIONE]... NOME TIPO [MAJOR MINOR]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" +"Crea il file speciale nome del TIPO dato.\n" +"\n" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" + +#: src/mknod.c:76 +#, fuzzy +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"\n" +"MAJOR e MINOR sono vietati per il TIPO p, altrimenti sono obbligatori.\n" +"Il TIPO può essere:\n" +"\n" +" b crea un file speciale a blocchi (bufferizzato)\n" +" c, u crea un file speciale a caratteri (non bufferizzato)\n" +" p crea un FIFO\n" + +#: src/mknod.c:141 +msgid "wrong number of arguments" +msgstr "numero di argomenti errato" + +#: src/mknod.c:153 +msgid "block special files not supported" +msgstr "i file speciali a blocchi non sono gestiti" + +#: src/mknod.c:162 +msgid "character special files not supported" +msgstr "i file speciali a caratteri non sono gestiti" + +#: src/mknod.c:171 +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" +"quando vengono creati file speciali, devono essere specificati i major e\n" +"minor numbers del dispositivo" + +#: src/mknod.c:186 +#, c-format +msgid "invalid major device number %s" +msgstr "major number del dispositivo %s non valido" + +#: src/mknod.c:191 +#, c-format +msgid "invalid minor device number %s" +msgstr "minor number del dispositivo %s non valido" + +#: src/mknod.c:196 +#, c-format +msgid "invalid device %s %s" +msgstr "dispositivo %s %s non valido" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "" +"i major e minor numbers del dispositivo non possono essere specificati per\n" +"i file FIFO" + +#: src/mknod.c:231 +#, c-format +msgid "cannot set permissions of %s" +msgstr "impossibile impostare i permessi di %s" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "Mike Parker, David MacKenzie, e Jim Meyering" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "Rinomina ORIGINE in DEST o sposta ORIGINE nella DIRECTORY.\n" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" +" --backup=[CONTROL] fa un backup prima della rimozione\n" +" -b come --backup ma non accetta un argomento\n" +" -f, --force rimuove le destinazioni esistenti senza\n" +" chiedere; equivale a --reply=yes\n" +" -i, --interactive chiede prima di sovrascrivere;\n" +" equivale a --reply=query\n" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" +" --reply={yes,no,query} specifica come gestire la domanda a " +"proposito\n" +" di un file di destinazione già esistente\n" +" --strip-trailing-slashes rimuove gli slash dalla fine di ogni " +"ORIGINE\n" +" -S, --suffix=SUFFISSO cambia il normale suffisso dei backup\n" + +#: src/mv.c:339 +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +" --target-directory=DIRECTORY sposta ogni ORIGINE nella DIRECTORY\n" +" -u, --update sposta solo quando ORIGINE è più recente del\n" +" file di destinazione o questo è mancante\n" +" -v, --verbose spiega cosa sta facendo\n" + +#: src/mv.c:467 +#, c-format +msgid "specified target, %s is not a directory" +msgstr "l'obiettivo specificato, %s, non è una directory" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "" +"quando vengono spostati più file l'ultimo argomento deve essere una directory" + +#: src/nice.c:67 +#, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "Uso: %s [OPZIONE] [[COMANDO [ARG]...]\n" + +#: src/nice.c:68 +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" +"Esegue il COMANDO con una priorità di scheduling modificata.\n" +"Se manca il COMANDO stampa la priorità di scheduling corrente. Il valore\n" +"predefinito per AGGIUSTAMENTO è 10. Il campo varia tra -20 (priorità\n" +"massima) e 19 (minima).\n" +"\n" +" -n, --adjustment=AGGIUSTAMENTO come -AGGIUSTAMENTO\n" + +#: src/nice.c:109 src/nice.c:122 +#, c-format +msgid "invalid option `%s'" +msgstr "opzione `%s' non valida" + +#: src/nice.c:147 +#, c-format +msgid "invalid priority `%s'" +msgstr "priorità `%s' non valida" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "un comando deve essere specificato con un aggiustamento" + +#: src/nice.c:178 src/nice.c:187 +msgid "cannot get priority" +msgstr "impossibile determinare la priorità" + +#: src/nice.c:192 +msgid "cannot set priority" +msgstr "impossibile impostare la priorità" + +#: src/nl.c:39 +#, fuzzy +msgid "Scott Bartram and David MacKenzie" +msgstr "Richard Stallman e David MacKenzie" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" + +#: src/nl.c:504 +#, fuzzy, c-format +msgid "invalid starting line number: `%s'" +msgstr "major number del dispositivo %s non valido" + +#: src/nl.c:514 +#, fuzzy, c-format +msgid "invalid line number increment: `%s'" +msgstr "argomento intero `%s' non valido" + +#: src/nl.c:527 +#, fuzzy, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "%s: numero di passi non valido" + +#: src/nl.c:541 +#, fuzzy, c-format +msgid "invalid line number field width: `%s'" +msgstr "larghezza delle righe non valida: %s" + +#: src/od.c:287 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"Uso: %s [OPZIONE]... GRUPPO FILE...\n" +" o: %s [OPZIONE]... --reference=RFILE FILE...\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/od.c:299 +#, fuzzy +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "" +"#-#-#-#-# trans-it.po (sh-utils 2.0.13) #-#-#-#-#\n" +"Gli argomenti obbligatori per le opzioni lunghe lo sono anche per quelle " +"brevi.\n" +"#-#-#-#-# trans-it.po (fileutils 4.1.11) #-#-#-#-#\n" +"Gli argomenti obbligatori per le opzioni lunghe lo sono anche per quelle " +"corte.\n" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" + +#: src/od.c:722 src/od.c:844 +#, fuzzy, c-format +msgid "invalid type string `%s'" +msgstr "stringa di formato non valida: `%s'" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" + +#: src/od.c:917 +#, fuzzy, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "carattere %s non valido nella stringa di modo %s" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "" + +#: src/od.c:1717 +#, fuzzy +msgid "skip argument" +msgstr "manca il file argomento" + +#: src/od.c:1725 +#, fuzzy +msgid "limit argument" +msgstr "" +"#-#-#-#-# trans-it.po (sh-utils 2.0.13) #-#-#-#-#\n" +"Gli argomenti validi sono:\n" +"#-#-#-#-# trans-it.po (fileutils 4.1.11) #-#-#-#-#\n" +"Sono caratteri validi:" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "" + +#: src/od.c:1740 src/od.c:1806 +#, fuzzy, c-format +msgid "%s is too large" +msgstr "%s: file troppo grande" + +#: src/od.c:1804 +msgid "width specification" +msgstr "" + +#: src/od.c:1826 +#, fuzzy +msgid "no type may be specified when dumping strings" +msgstr "" +"la stringa di formato non può essere specificata quando si stampano " +"stringhe\n" +"a ugual larghezza" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "" + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "" + +#: src/paste.c:50 +#, fuzzy +msgid "David M. Ihnat and David MacKenzie" +msgstr "Richard Mlynarik and David MacKenzie" + +#: src/paste.c:208 +#, fuzzy +msgid "standard input is closed" +msgstr "standard input" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" + +#: src/pathchk.c:146 +#, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "Uso: %s [OPZIONE]... NOME...\n" + +#: src/pathchk.c:147 +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" +"Diagnostica costrutti non portabili nel NOME\n" +"\n" +" -p, --portability verifica per tutti i sistemi POSIX, non solo per " +"questo\n" + +#: src/pathchk.c:237 +#, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "il percorso `%s' contiene il carattere non portabile `%c'" + +#: src/pathchk.c:257 +#, c-format +msgid "`%s' is not a directory" +msgstr "`%s' non è una directory" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "la directory `%s' non è leggibile" + +#: src/pathchk.c:355 +#, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "il nome `%s' è lungo %ld; supera il limite di %ld" + +#: src/pathchk.c:381 +#, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "il percorso `%s' è lungo %d; supera il limite di %ld" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "Nome di login: " + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "Nella vita reale: " + +#: src/pinky.c:298 +msgid "???\n" +msgstr "???\n" + +#: src/pinky.c:318 +msgid "Directory: " +msgstr "Directory: " + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "Shell: " + +#: src/pinky.c:341 +msgid "Project: " +msgstr "Project: " + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "Plan:\n" + +#: src/pinky.c:386 +msgid "Login" +msgstr "Login" + +#: src/pinky.c:388 +#, fuzzy +msgid "Name" +msgstr " Nome" + +#: src/pinky.c:389 +#, fuzzy +msgid " TTY" +msgstr "TTY" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "Inatt." + +#: src/pinky.c:392 +msgid "When" +msgstr "Quando" + +#: src/pinky.c:395 +msgid "Where" +msgstr "Dove" + +#: src/pinky.c:469 +#, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "Uso: %s [OPZIONE]... [UTENTE]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" +"\n" +" -l usa il formato di output lungo per gli UTENTI indicati\n" +" -b omette l'home directory e la shell nel formato lungo\n" +" -h omette il file project dell'utente nel formato lungo\n" +" -p omette il file plan dell'utente nel formato lungo\n" +" -s usa il formato breve, è l'opzione predefinita\n" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" +" -f omette l'intestazione delle colonne nel formato breve\n" +" -w omette il nome completo dell'utente nel formato breve\n" +" -i omette il nome completo e l'host remoto nel formato breve\n" +" -q omette il nome completo, l'host remoto e il tempo di\n" +" inattività nel formato breve\n" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" +"\n" +"Una versione leggera di `finger'; stampa informazioni sugli utenti.\n" +"Il file utmp sarà %s.\n" + +#: src/pinky.c:574 +msgid "no username specified; at least one must be specified when using -l" +msgstr "" +"non è stato indicato il nome di un utente; quando si usa -l bisogna " +"indicarne\n" +"almeno uno" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "" + +#: src/pr.c:805 +#, fuzzy, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "numero del gruppo non valido %s" + +#: src/pr.c:817 +#, fuzzy, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "argomento in virgola mobile non valido: %s" + +#: src/pr.c:829 +#, fuzzy, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "argomento intero `%s' non valido" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "" + +#: src/pr.c:1000 +#, fuzzy, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "minor number del dispositivo %s non valido" + +#: src/pr.c:1012 +#, fuzzy, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "larghezza delle righe non valida: %s" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "" + +#: src/pr.c:1079 +#, fuzzy +msgid "%b %e %H:%M %Y" +msgstr "%e %b %H:%M" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "" + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "" + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr "" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" + +#: src/printenv.c:43 +msgid "David MacKenzie and Richard Mlynarik" +msgstr "David MacKenzie and Richard Mlynarik" + +#: src/printenv.c:63 +#, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" +"Uso: %s [VARIABILE]...\n" +" o: %s OPZIONE\n" +"Se non è specificata alcuna VARIABILE di ambiente le stampa tutte.\n" +"\n" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "" +"attenzione: %s: i caratteri che seguono la costante carattere sono stati\n" +"ignorati" + +#: src/printf.c:100 +#, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s FORMATO [ARGOMENTO]...\n" +" o: %s OPZIONE\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" +"Stampa gli ARGOMENTI secondo il FORMATO.\n" +"\n" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" +"\n" +"FORMATO controlla l'output come in printf del C. Le sequenze interpretate\n" +"sono:\n" +"\n" +" \\\" doppie virgolette\n" +" \\0NNN carattere il cui valore ottale è NNN (da 0 a 3 cifre)\n" +" \\\\ backslash\n" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" +" \\a avviso (BEL)\n" +" \\b backspace\n" +" \\c non produce ulteriore output\n" +" \\f form feed\n" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\n new line\n" +" \\r carriage return\n" +" \\t tab orizzontale\n" +" \\v tab verticale\n" + +#: src/printf.c:131 +#, fuzzy +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" +" \\xNNN byte il cui valore esadecimale è NNN (da 1 a 3 cifre)\n" +"\n" +" \\uNNNN carattere il cui valore esadecimale è NNNM (4 cifre)\n" +" \\UNNNNNNNN carattere il cui valore esadecimale è NNNMNNNM (8 cifre)\n" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" +" %% un unico %\n" +" %b ARGOMENTO è una stringa con le sequenze di escape `\\\\' " +"interpretate\n" +"\n" +"e tutte le specifiche di formato C che finiscano con uno dei caratteri\n" +"diouxXfeEgGcs, convertendo prima l'ARGOMENTO nel tipo appropriato.\n" +"Sono gestite le dimensioni variabili.\n" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "%s: aspetta un valore numerico" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "%s: valore non completamente convertito" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "manca il numero esadecimale nella sequenza di escape" + +#: src/printf.c:292 +#, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "nome del set di caratteri universale \\\\%c%0*x non valido" + +#: src/printf.c:472 +#, fuzzy, c-format +msgid "invalid field width: %s" +msgstr "larghezza delle righe non valida: %s" + +#: src/printf.c:498 +#, fuzzy, c-format +msgid "invalid precision: %s" +msgstr "conversione non valida: %s" + +#: src/printf.c:519 +#, c-format +msgid "%%%c: invalid directive" +msgstr "%%%c: direttiva non valida" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "Uso: %s formato [argomento...]\n" + +#: src/printf.c:594 +#, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "" +"attenzione: gli argomenti in eccesso sono stati ignorati, a partire da `%s'" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "" + +#: src/ptx.c:1859 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"Uso: %s [OPZIONE]... ULTIMO\n" +" o: %s [OPZIONE]... PRIMO ULTIMO\n" +" o: %s [OPZIONE]... PRIMO INCREMENTO ULTIMO\n" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" +"Stampa il nome file completo dell'attuale directory di lavoro.\n" +"\n" + +#: src/pwd.c:74 +msgid "ignoring non-option arguments" +msgstr "gli argomenti che non sono opzioni sono stati ignorati" + +#: src/pwd.c:78 +msgid "cannot get current directory" +msgstr "impossibile determinare la directory corrente" + +#: src/readlink.c:69 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "Uso: %s [OPZIONE]... [FILE]...\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" + +#: src/remove.c:394 +#, c-format +msgid "cannot chdir from %s to .." +msgstr "impossibile fare chdir da %s a .." + +#: src/remove.c:407 src/remove.c:488 +#, c-format +msgid "cannot lstat `.' in %s" +msgstr "impossibile fare lstat di `.' in %s" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "%s ha cambiato dispositivo/inode" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, c-format +msgid "cannot lstat %s" +msgstr "impossibile fare lstat di %s" + +#: src/remove.c:603 +#, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "%s: entrare nella directory protetta dalla scrittura %s? " + +#: src/remove.c:604 +#, c-format +msgid "%s: descend into directory %s? " +msgstr "%s: entrare nella directory %s? " + +#: src/remove.c:614 +#, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: rimuovere il %s protetto dalla scrittura %s? " + +#: src/remove.c:615 +#, c-format +msgid "%s: remove %s %s? " +msgstr "%s: rimuovere %s %s? " + +#: src/remove.c:639 +#, c-format +msgid "removed %s\n" +msgstr "%s rimosso\n" + +#: src/remove.c:654 src/remove.c:1059 +#, c-format +msgid "removed directory: %s\n" +msgstr "directory rimossa: %s\n" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, c-format +msgid "cannot remove directory %s" +msgstr "impossibile rimuovere la directory %s" + +#: src/remove.c:815 +#, c-format +msgid "cannot open directory %s" +msgstr "impossibile aprire la directory %s" + +#: src/remove.c:896 src/remove.c:1002 +#, c-format +msgid "cannot chdir from %s to %s" +msgstr "impossibile fare chdir da %s in %s" + +#: src/remove.c:904 +#, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +"ATTENZIONE: struttura di directory circolare.\n" +"Questo significa quasi sicuramente che il file system è danneggiato.\n" +"INFORMA IL TUO AMMINISTRATORE DI SISTEMA.\n" +"La seguente directory è parte del ciclo:\n" +" %s\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "impossibile rimuovere `.' o `..'" + +#: src/rm.c:60 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "Mike Parker, David MacKenzie, e Jim Meyering" + +#: src/rm.c:99 src/touch.c:244 +#, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "Uso: %s [OPZIONE]... FILE...\n" + +#: src/rm.c:100 +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Rimuove (con unlink) il/i FILE.\n" +"\n" +" -d, --directory fa unlink della directory, anche se non è vuota\n" +" (solo per il super-user)\n" +" -f, --force ignora i file non esistenti, non chiede mai " +"conferma\n" +" -i, --interactive chiede conferma prima di ogni cancellazione\n" +" -r, -R, --recursive rimuove ricorsivamente il contenuto delle directory\n" +" -v, --verbose spiega cosa sta facendo\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" +"\n" +"Per rimuovere un file il cui nome inizia con `-', per esempio `-foo',\n" +"usare uno di questi comandi:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" +"\n" +"Notare che se si usa rm per rimuovere un file, di solito è impossibile\n" +"recuperarne il contenuto. Se si vogliono maggiori garanzie che il contenuto\n" +"sia veramente irrecuperabile si valuti l'uso di shred.\n" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, c-format +msgid "removing directory, %s" +msgstr "rimuovere la directory `%s'? " + +#: src/rmdir.c:146 +#, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "Uso: %s [OPZIONE]... DIRECTORY...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" +"Rimuove le DIRECTORY, se vuote.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignora ogni errore causato dal solo fatto che la " +"directory\n" +" non è vuota\n" + +#: src/rmdir.c:154 +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +" -p, --parents rimuove la DIRECTORY, poi prova a rimuovere ogni " +"directory\n" +" che compone il nome di questo percorso. Per esempio,\n" +" `rmdir -p a/b/c' è simile a `rmdir a/b/c a/b a'.\n" +" -v, --verbose mostra un diagnostico per ogni directory processata\n" + +#: src/seq.c:82 +#, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"Uso: %s [OPZIONE]... ULTIMO\n" +" o: %s [OPZIONE]... PRIMO ULTIMO\n" +" o: %s [OPZIONE]... PRIMO INCREMENTO ULTIMO\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" +"Stampa i numeri dal PRIMO all'ULTIMO con passo INCREMENTO.\n" +"\n" +" -f, --formato FORMATO usa lo stile di printf(3) per FORMATO (pred. %" +"g)\n" +" -s, --separator STRINGA usa STRINGA per separare i numeri (pred. \\n)\n" +" -w, --equal-width uguaglia le larghezze aggiungendo zeri " +"iniziali\n" + +#: src/seq.c:96 +#, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" +"\n" +"Se PRIMO o INCREMENTO sono omessi, il valore predefinito è 1.\n" +"PRIMO, ULTIMO e INCREMENTO sono interpretati come valori in virgola mobile.\n" +"INCREMENTO deve essere positivo se PRIMO è minore di ULTIMO, altrimenti\n" +"negativo. Quando specificato, l'argomento FORMATO deve contenere uno e uno\n" +"solo dei formati di output in virgola mobile in stile printf %e, %f o %g.\n" + +#: src/seq.c:119 +#, c-format +msgid "invalid floating point argument: %s" +msgstr "argomento in virgola mobile non valido: %s" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" +"quando il valore d'inizio è maggiore del limite,\n" +"l'incremento dev'essere negativo" + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" +"quando il valore d'inizio è minore del limite,\n" +"l'incremento dev'essere positivo" + +#: src/seq.c:423 +#, c-format +msgid "invalid format string: `%s'" +msgstr "stringa di formato non valida: `%s'" + +#: src/seq.c:445 +msgid "format string may not be specified when printing equal width strings" +msgstr "" +"la stringa di formato non può essere specificata quando si stampano " +"stringhe\n" +"a ugual larghezza" + +#: src/shred.c:160 +#, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "Uso: %s [OPZIONI] FILE [...]\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" +"Sovrascrive ripetutamente i FILE specificati in modo da rendere più " +"difficile\n" +"recuperare i dati anche con indagini hardware molto costose.\n" +"\n" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" +" -f, --force se necessario cambia i permessi per permettere la " +"scrittura\n" +" -n, --iterations=N sovrascrive N volte invece che le %d predefinite\n" +" -s, --size=N distrugge solo N byte (sono accettati suffissi come K, M e " +"G)\n" + +#: src/shred.c:174 +#, fuzzy +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" +" -u, --remove tronca e rimuove il file dopo la sovrascrittura\n" +" -v, --verbose indica il progresso\n" +" -x, --exact non arrotonda le dimensioni dei file fino all'intero " +"blocco\n" +"\"\" -z, --zero aggiunge una sovrascrittura finale con zeri per " +"nascondere\n" +" la distruzione\n" +" - distrugge lo standard input\n" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" +"\n" +"Cancella i file solo se è specificato --remove (-u). È predefinito non " +"farlo\n" +"\"\"perché è normale operare su file di device come /dev/hda, che " +"normalmente non\n" +"devono essere rimossi. Quando si opera su file normali, la maggior parte " +"delle\n" +"persone usano l'opzione --remove.\n" +"\n" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" +"ATTENZIONE: ricordare che shred si basa su una importante supposizione, " +"cioè\n" +"\"\"che il filesystem sovrascriva i dati dove stanno. Questo è il metodo\n" +"tradizionale, ma molti filesystem progettati modernamente non soddisfano\n" +"questa supposizione.\n" +"Questi sono esempi di file system su cui shred non ha effetto:\n" +"\n" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" +"* filesystem con logging o journaling come quelli forniti con AIX e Solaris\n" +" (e JFS, ReiserFS, XFS, ext3, ecc...)\n" +"\n" +"* filesystem che scrivono dati ridondanti e continuano a scrivere anche se\n" +" alcune scritture falliscono, come i file system basati su RAID\n" +"\n" +"* filesystem che fanno snapshot, come quello dei server NFS di Network\n" +" Appliance\n" +"\n" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" +"* filesystem che hanno cache temporanee, come i client NFS 3\n" +"\n" +"* filesystem compressi\n" +"Inoltre, i backup dei file system e i mirror remoti possono contenere copie\n" +"dei file impossibili da rimuovere e che permetterebbero di recuperare un\n" +"file distrutto.\n" + +#: src/shred.c:808 +#, c-format +msgid "%s: cannot rewind" +msgstr "%s: impossibile riavvolgere" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "%s: passo %lu/%lu (%s)..." + +#: src/shred.c:868 +#, c-format +msgid "%s: error writing at offset %s" +msgstr "%s: errore di scrittura all'offset %s" + +#: src/shred.c:897 +#, c-format +msgid "%s: file too large" +msgstr "%s: file troppo grande" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "%s: passo %lu/%lu (%s)...%s" + +#: src/shred.c:936 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "%s: passo %lu/%lu (%s)...%s/%s %d%%" + +#: src/shred.c:1195 +#, c-format +msgid "%s: invalid file type" +msgstr "%s: tipo di file non valido" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s: il file ha dimensioni negative" + +#: src/shred.c:1265 +#, c-format +msgid "%s: error truncating" +msgstr "%s: errore durante il troncamento" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "%s: impossibile distruggere un descrittore di file append only" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "%s: rimozione" + +#: src/shred.c:1412 +#, c-format +msgid "%s: renamed to %s" +msgstr "%s: rinominato in %s" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s: rimosso" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "%s: impossibile rimuoverlo" + +#: src/shred.c:1551 +#, c-format +msgid "%s: invalid number of passes" +msgstr "%s: numero di passi non valido" + +#: src/shred.c:1568 +#, c-format +msgid "%s: invalid file size" +msgstr "%s: dimensione del file non valida" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "Jim Meyering and Paul Eggert" + +#: src/sleep.c:52 +#, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" +"Uso: %s NUMERO[SUFFISSO]...\n" +" o: %s OPZIONE\n" +"Fa una pausa di NUMERO secondi. SUFFISSO può essere `s' per secondi " +"(predef.),\n" +"`m' per minuti, `h' per ore o `d' per giorni. Diversamente dalla maggior " +"parte\n" +"delle altre implementazioni, che richiedono che NUMERO sia un intero, qui " +"può\n" +"essere un numero in virgola mobile arbitrario.\n" +"\n" + +#: src/sleep.c:155 +#, c-format +msgid "invalid time interval `%s'" +msgstr "intervallo di tempo non valido: `%s'" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "impossibile leggere l'orologio realtime" + +#: src/sort.c:53 +#, fuzzy +msgid "Mike Haertel and Paul Eggert" +msgstr "Jim Meyering and Paul Eggert" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" + +#: src/sort.c:444 +#, fuzzy +msgid "cannot create temporary file" +msgstr "impossibile creare il file normale %s" + +#: src/sort.c:467 +#, fuzzy +msgid "open failed" +msgstr "strip fallito" + +#: src/sort.c:487 src/sort.c:2496 +#, fuzzy +msgid "close failed" +msgstr "strip fallito" + +#: src/sort.c:495 +#, fuzzy +msgid "write failed" +msgstr "strip fallito" + +#: src/sort.c:641 +#, fuzzy +msgid "sort size" +msgstr "" +"#-#-#-#-# trans-it.po (sh-utils 2.0.13) #-#-#-#-#\n" +"dimensioni del blocco\n" +"#-#-#-#-# trans-it.po (fileutils 4.1.11) #-#-#-#-#\n" +"dimensioni dei blocchi" + +#: src/sort.c:715 +#, fuzzy +msgid "stat failed" +msgstr "strip fallito" + +#: src/sort.c:972 +#, fuzzy +msgid "read failed" +msgstr "strip fallito" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "" + +#: src/sort.c:1574 +#, fuzzy +msgid "standard error" +msgstr "errore di sintassi" + +#: src/sort.c:2032 +#, fuzzy, c-format +msgid "%s: invalid field specification `%s'" +msgstr "opzione `%s' non valida" + +#: src/sort.c:2058 +#, fuzzy, c-format +msgid "%s: count `%.*s' too large" +msgstr "%s: file troppo grande" + +#: src/sort.c:2064 +#, fuzzy, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "stringa di formato non valida: `%s'" + +#: src/sort.c:2298 +#, fuzzy +msgid "invalid number after `-'" +msgstr "numero %s non valido" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +#, fuzzy +msgid "invalid number after `.'" +msgstr "numero %s non valido" + +#: src/sort.c:2304 src/sort.c:2383 +#, fuzzy +msgid "stray character in field spec" +msgstr "" +"#-#-#-#-# trans-it.po (sh-utils 2.0.13) #-#-#-#-#\n" +"file speciale a caratteri\n" +"#-#-#-#-# trans-it.po (fileutils 4.1.11) #-#-#-#-#\n" +"file speciali a caratteri" + +#: src/sort.c:2338 +#, fuzzy +msgid "invalid number at field start" +msgstr "numero %s non valido" + +#: src/sort.c:2342 src/sort.c:2370 +#, fuzzy +msgid "field number is zero" +msgstr "numero %s non valido" + +#: src/sort.c:2351 +#, fuzzy +msgid "character offset is zero" +msgstr "" +"#-#-#-#-# trans-it.po (sh-utils 2.0.13) #-#-#-#-#\n" +"file speciale a caratteri\n" +"#-#-#-#-# trans-it.po (fileutils 4.1.11) #-#-#-#-#\n" +"file speciali a caratteri" + +#: src/sort.c:2366 +#, fuzzy +msgid "invalid number after `,'" +msgstr "numero %s non valido" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "" + +#: src/split.c:96 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "Uso: %s [OPZIONE]... [ FILE ]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" + +#: src/split.c:108 +#, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "" + +#: src/split.c:189 +#, fuzzy, c-format +msgid "creating file `%s'\n" +msgstr "creazione di %s" + +#: src/split.c:341 +#, fuzzy +msgid "cannot split in more than one way" +msgstr "impossibile specificare l'orario da più di una fonte" + +#: src/split.c:394 +#, fuzzy, c-format +msgid "%s: invalid suffix length" +msgstr "%s: tipo di file non valido" + +#: src/split.c:408 src/split.c:434 +#, fuzzy, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: numero di passi non valido" + +#: src/split.c:421 +#, fuzzy, c-format +msgid "%s: invalid number of lines" +msgstr "%s: numero di passi non valido" + +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "" + +#: src/split.c:483 +#, fuzzy +msgid "invalid number" +msgstr "numero %s non valido" + +#: src/stat.c:326 +#, fuzzy +msgid "*** invalid date/time ***" +msgstr "data `%s' non valida" + +#: src/stat.c:608 +#, c-format +msgid "cannot read file system information for %s" +msgstr "impossibile leggere le informazioni del file system per %s" + +#: src/stat.c:684 +#, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "Uso: %s [OPZIONE] FILE...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" +"Mostra lo stato di un file o filesystem\n" +"\n" +" -f, --filesystem mostra lo stato del filesystem invece che del file\n" +" -c --format=FORMATO usa il FORMATO indicato invece di quello " +"predefinito\n" +" -l, --link segue i link\n" +" -t, --terse stampa le informazioni in forma sintetica\n" + +#: src/stat.c:696 +#, fuzzy +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" +"\n" +"Sequenze di formato valide per i file (senza --filesystem):\n" +"\n" +" %A - Diritti di accesso in formato leggibile\n" +" %a - Diritti di accesso in formato ottale\n" +" %b - Numero di blocchi allocati\n" + +#: src/stat.c:704 +#, fuzzy +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" +" %D - Numero del device in esadecimale\n" +" %d - Numero del device in decimale\n" +" %F - Tipo di file\n" +" %f - Modo grezzo in esadecimale\n" +" %G - Nome del gruppo del proprietario\n" +" %g - ID del gruppo del proprietario\n" + +#: src/stat.c:712 +#, fuzzy +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" +" %h - Numero di hard link\n" +" %i - Numero di inode\n" +" %N - Nome del file protetto e dereferenziato se è un link simbolico\n" +" %n - Nome del file\n" +" %o - Dimensioni dei blocchi di IO\n" +" %s - Dimensioni totali, in byte\n" +" %T - Minor number del device in esadecimale\n" +" %t - Major number del device in esadecimale\n" + +#: src/stat.c:722 +#, fuzzy +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" +" %U - User name del proprietario\n" +" %u - User ID del proprietario\n" +" %X - Orario dell'ultimo accesso in secondi dall'Epoca\n" +" %x - Orario dell'ultimo accesso\n" +" %Y - Orario dell'ultima modifica in secondi dall'Epoca\n" +" %y - Orario dell'ultima modifica\n" +" %Z - Orario dell'ultimo cambiamento in secondi dall'Epoca\n" +" %z - Orario dell'ultimo cambiamento\n" +"\n" + +#: src/stat.c:734 +#, fuzzy +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" +"Sequenze di formato valide per i filesystem:\n" +"\n" +" %a - Blocchi liberi disponibili ai non-superuser\n" +" %b - Numero totale di blocchi di dati nel filesystem\n" +" %c - Numero totale di inode nel file system\n" +" %d - Numero di inode liberi nel file system\n" +" %f - Numero di blocchi liberi file system\n" + +#: src/stat.c:743 +#, fuzzy +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" +" %i - ID del File System in esadecimale\n" +" %l - Lunghezza massima dei nomi dei file\n" +" %n - Nome del file\n" +" %s - Dimensione ottimale dei blocchi per il trasferimento\n" +" %T - Tipo in formato leggibile\n" +" %t - Tipo in esadecimale\n" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" +"Uso: %s [-F DEVICE] [--file=DEVICE] [IMPOSTAZIONE]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" + +#: src/stty.c:504 +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" +"Stampa o modifica le caratteristiche del terminale.\n" +"\n" +" -a, --all stampa tutte le impostazioni correnti in un formato\n" +" comprensibile\n" +" -g, --save stampa tutte le impostazioni correnti in un formato\n" +" leggibile da stty\n" +" -F, --file=DEVICE apre e usa il device specificato invece di stdin\n" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" +"\n" +"Un - opzionale prima di un'IMPOSTAZIONE indica la negazione. Un * indica le\n" +"impostazioni non POSIX. Il sistema sottostante definisce quali impostazioni\n" +"sono disponibili.\n" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" +"\n" +"Caratteri speciali:\n" +" * dsusp CAR CAR invierà un segnale di stop del terminale dopo il flush\n" +" dell'input\n" +" eof CAR CAR invierà un end of file (termina l'input)\n" +" eol CAR CAR terminerà la riga\n" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" +" * eol2 CAR CAR alternativo per terminare la riga\n" +" erase CAR CAR cancellerà l'ultimo carattere digitato\n" +" intr CAR CAR invierà un signale di interrupt\n" +" kill CAR CAR cancellerà la riga corrente\n" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" +" * lnext CAR CAR inserirà il CARattere successivo in modo letterale\n" +" quit CAR CAR invierà un segnale di quit\n" +" * rprnt CAR CAR ridisegnerà la riga corrente\n" +" start CAR CAR farà ripartire l'input dopo averlo fermato\n" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" +" stop CAR CAR fermerà l'output\n" +" susp CAR CAR invierà il segnale di stop del terminale\n" +" * swtch CAR CAR passerà ad un diverso livello di shell\n" +" * werase CAR CAR cancellerà l'ultima parola digitata\n" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" +"\n" +"Impostazioni speciali:\n" +" N imposta a N baud le velocità di input e output\n" +" * cols N dice al kernel che il terminale ha N colonne\n" +" * columns N come cols N\n" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" +" ispeed N imposta a N la velocità di input\n" +"* line N usa la disciplina di linea N\n" +" min N con -icanon, imposta a N il mimimo dei caratteri per\n" +" completare una lettura\n" +" ospeed N imposta a N la velocità di output\n" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" +" * rows N dice al kernel che il terminale ha N righe\n" +" * size stampa il numero di righe e colonne secondo il kernel\n" +" speed stampa la velocità del terminale\n" +" time N con -icanon, imposta a N decimi di secondo il timeout in " +"lettura\n" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" +"\n" +"Impostazioni di controllo:\n" +"\n" +" [-]clocal disabilita i segnali di controllo del modem\n" +" [-]cread permette la ricezione dell'input\n" +" * [-]crtscts abilita l'handshaking RTS/CTS\n" +" csN imposta a N bit la dimensione dei caratteri, N tra 5 e 8\n" + +#: src/stty.c:570 +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" +" [-]cstopb usa due bit di stop per carattere (uno con `-')\n" +" [-]hup invia un signal di hangup quando l'ultimo processo chiude\n" +" il tty\n" +" [-]hupcl come [-]hup\n" +" [-]parenb genera un bit di parità in output e aspetta un bit di " +"parità\n" +" in input\n" +" [-]parodd imposta la parità dispari (pari con `-')\n" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" +"\n" +"Impostazioni dell'input:\n" +"\n" +" [-]brkint i break causano un segnale di interrupt\n" +" [-]icrnl converte carriage return in newline\n" +" [-]ignbrk ignora i caratteri di break\n" +" [-]igncr ignora carriage return\n" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" +" [-]ignpar ignora i caratteri con errori di parità\n" +" * [-]imaxbel fa un beep e non fa il flush quando il buffer di input\n" +" completo riceve un carattere\n" +" [-]inlcr converte newline in carriage return\n" +" [-]inpck abilita il controllo di parità sull'input\n" +" [-]istrip azzera il bit più alto (l'ottavo) dei caratteri di input\n" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" +" * [-]iuclc converte i caratteri maiuscoli in minuscoli\n" +" * [-]ixany permette a qualsiasi carattere di far ripartire l'output,\n" +" non solo al carattere di start\n" +" [-]ixoff abilita l'invio dei caratteri di start/stop\n" +" [-]ixon abilita il controllo di flusso XON/XOFF\n" +" [-]parmrk indica gli errori di parità (con una sequenza 255-0-" +"carattere)\n" +" [-]tandem come [-]ixoff\n" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" +"\n" +"Impostazioni dell'output:\n" +" * bsN stile del ritardo di backspace, N in [0..1]\n" +" * crN stile del ritardo di carriage return, N in [0..3]\n" +" * ffN stile del ritardo di form feed, N in [0..1]\n" +" * nlN stile del ritardo di newline, N in [0..1]\n" + +#: src/stty.c:608 +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" +" * [-]ocrnl converte carriage return in newline\n" +" * [-]ofdel usa per il riempimento caratteri di delete invece di null\n" +" * [-]ofill usa caratteri di riempimento (padding) invece di\n" +" temporizzazioni per i ritardi\n" +" * [-]olcuc converte i caratteri minuscoli in maiuscoli\n" +" * [-]onlcr converte newline in carriage return-newline\n" +" * [-]onlret newline esegue un carriage return\n" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" +" * [-]onocr non stampa i carriage return nella prima colonna\n" +" [-]opost postprocessa l'output\n" +" * tabN stile del ritardo del tab orizzontale, N in [0..3]\n" +" * tabs come tab0\n" +" * -tabs come tab3\n" +" * vtN stile del ritardo del tab verticale, N in [0..1]\n" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" +"\n" +"Impostazioni locali:\n" +" [-]crterase fa l'echo dei caratteri di erase come\n" +" backspace-spazio-backspace\n" +" * crtkill cancella tutte le righe obbedendo alle impostazioni\n" +" echoprt e echoe\n" +" * -crtkill cancella tutte le righe obbedendo alle impostazioni\n" +" echoctl e echok\n" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" +" * [-]ctlecho fa l'echo dei caratteri di controllo nella notazione `^c'\n" +" [-]echo fa l'echo dei caratteri in input\n" +" * [-]echoctl come [-]ctlecho\n" +" [-]echoe come [-]crterase\n" +" [-]echok fa l'echo di un newline dopo un carattere di kill\n" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" +" * [-]echoke come [-]crtkill\n" +" [-]echonl fa l'echo di un newline anche se non fa l'echo degli altri\n" +" caratteri\n" +" * [-]echoprt fa l'echo al contrario dei caratteri cancellati, tra `\\' e " +"'/'\n" +" [-]icanon abilita i caratteri speciali erase, kill, werase, e rprnt\n" +" [-]iexten abilita i caratteri speciali non POSIX\n" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" +" [-]isig abilita i caratteri speciali interrupt, quit, e suspend\n" +" [-]noflsh disabilita il flushing dopo i caratteri speciali di\n" +" interrupt e quit\n" +" * [-]prterase come [-]echoprt\n" +" * [-]tostop ferma i processi in background che provano a scrivere\n" +" sul terminale\n" +" * [-]xcase con icanon, fa l'escape con `\\' per i caratteri maiuscoli\n" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" +"\n" +"Impostazioni combinazione:\n" +" * [-]LCASE come [-]lcase\n" +" cbreak come -icanon\n" +" -cbreak come icanon\n" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" +" cooked come brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, i caratteri eof e eol ai loro valori predefiniti\n" +" -cooked come raw\n" +" crt come echoe echoctl echoke\n" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" +" dec come echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq come [-]ixany\n" +" ek caratteri di erase e kill ai loro valori predefiniti\n" +" evenp come parenb -parodd cs7\n" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" +" -evenp come -parenb cs8\n" +" * [-]lcase come xcase iuclc olcuc\n" +" litout come -parenb -istrip -opost cs8\n" +" -litout come parenb istrip opost cs7\n" +" nl come -icrnl -onlcr\n" +" -nl come icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" +" oddp come parenb parodd cs7\n" +" -oddp come -parenb cs8\n" +" [-]parity come [-]evenp\n" +" pass8 come -parenb -istrip cs8\n" +" -pass8 come parenb istrip cs7\n" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" +" raw come -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw come cooked\n" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" +" sane come cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, tutti i caratteri\n" +" speciali ai loro valori predefiniti\n" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" +"\n" +"Gestisce la linea tty connessa allo standard input. Senza argomenti stampa\n" +"il baud rate, la disciplina di linea, e le differenze da stty sane. Nelle\n" +"impostazioni, CAR è preso letteralmente o codificato come in ^c, 0x37, 0177\n" +"o 127; i valori speciali ^- o undef sono usati per disabilitare i caratteri\n" +"speciali.\n" + +#: src/stty.c:787 +msgid "only one device may be specified" +msgstr "può essere specificato un solo dispositivo" + +#: src/stty.c:882 +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "" +"le opzioni per gli stili dell'output \"comprensibile\" e \"leggibile da\n" +"stty\" sono mutuamente esclusive" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "" +"quando si specifica uno stile dell'output, non si possono impostare i modi" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "%s: impossibile azzerare il modo non bloccante" + +#: src/stty.c:957 src/stty.c:1064 +#, c-format +msgid "invalid argument `%s'" +msgstr "argomento `%s' non valido" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, c-format +msgid "missing argument to `%s'" +msgstr "manca l'argomento per `%s'" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "%s: impossibile eseguire tutte le operazioni richieste" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "new_mode: modo\n" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "%s: non ci sono informazioni sulle dimensioni di questo dispositivo" + +#: src/stty.c:1944 +#, c-format +msgid "invalid integer argument `%s'" +msgstr "argomento intero `%s' non valido" + +#: src/su.c:289 +msgid "Password:" +msgstr "Password:" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "getpass: impossibile aprire /dev/tty" + +#: src/su.c:350 +msgid "cannot set groups" +msgstr "impossibile impostare i gruppi" + +#: src/su.c:354 +msgid "cannot set group id" +msgstr "impossibile impostare il group id" + +#: src/su.c:356 +msgid "cannot set user id" +msgstr "impossibile impostare lo user id" + +#: src/su.c:437 +#, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "Uso: %s [OPZIONE]... [-] [UTENTE [ARG]...]\n" + +#: src/su.c:438 +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" +"Cambia lo user id e il group id efficaci a quelli dell'UTENTE.\n" +"\n" +" -, -l, --login rende la shell una shell di login\n" +" -c, --commmand=COMANDO passa con -c un COMANDO singolo alla shell\n" +" -f, --fast passa -f alla shell (per csh o tcsh)\n" +" -m, --preserve-environment non reinizializza le variabili d'ambiente\n" +" -p come -m\n" +" -s, --shell=SHELL lancia SHELL se /etc/shells lo permette\n" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" +"\n" +"Un semplice - implica -l. Se non è specificato l'UTENTE, assume root.\n" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "l'utente %s non esiste" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "password sbagliata" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "uso la shell ristretta %s" + +#: src/su.c:580 +#, c-format +msgid "warning: cannot change directory to %s" +msgstr "attenzione: impossibile cambiare la directory a %s" + +#: src/sum.c:36 +#, fuzzy +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "Mike Parker e David MacKenzie" + +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" +"Forza la scrittura su disco dei blocchi cambiati, aggiorna il super block.\n" +"\n" + +#: src/sync.c:70 src/tty.c:112 +#, fuzzy +msgid "ignoring all arguments" +msgstr "" +"#-#-#-#-# trans-it.po (sh-utils 2.0.13) #-#-#-#-#\n" +"tutti gli argomenti sono stati ignorati\n" +"#-#-#-#-# trans-it.po (fileutils 4.1.11) #-#-#-#-#\n" +"tutti gli argomenti vengono ignorati" + +#: src/sys2.h:492 +#, fuzzy +msgid " --help display this help and exit\n" +msgstr "" +"#-#-#-#-# trans-it.po (sh-utils 2.0.13) #-#-#-#-#\n" +" --help mostra questo messaggio d'aiuto ed esce\n" +"#-#-#-#-# trans-it.po (fileutils 4.1.11) #-#-#-#-#\n" +" --help mostra questo aiuto ed esce\n" + +#: src/sys2.h:494 +msgid " --version output version information and exit\n" +msgstr " --version stampa le informazioni sulla versione ed esce\n" + +#: src/tac.c:54 +#, fuzzy +msgid "Jay Lepreau and David MacKenzie" +msgstr "Joseph Arceneaux and David MacKenzie" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tac.c:139 +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" + +#: src/tac.c:453 src/tac.c:592 +#, fuzzy +msgid "stdin: read error" +msgstr "errore di lettura" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "" + +#: src/tail.c:49 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "Mike Parker, David MacKenzie, e Jim Meyering" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" + +#: src/tail.c:331 +#, fuzzy, c-format +msgid "closing %s (fd=%d)" +msgstr "chiusura di %s" + +#: src/tail.c:391 +#, fuzzy, c-format +msgid "%s: cannot seek to offset %s" +msgstr "impossibile impostare l'hostname a `%s'" + +#: src/tail.c:395 +#, fuzzy, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "impossibile creare il fifo %s" + +#: src/tail.c:400 +#, fuzzy, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "impossibile creare il fifo %s" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "" + +#: src/tail.c:1000 +#, fuzzy, c-format +msgid "%s: file truncated" +msgstr "%s: errore durante il troncamento" + +#: src/tail.c:1020 +#, fuzzy +msgid "no files remaining" +msgstr "argomenti dei file mancanti" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "" + +#: src/tail.c:1356 +#, fuzzy, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "carattere %s non valido nella stringa di modo %s" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" + +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "" + +#: src/tail.c:1510 +#, fuzzy, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "%s: numero di passi non valido" + +#: src/tail.c:1522 +#, fuzzy, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "%s: numero di passi non valido" + +#: src/tail.c:1534 +#, fuzzy, c-format +msgid "%s: invalid PID" +msgstr "%s: segnale non valido" + +#: src/tail.c:1549 +#, fuzzy, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: numero di passi non valido" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "" + +#: src/tail.c:1575 +#, fuzzy +msgid "warning: --pid=PID is not supported on this system" +msgstr "i link simbolici non sono gestibili da questo sistema" + +#: src/tee.c:33 +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "Mike Parker, Richard M. Stallman, and David MacKenzie" + +#: src/tee.c:64 +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" +"Copia lo standard input a ogni FILE e allo standard output.\n" +"\n" +" -a, --append accoda ai FILE specificati, non sovrascrive\n" +" -i, --ignore-interrupts ignora i segnali di interruzione\n" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "manca un'argomento\n" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "manca un'espressione intera %s\n" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "manca ')'\n" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "manca ')', trovato %s\n" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "%s: manca un operatore unario\n" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "%s: manca un operatore binario\n" + +#: src/test.c:424 +msgid "before -lt" +msgstr "prima di -lt" + +#: src/test.c:432 +msgid "after -lt" +msgstr "dopo di -lt" + +#: src/test.c:446 +msgid "before -le" +msgstr "prima di -le" + +#: src/test.c:453 +msgid "after -le" +msgstr "dopo di -le" + +#: src/test.c:469 +msgid "before -gt" +msgstr "prima di -gt" + +#: src/test.c:476 +msgid "after -gt" +msgstr "dopo di -gt" + +#: src/test.c:490 +msgid "before -ge" +msgstr "prima di -ge" + +#: src/test.c:497 +msgid "after -ge" +msgstr "dopo di -ge" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "-nt non accetta -l\n" + +#: src/test.c:526 +msgid "before -ne" +msgstr "prima di -ne" + +#: src/test.c:533 +msgid "after -ne" +msgstr "dopo di -ne" + +#: src/test.c:549 +msgid "before -eq" +msgstr "prima di -eq" + +#: src/test.c:556 +msgid "after -eq" +msgstr "dopo di -eq" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "-ef non accetta -l\n" + +#: src/test.c:586 +msgid "-ot does not accept -l\n" +msgstr "-ot non accetta -l\n" + +#: src/test.c:593 +msgid "unknown binary operator" +msgstr "operatore binario sconosciuto" + +#: src/test.c:781 +msgid "after -t" +msgstr "dopo -t" + +#: src/test.c:979 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s ESPRESSIONE\n" +" o: [ ESPRESSIONE ]\n" +" o: %s OPZIONE\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" +"Esce con lo stato determinato dall'ESPRESSIONE.\n" +"\n" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" +"\n" +"L'ESPRESSIONE è vera o falsa e imposta lo stato d'uscita. È una fra:\n" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" +"\n" +" ( ESPRESSIONE ) ESPRESSIONE è vera\n" +" ! ESPRESSIONE ESPRESSIONE è falsa\n" +" ESPRESSIONE1 -a ESPRESSIONE2 sia ESPRESSIONE1 che ESPRESSIONE2 sono vere\n" +" ESPRESSIONE1 -o ESPRESSIONE2 o ESPRESSIONE1 o ESPRESSIONE2 è vera\n" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" +"\n" +" [-n] STRINGA la lunghezza di STRINGA non è zero\n" +" -z STRINGA la lunghezza di STRINGA è zero\n" +" STRINGA1 = STRINGA2 le stringhe sono uguali\n" +" STRINGA1 != STRINGA2 le stringhe sono diverse\n" + +#: src/test.c:1009 +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" +"\n" +" INTERO1 -eq INTERO2 INTERO1 è uguale INTERO2\n" +" INTERO1 -ge INTERO2 INTERO1 è maggiore o uguale a INTERO2\n" +" INTERO1 -gt INTERO2 INTERO1 è maggiore di INTERO2\n" +" INTERO1 -le INTERO2 INTERO1 è minore o uguale a INTERO2\n" +" INTERO1 -lt INTERO2 INTERO1 è minore di INTERO2\n" +" INTERO1 -ne INTERO2 INTERO1 non è uguale a INTERO2\n" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" +"\n" +" FILE1 -ef FILE2 FILE1 e FILE2 hanno gli stessi numeri di device e di " +"inode\n" +" FILE1 -nt FILE2 FILE1 è più nuovo (data di modifica) di FILE2\n" +" FILE1 -ot FILE2 FILE1 è più vecchio FILE2\n" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" +"\n" +" -b FILE FILE esiste ed è speciale a blocchi\n" +" -c FILE FILE esiste ed è speciale a caratteri\n" +" -d FILE FILE esiste ed è una directory\n" +" -e FILE FILE esiste\n" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" +" -f FILE FILE esiste ed è un file regolare\n" +" -g FILE FILE esiste ed è set-group-ID\n" +" -h FILE FILE esiste ed è un link simbolico (come -L)\n" +" -G FILE FILE esiste ed è posseduto dal group ID efficace\n" +" -k FILE FILE esiste ed ha il suo sticky bit impostato \n" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" +" -L FILE FILE esiste ed è un link simbolico (come -h)\n" +" -O FILE FILE esiste ed è posseduto dallo user ID efficace\n" +" -p FILE FILE esiste ed è una pipe con nome\n" +" -r FILE FILE esiste ed è leggibile\n" +" -s FILE FILE esiste ed ha dimensione maggiore di zero\n" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" +" -S FILE FILE esiste ed è un socket\n" +" -t [FD] il file descriptor FD (predef. stdout) è aperto su un " +"terminale\n" +" -u FILE FILE esiste ed ha il proprio bit set-user-ID impostato\n" +" -w FILE FILE esiste ed è scrivibile\n" +" -x FILE FILE esiste ed è eseguibile\n" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" +"\n" +"Si noti che le parentesi hanno bisogno di essere protette (p.es. con\n" +"backslash) dalla shell.\n" +"INTERO può anche essere -l STRINGA, che è valutato alla lunghezza di " +"STRINGA.\n" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "FIXME: ksb and mjb" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "manca un `]'\n" + +#: src/test.c:1125 +msgid "too many arguments\n" +msgstr "troppi argomenti\n" + +#: src/touch.c:39 +#, fuzzy +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "Arnold Robbins and David MacKenzie" + +#: src/touch.c:164 src/touch.c:179 +#, c-format +msgid "creating %s" +msgstr "creazione di %s" + +#: src/touch.c:222 +#, fuzzy, c-format +msgid "cannot touch %s" +msgstr "impossibile fare stat di %s" + +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "impostazione dell'orario di %s" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" +"Aggiorna gli orari di accesso e modifica di ogni FILE a quello attuale.\n" +"\n" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" +" -a cambia solo l'orario di accesso\n" +" -c, --no-create non crea alcun file\n" +" -d, --date=STRINGA usa STRINGA invece che l'orario attuale\n" +" -f (ignorato)\n" +" -m cambia solo l'orario di modifica\n" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" +" -r, --reference=FILE usa l'orario di questo file invece di quello " +"attuale\n" +" -t ORARIO usa [[CC]YY]MMDDhhmm[.ss] invece che l'orario " +"attuale\n" +" --time=TIPO imposta l'orario TIPO: accesso, atime (come -a);\n" +" mtime modifica (come -m)\n" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" +"\n" +"Nota che le opzioni -d e -t accettano differenti formati di orario.\n" + +#: src/touch.c:311 src/touch.c:331 +#, c-format +msgid "invalid date format %s" +msgstr "formato di orario %s non valido" + +#: src/touch.c:355 +msgid "cannot specify times from more than one source" +msgstr "impossibile specificare l'orario da più di una fonte" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "" +"attenzione: `touch %s' è obsoleto; usare `touch -t %04d%02d%02d%02d%02d.%02d'" + +#: src/touch.c:399 +msgid "file arguments missing" +msgstr "argomenti dei file mancanti" + +#: src/tr.c:327 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "Uso: %s [OPZIONE]... [FILE]...\n" + +#: src/tr.c:331 +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" + +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" + +#: src/tr.c:566 +#, fuzzy +msgid "invalid backslash escape at end of string" +msgstr "carattere %s non valido nella stringa di modo %s" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "" + +#: src/tr.c:1025 +#, fuzzy, c-format +msgid "invalid character class `%s'" +msgstr "data `%s' non valida" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" + +#: src/true.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Uso: %s [argomenti della riga di comando ignorati]\n" +" o: %s OPZIONE\n" +"Esce con un codice di stato indicante il successo.\n" +"\n" +"I nomi di queste opzioni non possono essere abbreviati.\n" +"\n" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "" + +#: src/tsort.c:575 +#, fuzzy +msgid "only one argument may be specified" +msgstr "può essere specificato un solo dispositivo" + +#: src/tty.c:63 +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" +"Stampa il nome del file del terminale connesso allo standard input.\n" +"\n" +" -s, --silent, --quiet non stampa niente, restituisce solo uno stato\n" +" d'uscita\n" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "non è un tty" + +#: src/uname.c:111 +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" +"Stampa alcune informazioni sul sistema. Senza una OPZIONE è come fosse -s.\n" +"\n" +" -a, --all stampa tutte le informazioni, nel seguente " +"ordine:\n" +" -s, --kernel-name stampa il nome del kernel\n" +" -n, --nodename stampa l'hostname del nodo di rete\n" +" -r, --kernel-release stampa la release del kernel\n" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" +" -v, --kernel-version stampa la versione del kernel\n" +" -m, --machine stampa il nome dell'hardware della macchina\n" +" -p, --processor stampa il tipo di processore\n" +" -i, --hardware-platform stampa la piattaforma hardware\n" +" -o, --operating-system stampa il sistema operativo\n" + +#: src/uname.c:226 +msgid "cannot get system name" +msgstr "impossibile determinare il nome del sistema" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" + +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "" + +#: src/uniq.c:139 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "Uso: %s [OPZIONE]... [ FILE ]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr "" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" + +#: src/uniq.c:381 +#, fuzzy, c-format +msgid "error reading %s" +msgstr "lettura di %s" + +#: src/uniq.c:386 +#, fuzzy, c-format +msgid "error writing %s" +msgstr "scrittura di %s" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "" + +#: src/uniq.c:473 src/uniq.c:498 +#, fuzzy +msgid "invalid number of fields to skip" +msgstr "%s: numero di passi non valido" + +#: src/uniq.c:507 +#, fuzzy +msgid "invalid number of bytes to skip" +msgstr "%s: numero di passi non valido" + +#: src/uniq.c:516 +#, fuzzy +msgid "invalid number of bytes to compare" +msgstr "%s: numero di passi non valido" + +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "" + +#: src/unlink.c:51 +#, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s FILE\n" +" o: %s OPZIONE\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" +"Chiama la funzione unlink per rimuovere il FILE indicato.\n" +"\n" + +#: src/unlink.c:99 +#, c-format +msgid "cannot unlink %s" +msgstr "impossibile scollegare %s" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "impossibile determinare l'ora di avvio" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr " attivo da %2d:%02d%s " + +#: src/uptime.c:140 +msgid "am" +msgstr "am" + +#: src/uptime.c:140 +msgid "pm" +msgstr "pm" + +#: src/uptime.c:142 +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "giorni" +msgstr[1] "giorno" + +#: src/uptime.c:144 +#, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "utenti" +msgstr[1] "utente" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr ", load average: %.2f" + +#: src/uptime.c:191 src/users.c:118 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "Uso: %s [OPZIONE]... [ FILE ]\n" + +#: src/uptime.c:192 +#, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Stampa l'ora corrente, da quanto tempo il sistema è attivo, il numero di " +"utenti\n" +"sul sistema e il numero medio di processi nella coda di esecuzione negli " +"ultimi\n" +"1, 5 e 15 minuti. Se non è specificato il FILE usa %s.\n" +"%s è comunemente usato come FILE.\n" +"\n" + +#: src/users.c:35 +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "Joseph Arceneaux and David MacKenzie" + +#: src/users.c:119 +#, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Stampa chi è attualmente connesso basandosi su FILE.\n" +"Se non è specificato il FILE, usa %s.\n" +"%s è comunemente usato come FILE.\n" +"\n" + +#: src/wc.c:75 +#, fuzzy +msgid "Paul Rubin and David MacKenzie" +msgstr "Arnold Robbins and David MacKenzie" + +#: src/wc.c:129 +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "Joseph Arceneaux, David MacKenzie, and Michael Stone" + +#: src/who.c:223 +msgid " old " +msgstr " fa " + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "id=" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "term=" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "exit=" + +#: src/who.c:446 +msgid "clock change" +msgstr "cambio orario" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "run-level" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "last=" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" +"\n" +"# utenti=%u\n" + +#: src/who.c:498 +msgid "NAME" +msgstr "NOME" + +#: src/who.c:498 +msgid "LINE" +msgstr "LINEA" + +#: src/who.c:498 +msgid "TIME" +msgstr "ORA" + +#: src/who.c:498 +msgid "IDLE" +msgstr "INATTIVO" + +#: src/who.c:498 +msgid "PID" +msgstr "PID" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "COMMENTO" + +#: src/who.c:499 +msgid "EXIT" +msgstr "USCITA" + +#: src/who.c:574 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "Uso: %s [OPZIONE]... [ FILE | ARG1 ARG2 ]\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" +"\n" +" -a, --all come -b -d --login -p -r -t -T -u\n" +" -b, --boot orario dell'ultimo boot del sistema\n" +" -d, --dead stampa i processi morti\n" +" -H, --heading stampa la riga di intestazione delle colonne\n" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" +" -i, --idle aggiunge il tempo di inattività come ORE:MINUTI\n" +" (deprecato, usa -u)\n" +" --login stampa i processi di sistema per fare il login\n" +" (equivale a -l di SUS)\n" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" +" -l, --lookup cerca di canonicalizzare gli hostname con il DNS\n" +" (-l è deprecato, usa --lookup)\n" +" -m solo l'hostname e l'utente associato a stdin\n" +" -p, --process stampa i processi attivi figli di init\n" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" +" -q, --count tutti i nomi di login e il numero di utenti connessi\n" +" -r, --runlevel stampa il runlevel attuale\n" +" -s, --short stampa solo il nome, la riga e l'orario (predefinita)\n" +" -t, --time stampa l'ultima modifica dell'orologio di sistema\n" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" +" -T, -w, --mesg aggiunge lo stato dei messaggi dell'utente come +, - " +"o ?\n" +" -u, --users elenca gli utenti collegati\n" +" --message come -T\n" +" --writable come -T\n" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" +"\n" +"Se il FILE non è specificato, usa %s. È comune usare %s come FILE.\n" +"Se sono dati ARG1 e ARG2, è assunto -m: `am i' o `mom likes' sono comuni.\n" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "Attenzione: -i sarà rimosso in una versione futura; usa -u" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" +"Attenzione: il significato di '-l' cambierà in una versione futura per\n" +"conformarsi a POSIX" + +#: src/whoami.c:53 +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" +"Stampa il nome dell'utente associato all'attuale user id efficace.\n" +"Uguale a id -un.\n" +"\n" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "%s: impossibile trovare un nome di utente per l'UID %u\n" + +#: src/yes.c:49 +#, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s [STRINGA]...\n" +" o: %s OPZIONE\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" +"Stampa in continuazione una riga con tutte le STRINGA specificate oppure " +"`y'.\n" +"\n" + +#~ msgid "\\%c: invalid escape" +#~ msgstr "\\%c: sequenza di escape non valida" + +#~ msgid "program error" +#~ msgstr "errore del programma" + +#~ msgid "stack overflow" +#~ msgstr "overflow dello stack" + +#~ msgid " Type" +#~ msgstr " Tipo" + +#, fuzzy +#~ msgid "cannot convert time" +#~ msgstr "impossibile impostare la data" + +#, fuzzy +#~ msgid "cannot format time" +#~ msgstr "impossibile impostare la data" + +#~ msgid "cannot change to `..' from directory %s" +#~ msgstr "impossibile entrare in `..' dalla directory %s" + +#~ msgid "missing file arguments" +#~ msgstr "mancano i file di argomento" + +#, fuzzy +#~ msgid "environment variable, QUOTING_STYLE" +#~ msgstr "" +#~ "ignoro il valore non valido della variabile di ambiente QUOTING_STYLE: %s" diff --git a/src/apps/bin/coreutils-5.0/po/ja.gmo b/src/apps/bin/coreutils-5.0/po/ja.gmo new file mode 100644 index 0000000000..505f39ec4e Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/ja.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/ja.po b/src/apps/bin/coreutils-5.0/po/ja.po new file mode 100644 index 0000000000..7b3a4af215 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/ja.po @@ -0,0 +1,9538 @@ +# Translation of `textutils' messages to Japanese. +# Copyright (C) 2000, 2002 Free Software Foundation, Inc. +# Masahito Yamaga , 2002. +# derived from the version by Yasuyuki Furukawa 1998 +# Jun Nishii 1999 +# Daisuke Yamashita 1999 +# +msgid "" +msgstr "" +"Project-Id-Version: GNU textutils 2.0.22\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2002-07-27 22:54+0900\n" +"Last-Translator: Masahito Yamaga \n" +"Language-Team: Japanese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=EUC-JP\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "`%2$s' ¤ËÂФ¹¤ë°ú¿ô %1$s ¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹" + +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "`%2$s' ¤ËÂФ¹¤ë°ú¿ô %1$s ¤¬Û£Ëæ¤Ç¤¹" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "Í­¸ú¤Ê°ú¿ô:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "½ñ¤­¹þ¤ß¥¨¥é¡¼" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "̤ÃΤΥ·¥¹¥Æ¥à¥¨¥é¡¼" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "Ä̾ï¤Î¶õ¥Õ¥¡¥¤¥ë" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "Ä̾ï¥Õ¥¡¥¤¥ë" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê" + +#: lib/file-type.c:48 +msgid "block special file" +msgstr "¥Ö¥í¥Ã¥¯¥¹¥Ú¥·¥ã¥ë¥Õ¥¡¥¤¥ë" + +#: lib/file-type.c:51 +msgid "character special file" +msgstr "¥­¥ã¥é¥¯¥¿¥¹¥Ú¥·¥ã¥ë¥Õ¥¡¥¤¥ë" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "fifo" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "¥½¥±¥Ã¥È" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "¥á¥Ã¥»¡¼¥¸¥­¥å¡¼" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "¥»¥Þ¥Õ¥©" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "¶¦Í­¥á¥â¥ê¥ª¥Ö¥¸¥§¥¯¥È" + +#: lib/file-type.c:71 +msgid "weird file" +msgstr "ÉÔÌÀ¤Ê¥Õ¥¡¥¤¥ë" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: ¥ª¥×¥·¥ç¥ó `%s' ¤ÏÛ£Ëæ¤Ç¤¹\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: ¥ª¥×¥·¥ç¥ó `--%s' ¤Ë°ú¿ô¤Ï¤¢¤ê¤Þ¤»¤ó\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: ¥ª¥×¥·¥ç¥ó `%c%s' ¤Ë°ú¿ô¤ÏɬÍפ¢¤ê¤Þ¤»¤ó\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: ¥ª¥×¥·¥ç¥ó `%s' ¤Ë¤Ï°ú¿ô¤¬É¬ÍפǤ¹\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: ¥ª¥×¥·¥ç¥ó `--%s' ¤òǧ¼±¤Ç¤­¤Þ¤»¤ó\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: ¥ª¥×¥·¥ç¥ó `%c%s' ¤òǧ¼±¤Ç¤­¤Þ¤»¤ó\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: ÉÔÀµ¤Ê¥ª¥×¥·¥ç¥ó -- %c\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: ´Ö°ã¤Ã¤¿¥ª¥×¥·¥ç¥ó -- %c\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: ¥ª¥×¥·¥ç¥ó¤Ë¤Ï°ú¿ô¤¬É¬ÍפǤ¹ -- %c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: ¥ª¥×¥·¥ç¥ó `-W %s' ¤ÏÛ£Ëæ¤Ç¤¹\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: ¥ª¥×¥·¥ç¥ó `-W %s' ¤Ë°ú¿ô¤Ï¤¢¤ê¤Þ¤»¤ó\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "¥Ö¥í¥Ã¥¯¥µ¥¤¥º" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%s ¤Ï¸ºß¤·¤Þ¤¹¤¬¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "%s ¤Î¥ª¡¼¥Ê¡¼¤È¥°¥ë¡¼¥×¤òÊѹ¹¤Ç¤­¤Þ¤»¤ó" + +#: lib/makepath.c:338 +#, c-format +msgid "cannot chdir to directory %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Ë°Üư¤Ç¤­¤Þ¤»¤ó" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "%s ¤Î°À­¤òÊѹ¹¤Ç¤­¤Þ¤»¤ó" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "¥á¥â¥ê¤ò»È¤¤²Ì¤¿¤·¤Þ¤·¤¿" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "`" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "'" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[yY]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[nN]" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "iconv ´Ø¿ô¤¬»È¤¨¤Þ¤»¤ó" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "iconv ´Ø¿ô¤¬Í­¸ú¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" + +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "Èϰϳ°¤Îʸ»ú" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "U+%04X ¤ò¥í¡¼¥«¥ëʸ»ú¥»¥Ã¥È¤ËÊÑ´¹¤Ç¤­¤Þ¤»¤ó" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "U+%04X ¤ò¥í¡¼¥«¥ëʸ»ú¥»¥Ã¥È %s ¤ËÊÑ´¹¤Ç¤­¤Þ¤»¤ó" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "¥æ¡¼¥¶»ØÄ꤬ÉÔÀµ" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "¥°¥ë¡¼¥×»ØÄ꤬ÉÔÀµ" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "¿ô»ú¤Î UID ¤Î¥í¥°¥¤¥ó¥°¥ë¡¼¥×¤ò¼èÆÀ¤Ç¤­¤Þ¤»¤ó" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "¥æ¡¼¥¶¤È¥°¥ë¡¼¥×¤ÎξÊý¤ò¾Êά¤¹¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "ºî¼Ô %s.\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +"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" +"[»²¹ÍÌõ]\n" +"¤³¤ì¤Ï¥Õ¥ê¡¼¥½¥Õ¥È¥¦¥§¥¢¤Ç¤¹. ¥³¥Ô¡¼¤Î¾ò·ï¤Ë¤Ä¤¤¤Æ¤Ï¥½¡¼¥¹¤ò¤ªÆÉ¤ß¤¯¤À¤µ¤¤.\n" +"»Ô¾ìÀ­µÚ¤ÓÆÃÄêÌÜŪŬ¹çÀ­¤ÎÇ¡²¿¤Ë¤è¤é¤º, ¤¤¤«¤Ê¤ëÊݾڤ⤢¤ê¤Þ¤»¤ó.\n" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "ʸ»úÎó¤ÎÈæ³Ó¤Ë¼ºÇÔ" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "ÌäÂê¤ò²óÈò¤¹¤ë¤¿¤á¤Ë LC_ALL='C' ¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤." + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "Èæ³Ó¤·¤¿Ê¸»úÎó¤Ï %s ¤È %s ¤Ç¤¹." + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "¾Ü¤·¤¯¤Ï `%s --help' ¤ò¼Â¹Ô¤·¤Æ²¼¤µ¤¤.\n" + +#: src/basename.c:54 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"»ÈÍÑË¡: %s [¥Õ¥¡¥¤¥ë]...\n" +"¤Þ¤¿¤Ï: %s [¥ª¥×¥·¥ç¥ó]\n" + +#: src/basename.c:59 +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" +"¥Ñ¥¹Ì¾¤«¤é¥Ç¥£¥ì¥¯¥È¥êÉôʬ¤ò¼è¤ê¤Î¤¾¤¤¤¿Ì¾Á°¤òɽ¼¨¤¹¤ë.\n" +"»ØÄ꤬¤¢¤ì¤Ð, ËöÈø¤Î³ÈÄ¥»Ò¤â¼è¤ê½ü¤¯.\n" +"\n" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"¥Ð¥°¤òȯ¸«¤·¤¿¤é <%s> °¸¤ËÊó¹ð¤·¤Æ²¼¤µ¤¤.\n" + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "°ú¿ô¤¬Â­¤ê¤Þ¤»¤ó" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "°ú¿ô¤¬Â¿¤¹¤®¤Þ¤¹" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "Torbjorn Granlund ¤È Richard M. Stallman" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó] [¥Õ¥¡¥¤¥ë]...\n" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" +"¥Õ¥¡¥¤¥ë¤â¤·¤¯¤Ïɸ½àÆþÎϤòϢ³Ū¤ËÆÉ¤ß¹þ¤ß, ɸ½à½ÐÎϤ˽ñ¤­½Ð¤·¤Þ¤¹.\n" +"\n" +" -A, --show-all -vET¤ÈƱ¤¸\n" +" -b, --number-nonblank ¶õ¹Ô¤ò½ü¤¤¤Æ¹ÔÈÖ¹æ¤òÉÕ¤±²Ã¤¨¤ë\n" +" -e -vE¤ÈƱ¤¸\n" +" -E, --show-ends ¹Ô¤ÎºÇ¸å¤Ë`$'¤òÉÕ¤±²Ã¤¨¤ë\n" +" -n, --number ¹ÔÈÖ¹æ¤òÉÕ¤±²Ã¤¨¤ë\n" +" -s, --squeeze-blank Ϣ³¤·¤¿¶õ¹Ô¤ò°µ½Ì\n" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" +" -t -vT¤ÈƱ¤¸\n" +" -T, --show-tabs TABʸ»ú¤ò`^I'¤Çɽ¼¨\n" +" -u (̵»ë)\n" +" -v, --show-nonprinting Èóɽ¼¨Ê¸»ú¤È`^'¤ä`^'¤òÉÕ¤±¤ÆÉ½¼¨ (LFD¤ÈTAB¤Ï½ü" +"¤¯)\n" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"¥Õ¥¡¥¤¥ë¤Î»ØÄ꤬¤Ê¤«¤Ã¤¿¤ê, - ¤Ç¤¢¤Ã¤¿¾ì¹ç, ɸ½àÆþÎϤ«¤éÆÉ¤ß¹þ¤ß¤Þ¤¹.\n" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" +"\n" +" -B, --binary ¥³¥ó¥½¡¼¥ë¥Ç¥Ð¥¤¥¹¤Ë¥Ð¥¤¥Ê¥ê¤Ç½ÐÎÏ\n" +"\n" + +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "`%s' ¤Ç ioctl() ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "ɸ½à½ÐÎÏ" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s: ÆþÎÏ¥Õ¥¡¥¤¥ë¤¬½ÐÎÏ¥Õ¥¡¥¤¥ë¤¬Æ±¤¸¥Õ¥¡¥¤¥ë¤Ç¤¹" + +#: src/cat.c:858 +#, fuzzy +msgid "closing standard input" +msgstr "ɸ½àÆþÎÏ" + +#: src/cat.c:861 +#, fuzzy +msgid "closing standard output" +msgstr "ɸ½à½ÐÎÏ" + +#: src/chgrp.c:93 +#, fuzzy +msgid "cannot change to null group" +msgstr "%s ¤Î¥ª¡¼¥Ê¡¼¤È¥°¥ë¡¼¥×¤òÊѹ¹¤Ç¤­¤Þ¤»¤ó" + +#: src/chgrp.c:102 +#, fuzzy, c-format +msgid "invalid group name %s" +msgstr "¥°¥ë¡¼¥×»ØÄ꤬ÉÔÀµ" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "¥°¥ë¡¼¥×ÈÖ¹æ" + +#: src/chgrp.c:109 +#, fuzzy, c-format +msgid "invalid group number %s" +msgstr "%s: ̵¸ú¤ÊÈÖ¹æÉ½µ­¤Ç¤¹" + +#: src/chgrp.c:126 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... [¥Õ¥¡¥¤¥ë]...\n" +" Ëô¤Ï: %s --traditional [¥Õ¥¡¥¤¥ë] [[+]¥ª¥Õ¥»¥Ã¥È [[+]¥é¥Ù¥ë]]\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"³Æ FILE ¤Î¥°¥ë¡¼¥×°À­¤ò GROUP ¤ËÊѹ¹¤·¤Þ¤¹¡£\n" +"\n" +" -c, --changes verbose ¤ÎÍͤÀ¤¬Êѹ¹¤¬¹Ô¤Ê¤ï¤ì¤¿»þ¤À¤±Êó¹ð¤¹¤ë\n" +" --dereference ¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤½¤Î¤â¤Î¤Ç¤Ï¤Ê¤¯¡¢\n" +" ³Æ¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯Àè¤Ë¸ú²Ì¤òÍ¿¤¨¤ë\n" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" +" -h, --no-dereference ¥ê¥ó¥¯Àè¤Ç¤Ï¤Ê¤¯¡¢¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤½¤Î¤â¤Î¤Ë¸ú²Ì\n" +" ¤òÍ¿¤¨¤ë (¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤Î½êÍ­¸¢¤òÊѹ¹¤Ç¤­¤ë\n" +" ¥·¥¹¥Æ¥à¤Ç¤Î¤ßÍøÍѲÄǽ)\n" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet ¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸¤ò¶ËÎϲ¡¤µ¤¨¤ë\n" +" --reference=RFILE »ØÄꤷ¤¿ GROUP ÃͤǤϤʤ¯ RFILE ¤Î¥°¥ë¡¼¥×¤ò»È¤¦\n" +" -R, --recursive ¥Õ¥¡¥¤¥ë¤ä¥Ç¥£¥ì¥¯¥È¥ê¤òºÆµ¢Åª¤ËÁàºî¤¹¤ë\n" +" -v, --verbose ¥Õ¥¡¥¤¥ë¤¬½èÍý¤µ¤ì¤ëËè¤Ë¿ÇÃÇ¥á¥Ã¥»¡¼¥¸¤òɽ¼¨¤¹¤ë\n" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, c-format +msgid "failed to get attributes of %s" +msgstr "%s ¤Î°À­¾ðÊó¤ò¼èÆÀ¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "%s ¤Î¿·¤¿¤Ê°À­¾ðÊó¤ò¼èÆÀÃæ" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "%s ¤Î¥â¡¼¥É¤ò %04lo (%s) ¤ËÊѹ¹¤·¤Þ¤·¤¿\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "%s ¤Î¥â¡¼¥É¤ò %04lo (%s) ¤ËÊѹ¹¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿\n" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "%s ¤Î¥â¡¼¥É¤Ï %04lo (%s) ¤È¤·¤ÆÊÝᤵ¤ì¤Þ¤·¤¿\n" + +#: src/chmod.c:179 +#, fuzzy, c-format +msgid "changing permissions of %s" +msgstr "%s ¤Î°À­¤òÊѹ¹¤Ç¤­¤Þ¤»¤ó" + +#: src/chmod.c:242 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... LAST\n" +"¤â¤·¤¯¤Ï: %s [¥ª¥×¥·¥ç¥ó]... FIRST LAST\n" +"¤â¤·¤¯¤Ï: %s [¥ª¥×¥·¥ç¥ó]... FIRST INCREMENT LAST\n" + +#: src/chmod.c:248 +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"¤½¤ì¤¾¤ì¤Î¥Õ¥¡¥¤¥ë¤ò»ØÄꤵ¤ì¤¿¥â¡¼¥É¤ËÊѹ¹¡£\n" +"\n" +" -c, --changes Êѹ¹¤ò¹Ô¤Ê¤Ã¤¿»þ¤Ë¤Î¤ß¡¢Êѹ¹¤Î·ë²Ì¤òÊó¹ð¤¹¤ë\n" +" -f, --silent, --quiet ¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸¤ò¶ËÎÏÍÞ¤¨¤ë\n" +" -v, --verbose ¥Õ¥¡¥¤¥ë¤ò½èÍý¤¹¤ë¤¿¤Ó¤Ë¡¢¾ÜºÙ¤ÊÊó¹ð¤ò¹Ô¤Ê¤¦\n" +" --reference=RFILE RFILE ¤Ë»ØÄꤷ¤¿¥Õ¥¡¥¤¥ë¤Î¥¢¥¯¥»¥¹¥â¡¼¥É¤òÍøÍѤ¹" +"¤ë\n" +" -R, --recursive ¥Õ¥¡¥¤¥ë¤ä¥Ç¥£¥ì¥¯¥È¥ê¤òºÆµ¢Åª¤ËÊѹ¹¤¹¤ë\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" +"\n" +"¥¢¥¯¥»¥¹¥â¡¼¥É¤Ï¡¢1 ʸ»úËô¤Ï¤½¤ì°Ê¾å¤Î `ugoa' ¤Î¤¤¤º¤ì¤«¤Îʸ»ú¤ÎÁȤ߹ç¤ï¤»\n" +"¤Ç¥æ¡¼¥¶¥¢¥¯¥»¥¹¸¢¤òɽ¤·¡¢¼¡¤Ë `+-=' ¤Î±é»»»Ò 1 ʸ»ú¤Ë¤è¤Ã¤ÆÊѹ¹Æ°ºî¤ò»ØÄê\n" +"¤·¡¢ºÇ¸å¤Ë 1 ʸ»úËô¤Ï¤½¤ì°Ê¾å¤Î `rwxXstugo' ¤Î¤¤¤º¤ì¤«¤Îʸ»ú¤ÎÁȹç¤ï¤»¤Ç\n" +"Êѹ¹¤¹¤ë°À­¤ò»ØÄꤹ¤ë¡£\n" + +#: src/chmod.c:320 +#, fuzzy, c-format +msgid "invalid character %s in mode string %s" +msgstr "´Ö°ã¤Ã¤¿Ê¸»ú `%c' ¤¬·¿»ØÄê `%s' ¤ÎÃæ¤Ë¤¢¤ê¤Þ¤¹" + +#: src/chmod.c:361 +#, fuzzy, c-format +msgid "invalid mode string: %s" +msgstr "·¿»ØÄ꤬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹ `%s'" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯ %s ¤â¤½¤Î»²¾ÈÀè¤âÊѹ¹¤µ¤ì¤Þ¤»¤ó¤Ç¤·¤¿\n" + +#: src/chown-core.c:143 +#, c-format +msgid "changed ownership of %s to %s\n" +msgstr "%s ¤Î½êÍ­¼Ô¤ò %s ¤ËÊѹ¹¤·¤Þ¤·¤¿\n" + +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "%s ¤Î¥°¥ë¡¼¥×¤ò %s ¤ËÊѹ¹¤·¤Þ¤·¤¿\n" + +#: src/chown-core.c:148 +#, fuzzy, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "%s ¤Î°À­¤òÊѹ¹¤Ç¤­¤Þ¤»¤ó" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "%s ¤Î¥°¥ë¡¼¥×¤ò %s ¤ËÊѹ¹¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿\n" + +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "%s ¤Î½êÍ­¼Ô¤Ï %s ¤Î¤Þ¤ÞÊÝᤵ¤ì¤Þ¤·¤¿\n" + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "%s ¤Î¥°¥ë¡¼¥×¤Ï %s ¤Î¤Þ¤ÞÊÝᤵ¤ì¤Þ¤·¤¿\n" + +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "%s ¤Î½êÍ­¸¢¤òÊѹ¹Ãæ" + +#: src/chown-core.c:327 +#, fuzzy, c-format +msgid "changing group of %s" +msgstr "%s ¤Î¥ª¡¼¥Ê¡¼¤È¥°¥ë¡¼¥×¤òÊѹ¹¤Ç¤­¤Þ¤»¤ó" + +#: src/chown-core.c:345 +#, fuzzy, c-format +msgid "unable to restore permissions of %s" +msgstr "%s ¤Î°À­¤òÊѹ¹¤Ç¤­¤Þ¤»¤ó" + +#: src/chown.c:99 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... LAST\n" +"¤â¤·¤¯¤Ï: %s [¥ª¥×¥·¥ç¥ó]... FIRST LAST\n" +"¤â¤·¤¯¤Ï: %s [¥ª¥×¥·¥ç¥ó]... FIRST INCREMENT LAST\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"³Æ¥Õ¥¡¥¤¥ë¤Î½êÍ­¼Ô¤ä¥°¥ë¡¼¥×¤ò OWNER ¤ä GROUP ¤ËÊѹ¹¤¹¤ë¡£\n" +"\n" +" -c, --changes verbose ƱÍͤÀ¤¬¡¢Êѹ¹¤¬À¸¤¸¤¿¤È¤­¤À¤±Êó¹ð¤¹¤ë\n" +" --dereference ¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤½¤Î¤â¤Î¤Ç¤Ï¤Ê¤¯¡¢\n" +" ³Æ¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯Àè¤Ë¸ú²Ì¤òÍ¿¤¨¤ë\n" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" ¤³¤³¤Ç»ØÄꤷ¤¿¸½ºß¤Î½êÍ­¼Ô¤ä¥°¥ë¡¼¥×¤È°ìÃפ·¤¿\n" +" ¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤Æ¤Î¤ß¡¢½êÍ­¼Ô¤ä¥°¥ë¡¼¥×¤òÊѹ¹¤¹¤ë¡£\n" +" ¤¤¤º¤ì¤«°ìÊý¤Ï¾Êά¤Ç¤­¤ë¡£¤½¤Î¾ì¹ç¡¢¾Êά¤µ¤ì¤¿Êý¤Î\n" +" °À­¤Ë¤Ä¤¤¤Æ¤Ï°ìÃפθ¡ºº¤ò¹Ô¤Ê¤ï¤Ê¤¤¡£\n" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet ËØ¤ó¤É¤Î¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸¤òÍÞÀ©¤¹¤ë\n" +" --reference=RFILE »ØÄꤵ¤ì¤¿ OWNER:GROUP ¤Ç¤Ï¤Ê¤¯¡¢RFILE ¤Î½êÍ­¼Ô¤È\n" +" ¥°¥ë¡¼¥×¤ò»È¤¦\n" +" -R, --recursive ¥Õ¥¡¥¤¥ë¤È¥Ç¥£¥ì¥¯¥È¥ê¤òºÆµ¢Åª¤ËÁàºî¤¹¤ë\n" +" -v, --verbose ¥Õ¥¡¥¤¥ë¤¬½èÍý¤µ¤ì¤ëËè¤Ë¿ÇÃÇ¥á¥Ã¥»¡¼¥¸¤ò½ÐÎϤ¹¤ë\n" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" +"\n" +"½ê¼Ô¤Î»ØÄ̵꤬¤¤¾ì¹ç¤Ë¤ÏÊѹ¹¤µ¤ì¤Þ¤»¤ó¡£¥°¥ë¡¼¥×¤Î»ØÄ̵꤬¤¤¾ì¹ç¤Ë¤Ï\n" +"Êѹ¹¤µ¤ì¤Þ¤»¤ó¤¬¡¢`:' ¤Ç¥°¥ë¡¼¥×¤ò°Å¼¨¤¹¤ë¤È¥í¥°¥¤¥ó¥°¥ë¡¼¥×¤ËÊѹ¹¤µ¤ì¤Þ" +"¤¹¡£\n" +"OWNER ¤È GROUP ¤Ï̾Á°¤Ç¤â¿ôÃͤǤ⹽¤¤¤Þ¤»¤ó\n" + +#: src/chroot.c:45 +#, fuzzy, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"»ÈÍÑË¡: %s [¥Õ¥¡¥¤¥ë]...\n" +"¤Þ¤¿¤Ï: %s [¥ª¥×¥·¥ç¥ó]\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" +"¥ë¡¼¥È¥Ç¥£¥ì¥¯¥È¥ê¤ò NEWROOT ¤ËÀßÄꤷ¤Æ¥³¥Þ¥ó¥É¤ò¼Â¹Ô.\n" +"\n" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" +"\n" +"¤â¤·¥³¥Þ¥ó¥É¤¬»ØÄꤵ¤ì¤Ê¤±¤ì¤Ð, ``${SHELL} -i'' ¤ò¼Â¹Ô (ɸ½à: /bin/sh).\n" + +#: src/chroot.c:84 +#, fuzzy, c-format +msgid "cannot change root directory to %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Ë°Üư¤Ç¤­¤Þ¤»¤ó" + +#: src/chroot.c:87 +#, fuzzy +msgid "cannot chdir to root directory" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Ë°Üư¤Ç¤­¤Þ¤»¤ó" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "%s: ¥Õ¥¡¥¤¥ë¤¬Ä¹¤¹¤®¤Þ¤¹" + +#: src/cksum.c:282 +#, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"»ÈÍÑË¡: %s [¥Õ¥¡¥¤¥ë]...\n" +"¤Þ¤¿¤Ï: %s [¥ª¥×¥·¥ç¥ó]\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" +"CRC ¥Á¥§¥Ã¥¯¥µ¥à¤È³Æ¡¹¤Î¥Õ¥¡¥¤¥ë¤Î¥Ð¥¤¥È¿ô¤òɽ¼¨.\n" +"\n" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "Richard Stallman ¤È David MacKenzie" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... ¥Õ¥¡¥¤¥ëA ¥Õ¥¡¥¤¥ëB\n" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" +"¤½¤ì¤¾¤ì¥½¡¼¥È¤µ¤ì¤¿ ¥Õ¥¡¥¤¥ëA ¤È ¥Õ¥¡¥¤¥ëB ¤È¤ò¹Ô¤´¤È¤ËÈæ³Ó¤·¤Þ¤¹.\n" +"\n" +" -1 ¥Õ¥¡¥¤¥ëA ¤À¤±¤Ë¤·¤«´Þ¤Þ¤ì¤Ê¤¤¹Ô¤Î½ÐÎϤòÍÞÀ©\n" +" -2 ¥Õ¥¡¥¤¥ëB ¤À¤±¤Ë¤·¤«´Þ¤Þ¤ì¤Ê¤¤¹Ô¤Î½ÐÎϤòÍÞÀ©\n" +" -3 ξÊý¤Î¥Õ¥¡¥¤¥ë¤Ë¶¦ÄÌ¤Ë´Þ¤Þ¤ì¤Æ¤¤¤ë¹Ô¤Î½ÐÎϤòÍÞÀ©\n" + +#: src/copy.c:162 src/du.c:332 +#, fuzzy, c-format +msgid "cannot access %s" +msgstr "%s ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "%s ¤ò ÆÉ¤ß¹þ¤ßÍѤǥª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, fuzzy, c-format +msgid "cannot fstat %s" +msgstr "Æü»þ¤òÀßÄê¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, fuzzy, c-format +msgid "cannot remove %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:277 +#, fuzzy, c-format +msgid "cannot create regular file %s" +msgstr "°ì»þ¥Õ¥¡¥¤¥ë¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, fuzzy, c-format +msgid "reading %s" +msgstr "%s ¤ÎÆÉ¤ß¹þ¤ß¥¨¥é¡¼" + +#: src/copy.c:362 +#, fuzzy, c-format +msgid "cannot lseek %s" +msgstr "%s: ¥ª¥Õ¥»¥Ã¥È %s%s ¤ò seek ¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, fuzzy, c-format +msgid "writing %s" +msgstr "%s ¤Î½ñ¤­¹þ¤ß¥¨¥é¡¼" + +#: src/copy.c:409 src/copy.c:415 +#, fuzzy, c-format +msgid "closing %s" +msgstr "%s ¤òÊĤ¸¤Æ¤¤¤Þ¤¹ (fd=%d)" + +#: src/copy.c:610 +#, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: %s ¤Î¥â¡¼¥É %04lo ¤ò̵»ë¤·¤Æ¾å½ñ¤­¤·¤Þ¤¹¤«¡© " + +#: src/copy.c:616 +#, c-format +msgid "%s: overwrite %s? " +msgstr "%s: %s ¤ò¾å½ñ¤­¤·¤Æ¤â¤è¤í¤·¤¤¤Ç¤¹¤«(yes/no)? " + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, fuzzy, c-format +msgid "cannot stat %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:820 +#, fuzzy, c-format +msgid "omitting directory %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "·Ù¹ð: ¥³¥Ô¡¼¸µ¥Õ¥¡¥¤¥ë %s ¤¬Ê£¿ô»ØÄꤵ¤ì¤Þ¤·¤¿" + +#: src/copy.c:866 src/ln.c:237 +#, c-format +msgid "%s and %s are the same file" +msgstr "%s ¤È %s ¤ÏƱ¤¸¥Õ¥¡¥¤¥ë¤Ç¤¹" + +#: src/copy.c:876 +#, fuzzy, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Ë°Üư¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:893 +#, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "¤¿¤Ã¤¿º£ºîÀ®¤·¤¿ %s ¤Ë¤Ï %s ¤Ç¾å½ñ¤­¤·¤Þ¤»¤ó" + +#: src/copy.c:904 +#, fuzzy, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:965 +#, fuzzy, c-format +msgid "cannot overwrite directory %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:974 +#, fuzzy, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Ë°Üư¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "%s ¤ò¥Ð¥Ã¥¯¥¢¥Ã¥×¤¹¤ë¤È¸µ¥Õ¥¡¥¤¥ë¤¬²õ¤ì¤Þ¤¹ -- %s ¤ò°Üư¤·¤Þ¤»¤ó¤Ç¤·¤¿" + +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "" +"%s ¤ò¥Ð¥Ã¥¯¥¢¥Ã¥×¤¹¤ë¤È¸µ¥Õ¥¡¥¤¥ë¤¬²õ¤ì¤Þ¤¹ -- %s ¤ò¥³¥Ô¡¼¤·¤Þ¤»¤ó¤Ç¤·¤¿" + +#: src/copy.c:1013 src/ln.c:273 +#, fuzzy, c-format +msgid "cannot backup %s" +msgstr "%s ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr " (¥Ð¥Ã¥¯¥¢¥Ã¥×: %s)" + +#: src/copy.c:1099 +#, fuzzy, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:1106 +#, fuzzy, c-format +msgid "will not create hard link %s to directory %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Ë°Üư¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:1132 +#, fuzzy, c-format +msgid "cannot create hard link %s to %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:1186 +#, fuzzy, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Ë°Üư¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:1229 +#, fuzzy, c-format +msgid "cannot move %s to %s" +msgstr "`%s' ¤Ç ioctl() ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "" + +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "½Û´Ä¤¹¤ë¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯ %s ¤Ï¥³¥Ô¡¼¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "%s: ¥«¥ì¥ó¥È¥Ç¥£¥ì¥¯¥È¥ê¾å¤Ç¤Î¤ßÁêÂÐ¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤¬¤Ç¤­¤Þ¤¹" + +#: src/copy.c:1353 +#, fuzzy, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:1364 +#, fuzzy, c-format +msgid "cannot create link %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, fuzzy, c-format +msgid "cannot create fifo %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:1403 +#, fuzzy, c-format +msgid "cannot create special file %s" +msgstr "¥­¥ã¥é¥¯¥¿¥¹¥Ú¥·¥ã¥ë¥Õ¥¡¥¤¥ë" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, fuzzy, c-format +msgid "cannot read symbolic link %s" +msgstr "¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯" + +#: src/copy.c:1440 +#, fuzzy, c-format +msgid "cannot create symbolic link %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, fuzzy, c-format +msgid "failed to preserve ownership for %s" +msgstr "%s ¤Î½êÍ­¼Ô¾ðÊó¤òÊÝÂ¸Ãæ" + +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "%s ¤Î¥Õ¥¡¥¤¥ë¥¿¥¤¥×¤¬ÉÔÌÀ¤Ç¤¹" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "%s ¤Î¥¿¥¤¥à¥¹¥¿¥ó¥×¤òÊÝÂ¸Ãæ" + +#: src/copy.c:1531 +#, fuzzy, c-format +msgid "failed to preserve authorship for %s" +msgstr "%s ¤Î½êÍ­¼Ô¾ðÊó¤òÊÝÂ¸Ãæ" + +#: src/copy.c:1549 +#, fuzzy, c-format +msgid "setting permissions for %s" +msgstr "%s ¤Î°À­¤òÊѹ¹¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:1571 src/ln.c:326 +#, fuzzy, c-format +msgid "cannot un-backup %s" +msgstr "%s ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s -> %s (Éü¸µ)\n" + +#: src/cp.c:53 +#, fuzzy +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie ¤ª¤è¤Ó Jim Meyering" + +#: src/cp.c:164 src/mv.c:311 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... LAST\n" +"¤â¤·¤¯¤Ï: %s [¥ª¥×¥·¥ç¥ó]... FIRST LAST\n" +"¤â¤·¤¯¤Ï: %s [¥ª¥×¥·¥ç¥ó]... FIRST INCREMENT LAST\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"SOURCE ¤«¤é DEST ¤Ø¡¢°¿¤¤¤Ï FILE (Ê£¿ô²Ä)¤ò DIRECTORY ¤Ø¥³¥Ô¡¼¤¹¤ë¡£\n" +"\n" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "Ť¤¥ª¥×¥·¥ç¥ó¤Ëɬ¿Ü¤Î°ú¿ô¤Ïû¤¤¥ª¥×¥·¥ç¥ó¤Ë¤âɬ¿Ü¤Ç¤¹.\n" + +#: src/cp.c:177 +#, fuzzy +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" +" -a, --archive -dpR ¤ÈƱ¤¸\n" +" --backup[=CONTROL] ´û¸¤Î¥³¥Ô¡¼Àè¥Õ¥¡¥¤¥ëËè¤Ë¥Ð¥Ã¥¯¥¢¥Ã¥×¤òºîÀ®\n" +" -b ¤Û¤Ü --backup ƱÅù¤À¤¬¡¢°ú¿ô¤ò¼è¤é¤Ê¤¤\n" +" -d --no-dereference --preserve=link ¤ÈƱ¤¸\n" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" +" --no-dereference ¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤òé¤é¤»¤Ê¤¤\n" +" -f, --force ´û¸¤Î¥³¥Ô¡¼Àè¥Õ¥¡¥¤¥ë¤¬³«¤±¤Ê¤¤¾ì¹ç¤Ë¤Ï¡¢\n" +" ºï½ü¤·¤ÆºÆÅÙ»î¤ß¤ë\n" +" -i, --interactive ¾å½ñ¤­¤¹¤ëÁ°¤Ë³Îǧ¤¹¤ë\n" +" -H ¥³¥Þ¥ó¥É¥é¥¤¥ó¤Î¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤òé¤ë\n" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" +" -l, --link ¥³¥Ô¡¼¤ÎÂå¤ê¤Ë¥Õ¥¡¥¤¥ë¤ò¥ê¥ó¥¯¤¹¤ë\n" +" -L, --dereference ¾ï¤Ë¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤òé¤ë\n" +" -p --preserve=mode,ownership,timestamps ¤ÈƱ¤¸\n" +" --preserve[=ATTR_LIST] »ØÄꤵ¤ì¤¿Â°À­¤ò°Ý»ý¤¹¤ë (¥Ç¥Õ¥©¥ë¥È:\n" +" mode,ownership,timestamps), ²Äǽ¤Ç¤¢¤ì¤Ð\n" +" ÄɲäǤ­¤ë°À­: links, all\n" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" +" --no-preserve=ATTR_LIST »ØÄꤵ¤ì¤¿Â°À­¤ò°Ý»ý¤·¤Ê¤¤\n" +" --parents ¥³¥Ô¡¼¸µ DIRECTORY ¤Ø¤Î¥Ñ¥¹¤òÉÕ¤±Â­¤¹\n" +" -P `--no-dereference' ¤ÈƱ¤¸\n" + +#: src/cp.c:204 +#, fuzzy +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" +" -r ºÆµ¢Åª¤Ë¥³¥Ô¡¼¡£Èó¥Ç¥£¥ì¥¯¥È¥ê¤Ï¥Õ¥¡¥¤¥ë¤È¤¹" +"¤ë\n" +" ·Ù¹ð: FIFO ¤ä /dev/zero ¤ÎÍÍ¤ÊÆÃ¼ì¥Õ¥¡¥¤¥ë\n" +" ¤ò¥³¥Ô¡¼¤¹¤ë¤È¤­¤ÏÂå¤ï¤ê¤Ë -R ¤ò»È¤¤¤Þ¤·¤ç" +"¤¦\n" +" --remove-destination ¥³¥Ô¡¼Àè¥Õ¥¡¥¤¥ë¤ò open ¤·¤è¤¦¤È¤¹¤ëÁ°¤Ë´û¸" +"¤Î\n" +" ¥Õ¥¡¥¤¥ë¤òºï½ü¤¹¤ë (--force ¤ÈÂÐÈæ¤·¤Þ¤·¤ç" +"¤¦)\n" + +#: src/cp.c:209 +#, fuzzy +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +" --reply={yes,no,query} °ÜưÀè¤Î´û¸¥Õ¥¡¥¤¥ë¤Ë´Ø¤¹¤ëÌ䤤¹ç¤ï¤»¤Î\n" +" °·¤¤Êý¤ò»ØÄꤹ¤ë\n" +" --strip-trailing-slashes ³Æ SOURCE °ú¿ô¤Î;ʬ¤ÊËöÈø¥¹¥é¥Ã¥·¥å¤ò¼è¤ê½ü" +"¤¯\n" +" -S, --suffix=SUFFIX Ä̾ï¤Î¥Ð¥Ã¥¯¥¢¥Ã¥×ÀÜÈø¼­¤ò¾å½ñ¤­¤¹¤ë\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" +" -s, --symbolic-link ¥³¥Ô¡¼¤ÎÂå¤ï¤ê¤Ë¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤òºîÀ®¤¹¤ë\n" +" -S, --suffix=SUFFIX Ä̾ï¤Î¥Ð¥Ã¥¯¥¢¥Ã¥×ÀÜÈø¼­¤ò¸ò´¹¤¹¤ë\n" +" --target-directory=DIRECTORY Á´¤Æ¤Î SOURCE °ú¿ô¤ò DIRECTORY ¤Ë°Üư¤¹" +"¤ë\n" + +#: src/cp.c:221 +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +" -u, --update SOURCE ¥Õ¥¡¥¤¥ë¤¬¥³¥Ô¡¼Àè¥Õ¥¡¥¤¥ë¤è¤ê¿·¤·¤¤" +"¤«\n" +" ¸ºß¤·¤Ê¤¤»þ¤À¤±¥³¥Ô¡¼¤¹¤ë\n" +" -v, --verbose ¼Â¹Ô¤µ¤ì¤¿¤³¤È¤òÀâÌÀ¤¹¤ë\n" +" -x, --one-file-system ¤³¤Î¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤À¤±¤Ç¼Â¹Ô¤¹¤ë\n" + +#: src/cp.c:230 +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +"\n" +"ÆÃ¤Ë»ØÄ꤬¤Ê¤±¤ì¤Ð¡¢Á¤é¤Ê SOURCE ¥Õ¥¡¥¤¥ë¤Ïȯ¸«Åª¼êË¡¤Ç¸¡½Ð¤µ¤ì¡¢Âбþ¤¹¤ë\n" +"DEST ¥Õ¥¡¥¤¥ë¤òÁ¤é¤Ê¥Õ¥¡¥¤¥ë¤È¤·¤ÆºîÀ®¤·¤Þ¤¹¡£¤³¤ì¤Ï `--sparse=auto'\n" +"¥ª¥×¥·¥ç¥ó¤ò¤Ä¤±¤¿¤È¤­¤Îưºî¤ÈƱ¤¸¤Ç¤¹¡£--sparse=always ¤ò»ØÄꤹ¤ë¤È¡¢\n" +"SOURCE ¥Õ¥¡¥¤¥ë¤¬½½Ê¬Ä¹¤¤¥Ð¥¤¥ÈÎó¤ò´Þ¤ó¤Ç¤¤¤ë¤È¤­¤Ë¤Ï¡¢¾ï¤ËÁ¤é¤Ê¥Õ¥¡¥¤¥ë\n" +"¤È¤·¤ÆºîÀ®¤·¤Þ¤¹¡£\n" +"Á¤é¤Ê¥Õ¥¡¥¤¥ë¤òºî¤ê¤¿¤¯¤Ê¤±¤ì¤Ð¡¢--sparse=never ¤ò»È¤¤¤Þ¤·¤ç¤¦¡£\n" +"\n" + +#: src/cp.c:239 +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"¥Ð¥Ã¥¯¥¢¥Ã¥×ÀÜÈø¼­¤Ï¡¢--suffix ¤ä SIMPLE_BACKUP_SUFFIX ¤¬ÀßÄꤵ¤ì¤Ê¤¤¤È `~' " +"¤Ë\n" +"¤Ê¤ê¤Þ¤¹¡£¥Ð¡¼¥¸¥ç¥ó´ÉÍýÊýË¡¤Ï --backup ¥ª¥×¥·¥ç¥ó¤ä VERSION_CONTROL ´Ä¶­ÊÑ" +"¿ô\n" +"¤òÄ̤¸¤ÆÁªÂò¤Ç¤­¤Þ¤¹¡£°Ê²¼¤¬¤½¤ÎºÝ¤ÎÃͤǤ¹:\n" +"\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +" none, off ¥Ð¥Ã¥¯¥¢¥Ã¥×¤òºî¤é¤Ê¤¤ (--backup ¤ò¤Ä¤±¤¿»þ¤Ç¤â)\n" +" numbered, t ÈÖ¹æ¤Ä¤­¥Ð¥Ã¥¯¥¢¥Ã¥×¤òºîÀ®¤¹¤ë\n" +" existing, nil ÈÖ¹æ¤Ä¤­¥Ð¥Ã¥¯¥¢¥Ã¥×¤¬¤¢¤ì¤ÐÈÖ¹æ¤Ä¤­¡¢\n" +" ¤½¤¦¤Ç¤Ê¤±¤ì¤Ð¡¢simple ¤Ç\n" +" simple, never ¾ï¤Ë´Ê°×¥Ð¥Ã¥¯¥¢¥Ã¥×¤òºîÀ®\n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +"ÆÃÊ̤ʾì¹ç¤È¤·¤Æ¡¢cp ¤Ï -f ¤È -b ¥ª¥×¥·¥ç¥ó¤¬Í¿¤¨¤é¤ì¡¢SOURCE ¤È DEST ¤¬\n" +"Ʊ°ì¥Õ¥¡¥¤¥ë¤Ç¤¢¤ë»þ¤Ï¡¢SOURCE ¤Î¥Ð¥Ã¥¯¥¢¥Ã¥×¤òºîÀ®¤¹¤ë¡£\n" + +#: src/cp.c:325 +#, fuzzy, c-format +msgid "failed to preserve times for %s" +msgstr "%s ¤Î¥¿¥¤¥à¥¹¥¿¥ó¥×¤òÊÝÂ¸Ãæ" + +#: src/cp.c:349 +#, fuzzy, c-format +msgid "failed to preserve permissions for %s" +msgstr "%s ¤Î°À­¤òÊѹ¹¤Ç¤­¤Þ¤»¤ó" + +#: src/cp.c:434 +#, fuzzy, c-format +msgid "cannot make directory %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +#, fuzzy +msgid "missing file argument" +msgstr "¥¹¥­¥Ã¥×¿ô»ØÄê¤Î°ú¿ô" + +#: src/cp.c:498 +#, fuzzy +msgid "missing destination file" +msgstr "¥Õ¥£¡¼¥ë¥É¤Î¥ê¥¹¥È¤¬¤¢¤ê¤Þ¤»¤ó" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "%s ¤Ë¥¢¥¯¥»¥¹Ãæ" + +#: src/cp.c:546 +#, fuzzy, c-format +msgid "%s: specified target is not a directory" +msgstr "%s ¤Ï¸ºß¤·¤Þ¤¹¤¬¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" + +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "Ê£¿ô¥Õ¥¡¥¤¥ë¤Î¥³¥Ô¡¼¤Ç¤¹¤¬¡¢ºÇ¸å¤Î°ú¿ô %s ¤¬¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "¥Ñ¥¹¤òÊݸ¤¹¤ë¾ì¹ç¡¢»ØÄêÀè¤Ï¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤Ê¤¯¤Æ¤Ï¤Ê¤ê¤Þ¤»¤ó" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, fuzzy, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"·Ù¹ð: -i ¤Ï¾­Íè¤Î¥ê¥ê¡¼¥¹¤Ç¤Ïºï½ü¤µ¤ì¤Þ¤¹. Âå¤ï¤ê¤Ë -u ¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤" + +#: src/cp.c:972 src/ln.c:464 +#, fuzzy +msgid "symbolic links are not supported on this system" +msgstr "·Ù¹ð: --pid=PID ¤Ï¤³¤Î¥·¥¹¥Æ¥à¤Ç¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "¥Ï¡¼¥É¥ê¥ó¥¯¤â¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤âºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×¥¿¥¤¥×" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "Stuart Kemp ¤È David MacKenzie" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "ÆÉ¤ß¹þ¤ß¥¨¥é¡¼" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "ÆþÎϤ¬Ìµ¤¯¤Ê¤ê¤Þ¤·¤¿" + +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s: Èϰϳ°¤Î¹ÔÈÖ¹æ" + +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: `%s': Èϰϳ°¤Î¹ÔÈÖ¹æ" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr ": ·«¤êÊÖ¤· %d ²óÌÜ\n" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s: `%s': °ìÃפ·¤Þ¤»¤ó" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "Àµµ¬É½¸½¤Ë¤è¤ë¸¡º÷Ãæ¤Î¥¨¥é¡¼" + +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "`%s' ¤Ø¤Î½ñ¤­¹þ¤ß¥¨¥é¡¼" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "%s: ¥Ç¥ê¥ß¥¿(`/') ¤Î¼¡¤Ë¤Ï `+',`-' ÉÕ¤­¤ÎÀ°¿ôÃͤò»ØÄꤷ¤Æ²¼¤µ¤¤" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s: `%c' ¤Î¼¡¤Ë¤ÏÀ°¿ôÃͤò»ØÄꤷ¤Æ²¼¤µ¤¤" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "%s: ·«¤êÊÖ¤·¥«¥¦¥ó¥È¤Ë¤Ï `}' ¤¬É¬ÍפǤ¹" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "%s}: `{' ¤È `}' ¤Î´Ö¤Ë¤ÏÀ°¿ôÃͤ¬É¬ÍפǤ¹" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s: ½ªÃ¼¥Ç¥ê¥ß¥¿(`%c')¤¬·ç¤±¤Æ¤¤¤Þ¤¹" + +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: ̵¸ú¤ÊÀµµ¬É½¸½¤Ç¤¹: %s" + +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "%s: ̵¸ú¤Ê¥Ñ¥¿¡¼¥ó»ØÄê¤Ç¤¹" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s: ¹ÔÈÖ¹æ¤Ï¥¼¥í¤è¤êÂ礭¤¤¿ô¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "¹ÔÈÖ¹æ `%s' ¤¬ %s ¤è¤ê¤â½ç½ø¤¬Á°¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "·Ù¹ð: ¹ÔÈÖ¹æ `%s' ¤¬Æ±¤¸¹ÔÈÖ¹æ¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "ËöÈø¤ÎÊÑ´¹½¤¾þ»Ò¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó" + +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "ËöÈø¤ÎÊÑ´¹½¤¾þ»Ò¤¬Ìµ¸ú¤Ç¤¹: %c" + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "ËöÈø¤ÎÊÑ´¹½¤¾þ»Ò¤¬Ìµ¸ú¤Ç¤¹: \\%.3o" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "ËöÈø¤Î %% ÊÑ´¹½¤¾þ»Ò¤¬Ìµ¸ú¤Ç¤¹" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "ËöÈø¤Î %% ÊÑ´¹½¤¾þ»Ò¤¬Â¿¤¹¤®¤Þ¤¹" + +#: src/csplit.c:1441 +#, c-format +msgid "%s: invalid number" +msgstr "%s: ̵¸ú¤ÊÈÖ¹æ¤Ç¤¹" + +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... ¥Õ¥¡¥¤¥ë ¥Ñ¥¿¡¼¥ó...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" +"»ØÄꤵ¤ì¤¿¥Õ¥¡¥¤¥ë¤ò¥Ñ¥¿¡¼¥ó¤Ë¤è¤Ã¤ÆÊ¬³ä¤·¤¿¥Õ¥¡¥¤¥ë `xx01', `xx02', ...,\n" +"¤ò½ÐÎϤ·, ¤½¤ì¤é¤Îʬ³ä¤·¤¿¥Õ¥¡¥¤¥ë¤Î³Æ¡¹¤Î¥Ð¥¤¥È¿ô¤òɸ½à½ÐÎϤ˽ÐÎÏ.\n" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" +" -b, --suffix-format=FORMAT %d ¤ÎÂå¤ï¤ê¤Ë sprintf ¤Î FORMAT ¤ò»È¤¦\n" +" -f, --prefix=PREFIX `xx' ¤ÎÂå¤ï¤ê¤Ë PREFIX ¤ò»È¤¦\n" +" -k, --keep-files ¥¨¥é¡¼»þ¤Ë½ÐÎÏ¥Õ¥¡¥¤¥ë¤òºï½ü¤·¤Ê¤¤\n" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" +" -n, --digits=DIGITS 2 ¤ÎÂå¤ï¤ê¤Ë»ØÄꤵ¤ì¤¿¿ô»ú¤ò»È¤¦\n" +" -s, --quiet, --silent ½ÐÎÏ¥Õ¥¡¥¤¥ë¤ÎÂ礭¤µ¤òɽ¼¨¤·¤Ê¤¤\n" +" -z, --elide-empty-files ¶õ¤Î½ÐÎÏ¥Õ¥¡¥¤¥ë¤òºï½ü\n" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" +"\n" +"¥Õ¥¡¥¤¥ë¤¬ - ¤Ê¤é¤Ðɸ½àÆþÎϤòÆÉ¤ß¹þ¤ß¤Þ¤¹. ³Æ¡¹¤Î¥Ñ¥¿¡¼¥ó¤Ï:\n" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" +"\n" +" ¹Ô¿ô »ØÄê¹Ô¤ÎľÁ°¤Þ¤Ç(¤½¤Î¹Ô¤Ï´Þ¤Þ¤ì¤Ê¤¤)¤ò½ñ¤­¹þ¤à\n" +" /Àµµ¬É½¸½/[¥ª¥Õ¥»¥Ã¥È] °ìÃפ¹¤ë¹Ô¤ÎľÁ°¤Þ¤Ç¤ò½ñ¤­¹þ¤à\n" +" %%Àµµ¬É½¸½%%[¥ª¥Õ¥»¥Ã¥È] °ìÃפ¹¤ë¹Ô¤ÎľÁ°¤Þ¤Ç¤ò¥¹¥­¥Ã¥×\n" +" {À°¿ôÃÍ} ľÁ°¤Î¥Ñ¥¿¡¼¥ó¤ò»ØÄꤷ¤¿¿ô¤À¤±·«¤êÊÖ¤¹\n" +" {*} ľÁ°¤Î¥Ñ¥¿¡¼¥ó¤ò²Äǽ¤Ê¤À¤±·«¤êÊÖ¤¹\n" +"\n" +"¥ª¥Õ¥»¥Ã¥È¤Î»ØÄê¤Ë¤Ï `+' ¤Þ¤¿¤Ï `-' ¤ËÀµ¤ÎÀ°¿ôÃͤò³¤±¤Æ»ØÄꤷ¤Þ¤¹.\n" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie ¤ª¤è¤Ó Jim Meyering" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... [¥Õ¥¡¥¤¥ë]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" +"¥Õ¥¡¥¤¥ë¤Î³Æ¹Ô¤«¤éÁªÂò¤·¤¿Éôʬ¤À¤±¤òÀÚ¤ê½Ð¤·¤Æ, ɸ½à½ÐÎϤËɽ¼¨¤·¤Þ¤¹.\n" +"\n" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" +" -b, --bytes=LIST LIST ¤Ë»ØÄꤷ¤¿¥Ð¥¤¥È°ÌÃÖ¤Îʸ»ú¤ò½ÐÎÏ\n" +" -c, --characters=LIST LIST ¤Ë»ØÄꤷ¤¿Ê¸»ú°ÌÃÖ¤À¤±¤ò½ÐÎÏ\n" +" -d, --delimiter=DELIM ¥Õ¥£¡¼¥ë¥É¤Î¶èÀÚ¤êʸ»ú¤ò TAB ¤ÎÂå¤ï¤ê¤Ë DELIM ¤Ë\n" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" +" -f, --fields=LIST LIST ¤Ë»ØÄꤷ¤¿¥Õ¥£¡¼¥ë¥É¤À¤±¤ò½ÐÎÏ; -s ¥ª¥×¥·¥ç" +"¥ó\n" +" ¤¬»ØÄꤵ¤ì¤Ê¤±¤ì¤Ð, ¶èÀÚ¤êʸ»ú¤ò´Þ¤à¹Ô¤âɽ¼¨\n" +" -n (̵»ë)\n" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" +" -s, --only-delimited ¶èÀÚ¤êʸ»ú¤ò´Þ¤Þ¤Ê¤¤¹Ô¤ò½ÐÎϤµ¤»¤Ê¤¤\n" +" --output-delimiter=STRING ½ÐÎϤζèÀÚ¤êʸ»ú¤È¤·¤Æ STRING ¤ò»ÈÍÑ\n" +" ¥Ç¥Õ¥©¥ë¥È¤Ç¤ÏÆþÎϤζèÀÚ¤êʸ»ú¤ò»ÈÍÑ\n" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"-b, -c, -f ¥ª¥×¥·¥ç¥ó¤ÎÆâ, ¾¯¤Ê¤¯¤È¤â°ì¤Ä¤Ï»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹. LIST \n" +"¤Ë¤Ï°Ê²¼¤Î½ñ¼°¤Ë¤è¤êÀÚ¤ê½Ð¤·ÈϰϤò»ØÄꤷ¤Þ¤¹. ÈϰϤλØÄê¤ÎºÝ¤Ë¤Ï, ¥«¥ó¥Þ(,)\n" +"¤ò»È¤Ã¤Æ, ÈϰϤòÍåÎ󤹤뤳¤È¤â¤Ç¤­¤Þ¤¹.\n" +"\n" +" N ¹ÔƬ¤ò 1 ¤È¤·¤Æ, N ÈÖÌܤΰÌÃ֤ˤ¢¤ë°ÌÃÖ, ʸ»ú¤Þ¤¿¤Ï¥Õ¥£¡¼¥ë¥É¤ò»ØÄê\n" +" N- N ÈÖÌܤΰÌÃÖ, ʸ»ú¤Þ¤¿¤Ï¥Õ¥£¡¼¥ë¥É¤«¤é¹ÔËö¤Þ¤Ç¤ò»ØÄê\n" +" N-M N ÈÖÌܤ«¤é M ÈÖÌÜ(¤³¤ì¤â´Þ¤á¤Æ)¤Þ¤Ç¤Î°ÌÃÖ, ʸ»ú¤Þ¤¿¤Ï¥Õ¥£¡¼¥ë¥É¤ò»Ø" +"Äê\n" +" -M ¹ÔƬ¤«¤é M ÈÖÌÜ(¤³¤ì¤â´Þ¤á¤Æ)¤Þ¤Ç¤Î°ÌÃÖ, ʸ»ú¤Þ¤¿¤Ï¥Õ¥£¡¼¥ë¥É¤ò»ØÄê\n" +"\n" +"¥Õ¥¡¥¤¥ë¤Î»ØÄ꤬¤Ê¤«¤Ã¤¿¤ê, `-'¤Ç¤¢¤Ã¤¿¾ì¹ç, ɸ½àÆþÎϤ«¤éÆÉ¤ß¹þ¤ß¤Þ¤¹.\n" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "¥Ð¥¤¥È¿ô¤â¤·¤¯¤Ï¥Õ¥£¡¼¥ë¥É¤ÎÈϰϻØÄ꤬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "ÀÚ¤ê½Ð¤·Êý¤È¤·¤Æ»ØÄê¤Ç¤­¤ë¤Î¤Ï 1 ¼ïÎà¤À¤±¤Ç¤¹" + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "°ÌÃÖ»ØÄê¥ê¥¹¥È¤¬¤¢¤ê¤Þ¤»¤ó" + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "¥Õ¥£¡¼¥ë¥É¤Î¥ê¥¹¥È¤¬¤¢¤ê¤Þ¤»¤ó" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "¶èÀÚ¤êʸ»ú¤Ë»ØÄê¤Ç¤­¤ë¤Î¤Ï 1 ʸ»ú¤À¤±¤Ç¤¹" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "¥Ð¥¤¥È, ʸ»ú, ¤â¤·¤¯¤Ï¥Õ¥£¡¼¥ë¥É¤Î¥ê¥¹¥È¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤" + +#: src/cut.c:720 +#, fuzzy +msgid "an input delimiter may be specified only when operating on fields" +msgstr "¥Õ¥£¡¼¥ë¥É¤ò»ØÄꤷ¤Æ¼Â¹Ô¤¹¤ë¾ì¹ç¤Ë¤Î¤ß, ¶èÀÚ¤êʸ»ú¤¬»ØÄê¤Ç¤­¤Þ¤¹" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" +"¶èÀÚ¤é¤ì¤Æ¤¤¤Ê¤¤¹Ô¤ÎÍÞÀ©¤¬Í­¸ú¤Ê¤Î¤Ï, \n" +"\t¥Õ¥£¡¼¥ë¥É¤ò»ØÄꤷ¤Æ¼Â¹Ô¤¹¤ë¤È¤­¤À¤±¤Ç¤¹" + +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" +"»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... [+¥Õ¥©¡¼¥Þ¥Ã¥È]\n" +"¤â¤·¤¯¤Ï: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" +"»ØÄꤵ¤ì¤¿¥Õ¥©¡¼¥Þ¥Ã¥È¤Ç¸½ºß¤Î»þ¹ï¤òɽ¼¨, ¤â¤·¤¯¤Ï¥·¥¹¥Æ¥à»þ¹ï¤òÀßÄê.\n" +"\n" +" -d, --date=STRING ¸½ºß¤Ç¤Ê¤¯, STRING ¤Ç»ØÄꤵ¤ì¤¿»þ¹ï¤òɽ¼¨\n" +" -f, --file=DATEFILE DATEFILE ¤Î³Æ¹Ô¤ËÂФ·¤Æ --date ¤Î¤è¤¦¤Ëɽ¼¨\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] ISO 8601 ·Á¼°¤ÇÆüÉÕ¤ä»þ¹ï¤ò½ÐÎÏ.\n" +" ÆüÉդΤߤʤé TIMESPEC=`date', ÆüÉդȻþ¹ï¤Ê¤é\n" +" `hours', `minutes', `seconds' ¤Î¤¤¤º¤ì¤«¤òɽ¼¨\n" +" ¤·¤¿¤¤ÀºÅ٤ޤǻØÄê.\n" +" TIMESPEC ¤Ê¤·¤Î --iso-8601 ¤Ïɸ½à¤Ç `date'.\n" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" +" -r, --reference=FILE FILE ¤ÎºÇ½ª¹¹¿·»þ¹ï¤òɽ¼¨\n" +" -R, --rfc-822 RFC-822 ¤Ë½àµò¤·¤¿ÆüÉÕʸ»úÎó¤ò½ÐÎϤ¹¤ë\n" +" -s, --set=STRING »þ¹ï¤ò STRING ¤ËÀßÄꤹ¤ë\n" +" -u, --utc, --universal UTC (¶¨ÄêÀ¤³¦»þ) ¤Ç¤Îɽ¼¨¤Þ¤¿¤ÏÀßÄê\n" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" +"\n" +"¥Õ¥©¡¼¥Þ¥Ã¥È¤Ç½ÐÎϤòÀ©¸æ¤·¤Þ¤¹. 2ÈÖÌܤηÁ¼°¤ÇÍ­¸ú¤Ê¥ª¥×¥·¥ç¥ó¤Ï¶¨ÄêÀ¤³¦»þ\n" +"(UTC) ¤ò»ØÄꤹ¤ë¤â¤Î¤À¤±¤Ç¤¹. ²ò¼á¤Ç¤­¤ë¥·¡¼¥±¥ó¥¹¤Ï°Ê²¼¤Î¤â¤Î¤Ç¤¹:\n" +"\n" +" %% ʸ»ú %\n" +" %a ¥í¥±¡¼¥ëɽ¼¨¤Ë¤è¤ëÍËÆü̾¤Îû½Ì·Á (Sun¡ÁSat)\n" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" +" %A ¥í¥±¡¼¥ëɽ¼¨¤Ë¤è¤ëÍËÆü̾¤ÎÈóû½Ì·Á (Sunday¡ÁSaturday)\n" +" %b ¥í¥±¡¼¥ëɽ¼¨¤Ë¤è¤ë·î̾¤Îû½Ì·Á (Jan¡ÁDec)\n" +" %B ¥í¥±¡¼¥ëɽ¼¨¤Ë¤è¤ë·î̾¤ÎÈóû½Ì·Á (January¡ÁDecember)\n" +" %c ¥í¥±¡¼¥ëɽ¼¨¤Ë¤è¤ëÆüÉդȻþ¹ï (Sat Nov 04 12:02:33 EST 1989)\n" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" +" %C À¤µª (À¾Îñ¤ò 100 ¤Ç³ä¤Ã¤ÆÀ°¿ô¤ËÀÚ¤êµÍ¤á¤¿¤â¤Î) [00-99]\n" +" %d Æü (01¡Á31)\n" +" %D ÆüÉÕ (mm/dd/yy)\n" +" %e ¾å°Ì·å¤ò¥¹¥Ú¡¼¥¹¤ÇËä¤á¤¿Æü ( 1¡Á31)\n" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" +" %F %Y-%m-%d ¤ÈƱ¤¸\n" +" %g %V ¤Î½µÈÖ¹æ¤ËÂбþ¤·¤¿ 2·å¤Îǯ\n" +" %G %V ¤Î½µÈÖ¹æ¤ËÂбþ¤·¤¿ 4·å¤Îǯ\n" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" +" %h %b ¤ÈƱ¤¸\n" +" %H »þ (00¡Á23)\n" +" %I »þ (01¡Á12)\n" +" %j ǯÆüÉÕ (001¡Á366)\n" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" +" %k »þ ( 0¡Á23)\n" +" %l »þ ( 1¡Á12)\n" +" %m ·î (01¡Á12)\n" +" %M ʬ (00¡Á59)\n" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" +" %n ²þ¹Ô\n" +" %N ¥Ê¥ÎÉà (000000000¡Á999999999)\n" +" %p ¥í¥±¡¼¥ëɽ¼¨¤Ë¤è¤ëÂçʸ»ú¤Î¸áÁ°(AM), ¸á¸å(PM) (¿¤¯¤Î¥í¥±¡¼¥ë¤Ç¤Ï¶õ)\n" +" %P ¥í¥±¡¼¥ëɽ¼¨¤Ë¤è¤ë¾®Ê¸»ú¤Î¸áÁ°(am), ¸á¸å(pm) (¿¤¯¤Î¥í¥±¡¼¥ë¤Ç¤Ï¶õ)\n" +" %r »þ¹ï, 12»þ´Öɽ¼¨ (hh:mm:ss [AP]M)\n" +" %R »þ¹ï, 24»þ´Öɽ¼¨ (hh:mm)\n" +" %s `00:00:00 1970-01-01 UTC' ¤«¤é¤Î·Ð²á»þ´Ö[ÉÃ] (GNU ÈdzÈÄ¥)\n" + +#: src/date.c:187 +#, fuzzy +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" +" %S Éà (00¡Á60)\n" +" %t ¿åÊ¿¥¿¥Ö\n" +" %T »þ¹ï, 24»þ´Öɽ¼¨ (hh:mm:ss)\n" +" %u ÍËÆü (1¡Á7). 1 ¤Ï·îÍË\n" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" +" %U ÆüÍˤò½µ»Ï¤á¤È¤·¤¿Ç¯´Ö¤Î½µÈÖ¹æ (00¡Á53)\n" +" %V ·îÍˤò½µ»Ï¤á¤È¤·¤¿Ç¯´Ö¤Î½µÈÖ¹æ (01¡Á53)\n" +" %w ÍËÆü (0¡Á6). 0 ¤ÏÆüÍË\n" +" %W ·îÍˤò½µ»Ï¤á¤È¤·¤¿Ç¯´Ö¤Î½µÈÖ¹æ (00¡Á53)\n" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" +" %x ¥í¥±¡¼¥ëɽ¼¨¤Ë¤è¤ëÆüÉÕ (mm/dd/yy)\n" +" %X ¥í¥±¡¼¥ëɽ¼¨¤Ë¤è¤ë»þ¹ï (%H:%M:%S)\n" +" %y ǯ¤Î²¼2·åɽ¼¨ (00¡Á99)\n" +" %Y ǯ (1970¡Á)\n" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" +" %z RFC-822 ·Á¼°¤Î¿ô»ú¤Ë¤è¤ë¥¿¥¤¥à¥¾¡¼¥ó (-0500) (Èóɸ½à³ÈÄ¥)\n" +" %Z ¥¿¥¤¥à¥¾¡¼¥ó (Îã EDT), ¥¿¥¤¥à¥¾¡¼¥ó¤¬·è¤á¤é¤ì¤Ê¤¤¾ì¹ç¤Ï²¿¤âɽ¼¨¤·¤Ê" +"¤¤\n" +"\n" +"ɸ½à¤Ç¤Ï, date ¥³¥Þ¥ó¥É¤Ï¿ôÃÍÍó¤ò¥¼¥í¤ÇËä¤á¤Þ¤¹. GNU date ¥³¥Þ¥ó¥É¤Ç¤Ï,\n" +"`%' ¤È¿ôÃÍɽ¼¨Ì¿Îá¤Î´Ö¤Ë°Ê²¼¤Î½¤¾þµ­¹æ¤ò»ØÄꤹ¤ë¤³¤È¤¬½ÐÍè¤Þ¤¹.\n" +"\n" +" `-' (¥Ï¥¤¥Õ¥ó) Íó¤òËä¤á¤Ê¤¤\n" +" `_' (²¼Àþ) Íó¤ò¥¹¥Ú¡¼¥¹¤ÇËä¤á¤ë\n" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "ɸ½àÆþÎÏ" + +#: src/date.c:268 src/date.c:460 +#, fuzzy, c-format +msgid "invalid date `%s'" +msgstr "Éý `%s' ¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó" + +#: src/date.c:364 +#, fuzzy +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "¥ª¥×¥·¥ç¥ó --string ¤È --check ¤ÏÇÓ¾Ū¤Ë»È¤ï¤ì¤Þ¤¹" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "ɽ¼¨¥ª¥×¥·¥ç¥ó¤ÈÀßÄꥪ¥×¥·¥ç¥ó¤ÏƱ»þ¤Ë»ØÄê¤Ç¤­¤Þ¤»¤ó" + +#: src/date.c:377 +#, fuzzy, c-format +msgid "too many non-option arguments: %s%s" +msgstr "È󥪥ץ·¥ç¥ó°ú¿ô¤Î¿ô¤¬Â¿¤¹¤®¤Þ¤¹" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" +"°ú¿ô `%s' ¤ÎÀèÆ¬¤Ë `+' ¤¬¤¢¤ê¤Þ¤»¤ó;\n" +"Æü»þ¤ò»ØÄꤹ¤ë¥ª¥×¥·¥ç¥ó¤ò»È¤¦¤È¤­¤Ï, ¥ª¥×¥·¥ç¥ó°Ê³°¤Î°ú¿ô¤Ï `+'\n" +"¤Ç»Ï¤Þ¤ë¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" + +#: src/date.c:397 +#, fuzzy +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "--string ¥ª¥×¥·¥ç¥ó¤òÍøÍѤ¹¤ë¤È¤­¤Ï, ¥Õ¥¡¥¤¥ë¤ò»ØÄê¤Ç¤­¤Þ¤»¤ó" + +#: src/date.c:433 +msgid "undefined" +msgstr "ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" + +#: src/date.c:435 +#, fuzzy +msgid "cannot get time of day" +msgstr "Ê£¿ô¤Îʬ³äÊýË¡¤Ï»ØÄê¤Ç¤­¤Þ¤»¤ó" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "Æü»þ¤òÀßÄê¤Ç¤­¤Þ¤»¤ó" + +#: src/dd.c:43 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "Paul Rubin ¤È David MacKenzie" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó] [¥Õ¥¡¥¤¥ë]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" +"¥ª¥×¥·¥ç¥ó»ØÄê¤Ë±þ¤¸¤¿ÊÑ´¹¡¦·Á¼°¤Ç¥Õ¥¡¥¤¥ë¤ò¥³¥Ô¡¼¤·¤Þ¤¹¡£\n" +"\n" +" bs=BYTES ibs=BYTES µÚ¤Ó obs=BYTES ¤Ë¶¯À©¤¹¤ë\n" +" cbs=BYTES °ìÅÙ¤Ë BYTES ¥Ð¥¤¥Èʬ¤ÎÊÑ´¹¤ò¹Ô¤¦\n" +" conv=KEYWORDS ¥«¥ó¥Þ¶èÀÚ¤ê¤Î KEYWORDS ¥ê¥¹¥ÈËè¤Ë¥Õ¥¡¥¤¥ë¤òÊÑ´¹¤¹¤ë\n" +" count=BLOCKS ÆþÎÏ¥Õ¥¡¥¤¥ë¤Î BLOCKS ¤Îʬ¤À¤±¥³¥Ô¡¼¤¹¤ë\n" +" ibs=BYTES °ìÅÙ¤Ë BYTES ¥Ð¥¤¥ÈʬÆÉ¤ß¹þ¤à\n" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" +" if=FILE ɸ½àÆþÎϤÎÂå¤ê¤Ë FILE ¤«¤éÆÉ¤ß¹þ¤à\n" +" obs=BYTES °ìÅÙ¤Ë BYTES ¥Ð¥¤¥Èʬ½ñ¤­¹þ¤à\n" +" of=FILE ɸ½à½ÐÎϤÎÂå¤ê¤Ë FILE ¤Ø½ñ¤­¹þ¤à\n" +" seek=BLOCKS ¥µ¥¤¥º¤¬ obs ¤Î BLOCKS ʬ½ñ¹þ¤ß³«»Ï°ÌÃÖ¤ò¥¹¥­¥Ã¥×\n" +" skip=BLOCKS ¥µ¥¤¥º¤¬ ibs ¤Î BLOCKS ʬÆÉ¹þ¤ß³«»Ï°ÌÃÖ¤ò¥¹¥­¥Ã¥×\n" + +#: src/dd.c:307 +#, fuzzy +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" +"\n" +"BLOCKS ¤ä BYTES ¤Ë¤Ï¡¢°Ê²¼¤Î¤è¤¦¤ÊÇÜ¿ô»ìÀÜÈø¼­¤ò»ØÄê¤Ç¤­¤Þ¤¹:\n" +"xM M, c 1, w 2, b 512, kD 1000, k 1024, MD 1,000,000, M 1,048,576,\n" +"GD 1,000,000,000, G 1,073,741,824, ¤½¤Î¾¤Ë T, P, E, Z, Y ¤Ê¤É¡£\n" +"KEYWORD ¤Ë¤Ï°Ê²¼¤Î¤â¤Î¤ò»È¤¨¤Þ¤¹:\n" +"\n" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" +" ascii EBCDIC ¤«¤é ASCII ¤Ø\n" +" ebcdic ASCII ¤«¤é EBCDIC ¤Ø\n" +" ibm ASCII ¤«¤éIBM(alternated) EBCDIC ¤Ø\n" +" block ²þ¹Ô¶èÀÚ¤ê¥ì¥³¡¼¥É¤ò cbs ¥µ¥¤¥º¤Î¶õÇò¤òËä¤á¤ë\n" +" unblock ËöÈø¤Î¶õÇòÎó¤ò¤ò²þ¹Ô¤ÇÃÖ¤­´¹¤¨¤ë\n" +" lcase ±ÑÂçʸ»ú¤ò±Ñ¾®Ê¸»ú¤ËÊÑ´¹¤¹¤ë\n" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" +" notrunc ½ÐÎÏ¥Õ¥¡¥¤¥ë¤òÀÚ¤êµÍ¤á¤Ê¤¤\n" +" ucase ±Ñ¾®Ê¸»ú¤ò±ÑÂçʸ»ú¤ËÊÑ´¹¤¹¤ë\n" +" swab ÆþÎϤ·¤¿Á´¤Æ¤Î 2 ¥Ð¥¤¥È¤ÎÁȤò¤½¤ì¤¾¤ì¸ò´¹¤¹¤ë\n" +" noerror ÆþÎÏ¥¨¥é¡¼¤¬À¸¤¸¤Æ¤â½èÍý¤ò³¤±¤ë\n" +" sync ³ÆÆþÎÏ¥Ö¥í¥Ã¥¯¤¬ ibs ¤ÎÂ礭¤µ¤Ë¤Ê¤ë¤è¤¦¤Ë NUL ¤ÇËä¤á¤ë\n" +" - block, unblock ¤È¶¦¤Ë»È¤¦¤È NUL ¤Ç¤Ï¤Ê¤¯¶õÇò¤ÇËä¤á¤ë\n" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "ÆÉ¤ß¹þ¤ó¤À¥Ö¥í¥Ã¥¯¿ô¤Ï %s+%s\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "½ñ¤­¹þ¤ó¤À¥Ö¥í¥Ã¥¯¿ô¤Ï %s+%s\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "ÀÚ¤êµÍ¤á¤é¤ì¤¿½ñ¤­¹þ¤ß" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "ÀÚ¤êµÍ¤á¤é¤ì¤¿½ñ¤­¹þ¤ß¥Ö¥í¥Ã¥¯¿ô" + +#: src/dd.c:382 +#, fuzzy, c-format +msgid "closing input file %s" +msgstr "¥Õ¥¡¥¤¥ë `%s' ¤òºîÀ®\n" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "½ÐÎÏ¥Õ¥¡¥¤¥ë %s ¤ò¥¯¥í¡¼¥º" + +#: src/dd.c:469 +#, fuzzy, c-format +msgid "writing to %s" +msgstr "%s ¤Î½ñ¤­¹þ¤ß¥¨¥é¡¼" + +#: src/dd.c:501 +#, fuzzy, c-format +msgid "invalid conversion: %s" +msgstr "Éý¤Î¥ª¥×¥·¥ç¥ó `%s' ¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó" + +#: src/dd.c:557 +#, fuzzy, c-format +msgid "unrecognized option %s" +msgstr "¥ª¥×¥·¥ç¥ó `-%c' ¤òǧ¼±¤Ç¤­¤Þ¤»¤ó" + +#: src/dd.c:610 +#, fuzzy, c-format +msgid "unrecognized option %s=%s" +msgstr "¥ª¥×¥·¥ç¥ó `-%c' ¤òǧ¼±¤Ç¤­¤Þ¤»¤ó" + +#: src/dd.c:616 +#, fuzzy, c-format +msgid "invalid number %s" +msgstr "%s: ̵¸ú¤ÊÈÖ¹æÉ½µ­¤Ç¤¹" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"`-conv'¤Ë¤è¤ê°ìÅ٤ˤǤ­¤ëÊÑ´¹¤Ï {ascii,ebcdic,ibm}, {lcase,ucase}, {block," +"unblock}, {unblock,sync} ¤Î¤¤¤º¤ì¤«¤Î¤ß¤Ç¤¹¡£" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" +"·Ù¹ð: lseek ¤Î¥«¡¼¥Í¥ë¥Ð¥°¤ËÂн褷¤Þ¤¹¡£\n" +" ¥Õ¥¡¥¤¥ë (%s) ¤Î mt_type=0x%0lx -- ¤Î¥¿¥¤¥×¥ê¥¹¥È¤ò¸«¤Æ²¼¤µ¤¤" + +#: src/dd.c:1170 src/dd.c:1188 +#, fuzzy, c-format +msgid "opening %s" +msgstr "%s ¤ÎÆÉ¤ß¹þ¤ß¥¨¥é¡¼" + +#: src/dd.c:1196 +#, fuzzy +msgid "file offset out of range" +msgstr "%s: Èϰϳ°¤Î¹ÔÈÖ¹æ" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "½ÐÎÏ¥Õ¥¡¥¤¥ë %s ¤ÎľÁ° %s ¥Ð¥¤¥È¤ò¿Ê¤á¤Þ¤¹" + +#: src/df.c:49 +#, fuzzy +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "David Ihnat, David MacKenzie ¤ª¤è¤Ó Jim Meyering" + +#: src/df.c:153 +#, fuzzy +msgid "Filesystem Type" +msgstr "Filesystem " + +#: src/df.c:155 +#, fuzzy +msgid "Filesystem " +msgstr "Filesystem " + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr " I¥Î¡¼¥É I»ÈÍÑ I»Ä¤ê I»ÈÍÑ%%" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " ¥µ¥¤¥º »ÈÍÑ »Ä¤ê »ÈÍÑ%%" + +#: src/df.c:164 +#, fuzzy, c-format +msgid " Size Used Avail Use%%" +msgstr " ¥µ¥¤¥º »ÈÍÑ »Ä¤ê »ÈÍÑ%%" + +#: src/df.c:167 +#, fuzzy, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr " %4d-blocks Used Available Capacity" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr " %4s-¥Ö¥í¥Ã¥¯ »ÈÍÑ »ÈÍÑ²Ä »ÈÍÑ%%" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr " ¥Þ¥¦¥ó¥È°ÌÃÖ\n" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" +"¥Õ¥¡¥¤¥ë¤¬Â°¤¹¤ë¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Ë¤Ä¤¤¤Æ¤Î¾ðÊó¤òɽ¼¨¤¹¤ë¡£\n" +"¤¢¤ë¤¤¤Ï¡¢¥Õ¥¡¥¤¥ë¤¬»ØÄꤵ¤ì¤Ê¤±¤ì¤ÐÁ´¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î»ÈÍÑÎ̤òɽ¼¨¤¹¤ë¡£\n" +"\n" + +#: src/df.c:720 +#, fuzzy +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" +" -a, --all 0 ¥Ö¥í¥Ã¥¯¤·¤«»ý¤¿¤Ê¤¤¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤ò´Þ¤á¤ë\n" +" --block-size=SIZE SIZE ¥Ð¥¤¥È¤Î¥Ö¥í¥Ã¥¯¤Çɽ¼¨¤¹¤ë\n" +" -h, --human-readable ¿Í´Ö¤¬ÆÉ¤ß¤ä¤¹¤¤·Á¼°¤Çɽ¼¨¤¹¤ë (Îã: 1K 234M 2G)\n" +" -H, --si Ʊ¾å¡£Ã¢¤·Ã±°Ì¤Ï 1024 ¤Ç¤Ï¤Ê¤¯ 1000 ÇÜ\n" + +#: src/df.c:726 +#, fuzzy +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" +" -i, --inodes ¥Ö¥í¥Ã¥¯»ÈÍѤÎÂå¤ê¤Ë I-¥Î¡¼¥É¾ðÊó¤òɽ¼¨¤¹¤ë\n" +" -k, --kilobytes --block-size=1024 ¤ÈƱÍÍ\n" +" -l, --local ¥í¡¼¥«¥ë¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤À¤±É½¼¨¤¹¤ë\n" +" -m, --megabytes --block-size=1048576 ¤ÈƱÍÍ\n" +" --no-sync »ÈÍѾðÊó¼èÆÀ¤ÎÁ°¤Ë sync(2) ¤òµ¯Æ°¤·¤Ê¤¤ (default)\n" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" +" -P, --portability POSIX ½ÐÎÏ·Á¼°¤ò»ÈÍѤ¹¤ë\n" +" --sync »ÈÍѾðÊó¼èÆÀ¤ÎÁ°¤Ë sync(2) ¤òµ¯Æ°¤¹¤ë\n" +" -t, --type=TYPE TYPE ·¿¤Î¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¤ßɽ¼¨¤¹¤ë\n" +" -T, --print-type ¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¼ïÎà¤òɽ¼¨¤¹¤ë\n" +" -x, --exclude-type=TYPE »ØÄꤷ¤¿¼ïÎà¤Î¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤ò½ü¤¤¤ÆÉ½¼¨¤¹¤ë\n" +" -v (̵»ë¤µ¤ì¤ë)\n" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" + +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "%s ·Á¼°¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤¬ÁªÂò/ÈóÁªÂò¤ÎξÊý¤Ç»ØÄꤵ¤ì¤Þ¤·¤¿" + +#: src/df.c:903 +msgid "Warning: " +msgstr "·Ù¹ð: " + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "%s¥Þ¥¦¥ó¥È¤µ¤ì¤Æ¤¤¤ë¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¥Æ¡¼¥Ö¥ë¤òÆÉ¤á¤Þ¤»¤ó" + +#: src/dircolors.c:103 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... [¥Õ¥¡¥¤¥ë]...\n" + +#: src/dircolors.c:104 +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"´Ä¶­ÊÑ¿ô LS_COLORS ¤ÎÄêµÁ¤¹¤ë¤¿¤á¤Î¥³¥Þ¥ó¥É¤ò½ÐÎϤ·¤Þ¤¹¡£\n" +"\n" +"½ÐÎÏ¥Õ¥©¡¼¥Þ¥Ã¥È¤Î·èÄê:\n" +" -b, --sh, --bourne-shell Bourne ¥·¥§¥ë·Á¼°¤Ç LS_COLORS ¤ò½ÐÎϤ¹¤ë\n" +" -c, --csh, --c-shell C ¥·¥§¥ë·Á¼°¤Ç LS_COLORS ¤ò½ÐÎϤ¹¤ë\n" +" -p, --print-database ¥Ç¥Õ¥©¥ë¥ÈÃͤòɸ½à½ÐÎϤËɽ¼¨¤¹¤ë\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" +"\n" +"¥Õ¥¡¥¤¥ë¤ò»ØÄꤷ¤¿¤È¤­¤Ï¡¢¥Õ¥¡¥¤¥ë¥¿¥¤¥×¤ä³ÈÄ¥»ÒËè¤Ë¤É¤Î¿§¤ò»È¤¦¤«¤Ë¤Ä¤¤" +"¤Æ¡¢\n" +"¤½¤Î¥Õ¥¡¥¤¥ë¤òÆÉ¤ó¤Ç·èÄꤷ¤Þ¤¹¡£¤½¤ì°Ê³°¤Î»þ¤Ïͽ¤á¥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤¿¥Ç¡¼¥¿\n" +"¥Ù¡¼¥¹¤¬»È¤ï¤ì¤Þ¤¹¡£¤³¤¦¤¤¤Ã¤¿¥Õ¥¡¥¤¥ë¤Î¥Õ¥©¡¼¥Þ¥Ã¥È¤Î¾ÜºÙ¤¬ÃΤꤿ¤±¤ì¤Ð¡¢\n" +"`dircolors --print-database' ¤ò¼Â¹Ô¤·¤Æ¤¯¤À¤µ¤¤¡£\n" + +#: src/dircolors.c:299 +#, fuzzy, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s: ̵¸ú¤ÊÉÿô¤Ç¤¹" + +#: src/dircolors.c:371 +#, fuzzy, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s: ¥ª¥×¥·¥ç¥ó `%c%s' ¤òǧ¼±¤Ç¤­¤Þ¤»¤ó\n" + +#: src/dircolors.c:372 +msgid "" +msgstr "<ÆâÉô>" + +#: src/dircolors.c:467 +#, fuzzy +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" +"¾éĹ¥ª¥×¥·¥ç¥ó¤È stty ¤ÎÆÉ¤á¤ë·Á¼°¤Î½ÐÎϤò»ØÄꤹ¤ë¥ª¥×¥·¥ç¥ó¤Ï\n" +"¤É¤Á¤é¤«°ìÊý¤·¤«Æ±»þ¤Ë»ØÄê¤Ç¤­¤Þ¤»¤ó" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" +"dircolor¤ÎÆâÉô¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò½ÐÎϤ¹¤ë¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤¿»þ¤Ï¥Õ¥¡¥¤¥ë\n" +"°ú¿ô¤ò»ØÄꤹ¤ëɬÍפϤ¢¤ê¤Þ¤»¤ó" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "" +"´Ä¶­ÊÑ¿ô SHELL ¤¬ÄêµÁ¤µ¤ì¤Æ¤ª¤é¤º¡¢¥·¥§¥ë·¿¤Î¥ª¥×¥·¥ç¥ó¤âÍ¿¤¨¤é¤ì¤Æ¤¤¤Þ¤»¤ó" + +#: src/dirname.c:33 src/pathchk.c:59 +#, fuzzy +msgid "David MacKenzie and Jim Meyering" +msgstr "David Ihnat, David MacKenzie ¤ª¤è¤Ó Jim Meyering" + +#: src/dirname.c:46 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"»ÈÍÑË¡: %s [¥Õ¥¡¥¤¥ë]...\n" +"¤Þ¤¿¤Ï: %s [¥ª¥×¥·¥ç¥ó]\n" + +#: src/dirname.c:51 +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" +"¥Ñ¥¹Ì¾¤«¤é¥Ç¥£¥ì¥¯¥È¥ê̾¤òÀÚ¤ê½Ð¤¹. ¥Ñ¥¹Ì¾¤Ë¥Ç¥£¥ì¥¯¥È¥ê¤¬´Þ¤Þ¤ì¤Ê¤¤¾ì¹ç\n" +"¥«¥ì¥ó¥È¥Ç¥£¥ì¥¯¥È¥ê¤È¸«¤Ê¤·¤Æ `.' ¤ò½ÐÎϤ¹¤ë.\n" + +#: src/du.c:49 +#, fuzzy +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "David Ihnat, David MacKenzie ¤ª¤è¤Ó Jim Meyering" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" +"¥Õ¥¡¥¤¥ëËè¤Î¥Ç¥£¥¹¥¯»ÈÍÑÎ̤ò½¸·×¤¹¤ë¡£¥Ç¥£¥ì¥¯¥È¥ê¤ÏºÆµ¢Åª¤Ë½èÍý¤¹¤ë¡£\n" +"\n" + +#: src/du.c:182 +#, fuzzy +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" +" -a, --all ¥Ç¥£¥ì¥¯¥È¥ê¤À¤±¤Ç¤Ê¤¯¡¢Á´¤Æ¤Î¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤ÆÉ½¼¨\n" +" --block-size=SIZE SIZE ¥Ð¥¤¥È¤Î¥Ö¥í¥Ã¥¯¤Çɽ¼¨¤¹¤ë\n" +" -b, --bytes ¥µ¥¤¥ºÃ±°Ì¤ò¥Ð¥¤¥È¤Çɸ¼¨¤¹¤ë\n" +" -c, --total Áí¹ç·×¤ò½ÐÎϤ¹¤ë\n" +" -D, --dereference-args ¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤Î¤È¤­¤Ï¡¢»²¾ÈÀè¤òé¤ë\n" + +#: src/du.c:193 +#, fuzzy +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" +" -h, --human-readable ¿Í´Ö¤¬ÆÉ¤ß¤ä¤¹¤¤·Á¼°¤Ç¥µ¥¤¥º¤òɽ¼¨¤¹¤ë (Îã: 1K 234M " +"2G)\n" +" -H, --si Ʊ¾å¡£Ã¢¤·Ã±°Ì¤Ï 1024 ¤Ç¤Ï¤Ê¤¯ 1000 ÇÜ\n" +" -k, --kilobytes --block-size=1024 ¤ÈƱÍÍ\n" +" -l, --count-links ¥Ï¡¼¥É¥ê¥ó¥¯¤Ç¤¢¤Ã¤Æ¤â½¸·×¤Ë´Þ¤á¤ë\n" + +#: src/du.c:199 +#, fuzzy +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" +" -L, --dereference Á´¤Æ¤Î¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤Î»²¾ÈÀè¤òé¤ë\n" +" -m, --megabytes --block-size=1048576 ¤ÈƱÍÍ\n" +" -S, --separate-dirs ¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê¤Î¥µ¥¤¥º¤ò´Þ¤á¤Ê¤¤\n" +" -s, --summarize °ú¿ôËè¤ÎÁí¹ç·×¤·¤«É½¼¨¤·¤Ê¤¤\n" + +#: src/du.c:204 +#, fuzzy +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" +" -x, --one-file-system °Û¤Ê¤ë¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ï½¸·×¤·¤Ê¤¤\n" +" -X FILE, --exclude-from=FILE »ØÄê¥Õ¥¡¥¤¥ëÃæ¤Î¥Ñ¥¿¡¼¥ó¤Ë°ìÃפ¹¤ë¥Õ¥¡¥¤¥ë" +"¤Ï\n" +" ½¸·×¤·¤Ê¤¤\n" +" --exclude=PAT »ØÄꤷ¤¿¥Ñ¥¿¡¼¥ó¤Ë°ìÃפ¹¤ë¥Õ¥¡¥¤¥ë¤ò½¸·×¤·¤Ê¤¤\n" +" --max-depth=N ¥³¥Þ¥ó¥É¥é¥¤¥ó°ú¿ô¤è¤ê¡¢ºÇÂç N ³¬ÁØÊ¬²¼¤¬¤ë¤Þ¤Ç¤Î\n" +" ¥Ç¥£¥ì¥¯¥È¥ê (--all ¤Î»ØÄê¤Ç¥Õ¥¡¥¤¥ë¤â) ¤ò½¸·×¤¹" +"¤ë\n" +" --max-depth=0 ¤Ê¤é --summarize ƱÅù¤È¤Ê¤ë\n" + +#: src/du.c:337 +#, fuzzy, c-format +msgid "cannot change to parent of directory %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Ë°Üư¤Ç¤­¤Þ¤»¤ó" + +#: src/du.c:345 +#, fuzzy, c-format +msgid "cannot change to directory %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Ë°Üư¤Ç¤­¤Þ¤»¤ó" + +#: src/du.c:352 +#, fuzzy, c-format +msgid "cannot read directory %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "¹ç·×" + +#: src/du.c:641 +#, fuzzy, c-format +msgid "invalid maximum depth %s" +msgstr "Éý `%s' ¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "¹ç·×¤ÈÁ´¥¨¥ó¥È¥ê¤Îɽ¼¨¤ÎξÊý¤ò¡¢°ìÅ٤˻ØÄꤹ¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "·Ù¹ð: Åý·×(-s)¤È -max-depth=0 ¤ÏƱ¤¸ÍÑË¡¤Ç¤¹" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "·Ù¹ð: Åý·×(-s)¤È -max-depth=%d ¤Î»ØÄ꤬¶¥¹ç¤·¤Æ¤¤¤Þ¤¹" + +#: src/echo.c:77 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... [¥Õ¥¡¥¤¥ë]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" +"ʸ»úÎó¤òɸ½à½ÐÎϤËɽ¼¨.\n" +"\n" +" -n ºÇ¸å¤Î²þ¹Ô¤ò½ÐÎϤ·¤Ê¤¤\n" +" -e ¸å½Ò¤Î¥Ð¥Ã¥¯¥¹¥é¥Ã¥·¥å¤Ç¥¨¥¹¥±¡¼¥×¤µ¤ì¤ëʸ»ú¤ò²ò¼á\n" +" -E STRING Æâ¤Î¤½¤ì¤é¤Î¥·¡¼¥±¥ó¥¹¤ò²ò¼á¤·¤Ê¤¤\n" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" +"\n" +"-E ¤¬Ìµ¤±¤ì¤Ð, °Ê²¼¤Î¥·¡¼¥±¥ó¥¹¤¬Ç§¼±¤µ¤ì½ñ¤­´¹¤¨¤é¤ì¤Þ¤¹:\n" +"\n" +" \\NNN ASCII ¥³¡¼¥É¤¬ NNN (8¿Ê) ¤Îʸ»ú\n" +" \\\\ ¥Ð¥Ã¥¯¥¹¥é¥Ã¥·¥å\n" +" \\a ·Ù¹ð²» (¥Ù¥ë²»)\n" +" \\b ¥Ð¥Ã¥¯¥¹¥Ú¡¼¥¹\n" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\c ºÇ¸å¤Î²þ¹Ô¤òÍÞÀ©\n" +" \\f ÍÑ»æÁ÷¤ê\n" +" \\n ²þ¹Ô (LF)\n" +" \\r Éüµ¢ (CR)\n" +" \\t ¿åÊ¿¥¿¥Ö\n" +" \\v ¿âľ¥¿¥Ö\n" + +#: src/env.c:93 +#, fuzzy +msgid "Richard Mlynarik and David MacKenzie" +msgstr "Richard Stallman ¤È David MacKenzie" + +#: src/env.c:119 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... [¥Õ¥¡¥¤¥ë]...\n" + +#: src/env.c:122 +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" +"´Ä¶­ÊÑ¿ô¤ÎÃͤòÀßÄꤷ, ¤½¤Î´Ä¶­¤Ç¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤¹¤ë.\n" +"\n" +" -i, --ignore-environment ²¿¤â´Ä¶­ÊÑ¿ô¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾õÂ֤Ǽ¹Ô\n" +" -u, --unset=NAME ´Ä¶­ÊÑ¿ô NAME ¤òºï½ü¤¹¤ë\n" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" +"\n" +"- ¤À¤±¤ò»ØÄꤷ¤¿¾ì¹ç¤Ï -i ¤ò»ØÄꤷ¤¿¤³¤È¤Ë¤Ê¤ê¤Þ¤¹. ¥³¥Þ¥ó¥É¤¬»ØÄꤵ¤ì¤Ê¤±¤ì" +"¤Ð, ºÇ½ªÅª¤Ê´Ä¶­ÊÑ¿ô¤òɽ¼¨¤·¤Þ¤¹.\n" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"³Æ¡¹¤Î¥Õ¥¡¥¤¥ëÆâ¤Î¥¿¥Ö¤ò¥¹¥Ú¡¼¥¹¤ËÊÑ´¹¤·, ɸ½à½ÐÎϤ˽ñ¤­½Ð¤·¤Þ¤¹.\n" +"¥Õ¥¡¥¤¥ë¤Î»ØÄ꤬¤Ê¤«¤Ã¤¿¤ê, `-'¤Ç¤¢¤Ã¤¿¾ì¹ç, ɸ½àÆþÎϤ«¤éÆÉ¤ß¹þ¤ß¤Þ¤¹.\n" +"\n" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" +" -i, --initial Èó¶õÇòʸ»ú°Ê¹ß¤Î¥¿¥Ö¤òÊÑ´¹¤·¤Ê¤¤\n" +" -t, --tabs=¿ô ¥¿¥ÖÉý¤òɸ½à¤Î8¤Ë¤«¤ï¤ê¤Ë»ØÄê\n" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr " -t, --tabs=¥ê¥¹¥È ¥³¥ó¥Þ(,)¤Ç¶èÀÚ¤é¤ì¤¿¥ê¥¹¥È¤Ë¥¿¥Ö¥¹¥È¥Ã¥×¤òÀßÄê\n" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "¥¿¥Ö¥µ¥¤¥º¤Î»ØÄê¤ËÉÔÀµ¤Êʸ»ú¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "¥¿¥Ö¥µ¥¤¥º¤Ï0(¥¼¥í)¤Ë¤Ç¤­¤Þ¤»¤ó" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "¥¿¥Ö¥µ¥¤¥º¤Î»ØÄê¤Ï¾º½ç¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" + +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "`-LIST' ¥ª¥×¥·¥ç¥ó¤Ï²áµî¤Î¤â¤Î¤Ç¤¹. `-t LIST' ¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤" + +#: src/expr.c:90 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"»ÈÍÑË¡: %s [¥Õ¥¡¥¤¥ë]...\n" +"¤Þ¤¿¤Ï: %s [¥ª¥×¥·¥ç¥ó]\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" +"\n" +"¼°¤ÎÃͤòɸ½à½ÐÎϤËɽ¼¨. °Ê²¼¤Î°ìÍ÷¤Ç¤Ï, ¼°¤òɾ²Á¤¹¤ëºÝ¤ÎÍ¥Àè½ç°Ì¤´¤È¤Ë\n" +"¶õ¹Ô¤Ç¶èʬ¤±¤·¤Æ¤¤¤Þ¤¹. ¼°¤È¤·¤Æ»È¤¨¤ë¤Î¤Ï:\n" +"\n" +" ARG1 | ARG2 ARG1 ¤¬¥Ì¥ë¤Ç¤â 0 ¤Ç¤â¤Ê¤±¤ì¤Ð ARG1 ¤òÊÖ¤·, \n" +" ¤½¤ì°Ê³°¤Î¾ì¹ç¤Ï ARG2 ¤òÊÖ¤¹\n" +"\n" +" ARG1 & ARG2 ARG1, ARG2 ¤È¤â¤Ë¥Ì¥ë¤Ç¤â 0 ¤Ç¤â¤Ê¤±¤ì¤Ð ARG1 ¤òÊÖ¤·,\n" +" ¤½¤ì°Ê³°¤Î¾ì¹ç¤Ï 0 ¤òÊÖ¤¹\n" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" +"\n" +" ARG1 < ARG2 ARG1 ¤¬ ARG2 ¤è¤ê¾®¤µ¤¤\n" +" ARG1 <= ARG2 ARG1 ¤¬ ARG2 ¤è¤ê¾®¤µ¤¤¤«Åù¤·¤¤\n" +" ARG1 = ARG2 ARG1 ¤¬ ARG2 ¤ÈÅù¤·¤¤\n" +" ARG1 != ARG2 ARG1 ¤¬ ARG2 ¤ÈÅù¤·¤¯¤Ê¤¤\n" +" ARG1 >= ARG2 ARG1 ¤¬ ARG2 ¤è¤êÂ礭¤¤¤«Åù¤·¤¤\n" +" ARG1 > ARG2 ARG1 ¤¬ ARG2 ¤è¤êÂ礭¤¤\n" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" +"\n" +" ARG1 + ARG2 ARG1 ¤È ARG2 ¤Î­¤·»»\n" +" ARG1 - ARG2 ARG1 ¤È ARG2 ¤Î°ú¤­»»\n" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" +"\n" +" ARG1 * ARG2 ARG1 ¤È ARG2 ¤Î³Ý¤±»»\n" +" ARG1 / ARG2 ARG1 ¤Î ARG2 ¤Ë¤è¤ë³ä¤ê»»\n" +" ARG1 % ARG2 ARG1 ¤Î ARG2 ¤Ë¤è¤ë³ä¤ê»»¤Î¤¢¤Þ¤ê\n" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" +"\n" +" STRING : REGEXP STRING ¤Ë¤ª¤±¤ëÀµµ¬É½¸½ REGEXP ¤Ë¤è¤ë¥Ñ¥¿¡¼¥ó¾È¹ç\n" +"\n" +" match STRING REGEXP STRING : REGEXP ¤ÈƱ¤¸\n" +" substr STRING POS LENGTH STRING ¤ÎÉôʬʸ»úÎó¤òÊÖ¤¹, POS ¤Ï 1¤«¤é»Ï¤Þ¤ë\n" +" index STRING CHARS STRING ¤«¤é CHARS ¤¬¸«¤Ä¤«¤Ã¤¿¾ì½ê¤òÊÖ¤¹.\n" +" ¸«¤Ä¤«¤é¤Ê¤±¤ì¤Ð 0\n" +" length STRING STRING ¤ÎŤµ\n" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" +" + TOKEN TOKEN ¤¬ `match' ¤Î¤è¤¦¤Ê¥­¡¼¥ï¡¼¥É¤ä `/' ¤Î\n" +" ¤è¤¦¤Ê±é»»»Ò¤Ç¤¢¤Ã¤ÆÊ¸»úÎó¤È¤·¤Æ²ò¼á.\n" +"\n" +" ( ¼° ) ¼°¤ÎÃÍ\n" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" +"\n" +"¿¤¯¤Î±é»»»Ò¤Ï¥·¥§¥ë¤ËÅϤ¹¤¿¤á¤Ë¥¨¥¹¥±¡¼¥×¤¹¤ë¤«°úÍÑÉä¤Ç°Ï¤àɬÍפ¬¤¢¤ê¤Þ¤¹.\n" +"Èæ³Ó¤Ï ARG ¤¬¤¤¤º¤ì¤â¿ôÃͤǤ¢¤ì¤ÐÂ礭¤µ¤Ë¤è¤ê, ¤½¤ì°Ê³°¤Î¾ì¹ç¤Ë¤Ï¼­½ñ½ç¤Ë\n" +"¤è¤ê¹Ô¤ï¤ì¤Þ¤¹. ¥Ñ¥¿¡¼¥ó¾È¹ç¤Ï, \\( ¤È \\) ¤Î´Ö, ¤â¤·¤¯¤Ï¥Ì¥ëʸ»ú¤Ë°ìÃפ·¤¿\n" +"ʸ»úÎó¤òÊÖ¤·¤Þ¤¹. \\( ¤È \\) ¤ò»È¤ï¤Ê¤¤¾ì¹ç¤Ï°ìÃפ¹¤ëʸ»ú¿ô¤« 0 ¤òÊÖ¤·¤Þ¤¹.\n" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +#, fuzzy +msgid "syntax error" +msgstr "ɸ½à¥¨¥é¡¼" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" +"·Ù¹ð: ²ÄȤǤʤ¤ BRE: `%s': ´ðËÜŪ¤ÊÀµµ¬É½¸½¤ÎºÇ½é¤Îʸ»ú¤È¤·¤Æ\n" +"`^' ¤ò»È¤¦¤³¤È¤Ï²ÄȤǤϤʤ¤¤Î¤Ç̵»ë¤·¤Þ¤¹" + +#: src/expr.c:586 src/expr.c:625 +#, fuzzy +msgid "non-numeric argument" +msgstr "ÆþÎϤÎÂ礭¤µÀ©¸Â¤Î°ú¿ô" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "¥¼¥í¤Ç¤Î³ä¤ê»»" + +#: src/factor.c:74 +#, fuzzy, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"»ÈÍÑË¡: %s [¥Õ¥¡¥¤¥ë]...\n" +"¤Þ¤¿¤Ï: %s [¥ª¥×¥·¥ç¥ó]\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" +"³Æ¡¹¤Î¿ôÃͤÎÁǰø¿ô¤òɽ¼¨.\n" +"\n" + +#: src/factor.c:85 +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" +"\n" +" Í¿¤¨¤é¤ì¤¿Á´¤Æ¤Î¿ôÃÍ (À°¿ô) ¤ÎÁǰø¿ô¤òɽ¼¨¤·¤Þ¤¹. ¤â¤·¿ôÃͤ¬°ú¿ô¤È¤·¤Æ\n" +" ¥³¥Þ¥ó¥É¹Ô¤«¤é»ØÄꤵ¤ì¤Ê¤¤¾ì¹ç¤Ë¤Ï, ɸ½àÆþÎϤè¤êÆÉ¤ß¹þ¤Þ¤ì¤Þ¤¹.\n" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "`%s' ¤ÏÍ­¸ú¤ÊÀµ¤ÎÀ°¿ô¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" + +#: src/false.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"»ÈÍÑË¡: %s [¥³¥Þ¥ó¥É¥é¥¤¥ó°ú¿ô¤ò̵»ë]\n" +"¤â¤·¤¯¤Ï: %s ¥ª¥×¥·¥ç¥ó\n" +"¼ºÇÔ¤ò¼¨¤¹¾õÂÖ¥³¡¼¥É¤Ç½ªÎ»¤¹¤ë.\n" +"\n" +"¤³¤ì¤é¤Î¥ª¥×¥·¥ç¥ó¤Ï̾Á°¤òû½Ì¤Ç¤­¤Ê¤¤.\n" +"\n" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "»ÈÍÑË¡: %s [-DIGITS] [¥ª¥×¥·¥ç¥ó]... [¥Õ¥¡¥¤¥ë]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" +"¥Õ¥¡¥¤¥ëÆâ¤Î¤½¤ì¤¾¤ì¤ÎÃÊÍî¤òÀ°·Á¤·¤Ê¤ª¤·¤Æ, ɸ½à½ÐÎϤËɽ¼¨¤·¤Þ¤¹.\n" +"¥Õ¥¡¥¤¥ë̾¤ò»ØÄꤷ¤Ê¤«¤Ã¤¿¾ì¹ç¤ä, ¥Õ¥¡¥¤¥ë̾¤¬ `-' ¤È»ØÄꤵ¤ì¤¿¾ì¹ç¤Ë¤Ï\n" +"ɸ½àÆþÎϤ«¤éÆÉ¤ß¹þ¤ß¤Þ¤¹.\n" +"\n" + +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" +" -c, --crown-margin ºÇ½é¤Î 2 ¹Ô¤Î¥¤¥ó¥Ç¥ó¥È¤òÊݸ\n" +" -p, --prefix=STRING STRING ¤Ç»Ï¤Þ¤ë¹Ô¤À¤±¤ò·ë¹ç\n" +" -s, --split-only Ť¤¹Ô¤Îʬ³ä¤À¤±¤ò¹Ô¤¦\n" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" +" -t, --tagged-paragraph 1 ¹ÔÌÜ¤È 2 ¹ÔÌܤȤǥ¤¥ó¥Ç¥ó¥È¤¬°Û¤Ê¤ëÃÊÍî¤ò½èÍý\n" +" -u, --uniform-spacing ñ¸ì¤Î´Ö¤Ë¤Ï 1¤Ä, ʸ¤Î´Ö¤Ë¤Ï 2 ¤Ä¤Î¶õÇò¤òÃÖ¤¯\n" +" -w, --width=NUMBER ºÇÂç¹ÔÉý (ɸ½à 75ʸ»ú) ¤ò»ØÄê\n" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" +"\n" +"-wNUMBER ¤È¤¤¤¦·Á¼°¤òÍѤ¤¤ëºÝ, ʸ»ú `w' ¤Ï¾Êά¤Ç¤­¤Þ¤¹.\n" + +#: src/fmt.c:345 +#, c-format +msgid "invalid width option: `%s'" +msgstr "Éý¤Î¥ª¥×¥·¥ç¥ó `%s' ¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó" + +#: src/fmt.c:385 +#, c-format +msgid "invalid width: `%s'" +msgstr "Éý `%s' ¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" +"¥Õ¥¡¥¤¥ë¤Î³Æ¹Ô¤ÎÀÞ¤êÊÖ¤·¤ò¹Ô¤¤, ·ë²Ì¤òɸ½à½ÐÎϤ˽ñ¤­¹þ¤ß¤Þ¤¹.\n" +"\n" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" +" -b, --bytes ¥«¥é¥à¿ô¤Ç¤Ï¤Ê¤¯¥Ð¥¤¥È¿ô¤Ç¥«¥¦¥ó¥È\n" +" -s, --spaces ¶õÇò¤Î°ÌÃÖ¤ÇÀÞ¤êÊÖ¤¹\n" +" -w, --width=WIDTH 80 ¤ÎÂå¤ï¤ê¤Ë 1 ¹Ô¤ÎÉý¤ò»ØÄê\n" + +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "`%s' ¥ª¥×¥·¥ç¥ó¤Ï²áµî¤Î¤â¤Î¤Ç¤¹. `%s' ¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤" + +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "¹ÔÉý¤Î»ØÄ̵꤬¸ú¤Ç¤¹: `%s'" + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"¥Õ¥¡¥¤¥ë¤ÎÀèÆ¬¤«¤é 10 ¹Ôʬ¤òɸ½à½ÐÎϤËɽ¼¨¤·¤Þ¤¹.\n" +"Ê£¿ô¤Î¥Õ¥¡¥¤¥ë¤ò½èÍý¤¹¤ëºÝ¤Ë¤Ï, ³Æ½ÐÎϤΤϤ¸¤á¤Ë¥Õ¥¡¥¤¥ë̾¤òɽ¼¨¤·¤Þ¤¹.\n" +"¥Õ¥¡¥¤¥ë̾¤ò»ØÄꤷ¤Ê¤¤¤«, ¥Õ¥¡¥¤¥ë̾¤Ë `-' ¤ò»ØÄꤷ¤¿¾ì¹ç¤Ë¤Ï, \n" +"ɸ½àÆþÎϤòÆÉ¤ß¹þ¤ß¤Þ¤¹.\n" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" +" -c, --bytes=SIZE ÀèÆ¬¤Î SIZE ¥Ð¥¤¥È¿ô¤À¤±½ÐÎÏ\n" +" -n, --lines=NUMBER ÀèÆ¬¤Î»ØÄê¹Ô¿ô¹Ô¿ô½ÐÎÏ (¥Ç¥Õ¥©¥ë¥È 10¹Ô)\n" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" +" -q, --quiet, --silent ¥Õ¥¡¥¤¥ë¤´¤È¤Î¥Ø¥Ã¥À¤Î½ÐÎϤò¹Ô¤ï¤Ê¤¤\n" +" -v, --verbose ¥Õ¥¡¥¤¥ë¤´¤È¤Ë¥Ø¥Ã¥À¤ò½ÐÎÏ\n" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" +"\n" +"SIZE¤Ï¤¤¤¯¤Ä¤«¤Î¥µ¥Õ¥£¥Ã¥¯¥¹¤òÉÕ¤±¤é¤ì¤Þ¤¹: 512¥Ð¥¤¥È¤Ç¤Ï`b',1¥­¥í¤Ç¤Ï`k',\n" +"1¥á¥¬¤Ç¤Ï`m'¤È¤Ê¤Ã¤Æ¤¤¤Þ¤¹.\n" + +#: src/head.c:190 +#, c-format +msgid "cannot reposition file pointer for %s" +msgstr "%s ¤ËÂФ¹¤ë¥Õ¥¡¥¤¥ë¥Ý¥¤¥ó¥¿¤òºÆÇÛÃ֤Ǥ­¤Þ¤»¤ó" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "%s: %s ¤ÏÂ礭¤¹¤®¤ÆÉ½¼¨¤Ç¤­¤Þ¤»¤ó" + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "¹Ô¿ô" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "¥Ð¥¤¥È¿ô" + +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "¹Ô¿ô¤Î»ØÄ꤬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó" + +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "¥Ð¥¤¥È¿ô¤Î»ØÄ꤬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó" + +#: src/head.c:341 +#, c-format +msgid "unrecognized option `-%c'" +msgstr "¥ª¥×¥·¥ç¥ó `-%c' ¤òǧ¼±¤Ç¤­¤Þ¤»¤ó" + +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "`-%s' ¥ª¥×¥·¥ç¥ó¤Ï²áµî¤Î¤â¤Î¤Ç¤¹. `-%c %.*s%.*s%s' ¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤" + +#: src/hostid.c:48 +#, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" +"»ÈÍÑË¡: %s\n" +"¤â¤·¤¯¤Ï: %s ¥ª¥×¥·¥ç¥ó\n" +"¸½ºß¤Î¥Û¥¹¥È¤ËÂФ¹¤ë¿ô»ú¤Ë¤è¤ë¼±ÊÌ»Ò (16¿Ê¿ô) ¤òɽ¼¨.\n" +"\n" + +#: src/hostname.c:67 +#, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" +"»ÈÍÑË¡: %s [¥Û¥¹¥È̾]\n" +"¤â¤·¤¯¤Ï: %s ¥ª¥×¥·¥ç¥ó\n" +"¸½ºß¤Î¥·¥¹¥Æ¥à¤Î¥Û¥¹¥È̾¤òɽ¼¨¤Þ¤¿¤ÏÀßÄê.\n" +"\n" + +#: src/hostname.c:104 +#, fuzzy, c-format +msgid "cannot set hostname to `%s'" +msgstr "`%s' ¤Ç ioctl() ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "¥Û¥¹¥È̾¤òÀßÄê¤Ç¤­¤Þ¤»¤ó; ¤³¤Î¥·¥¹¥Æ¥à¤Ïµ¡Ç½Åª¤ËÉÔ­¤·¤Æ¤¤¤Þ¤¹" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "¥Û¥¹¥È̾¤òÆÃÄê¤Ç¤­¤Þ¤»¤ó" + +#: src/id.c:36 +#, fuzzy +msgid "Arnold Robbins and David MacKenzie" +msgstr "Paul Rubin ¤È David MacKenzie" + +#: src/id.c:87 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... SET1 [SET2]\n" + +#: src/id.c:88 +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" +"»ØÄꤵ¤ì¤¿¥æ¡¼¥¶Ì¾¤Î¥æ¡¼¥¶¤â¤·¤¯¤Ï¸½ºß¤Î¥æ¡¼¥¶¤Î¾ðÊó¤òɽ¼¨.\n" +"\n" +" -a ̵»ë, ¾¤Î¥Ð¡¼¥¸¥ç¥ó¤È¤Î¸ß´¹À­ÊÝ»ý¤Î¤¿¤á¤Î¥ª¥×¥·¥ç¥ó\n" +" -g, --group ¼Â¸ú¥°¥ë¡¼¥× ID ¤Î¤ß¤òɽ¼¨\n" +" -G, --groups °¤·¤Æ¤¤¤ë¥°¥ë¡¼¥×¤òÁ´¤ÆÉ½¼¨\n" +" -n, --name -ugG ¤ËÂФ·¤Æ, ID ¤Î¿ô»ú¤ÎÂå¤ï¤ê¤Ë̾Á°¤òɽ¼¨\n" +" -r, --real -ugG ¤ËÂФ·¤Æ, ¼Â¸ú ID ¤ÎÂå¤ï¤ê¤Ë¼Â ID ¤òɽ¼¨\n" +" -u, --user ¼Â¸ú¥æ¡¼¥¶ ID ¤Î¤ß¤òɽ¼¨\n" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" +"\n" +"¥ª¥×¥·¥ç¥ó¤¬Ìµ¤¤¾ì¹ç¤Ï¥æ¡¼¥¶¾ðÊó¤Î¤¦¤ÁÍ­ÍѤʤâ¤Î¤òɽ¼¨.\n" + +#: src/id.c:162 +#, fuzzy +msgid "cannot print only user and only group" +msgstr "¥æ¡¼¥¶¤È¥°¥ë¡¼¥×¤ÎξÊý¤ò¾Êά¤¹¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "ɸ½à¤Î·Á¼°¤Ç¤Ï, ̾Á°¤Þ¤¿¤Ï ID ¤À¤±¤òɽ¼¨¤¹¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "%s: ¤½¤Î¤è¤¦¤Ê¥æ¡¼¥¶¤Ï¸ºß¤·¤Þ¤»¤ó" + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "¥æ¡¼¥¶ ID %u ¤ËÂФ¹¤ë¥æ¡¼¥¶Ì¾¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" + +#: src/id.c:235 +#, fuzzy, c-format +msgid "cannot find name for group ID %u" +msgstr "%s ¤Î¥ª¡¼¥Ê¡¼¤È¥°¥ë¡¼¥×¤òÊѹ¹¤Ç¤­¤Þ¤»¤ó" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "Äɲ䵤줿¥°¥ë¡¼¥×¥ê¥¹¥È¤¬ÆÀ¤é¤ì¤Þ¤»¤ó" + +#: src/id.c:385 +msgid " groups=" +msgstr " ½ê°¥°¥ë¡¼¥×=" + +#: src/install.c:269 +#, fuzzy +msgid "the strip option may not be used when installing a directory" +msgstr "¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤ÏƱ¤¸Éý¤Îʸ»úÎó¤òɽ¼¨¤¹¤ëºÝ¤Ë¤Ï»ØÄê¤Ç¤­¤Þ¤»¤ó" + +#: src/install.c:292 src/mkdir.c:140 +#, fuzzy, c-format +msgid "invalid mode %s" +msgstr "Éý `%s' ¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó" + +#: src/install.c:307 src/install.c:371 +#, fuzzy, c-format +msgid "creating directory %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "" +"Ê£¿ô¥Õ¥¡¥¤¥ë¤Î¥¤¥ó¥¹¥È¡¼¥ë¤Ç¤¹¤¬¡¢ºÇ¸å¤Î°ú¿ô %s ¤¬¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" + +#: src/install.c:435 +#, fuzzy, c-format +msgid "%s is a directory" +msgstr "%s ¤Ï¸ºß¤·¤Þ¤¹¤¬¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" + +#: src/install.c:495 +#, fuzzy, c-format +msgid "cannot obtain time stamps for %s" +msgstr "%s ¤ËÂФ¹¤ë¥Õ¥¡¥¤¥ë¥Ý¥¤¥ó¥¿¤òºÆÇÛÃ֤Ǥ­¤Þ¤»¤ó" + +#: src/install.c:507 +#, fuzzy, c-format +msgid "cannot set time stamps for %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/install.c:528 +#, fuzzy +msgid "fork system call failed" +msgstr "¥Ö¥í¥Ã¥¯¥¹¥Ú¥·¥ã¥ë¥Õ¥¡¥¤¥ë" + +#: src/install.c:532 +#, fuzzy +msgid "cannot run strip" +msgstr "%s ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó" + +#: src/install.c:539 +#, fuzzy +msgid "strip failed" +msgstr "¾õÂÖ¸¡ÃμºÇÔ" + +#: src/install.c:560 +#, fuzzy, c-format +msgid "invalid user %s" +msgstr "¥æ¡¼¥¶»ØÄ꤬ÉÔÀµ" + +#: src/install.c:578 +#, fuzzy, c-format +msgid "invalid group %s" +msgstr "¥°¥ë¡¼¥×»ØÄ꤬ÉÔÀµ" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]¡Å¡Å SOURCE DEST (1st¥Õ¥©¡¼¥Þ¥Ã¥È)\n" +" Ëô¤Ï %s [¥ª¥×¥·¥ç¥ó]¡Å¡Å SOURCE... ¥Ç¥£¥ì¥¯¥È¥ê (2nd¥Õ¥©¡¼¥Þ¥Ã¥È)\n" +" Ëô¤Ï %s -d [¥ª¥×¥·¥ç¥ó]¡Å¡Å ¥Ç¥£¥ì¥¯¥È¥ê... (3rd¥Õ¥©¡¼¥Þ¥Ã¥È)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" +"ºÇ½é¤ÎÆó¤Ä¤Î½ñ¼°¤Ç¤Ï¡¢SOURCE ¥Õ¥¡¥¤¥ë¤ò DEST ¤Ø¥³¥Ô¡¼¤¹¤ë¤«¡¢Ê£¿ô¤Î SOURCE\n" +"¥Õ¥¡¥¤¥ë¤ò´û¸¥Ç¥£¥ì¥¯¥È¥ê¤Ø¥³¥Ô¡¼¤·¤Þ¤¹¡£Æ±»þ¤Ë¥¢¥¯¥»¥¹¸¢¡¢½êÍ­¼Ô¤ä¥°¥ë¡¼" +"¥×\n" +"¤âÀßÄꤷ¤Þ¤¹¡£»°¤ÄÌܤνñ¼°¤Ç¤Ï¡¢»ØÄꤵ¤ì¤¿¥Ç¥£¥ì¥¯¥È¥êÁ´ÂΤòºîÀ®¤·¤Þ¤¹¡£\n" +"\n" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" +" --backup[=CONTROL] ¥³¥Ô¡¼Àè¤Ë´û¸¥Õ¥¡¥¤¥ë¤¬¤¢¤ì¤Ð¥Ð¥Ã¥¯¥¢¥Ã¥×¤òºîÀ®¤¹" +"¤ë\n" +" -b °ú¿ô¤ò¼è¤é¤Ê¤¤¤³¤È°Ê³°¤Ï --backup ¤ÈƱ¤¸\n" +" -c (̵»ë¤µ¤ì¤ë)\n" +" -d, --directory Á´¤Æ¤Î°ú¿ô¤ò¥Ç¥£¥ì¥¯¥È¥ê̾¤È²ò¼á¤¹¤ë\n" +" »ØÄꤵ¤ì¤¿¥Ç¥£¥ì¥¯¥È¥ê¤ò°ìÅ٤˺îÀ®¤¹¤ë\n" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" +" -D DEST ¤ÎºÇ¸å¤ò½ü¤¯¥Õ¥¡¥¤¥ë¤ò¤Þ¤ºÁ´¤ÆºîÀ®¤·¡¢¤½¤Î¸å¤Ç\n" +" SOURCE ¤ò DEST ¤Ë¥³¥Ô¡¼¤¹¤ë¡£°ìÈÖÌܤνñ¼°¤ÇÊØÍø\n" +" -g, --group=GROUP ¥°¥ë¡¼¥×°À­¤òÀßÄꤹ¤ë(̵»ØÄê: ¥×¥í¥»¥¹¤Î¸½ºß¥°¥ë¡¼" +"¥×)\n" +" -m, --mode=MODE ¥¢¥¯¥»¥¹¥â¡¼¥É¤ò chmod ¤ÎÍͤËÀßÄꤹ¤ë(̵»ØÄê: rwxr-xr-" +"x)\n" +" -o, --owner=OWNER ½êÍ­¼Ô¤òÀßÄꤹ¤ë (¥¹¡¼¥Ñ¡¼¥æ¡¼¥¶¤Î¤ß)\n" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" +" -p, --preserve-timestamps SOURCE ¥Õ¥¡¥¤¥ë¤Î¥¢¥¯¥»¥¹¸¢¡¦Êѹ¹»þ¹ï¤ò\n" +" Âбþ¤¹¤ë¥³¥Ô¡¼Àè¥Õ¥¡¥¤¥ë¤ËŬÍѤ¹¤ë\n" +" -s, --strip ¥·¥ó¥Ü¥ë¥Æ¡¼¥Ö¥ë¤ò strip ¤¹¤ë¡£1, 2 ÈÖÌܤηÁ¼°¤Î¤ß\n" +" -S, --suffix=SUFFIX Ä̾ï¤Î¥Ð¥Ã¥¯¥¢¥Ã¥×ÀÜÈø¼­¤ò¾å½ñ¤­¤¹¤ë\n" +" -v, --verbose ¥Ç¥£¥ì¥¯¥È¥ê¤¬ºîÀ®¤µ¤ì¤ëËè¤Ë¤½¤Î̾Á°¤òɽ¼¨¤¹¤ë\n" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"\n" +"¥Ð¥Ã¥¯¥¢¥Ã¥×ÀÜÈø¼­¤Ï¡¢--suffix ¤ä SIMPLE_BACKUP_SUFFIX ¤¬ÀßÄꤵ¤ì¤Ê¤¤¤È `~' " +"¤Ë\n" +"¤Ê¤ê¤Þ¤¹¡£¥Ð¡¼¥¸¥ç¥ó´ÉÍýÊýË¡¤Ï --backup ¥ª¥×¥·¥ç¥ó¤ä VERSION_CONTROL ´Ä¶­ÊÑ" +"¿ô\n" +"¤òÄ̤¸¤ÆÁªÂò¤Ç¤­¤Þ¤¹¡£°Ê²¼¤¬¤½¤ÎºÝ¤ÎÃͤǤ¹:\n" +"\n" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... ¥Õ¥¡¥¤¥ë1 ¥Õ¥¡¥¤¥ë2\n" + +#: src/join.c:148 +#, fuzzy +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" +"ÆþÎϤ·¤¿°ìÂФιԤΤ¦¤Á, »ØÄꤷ¤¿·ë¹ç¥Õ¥£¡¼¥ë¥É¤ÎÆâÍÆ¤¬°ìÃפ·¤Æ¤¤¤¿¾ì¹ç¤Ë¤Ï\n" +"ɸ½à½ÐÎÏ¤Ë 1 ¹Ô¤À¤±¤ò½ñ¤­¹þ¤ß¤Þ¤¹. ÆÃ¤Ë»ØÄ꤬¤Ê¤¤¾ì¹ç¤Ë¤Ï, ¶õÇò¤Ç¶èÀÚ¤é¤ì¤¿\n" +"ºÇ½é¤Î¥Õ¥£¡¼¥ë¥É¤ò, ·ë¹ç¥Õ¥£¡¼¥ë¥É¤È¤·¤Æ½èÍý¤·¤Þ¤¹. ¥Õ¥¡¥¤¥ë1 ¤Þ¤¿¤Ï¥Õ¥¡¥¤¥ë" +"2\n" +"¤È¤·¤Æ `-' ¤¬Í¿¤¨¤é¤ì¤¿¾ì¹ç(ξÊý¤ÏÉÔ²Ä)¤Ë¤Ï, ɸ½àÆþÎϤ«¤éÆÉ¤ß¹þ¤ß¤Þ¤¹.\n" +"\n" +" -a SIDE SIDE ¤Ë»ØÄꤷ¤¿¥Õ¥¡¥¤¥ë¤«¤é¤Î¹Ô¤ÏÉÔ°ìÃפιԤâ½ÐÎÏ\n" +" -e EMPTY ¶õ¤Î½ÐÎÏ¥Õ¥£¡¼¥ë¥É¤ò EMPTY ¤ÇÃÖ¤­´¹¤¨¤ë\n" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" +" -i, --ignore-case ¥Õ¥£¡¼¥ë¥ÉÈæ³Ó¤ÎºÝ¤ËÂçʸ»ú¡¦¾®Ê¸»ú¤Î°ã¤¤¤ò̵»ë\n" +" -j FIELD (¸Å¤¤ÊýË¡) `-1 FIELD -2 FIELD' ¤ÈƱ¤¸\n" +" -j1 FIELD (¸Å¤¤ÊýË¡) `-1 FIELD' ¤ÈƱ¤¸\n" +" -j2 FIELD (¸Å¤¤ÊýË¡) `-2 FIELD' ¤ÈƱ¤¸\n" +" -o FORMAT ½ÐÎϹԤò FORMAT ¤Î½ñ¼°¤Ë½¾¤Ã¤Æ¹½À®\n" +" -t CHAR ½ÐÎÏ¡¦ÆþÎϤΥե£¡¼¥ë¥É¶èÀÚ¤êʸ»ú¤È¤·¤Æ CHAR ¤ò»ÈÍÑ\n" + +#: src/join.c:165 +#, fuzzy +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" +" -v SIDE `-a SIDE' ¤È»÷¤Æ¤¤¤ë¤¬½ÐÎϤò¾¯¤·ÍÞÀ©\n" +" -1 FIELD ¥Õ¥¡¥¤¥ë1 ¤Î FIELD ¤Ë´ð¤Å¤¤¤Æ·ë¹ç\n" +" -2 FIELD ¥Õ¥¡¥¤¥ë2 ¤Î FILED ¤Ë´ð¤Å¤¤¤Æ·ë¹ç\n" + +#: src/join.c:172 +#, fuzzy +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" +"\n" +"-t CHAR ¤¬Í¿¤¨¤é¤ì¤Ê¤¤¾ì¹ç, ¶õÇòʸ»ú¤¬¥Õ¥£¡¼¥ë¥É¤òʬ³ä¤·, ¶õÇò¤½¤Î¤â¤Î¤Ï\n" +"̵»ë¤µ¤ì¤Þ¤¹. Í¿¤¨¤é¤ì¤¿¾ì¹ç¤Ë¤Ï, ¥Õ¥£¡¼¥ë¥É¤Ïʸ»ú CHAR ¤Ë¤è¤Ã¤ÆÊ¬³ä¤µ¤ì¤Þ" +"¤¹.\n" +"FIELD ¤ÎÉôʬ¤Ë¤Ï 1 ¤«¤é¿ô¤¨¤¿¥Õ¥£¡¼¥ë¥É¤Î°ÌÃÖ¤òÍ׵ᤷ¤Þ¤¹.\n" +"FORMAT ¤ÎÉôʬ¤Ë¤Ï 1¤Ä°Ê¾å¤Î `SIDE.FIELD' ¤ä `0' ¤ò¥«¥ó¥Þ(,)¤ä¶õÇòʸ»ú\n" +"¤Ç¶èÀڤäƻØÄꤷ¤Þ¤¹. FORMAT ¤ò»ØÄꤷ¤Ê¤«¤Ã¤¿¾ì¹ç¤Ë¤Ï, FILE1 ¤Î»Ä¤µ¤ì¤¿\n" +"¥Õ¥£¡¼¥ë¥É, FILE2 ¤Î»Ä¤µ¤ì¤¿¥Õ¥£¡¼¥ë¥É, ·ë¹ç¥Õ¥£¡¼¥ë¥É¤ò CHAR ¤Ç¶èÀڤäÆ\n" +"½ÐÎϤ·¤Þ¤¹.\n" + +#: src/join.c:645 +#, c-format +msgid "invalid field specifier: `%s'" +msgstr "¥Õ¥£¡¼¥ë¥É¤Î»ØÄ̵꤬¸ú¤Ç¤¹: `%s'" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, c-format +msgid "invalid field number: `%s'" +msgstr "¥Õ¥£¡¼¥ë¥É¿ô¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹: `%s'" + +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "¥Õ¥£¡¼¥ë¥É¤Î»ØÄê¤Ç¤Î¥Õ¥¡¥¤¥ëÈÖ¹æ¤Ï̵¸ú¤Ç¤¹: %s" + +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "¥Õ¥¡¥¤¥ë1 ¤Î¥Õ¥£¡¼¥ë¥É¿ô¤¬´Ö°ã¤Ã¤Æ¤Þ¤¹: `%s'" + +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "¥Õ¥¡¥¤¥ë2 ¤Î¥Õ¥£¡¼¥ë¥É¿ô¤¬´Ö°ã¤Ã¤Æ¤Þ¤¹: `%s'" + +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "È󥪥ץ·¥ç¥ó°ú¿ô¤Î¿ô¤¬Â¿¤¹¤®¤Þ¤¹" + +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "È󥪥ץ·¥ç¥ó°ú¿ô¤Î¿ô¤¬¾¯¤Ê¤¹¤®¤Þ¤¹" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "ξÊý¤Î¥Õ¥¡¥¤¥ë¤òɸ½àÆþÎϤˤϤǤ­¤Þ¤»¤ó" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" +"»ÈÍÑË¡: %s [-s SIGNAL | -SIGNAL] PID...\n" +"¤Þ¤¿¤Ï: %s -l [SIGNAL]...\n" +"¤Þ¤¿¤Ï: %s -t [SIGNAL]...\n" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" +"¥×¥í¥»¥¹¤Ë¥·¥°¥Ê¥ë¤òÁ÷¿®, ¤Þ¤¿¤Ï¥·¥°¥Ê¥ë¤ò°ìÍ÷ɽ¼¨.\n" +"\n" + +#: src/kill.c:106 +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" +" -s, --signal=SIGNAL, -SIGNAL Á÷¿®¤µ¤ì¤ë¥·¥°¥Ê¥ë¤Î̾Á°¤Þ¤¿¤ÏÈÖ¹æ\n" +" -l, --list ¥·¥°¥Ê¥ë̾¤ª¤è¤ÓÈÖ¹æ¤Î°ìÍ÷\n" +" -t, --table ¥·¥°¥Ê¥ë¾ðÊó¤Î°ìÍ÷ɽ¤òɽ¼¨\n" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" +"\n" +"SIGNAL ¤Ï `HUP' ¤Î¤è¤¦¤Ê¥·¥°¥Ê¥ë̾¤ä `1' ¤Î¤è¤¦¤Ê¥·¥°¥Ê¥ëÈÖ¹æ, ¤Þ¤¿¤Ï\n" +"¥·¥°¥Ê¥ë¤Ë¤è¤Ã¤Æ½ªÎ»¤µ¤ì¤¿¥×¥í¥»¥¹¤Î½ªÎ»¾õÂ֤Ǥ¹.\n" +"PID ¤ÏÀ°¿ô¤Ç¤¹. Éé¤Î¾ì¹ç¤Ï¥×¥í¥»¥¹¥°¥ë¡¼¥×¤ò¼¨¤·¤Þ¤¹.\n" + +#: src/kill.c:163 +#, fuzzy, c-format +msgid "%s: invalid signal" +msgstr "%s: ̵¸ú¤Ê¥×¥í¥»¥¹ÈÖ¹æ¤Ç¤¹" + +#: src/kill.c:262 +#, fuzzy, c-format +msgid "missing operand after `%s'" +msgstr "%s: `%c' ¤Î¼¡¤Ë¤ÏÀ°¿ôÃͤò»ØÄꤷ¤Æ²¼¤µ¤¤" + +#: src/kill.c:274 +#, fuzzy, c-format +msgid "%s: invalid process id" +msgstr "%s: ̵¸ú¤Ê¥Ñ¥¿¡¼¥ó»ØÄê¤Ç¤¹" + +#: src/kill.c:327 +#, fuzzy, c-format +msgid "invalid option -- %c" +msgstr "%s: ´Ö°ã¤Ã¤¿¥ª¥×¥·¥ç¥ó -- %c\n" + +#: src/kill.c:336 +#, c-format +msgid "%s: multiple signals specified" +msgstr "%s: Ê£¿ô¤Î¥·¥°¥Ê¥ë¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "-l ¤Þ¤¿¤Ï -t ¥ª¥×¥·¥ç¥ó¤¬Ê£¿ô»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "-l ¤Þ¤¿¤Ï -t ¤È¥·¥°¥Ê¥ë¤òÁȤ߹ç¤ï¤»¤ë¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó" + +#: src/link.c:51 +#, fuzzy, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"»ÈÍÑË¡: %s [¥Õ¥¡¥¤¥ë]...\n" +"¤Þ¤¿¤Ï: %s [¥ª¥×¥·¥ç¥ó]\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" + +#: src/link.c:98 +#, fuzzy, c-format +msgid "cannot create link %s to %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/ln.c:39 +#, fuzzy +msgid "Mike Parker and David MacKenzie" +msgstr "Scott Bartram ¤È David MacKenzie" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "" +"%s: ·Ù¹ð: ¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤ËÂФ¹¤ë¥Ï¡¼¥É¥ê¥ó¥¯¤ÎºîÀ®¤Ï²ÄÈÂÀ­¤¬¤¢¤ê¤Þ¤»¤ó" + +#: src/ln.c:174 +#, fuzzy, c-format +msgid "%s: hard link not allowed for directory" +msgstr "`%s' ¤Ï¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" + +#: src/ln.c:246 +#, fuzzy, c-format +msgid "%s: cannot overwrite directory" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +# %s: ersetze `%s'? +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "%s: %s ¤òÃÖ¤­´¹¤¨¤Þ¤¹¤«(yes/no)? " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: ¤¹¤Ç¤Ë¥Õ¥¡¥¤¥ë¤¬Â¸ºß¤·¤Þ¤¹" + +#: src/ln.c:304 +#, fuzzy, c-format +msgid "create symbolic link %s to %s" +msgstr "¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯" + +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "%2$s ¤Ø¤Î¥Ï¡¼¥É¥ê¥ó¥¯ %1$s ¤òºîÀ®" + +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "%2$s ¤Ø¤Î¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯ %1$s ¤òºîÀ®¤·¤Þ¤¹" + +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "%2$s ¤Ø¤Î¥Ï¡¼¥É¥ê¥ó¥¯ %1$s ¤òºîÀ®¤·¤Þ¤¹" + +#: src/ln.c:339 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... LAST\n" +"¤â¤·¤¯¤Ï: %s [¥ª¥×¥·¥ç¥ó]... FIRST LAST\n" +"¤â¤·¤¯¤Ï: %s [¥ª¥×¥·¥ç¥ó]... FIRST INCREMENT LAST\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" +"TARGET ¤Ë»ØÄꤷ¤¿¥Õ¥¡¥¤¥ë¤ËÂФ·¤Æ¡¢¥ª¥×¥·¥ç¥ó¤Î¥ê¥ó¥¯Ì¾¤Ç¥ê¥ó¥¯¤òºîÀ®¤·¤Þ" +"¤¹¡£\n" +"¥ê¥ó¥¯Ì¾¤¬¾Êά¤µ¤ì¤¿¾ì¹ç¡¢TARGET ¤ÈƱ¤¸¥Ù¡¼¥¹¥Õ¥¡¥¤¥ë̾¤Î¥ê¥ó¥¯¤ò¸½ºß¤Î\n" +"¥Ç¥£¥ì¥¯¥È¥ê¤ËºîÀ®¤·¤Þ¤¹¡£Ê£¿ô¤Î TARGET ¤¬»ØÄꤵ¤ì¤ë¤è¤¦¤ÊÆóÈÖÌܤηÁ¼°¤ò\n" +"»È¤Ã¤¿¾ì¹ç¤Ë¤Ï¡¢ºÇ¸å¤Î°ú¿ô¤Ï¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó¡£\n" +"-- ¤³¤Î¾ì¹ç¡¢¥Ç¥£¥ì¥¯¥È¥ê¤ÎÃæ¤Ë¤½¤ì¤¾¤ì¤Î TARGET ¥Õ¥¡¥¤¥ëËè¤Ë¥ê¥ó¥¯¤òºîÀ®\n" +" ¤·¤Þ¤¹¡£\n" +"ÆÃ¤Ë»ØÄ꤬¤Ê¤±¤ì¤Ð¡¢¥Ï¡¼¥É¥ê¥ó¥¯¤òºîÀ®¤¹¤ë¤Î¤Ç¡¢¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤òºîÀ®¤¹" +"¤ë\n" +"¾ì¹ç¤Ë¤Ï¡¢--symbolic ¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤¡£¥Ï¡¼¥É¥ê¥ó¥¯¤òºîÀ®¤¹¤ë¾ì" +"¹ç¡¢\n" +"TARGET ¥Õ¥¡¥¤¥ë¤Ï¥ê¥ó¥¯ºîÀ®»þ¤Ë¸ºß¤·¤Æ¤¤¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó¡£\n" +"\n" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" +" --backup[=CONTROL] ºîÀ®Àè¤Ë´û¸¥Õ¥¡¥¤¥ë¤¬¤¢¤ì¤Ð¥Ð¥Ã¥¯¥¢¥Ã¥×¤¹¤ë\n" +" -b °ú¿ô¤ò¼è¤é¤Ê¤¤»ö°Ê³°¤Ï --backup ¤ÈƱÅù\n" +" -d, -F, --directory ¥Ç¥£¥ì¥¯¥È¥ê¤Î¥Ï¡¼¥É¥ê¥ó¥¯¤òºîÀ®\n" +" (¥¹¡¼¥Ñ¡¼¥æ¡¼¥¶¤Î¤ß)\n" +" -f, --force ºîÀ®Àè¤Ë´û¸¥Õ¥¡¥¤¥ë¤¬¤¢¤ì¤Ðºï½ü¤¹¤ë\n" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" +" -n, --no-dereference »ØÄꤷ¤¿¥Õ¥¡¥¤¥ë¤¬Ä̾ï¥Õ¥¡¥¤¥ë¤À¤Ã¤¿¤È¤·¤Æ" +"¤â¡¢\n" +" ¥Ç¥£¥ì¥¯¥È¥ê¤Ø¤Î¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤È¤ß¤Ê¤¹\n" +" -i, --interactive ºîÀ®Àè¤òºï½ü¤¹¤ëÁ°¤Ë³Îǧ¤ò¤È¤ë\n" +" -s, --symbolic ¥Ï¡¼¥É¥ê¥ó¥¯¤Ç¤Ê¤¯¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤òºîÀ®¤¹" +"¤ë\n" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" +" -S, --suffix=SUFFIX Ä̾ï¤Î¥Ð¥Ã¥¯¥¢¥Ã¥×ÀÜÈø¼­¤ò¾å½ñ¤­¤¹¤ë\n" +" --target-directory=DIR ¥ê¥ó¥¯¤òºîÀ®¤¹¤ë¥Ç¥£¥ì¥¯¥È¥ê¤ò DIR ¤Ë»ØÄꤹ¤ë\n" +" -v, --verbose ¥ê¥ó¥¯ºîÀ®Á°¤Ë¤½¤ì¤¾¤ì¥Õ¥¡¥¤¥ë̾¤òɽ¼¨¤¹¤ë\n" + +#: src/ln.c:521 +#, fuzzy, c-format +msgid "%s: specified target directory is not a directory" +msgstr "%s ¤Ï¸ºß¤·¤Þ¤¹¤¬¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "Ê£¿ô¤Î¥ê¥ó¥¯¤ò¤Ï¤ë»þ¤Ï¡¢ºÇ¸å¤Î°ú¿ô¤Ï¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤Ê¤¯¤Æ¤Ï¤Ê¤ê¤Þ¤»¤ó" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó] [¥Õ¥¡¥¤¥ë]...\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" +"¸½ºß¤Î¥æ¡¼¥¶¤Î̾Á°¤òɽ¼¨.\n" +"\n" + +#: src/logname.c:99 +#, fuzzy, c-format +msgid "%s: no login name\n" +msgstr "%s: ̵¸ú¤ÊÈÖ¹æ¤Ç¤¹" + +#: src/ls.c:673 +#, fuzzy +msgid "%b %e %Y" +msgstr "%b %e %H:%M %Y" + +#: src/ls.c:681 +#, fuzzy +msgid "%b %e %H:%M" +msgstr "%b %e %H:%M %Y" + +#: src/ls.c:1307 +#, fuzzy, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "´Ä¶­ÊÑ¿ô QUOTING_STYLE ¤ÎÃÍ(%s)¤¬ÉÔŬÀڤʤΤÇ̵»ë¤·¤Þ¤¹" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "´Ä¶­ÊÑ¿ô COLUMNS ¤ÎÃÍ(%s) ¤¬ÉÔŬÀڤʹÔÉý¤Ê¤Î¤Ç̵»ë¤·¤Þ¤¹" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "´Ä¶­ÊÑ¿ô TABSIZE ¤ÎÃÍ(%s) ¤¬ÉÔŬÀڤʥ¿¥Ö¥µ¥¤¥º¤Ê¤Î¤Ç̵»ë¤·¤Þ¤¹" + +#: src/ls.c:1482 +#, fuzzy, c-format +msgid "invalid line width: %s" +msgstr "Éý `%s' ¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó" + +#: src/ls.c:1556 +#, fuzzy, c-format +msgid "invalid tab size: %s" +msgstr "·¿»ØÄ꤬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹ `%s'" + +#: src/ls.c:1722 +#, fuzzy, c-format +msgid "invalid time style format %s" +msgstr "`%2$s' ¤ËÂФ¹¤ë°ú¿ô %1$s ¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹" + +#: src/ls.c:2054 +#, fuzzy, c-format +msgid "unrecognized prefix: %s" +msgstr "¥ª¥×¥·¥ç¥ó `-%c' ¤òǧ¼±¤Ç¤­¤Þ¤»¤ó" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "´Ä¶­ÊÑ¿ô LS_COLORS ¤ÎÃͤò²ò¼á¤Ç¤­¤Þ¤»¤ó" + +#: src/ls.c:2145 +#, fuzzy, c-format +msgid "cannot determine device and inode of %s" +msgstr "%s ¤ËÂФ¹¤ë¥Õ¥¡¥¤¥ë¥Ý¥¤¥ó¥¿¤òºÆÇÛÃ֤Ǥ­¤Þ¤»¤ó" + +#: src/ls.c:2155 +#, fuzzy, c-format +msgid "not listing already-listed directory: %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/ls.c:2208 src/remove.c:929 +#, fuzzy, c-format +msgid "reading directory %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/ls.c:2603 +#, fuzzy, c-format +msgid "cannot compare file names %s and %s" +msgstr "Èæ³Ó¤·¤¿Ê¸»úÎó¤Ï %s ¤È %s ¤Ç¤¹." + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" +"»ØÄꤵ¤ì¤¿¥Õ¥¡¥¤¥ë¤Î¾ðÊó¤ò¥ê¥¹¥È½ÐÎϤ¹¤ë(»ØÄê¤Ê¤±¤ì¤Ð¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê)¡£\n" +"-cftuSUX ¤ä --sort ¤Î»ØÄ꤬¤Ê¤¯¤Æ¤â¡¢¥¢¥ë¥Õ¥¡¥Ù¥Ã¥È½ç¤ÇÀ°Î󤹤롣\n" +"\n" + +#: src/ls.c:3770 +#, fuzzy +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" +" -a, --all '.' ¤Ç»Ï¤Þ¤ë±£¤·¥Õ¥¡¥¤¥ë¤âɽ¼¨¤¹¤ë\n" +" -A, --almost-all ±£¤·¥Õ¥¡¥¤¥ë¤òɽ¼¨¤¹¤ë¤¬¡¢°ÅÌۤΠ'.' ¤ä '..'\n" +" ¤Ïɽ¼¨¤·¤Ê¤¤\n" +" -b, --escape Èóɽ¼¨Ê¸»ú¤Ï 8 ¿Ê¿ô¥¨¥¹¥±¡¼¥×¤·¤ÆÉ½¼¨¤¹¤ë\n" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" +" --block-size=SIZE ¥Ö¥í¥Ã¥¯¥µ¥¤¥º¤ò SIZE ¤È¤¹¤ë\n" +" -B, --ignore-backups ËöÈø¤Ë '~' ¤¬¤Ä¤¯¥Õ¥¡¥¤¥ë¤ò¥ê¥¹¥Èɽ¼¨¤·¤Ê¤¤\n" +" -c -lt ÉÕ¤­: ctime(ºÇ½ª¹¹¿·»þ¹ï) ¤Ç¥½¡¼¥È¤·¤ÆÉ½" +"¼¨\n" +" -l ÉÕ¤­: ctime ¤òɽ¼¨¤¹¤ë¡£Ì¾Á°¤Ç¥½¡¼¥È¤¹¤ë\n" +" ¤½¤Î¾: ctime ¤Ç¥½¡¼¥È¤¹¤ë\n" + +#: src/ls.c:3784 +#, fuzzy +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" +" -C ¹àÌܤò¿âľÊý¸þ¤Ë¥ê¥¹¥È¤¹¤ë\n" +" --color[=WHEN] ¥Õ¥¡¥¤¥ë¥¿¥¤¥×¤Ë±þ¤¸¤Æ¿§ÉÕ¤­É½¼¨¤¹¤ë¡£\n" +" WHEN ¤Ë¤Ï `never', `always' Ëô¤Ï `auto' ¤ò»Ø" +"Äê\n" +" -d, --directory ¥Ç¥£¥ì¥¯¥È¥ê¤ÎÃæ¿È¤Ç¤Ï¤Ê¤¯¹àÌܼ«¿È¤òɽ¼¨\n" +" -D, --dired Emacs ¤Î dired ¥â¡¼¥É¤ÎÍͤËɽ¼¨¤¹¤ë\n" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" +" -f À°Î󤷤ʤ¤¡£-aU ¤¬Í­¸ú¡¢-lst ¤¬Ìµ¸ú¤Ë¤Ê¤ë\n" +" -F, --classify ¹àÌܤ˥ե¡¥¤¥ëɸ¼± (*/=@| ¤ÎÆâ°ì¤Ä) ¤òÉÕ¤±Â­¤¹\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time -l --time-style=full-iso ¤ÈƱÍÍ\n" + +#: src/ls.c:3799 +#, fuzzy +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" +" -g like -l ƱÍͤÀ¤¬½êÍ­¼Ô¤ò¥ê¥¹¥È¤·¤Ê¤¤\n" +" -G, --no-group ¥°¥ë¡¼¥×¾ðÊó¤Îɽ¼¨¤ò¹Ô¤ï¤Ê¤¤\n" +" -h, --human-readable ¥µ¥¤¥º¤ò¿Í´Ö¤¬ÆÉ¤ß¤ä¤¹¤¤·Á¼°¤Çɽ¼¨ (Îã: 1K 234M " +"2G)\n" +" --si Ʊ¾å¡£Ã¢¤·Ã±°Ì¤Ï 1024 ¤Ç¤Ï¤Ê¤¯ 1000 ÇÜ\n" +" -H, --dereference-command-line ¥³¥Þ¥ó¥É¥é¥¤¥ó¤Î¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤òé¤ë\n" + +#: src/ls.c:3810 +#, fuzzy +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" +" --indicator-style=WORD ¥Õ¥¡¥¤¥ëɸ¼±¤Î·Á¼°¤ò WORD ¤Ë¤·¤Æ¹àÌܤËÉÕ¤±Â­¤¹\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode ¥Õ¥¡¥¤¥ëËè¤Ë¥¤¥ó¥Ç¥Ã¥¯¥¹ÈÖ¹æ¤òɽ¼¨¤¹¤ë\n" +" -I, --ignore=PATTERN PATTERN ¤Ë°ìÃפ¹¤ë¹àÌܤò¥ê¥¹¥Èɽ¼¨¤·¤Ê¤¤\n" +" -k, --kilobytes --block-size=1024 ¤ÈƱÍÍ\n" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" +" -l ¾ÜºÙ¥ê¥¹¥È·Á¼°¤òɽ¼¨¤¹¤ë\n" +" -L, --dereference ¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤Î¥Õ¥¡¥¤¥ë¾ðÊó¤òɽ¼¨¤¹¤ë¤È¤­" +"¤Ï\n" +" ¥ê¥ó¥¯¤½¤Î¤â¤Î¤Ç¤Ï¤Ê¤¯¥ê¥ó¥¯»²¾ÈÀè¤Î¥Õ¥¡¥¤¥ë\n" +" ¾ðÊó¤òɽ¼¨¤¹¤ë\n" +" -m ¹àÌܤΥꥹ¥È¤ò¥«¥ó¥Þ¤Ç¶èÀڤꡢ°ì¹Ô¤ËµÍ¤á¹þ¤à\n" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" +" -n, --numeric-uid-gid -l ¤ÈƱÍͤÀ¤¬¡¢UID ¤ä GID ¤Ï¿ôÃͤÇɽµ­¤¹¤ë\n" +" -N, --literal ÁǤιàÌÜ̾¤òɽ¼¨¤¹¤ë\n" +" (Î㤨¤Ð¡¢À©¸æÊ¸»úÅù¤òÆÃḚ̂·¤¤¤·¤Ê¤¤)\n" +" -o -l ¤ÈƱÍͤÀ¤¬¡¢¥°¥ë¡¼¥×¾ðÊó¤òɽ¼¨¤·¤Ê¤¤\n" +" -p, --file-type ¹àÌܤ˥ե¡¥¤¥ëɸ¼± (/=@| ¤ÎÆâ°ì¤Ä) ¤òÉÕ¤±Â­¤¹\n" + +#: src/ls.c:3831 +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -q, --hide-control-chars ɽ¼¨ÉÔ²Äǽ¤Êʸ»ú¤ò ? ¤ËÃÖ¤­´¹¤¨¤ë\n" +" --show-control-chars ɽ¼¨ÉÔ²Äǽ¤Êʸ»ú¤ò¤½¤Î¤Þ¤Þɽ¼¨ (¥×¥í¥°¥é¥à¤¬\n" +" `ls' ¤Ç¤Ê¤«¤Ã¤¿¤ê½ÐÎϤ¬Ã¼Ëö¤Ç¤Ê¤¤¾ì¹ç¤Î½é´ü¾õ" +"ÂÖ)\n" +" -Q, --quote-name ¥Õ¥¡¥¤¥ë̾¤ò¥À¥Ö¥ë¥¯¥©¡¼¥È(\")¤Ç°Ï¤à\n" +" --quoting-style=WORD ¹àÌÜ̾¤Î¥¯¥©¡¼¥È¤Ë WORD ʸ»ú¤ò»È¤¦:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" +" -r, --reverse ¥½¡¼¥È½ç¤òȿž¤µ¤»¤ë\n" +" -R, --recursive ¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê¤òºÆµ¢Åª¤Ë¥ê¥¹¥È¤¹¤ë\n" +" -s, --size ¥Ö¥í¥Ã¥¯Ã±°Ì¤Ç³Æ¥Õ¥¡¥¤¥ë¥µ¥¤¥º¤òɽ¼¨¤¹¤ë\n" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" +" -S ¥Õ¥¡¥¤¥ë¥µ¥¤¥º¤Ç¥½¡¼¥È¤¹¤ë\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD ½¤Àµ»þ¹ï¤Ç¤Ï¤Ê¤¯ WORD ¤Î»þ¹ï¤ò»È¤¦\n" +" atime, access, use, ctime Ëô¤Ï status\n" +" »ØÄꤷ¤¿»þ¹ï¤Ï --sort=time ¤Î¥­¡¼¤È¤·¤Æ»È¤ï¤ì" +"¤ë\n" + +#: src/ls.c:3853 +#, fuzzy +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" +" --time-style=WORD WORD ·Á¼°¤ò»È¤Ã¤Æ»þ¹ï¤òɽ¼¨¤¹¤ë\n" +" full-iso, iso, locale, posix-iso\n" +" -t ½¤Àµ»þ¹ï¤Ç¥½¡¼¥È¤¹¤ë\n" +" -T, --tabsize=COLS ¥¿¥ÖÉý¤ò 8 ¤Ç¤Ï¤Ê¤¯ COLS ¤È¤ß¤Ê¤¹\n" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" +" -u -lt ¤È»ÈÍÑ: ¥¢¥¯¥»¥¹»þ¹ï¤Ç¥½¡¼¥È¡¢É½¼¨¤¹¤ë\n" +" -l ¤È»ÈÍÑ: ¥¢¥¯¥»¥¹»þ¹ï¤òɽ¼¨¡¢Ì¾Á°¤Ç¥½¡¼¥È\n" +" ¤½¤Î¾: ¥¢¥¯¥»¥¹»þ¹ï¤Ç¥½¡¼¥È\n" +" -U ¥½¡¼¥È¤·¤Ê¤¤ -- ¥Ç¥£¥ì¥¯¥È¥êÆâ¤Î½ç¤Ç¹àÌܤòɽ¼¨\n" +" -v ¥Ð¡¼¥¸¥ç¥ó¤Ç¥½¡¼¥È\n" + +#: src/ls.c:3871 +#, fuzzy +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" +" -f, --fields=LIST LIST ¤Ë»ØÄꤷ¤¿¥Õ¥£¡¼¥ë¥É¤À¤±¤ò½ÐÎÏ; -s ¥ª¥×¥·¥ç" +"¥ó\n" +" ¤¬»ØÄꤵ¤ì¤Ê¤±¤ì¤Ð, ¶èÀÚ¤êʸ»ú¤ò´Þ¤à¹Ô¤âɽ¼¨\n" +" -n (̵»ë)\n" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" +"\n" +"ÆÃ¤Ë»ØÄ꤬¤Ê¤±¤ì¤Ð color ¤Ï¥Õ¥¡¥¤¥ë·¿¤Ë¤è¤Ã¤Æ¶èÊ̤µ¤ì¤Þ¤»¤ó¡£¤³¤ì¤Ï\n" +"--color=none ¤ò»È¤¦¤Î¤ÈƱ¤¸¤Ç¤¹¡£WHEN °ú¿ô¤ò»ØÄꤻ¤º¤Ë --color ¥ª¥×¥·¥ç¥ó¤ò\n" +"»È¤¦¤È --color=always ¤ò»È¤¦¤Î¤ÈƱÅù¤Ç¤¹¡£--color=auto ¤ò»È¤¨¤Ð¡¢Àܳ¤µ¤ì¤¿\n" +"üËö(tty)¤Îɸ½à½ÐÎϤˤΤߥ«¥é¡¼¥³¡¼¥É¤ò½ÐÎϤ·¤Þ¤¹¡£\n" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "Ulrich Drepper ¤È Scott Miller" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó] [¥Õ¥¡¥¤¥ë]...\n" +" Ëô¤Ï: %s [¥ª¥×¥·¥ç¥ó] --check [¥Õ¥¡¥¤¥ë]\n" +"%s (%d ¥Ó¥Ã¥È) ¥Á¥§¥Ã¥¯¥µ¥à¤Îɽ¼¨, ¤Þ¤¿¤Ï¾È¹ç.\n" +"¥Õ¥¡¥¤¥ë¤Î»ØÄ꤬¤Ê¤«¤Ã¤¿¤ê, - ¤Ç¤¢¤Ã¤¿¾ì¹ç, ɸ½àÆþÎϤ«¤éÆÉ¤ß¹þ¤ß¤Þ¤¹.\n" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" +"\n" +" -b, --binary ¥Õ¥¡¥¤¥ë¤ò¥Ð¥¤¥Ê¥ê¥â¡¼¥É¤ÇÆÉ¤ß¹þ¤à\n" +" (DOS/Windows ¤Ç¤Ïɸ½à)\n" +" -c, --check Í¿¤¨¤é¤ì¤¿¥ê¥¹¥È¤ËÂФ¹¤ë %s Ãͤξȹç¤ò¹Ô¤¦\n" +" -t, --text ¥Õ¥¡¥¤¥ë¤ò¥Æ¥­¥¹¥È¥â¡¼¥É¤ÇÆÉ¤ß¹þ¤à (ɸ½à)\n" +"\n" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" +"°Ê²¼¤Î 2¤Ä¤Î¥ª¥×¥·¥ç¥ó¤Ï¥Á¥§¥Ã¥¯¥µ¥à¤Î³Îǧ¤ò¹Ô¤¦ºÝ¤Ë¤Î¤ßÍ­±×\n" +" --status ²¿¤âɽ¼¨¤»¤º¤Ë¥¹¥Æ¡¼¥¿¥¹¥³¡¼¥É¤Ë¤è¤Ã¤Æ, À®¸ù¤«\n" +" ¤É¤¦¤«¤ò¼¨¤¹\n" +" -w, --warn ¥Á¥§¥Ã¥¯¥µ¥à¹Ô¤¬ÉÔŬÀڤʽñ¼°¤Î¾ì¹ç¤Ë·Ù¹ð\n" +"\n" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" +"\n" +"¥Á¥§¥Ã¥¯¥µ¥à¤Ï %s ¤Ëµ­¤µ¤ì¤Æ¤¤¤ëÄ̤ê¤Ë·×»»¤µ¤ì¤Þ¤¹. ¾È¹ç¤ÎºÝ¤ËÆþÎÏ\n" +"¤¹¤ë¥Õ¥¡¥¤¥ë¤Ï, ¤³¤Î¥×¥í¥°¥é¥à¤Ë¤è¤Ã¤Æ½ÐÎϤµ¤ì¤¿·Á¼°¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó.\n" +"ÆÃ¤Ë¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Ê¤¤¤Ç¼Â¹Ô¤·¤¿¾ì¹ç¤Ë¤Ï, ¤½¤ì¤¾¤ì¤Î¥Õ¥¡¥¤¥ëËè¤Ë\n" +"¥Á¥§¥Ã¥¯¥µ¥à, ¥¿¥¤¥×¤Ë´Ø¤¹¤ë°õ(¥Ð¥¤¥Ê¥ê¤Ë¤Ï `*', ¥Æ¥­¥¹¥È¤Ë¤Ï ` '), \n" +"µÚ¤Ó¥Õ¥¡¥¤¥ë̾¤òɽ¼¨¤·¤Þ¤¹.\n" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "%s: %lu: %s ¥Á¥§¥Ã¥¯¥µ¥à¤Î¹Ô¤È¤·¤ÆÉÔŬÀڤʽñ¼°¤Ç¤¹" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "%s: ¥ª¡¼¥×¥ó¤Þ¤¿¤ÏÆÉ¤ß¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "¼ºÇÔ" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "´°Î»" + +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%s: ÆÉ¤ß¹þ¤ß¥¨¥é¡¼" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "%s: %s ¥Á¥§¥Ã¥¯¥µ¥à¤È¤·¤ÆÅ¬Àڤʽñ¼°¤Î¹Ô¤¬¤¢¤ê¤Þ¤»¤ó" + +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "·Ù¹ð: %2$d ¤Î¤¦¤Á %1$d ¸Ä¤Î%3$s¤òÆÉ¤á¤Þ¤»¤ó¤Ç¤·¤¿" + +#: src/md5sum.c:473 +msgid "file" +msgstr "¥Õ¥¡¥¤¥ë" + +#: src/md5sum.c:473 +msgid "files" +msgstr "¥Õ¥¡¥¤¥ë" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "·Ù¹ð: %2$d ¤ÎÆâ %1$d ¤Î%3$s¤¬°ìÃפ·¤Þ¤»¤ó¤Ç¤·¤¿" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "¥Á¥§¥Ã¥¯¥µ¥à" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "¥Á¥§¥Ã¥¯¥µ¥à" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "--binary ¤È --text ¥ª¥×¥·¥ç¥ó¤Ï¥Á¥§¥Ã¥¯¥µ¥à¤Î³Îǧ»þ¤Ë¤Ï̵°ÕÌ£¤Ç¤¹" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "¥ª¥×¥·¥ç¥ó --string ¤È --check ¤ÏÇÓ¾Ū¤Ë»È¤ï¤ì¤Þ¤¹" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "--status ¥ª¥×¥·¥ç¥ó¤Ï¥Á¥§¥Ã¥¯¥µ¥à¤Î³Îǧ»þ¤Î¤ß°ÕÌ£¤ò»ý¤Á¤Þ¤¹" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "--warn ¥ª¥×¥·¥ç¥ó¤Ï¥Á¥§¥Ã¥¯¥µ¥à¤Î³Îǧ»þ¤Î¤ß°ÕÌ£¤ò»ý¤Á¤Þ¤¹" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "--string ¥ª¥×¥·¥ç¥ó¤òÍøÍѤ¹¤ë¤È¤­¤Ï, ¥Õ¥¡¥¤¥ë¤ò»ØÄê¤Ç¤­¤Þ¤»¤ó" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "--check ¥ª¥×¥·¥ç¥ó¤ò»È¤¦¤È¤­¤Ï, °ú¿ô¤ò°ì¤Ä¤À¤±»ØÄê¤Ç¤­¤Þ¤¹" + +#: src/mkdir.c:61 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó] [¥Õ¥¡¥¤¥ë]...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" +"¥Ç¥£¥ì¥¯¥È¥ê¤òºîÀ®¤¹¤ë¡£¤¿¤À¤·´û¤Ë¥Ç¥£¥ì¥¯¥È¥ê¤¬¤¢¤ì¤Ð²¿¤â¤·¤Ê¤¤¡£\n" +"\n" + +#: src/mkdir.c:69 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +" -m, --mode=MODE rwxrwxrwx - umask ¤Ç¤Ê¤¯(chmod ¤Î¤è¤¦¤Ë)¥¢¥¯¥»¥¹¸¢¤òÀß" +"Äê\n" +" -p, --parents ´û¸¤Ç¤¢¤Ã¤Æ¤â¥¨¥é¡¼¤È¤»¤º¡¢É¬ÍפȤʤë¥Ç¥£¥ì¥¯¥È¥ê¤âºî" +"À®\n" +" -v, --verbose ¥Ç¥£¥ì¥¯¥È¥ê¤òºîÀ®¤¹¤ëÅ٤˥á¥Ã¥»¡¼¥¸¤ò½ÐÎϤ¹¤ë\n" + +#: src/mkdir.c:113 +#, fuzzy, c-format +msgid "created directory %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/mkdir.c:190 +#, fuzzy, c-format +msgid "cannot set permissions of directory %s" +msgstr "%s ¤Î°À­¤òÊѹ¹¤Ç¤­¤Þ¤»¤ó" + +#: src/mkfifo.c:55 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó] [¥Õ¥¡¥¤¥ë]...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" +"Í¿¤¨¤é¤ì¤¿ `̾Á°' ¤Ç̾Á°ÉÕ¤­¥Ñ¥¤¥× (FIFO) ¤òºîÀ®¤¹¤ë¡£\n" +"\n" + +#: src/mkfifo.c:63 src/mknod.c:64 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" +" -m, --mode=MODE ¥¢¥¯¥»¥¹¸¢¤ò a=rw - umask ¤Ç¤Ï¤Ê¤¯(chmod ¤ÎÍͤË)»ØÄꤹ" +"¤ë\n" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "̾Á°¤Ä¤­¥Ñ¥¤¥×¤¬¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" + +#: src/mkfifo.c:123 src/mknod.c:127 +#, fuzzy +msgid "invalid mode" +msgstr "%s: ̵¸ú¤ÊÈÖ¹æÉ½µ­¤Ç¤¹" + +#: src/mkfifo.c:142 +#, fuzzy, c-format +msgid "cannot set permissions of fifo %s" +msgstr "%s ¤Î°À­¤òÊѹ¹¤Ç¤­¤Þ¤»¤ó" + +#: src/mknod.c:55 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... SET1 [SET2]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" +"Í¿¤¨¤é¤ì¤¿ TYPE ¤Î¥¹¥Ú¥·¥ã¥ë¥Õ¥¡¥¤¥ë NAME ¤òºîÀ®¤¹¤ë¡£\n" +"\n" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" + +#: src/mknod.c:76 +#, fuzzy +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"\n" +"MAJOR ¤È MINOR ¤Ï TYPE p ¤ËÂФ·¤Æ¤Ï¶Ø¤¸¤é¤Þ¤¹¡£¤½¤ì°Ê³°¤À¤Èɬ¿Ü¤Ç¤¹¡£\n" +"TYPE¤Î»ØÄê¤Ï°Ê²¼¤ÎÄ̤ê:\n" +"\n" +" b ¥Ö¥í¥Ã¥¯·¿(¥Ð¥Ã¥Õ¥¡¥ê¥ó¥°¤µ¤ì¤ë)¥¹¥Ú¥·¥ã¥ë¥Õ¥¡¥¤¥ë¤ÎºîÀ®\n" +" c, u ¥­¥ã¥é¥¯¥¿·¿(¥Ð¥Ã¥Õ¥¡¥ê¥ó¥°¤µ¤ì¤Ê¤¤)¥¹¥Ú¥·¥ã¥ë¥Õ¥¡¥¤¥ë¤ÎºîÀ®\n" +" p ̾Á°¤Ä¤­¥Ñ¥¤¥×¤ÎºîÀ®\n" + +#: src/mknod.c:141 +#, fuzzy +msgid "wrong number of arguments" +msgstr "°ú¿ô¤¬Â­¤ê¤Þ¤»¤ó" + +#: src/mknod.c:153 +#, fuzzy +msgid "block special files not supported" +msgstr "¥Ö¥í¥Ã¥¯¥¹¥Ú¥·¥ã¥ë¥Õ¥¡¥¤¥ë" + +#: src/mknod.c:162 +#, fuzzy +msgid "character special files not supported" +msgstr "¥­¥ã¥é¥¯¥¿¥¹¥Ú¥·¥ã¥ë¥Õ¥¡¥¤¥ë" + +#: src/mknod.c:171 +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" +"¥¹¥Ú¥·¥ã¥ë¥Õ¥¡¥¤¥ë¤òºîÀ®¤¹¤ë»þ¤Ï¡¢¥á¥¸¥ã¡¼µÚ¤Ó¥Þ¥¤¥Ê¡¼¥Ç¥Ð¥¤¥¹ÈÖ¹æ¤ò\n" +"»ØÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" + +#: src/mknod.c:186 +#, fuzzy, c-format +msgid "invalid major device number %s" +msgstr "³«»Ï¹ÔÈֹ椬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó: `%s'" + +#: src/mknod.c:191 +#, fuzzy, c-format +msgid "invalid minor device number %s" +msgstr "³«»Ï¹ÔÈֹ椬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó: `%s'" + +#: src/mknod.c:196 +#, fuzzy, c-format +msgid "invalid device %s %s" +msgstr "`%2$s' ¤ËÂФ¹¤ë°ú¿ô %1$s ¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "" +"̾Á°¤Ä¤­¥Ñ¥¤¥×¤ËÂФ·¤Æ¥á¥¸¥ã¡¼¤ª¤è¤Ó¥Þ¥¤¥Ê¡¼¥Ç¥Ð¥¤¥¹Èֹ椬»ØÄꤵ¤ì¤Æ\n" +"¤¤¤Þ¤»¤ó" + +#: src/mknod.c:231 +#, fuzzy, c-format +msgid "cannot set permissions of %s" +msgstr "%s ¤Î°À­¤òÊѹ¹¤Ç¤­¤Þ¤»¤ó" + +#: src/mv.c:44 +#, fuzzy +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie ¤ª¤è¤Ó Jim Meyering" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"¥Õ¥¡¥¤¥ë̾¤ÎÊѹ¹¡¢¤â¤·¤¯¤ÏÊ£¿ô¤Î¥Õ¥¡¥¤¥ë¤ò¥Ç¥£¥ì¥¯¥È¥ê¤Ø°Üư¤·¤Þ¤¹¡£\n" +"\n" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" +" --backup[=CONTROL] ¥Õ¥¡¥¤¥ë¤ò¾å½ñ¤­¤¹¤ëºÝ¡¢¥Ð¥Ã¥¯¥¢¥Ã¥×¤ò¤È¤ë\n" +" -b --backup ƱÍͤÀ¤¬¡¢°ú¿ô¤ò¼õ¤±ÉÕ¤±¤Ê¤¤\n" +" -f, --force ¾å½ñ¤­¤ÎÁ°¤Ë³Îǧ¤ò¤È¤é¤Ê¤¤¡£--reply=yes ƱÅù\n" +" -i, --interactive ¾å½ñ¤­¤ÎÁ°¤Ë³Îǧ¤ò¤È¤ë¡£--reply=query ƱÅù\n" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" +" --reply={yes,no,query} °ÜưÀè¤Î´û¸¥Õ¥¡¥¤¥ë¤Ë´Ø¤¹¤ëÌ䤤¹ç¤ï¤»¤Î\n" +" °·¤¤Êý¤ò»ØÄꤹ¤ë\n" +" --strip-trailing-slashes ³Æ SOURCE °ú¿ô¤Î;ʬ¤ÊËöÈø¥¹¥é¥Ã¥·¥å¤ò¼è¤ê½ü" +"¤¯\n" +" -S, --suffix=SUFFIX Ä̾ï¤Î¥Ð¥Ã¥¯¥¢¥Ã¥×ÀÜÈø¼­¤ò¾å½ñ¤­¤¹¤ë\n" + +#: src/mv.c:339 +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +" --target-directory=DIR Á´ SOURCE °ú¿ô¤ò DIR ¥Ç¥£¥ì¥¯¥È¥ê¤Ë°Üư¤¹¤ë\n" +" -u, --update SOURCE ¥Õ¥¡¥¤¥ë¤¬°ÜưÀè¤Î¥Õ¥¡¥¤¥ë¤è¤ê¿·¤·¤¤" +"¤«¡¢\n" +" °ÜưÀè¤ËƱ̾¥Õ¥¡¥¤¥ë¤¬Ìµ¤¤¤È¤­¤À¤±°Üư¤¹¤ë\n" +" -v, --verbose ¼Â¹Ô¤µ¤ì¤¿¤³¤È¤òÀâÌÀ¤¹¤ë\n" + +#: src/mv.c:467 +#, fuzzy, c-format +msgid "specified target, %s is not a directory" +msgstr "%s ¤Ï¸ºß¤·¤Þ¤¹¤¬¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "" +"Ê£¿ô¤Î¥Õ¥¡¥¤¥ë¤ò°Üư¤µ¤»¤ë»þ¤Ï¡¢ºÇ¸å¤Î°ú¿ô¤Ï¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" + +#: src/nice.c:67 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó] [¥Õ¥¡¥¤¥ë]...\n" + +#: src/nice.c:68 +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" +"¥¹¥±¥¸¥å¡¼¥ê¥ó¥°¤ÎÍ¥ÀèÅÙ¤òÊѹ¹¤·¤Æ¥×¥í¥°¥é¥à¤ò¼Â¹Ô.\n" +"¥³¥Þ¥ó¥É¤¬»ØÄꤵ¤ì¤Ê¤¤¾ì¹ç¤Ï, ¸½ºß¤Î¥¹¥±¥¸¥å¡¼¥ê¥ó¥°Í¥Àè½ç°Ì¤òɽ¼¨. ɸ½à¤Î\n" +"Í¥Àè½ç°Ì¤Ï 10. »ØÄêÈÏ°Ï¤Ï -20 (ºÇ¹âÍ¥Àè½ç°Ì) ¤«¤é 19 (ºÇÄã) ¤Þ¤Ç.\n" +"\n" +" -n, --adjustment=ADJUST ºÇ½é¤ËÍ¥Àè½ç°Ì¤ò ADJUST ¤Ë¾å¤²¤ë\n" + +#: src/nice.c:109 src/nice.c:122 +#, fuzzy, c-format +msgid "invalid option `%s'" +msgstr "Éý¤Î¥ª¥×¥·¥ç¥ó `%s' ¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó" + +#: src/nice.c:147 +#, fuzzy, c-format +msgid "invalid priority `%s'" +msgstr "Éý `%s' ¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "(°ú¿ô¤ò»ý¤Ä) ¥³¥Þ¥ó¥É¤òÍ¿¤¨¤Ê¤¯¤Æ¤Ï¤Ê¤ê¤Þ¤»¤ó" + +#: src/nice.c:178 src/nice.c:187 +#, fuzzy +msgid "cannot get priority" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/nice.c:192 +#, fuzzy +msgid "cannot set priority" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "Scott Bartram ¤È David MacKenzie" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"»ØÄꤷ¤¿¤½¤ì¤¾¤ì¤Î¥Õ¥¡¥¤¥ë¤Ë¹ÔÈÖ¹æ¤òÉÕ¤±Â­¤·¤Æ, ɸ½à½ÐÎϤ˽ñ¤­¹þ¤ß¤Þ¤¹.\n" +"¥Õ¥¡¥¤¥ë¤Î»ØÄ̵꤬¤¤¤«, `-' ¤ò»ØÄꤷ¤¿¾ì¹ç¤Ë¤Ï, ɸ½àÆþÎϤòÆÉ¤ß¹þ¤ß¤Þ¤¹.\n" +"\n" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" +" -b, --body-numbering=STYLE ËÜʸ¤Î¹ÔÈÖ¹æ¤ò STYLE ¤Î·Á¼°¤Ë\n" +" -d, --section-delimiter=CC ÏÀÍý¥Ú¡¼¥¸¤Î¶èÀڤ국¹æ¤Ë CC ¤òÍøÍÑ\n" +" -f, --footer-numbering=STYLE ¥Õ¥Ã¥¿¤Î¹ÔÈÖ¹æ¤ò STYLE ¤Î·Á¼°¤Ë\n" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" +" -h, --header-numbering=STYLE ¥Ø¥Ã¥À¤Î¹ÔÈÖ¹æ¤ò STYLE ¤Î·Á¼°¤Ë\n" +" -i, --page-increment=NUMBER ¹ÔÈÖ¹æ¤ÎÁýʬ¤ò NUMBER ¤Ë\n" +" -l, --join-blank-lines=NUMBER NUMBER ¸Ä°Ê²¼¤Î¶õ¹Ô¤òÅ»¤á¤Æ°ì¹Ô¤È\n" +" ¸«¤Ê¤·¤Æ¥«¥¦¥ó¥È\n" +" -n, --number-format=FORMAT ¹ÔÈÖ¹æ¤Î½ÐÎÏ·Á¼°¤ò FORMAT ¤Ë\n" +" -p, --no-renumber ÏÀÍý¥Ú¡¼¥¸¤´¤È¤Ë¹ÔÈÖ¹æ¤Î¥«¥¦¥ó¥¿¤ò\n" +" ¥ê¥»¥Ã¥È¤·¤Ê¤¤\n" +" -s, --number-separator=STRING (²Äǽ¤Ê¾ì¹ç)¹ÔÈÖ¹æ¤Î¸å¤í¤Ë STRING\n" +" ¤òÉÕ¤±Â­¤¹\n" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" +" -v, --first-page=NUMBER ³ÆÏÀÍý¥Ú¡¼¥¸¤ÎºÇ½é¤Î¹ÔÈÖ¹æ¤ò NUMBER ¤Ë\n" +" -w, --number-width=NUMBER ¹ÔÈÖ¹æ¤ËÍøÍѤ¹¤ëʸ»úÉý¤ò NUMBER ¤Ë\n" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" +"\n" +"¥ª¥×¥·¥ç¥ó¤Î»ØÄ̵꤬¤±¤ì¤Ð, ¥×¥í¥°¥é¥à¤Ï -v1 -i1 -l1 -sTAB -w6 -nrn, -hn,\n" +"-bt, -fn ¤È¤·¤ÆÆ°ºî¤·¤Þ¤¹. CC ÃÍ¤Ï ÏÀÍý¥Ú¡¼¥¸¤Î¶èÀڤ국¹æ¤ò»ØÄꤹ¤ë¤¿¤á¤Î\n" +"2 ¤Ä¤Îʸ»ú¤Ç¤¹. 2¤Ä¤á¤Îʸ»ú¤¬»ØÄꤵ¤ì¤Ê¤¤¾ì¹ç¤Ë¤Ï, °ÅÌÛ¤Ë : ¤¬»ØÄꤵ¤ì¤Þ¤¹.\n" +"`\\\\' ¤ò »ØÄꤷ¤¿¤±¤ì¤Ð, `\\\\' ¤ò»È¤¦¤è¤¦¤Ë¤·¤Æ¤¯¤À¤µ¤¤.\n" +"STYLE ¤Ï, °Ê²¼¤Î¤¦¤Á¤Î 1 ¤Ä¤ò»ØÄꤷ¤Þ¤¹.\n" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" +"\n" +" a ¤¹¤Ù¤Æ¤Î¹ÔÈÖ¹æ\n" +" t ¶õ¹Ô°Ê³°¤Î¹ÔÈÖ¹æ\n" +" n ¶õ¹Ô¤Î¹ÔÈÖ¹æ\n" +" pREGEXP Àµµ¬É½¸½ REGEXP ¤È¤Î°ìÃפò´Þ¤à¹Ô¤À¤±¤Î¹ÔÈÖ¹æ\n" +"\n" +"FORMAT ¤Ë¤Ï, °Ê²¼¤«¤é°ì¤Ä»ØÄꤷ¤Þ¤¹:\n" +"\n" +" ln º¸Â·¤¨, ¥¼¥í¤òËä¤á¤Ê¤¤\n" +" rn ±¦Â·¤¨, ¥¼¥í¤òËä¤á¤Ê¤¤\n" +" rz ±¦Â·¤¨, ¥¼¥í¤òËä¤á¤ë\n" +"\n" + +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "³«»Ï¹ÔÈֹ椬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó: `%s'" + +#: src/nl.c:514 +#, c-format +msgid "invalid line number increment: `%s'" +msgstr "¹ÔÈÖ¹æ¤ÎÁýʬ¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó: `%s'" + +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "¶õ¹Ô¤Î¹ÔÈֹ椬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó: `%s'" + +#: src/nl.c:541 +#, c-format +msgid "invalid line number field width: `%s'" +msgstr "¥Õ¥£¡¼¥ë¥ÉÉý¤Î»ØÄê¹ÔÈֹ椬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó: `%s'" + +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... [¥Õ¥¡¥¤¥ë]...\n" +" Ëô¤Ï: %s --traditional [¥Õ¥¡¥¤¥ë] [[+]¥ª¥Õ¥»¥Ã¥È [[+]¥é¥Ù¥ë]]\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"\n" +"¥Õ¥¡¥¤¥ë¤ÎÌÀ³Î¤Êɽ¸½¤òɸ½à½ÐÎϤ˽ñ¤­¹þ¤à. ÆÃ¤Ë»ØÄ꤬¤Ê¤±¤ì¤Ð, 8 ¿Ê¿ô¤Ç\n" +"ɽ¸½¤·¤Þ¤¹. ¥Õ¥¡¥¤¥ë»ØÄꤵ¤ì¤Ê¤¤, ¤¢¤ë¤¤¤Ï `-' ¤¬»ØÄꤵ¤ì¤¿¾ì¹ç¤Ë¤Ï, \n" +"ɸ½àÆþÎϤòÆÉ¤ß¹þ¤ß¤Þ¤¹.\n" +"\n" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "Ť¤¥ª¥×¥·¥ç¥ó¤Ëɬ¿Ü¤Î°ú¿ô¤Ïû¤¤¥ª¥×¥·¥ç¥ó¤Ë¤âɬ¿Ü¤Ç¤¹.\n" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" +" -A, --address-radix=RADIX ¥Õ¥¡¥¤¥ë¥ª¥Õ¥»¥Ã¥È¤Îɽ¼¨·Á¼°¤ò»ØÄê\n" +" -j, --skip-bytes=BYTES ¥Õ¥¡¥¤¥ë¤ÎÀèÆ¬¤è¤ê BYTES ʬ¥¹¥­¥Ã¥×\n" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" +" -N, --read-bytes=BYTES ¥À¥ó¥×¤¹¤ë¥Õ¥¡¥¤¥ë¤ÎÂ礭¤µ¤ò BYTES ¤ËÀ©¸Â\n" +" -s, --strings[=BYTES] ɽ¼¨²Äǽ¤Ê BYTES °Ê¾å¤ÎŤµ¤ò»ý¤Äʸ»úÎó¤ò½ÐÎÏ\n" +" -t, --format=TYPE ½ÐÎÏ¥Õ¥©¡¼¥Þ¥Ã¥È¤ò»ØÄê\n" +" -v, --output-duplicates `*' ¥Þ¡¼¥¯¤Ç½ÐÎϹԤò¾Êά¤¹¤ë¤Î¤ò»ß¤á¤µ¤»¤ë\n" +" -w, --width[=BYTES] °ì¹Ô¤¢¤¿¤ê¤Î½ÐÎϥХ¤¥È¿ô¤ò»ØÄê\n" +" --traditional °ú¿ô¤Î·Á¼°¤ò¸Å¤¤ POSIX ¤Î·Á¼°¤È¤·¤Æ²ò¼á\n" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" +"\n" +"ÀΤ«¤é¤Î½ñ¼°»ØÄê¤ò, º®¹ç¤µ¤»¤Æ¤â¹½¤¤¤Þ¤»¤ó.\n" +"»ØÄꤷ¤¿½ç¤Ë¤½¤ì¤¾¤ì¤Î·Á¼°¤Çɽ¼¨¤µ¤ì¤Þ¤¹.\n" +" -a ¥ª¥×¥·¥ç¥ó -t a ¤ÈƱ¤¸, ʸ»ú̾¤Î»ØÄê¤Ë\n" +" -b ¥ª¥×¥·¥ç¥ó -t oC ¤ÈƱ¤¸, 8¿Ê¿ô¥Ð¥¤¥È¤Î»ØÄê¤Ë\n" +" -c ¥ª¥×¥·¥ç¥ó -t c ¤ÈƱ¤¸, ASCIIʸ»ú¤«`\\'¥¨¥¹¥±¡¼¥×¤Î»ØÄê¤Ë\n" +" -d ¥ª¥×¥·¥ç¥ó -t u2 ¤ÈƱ¤¸, É乿¤Ê¤·¥·¥ç¡¼¥È10¿Ê¿ô¤Î»ØÄê¤Ë\n" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" +" -f ¥ª¥×¥·¥ç¥ó -t fF ¤ÈƱ¤¸, ÉâÆ°¾®¿ôÅÀ¤Î»ØÄê¤Ë\n" +" -h ¥ª¥×¥·¥ç¥ó -t x2 ¤ÈƱ¤¸, ¥·¥ç¡¼¥È16¿Ê¿ô¤Î»ØÄê¤Ë\n" +" -i ¥ª¥×¥·¥ç¥ó -t d2 ¤ÈƱ¤¸, ¥·¥ç¡¼¥È10¿Ê¿ô¤Î»ØÄê¤Ë\n" +" -l ¥ª¥×¥·¥ç¥ó -t d4 ¤ÈƱ¤¸, ¥í¥ó¥°10¿Ê¿ô¤Î»ØÄê¤Ë\n" +" -o ¥ª¥×¥·¥ç¥ó -t o2 ¤ÈƱ¤¸, ¥·¥ç¡¼¥È8¿Ê¿ô¤Î»ØÄê¤Ë\n" +" -x ¥ª¥×¥·¥ç¥ó -t x2 ¤ÈƱ¤¸, ¥·¥ç¡¼¥È16¿Ê¿ô¤Î»ØÄê¤Ë\n" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" +"\n" +"¸Å¤¤¤Û¤¦¤Î½ñ¼°(·Á¼°)¤Ç `¥ª¥Õ¥»¥Ã¥È' ¤Ï -j OFFSET ¤ÈƱ¤¸°ÕÌ£¤È¤Ê¤ê¤Þ¤¹.\n" +"`¥é¥Ù¥ë' ¤Ïɽ¼¨¤ò³«»Ï¤¹¤ë¥Ð¥¤¥È°ÌÃ֤ε¿»÷¥¢¥É¥ì¥¹¤Ç, ¥À¥ó¥×¤Î¿Ê¹Ô¤È¤È¤â¤Ë\n" +"Ãͤ¬Áý²Ã¤·¤Þ¤¹. OFFSET ¤ä LABEL ¤ÎÃͤȤ·¤Æ, `.' ¥µ¥Õ¥£¥Ã¥¯¥¹¤Î¤è¤¦¤Ê\n" +"ưºî¤ò¤µ¤»¤ë°Ù¤Ë, ºÇ½é¤Ë 0x ¤ä 0X ¤ò¤Ä¤±¤¿¤ê, `b' ¤ò¤Ä¤±¤ë¤³¤È¤Ç, \n" +"512 Çܤ¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹.\n" +"\n" +"-t,--type¥ª¥×¥·¥ç¥ó¤Ç¤Î·¿¤Î»ØÄê¤Ï°Ê²¼¤Î¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹:\n" +"\n" +" a ʸ»ú̾\n" +" c ASCII ʸ»ú¤â¤·¤¯¤Ï, `\\'¥¨¥¹¥±¡¼¥×\n" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" +" d[¥µ¥¤¥º] É乿ÉÕ¤­10¿Ê¿ô 1 À°¿ô(integer)¤Î¥µ¥¤¥º»ØÄê\n" +" f[¥µ¥¤¥º] ÉâÆ°¾®¿ôÅÀ 1 À°¿ô(integer)¤Î¥µ¥¤¥º»ØÄê\n" +" o[¥µ¥¤¥º] 8¿Ê¿ô 1 À°¿ô(integer)¤Î¥µ¥¤¥º»ØÄê\n" +" u[¥µ¥¤¥º] É乿¤Ê¤·10¿Ê¿ô 1 À°¿ô(integer)¤Î¥µ¥¤¥º»ØÄê\n" +" x[¥µ¥¤¥º] 16¿Ê¿ô 1 À°¿ô(integer)¤Î¥µ¥¤¥º»ØÄê\n" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" +"\n" +"¤³¤³¤Ç¤Î¥µ¥¤¥º¤Î»ØÄê¤Ï¿ô»ú¤Ç¤¹. ¥¿¥¤¥×¤¬ doux ¤Ë´Þ¤Þ¤ì¤ë¤Ê¤é, ¥µ¥¤¥º¤Ë\n" +"¤Ï,C ¤Ï sizeof(char) ¤È¤·¤Æ, S ¤Ï sizeof(short) ¤È¤·¤Æ, I ¤Ï sizeof(int), \n" +"¤Þ¤¿¤Ï L¤Ï sizeof(long) ¤â»ØÄê¤Ç¤­¤Þ¤¹. ¤Þ¤¿¥¿¥¤¥×¤¬ f ¤Ê¤é¤Ð, ¤µ¤é¤Ë\n" +"F ¤Ï sizeof(float) ¤È¤·¤Æ, D ¤Ï sizeof(double) ¤È¤·¤Æ, ¤Þ¤¿¤Ï \n" +"L ¤Ï sizeof(long double) ¤È¤·¤Æ»ØÄê¤Ç¤­¤Þ¤¹.\n" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" +"\n" +"RADIX ¤Ë¤Ï, ¥ª¥Õ¥»¥Ã¥ÈÃͤδð¿ô¤È¤·¤Æ»ÈÍѤ¹¤ëÃͤò, 10 ¿Ê¿ô¤Ê¤é d ¤ò, 8 ¿Ê¿ô\n" +"¤Ê¤é o ¤ò, 16 ¿Ê¿ô¤Ê¤é x ¤ò»ØÄꤷ, ɽ¼¨¤·¤¿¤¯¤Ê¤±¤ì¤Ð n ¤ò»ØÄꤷ¤Þ¤¹.\n" +"BYTES ¤Ë¤Ï, 16 ¿Ê¿ô¤Ê¤é¤Ð, `0x'¤«`0X' ¤ò¿ôÃͤÎÁ°¤ËÉÕ¤±, 512 Çܤ¹¤ë¤Ë¤Ï b " +"¤ò,\n" +"1024 Çܤ¹¤ë¤Ë¤Ï k ¤ò, 1048576 Çܤ¹¤ë¤Ë¤Ï, m ¤òÉÕ¤±¤Þ¤¹. z ¤ò¸å¤í¤ËÉÕ¤±¤ë¤È\n" +"¤É¤ó¤Ê·¿¤Ç¤â½ÐÎϤγƹԤθå¤í¤Ë°õ»ú²Äǽ¤Êʸ»ú¤òÉÕ¤±²Ã¤¨¤Þ¤¹. " + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" +"-s ¤Ë¿ôÃͤò»ØÄê\n" +"¤·¤Ê¤¤¾ì¹ç¤Ë¤Ï, 3 ¤¬¥»¥Ã¥È¤µ¤ì¤Þ¤¹. -w ¤Ë¿ôÃͤò»ØÄꤷ¤Ê¤±¤ì¤Ð, 32 ¤ÈÀßÄê\n" +"¤µ¤ì¤Þ¤¹.\n" +"ÆÃ¤Ë¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Ê¤¤¾ì¹ç¤Ë¤Ï, od ¥³¥Þ¥ó¥É¤Ï `-A o -t d2 -w 16'\n" +"¤Î»ØÄê¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹.\n" + +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "·¿»ØÄ꤬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹ `%s'" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" +"·¿»ØÄê`%s'¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹\n" +" -- ¤³¤Î¥·¥¹¥Æ¥à¤Ç¤Ï %lu ¥Ð¥¤¥ÈÀ°¿ô·¿¤ò°·¤¨¤Þ¤»¤ó" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" +"·¿»ØÄê`%s'¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹\n" +" -- ¤³¤Î¥·¥¹¥Æ¥à¤Ç¤Ï %lu ¥Ð¥¤¥ÈÉâÆ°¾®¿ôÅÀ·¿¤ò°·¤¨¤Þ¤»¤ó" + +#: src/od.c:917 +#, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "´Ö°ã¤Ã¤¿Ê¸»ú `%c' ¤¬·¿»ØÄê `%s' ¤ÎÃæ¤Ë¤¢¤ê¤Þ¤¹" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "ÆþÎϤνªÃ¼¤ò±Û¤¨¤ÆÆÉ¤ß¤È¤Ð¤¹»ö¤Ï¤Ç¤­¤Þ¤»¤ó" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "¸Å¤¤·Á¼°¤Î¥ª¥Õ¥»¥Ã¥È" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "" +"̵¸ú¤Ê½ÐÎÏ¥¢¥É¥ì¥¹¤Î´ð¿ô `%c' ¤¬»ØÄꤵ¤ì¤Þ¤·¤¿\n" +" -- doxn ¤Î¤¤¤º¤ì¤«¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤" + +#: src/od.c:1717 +msgid "skip argument" +msgstr "¥¹¥­¥Ã¥×¿ô»ØÄê¤Î°ú¿ô" + +#: src/od.c:1725 +msgid "limit argument" +msgstr "ÆþÎϤÎÂ礭¤µÀ©¸Â¤Î°ú¿ô" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "ʸ»úÎóĹ¤ÎºÇ¾®ÃÍ" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "%s ¤ÏŤ¹¤®¤Þ¤¹" + +#: src/od.c:1804 +msgid "width specification" +msgstr "Éý¤Î»ØÄê" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "ʸ»úÎó¥À¥ó¥×»þ¤Î·¿¤Ï»ØÄê¤Ç¤­¤Þ¤»¤ó" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "¸ß´¹¥â¡¼¥É `%s' Ãæ¤Î 2 ¤Ä¤á¤Î±é»»»Ò¤¬Ìµ¸ú" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "¸ß´¹¥â¡¼¥É¤Ç¤Ï, ¸å¤í 2 ¤Ä¤Î°ú¿ô¤Ï¥ª¥Õ¥»¥Ã¥È¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "¸ß´¹¥â¡¼¥É¤Ç¤Ï, 3 ¤Ä°Ê¾å¤Î°ú¿ô¤ò¼õ¤±ÉÕ¤±¤Þ¤»¤ó" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "·Ù¹ð: Éý %lu ¤Ï̵¸ú¤ÊÃͤǤ¹. -- Âå¤ï¤ê¤Ë %d ¤ò»ÈÍѤ·¤Þ¤¹" + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "%d: ¥Õ¥©¡¼¥Þ¥Ã¥È=\"%s\" Éý=%d\n" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "David M. Ihnat ¤È David MacKenzie" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "ɸ½àÆþÎϤ¬ÊĤ¸¤é¤ì¤Æ¤¤¤Þ¤¹" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"FILE ¤Î³Æ¹Ô¤«¤é, °ìÃפ¹¤ë¹Ô¤ò¥¿¥Öʸ»ú¤Ç¶èÀÚ¤ê, ½ç¤Ëɸ½à½ÐÎϤ˽ñ¤­¹þ¤ß¤Þ¤¹.\n" +"FILE ¤¬»ØÄꤵ¤ì¤Ê¤¤, ¤¢¤ë¤¤¤Ï `-' ¤ò»ØÄꤷ¤¿¾ì¹ç¤Ë¤Ïɸ½àÆþÎϤòÆÉ¤ß¹þ¤ß¤Þ¤¹.\n" +"\n" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" +" -d, --delimiters=LIST ¥¿¥Öʸ»ú¤ÎÂå¤ï¤ê¤Ë, LIST ¤Îʸ»ú¤ò¶èÀÚ¤ê¤È¤·¤Æ»ÈÍÑ\n" +" -s, --serial °ì¹ÔËè¤Ç¤Ï¤Ê¤¯, °ìÅÙ¤Ë 1 ¤Ä¤Î¥Õ¥¡¥¤¥ë¤òŽÉÕ¤±¤ë\n" + +#: src/pathchk.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... [¥Õ¥¡¥¤¥ë]...\n" + +#: src/pathchk.c:147 +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" +"¥Õ¥¡¥¤¥ë̾¤Ë²ÄÈÂÀ­¤¬¤¢¤ë¤«¤ò¿ÇÃÇ.\n" +"\n" +" -p, --portability ¤³¤Î¥·¥¹¥Æ¥à¤À¤±¤Ç¤Ê¤¯, Á´ POSIX ¥·¥¹¥Æ¥à¤ËÂФ·¤Æ¥Á¥§¥Ã" +"¥¯.\n" + +#: src/pathchk.c:237 +#, fuzzy, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "¥¿¥Ö¥µ¥¤¥º¤Î»ØÄê¤ËÉÔÀµ¤Êʸ»ú¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹" + +#: src/pathchk.c:257 +#, fuzzy, c-format +msgid "`%s' is not a directory" +msgstr "%s ¤Ï¸ºß¤·¤Þ¤¹¤¬¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê `%s' ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" + +#: src/pathchk.c:355 +#, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "¥Õ¥¡¥¤¥ë̾ `%s' ¤ÎŤµ¤Ï %ld; À©¸Â¤Î %ld ¤ò±Û¤¨¤Æ¤¤¤Þ¤¹" + +#: src/pathchk.c:381 +#, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "¥Ñ¥¹ `%s' ¤ÎŤµ¤Ï %d; À©¸Â¤Î %ld ¤ò±Û¤¨¤Æ¤¤¤Þ¤¹" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "Joseph Arceneaux, David MacKenzie ¤ª¤è¤Ó Kaveh Ghazi" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "¥í¥°¥¤¥ó̾: " + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "¼Â̾: " + +#: src/pinky.c:298 +msgid "???\n" +msgstr "(ÉÔÌÀ)\n" + +#: src/pinky.c:318 +#, fuzzy +msgid "Directory: " +msgstr "¥Ç¥£¥ì¥¯¥È¥ê" + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "¥·¥§¥ë: " + +#: src/pinky.c:341 +msgid "Project: " +msgstr "¥×¥í¥¸¥§¥¯¥È: " + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "¥×¥é¥ó:\n" + +#: src/pinky.c:386 +msgid "Login" +msgstr "¥í¥°¥¤¥ó" + +#: src/pinky.c:388 +#, fuzzy +msgid "Name" +msgstr " ̾Á°" + +#: src/pinky.c:389 +#, fuzzy +msgid " TTY" +msgstr " üËö" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "ÂÔµ¡" + +#: src/pinky.c:392 +msgid "When" +msgstr "³«»Ï»þ¹ï" + +#: src/pinky.c:395 +msgid "Where" +msgstr "¥í¥°¥¤¥ó¸µ" + +#: src/pinky.c:469 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... [¥Õ¥¡¥¤¥ë]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" +"\n" +" -l »ØÄꤵ¤ì¤¿¥æ¡¼¥¶¤ËÂФ·¤ÆÄ¹·Á¼°¤Ç½ÐÎÏ\n" +" -b Ĺ·Á¼°¤Ç¥æ¡¼¥¶¤Î¥Û¡¼¥à¥Ç¥£¥ì¥¯¥È¥ê¤È¥·¥§¥ë¤ò¾Êά\n" +" -h Ĺ·Á¼°¤Ç¥æ¡¼¥¶¤Î¥×¥í¥¸¥§¥¯¥È¥Õ¥¡¥¤¥ë¤ò¾Êά\n" +" -p Ĺ·Á¼°¤Ç¥æ¡¼¥¶¤Î¥×¥é¥ó¥Õ¥¡¥¤¥ë¤ò¾Êά\n" +" -s û·Á¼°¤Ç½ÐÎÏ (ɸ½à)\n" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" +" -f û·Á¼°¤Ç¥Ø¥Ã¥À¹Ô¤ò¾Êά\n" +" -w û·Á¼°¤Ç¥æ¡¼¥¶¤Î¥Õ¥ë¥Í¡¼¥à¤ò¾Êά¤¹¤ë\n" +" -i û·Á¼°¤Ç¥æ¡¼¥¶¤Î¥Õ¥ë¥Í¡¼¥à¤È¥í¥°¥¤¥ó¸µ¤ò¾Êά\n" +" -q û·Á¼°¤Ç¥æ¡¼¥¶¤Î¥Õ¥ë¥Í¡¼¥à, ¥í¥°¥¤¥ó¸µ¤ª¤è¤ÓÂÔµ¡»þ´Ö¤ò¾Ê" +"ά\n" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" +"\n" +"·Ú¤¤ `finger' ¥×¥í¥°¥é¥à; ¥æ¡¼¥¶¾ðÊó¤òɽ¼¨.\n" +"utmp ¥Õ¥¡¥¤¥ë¤Ï %s.\n" + +#: src/pinky.c:574 +#, fuzzy +msgid "no username specified; at least one must be specified when using -l" +msgstr "--string ¥ª¥×¥·¥ç¥ó¤òÍøÍѤ¹¤ë¤È¤­¤Ï, ¥Õ¥¡¥¤¥ë¤ò»ØÄê¤Ç¤­¤Þ¤»¤ó" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "Pete TerMaat ¤È Roland Huebner" + +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "`--pages' ¥Ú¡¼¥¸¿ô¤ÎÈϰϻØÄ꤬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹: `%s'" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "`--pages' ³«»Ï¥Ú¡¼¥¸»ØÄ̵꤬¸ú¤Ç¤¹: `%s'" + +#: src/pr.c:829 +#, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "`--pages' ½ªÎ»¥Ú¡¼¥¸¤Î»ØÄ̵꤬¸ú¤Ç¤¹: `%s'" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "`--pages' ³«»Ï¥Ú¡¼¥¸¤Î»ØÄ꤬½ªÎ»¥Ú¡¼¥¸¤è¤ê¤âÂ礭¤¤ÃͤˤʤäƤ¤¤Þ¤¹" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "`--pages=³«»Ï¥Ú¡¼¥¸[:½ªÎ»¥Ú¡¼¥¸]' »ØÄ꤬¤¢¤ê¤Þ¤»¤ó" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "`--columns=¹ÔÉý' ¹ÔÉý¤Î»ØÄ̵꤬¸ú¤Ç¤¹: `%s'" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "`-l ¥Ú¡¼¥¸¤ÎŤµ' ̵¸ú¤Ê¹ÔÈÖ¹æ¤Ç¤¹: `%s'" + +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "`-N ¹ÔÈÖ¹æ' ̵¸ú¤Ê³«»Ï¹ÔÈÖ¹æ: `%s'" + +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "`-o ;Çò' ̵¸ú¤Ê¹Ô¥ª¥Õ¥»¥Ã¥È: `%s'" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "`-w ¥Ú¡¼¥¸¤ÎÉý' ̵¸ú¤Êʸ»ú¿ô¤Ç¤¹: `%s'" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "`-W ¥Ú¡¼¥¸¤ÎÉý' ̵¸ú¤Êʸ»ú¿ô¤Ç¤¹: `%s'" + +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "%b %e %H:%M %Y" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "ÊÂÎó¤Ë°õºþ¤¹¤ë¤È¤­¤Ë¤Ï¥«¥é¥à¿ô¤ò»ØÄê¤Ç¤­¤Þ¤»¤ó." + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "ÃÊÁȤβ£Êý¸þ°õºþ(-a)¤ÈÊÂÎó°õºþ¤òƱ»þ»ØÄê¤Ç¤­¤Þ¤»¤ó." + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "`-%c' ;ʬ¤Êʸ»ú¤¬ÉÕ¤¤¤Æ¤¤¤ë¤«°ú¿ô¤Î¿ô»ú¤¬Ìµ¸ú¤Ç¤¹: `%s'" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "¥Ú¡¼¥¸Éý¤¬¶¹¤¹¤®¤Þ¤¹" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "³«»Ï¥Ú¡¼¥¸¤Î»ØÄ꤬Áí¥Ú¡¼¥¸¿ô¤è¤ê¤âÂ礭¤¤ÃͤˤʤäƤ¤¤Þ¤¹: `%d'" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "%d ¥Ú¡¼¥¸" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" +"°õ»ú¤Î¤¿¤á¤Ë, ¥Ú¡¼¥¸ÉÕ¤±¤äÃÊÁȤò¹Ô¤Ê¤¤¤Þ¤¹.\n" +"\n" + +#: src/pr.c:2766 +#, fuzzy +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" FIRST_PAGE ¤«¤é°õ»ú¤ò³«»Ï¤· LAST_PAGE ¤Þ¤Ç¤ò°õ»ú\n" +" LAST_PAGE ¤ò¾Êά¤·¤¿¾ì¹ç, ºÇ¸å¤Þ¤Ç°õ»ú\n" +" -COLUMN, --columns=COLUMN\n" +" COLUMN ÃʤÎÃÊÁȤòÀ¸À®¤·, Ãʤβ¼Êý¤Ë¸þ¤±¤Æ½ÐÎÏ\n" +" ¥Ú¡¼¥¸Ëè¤Ë¥«¥é¥àÆâ¤Î¹Ô¿ô¤òÄ´À°\n" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" +" -a, --across ³Æ¹Ô¤òÃÊÁȤβ£Êý¸þ¤Ø½ç¤Ë½ÐÎÏ\n" +" -COLUMN ¥ª¥×¥·¥ç¥ó¤È¶¦¤Ë»ÈÍÑ\n" +" -c, --show-control-chars\n" +" ¥³¥ó¥È¥í¡¼¥ë¥­¥ã¥é¥¯¥¿¤Ë¥Ï¥Ã¥È¤ò¤Ä¤±(Îã ^G), ¤½¤Î¾¤Î\n" +" °õ»úÉÔǽ¤Êʸ»ú¤Ë¤Ï¥Ð¥Ã¥¯¥¹¥é¥Ã¥·¥å¤È 8 ¿Ê¿ô¤Çɽ¼¨\n" +" -d, --double-space\n" +" ¹Ô´Ö¤Ë¶õ¹Ô¤òÁÞÆþ\n" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" +" -D, --date-format=FORMAT\n" +" ¥Ø¥Ã¥À¤ÎÆüÉդηÁ¼°¤È¤·¤Æ FORMAT ¤òÍѤ¤¤ë\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" ÆþÎϤµ¤ì¤¿ CHAR ¤òÉý WIDTH ¤Î¶õÇò¤Ë³È¤²¤ë\n" +" CHAR, WIDTH ¤Î»ØÄ꤬¤Ê¤±¤ì¤Ð CHAR ¤Ï TAB, \n" +" WIDTH ¤Ï 8 ¤ËÊѹ¹\n" +" -F, -f, --form-feed\n" +" ²þ¥Ú¡¼¥¸¤ÎºÝ¤Ë²þ¹Ô¤Ç¤Ï¤Ê¤¯, ²þ¥Ú¡¼¥¸¥³¡¼¥É¤ò»ÈÍÑ\n" +" (-f ¤È¶¦¤Ë 3¹Ôʬ, -f ¤ò»ØÄꤷ¤Ê¤¤¾ì¹ç 5¹Ôʬ¤Î¥Ø¥Ã¥À¤ò½Ð" +"ÎÏ)\n" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" +" -h HEADER, --header=HEADER\n" +" ¥Ú¡¼¥¸¥Ø¥Ã¥ÀÃæ±û¤Î¥Õ¥¡¥¤¥ë̾¤ÎÂå¤ï¤ê¤Ë HEADER ¤òÍøÍÑ\n" +" Ť¤¥Ø¥Ã¥À¤Ç¤¢¤ì¤Ð, ʸ»úÎó¤Îº¸Â¦¤¬ÀÚ¤ê¼è¤é¤ì¤ë¤³¤È¤Ë¤Ê" +"¤ë\n" +" -h \"\" ¤È»ØÄꤹ¤ì¤Ð, ¥Ø¥Ã¥À¤Ï¶õ¤Î¹Ô¤È¤Ê¤ë\n" +" -h\"\" ¤È¤¤¤¦»ØÄê¤ò¹Ô¤Ê¤Ã¤Æ¤Ï¤¤¤±¤Ê¤¤\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" ¶õÇò¤ò CHAR ¤ËÃÖ´¹¤·¤Æ WIDTH ¤ÎÉý¤Ë\n" +" ÆÃ¤Ë»ØÄ꤬¤Ê¤¤¾ì¹ç CHAR ¤Ï TAB ¤Ë WIDTH ¤Ï 8 ¤Ë\n" +" -J, --join-lines ¹Ô¤ÎÁ´¤Æ¤ò·ë¹ç¤·, (-W ¤Î¹ÔÀÚ¤êÍî¤È¤·¤ò¹Ô¤Ê¤ï¤Ê¤¤)ÃÊÁȤÎ\n" +" Ä´Àá¤ò¹Ô¤Ê¤ï¤Ê¤¤. -S[STRING] ¤Ç¶èÀÚ¤êʸ»ú¤òÀßÄê\n" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" ¥Ú¡¼¥¸¤ÎŤµ¤ò PAGE_LENGTH ¤ËÀßÄê. »ØÄꤵ¤ì¤Ê¤¤¾ì¹ç\n" +" 66 ¹Ô. (¹Ô¿ô¤Ï 56 ¤È¤Ê¤ê, -f ¤ò¤Ä¤±¤¿¾ì¹ç¤Ê¤é 63 ¹Ô)\n" +" -m, --merge ³Æ¥Õ¥¡¥¤¥ë¤ò°ìÃʤº¤Äʤ٤ÆÉ½¼¨. ¤Ï¤ß½Ð¤·¤¿¹Ô¤ÏÀÚ¤ê¼Î¤Æ\n" +" ¤é¤ì¤ë¤¬, -J ¥ª¥×¥·¥ç¥ó¤Ë¤è¤Ã¤Æ¹Ô¤ÎÆâÍÆ¤Ï·Ò¤²¤é¤ì¤ë\n" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" ¹ÔÈÖ¹æ¤òÉղ乤ë. ÈÖ¹æ¤Î·å¤Ï DIGIT ÈÖ¹æ¤È¹Ô¤È¤Î´Ö¤Îʸ»ú\n" +" ¤È¤·¤Æ SEP ¤ò»ØÄê. »ØÄ꤬¤Ê¤¤¾ì¹ç DIGITS ¤Ï 5, SEP ¤Ï\n" +" TAB ¤ËÀßÄê\n" +" ¥Ç¥Õ¥©¥ë¥È¤Ç¤ÏÆþÎÏ¥Õ¥¡¥¤¥ë¤Î 1¹ÔÌܤ«¤é¥«¥¦¥ó¥È\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" ºÇ½é¤Î¥Ú¡¼¥¸¤Î 1 ¹ÔÌܤιÔÈÖ¹æ¤ò NUMBER ÈÖ¤«¤é³«»Ï\n" +" (+FIRST_PAGE ¤ÎÀâÌÀ¤ò»²¾È)\n" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" +" -o MARGIN, --indent=MARGIN\n" +" ³Æ¹Ô¤Îº¸Í¾Çò¤ò MARGIN (¥¼¥í) ʸ»úʬ¤Î¶õÇò¤È¤¹¤ë\n" +" -w ¤ä -W ¤Ë±Æ¶Á¤µ¤»¤Æ¤Ï¤Ê¤é¤Ê¤¤. MARGIN ¤Ï PAGE_WIDTH " +"¤Ë\n" +" ²Ã¤¨¤é¤ì¤ë\n" +" -r, --no-file-warnings\n" +" ¥Õ¥¡¥¤¥ë¤¬³«¤±¤Ê¤«¤Ã¤¿¾ì¹ç¤Î·Ù¹ð¤ò¾Êά¤¹¤ë\n" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" +" -s[CHAR],--separator[=CHAR]\n" +" ʸ»ú CHAR ¤òÃʤÎʬ³ä¤Ë»ÈÍÑ\n" +" CHAR ¤Î¥Ç¥Õ¥©¥ë¥È¤Ï -w ¤¬¤Ê¤±¤ì¤Ð ,\n" +" -w ¥ª¥×¥·¥ç¥ó¤¬¤¢¤ì¤Ð¶õʸ»ú\n" +" -s[CHAR] ¤Ï -w ¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤±¤ì¤Ð\n" +" Ãʤ˴ؤ¹¤ë 3¤Ä¤Î¥ª¥×¥·¥ç¥ó (-COLUMN|-a -COLUMN|-m) ¤¹¤Ù" +"¤Æ\n" +" ¤Ë¤è¤ë¹Ô¤ÎÀÚ¤êµÍ¤á¤ò̵¸ú¤Ë\n" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr " -SSTRING, --sep-string[=STRING]\n" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" +" Ǥ°Õ¤Î STRING ¤òÃʤÎʬ³ä¤Ë»ÈÍÑ\n" +" -S \"STRING\" ¤È¤·¤Æ»È¤Ã¤Æ¤Ï¤Ê¤é¤Ê¤¤\n" +" -S ¤Î¤ß: ʬ³äʸ»ú¤ò»ÈÍѤ·¤Ê¤¤ (-S\"\" ¤ÈƱ¤¸)\n" +" -S ¤Ê¤·: -J ¤¬¤¢¤ë¤Ê¤é ¤½¤ì°Ê³°¤Ï ¤ò\n" +" »È¤¦ (-S\" \" ¤ÈƱ¤¸). Ãʤ˴ؤ¹¤ë¥ª¥×¥·¥ç¥ó¤Ë¤Ï±Æ¶Á¤·¤Ê" +"¤¤\n" +" -t, --omit-header ¥Ø¥Ã¥À¤äËÜʸ¤Î;Çò¤ò¾Êά\n" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" +" -T, --omit-pagination\n" +" ¥Ø¥Ã¥À¤äËÜʸ¤Î;Çò¤ò¾Êά¤·, ÆþÎÏ¥Õ¥¡¥¤¥ëÃæ¤Î²þ¥Ú¡¼¥¸¤ò̵" +"»ë\n" +" -v, --show-nonprinting\n" +" ¥Ð¥Ã¥¯¥¹¥é¥Ã¥·¥å(\\) + 8 ¿Ê¿ô¤Ë¤è¤ëµ­½Ò¤ò»ÈÍÑ\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" Ê£¿ô¤ÎÍó¤Î½ÐÎϤËÂФ·¤Æ¤Î¤ß¥Ú¡¼¥¸Éý¤ò PAGE_WIDTH (72)\n" +" ʸ»ú¤ËÀßÄꤷ, -s[char] ¤ò̵¸ú¤Ë (72)\n" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" ¥Ú¡¼¥¸Éý¤ò PAGE_WIDTH (72) ʸ»ú¤ËÀßÄꤷ, ¤Ï¤ß½Ð¤¿¹Ô¤Ï\n" +" ÀÚ¤ê¼Î¤Æ. ¤¿¤À¤· -J ¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ë\n" +" ¸Â¤ë. -S ¤ä -s ¤Ë¤Ï²¿¤â±Æ¶Á¤·¤Ê¤¤\n" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" +"\n" +"-T ¤Ï -l nn ¤òÍѤ¤, nn <= 3 ¤Î»ØÄê(-f ¥ª¥×¥·¥ç¥ó¤¢¤ê), ¤â¤·¤¯¤Ï\n" +"nn <= 10 (-f ¥ª¥×¥·¥ç¥ó¤Ê¤·)¤È»ØÄꤹ¤ë¤Î¤ÈƱ¤¸°ÕÌ£¤Ë¤Ê¤ê¤Þ¤¹.\n" +"¥Õ¥¡¥¤¥ë¤¬»ØÄꤵ¤ì¤Ê¤¤, ¤¢¤ë¤¤¤Ï¥Õ¥¡¥¤¥ë¤È¤·¤Æ `-' ¤¬»ØÄꤵ¤ì¤¿¾ì¹ç, \n" +"ɸ½àÆþÎϤòÆÉ¤ß¹þ¤ß¤Þ¤¹.\n" + +#: src/printenv.c:43 +#, fuzzy +msgid "David MacKenzie and Richard Mlynarik" +msgstr "David Ihnat, David MacKenzie ¤ª¤è¤Ó Jim Meyering" + +#: src/printenv.c:63 +#, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" +"»ÈÍÑË¡: %s [´Ä¶­ÊÑ¿ô]...\n" +"¤â¤·¤¯¤Ï: %s ¥ª¥×¥·¥ç¥ó\n" +"´Ä¶­ÊÑ¿ô¤¬»ØÄꤵ¤ì¤Ê¤¤¾ì¹ç¤ÏÁ´¤Æ¤Î´Ä¶­ÊÑ¿ô¤òɽ¼¨.\n" +"\n" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "·Ù¹ð: %s: ʸ»úÄê¿ô¤Î¸å¤Îʸ»ú¤¬Ìµ»ë¤µ¤ì¤Þ¤·¤¿" + +#: src/printf.c:100 +#, fuzzy, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"»ÈÍÑË¡: %s [¥Õ¥¡¥¤¥ë]...\n" +"¤Þ¤¿¤Ï: %s [¥ª¥×¥·¥ç¥ó]\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" +"¥Ç¡¼¥¿¤ò¥Õ¥©¡¼¥Þ¥Ã¥È¤Ë¤·¤¿¤¬¤Ã¤ÆÉ½¼¨.\n" +"\n" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" +"\n" +"¥Õ¥©¡¼¥Þ¥Ã¥È¤Ï C ¸À¸ì¤Î printf ¤Î¤è¤¦¤Ë½ÐÎϤòÀ©¸æ. ²ò¼á¤Ç¤­¤ë¤Î¤Ï:\n" +"\n" +" \\\" ¥À¥Ö¥ë¥¯¥©¡¼¥Æ¡¼¥·¥ç¥ó\n" +" \\0NNN 8¿Ê¿ô NNN (0 ¤«¤é 3 ·å¤Î¿ô»ú) ¤Îʸ»ú\n" +" \\\\ ¥Ð¥Ã¥¯¥¹¥é¥Ã¥·¥å\n" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" +" \\a ·Ù¹ð²» (¥Ù¥ë²»)\n" +" \\b ¥Ð¥Ã¥¯¥¹¥Ú¡¼¥¹\n" +" \\c ¤³¤ì°Ê¹ß¤Î½ÐÎϤòÍÞÀ©\n" +" \\f ÍÑ»æÁ÷¤ê\n" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\n ²þ¹Ô (LF)\n" +" \\r Éüµ¢ (CR)\n" +" \\t ¿åÊ¿¥¿¥Ö\n" +" \\v ¿âľ¥¿¥Ö\n" + +#: src/printf.c:131 +#, fuzzy +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" +" \\xNNN 16¿Ê¿ô NNN (1 ¤«¤é 3·å¤Î¿ô»ú) ¤Î¥Ð¥¤¥È\n" +"\n" +" \\uNNNN 16¿Ê¿ô NNNN (4·å¤Î¿ô»ú) ¤Îʸ»ú\n" +" \\UNNNNNNNN 16¿Ê¿ô NNNNNNNN (8·å¤Î¿ô»ú) ¤Îʸ»ú\n" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" +" %% 1¤Ä¤Î %\n" +" %b °ú¿ô¤¬ `\\' ¥¨¥¹¥±¡¼¥×¤ò´Þ¤ó¤Àʸ»úÎó¤È¤·¤Æ²ò¼á\n" +"\n" +"¹¹¤Ë diouxXfeEgGcs ¤Î¤¦¤Á¤Î 1¤Ä¤Ç½ª¤ï¤ë C ¸À¸ì¤Î·Á¼°»ØÄê»Ò¤¬Á´¤Æ²ò¼á¤µ¤ì,\n" +"°ú¿ô¤ÏºÇ½é¤ËŬÀڤʷ¿¤ËÊÑ´¹¤µ¤ì¤Þ¤¹. ÊÑ¿ô¤ÎÉý¤ÏÀ©¸æ¤Ç¤­¤Þ¤¹.\n" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "%s: ¿ôÃͤˤè¤ë»ØÄê¤ò¤·¤Æ²¼¤µ¤¤" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "%s: Ãͤϴ°Á´¤Ë¤ÏÊÑ´¹¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "¥¨¥¹¥±¡¼¥×Ãæ¤Ë16¿Ê¿ô¤Î¿ôÃͤ¬¤¢¤ê¤Þ¤»¤ó" + +#: src/printf.c:292 +#, fuzzy, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "`%s' ¤Ï̵¸ú¤Êʸ»ú¼ïÎà¤Ç¤¹" + +#: src/printf.c:472 +#, fuzzy, c-format +msgid "invalid field width: %s" +msgstr "Éý `%s' ¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó" + +#: src/printf.c:498 +#, fuzzy, c-format +msgid "invalid precision: %s" +msgstr "Éý¤Î¥ª¥×¥·¥ç¥ó `%s' ¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó" + +#: src/printf.c:519 +#, fuzzy, c-format +msgid "%%%c: invalid directive" +msgstr "%s: ̵¸ú¤Ê¥Ñ¥¿¡¼¥ó»ØÄê¤Ç¤¹" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "»ÈÍÑË¡: %s ¥Õ¥©¡¼¥Þ¥Ã¥È [¥Ç¡¼¥¿...]\n" + +#: src/printf.c:594 +#, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "·Ù¹ð: `%s' ¤Ç»Ï¤Þ¤ë;·×¤Ê°ú¿ô¤Ï̵»ë¤µ¤ì¤Þ¤¹" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "%s (Àµµ¬É½¸½ `%s')" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... [ÆþÎϸµ]... (-G ¤Ê¤·)\n" +" Ëô¤Ï: %s -G [¥ª¥×¥·¥ç¥ó]... [ÆþÎϸµ [½ÐÎÏÀè]]\n" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" +"ÆþÎÏ¥Õ¥¡¥¤¥ë¤Ë´Þ¤Þ¤ì¤ëñ¸ì¤Îº÷°ú¤òʤÙÂØ¤¨, Á°¸å¤ò´Þ¤á¤Æ½ÐÎÏ.\n" +"\n" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" +" -A, --auto-reference ¼«Æ°À¸À®¤·¤¿»²¾Èʸ¤ò½ÐÎÏ\n" +" -C, --copyright Ãøºî¸¢¤È¥³¥Ô¡¼¤Ë´Ø¤¹¤ë¾ò·ï¤òɽ¼¨\n" +" -G, --traditional System V ¤Î `ptx' ¤Ë¤è¤ê¶á¤¤Æ°ºî\n" +" -F, --flag-truncation=STRING ¹Ô¤ÎÀÚ¤êµÍ¤á¤ÎÌܰõ¤Ë STRING ¤ò»ÈÍÑ\n" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" +" -M, --macro-name=STRING `xx' ¤ÎÂå¤ï¤ê¤Ë»È¤¦¥Þ¥¯¥í̾¤ò»ØÄê\n" +" -O, --format=roff roff Ì¿Îá¤Ç½ÐÎϤòÀ¸À®\n" +" -R, --right-side-refs »²¾Èʸ¤ò±¦¤Ë. ¤¿¤À¤· -w ¤Î´ªÄê¤Ë¤ÏÆþ¤é¤Ê¤¤\n" +" -S, --sentence-regexp=REGEXP ¹ÔËö¤Þ¤¿¤ÏʸËö¤òɽ¸½¤¹¤ëÀµµ¬É½¸½¤ò»ØÄê\n" +" -T, --format=tex TeX Ì¿Îá¤Ç½ÐÎϤòÀ¸À®\n" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" +" -W, --word-regexp=REGEXP ¥­¡¼¥ï¡¼¥É¤ËÂФ·¤Æ REGEXP ¤Ç°ìÃפòÄ´¤Ù¤ë\n" +" -b, --break-file=FILE ¤³¤Î FILE Ãæ¤«¤éñ¸ì¤òʬ³ä¤¹¤ëʸ»ú¤ò¼èÆÀ\n" +" -f, --ignore-case ¾®Ê¸»ú¤òÂçʸ»ú¤ËÊѤ¨¤ÆÊ¤ÓÂØ¤¨\n" +" -g, --gap-size=NUMBER ½ÐÎϤΥե£¡¼¥ë¥É´Ö¤ÎÎóÃæ¤Î·ä´Ö¤ÎÂ礭¤µ\n" +" -i, --ignore-file=FILE FILE ¤«¤é̵»ë¤¹¤ëñ¸ì°ìÍ÷¤òÆÉ¤ß¹þ¤à\n" +" -o, --only-file=FILE ¤³¤Î FILE ¤«¤éñ¸ì°ìÍ÷¤Î¤ß¤òÆÉ¤ß¹þ¤à\n" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" +" -r, --references ³Æ¹Ô¤ÎÂè1¥Õ¥£¡¼¥ë¥É¤ò»²¾Èʸ¤È¸«¤Ê¤¹\n" +" -t, --typeset-mode - ̤¼ÂÁõ -\n" +" -w, --width=NUMBER Îó¤Î½ÐÎÏÉý¤ò»ØÄê. »²¾Èʸ¤ò½ü¤¤¤Æ¿ô¤¨¤ë\n" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" +"\n" +"FILE ¤¬»ØÄꤵ¤ì¤Ê¤¤, ¤â¤·¤¯¤Ï FILE ¤¬ - ¤Î¾ì¹ç, ɸ½àÆþÎϤ¬ÆÉ¤ß¹þ¤Þ¤ì¤Þ¤¹.\n" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" +"[ÌõÃð] ½ÅÍפʤâ¤Î¤Ê¤Î¤Ç¥ª¥ê¥¸¥Ê¥ë¤â¤½¤Î¤Þ¤Þ»Ä¤·¤Æ¤¢¤ê¤Þ¤¹.\n" +"\n" +"ËÜ¥×¥í¥°¥é¥à¤Ï¥Õ¥ê¡¼¥½¥Õ¥È¥¦¥§¥¢¤Ç¤¹. ¤¢¤Ê¤¿¤Ï Free Software Foundation\n" +"¤¬¸øÉ½¤·¤¿ GNU °ìÈ̸øÍ­»ÈÍѵöÂú¤Î¥Ð¡¼¥¸¥ç¥ó 2 ¤â¤·¤¯¤Ï\n" +"¤½¤ì°Ê¹ß¤Î¥Ð¡¼¥¸¥ç¥ó¤Î¤¦¤Á¤Î¤¤¤º¤ì¤«¤Î¥Ð¡¼¥¸¥ç¥ó (ÁªÂò) ¤ÇÄê¤á¤é¤ì¤¿\n" +"¾ò¹à¤Î²¼¤ÇËÜ¥×¥í¥°¥é¥à¤òºÆÇÛÉÛ¤·¤¿¤êÊѹ¹¤·¤¿¤ê¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹.\n" +"\n" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" +"ËÜ¥×¥í¥°¥é¥à¤ÏÍ­ÍѤǤ¢¤ë¤È´üÂÔ¤·¤Æ¤ª¤ê¤Þ¤¹¤¬, ÇÛÉۤˤ¢¤¿¤Ã¤Æ¤Ï,\n" +"»Ô¾ìÀ­¤Þ¤¿¤ÏÆÃÄêÌÜŪŬ¹çÀ­¤ËÂФ¹¤ë°ÅÌÛ¤ÎÊݾڤò´Þ¤á¤Æ,\n" +"¤¤¤«¤Ê¤ëÊݾڤâÃפ·¤Þ¤»¤ó. ¾ÜºÙ¤Ï GNU °ìÈ̸øÍ­»ÈÍѵöÂú¤ò¤ªÆÉ¤ß¤¯¤À¤µ¤¤.\n" +"\n" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" +"¤¢¤Ê¤¿¤ÏËÜ¥×¥í¥°¥é¥à¤È¤È¤â¤Ë GNU °ìÈ̸øÍ­»ÈÍѵöÂú¤Î¼Ì¤·¤ò¼õ¤±¼è¤Ã¤Æ¤¤¤ë\n" +"¤Ï¤º¤Ç¤¹¤¬, ¤â¤·¤½¤¦¤Ç¤Ê¤¤¾ì¹ç¤Ï Free Software Foundation, inc.,\n" +"59 Temple Place - Suite 330, Boston, MA 02111-1307, USA ¤Ø¼ê»æ¤ò½ñ¤¤¤Æ¤¯¤À¤µ" +"¤¤.\n" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" +"¸½ºß¤Îºî¶È¥Ç¥£¥ì¥¯¥È¥ê¤Î¥Õ¥ë¥Ñ¥¹Ì¾¤òɽ¼¨.\n" +"\n" + +#: src/pwd.c:74 +#, fuzzy +msgid "ignoring non-option arguments" +msgstr "È󥪥ץ·¥ç¥ó°ú¿ô¤Î¿ô¤¬Â¿¤¹¤®¤Þ¤¹" + +#: src/pwd.c:78 +#, fuzzy +msgid "cannot get current directory" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/readlink.c:69 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... [¥Õ¥¡¥¤¥ë]...\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" + +#: src/remove.c:394 +#, fuzzy, c-format +msgid "cannot chdir from %s to .." +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Ë°Üư¤Ç¤­¤Þ¤»¤ó" + +#: src/remove.c:407 src/remove.c:488 +#, fuzzy, c-format +msgid "cannot lstat `.' in %s" +msgstr "%s ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, fuzzy, c-format +msgid "cannot lstat %s" +msgstr "Æü»þ¤òÀßÄê¤Ç¤­¤Þ¤»¤ó" + +#: src/remove.c:603 +#, fuzzy, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/remove.c:604 +#, fuzzy, c-format +msgid "%s: descend into directory %s? " +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Ë°Üư¤Ç¤­¤Þ¤»¤ó" + +#: src/remove.c:614 +#, fuzzy, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: ½ñ¤­¹þ¤ßÊݸ¤ì¤¿¥Õ¥¡¥¤¥ë %s ¤òºï½ü¤·¤Þ¤¹¤«(yes/no)? " + +#: src/remove.c:615 +#, fuzzy, c-format +msgid "%s: remove %s %s? " +msgstr "%s: %s ¤òºï½ü¤·¤Þ¤¹¤«(yes/no)? " + +#: src/remove.c:639 +#, fuzzy, c-format +msgid "removed %s\n" +msgstr "%s ¤òºï½ü¤·¤Æ¤¤¤Þ¤¹\n" + +#: src/remove.c:654 src/remove.c:1059 +#, fuzzy, c-format +msgid "removed directory: %s\n" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, fuzzy, c-format +msgid "cannot remove directory %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/remove.c:815 +#, fuzzy, c-format +msgid "cannot open directory %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/remove.c:896 src/remove.c:1002 +#, fuzzy, c-format +msgid "cannot chdir from %s to %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Ë°Üư¤Ç¤­¤Þ¤»¤ó" + +#: src/remove.c:904 +#, fuzzy, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +"·Ù¹ð: ¥Ç¥£¥ì¥¯¥È¥ê¹½Â¤¤¬½Û´Ä¤·¤Æ¤¤¤Þ¤¹\n" +"¤³¤ì¤Ï, ¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤ËÉÔÀµ¤òƯ¤¤¤Æ¤ë¤Î¤È¤Û¤È¤ó¤ÉƱ¤¸¹Ô°Ù¤Ç¤¹\n" +"### ¤¢¤Ê¤¿¤Î¥·¥¹¥Æ¥à´ÉÍý¼Ô¤ËÄÌÃΤ·¤Æ²¼¤µ¤¤ ###\n" +"°Ê²¼¤Î 2 ¤Ä¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Î i ¥Î¡¼¥ÉÈֹ椬Ʊ¤¸¤Ç¤¹:\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "`.' ¤ä `..' ¤Ïºï½ü¤Ç¤­¤Þ¤»¤ó" + +#: src/rm.c:60 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie ¤ª¤è¤Ó Jim Meyering" + +#: src/rm.c:99 src/touch.c:244 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... [¥Õ¥¡¥¤¥ë]...\n" + +#: src/rm.c:100 +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"°ì¤Ä¤Þ¤¿¤ÏÊ£¿ô¤Î FILE ¤òºï½ü (unlink) ¤¹¤ë¡£\n" +"\n" +" -d, --directory FILE ¤¬¶õ¤Ç¤Ï¤Ê¤¤¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤¢¤Ã¤Æ¤â unlink ¤¹¤ë\n" +" (¥¹¡¼¥Ñ¡¼¥æ¡¼¥¶¤Î¤ß)\n" +" -f, --force ¸ºß¤·¤Ê¤¤¥Õ¥¡¥¤¥ë¤Ï̵»ë¤·¡¢³Îǧ¤ò¼è¤é¤Ê¤¤\n" +" -i, --interactive ºï½ü¤ÎÁ°¤Ë³Îǧ¤ò¤È¤ë\n" +" -r, -R, --recursive ¥Ç¥£¥ì¥¯¥È¥ê¤ÎÃæ¿È¤òºÆµ¢Åª¤Ëºï½ü¤¹¤ë\n" +" -v, --verbose ¼Â¹Ô¤µ¤ì¤ë¤³¤È¤òÀâÌÀ¤¹¤ë\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" +"\n" +"`-' ¤Ç»Ï¤Þ¤ë̾Á°¤Î¥Õ¥¡¥¤¥ë¤òºï½ü¤¹¤ë¤Ë¤Ï¡¢Î㤨¤Ð `-foo' ¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤Ê¤é\n" +"¤³¤¦¤¤¤¦¥³¥Þ¥ó¥É¤ò»È¤¤¤Þ¤·¤ç¤¦\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" +"\n" +"¥Õ¥¡¥¤¥ë¤Îºï½ü¤Ë rm ¤ò»È¤Ã¤¿¾ì¹ç¡¢Ä̾ï¤Ï¤½¤Î¥Õ¥¡¥¤¥ëÆâÍÆ¤òÉü¸µ¤Ç¤­¤Æ¤·¤Þ" +"¤¦¡¢\n" +"¤È¤¤¤¦¤³¤È¤Ë¤Ïα°Õ¤·¤Æ¤ª¤¤¤Æ¤¯¤À¤µ¤¤¡£¤â¤·¤½¤ÎÆâÍÆ¤òËÜÅö¤ËÉü¸µÉÔ²Äǽ¤Ë¤¹¤ë\n" +"ÊݾڤòÆÀ¤¿¤±¤ì¤Ð¡¢shred ¤ÎÍøÍѤò¹Í¤¨¤Æ¤ß¤Æ¤¯¤À¤µ¤¤¡£\n" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, fuzzy, c-format +msgid "removing directory, %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/rmdir.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... [¥Õ¥¡¥¤¥ë]...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" +"¥Ç¥£¥ì¥¯¥È¥ê¤òºï½ü¤¹¤ë¡£¤¿¤À¤·Ãæ¿È¤¬¶õ¤Ç¤¢¤ë¤È¤­¤Î¤ß¡£\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ¥Ç¥£¥ì¥¯¥È¥ê¤ÎÃæ¿È¤¬¶õ¤Ç¤Ê¤«¤Ã¤¿¾ì¹ç¤Î¥¨¥é¡¼¤òñ¤Ë̵»ë¤¹" +"¤ë\n" + +#: src/rmdir.c:154 +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +" -p, --parents ¥Ç¥£¥ì¥¯¥È¥ê¤òºï½ü¤·¡¢»ØÄê¥Ñ¥¹Ì¾¤Î¹½À®¥Ç¥£¥ì¥¯¥È¥ê¤Îºï½ü" +"¤ò\n" +" »î¤ß¤ë¡£Î㤨¤Ð `rmdir -p a/b/c' ¤Ï `rmdir a/b/c a/b a' " +"¤È\n" +" ƱÅù¤È¤Ê¤ë\n" +" -v, --verbose ¥Ç¥£¥ì¥¯¥È¥êËè¤Ë¡¢½èÍýÆâÍÆ¤Î¾ÜºÙ¤òɽ¼¨¤¹¤ë\n" + +#: src/seq.c:82 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... [ÆþÎϸµ]... (-G ¤Ê¤·)\n" +" Ëô¤Ï: %s -G [¥ª¥×¥·¥ç¥ó]... [ÆþÎϸµ [½ÐÎÏÀè]]\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" +"FIRST ¤«¤é LAST ¤Þ¤Ç¤Î¿ô»ú¤ò INCREMENT ¤Î´Ö³Ö¤Çɽ¼¨.\n" +"\n" +" -f, --format=FORMAT printf ·Á¼°¤ÎÉâÆ°¾®¿ôÅÀ¤Î FORMAT (ɸ½à: %g) ¤ò»È" +"ÍÑ\n" +" -s, --separator=STRING ¿ô»ú¤Î¶èÀÚ¤ê¤Ë STRING ¤ò»ÈÍÑ (ɸ½à: \\n)\n" +" -w, --equal-width ɽ¼¨Éý (·å) ¤ò·¤¨¤ë¤¿¤á¤Ë¤ËÀèÆ¬¤ò¥¼¥í¤ÇËä¤á¤ë\n" + +#: src/seq.c:96 +#, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" +"\n" +"FIRST ¤« INCREMENT ¤ò¾Êά¤·¤¿¾ì¹ç, ɸ½à¤Ç 1 ¤¬ÀßÄꤵ¤ì¤Þ¤¹.\n" +"FIRST, INCREMENT ¤ä LAST ¤ÏÉâÆ°¾®¿ôÅÀ¤ÎÃͤȤ·¤Æ²ò¼á¤µ¤ì¤Þ¤¹.\n" +"FIRST ¤¬ LAST ¤è¤ê¾®¤µ¤¤»þ INCREMENT ¤ÏÀµ¤Ç¤Ê¤¯¤Æ¤Ï¤Ê¤ê¤Þ¤»¤ó. ¤Þ¤¿,\n" +"¤½¤ÎÈ¿ÂФξì¹ç¤ÏÉé¤Ç¤Ê¤¯¤Æ¤Ï¤Ê¤ê¤Þ¤»¤ó.\n" +"FORMAT ¤ò»ØÄꤹ¤ë¾ì¹ç, printf ·Á¼°, ¤Ä¤Þ¤êÉâÆ°¾®¿ôÅÀ¤Î½ÐÎÏ·Á¼° %e, %f, %g\n" +"¤Î¤¦¤Áɬ¤º 1¤Ä¤ò´Þ¤Þ¤Ê¤¯¤Æ¤Ï¤Ê¤ê¤Þ¤»¤ó.\n" + +#: src/seq.c:119 +#, fuzzy, c-format +msgid "invalid floating point argument: %s" +msgstr "³«»Ï¹ÔÈֹ椬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó: `%s'" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "½é´ü¤ÎÃͤ¬ºÇ¸å¤ÎÃͤè¤êÂ礭¤¤¤È¤­¤Ï, ¥¹¥Æ¥Ã¥×¿ô¤ÏÉé¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "½é´ü¤ÎÃͤ¬ºÇ¸å¤ÎÃͤè¤ê¾®¤µ¤¤¤È¤­¤Ï, ¥¹¥Æ¥Ã¥×¿ô¤ÏÉé¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" + +#: src/seq.c:423 +#, fuzzy, c-format +msgid "invalid format string: `%s'" +msgstr "·¿»ØÄ꤬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹ `%s'" + +#: src/seq.c:445 +#, fuzzy +msgid "format string may not be specified when printing equal width strings" +msgstr "ʸ»úÎó¥À¥ó¥×»þ¤Î·¿¤Ï»ØÄê¤Ç¤­¤Þ¤»¤ó" + +#: src/shred.c:160 +#, fuzzy, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó] [¥Õ¥¡¥¤¥ë]...\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" +"»ØÄꤵ¤ì¤¿¥Õ¥¡¥¤¥ë¤ËÂФ·¤Æ¾å½ñ¤­¤ò·«¤êÊÖ¤·¡¢Èó¾ï¤Ë¹â²Á¤Êµ¡³£¤Ç¤µ¤¨¤â\n" +"¥Ç¡¼¥¿Éü¸µ¤Î°Ù¤ÎÄ´ºº¤ò¹Ô¤¦»ö¤¬Èó¾ï¤Ëº¤Æñ¤È¤Ê¤ë¤è¤¦¤Ë¤·¤Þ¤¹¡£\n" +"\n" + +#: src/shred.c:169 +#, fuzzy, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" +" -f, --force ɬÍפ˱þ¤¸¤Æ¸¢¸Â¤ò½ñ¹þ¤ß²Äǽ¤ËÊѹ¹¤¹¤ë\n" +" -n, --iterations=N ¥Ç¥Õ¥©¥ë¥È²ó¿ô(%d)¤ÎÂå¤ê¤Ë N ²ó¾å½ñ¤­¤¹¤ë\n" +" -s, --size=N ¤³¤Î¥Ð¥¤¥È¿ô¤ÇÀ£ÃǤ¹¤ë (k, M, G ¤ÎÍͤÊÀÜÈø¼­¤â»È¤¨¤Þ¤¹)\n" + +#: src/shred.c:174 +#, fuzzy +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" +" -u, --remove ¾å½ñ¤­¤·¤¿¸åÀÚ¤ê¼è¤ê¤·¤Æºï½ü¤¹¤ë\n" +" -v, --verbose ¿ÊĽ¾õ¶·¤òɽ¼¨¤¹¤ë\n" +" -x, --exact ¥Õ¥¡¥¤¥ë¥Ö¥í¥Ã¥¯¤Î¥µ¥¤¥º¤Ë¥Õ¥¡¥¤¥ë¥µ¥¤¥º¤òÀÚ¤ê¾å¤²¤Ê¤¤\n" +" -z, --zero shred ¤ò±£¤¹¤¿¤á¤Ë¡¢ºÇ¸å¤Ë°ìÅÙ¥¼¥í¤Ç¤Î¾å½ñ¤­¤ò¹Ô¤¦\n" +" - ɸ½à½ÐÎϤòÀ£ÃǤ¹¤ë\n" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" +"\n" +"--remove (-u) ¤¬»ØÄꤵ¤ì¤¿¤È¤­¤Ë FILE ¤òºï½ü¤·¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ç¥Õ¥¡¥¤¥ë¤ò\n" +"ºï½ü¤·¤Ê¤¤¤Î¤Ï¡¢/dev/hda ¤ÎÍͤʥǥХ¤¥¹¥Õ¥¡¥¤¥ë¤Ç¤¢¤Ã¤Æ¤â¶¦Ä̤ÎÁàºî¤Ç¤¢¤ê¡¢\n" +"¤³¤¦¤¤¤Ã¤¿¥Õ¥¡¥¤¥ë¤ÏÄ̾ïºï½ü¤µ¤ì¤ë¤Ù¤­¤Ç¤Ï¤Ê¤¤¤«¤é¤Ç¤¹¡£Ä̾ï¥Õ¥¡¥¤¥ë¤ò\n" +"Áàºî¤¹¤ë»þ¤ÏËØ¤ó¤É¤Î¿Í¤¬ --remove ¥ª¥×¥·¥ç¥ó¤ò»È¤¦¤³¤È¤Ë¤Ê¤ê¤Þ¤¹¡£\n" +"\n" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" +"CAUTION: shred ¤ÏÈó¾ï¤Ë½ÅÂç¤Ê²áÄø¤Ë´ð¤Å¤¤¤Æ¤¤¤ë¤³¤È¤ËÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£\n" +"¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤¬¥Ç¡¼¥¿¤Î¾ì½ê¤Ë¾å½ñ¤­¤¹¤ë¤È¤¤¤¦¤³¤È¡£¤³¤ì¤ÏÅÁÅýŪ¤Ê\n" +"ÊýË¡¤Ç¤¹¤¬¡¢¶áǯ¤Î¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Ç¤Ï¤³¤Î²¾Äê¤òËþ¤¿¤µ¤Ê¤¤»ö¤â¿¤¤¤Ç¤¹¡£\n" +"shred ¤ò»È¤¦°ÕÌ£¤¬¤Ê¤¤¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Ï°Ê²¼¤ÎÄ̤ê¤Ç¤¹¡£\n" +"\n" + +#: src/shred.c:200 +#, fuzzy +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" +"* AIX ¤ä Solaris ¤¬Ä󶡤·¤Æ¤¤¤ëÍͤʡ¢¥í¥°¹½Â¤¤ä¥¸¥ã¡¼¥Ê¥ê¥ó¥°¥Õ¥¡¥¤¥ë\n" +" ¥·¥¹¥Æ¥à (µÚ¤Ó JFS, ReiserFS, XFS Åù)\n" +"\n" +"* RAID ¥Ù¡¼¥¹¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤ÎÍͤʡ¢¾éĹ¤Ê¥Ç¡¼¥¿¤ò½ñ¹þ¤ó¤Ç¤ª¤ê¡¢½ñ¤­¹þ¤ß¤¬\n" +" ¼ºÇÔ¤·¤Æ¤âÊݸ¤µ¤ì¤ë¤è¤¦¤Ê¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à\n" +"\n" +"* Network Appliance ¤Î NFS ¥µ¡¼¥Ð¤ÎÍͤˡ¢¥¹¥Ê¥Ã¥×¥·¥ç¥Ã¥È¤òºî¤ë¥Õ¥¡¥¤¥ë¥·¥¹¥Æ" +"¥à\n" +"\n" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" +"* NFS ¥Ð¡¼¥¸¥ç¥ó 3 ¥¯¥é¥¤¥¢¥ó¥È¤ÎÍͤˡ¢°ì»þŪ¤Ê¾ì½ê¤Ë¥­¥ã¥Ã¥·¥å¤ò¹Ô¤¦ÍͤÊ\n" +" ¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à\n" +"\n" +"* °µ½Ì¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à\n" +"\n" +"¤µ¤é¤Ë¡¢¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¥Ð¥Ã¥¯¥¢¥Ã¥×¤ä¥ê¥â¡¼¥È¤Î¥ß¥é¡¼¤¬¥Õ¥¡¥¤¥ë¤Î¥³¥Ô¡¼" +"¤ò\n" +"´Þ¤ó¤Ç¤¤¤ë¤«¤âÃΤì¤Þ¤»¤ó¤¬¡¢¤³¤¦¤¤¤Ã¤¿¥Õ¥¡¥¤¥ë¤Ïºï½ü¤Ç¤­¤Þ¤»¤ó¤·¡¢À£ÃǤµ¤ì" +"¤¿\n" +"¥Õ¥¡¥¤¥ë¤ò¸å¤ÇÉü¸µ¤¹¤ë¤³¤È¤Ï¤ºî¤â¤Ê¤¤»ö¤Ç¤·¤ç¤¦¡£\n" + +#: src/shred.c:808 +#, fuzzy, c-format +msgid "%s: cannot rewind" +msgstr "%s ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "%s: ·Ð²á %lu/%lu (%s)..." + +#: src/shred.c:868 +#, fuzzy, c-format +msgid "%s: error writing at offset %s" +msgstr "%s ¤Î½ñ¤­¹þ¤ß¥¨¥é¡¼" + +#: src/shred.c:897 +#, fuzzy, c-format +msgid "%s: file too large" +msgstr "%s: ¥Õ¥¡¥¤¥ë¤¬Ä¹¤¹¤®¤Þ¤¹" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "%s: ·Ð²á %lu/%lu (%s)...%s" + +#: src/shred.c:936 +#, fuzzy, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "%s: ·Ð²á %lu/%lu (%s)...%s/%s" + +#: src/shred.c:1195 +#, fuzzy, c-format +msgid "%s: invalid file type" +msgstr "%s: ÀÜÈø¼­¤ÎŤµ¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s: ¥Õ¥¡¥¤¥ë¤¬Éé¤ÎÂ礭¤µ¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹" + +#: src/shred.c:1265 +#, fuzzy, c-format +msgid "%s: error truncating" +msgstr "%s: ¥Õ¥¡¥¤¥ë¤¬ÀÚ¤êµÍ¤á¤é¤ì¤Þ¤·¤¿" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "%s: ÄɲÃÍÑ¥Õ¥¡¥¤¥ëµ­½Ò»Ò¤Ë¤Ï shred ¤Ç¤­¤Þ¤»¤ó" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "%s: ºï½ü¤·¤Þ¤¹" + +#: src/shred.c:1412 +#, fuzzy, c-format +msgid "%s: renamed to %s" +msgstr "%s: ÆÉ¤ß¹þ¤ß¥¨¥é¡¼" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s: ºï½ü¤·¤Þ¤·¤¿" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "%s: ºï½ü¤Ç¤­¤Þ¤»¤ó" + +#: src/shred.c:1551 +#, fuzzy, c-format +msgid "%s: invalid number of passes" +msgstr "%s: ̵¸ú¤ÊÉÿô¤Ç¤¹" + +#: src/shred.c:1568 +#, fuzzy, c-format +msgid "%s: invalid file size" +msgstr "%s: ÀÜÈø¼­¤ÎŤµ¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó" + +#: src/sleep.c:34 +#, fuzzy +msgid "Jim Meyering and Paul Eggert" +msgstr "Mike Haertel ¤È Paul Eggert" + +#: src/sleep.c:52 +#, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" +"»ÈÍÑË¡: %s ¿ô»ú[ÀÜÈø¼­]...\n" +"¤â¤·¤¯¤Ï: %s ¥ª¥×¥·¥ç¥ó\n" +"¿ô»ú¤Ç»ØÄꤵ¤ì¤¿»þ´Ö (ÉÃ) ¤À¤±°ì»þÄä»ß¤·¤Þ¤¹. ÀÜÈø¼­¤¬ `s' ¤Ê¤éÉà (ɸ½à),\n" +"`m' ¤Ê¤éʬ, `h' ¤Ê¤é»þ, `d' ¤Ê¤é¤ÐÆü¤¬Ã±°Ì¤Ë¤Ê¤ê¤Þ¤¹. ¾¤Î¿¤¯¤Î¼ÂÁõ¤È°Û¤Ê" +"¤ê,\n" +"»ØÄꤹ¤ë¿ô»ú¤ÏÀ°¿ô¤À¤±¤Ç¤Ê¤¯, ¾®¿ô¤Ç¤â¹½¤¤¤Þ¤»¤ó.\n" +"\n" + +#: src/sleep.c:155 +#, fuzzy, c-format +msgid "invalid time interval `%s'" +msgstr "¥Õ¥£¡¼¥ë¥É¿ô¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹: `%s'" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "¼Â»þ´Ö¤Î»þ·×¤òÆÉ¤ß¼è¤ë¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "Mike Haertel ¤È Paul Eggert" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" +"¥Õ¥¡¥¤¥ë¤ÎÆâÍÆ¤ò¥½¡¼¥È¤·¤ÆÉ¸½à½ÐÎϤ˽ñ¤­¹þ¤ß¤Þ¤¹. ÆþÎÏ¥Õ¥¡¥¤¥ë¤¬Ê£¿ô¤Î¾ì¹ç,\n" +"Ï¢·ë¤·¤Æ½ÐÎϤ·¤Þ¤¹.\n" +"\n" +"ʤÓÂØ¤¨¥ª¥×¥·¥ç¥ó:\n" +"\n" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" +" -b, --ignore-leading-blanks ¥½¡¼¥ÈÂоݤÎÁ°¤Ë¤¢¤ë¶õÇò¤ò̵»ë\n" +" -d, --dictionary-order ±Ñ¿ô»ú¤È¶õÇòʸ»ú¤Î¤ß¤òÂоݤˤ·¤ÆÊ¤ÓÂØ¤¨\n" +" -f, --ignore-case Âçʸ»ú¡¦¾®Ê¸»ú¤òƱ°ì»ë¤·¤ÆÊ¤ÓÂØ¤¨\n" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" +" -g, --general-numeric-sort °ìÈÌŪ¤Ê¿ôÃͤÎÂç¾®¤Ë¤è¤Ã¤ÆÈæ³Ó\n" +" -i, --ignore-nonprinting ɽ¼¨²Äǽʸ»ú¤Î¤ß¤òÈæ³Ó¤·¤Æ¡¡Ê¤ÓÂØ¤¨\n" +" -M, --month-sort ·î̾¤Ç¥½¡¼¥È¤ò¹Ô¤¦. ·î̾°Ê³°¤Ï JAN ¤è¤ê¾®¤µ¤¤\n" +" -n, --numeric-sort ʸ»úÎó¤ò¿ôÃͤÎÂç¾®¤Ë¤è¤Ã¤ÆÈæ³Ó\n" +" -r, --reverse Èæ³Ó·ë²Ì¤òȿž\n" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" +"¤½¤Î¾¤Î¥ª¥×¥·¥ç¥ó:\n" +" -c, --check ʤÓÂØ¤¨¤º¤Ë, ÆþÎÏ¥Õ¥¡¥¤¥ë¤¬Ê¤ÓÂØ¤¨¤é¤ì¤Æ¤¤¤ë" +"¤«\n" +" Èݤ«¤òÄ´¤Ù¤ë\n" +" -k, --key=POS1[,POS2] ¥½¡¼¥È¥­¡¼¤ò POS1 ¤«¤é POS2 ¤Þ¤Ç¤Ë (¸¶ÅÀ 1)\n" +" -m, --merge ʤÓÂØ¤¨¤º¤Ë¥½¡¼¥ÈºÑ¤ß¤Î¥Õ¥¡¥¤¥ë¤Î¥Þ¡¼¥¸¤Î¤ß¹Ô" +"¤¦\n" +" -s, --stable Á°¤ÎÈæ³Ó·ë²Ì¤ËÍê¤é¤Ê¤¤°ÂÄêŪ¤ÊʤÓÂØ¤¨\n" +" -S, --buffer-size=SIZE ¥á¥¤¥ó¥á¥â¥ê¥Ð¥Ã¥Õ¥¡¤ÎÂ礭¤µ¤È¤·¤Æ SIZE ¤ò»È¤¦\n" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" +" -t, --field-separator=SEP ¶èÀÚ¤êʸ»ú¤ò¶õÇòʸ»úÎó¤ÎÂå¤ï¤ê¤Ë SEP ¤ËÊѹ¹\n" +" -T, --temporary-directory=DIR °ì»þ¥Õ¥¡¥¤¥ë¤È¤·¤Æ $TMPDIR ¤ä %s ¤ÎÂå¤ï¤ê" +"¤Ë\n" +" DIR ¤ò»ÈÍÑ. Ê£¿ô¤Î¥Ç¥£¥ì¥¯¥È¥ê¤òÊ£¿ô¤Î¥ª¥×¥·¥ç" +"¥ó\n" +" ¤Ç»ØÄê²Ä\n" +" -u, --unique -c ¥ª¥×¥·¥ç¥ó¤È¤È¤â¤ËÍøÍѤ¹¤ì¤Ð¸·Ì©¤ËʤÓÂØ¤¨,\n" +" ¤½¤¦¤Ç¤Ê¤±¤ì¤ÐÅù¤·¤¤¹Ô¤Î¤¦¤ÁºÇ½é¤Î¤â¤Î¤À¤±¤òɽ" +"¼¨\n" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr " -z, --zero-terminated ʸ»úÎó¤ÎºÇ¸å¤Ë²þ¹Ô¤Ç¤Ê¤¯¥Ì¥ëʸ»ú¤òÉÕ²Ã\n" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" +"\n" +"POS ¤Î½ñ¼°¤Ï F[.C][OPTS] ¤Ç¤¢¤ê, F ¤Ë¤Ï¥Õ¥£¡¼¥ë¥ÉÈÖ¹æ, C ¤Ë¤Ï¥Õ¥£¡¼¥ë¥ÉÆâ¤Î\n" +"ʸ»ú¤Î°ÌÃÖ¤ò»ØÄꤷ¤Þ¤¹. OPTS ¤Ë¤Ï¡ÖʤÓÂØ¤¨¥ª¥×¥·¥ç¥ó¡×¤ÎÃæ¤Î 1¤Ä°Ê¾å¤Îʸ»ú" +"¤¬\n" +"»ØÄꤵ¤ì, ¤½¤Î¥­¡¼¤ËÂФ·¤ÆÁ´ÂΤΡÖʤÓÂØ¤¨¥ª¥×¥·¥ç¥ó¡×¤è¤ê¤âÍ¥À褵¤ì¤Þ¤¹.\n" +"¥­¡¼¤¬»ØÄꤵ¤ì¤Ê¤±¤ì¤Ð, ¥­¡¼¤È¤·¤Æ¹ÔÁ´ÂΤ¬»È¤ï¤ì¤Þ¤¹.\n" +"\n" +"SIZE ¤Î¸å¤Ë¤Ï¼¡¤ÎÊ£¿ô»ØÄê²Äǽ¤ÊÀÜÈø¼­¤ò»ØÄꤷ¤Þ¤¹.\n" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" +"¥á¥â¥ê¤Î % 1%, b ¤Ï 1, K ¤Ï 1024 (ɸ½à) ¤Î¤è¤¦¤Ë M, G, T, P, E, Z, T.\n" +"\n" +"*** ·Ù¹ð ***\n" +"´Ä¶­ÊÑ¿ô¤Ë¤è¤Ã¤Æ»ØÄꤵ¤ì¤¿¥í¥«¡¼¥ë¤ÇʤÓÂØ¤¨¤Î½çÈÖ¤¬ÊѤï¤ê¤Þ¤¹.\n" +"ËÜÍè¤Î¥Ð¥¤¥Èñ°Ì¤Î¿ôÃͤÇÀΤʤ¬¤é¤ÎʤÓÂØ¤¨½ç¤Ë¤·¤¿¤¤¤Ê¤é¤Ð LC_ALL=C ¤ò»ØÄê.\n" + +#: src/sort.c:444 +msgid "cannot create temporary file" +msgstr "°ì»þ¥Õ¥¡¥¤¥ë¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/sort.c:467 +msgid "open failed" +msgstr "¥ª¡¼¥×¥ó¼ºÇÔ" + +#: src/sort.c:487 src/sort.c:2496 +msgid "close failed" +msgstr "¥¯¥í¡¼¥º¼ºÇÔ" + +#: src/sort.c:495 +msgid "write failed" +msgstr "½ñ¤­¹þ¤ß¼ºÇÔ" + +#: src/sort.c:641 +msgid "sort size" +msgstr "¥½¡¼¥È¥µ¥¤¥º" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "¾õÂÖ¸¡ÃμºÇÔ" + +#: src/sort.c:972 +msgid "read failed" +msgstr "ÆÉ¹þ¤ß¼ºÇÔ" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "%s: %s:%s: ½ç½ø¤¬ÉÔµ¬Â§: " + +#: src/sort.c:1574 +msgid "standard error" +msgstr "ɸ½à¥¨¥é¡¼" + +#: src/sort.c:2032 +#, c-format +msgid "%s: invalid field specification `%s'" +msgstr "%s: ¥Õ¥£¡¼¥ë¥É¤Î»ØÄê `%s' ¤¬Ìµ¸ú¤Ç¤¹" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "%s: ¥«¥¦¥ó¥È `%.*s' ¤¬Â礭²á¤®¤Þ¤¹" + +#: src/sort.c:2064 +#, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "%s: `%s' ¤Î³«»ÏÅÀ¤Ç¤Î¥«¥¦¥ó¥È¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹" + +#: src/sort.c:2298 +msgid "invalid number after `-'" +msgstr "`-' ¤Î¸å¤Î¿ô»ú¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +msgid "invalid number after `.'" +msgstr "`.' ¤Î¸å¤Î¿ô»ú¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó" + +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "¥Õ¥£¡¼¥ë¥É»ØÄê¤Ë»È¤¨¤Ê¤¤Ê¸»ú¤¬¤¢¤ê¤Þ¤¹" + +#: src/sort.c:2338 +msgid "invalid number at field start" +msgstr "¥Õ¥£¡¼¥ë¥É¤Î³«»ÏÅÀ¤Î¿ô»ú¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó" + +#: src/sort.c:2342 src/sort.c:2370 +msgid "field number is zero" +msgstr "¥Õ¥£¡¼¥ë¥ÉÈֹ椬¥¼¥í¤Ç¤¹" + +#: src/sort.c:2351 +msgid "character offset is zero" +msgstr "ʸ»ú¤Î¥ª¥Õ¥»¥Ã¥È¤¬¥¼¥í¤Ç¤¹" + +#: src/sort.c:2366 +msgid "invalid number after `,'" +msgstr "`,' ¤Î¸å¤Î¿ô»ú¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "Ê£¿ôʸ»ú¤Î¥¿¥Ö `%s'" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "Äɲñ黻 `%s' ¤Ï -c ¤È°ì½ï¤Ë¤Ï»È¤¨¤Þ¤»¤ó" + +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó] [INPUT [PREFIX]]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" +"INPUT ¤ò PREFIXaa, PREFIXab, ... ¤È¤¤¤¦¸ÇÄꥵ¥¤¥º¤Î¥Õ¥¡¥¤¥ë¤Ëʬ³ä. ɸ½à¤Ç\n" +"PREFIX ¤Ï `x'. INPUT ¤¬»ØÄꤵ¤ì¤Ê¤¤¤«, INPUT ¤¬ - ¤Î¾ì¹ç¤Ïɸ½àÆþÎϤ¬ÆÉ¤Þ¤ì" +"¤ë.\n" + +#: src/split.c:108 +#, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" +" -a, --suffix-length=N Ťµ N ¤ÎÀÜÈø¼­¤Î»È¤¦ (ɸ½à %d)\n" +" -b, --bytes=SIZE 1 ½ÐÎÏ¥Õ¥¡¥¤¥ë¤ò SIZE ¥Ð¥¤¥È¤Ë\n" +" -C, --line-bytes=SIZE 1 ½ÐÎÏ¥Õ¥¡¥¤¥ë¤òºÇÂç SIZE ¥Ð¥¤¥È¹Ô¤Ë\n" +" -l, --lines=NUMBER 1 ½ÐÎÏ¥Õ¥¡¥¤¥ë¤ò NUMBER ¹Ô¤Ë\n" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" +" --verbose ³Æ¡¹¤Î½ÐÎÏ¥Õ¥¡¥¤¥ë¤ò³«¤¯Ä¾Á°¤Ë, ɸ½à¥¨¥é¡¼½ÐÎϤË\n" +" ¿ÇÃÇ¥á¥Ã¥»¡¼¥¸¤òɽ¼¨\n" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "½ÐÎÏ¥Õ¥¡¥¤¥ë¤ÎÀÜÈø¼­¤ò»È¤¤²Ì¤¿¤·¤Þ¤·¤¿" + +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "¥Õ¥¡¥¤¥ë `%s' ¤òºîÀ®\n" + +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "Ê£¿ô¤Îʬ³äÊýË¡¤Ï»ØÄê¤Ç¤­¤Þ¤»¤ó" + +#: src/split.c:394 +#, c-format +msgid "%s: invalid suffix length" +msgstr "%s: ÀÜÈø¼­¤ÎŤµ¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó" + +#: src/split.c:408 src/split.c:434 +#, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: ̵¸ú¤Ê¥Ð¥¤¥È¿ôɽµ­¤Ç¤¹" + +#: src/split.c:421 +#, c-format +msgid "%s: invalid number of lines" +msgstr "%s: ̵¸ú¤Ê¹Ô¿ôɽµ­¤Ç¤¹" + +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "`-%d' ¥ª¥×¥·¥ç¥ó¤Ï²áµî¤Î¤â¤Î¤Ç¤¹. `-l %d' ¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤" + +#: src/split.c:483 +msgid "invalid number" +msgstr "%s: ̵¸ú¤ÊÈÖ¹æÉ½µ­¤Ç¤¹" + +#: src/stat.c:326 +#, fuzzy +msgid "*** invalid date/time ***" +msgstr "Éý `%s' ¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó" + +#: src/stat.c:608 +#, fuzzy, c-format +msgid "cannot read file system information for %s" +msgstr "%s ¤ËÂФ¹¤ë¥Õ¥¡¥¤¥ë¥Ý¥¤¥ó¥¿¤òºÆÇÛÃ֤Ǥ­¤Þ¤»¤ó" + +#: src/stat.c:684 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó] [¥Õ¥¡¥¤¥ë]...\n" + +#: src/stat.c:685 +#, fuzzy +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" +"¥Õ¥¡¥¤¥ë¤ä¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¾õÂÖ¤òɽ¼¨¤¹¤ë¡£\n" +"\n" +" -l, --link\t\t¥ê¥ó¥¯¤òé¤ë\n" +" -f, --filesystem\t¥Õ¥¡¥¤¥ë¤Î¾õÂ֤ǤϤʤ¯¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¾õÂÖ¤òɽ¼¨¤¹¤ë\n" +" -t, --terse\t\t´Ê·é¤Ê·Á¼°¤Ç¾ðÊó¤òɽ¼¨¤¹¤ë\n" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" +"»ÈÍÑË¡: %s [-F ¥Ç¥Ð¥¤¥¹] [--file=¥Ç¥Ð¥¤¥¹] [ÀßÄê]...\n" +"¤â¤·¤¯¤Ï: %s [-F ¥Ç¥Ð¥¤¥¹] [--file=¥Ç¥Ð¥¤¥¹] [-a|--all]\n" +"¤â¤·¤¯¤Ï: %s [-F ¥Ç¥Ð¥¤¥¹] [--file=¥Ç¥Ð¥¤¥¹] [-g|--save]\n" + +#: src/stty.c:504 +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" +"¥¿¡¼¥ß¥Ê¥ë°À­¤Îɽ¼¨, Êѹ¹.\n" +"\n" +" -a, --all ¸½ºß¤Î¤¹¤Ù¤Æ¤ÎÀßÄê¤ò¿Í´Ö¤ËÆÉ¤á¤ë·Á¼°¤Ç½ÐÎÏ\n" +" -g, --save ¸½ºß¤Î¤¹¤Ù¤Æ¤ÎÀßÄê¤òÊ̤Πstty ¤¬ÆÉ¤á¤ë·Á¼°¤Ç½ÐÎÏ\n" +" -F, --file=¥Ç¥Ð¥¤¥¹ ɸ½àÆþÎϤÎÂå¤ï¤ê¤Ë»ØÄꤵ¤ì¤¿¥Ç¥Ð¥¤¥¹¤ò»ÈÍÑ\n" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" +"\n" +"¡ÖÀßÄê¡×¤ÎÁ°¤Ë - ¤òÉÕ¤±¤ë¤È, ÈÝÄê¤òɽ¤ï¤·¤Þ¤¹. °Ê²¼¤Î * (¥¢¥¹¥¿¥ê¥¹¥¯) µ­¹æ\n" +"¤ÏÈó POSIX ÀßÄê¤Ç¤¢¤ë¤³¤È¤ò¼¨¤·¤Æ¤¤¤Þ¤¹. »È¤Ã¤Æ¤¤¤ë¥·¥¹¥Æ¥à¤Ë¤è¤Ã¤Æ,\n" +"¤É¤ÎÀßÄ꤬ͭ¸ú¤Ê¤Î¤«¤¬·è¤Þ¤ê¤Þ¤¹.\n" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" +"\n" +"ÆÃ¼ìʸ»ú:\n" +" * dsusp CHAR CHAR ¤ÏÆþÎϤ¬ÆÉ¤ß¹þ¤Þ¤ì¤ë¤È, üËöÄä»ß¥·¥°¥Ê¥ë¤òÁ÷¿®\n" +" eof CHAR CHAR ¤Ï¥Õ¥¡¥¤¥ë½ªÃ¼¤òÁ÷¿® (ÆþÎϤνªÎ»)\n" +" eol CHAR CHAR ¤Ï¹ÔËö\n" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" +" * eol2 CHAR ¹ÔËö¤ò¼¨¤¹Ê̤ΠCHAR\n" +" erase CHAR CHAR ¤ÏºÇ¸å¤Ë¥¿¥¤¥×¤µ¤ì¤¿Ê¸»ú¤òºï½ü\n" +" intr CHAR CHAR ¤Ï³ä¤ê¹þ¤ß¥·¥°¥Ê¥ë¤òÁ÷¿®\n" +" kill CHAR CHAR ¤Ï¸½ºß¤Î¹Ô¤òºï½ü\n" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" +" * lnext CHAR CHAR ¤Ï°úÍѤµ¤ì¤¿¼¡¤Îʸ»ú¤òÆþÎÏ\n" +" quit CHAR CHAR ¤Ï½ªÎ»¥·¥°¥Ê¥ë¤òÁ÷¿®\n" +" * rprnt CHAR CHAR ¤Ï¸½ºß¤Î¹Ô¤òºÆÉ½¼¨\n" +" start CHAR CHAR ¤ÏÄä»ß¤·¤¿½ÐÎϤòºÆ³«\n" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" +" stop CHAR CHAR ½ÐÎϤòÄä»ß\n" +" susp CHAR CHAR ¤ÏüËöÄä»ß¥·¥°¥Ê¥ë¤òÁ÷¿®\n" +" * swtch CHAR CHAR ¤ÏÊ̤Υ·¥§¥ëÁؤËÀÚ¤êÂØ¤¨\n" +" * werase CHAR CHAR ¤ÏºÇ¸å¤Ë¥¿¥¤¥×¤µ¤ì¤¿Ã±¸ì¤òºï½ü\n" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" +"\n" +"ÆÃ¼ìÀßÄê:\n" +" N Æþ½ÐÎϤήÅÙ¤ò N ¥Ü¡¼¤ËÀßÄê\n" +" * cols N ¥¿¡¼¥ß¥Ê¥ë¤¬ N ·å¤Ç¤¢¤ë¤³¤È¤ò¥«¡¼¥Í¥ë¤ËÄÌÃÎ\n" +" * columns N cols N ¤ÈƱ¤¸\n" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" +" ispeed N ÆþÎÏ®ÅÙ¤ò N ¤ËÀßÄê\n" +" * line N ²óÀþÀ©¸æµ¬Â§ N ¤ò»ÈÍÑ\n" +" min N -icanon ¤È¶¦¤Ë»È¤¤, ´°Á´¤ÊÆÉ¹þ¤ß¤ËÂФ·¤ÆºÇÄã N ʸ»ú¤òÀßÄê\n" +" ospeed N ½ÐÎÏ®ÅÙ¤ò N ¤ËÀßÄê\n" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" +" * rows N ¥¿¡¼¥à¤Ê¤ë¤¬ N ¹Ô¤Ç¤¢¤ë¤³¤È¤ò¥«¡¼¥Í¥ë¤ËÄÌÃÎ\n" +" * size ¥«¡¼¥Í¥ë¤ËÂбþ¤·¤¿¹Ô¿ô¤È·å¿ô¤òɽ¼¨\n" +" speed üËö®ÅÙ¤òɽ¼¨\n" +" time N -icanon ¤È¶¦¤Ë»È¤¤, ÆÉ¹þ¤ß¤Î¥¿¥¤¥à¥¢¥¦¥È¤ò 10 ʬ¤Î N ÉäËÀß" +"Äê\n" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" +"\n" +"À©¸æÀßÄê:\n" +" [-]clocal ¥â¥Ç¥àÀ©¸æ¿®¹æ¤ò̵¸ú¤Ë\n" +" [-]cread ¼õ¤±¼è¤ëÆþÎϤòµö²Ä\n" +" * [-]crtscts RTS/CTS ¥Ï¥ó¥É¥·¥§¥¤¥¯¤òÍ­¸ú¤Ë\n" +" csN ʸ»ú¤ÎÂ礭¤µ¤ò N ¥Ó¥Ã¥È¤ËÀßÄê, N ¤ÎÈÏ°Ï¤Ï [5..8]\n" + +#: src/stty.c:570 +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" +" [-]cstopb 1ʸ»ú¤¢¤¿¤ê 2¥¹¥È¥Ã¥×¥Ó¥Ã¥È¤ò»ÈÍÑ (1 ¤Î¾ì¹ç¤Ï `-' ¤òÉÕ¤±" +"¤ë)\n" +" [-]hup ºÇ¸å¤Î¥×¥í¥»¥¹¤¬ tty ¤òÊĤ¸¤¿¤é¥Ï¥ó¥°¥¢¥Ã¥×¥·¥°¥Ê¥ë¤òÁ÷¤ë\n" +" [-]hupcl [-]hup ¤ÈƱ¤¸\n" +" [-]parenb ¥Ñ¥ê¥Æ¥£¥Ó¥Ã¥È¤ò½ÐÎϤ·, ÆþÎÏ¤Ë¥Ñ¥ê¥Æ¥£¥Ó¥Ã¥È¤¬¤¢¤ë¤È¤¹¤ë\n" +" [-]parodd ´ñ¥Ñ¥ê¥Æ¥£¤òÀßÄê (¶ö¤Ï `-')\n" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" +"\n" +"ÆþÎÏÀßÄê:\n" +" [-]brkint ¥Ö¥ì¥¤¥¯¤Ç³ä¤ê¹þ¤ß¥·¥°¥Ê¥ë¤òȯÀ¸\n" +" [-]icrnl Éüµ¢ (CR) ¤ò²þ¹Ô (LF) ¤ËËÝÌõ\n" +" [-]ignbrk ¥Ö¥ì¥¤¥¯Ê¸»ú¤ò̵»ë\n" +" [-]igncr Éüµ¢ (CR) ¤ò̵»ë\n" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" +" [-]ignpar ¥Ñ¥ê¥Æ¥£¥¨¥é¡¼¤Î¤¢¤ëʸ»ú¤ò̵»ë\n" +" * [-]imaxbel ȯ¿®²»¤òÌĤ餷, ʸ»ú¤ËÁ´ÆþÎϥХåե¡¤òÅǤ­½Ð¤µ¤Ê¤¤\n" +" [-]inlcr ²þ¹Ô (LF) ¤òÉüµ¢ (CR) ¤ËËÝÌõ\n" +" [-]inpck ÆþÎÏ¥Ñ¥ê¥Æ¥£¤Î¥Á¥§¥Ã¥¯¤ò²Äǽ¤Ë\n" +" [-]istrip ÆþÎÏʸ»ú¤ÎºÇ¾å°Ì (Âè8) ¥Ó¥Ã¥È¤òÍî¤È¤¹\n" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" +" * [-]iuclc Âçʸ»ú¤ò¾®Ê¸»ú¤ËËÝÌõ\n" +" * [-]ixany ³«»Ïʸ»ú¤À¤±¤Ç¤Ê¤¯, Ǥ°Õ¤Îʸ»ú¤Ç½ÐÎϤòºÆ³«\n" +" [-]ixoff ³«»Ï¤ª¤è¤ÓÄä»ßʸ»ú¤ÎÁ÷¿®¤ò²Äǽ¤Ë\n" +" [-]ixon XON/XOFF ¥Õ¥í¡¼À©¸æ¤ò²Äǽ¤Ë\n" +" [-]parmrk ¥Ñ¥ê¥Æ¥£¡¼¥¨¥é¡¼¤ò¥Þ¡¼¥¯ (255-0 ʸ»ú¤Î¥·¡¼¥±¥ó¥¹¤Ç)\n" +" [-]tandem [-]ixoff ¤ÈƱ¤¸\n" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" +"\n" +"½ÐÎÏÀßÄê:\n" +" * bsN ¥Ð¥Ã¥¯¥¹¥Ú¡¼¥¹¤ÎÃٱ䥹¥¿¥¤¥ë. N ¤ÎÈÏ°Ï¤Ï [0..1]\n" +" * crN Éüµ¢ (CR) Ãٱ䥹¥¿¥¤¥ë. N ¤ÎÈÏ°Ï¤Ï [0..3]\n" +" * ffN ÍÑ»æÁ÷¤êÃٱ䥹¥¿¥¤¥ë. N ¤ÎÈÏ°Ï¤Ï [0..1]\n" +" * nlN ²þ¹Ô (LF) Ãٱ䥹¥¿¥¤¥ë. N ¤ÎÈÏ°Ï¤Ï [0..1]\n" + +#: src/stty.c:608 +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" +" * [-]ocrnl Éüµ¢ (CR) ¤ò²þ¹Ô (LF) ¤ËËÝÌõ\n" +" * [-]ofdel ¥Ì¥ëʸ»ú¤ÎÂå¤ï¤ê¤ËËä¤á¤ëʸ»ú¤È¤·¤Æºï½üʸ»ú¤ò»ÈÍÑ\n" +" * [-]ofill ÃÙ±ä¤Î¥¿¥¤¥ß¥ó¥°¤ÎÂå¤ï¤ê¤ËËä¤á¤ëʸ»ú¤ò»ÈÍÑ\n" +" * [-]olcuc ¾®Ê¸»ú¤òÂçʸ»ú¤ËËÝÌõ\n" +" * [-]onlcr ²þ¹Ô (LF) ¤òÉüµ¢²þ¹Ô (CR-LF) ¤ËËÝÌõ\n" +" * [-]onlret ²þ¹Ô (LF) ¤¬Éüµ¢ (CR) ¤È¤·¤Æ¿¶Éñ¤¦\n" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" +" * [-]onocr 1·åÌܤÎÉüµ¢ (CR) ¤òɽ¼¨¤·¤Ê¤¤\n" +" [-]opost ¥×¥í¥»¥¹¸å½ÐÎÏ\n" +" * tabN ¿åÊ¿¥¿¥ÖÃٱ䥹¥¿¥¤¥ë. N ¤ÎÈÏ°Ï¤Ï [0..3]\n" +" * tabs tab0 ¤ÈƱ¤¸\n" +" * -tabs tab3 ¤ÈƱ¤¸\n" +" * vtN ¿âľ¥¿¥ÖÃٱ䥹¥¿¥¤¥ë. N ¤ÎÈÏ°Ï¤Ï [0..1]\n" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" +"\n" +"¥í¡¼¥«¥ëÀßÄê:\n" +" [-]crterase backspace-space-backspace ¤È¤·¤Æºï½üʸ»ú¤ò¥¨¥³¡¼\n" +" * crtkill echoprt ¤È echoe ¤ÎÀßÄê¤Ë¤·¤¿¤¬¤Ã¤ÆÁ´¤Æ¤Î¹Ô¤òºï½ü\n" +" * -crtkill echoctl ¤È echok ¤ÎÀßÄê¤Ë¤·¤¿¤¬¤Ã¤ÆÁ´¤Æ¤Î¹Ô¤òºï½ü\n" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" +" * [-]ctlecho ¥Ï¥Ã¥Èµ­¹æ (`^c') ¤ÇÀ©¸æÊ¸»ú¤ò¥¨¥³¡¼\n" +" [-]echo ÆþÎÏʸ»ú¤ò¥¨¥³¡¼\n" +" * [-]echoctl [-]ctlecho ¤ÈƱ¤¸\n" +" [-]echoe [-]crterase ¤ÈƱ¤¸\n" +" [-]echok ºï½üʸ»ú¤Î¸å¤Ç²þ¹Ô¤ò¥¨¥³¡¼\n" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" +" * [-]echoke [-]crtkill ¤ÈƱ¤¸\n" +" [-]echonl ¾¤Îʸ»ú¤ò¥¨¥³¡¼¤·¤Ê¤¯¤Æ¤â²þ¹Ô¤ò¥¨¥³¡¼\n" +" * [-]echoprt `\\' ¤È '/' ¤Î´Ö¤Ç, ºï½ü¤µ¤ì¤¿Ê¸»ú¤òµÕ½ç¤Ë¥¨¥³¡¼\n" +" [-]icanon erase, kill, werase ¤ª¤è¤Ó rprnt ÆÃ¼ìʸ»ú¤ò»ÈÍѲÄǽ¤Ë\n" +" [-]iexten Èó POSIX ÆÃ¼ìʸ»ú¤ò»ÈÍѲÄǽ¤Ë\n" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" +" [-]isig ³ä¤ê¹þ¤ß (interrupt), ½ªÎ» (quit) ¤ª¤è¤ÓÃæÃÇ (suspend)\n" +" ÆÃ¼ìʸ»ú¤ò»ÈÍѲÄǽ¤Ë\n" +" [-]noflsh ³ä¤ê¹þ¤ß (interrupt) ¤È½ªÎ» (quit) ÆÃ¼ìʸ»ú¤Î¸å¤Î½ÐÎϤò̵¸ú" +"¤Ë\n" +" * [-]prterase [-]echoprt ¤ÈƱ¤¸\n" +" * [-]tostop üËö¤Ë½ñ¤­¹þ¤â¤¦¤È¤¹¤ë¥Ð¥Ã¥¯¥°¥é¥¦¥ó¥É¥¸¥ç¥Ö¤òÄä»ß\n" +" * [-]xcase icanon ¤È¶¦¤Ë»È¤¤, Âçʸ»ú¤ËÂФ·¤Æ `\\' ¤Ç¥¨¥¹¥±¡¼¥×\n" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" +"\n" +"Áȹ礻ÀßÄê:\n" +" * [-]LCASE [-]lcase ¤ÈƱ¤¸\n" +" cbreak -icanon ¤ÈƱ¤¸\n" +" -cbreak icanon ¤ÈƱ¤¸\n" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" +" cooked brkint ignpar istrip icrnl ixon opost isig ¤ÈƱ¤¸\n" +" icanon, eof ¤ª¤è¤Ó eol ʸ»ú¤Ïɸ½à¤ÎÃÍ\n" +" -cooked raw ¤ÈƱ¤¸\n" +" crt echoe echoctl echoke ¤ÈƱ¤¸\n" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" +" dec echoe echoctl echoke -ixany intr ^c erase 0177 kill ^u ¤ÈƱ" +"¤¸\n" +" * [-]decctlq [-]ixany ¤ÈƱ¤¸\n" +" ek erase ¤È kill ʸ»ú¤òɸ½à¤ÎÃͤË\n" +" evenp parenb -parodd cs7 ¤ÈƱ¤¸\n" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" +" -evenp -parenb cs8 ¤ÈƱ¤¸\n" +" * [-]lcase xcase iuclc olcuc ¤ÈƱ¤¸\n" +" litout -parenb -istrip -opost cs8 ¤ÈƱ¤¸\n" +" -litout parenb istrip opost cs7 ¤ÈƱ¤¸\n" +" nl -icrnl -onlcr ¤ÈƱ¤¸\n" +" -nl icrnl -inlcr -igncr onlcr -ocrnl -onlret ¤ÈƱ¤¸\n" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" +" oddp parenb parodd cs7 ¤ÈƱ¤¸\n" +" -oddp -parenb cs8 ¤ÈƱ¤¸\n" +" [-]parity [-]evenp ¤ÈƱ¤¸\n" +" pass8 -parenb -istrip cs8 ¤ÈƱ¤¸\n" +" -pass8 parenb istrip cs7 ¤ÈƱ¤¸\n" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" +" raw -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0 ¤ÈƱ¤¸\n" +" -raw cooked ¤ÈƱ¤¸\n" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" +" sane cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke ¤ÈƱ¤¸,\n" +" Á´¤Æ¤ÎÆÃ¼ìʸ»ú¤Ïɸ½à¤ÎÃÍ.\n" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" +"\n" +"ɸ½àÆþÎϤȤĤʤ¬¤Ã¤¿Ã¼Ëö¤òÀ©¸æ¤·¤Þ¤¹. °ú¿ô¤¬¤Ê¤±¤ì¤Ð,\n" +"¥Ü¡¼¥ì¡¼¥È, ²óÀþÀ©¸æµ¬Â§¤ª¤è¤Ó stty sane ¤«¤é¤Î¤º¤ì¤òɽ¼¨¤·¤Þ¤¹.\n" +"ÀßÄê¤ÎºÝ¤Ë¤Ï, CHAR ¤Ïʸ»úÄ̤ê¤Ë°·¤ï¤ì¤ë¤«, ^c, 0x37, 0177 ¤Þ¤¿¤Ï 127 ¤Î¤è¤¦" +"¤Ë\n" +"¥³¡¼¥É²½¤µ¤ì¤Þ¤¹. ÆÃÊ̤ÊÃÍ ^- ¤Þ¤¿¤Ï undef ¤ÏÆÃ¼ìʸ»ú¤ò̵¸ú¤Ë¤¹¤ë¤Î¤Ë\n" +"»È¤ï¤ì¤Þ¤¹.\n" + +#: src/stty.c:787 +#, fuzzy +msgid "only one device may be specified" +msgstr "°ú¿ô¤ò°ì¤Ä¤À¤±»ØÄê¤Ç¤­¤Þ¤¹" + +#: src/stty.c:882 +#, fuzzy +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "¥ª¥×¥·¥ç¥ó --string ¤È --check ¤ÏÇÓ¾Ū¤Ë»È¤ï¤ì¤Þ¤¹" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "½ÐÎÏ·Á¼°¤ò»ØÄꤷ¤¿¾ì¹ç, ¥â¡¼¥É¤òÀßÄꤷ¤Æ¤Ï¤¤¤±¤Þ¤»¤ó" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "%s: Èó¥Ö¥í¥Ã¥­¥ó¥°¥â¡¼¥É¤òºÆÀßÄê¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿" + +#: src/stty.c:957 src/stty.c:1064 +#, fuzzy, c-format +msgid "invalid argument `%s'" +msgstr "`%2$s' ¤ËÂФ¹¤ë°ú¿ô %1$s ¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, fuzzy, c-format +msgid "missing argument to `%s'" +msgstr "`%2$s' ¤ËÂФ¹¤ë°ú¿ô %1$s ¤¬Û£Ëæ¤Ç¤¹" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "%s: Í׵ᤵ¤ì¤¿½èÍý¤ÎÁ´¤Æ¤ò¼Â¹Ô¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "new_mode: ¥â¡¼¥É\n" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "%s: ¤³¤Î¥Ç¥Ð¥¤¥¹¤Î¥µ¥¤¥º¾ðÊ󤬤¢¤ê¤Þ¤»¤ó" + +#: src/stty.c:1944 +#, fuzzy, c-format +msgid "invalid integer argument `%s'" +msgstr "¹ÔÈÖ¹æ¤ÎÁýʬ¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó: `%s'" + +#: src/su.c:289 +msgid "Password:" +msgstr "¥Ñ¥¹¥ï¡¼¥É:" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "getpass: /dev/tty ¤ò³«¤±¤Þ¤»¤ó" + +#: src/su.c:350 +#, fuzzy +msgid "cannot set groups" +msgstr "¥æ¡¼¥¶¤È¥°¥ë¡¼¥×¤ÎξÊý¤ò¾Êά¤¹¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó" + +#: src/su.c:354 +#, fuzzy +msgid "cannot set group id" +msgstr "¥æ¡¼¥¶¤È¥°¥ë¡¼¥×¤ÎξÊý¤ò¾Êά¤¹¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó" + +#: src/su.c:356 +#, fuzzy +msgid "cannot set user id" +msgstr "¥æ¡¼¥¶¤È¥°¥ë¡¼¥×¤ÎξÊý¤ò¾Êά¤¹¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó" + +#: src/su.c:437 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... [¥Õ¥¡¥¤¥ë]...\n" + +#: src/su.c:438 +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" +"¼Â¸ú¥æ¡¼¥¶ ID ¤ª¤è¤Ó¥°¥ë¡¼¥× ID ¤ò USER ¤Î¤â¤Î¤ËÊѹ¹.\n" +"\n" +" -, -l, --login ¥·¥§¥ë¤ò¥í¥°¥¤¥ó¥·¥§¥ë¤Ë\n" +" -c, --commmand=COMMAND ñ°ì¤Î COMMAND ¤ò -c ÉÕ¤­¤Î¥·¥§¥ë¤ËÅϤ¹\n" +" -f, --fast -f ¤ò¥·¥§¥ë¤ËÅϤ¹ (csh ¤Þ¤¿¤Ï tcsh ÍÑ)\n" +" -m, --preserve-environment ´Ä¶­ÊÑ¿ô¤òºÆÀßÄꤷ¤Ê¤¤\n" +" -p -m ¤ÈƱ¤¸\n" +" -s, --shell=SHELL /etc/shells ¤¬µö¤»¤Ð SHELL ¤ò¼Â¹Ô\n" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" +"\n" +"- ¤À¤±¤ò»ØÄꤷ¤¿¾ì¹ç¤Ï -l ¤ò»ØÄꤷ¤¿¤³¤È¤Ë¤Ê¤ê¤Þ¤¹. USER ¤¬»ØÄꤵ¤ì¤Ê¤±¤ì¤Ð, " +"root ¤¬»ØÄꤵ¤ì¤¿¤³¤È¤Ë¤Ê¤ê¤Þ¤¹.\n" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "%s ¤È¤¤¤¦¥æ¡¼¥¶¤Ï¸ºß¤·¤Þ¤»¤ó" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "¥Ñ¥¹¥ï¡¼¥É¤¬°ã¤¤¤Þ¤¹" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "À©¸ÂÉÕ¤­¥·¥§¥ë %s ¤ò»È¤¤¤Þ¤¹" + +#: src/su.c:580 +#, fuzzy, c-format +msgid "warning: cannot change directory to %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "Kayvan Aghaiepour ¤È David MacKenzie" + +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" +"³Æ FILE ¤Î¥Á¥§¥Ã¥¯¥µ¥à¤È¥Ö¥í¥Ã¥¯¿ô¤òɽ¼¨¤·¤Þ¤¹.\n" +"\n" +" -r -s ¥ª¥×¥·¥ç¥ó¤ò̵¸ú¤Ë¤·¤Æ BSD ·Á¼°¤Î¥Á¥§¥Ã¥¯¥µ¥à\n" +" ¥¢¥ë¥´¥ê¥º¥à¤òÍøÍѤ·, ¥Ö¥í¥Ã¥¯¤Îñ°Ì¤ò 1K ¥Ð¥¤¥È¤Ë\n" +" -s, --sysv System V ·Á¼°¤Î¥Á¥§¥Ã¥¯¥µ¥à¥¢¥ë¥´¥ê¥º¥à¤òÍøÍѤ·, \n" +" ¥Ö¥í¥Ã¥¯¤Îñ°Ì¤ò 512 ¥Ð¥¤¥È¤Ë\n" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" +"¶¯À©Åª¤Ë¥Ç¥£¥¹¥¯¤òÊѹ¹¤µ¤ì¤¿¥Ö¥í¥Ã¥¯¤ËÊѹ¹¤·¡¢¥¹¡¼¥Ñ¡¼¥Ö¥í¥Ã¥¯¤ò¹¹¿·¤¹¤ë¡£\n" +"\n" + +#: src/sync.c:70 src/tty.c:112 +#, fuzzy +msgid "ignoring all arguments" +msgstr "°ú¿ô¤¬Â¿¤¹¤®¤Þ¤¹" + +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr " --help ¤³¤Î»È¤¤Êý¤òɽ¼¨¤·¤Æ½ªÎ»\n" + +#: src/sys2.h:494 +msgid " --version output version information and exit\n" +msgstr " --version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤·¤Æ½ªÎ»\n" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "Jay Lepreau ¤È David MacKenzie" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"¥Õ¥¡¥¤¥ëËè¤Ë¹Ô¤òµÕ½ç¤Ë¤·¤ÆÉ¸½à½ÐÎϤ˽ñ¤­¹þ¤ß¤Þ¤¹\n" +"FILE ¤¬»ØÄꤵ¤ì¤Ê¤¤¤« FILE ¤È¤·¤Æ - ¤¬»ØÄꤵ¤ì¤¿¾ì¹ç, ɸ½àÆþÎϤòÆÉ¤ß¹þ¤ß¤Þ" +"¤¹\n" +"\n" + +#: src/tac.c:139 +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" +" -b, --before ¶èÀÚ¤êʸ»úÎó¤ò¥ì¥³¡¼¥É¤ÎÁ°¤Ç¤Ï¤Ê¤¯¸å¤í¤Ë\n" +" -r, --regex ¶èÀÚ¤êʸ»úÎó¤òÀµµ¬É½¸½¤È¤·¤Æ²ò¼á\n" +" -s, --separator=STRING ²þ¹Ôʸ»ú¤ÎÂå¤ï¤ê¤Ë STRING ¤ò¶èÀÚ¤êʸ»úÎó¤Ë\n" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "ɸ½àÆþÎÏ: ÆÉ¤ß¹þ¤ß¥¨¥é¡¼" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "¶èÀÚ¤êʸ»ú¤¬¶õ¤Ç¤¢¤Ã¤Æ¤Ï¤Ê¤ê¤Þ¤»¤ó" + +#: src/tail.c:49 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie ¤ª¤è¤Ó Jim Meyering" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"³Æ¡¹¤Î FILE ¤ÎºÇ¸å¤Î %d ¹Ô¤òɸ½à½ÐÎϤ˽ñ¤­½Ð¤·¤Þ¤¹.\n" +"Ê£¿ô¤Î FILE ¤¬»ØÄꤵ¤ì¤¿¾ì¹ç¤Ï, ¥Õ¥¡¥¤¥ë̾¤¬¥Ø¥Ã¥À¾ðÊó¤È¤·¤Æ½ÐÎϤµ¤ì¤Þ¤¹.\n" +"FILE ¤¬»ØÄꤵ¤ì¤Ê¤¤¤«, FILE ¤¬ - ¤Î¾ì¹ç¤Ï, ɸ½àÆþÎϤ¬ÆÉ¤Þ¤ì¤Þ¤¹.\n" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" +" --retry ¼Â¹Ô»þ¤Ë¥¢¥¯¥»¥¹¤Ç¤­¤Ê¤¤, ¤Þ¤¿¤Ï¼Â¹Ô¸å¤Ë¥¢¥¯¥»¥¹\n" +" ¤Ç¤­¤Ê¤¯¤Ê¤Ã¤¿¤È¤·¤Æ¤â¥Õ¥¡¥¤¥ë¤ò³«¤­Â³¤±¤è¤¦¤È¤¹" +"¤ë\n" +" -f ¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤¿¤È¤­¤Î¤ßÍ­¸ú\n" +" -c, --bytes=N ºÇ¸å¤Î N ¥Ð¥¤¥È¤ò½ÐÎÏ\n" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" +" -f, --follow[={name|descriptor}]\n" +" ¥Õ¥¡¥¤¥ë¤¬Â礭¤¯¤Ê¤ë¤¿¤Ó¤ËÄɲ䵤줿¥Ç¡¼¥¿¤ò½ÐÎÏ\n" +" -f, --follow ¤ª¤è¤Ó --follow=descriptor ¤ÏƱ¤¸\n" +" -F --follow=name --retry ¤ÈƱ¤¸\n" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" +" -n, --lines=N ºÇ¸å¤Î %d ¹Ô¤Ç¤Ï¤Ê¤¯ N ¹Ô¤ò½ÐÎÏ\n" +" --max-unchanged-stats=N\n" +" --follow=name ¤È¤È¤â¤Ë»È¤¤, ÆþÎÏ¥Õ¥¡¥¤¥ë¤¬ºï½ü\n" +" ¤µ¤ì¤Æ¤¤¤¿¤ê̾Á°¤¬Êѹ¹¤µ¤ì¤Æ¤¤¤Ê¤¤¤«¤É¤¦¤«¤Î³Îǧ" +"¤ò\n" +" N (ɸ½à %d) ²ó·«¤êÊÖ¤·¤¿¸å¤ËÂ礭¤µ¤¬ÊѤï¤Ã¤Æ¤¤¤Ê" +"¤¤\n" +" ¥Õ¥¡¥¤¥ë¤òºÆÅÙ³«¤¯ (¤³¤ì¤Ï rotate ¤µ¤ì¤¿¥í¥°\n" +" ¥Õ¥¡¥¤¥ë¤Ê¤É¤ËÍ­¸ú¤Ç¤¢¤ë)\n" + +#: src/tail.c:271 +#, fuzzy +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" +" --pid=PID -f ¤È¤È¤â¤Ë»È¤¤, ¥×¥í¥»¥¹ ID ¤¬ PID ¤Î¥×¥í¥»¥¹¤¬\n" +" ½ªÎ»¤·¤¿¸å¤Ë½ªÎ»\n" +" -q, --quiet, --silent ¥Õ¥¡¥¤¥ë̾¤ò¼¨¤¹¥Ø¥Ã¥À¤ò½ÐÎϤ·¤Ê¤¤\n" +" -s, --sleep-interval=S -f ¤È¤È¤â¤Ë»È¤¤, ·«¤êÊÖ¤·½èÍý¤Î´Ö³Ö¤òÌó S (ɸ½à " +"1)\n" +" ÉäËÀßÄê\n" +" -v, --verbose ¾ï¤Ë¥Õ¥¡¥¤¥ë̾¤ò¼¨¤¹¥Ø¥Ã¥À¤ò½ÐÎÏ\n" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" +"\n" +"¤â¤· N (¥Ð¥¤¥È¿ô¤Þ¤¿¤Ï¹Ô¿ô) ¤ÎºÇ½é¤Îʸ»ú¤¬ `+' ¤Ê¤é¤Ð, ³Æ¥Õ¥¡¥¤¥ë¤ÎºÇ½é¤«¤é\n" +"N ÈÖÌܤιàÌܤ«¤éɽ¼¨¤·, ¤½¤¦¤Ç¤Ê¤±¤ì¤Ð, ¥Õ¥¡¥¤¥ë¤ÎºÇ¸å¤Î N ¹àÌܤòɽ¼¨¤·¤Þ" +"¤¹.\n" +"N ¤Ë¤ÏÊ£¿ô¤ÎÀÜÈø¼­ (ñ°Ì) ¤¬»ØÄê²Ä: 512 ¤Ç b, 1024 ¤Ç k, 1048576 (1¥á¥¬) ¤Ç " +"m.\n" +"\n" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" +"--follow (-f) ¤ò»ØÄꤹ¤ë¤È, tail ¤Ïɸ½à¤Ç¥Õ¥¡¥¤¥ëµ­½Ò»Ò¤òÄÉÈø¤·¤Þ¤¹. ¤Ä¤Þ¤ê\n" +"tail ¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤Î̾Á°¤¬Êѹ¹¤µ¤ì¤Æ¤â, tail ¤Ï¤½¤Î½ªÃ¼¤òÄɤ¤¤«¤±Â³¤±¤Þ¤¹. " + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" +"¤³¤Îɸ½à¤Îưºî¤Ï, ¥Õ¥¡¥¤¥ëµ­½Ò»Ò¤Ç¤Ï¤Ê¤¯, ¤½¤Î¥Õ¥¡¥¤¥ë¤Î¼ÂÂÖ¤òÄɤ¤¤«¤±¤¿¤¤¾ì" +"¹ç\n" +"¤Ë¤Ï¹¥¤Þ¤·¤¯¤¢¤ê¤Þ¤»¤ó (Î㤨¤Ð¥í¥°¤Î rotate ¤Ê¤É). ¤³¤Î¾ì¹ç¤Ï --follow=name " +"¤ò\n" +"¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤. ¤³¤ì¤Ë¤è¤ê tail ¥³¥Þ¥ó¥É¤Ï, ²¿¤«Â¾¤Î¥×¥í¥°¥é¥à¤Ë¤è¤Ã¤Æ\n" +"¥Õ¥¡¥¤¥ë¤¬ºï½ü¤µ¤ì¤¿¤êºÆºîÀ®¤µ¤ì¤¿¤«¤É¤¦¤«¤òÄ´¤Ù¤ÆÄê´üŪ¤Ë¥Õ¥¡¥¤¥ë¤ò³«¤­Ä¾" +"¤¹\n" +"¤³¤È¤Ç, ¤½¤Î̾Á°¤Î¥Õ¥¡¥¤¥ë¤òÄɤ¤¤«¤±¤ë¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹.\n" + +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "%s ¤òÊĤ¸¤Æ¤¤¤Þ¤¹ (fd=%d)" + +#: src/tail.c:391 +#, fuzzy, c-format +msgid "%s: cannot seek to offset %s" +msgstr "%s: ¥ª¥Õ¥»¥Ã¥È %s%s ¤ò seek ¤Ç¤­¤Þ¤»¤ó" + +#: src/tail.c:395 +#, fuzzy, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "%s: ÁêÂÐ¥ª¥Õ¥»¥Ã¥È %s%s ¤ò seek ¤Ç¤­¤Þ¤»¤ó" + +#: src/tail.c:400 +#, fuzzy, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "%s: ½ªÎ»ÅÀ¤«¤é¤ÎÁêÂÐ¥ª¥Õ¥»¥Ã¥È %s%s ¤ò seek ¤Ç¤­¤Þ¤»¤ó" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "`%s' ¤Ï¥¢¥¯¥»¥¹ÉÔǽ¤Ë¤Ê¤ê¤Þ¤·¤¿" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "" +"`%s' ¤ÏËöÈø¤òÊ᪤Ǥ­¤Ê¤¤¥Õ¥¡¥¤¥ë¤ÇÃÖ¤­´¹¤¨¤é¤ì¤¿¤Î¤Ç, ¤³¤Î¥Õ¥¡¥¤¥ë̾¤Ë¤Ä¤¤¤Æ" +"¤Ï½èÍý¤ò½ªÎ»" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "`%s' ¤Ï¥¢¥¯¥»¥¹²Äǽ¤Ë¤Ê¤ê¤Þ¤·¤¿" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "`%s' ¤¬¸½¤ì¤Þ¤·¤¿. ¿·¤·¤¤¥Õ¥¡¥¤¥ë¤Î¥Õ¥¡¥¤¥ëËöÈø¤òÊ᪤·¤Þ¤¹" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "`%s' ¤ÏÃÖ¤­´¹¤¨¤é¤ì¤Þ¤·¤¿. ¿·¤·¤¤¥Õ¥¡¥¤¥ë¤Î¥Õ¥¡¥¤¥ëËöÈø¤òÊ᪤·¤Þ¤¹" + +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "%s: ¥Õ¥¡¥¤¥ë¤¬ÀÚ¤êµÍ¤á¤é¤ì¤Þ¤·¤¿" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "²¿¤â¥Õ¥¡¥¤¥ë¤Ï»Ä¤Ã¤Æ¤¤¤Þ¤»¤ó" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "" +"%s: ¤³¤Î¥¿¥¤¥×¤Î¥Õ¥¡¥¤¥ë¤Î½ªÃ¼¤òÊ᪤Ǥ­¤Ê¤¤¤Î¤Ç, ¤³¤Î¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤Æ¤Ï½èÍý" +"¤ò½ªÎ»¤·¤Þ¤¹" + +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "%c: µì¼°¥ª¥×¥·¥ç¥óÃæ¤ÎÀÜÈøÊ¸»ú¤¬Ìµ¸ú¤Ç¤¹" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"°ú¿ô¤¬Â¿¤¹¤®¤Þ¤¹. tail ¤Îµì¼°¥ª¥×¥·¥ç¥ó (%s) ¤ò»È¤¦¾ì¹ç¤Ï\n" +"»ØÄê¤Ç¤­¤ë¥Õ¥¡¥¤¥ë¤Ï 1¤Ä¤À¤±¤Ë¤Ê¤ê¤Þ¤¹. Âå¤ï¤ê¤ËÅù²Á¤Î -n ¤Þ¤¿¤Ï -c\n" +"¥ª¥×¥·¥ç¥ó¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤." + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"·Ù¹ð: tail ¤Îµì¼°¥ª¥×¥·¥ç¥ó (%s) ¤Ç¤Ï 2¤Ä°Ê¾å¤Î¥Õ¥¡¥¤¥ë¤ò»ØÄꤹ¤ë¤³¤È¤Ï\n" +"²ÄÈÂÀ­¤¬¤è¤¯¤¢¤ê¤Þ¤»¤ó. Âå¤ï¤ê¤ËÅù²Á¤Î -n ¤Þ¤¿¤Ï -c ¥ª¥×¥·¥ç¥ó¤ò\n" +"»È¤Ã¤Æ¤¯¤À¤µ¤¤." + +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "`%s' ¥ª¥×¥·¥ç¥ó¤Ï²áµî¤Î¤â¤Î¤Ç¤¹; `%s-%c %.*s' ¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "%s ¤Ï¤³¤Î¥·¥¹¥Æ¥à¤ÎºÇÂç¥Õ¥¡¥¤¥ë¥µ¥¤¥º¤è¤êÂ礭¤¤¤Ç¤¹" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "%s: ̵ÊѲ½¤Î¾õÂ֤κÇÂç¿ô¤¬Ìµ¸ú¤Ç¤¹" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "%s: ¥µ¥¤¥º¤Î·Ñ³ÊѲ½¤ÎºÇÂç¿ô¤¬Ìµ¸ú¤Ç¤¹" + +#: src/tail.c:1534 +#, c-format +msgid "%s: invalid PID" +msgstr "%s: ̵¸ú¤Ê¥×¥í¥»¥¹ÈÖ¹æ¤Ç¤¹" + +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: ̵¸ú¤ÊÉÿô¤Ç¤¹" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "·Ù¹ð: --retry ¤Ï¥Õ¥¡¥¤¥ë̾¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¤È¤­¤À¤±°ÕÌ£¤¬¤¢¤ê¤Þ¤¹" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "" +"·Ù¹ð: PID ¤Ï̵»ë¤µ¤ì¤Þ¤¹. --pid=PID ¤Ï --follow (-f) ¤ò»ØÄꤷ¤Æ¤¤¤ë¾ì¹ç¤Î¤ß°Õ" +"Ì£¤¬¤¢¤ê¤Þ¤¹" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "·Ù¹ð: --pid=PID ¤Ï¤³¤Î¥·¥¹¥Æ¥à¤Ç¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" + +#: src/tee.c:33 +#, fuzzy +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "Richard Stallman ¤È David MacKenzie" + +#: src/tee.c:64 +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" +"ɸ½àÆþÎϤò³Æ¡¹¤Î¥Õ¥¡¥¤¥ë¤Ë¥³¥Ô¡¼¤·, ɸ½à½ÐÎϤˤâ½ÐÎÏ.\n" +"\n" +" -a, --append »ØÄꤵ¤ì¤¿¥Õ¥¡¥¤¥ë¤ËÄɲä·, ¾å½ñ¤­¤·¤Ê¤¤\n" +" -i, --ignore-interrupts ³ä¹þ¤ß¥·¥°¥Ê¥ë¤ò̵»ë\n" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "°ú¿ô¤¬É¬ÍפǤ¹\n" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "%s ¤Ë¤Ï, À°¿ôɽ¸½¤¬É¬ÍפǤ¹\n" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "')' ¤¬¤¢¤ê¤Þ¤»¤ó\n" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "')' ¤¬¤¢¤ë¤Ù¤­¤È¤³¤í¤Ë, %s ¤¬¤¢¤ê¤Þ¤¹\n" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "%s: ¥æ¡¼¥Ê¥ê±é»»»Ò¤¬¤¢¤ë¤Ï¤º¤Ç¤¹\n" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "%s: ¥Ð¥¤¥Ê¥ê±é»»»Ò¤¬¤¢¤ë¤Ï¤º¤Ç¤¹\n" + +#: src/test.c:424 +msgid "before -lt" +msgstr "-lt ¤ÎÁ°" + +#: src/test.c:432 +msgid "after -lt" +msgstr "-lt ¤Î¸å" + +#: src/test.c:446 +msgid "before -le" +msgstr "-le ¤ÎÁ°" + +#: src/test.c:453 +msgid "after -le" +msgstr "-le ¤Î¸å" + +#: src/test.c:469 +msgid "before -gt" +msgstr "-gt ¤ÎÁ°" + +#: src/test.c:476 +msgid "after -gt" +msgstr "-gt ¤Î¸å" + +#: src/test.c:490 +msgid "before -ge" +msgstr "-ge ¤ÎÁ°" + +#: src/test.c:497 +msgid "after -ge" +msgstr "-ge ¤Î¸å" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "-nt ¤Ï -l ¤ò¼õ¤±ÉÕ¤±¤Þ¤»¤ó\n" + +#: src/test.c:526 +msgid "before -ne" +msgstr "-ne ¤ÎÁ°" + +#: src/test.c:533 +msgid "after -ne" +msgstr "-ne ¤Î¸å" + +#: src/test.c:549 +msgid "before -eq" +msgstr "-eq ¤ÎÁ°" + +#: src/test.c:556 +msgid "after -eq" +msgstr "-eq ¤Î¸å" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "-ef ¤Ï -l ¤ò¼õ¤±ÉÕ¤±¤Þ¤»¤ó\n" + +#: src/test.c:586 +msgid "-ot does not accept -l\n" +msgstr "-ot ¤Ï -l ¤ò¼õ¤±ÉÕ¤±¤Þ¤»¤ó\n" + +#: src/test.c:593 +#, fuzzy +msgid "unknown binary operator" +msgstr "̤ÃΤΥ·¥¹¥Æ¥à¥¨¥é¡¼" + +#: src/test.c:781 +msgid "after -t" +msgstr "-t ¤Î¸å" + +#: src/test.c:979 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"»ÈÍÑË¡: %s [¥Õ¥¡¥¤¥ë]...\n" +"¤Þ¤¿¤Ï: %s [¥ª¥×¥·¥ç¥ó]\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" +"¼°¤Ë¤è¤Ã¤Æ·è¤á¤é¤ì¤¿¾õÂ֤ǽªÎ».\n" +"\n" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" +"\n" +"¼°¤Ï¿¿¤«µ¶¤Ç¤¢¤ê, ½ªÎ»¾õÂÖ¤òÀßÄê. ¼°¤Ï°Ê²¼¤Î¤¦¤Á¤Î 1¤Ä:\n" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" +"\n" +" ( ¼° ) ¼° ¤Ï¿¿\n" +" ! ¼° ¼° ¤Ïµ¶\n" +" ¼°1 -a ¼°2 ¼°1 ¤È ¼°2 ¤ÎξÊý¤¬¿¿\n" +" ¼°1 -o ¼°2 ¼°1 ¤Þ¤¿¤Ï ¼°2 ¤Î¤É¤Á¤é¤«¤¬¿¿\n" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" +"\n" +" [-n] STRING STRING ¤ÎŤµ¤¬¥¼¥í¤Ç¤Ê¤¤\n" +" -z STRING STRING ¤ÎŤµ¤¬¥¼¥í\n" +" STRING1 = STRING2 ʸ»úÎó¤¬Åù¤·¤¤\n" +" STRING1 != STRING2 ʸ»úÎó¤¬Åù¤·¤¯¤Ê¤¤\n" + +#: src/test.c:1009 +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 ¤¬ INTEGER2 ¤ËÅù¤·¤¤\n" +" INTEGER1 -ge INTEGER2 INTEGER1 ¤¬ INTEGER2 °Ê¾å\n" +" INTEGER1 -gt INTEGER2 INTEGER1 ¤¬ INTEGER2 ¤è¤êÂ礭¤¤\n" +" INTEGER1 -le INTEGER2 INTEGER1 ¤¬ INTEGER2 °Ê²¼\n" +" INTEGER1 -lt INTEGER2 INTEGER1 ¤¬ INTEGER2 ̤Ëþ\n" +" INTEGER1 -ne INTEGER2 INTEGER1 ¤¬ INTEGER2 ¤ËÅù¤·¤¯¤Ê¤¤\n" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" +"\n" +" FILE1 -ef FILE2 FILE1 ¤È FILE2 ¤¬Æ±¤¸¥Ç¥Ð¥¤¥¹¤Ç inode ¤âÅù¤·¤¤\n" +" FILE1 -nt FILE2 FILE1 ¤¬ FILE2 ¤è¤ê (¹¹¿·¤µ¤ì¤¿»þ¹ï¤¬) ¿·¤·¤¤\n" +" FILE1 -ot FILE2 FILE1 ¤¬ FILE2 ¤è¤ê¸Å¤¤\n" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" +"\n" +" -b FILE FILE ¤¬Â¸ºß¤·, ³î¤Ä¥Ö¥í¥Ã¥¯¥Ç¥Ð¥¤¥¹¤Ç¤¢¤ë\n" +" -c FILE FILE ¤¬Â¸ºß¤·, ³î¤Ä¥­¥ã¥é¥¯¥¿¥Ç¥Ð¥¤¥¹¤Ç¤¢¤ë\n" +" -d FILE FILE ¤¬Â¸ºß¤·, ³î¤Ä¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤¢¤ë\n" +" -e FILE FILE ¤¬Â¸ºß¤¹¤ë\n" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" +" -f FILE FILE ¤¬Â¸ºß¤·, ³î¤ÄÄ̾ï¤Î¥Õ¥¡¥¤¥ë¤Ç¤¢¤ë\n" +" -g FILE FILE ¤¬Â¸ºß¤·, ³î¤Ä set-group-ID ¤µ¤ì¤Æ¤¤¤ë\n" +" -h FILE FILE ¤¬Â¸ºß¤·, ³î¤Ä¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤Ç¤¢¤ë (-L ¤ÈƱ¤¸)\n" +" -G FILE FILE ¤¬Â¸ºß¤·, ³î¤Ä¼Â¸ú¥°¥ë¡¼¥× ID ¤Ë°¤·¤Æ¤¤¤ë\n" +" -k FILE FILE ¤¬Â¸ºß¤·, ³î¤Ä sticky ¥Ó¥Ã¥È¤¬ÀßÄꤵ¤ì¤Æ¤¤¤ë\n" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" +" -L FILE FILE ¤¬Â¸ºß¤·, ³î¤Ä¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤Ç¤¢¤ë (-h ¤ÈƱ¤¸)\n" +" -O FILE FILE ¤¬Â¸ºß¤·, ³î¤Ä¼Â¸ú¥æ¡¼¥¶ ID ¤Ë½êÍ­¤µ¤ì¤Æ¤¤¤ë\n" +" -p FILE FILE ¤¬Â¸ºß¤·, ³î¤Ä̾Á°ÉÕ¤­¥Ñ¥¤¥×¤Ç¤¢¤ë\n" +" -r FILE FILE ¤¬Â¸ºß¤·, ³î¤ÄÆÉ¤ß¹þ¤ß²Äǽ¤Ç¤¢¤ë\n" +" -s FILE FILE ¤¬Â¸ºß¤·, ³î¤Ä 0 ¤è¤êÂ礭¤¤¥µ¥¤¥º¤Ç¤¢¤ë\n" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" +" -S FILE FILE ¤¬Â¸ºß¤·, ³î¤Ä¥½¥±¥Ã¥È¤Ç¤¢¤ë\n" +" -t [FD] ¥Õ¥¡¥¤¥ëµ­½Ò»Ò FD (ɸ½à¤Çɸ½à½ÐÎÏ) ¤¬Ã¼Ëö¾å¤Ç³«¤«¤ì¤Æ¤¤¤ë\n" +" -u FILE FILE ¤¬Â¸ºß¤·, ³î¤Ä set-user-ID ¥Ó¥Ã¥È¤¬ÀßÄꤵ¤ì¤Æ¤¤¤ë\n" +" -w FILE FILE ¤¬Â¸ºß¤·, ³î¤Ä½ñ¤­¹þ¤ß²Äǽ¤Ç¤¢¤ë\n" +" -x FILE FILE ¤¬Â¸ºß¤·, ³î¤Ä¼Â¹Ô²Äǽ¤Ç¤¢¤ë\n" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" +"\n" +"¥·¥§¥ë¤ËÂФ·¤Æ³ç¸Ì¤Ï¥Ð¥Ã¥¯¥¹¥é¥Ã¥·¥å¤Ê¤É¤Ç¥¨¥¹¥±¡¼¥×¤·¤Ê¤¯¤Æ¤Ï¤¤¤±¤Ê¤¤\n" +"¤È¤¤¤¦¤³¤È¤ËÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤.\n" +"INTEGER ¤Ïʸ»úÎó STRING ¤ÎŤµ¤ò¼¨¤¹ -l STRING ¤Ç¤¢¤ë¾ì¹ç¤â¤¢¤ê¤Þ¤¹.\n" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "FIXME: ksb ¤È mjb" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "`]'¤¬Â­¤ê¤Þ¤»¤ó\n" + +#: src/test.c:1125 +#, fuzzy +msgid "too many arguments\n" +msgstr "°ú¿ô¤¬Â¿¤¹¤®¤Þ¤¹" + +#: src/touch.c:39 +#, fuzzy +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "Paul Rubin ¤È David MacKenzie" + +#: src/touch.c:164 src/touch.c:179 +#, fuzzy, c-format +msgid "creating %s" +msgstr "¥Õ¥¡¥¤¥ë `%s' ¤òºîÀ®\n" + +#: src/touch.c:222 +#, fuzzy, c-format +msgid "cannot touch %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Ë°Üư¤Ç¤­¤Þ¤»¤ó" + +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "%s ¤Î¥¿¥¤¥à¥¹¥¿¥ó¥×¤òÀßÄêÃæ" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" +"³Æ FILE ¤Î¥¢¥¯¥»¥¹¡¦½¤Àµ»þ¹ï¤ò¸½ºß»þ¹ï¤Ë¹¹¿·¤¹¤ë¡£\n" +"\n" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" +" -a ¥¢¥¯¥»¥¹»þ¹ï¤Î¤ßÊѹ¹¤¹¤ë\n" +" -c, --no-create ¥Õ¥¡¥¤¥ë¤ò¿·µ¬ºîÀ®¤·¤Ê¤¤\n" +" -d, --date=STRING STRING ¤ò²ò¼á¤·¡¢¸½ºß»þ¹ï¤ÎÂå¤ê¤Ë»È¤¦\n" +" -f (̵»ë¤µ¤ì¤ë)\n" +" -m ½¤Àµ»þ¹ï¤Î¤ßÊѹ¹¤¹¤ë\n" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" +" -r, --reference=FILE ¸½ºß»þ¹ï¤ÎÂå¤ê¤Ë¤³¤Î¥Õ¥¡¥¤¥ë¤Î»þ¹ï¤ò»È¤¦\n" +" -t STAMP ¸½ºß»þ¹ï¤ÎÂå¤ê¤Ë [[CC]YY]MMDDhhmm[.ss] ¤ò»È¤¦\n" +" --time=WORD WORD ¤ËÍ¿¤¨¤é¤ì¤¿»þ¹ï¤òÀßÄꤹ¤ë:\n" +" access atime ¤ò»È¤¦(-a ¤ÈƱ¤¸)\n" +" modify mtime ¤ò»È¤¦(-m ¤ÈƱ¤¸)\n" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" + +#: src/touch.c:311 src/touch.c:331 +#, fuzzy, c-format +msgid "invalid date format %s" +msgstr "`%2$s' ¤ËÂФ¹¤ë°ú¿ô %1$s ¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹" + +#: src/touch.c:355 +#, fuzzy +msgid "cannot specify times from more than one source" +msgstr "Ê£¿ô¤Îʬ³äÊýË¡¤Ï»ØÄê¤Ç¤­¤Þ¤»¤ó" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "" + +#: src/touch.c:399 +#, fuzzy +msgid "file arguments missing" +msgstr "°ú¿ô¤¬Â­¤ê¤Þ¤»¤ó" + +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... SET1 [SET2]\n" + +#: src/tr.c:331 +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" +"ɸ½àÆþÎϤ«¤éÆÉ¤ß¹þ¤ó¤Àʸ»ú¤òÃÖ´¹, °µ½Ì, ºï½ü¤·, ɸ½à½ÐÎϤ˽ñ¤­¹þ¤ß¤Þ¤¹.\n" +"\n" +" -c, --complement ºÇ½é¤Ë SET1 ¤òÊ佸¹ç¤ËÃÖ¤­´¹¤¨\n" +" -d, --delete SET1 Ãæ¤Îʸ»ú¤òºï½ü¤·, ÃÖ´¹¤Ï¹Ô¤ï¤Ê¤¤\n" +" -s, --squeeze-repeats ·«¤êÊÖ¤µ¤ì¤ëʸ»ú¤ÎÎó¤ò 1 ʸ»ú¤Ë°µ½Ì\n" +" -t, --truncate-set1 SET1 ¤ÎŤµ¤ò SET2 ¤ÎŤµ¤ËÀÚ¤ê¼Î¤Æ\n" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" +"\n" +"SET ¤Ïʸ»úÎó¤Ë¤è¤Ã¤Æ»ØÄꤷ¤Þ¤¹. ¿¤¯¤Î¾ì¹ç¤½¤Îʸ»ú¼«¿È¤òɽ¸½¤·¤Þ¤¹.\n" +"²ò¼á¤Î¤µ¤ìÊý¤Ï°Ê²¼¤ÎÄ̤ê:\n" +"\n" +" \\NNN ʸ»ú¤Î 8 ¿Ê¿ôɽ¸½(1 ¤«¤é 3 ¸Ä¤Î 8 ¿Ê¿ôÃÍ)\n" +" \\\\ ¥Ð¥Ã¥¯¥¹¥é¥Ã¥·¥å\n" +" \\a ¥Ù¥ë\n" +" \\b ¥Ð¥Ã¥¯¥¹¥Ú¡¼¥¹\n" +" \\f ¥Õ¥©¡¼¥à¥Õ¥£¡¼¥É\n" +" \\n ²þ¹Ô\n" +" \\r Éüµ¢\n" +" \\t ¿åÊ¿¥¿¥Ö\n" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" +" \\v ¿âľ¥¿¥Ö\n" +" CHAR1-CHAR2 CHAR1 ¤«¤é CHAR2 ¤Þ¤Ç¤ò¾º½ç¤ËŸ³«¤·¤¿Ê¸»úÎó\n" +" [CHAR1-CHAR2] SET1 ¤È SET2 ¤ÎξÊý¤Ç»ØÄꤷ¤¿¾ì¹ç¤Ë¤Ï CHAR1-CHAR2 ¤ÈƱ¤¸\n" +" [CHAR*] SET2 ¤È¤·¤Æ, CHAR ¤ò SET1 ¤ÎŤµÊ¬Å¸³«¤·¤¿Ê¸»úÎó\n" +" [CHAR*REPEAT] CHAR ¤ò REPEAT ¸ÄŸ³«¤·¤¿Ê¸»úÎó, REPEAT ¤ÎÃͤò 0 ¤«¤é\n" +" »Ï¤á¤¿¾ì¹ç¤Ë¤Ï, 8 ¿Ê¿ô¤È¤·¤Æ²ò¼á\n" +" [:alnum:] Á´¤Æ¤Î¥¢¥ë¥Õ¥¡¥Ù¥Ã¥È¤È¿ô»ú\n" +" [:alpha:] Á´¤Æ¤Î¥¢¥ë¥Õ¥¡¥Ù¥Ã¥È\n" +" [:blank:] Á´¤Æ¤Î¿åÊ¿Êý¸þ¶õÇòʸ»ú\n" +" [:cntrl:] Á´¤Æ¤ÎÀ©¸æÊ¸»ú\n" +" [:digit:] Á´¤Æ¤Î¿ô»ú\n" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" +" [:graph:] Á´¤Æ¤Îɽ¼¨²Äǽʸ»ú, ¶õÇò¤Ï´Þ¤Þ¤Ê¤¤\n" +" [:lower:] Á´¤Æ¤Î¾®Ê¸»ú¥¢¥ë¥Õ¥¡¥Ù¥Ã¥È\n" +" [:print:] Á´¤Æ¤Îɽ¼¨²Äǽʸ»ú, ¶õÇò¤â´Þ¤à\n" +" [:punct:] Á´¤Æ¤Î¶çÆÉÅÀ\n" +" [:space:] Á´¤Æ¤Î¿åÊ¿µÚ¤Ó¿âľ¥¿¥Öʸ»ú\n" +" [:upper:] Á´¤Æ¤ÎÂçʸ»ú¥¢¥ë¥Õ¥¡¥Ù¥Ã¥È\n" +" [:xdigit:] Á´¤Æ¤Î 16 ¿Ê¿ô¿ôÃÍ\n" +" [=CHAR=] Á´¤Æ¤Î CHAR ¤ÈÅù²Á¤Êʸ»ú. Åù²Á¥¯¥é¥¹\n" + +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" +"\n" +"ÃÖ´¹¤Ï -d ¥ª¥×¥·¥ç¥ó¤¬Í¿¤¨¤é¤ì¤º, ¤«¤Ä SET1 ¤È SET2 ¤Î»ØÄ꤬¤¢¤ë¤È¤­¤Ë\n" +"¹Ô¤Ê¤ï¤ì¤Þ¤¹. -t ¥ª¥×¥·¥ç¥ó¤ÏÃÖ´¹¤Î¼Â¹Ô»þ¤Ë¤Î¤ßÍøÍѤǤ­¤Þ¤¹. SET2 ¤Ï SET1 " +"¤Î\n" +"ŤµÊ¬¤òËþ¤¿¤¹¤¿¤áɬÍפ˱þ¤¸¤Æ¤½¤ÎºÇ¸å¤Îʸ»ú¤ÇŸ³«¤·¤Þ¤¹. " + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" +"SET2 ¤Î;ʬ¤Êʸ»ú¤Ï\n" +"̵»ë¤µ¤ì¤Þ¤¹. [:lower:] µÚ¤Ó [:upper:] ¤Î¾ì¹ç¤Î¤ß¾º½ç¤ÇŸ³«¤¹¤ë¤³¤È¤¬\n" +"Êݾڤµ¤ì¤Þ¤¹. ¤³¤ì¤é¤Î¥ª¥×¥·¥ç¥ó¤ÏÂçʸ»ú¤È¾®Ê¸»ú¤È¤ÎÃÖ´¹¤Î»ØÄê¤ò¹Ô¤Ê¤¦ºÝ¤Î\n" +"ÁȤ߹ç¤ï¤»¤È¤·¤ÆÍøÍѤǤ­¤Þ¤¹. " + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" +"-s ¥ª¥×¥·¥ç¥ó¤Ï, ÃÖ´¹¤Ç¤âºï½ü¤Ç¤â¤Ê¤¤¾ì¹ç\n" +"SET1 ¤ÎÃͤòÍøÍѤ·¤Þ¤¹. -- ÃÖ´¹¤äºï½ü¤Ç¤¢¤Ã¤¿¾ì¹ç¤Ë¤Ï, ÃÖ´¹¤äºï½ü¤ò¹Ô¤Ê¤Ã¤¿" +"¸å\n" +"SET2 ¤òÍøÍѤ·¤¿Ê¸»úÎó¤Î°µ½Ì¤ò¹Ô¤Ê¤¤¤Þ¤¹.\n" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" +"·Ù¹ð: Û£Ëæ¤Ê 8 ¿Ê¿ô¥¨¥¹¥±¡¼¥× \\%c%c%c ¤Ç¤¹\n" +"\t2 ¥Ð¥¤¥È¤ÎÎó \\0%c%c, `%c' ¤È¤·¤Æ²ò¼á¤µ¤ì¤Þ¤·¤¿" + +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "ʸ»úÎó¤Î½ªÃ¼¤Ç¤Î¥Ð¥Ã¥¯¥¹¥é¥Ã¥·¥å¥¨¥¹¥±¡¼¥×¤¬Ìµ¸ú" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "̵¸ú¤Ê¥Ð¥Ã¥¯¥¹¥é¥Ã¥·¥å¥¨¥¹¥±¡¼¥× `\\%c'" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "ÈϰϻØÄê `%s-%s' ¤ÎüÅÀ¤¬µÕ½ç¤Ë»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "[c*n] ¤Î¹½À®Æâ¤Î `%s' ¤Ï̵¸ú¤Ê·«¤êÊÖ¤·²ó¿ô¤Ç¤¹" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "ʸ»ú¥¯¥é¥¹Ì¾¤¬¤¢¤ê¤Þ¤»¤ó `[::]'" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "Åù²Á¥¯¥é¥¹¤Îʸ»ú¤¬¤¢¤ê¤Þ¤»¤ó `[==]'" + +#: src/tr.c:1025 +#, c-format +msgid "invalid character class `%s'" +msgstr "`%s' ¤Ï̵¸ú¤Êʸ»ú¼ïÎà¤Ç¤¹" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "%s: Åù²Á¥¯¥é¥¹±é»»»Ò¤Ï°ì¤Ä¤Îʸ»ú¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "[c*] ·«¤êÊÖ¤·²ó¿ô»ØÄê¤Ï, 1 ¤ÄÌܤÎʸ»úÎóÃæ¤Ç¤ÏÍøÍѤǤ­¤Þ¤»¤ó" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "[c*] ·«¤êÊÖ¤·²ó¿ô»ØÄê¤Ï, 2 ¤Ä¤á¤Îʸ»úÎóÃæ¤Ç¤Ï 1 ¤Ä¤À¤±ÍøÍѤǤ­¤Þ¤»¤ó" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "ÃÖ´¹¤Î»þ¤Ë¤Ï, 2 ¤ÄÌܤÎʸ»úÎóÃæ¤Ç [=c=] ·Á¼°¤Îɽ¸½¤Ï¤Ç¤­¤Þ¤»¤ó" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "" +"SET1 ¤òÀÚ¤ê¼Î¤Æ¤ë¤Î¤Ç¤Ï¤Ê¤¤¾ì¹ç¤Ï, 2 ¤Ä¤á¤Îʸ»úÎó¤ò»ØÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" +"Ê佸¹çʸ»ú¥¯¥é¥¹¤ÇÃÖ´¹¤ò¹Ô¤Ê¤¦¤È¤­, 2 ¤ÄÌܤÎʸ»úÎó¤Ï³ºÅö¤¹¤ëʸ»ú¤ÎÁ´¤Æ¤Î\n" +"ÃÖ´¹·ë²Ì¤òÆÃÄê¤Ç¤­¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" +"ÃÖ´¹¤Î»þ, 2 ¤Ä¤á¤Îʸ»úÎóÃæ¤ÇÍøÍѤǤ­¤ëʸ»ú¥¯¥é¥¹¤Ï, Âçʸ»ú¤È¾®Ê¸»ú¤À¤±¤Ç¤¹" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "ÃÖ´¹¤ò¹Ô¤Ê¤¦¾ì¹ç [c*] ¤Ï, 2 ¤ÄÌܤÎʸ»úÎó¤Ç¤Î¤ßÍøÍѤǤ­¤Þ¤¹" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "ÃÖ´¹¤ò¹Ô¤Ê¤¦¾ì¹ç, 2 ¤Ä¤Îʸ»úÎó¤¬Í¿¤¨¤é¤ì¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "" +"ºï½üµÚ¤Ó·«¤êÊÖ¤·Ê¸»ú°µ½Ì¤ÎξÊý¤ò¹Ô¤Ê¤¦¾ì¹ç, 2 ¤Ä¤Îʸ»úÎó¤¬Í¿¤¨¤é¤ì¤Ê¤±¤ì¤Ð\n" +"¤Ê¤ê¤Þ¤»¤ó" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" +"·«¤êÊÖ¤·¤Î°µ½Ì¤ò¤·¤Ê¤¤¤Çºï½ü¤¹¤ë¤È¤­¤Ë¤Ï, °ì¤Ä¤Îʸ»úÎó¤À¤±¤ò¼õ¤±ÉÕ¤±¤Þ¤¹" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "" +"·«¤êÊÖ¤·¤Î°µ½Ì¤ò¹Ô¤¦¤Ë¤Ï, ºÇÄã¸Â 1 ¤Ä¤Îʸ»úÎó¤¬Í¿¤¨¤é¤ì¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "[:upper:] ¤È [:lower:] ¤È¤Î¹½À®¤¬°ìÃפ·¤Þ¤»¤ó" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" +"̵¸ú¤Ê¥³¡¼¥É¥Þ¥Ã¥Ô¥ó¥°\n" +" -- ÃÖ´¹¤Î»þ, 1 ¤Ä¤á¤Îʸ»úÎó¤¬ [:lower:] ¤« [:upper:] ¤Î¹½À®¤Ê¤é¤Ð, \n" +" string2 ¤Ç¤Ï¤½¤ì¤¾¤ì¤ËÂбþ¤¹¤ë¹½À®(¤½¤ì¤¾¤ì [:upper:] ¤« [:lower:])" +"¤È\n" +" °ìÃפ·¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó." + +#: src/true.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"»ÈÍÑË¡: %s [¥³¥Þ¥ó¥É¥é¥¤¥ó°ú¿ô¤ò̵»ë]\n" +"¤â¤·¤¯¤Ï: %s ¥ª¥×¥·¥ç¥ó\n" +"À®¸ù¤ò¼¨¤¹¾õÂÖ¥³¡¼¥É¤Ç½ªÎ».\n" +"\n" +"°Ê²¼¤Î¥ª¥×¥·¥ç¥ó¤Ï̾Á°¤òû½Ì¤Ç¤­¤Ê¤¤.\n" +"\n" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó] [¥Õ¥¡¥¤¥ë]\n" +"¥Õ¥¡¥¤¥ëÃæ¤Î½ç½ø¤Ë¤·¤¿¤¬¤Ã¤Æ, Á´¤Æ¤ò½ç½ø²½¤·¤Æ½ÐÎϤ·¤Þ¤¹.\n" +"¥Õ¥¡¥¤¥ë¤¬»ØÄꤵ¤ì¤Ê¤¤, ¤â¤·¤¯¤Ï¥Õ¥¡¥¤¥ë¤¬ - ¤Î¾ì¹ç¤Ïɸ½àÆþÎϤòÆÉ¤ß¹þ¤ß¤Þ" +"¤¹.\n" +"\n" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "%s: ÆþÎϤ˥롼¥×¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹:" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "°ú¿ô¤ò°ì¤Ä¤À¤±»ØÄê¤Ç¤­¤Þ¤¹" + +#: src/tty.c:63 +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" +"ɸ½àÆþÎϤËÀܳ¤µ¤ì¤Æ¤¤¤ëüËö¤Î¥Õ¥¡¥¤¥ë̾¤ò½ÐÎÏ.\n" +"\n" +" -s, --silent, --quiet ²¿¤âɽ¼¨¤·¤Ê¤¤, ½ªÎ»¾õÂÖ¤À¤±¤òÊÖ¤¹\n" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "tty ¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" + +#: src/uname.c:111 +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" +"¥·¥¹¥Æ¥à¤Î¾ðÊó¤òɽ¼¨. ¥ª¥×¥·¥ç¥ó¤¬Ìµ¤±¤ì¤Ð -s ¤ÈƱ¤¸.\n" +"\n" +" -a, --all Á´¤Æ¤Î¾ðÊó¤ò¼¡¤Î½ç¤Çɽ¼¨:\n" +" -s, --kernel-name ¥«¡¼¥Í¥ë̾¤òɽ¼¨\n" +" -n, --nodename ¥Í¥Ã¥È¥ï¡¼¥¯¥Î¡¼¥É¥Û¥¹¥È̾¤òɽ¼¨\n" +" -r, --kernel-release ¥«¡¼¥Í¥ë¥ê¥ê¡¼¥¹¤òɽ¼¨\n" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" +" -v, --kernel-version ¥«¡¼¥Í¥ë¥Ð¡¼¥¸¥ç¥ó¤òɽ¼¨\n" +" -m, --machine ¥Þ¥·¥ó¤Î¥Ï¡¼¥É¥¦¥§¥¢Ì¾¤òɽ¼¨\n" +" -p, --processor ¥×¥í¥»¥Ã¥µ¤Î¥¿¥¤¥×¤òɽ¼¨\n" +" -i, --hardware-platform ¥Ï¡¼¥É¥¦¥§¥¢¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤òɽ¼¨\n" +" -o, --operating-system ¥ª¥Ú¥ì¡¼¥Æ¥£¥ó¥°¥·¥¹¥Æ¥à¤òɽ¼¨\n" + +#: src/uname.c:226 +#, fuzzy +msgid "cannot get system name" +msgstr "°ì»þ¥Õ¥¡¥¤¥ë¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"³Æ¥Õ¥¡¥¤¥ë¤Î¶õÇò¤ò¥¿¥Ö¤ËÊÑ´¹¤·, ɸ½à½ÐÎϤ˽ñ¤­¹þ¤ß¤Þ¤¹.\n" +"FILE ¤¬»ØÄꤵ¤ì¤Ê¤¤¤«, FILE ¤Ë - ¤¬»ØÄꤵ¤ì¤¿¾ì¹ç¤Ë¤Ïɸ½àÆþÎϤòÆÉ¤ß¹þ¤ß¤Þ" +"¤¹.\n" +"\n" + +#: src/unexpand.c:387 +#, fuzzy +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" +" -a, --all ÀèÆ¬¤Î¶õÇò¤À¤±¤Ç¤Ê¤¯, Á´¤Æ¤Î¶õÇò¤ò¥¿¥Ö¤ËÊÑ´¹\n" +" -t, --tabs=NUMBER 8 ¤ÎÂå¤ï¤ê¤Ë NUMBER ¸Ä¤Î¶õÇò¤ò¥¿¥Ö¤ËÊѹ¹\n" +" -t, --tabs=LIST ¥«¥ó¥Þ¤Ç¶èÀڤä¿ LIST ¤Ç¥¿¥Ö¤Î°ÌÃÖ¤òÌÀ¼¨Åª¤Ë»ØÄê\n" + +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "" +"`-LIST' ¥ª¥×¥·¥ç¥ó¤Ï²áµî¤Î¤â¤Î¤Ç¤¹. `--first-only -t LIST' ¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤" + +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... [ÆþÎϸµ [½ÐÎÏÀè]]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" +"ÆþÎϸµ (¤â¤·¤¯¤Ïɸ½àÆþÎÏ) ¤«¤é½ÅÊ£¹Ô¤ò, ½ÐÎÏÀè (¤â¤·¤¯¤Ïɸ½à½ÐÎÏ) ¤Ø\n" +"½ñ¤­¹þ¤ß¤Þ¤¹.\n" +"\n" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" +" -c, --count ÆþÎÏÃæ¤Ë³¤±¤Æ½Ð¸½¤·¤¿¹Ô¤Î²ó¿ô¤òɽ¼¨\n" +" -d, --repeated ½ÅÊ£¤·¤¿¹Ô¤Î¤ß¤ò½ÐÎÏ\n" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" +" -D, --all-repeated[=delimit-method] Á´¤Æ¤Î½ÅÊ£¤·¤¿¹Ô¤ò½ÐÎÏ\n" +" delimit-method={none(ɸ½à),prepend,separate}\n" +" ¶èÀÚ¤ê¤Ï¶õ¹Ô¤Ç¹Ô¤Ê¤ï¤ì¤ë.\n" +" -f, --skip-fields=N ¹Ô¤ÎÀèÆ¬¤«¤é N ¸Ä¤Î¥Õ¥£¡¼¥ë¥É¤ò̵»ë\n" +" -i, --ignore-case Âçʸ»ú¾®Ê¸»ú¤Î°ã¤¤¤ò̵»ë\n" +" -s, --skip-chars=N ºÇ½é¤ÎNʸ»ú¤òÈæ³Ó¤·¤Ê¤¤\n" +" -u, --unique ½ÅÊ£¤¬¤Ê¤«¤Ã¤¿¹Ô¤Î¤ß¤ò½ÐÎÏ\n" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr " -w, --check-chars=N ¹ÔÃæ, N ʸ»ú°Ê¾å¤òÈæ³Ó¤·¤Ê¤¤\n" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" +"\n" +"¥Õ¥£¡¼¥ë¥É¤È¤Ï, ¶õÇòʸ»ú¤Ç¶èÀÚ¤é¤ì¤¿, ¶õÇò°Ê³°¤Îʸ»ú¤«¤é¤Ê¤ëʸ»úÎó¤ò\n" +"»Ø¤·¤Þ¤¹. ºÇ½é¤Î¥Õ¥£¡¼¥ë¥É¤ò 1 ¤È¤·¤Æ¿ô¤¨¤Þ¤¹.\n" + +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "%s ¤ÎÆÉ¤ß¹þ¤ß¥¨¥é¡¼" + +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "%s ¤Î½ñ¤­¹þ¤ß¥¨¥é¡¼" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr ";·×¤Ê±é»» `%s'" + +#: src/uniq.c:473 src/uniq.c:498 +msgid "invalid number of fields to skip" +msgstr "¥¹¥­¥Ã¥×¤¹¤ë¥Õ¥£¡¼¥ë¥É¿ô¤Î»ØÄ̵꤬¸ú¤Ç¤¹" + +#: src/uniq.c:507 +msgid "invalid number of bytes to skip" +msgstr "¥¹¥­¥Ã¥×¤¹¤ë¥Ð¥¤¥È¿ô¤Î»ØÄ̵꤬¸ú¤Ç¤¹" + +#: src/uniq.c:516 +msgid "invalid number of bytes to compare" +msgstr "Èæ³Ó¤¹¤ë¥Ð¥¤¥È¿ô¤Î»ØÄ̵꤬¸ú¤Ç¤¹" + +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "`-%lu' ¥ª¥×¥·¥ç¥ó¤Ï²áµî¤Î¤â¤Î¤Ç¤¹; `-f %lu' ¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "Á´¤Æ¤Î½ÅÊ£¹Ô¤È·«¤êÊÖ¤·²ó¿ô¤òɽ¼¨¤¹¤ë¤³¤È¤Ë°ÕÌ£¤¬¤¢¤ê¤Þ¤»¤ó" + +#: src/unlink.c:51 +#, fuzzy, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"»ÈÍÑË¡: %s [¥Õ¥¡¥¤¥ë]...\n" +"¤Þ¤¿¤Ï: %s [¥ª¥×¥·¥ç¥ó]\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" + +#: src/unlink.c:99 +#, fuzzy, c-format +msgid "cannot unlink %s" +msgstr "`%s' ¤Ç ioctl() ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "¥Ö¡¼¥È»þ¹ï¤òÆÀ¤é¤ì¤Þ¤»¤ó¤Ç¤·¤¿" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr " %3$s%1$2d»þ%2$02dʬ ²ÔƯ " + +#: src/uptime.c:140 +msgid "am" +msgstr "¸áÁ°" + +#: src/uptime.c:140 +msgid "pm" +msgstr "¸á¸å" + +#: src/uptime.c:142 +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%dÆü" +msgstr[1] "%dÆü" + +#: src/uptime.c:144 +#, fuzzy, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "¥æ¡¼¥¶»ØÄ꤬ÉÔÀµ" +msgstr[1] "¥æ¡¼¥¶»ØÄ꤬ÉÔÀµ" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr ", Ê¿¶ÑÉé²ÙΨ: %.2f" + +#: src/uptime.c:191 src/users.c:118 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... [¥Õ¥¡¥¤¥ë]...\n" + +#: src/uptime.c:192 +#, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"¸½ºß¤Î»þ¹ï, ¥·¥¹¥Æ¥àµ¯Æ°¤«¤é¤Î»þ´Ö, ¥·¥¹¥Æ¥à¾å¤Ë¤¤¤ë¥æ¡¼¥¶¿ô¤ª¤è¤Ó\n" +"²áµî 1ʬ, 5ʬ¤ª¤è¤Ó 15ʬ¤Î¼Â¹Ô¥­¥å¡¼¤Ë¤¢¤ë¥¸¥ç¥Ö¤ÎÊ¿¶Ñ¿ô¤òɽ¼¨.\n" +"¥Õ¥¡¥¤¥ë¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤±¤ì¤Ð %s ¤ò»ÈÍÑ. \n" +"¥Õ¥¡¥¤¥ë¤È¤·¤Æ %s ¤¬»ØÄꤵ¤ì¤ë¤È, ¤³¤ì¤Þ¤Ç¤ÎÎßÀѥǡ¼¥¿¤òɽ¼¨.\n" +"\n" + +#: src/users.c:35 +#, fuzzy +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "Jay Lepreau ¤È David MacKenzie" + +#: src/users.c:119 +#, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"¥Õ¥¡¥¤¥ë¤Ë½¾¤¤, ¸½ºß¥í¥°¥¤¥ó¤·¤Æ¤¤¤ë¥æ¡¼¥¶¤òɽ¼¨.\n" +"¥Õ¥¡¥¤¥ë¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤±¤ì¤Ð %s ¤ò»ÈÍÑ. \n" +"¥Õ¥¡¥¤¥ë¤È¤·¤Æ %s ¤¬»ØÄꤵ¤ì¤ë¤È, ¤³¤ì¤Þ¤Ç¤ÎÎßÀѥǡ¼¥¿¤òɽ¼¨.\n" +"\n" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "Paul Rubin ¤È David MacKenzie" + +#: src/wc.c:129 +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" +"»ØÄꤵ¤ì¤¿¥Õ¥¡¥¤¥ë¤Î¥Ð¥¤¥È¿ô, ñ¸ì¿ô, ¹Ô¿ô¤òɽ¼¨¤·¤Þ¤¹. ¹¹¤ËÊ£¿ô¤Î¥Õ¥¡¥¤¥ë" +"¤¬\n" +"¤¬»ØÄꤵ¤ì¤¿¾ì¹ç¤Ï¹ç·×¹Ô¿ô¤òɽ¼¨¤·¤Þ¤¹. ¥Õ¥¡¥¤¥ë¤Î»ØÄ꤬¤Ê¤«¤Ã¤¿¤ê\n" +"¥Õ¥¡¥¤¥ë¤¬ - ¤Ç¤¢¤ë¾ì¹ç, ɸ½àÆþÎϤ¬ÆþÎϤȤʤê¤Þ¤¹.\n" +" -c, --bytes ¥Ð¥¤¥È¿ô¤òɽ¼¨\n" +" -m, --chars ʸ»ú¿ô¤òɽ¼¨\n" +" -l, --lines ¹Ô¿ô¤òɽ¼¨\n" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" +" -L, --max-line-length ºÇ¤âŤ¤¹Ô¤ÎŤµ¤òɽ¼¨\n" +" -w, --words ñ¸ì¿ô¤òɽ¼¨\n" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "Joseph Arceneaux, David MacKenzie ¤ª¤è¤Ó Michael Stone" + +#: src/who.c:223 +msgid " old " +msgstr " ÀÎ " + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "ID=" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "üËö=" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "½ªÎ»=" + +#: src/who.c:446 +msgid "clock change" +msgstr "»þ¹ï¤ÎÊѹ¹" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "run-level" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "ºÇ¸å=" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" +"\n" +"¥æ¡¼¥¶¿ô=%u\n" + +#: src/who.c:498 +msgid "NAME" +msgstr "̾Á°" + +#: src/who.c:498 +msgid "LINE" +msgstr "üËö" + +#: src/who.c:498 +msgid "TIME" +msgstr "»þ´Ö" + +#: src/who.c:498 +#, fuzzy +msgid "IDLE" +msgstr "¼ºÇÔ" + +#: src/who.c:498 +msgid "PID" +msgstr "PID" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "¥³¥á¥ó¥È" + +#: src/who.c:499 +msgid "EXIT" +msgstr "½ªÎ»" + +#: src/who.c:574 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... ¥Õ¥¡¥¤¥ë1 ¥Õ¥¡¥¤¥ë2\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" +"\n" +" -a, --all -b -d --login -p -r -t -T -u ¤ÈƱ¤¸\n" +" -b, --boot ºÇ¸å¤Ë¥·¥¹¥Æ¥à¤¬µ¯Æ°¤·¤¿»þ¹ï\n" +" -d, --dead ½ªÎ»¤·¤¿¥×¥í¥»¥¹¤òɽ¼¨\n" +" -H, --heading ¥Ø¥Ã¥À¹Ô¤òɽ¼¨\n" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" +" -i, --idle ÂÔµ¡»þ´Ö¤ò¡Ö»þ:ʬ¡×¤ä . ¤â¤·¤¯¤Ï¡ÖÀΡפòÄɵ­\n" +" (¿ä¾©¤µ¤ì¤Ê¤¤, -u ¤ò»ÈÍÑ)\n" +" --login ¥·¥¹¥Æ¥à¥í¥°¥¤¥ó¥×¥í¥»¥¹¤òɽ¼¨\n" +" (SUS -l ¤ÈÅù¤·¤¤)\n" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" +" -l, --lookup ¥Û¥¹¥È̾¤Î²ò·è¤Ë DNS ¤ò»È¤Ã¤Æ¤ß¤ë\n" +" (-l ¤Ï¿ä¾©¤µ¤ì¤Ê¤¤, --lookup ¤ò»ÈÍÑ)\n" +" -m ɸ½àÆþÎϤ˷Ҥ¬¤Ã¤Æ¤¤¤ë¥æ¡¼¥¶¤È¥Û¥¹¥È̾¤À¤±¤òɽ¼¨\n" +" -p, --process init ¤«¤éµ¯Æ°¤µ¤ì¤Æ¤¤¤ë¼Â¹ÔÃæ¤Î¥×¥í¥»¥¹¤òɽ¼¨\n" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" +" -q, --count ¥í¥°¥¤¥óÃæ¤Î¥æ¡¼¥¶¤Î¥í¥°¥¤¥ó̾¤È¥æ¡¼¥¶¿ô\n" +" -r, --runlevel ¸½ºß¤Î¥é¥ó¥ì¥Ù¥ë¤òɽ¼¨\n" +" -s, --short ̾Á°, ¹Ô¤ª¤è¤Ó»þ´Ö¤Î¤ß¤òɽ¼¨ (ɸ½à)\n" +" -t, --time ºÇ¸å¤Ë¥·¥¹¥Æ¥à¤Î»þ¹ï¤¬Êѹ¹¤µ¤ì¤¿»þ¹ï¤òɽ¼¨\n" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" +" -T, -w, --mesg ¥æ¡¼¥¶¤Î¥á¥Ã¥»¡¼¥¸¾õÂÖ¤ò +, - ¤Þ¤¿¤Ï ? ¤ÇÄɵ­\n" +" -u, --users ¥í¥°¥¤¥óÃæ¤Î¥æ¡¼¥¶¤ò°ìÍ÷\n" +" --message -T ¤ÈƱ¤¸\n" +" --writable -T ¤ÈƱ¤¸\n" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" +"\n" +"¥Õ¥¡¥¤¥ë¤¬»ØÄꤵ¤ì¤Ê¤¤¾ì¹ç¤Ï, %s ¤ò»ÈÍÑ.\n" +"¥Õ¥¡¥¤¥ë¤È¤·¤Æ %s ¤¬»ØÄꤵ¤ì¤ë¤È, ¤³¤ì¤Þ¤Ç¤ÎÎßÀѥǡ¼¥¿¤òɽ¼¨.\n" +"°ú¿ô1 °ú¿ô2 ¤¬»ØÄꤵ¤ì¤ë¤È, -m ¤¬²¾Äê: Ä̾ï¤Ï `am i' ¤Þ¤¿¤Ï `mom likes'.\n" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "" +"·Ù¹ð: -i ¤Ï¾­Íè¤Î¥ê¥ê¡¼¥¹¤Ç¤Ïºï½ü¤µ¤ì¤Þ¤¹. Âå¤ï¤ê¤Ë -u ¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" +"·Ù¹ð: '-l' ¤Î°ÕÌ£¤Ï POSIX ¤Ë¹ç¤ï¤»¤ë¤¿¤á¤Ë¾­Íè¤Î¥ê¥ê¡¼¥¹¤ÇÊѹ¹¤µ¤ì¤Þ¤¹." + +#: src/whoami.c:53 +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" +"¸½ºß¤Î¼Â¸ú¥æ¡¼¥¶ ID ¤ËÂбþ¤·¤¿¥æ¡¼¥¶Ì¾¤òɽ¼¨. `id -un' ¤ÈƱ¤¸.\n" +"\n" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "%s: UID %u ¤Î¥æ¡¼¥¶Ì¾¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó\n" + +#: src/yes.c:49 +#, fuzzy, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"»ÈÍÑË¡: %s [¥Õ¥¡¥¤¥ë]...\n" +"¤Þ¤¿¤Ï: %s [¥ª¥×¥·¥ç¥ó]\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" +"»ØÄꤵ¤ì¤¿Á´¤Æ¤Îʸ»úÎó¤Þ¤¿¤Ï `y' ¤«¤é¤Ê¤ë¹Ô¤ò·«¤êÊÖ¤·½ÐÎÏ.\n" +"\n" + +#, fuzzy +#~ msgid "\\%c: invalid escape" +#~ msgstr "%s: ̵¸ú¤Ê¥Ñ¥¿¡¼¥ó»ØÄê¤Ç¤¹" + +#~ msgid "program error" +#~ msgstr "¥×¥í¥°¥é¥à¥¨¥é¡¼" + +#~ msgid "stack overflow" +#~ msgstr "¥¹¥¿¥Ã¥¯¥ª¡¼¥Ð¡¼¥Õ¥í¡¼" + +#~ msgid " Type" +#~ msgstr " ¥¿¥¤¥×" + +#, fuzzy +#~ msgid "cannot convert time" +#~ msgstr "Æü»þ¤òÀßÄê¤Ç¤­¤Þ¤»¤ó" + +#, fuzzy +#~ msgid "cannot format time" +#~ msgstr "%s ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó" + +#, fuzzy +#~ msgid "cannot change to `..' from directory %s" +#~ msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Ë°Üư¤Ç¤­¤Þ¤»¤ó" + +#, fuzzy +#~ msgid "missing file arguments" +#~ msgstr "°ú¿ô¤¬Â­¤ê¤Þ¤»¤ó" + +#, fuzzy +#~ msgid "environment variable, QUOTING_STYLE" +#~ msgstr "´Ä¶­ÊÑ¿ô QUOTING_STYLE ¤ÎÃÍ(%s)¤¬ÉÔŬÀڤʤΤÇ̵»ë¤·¤Þ¤¹" + +#~ msgid "%s: is so large that it is not representable" +#~ msgstr "%s ¤ÏÂ礭¤¹¤®¤ÆÉ½¼¨¤Ç¤­¤Þ¤»¤ó" + +#, fuzzy +#~ msgid "cannot execute %s" +#~ msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#, fuzzy +#~ msgid "cannot run %s" +#~ msgstr "`%s' ¤Ç ioctl() ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó" + +#, fuzzy +#~ msgid "Try %s --help' for more information.\n" +#~ msgstr "¾Ü¤·¤¯¤Ï `%s --help' ¤ò¼Â¹Ô¤·¤Æ²¼¤µ¤¤.\n" + +#, fuzzy +#~ msgid "preserving permissions for %s" +#~ msgstr "%s ¤Î°À­¤òÊѹ¹¤Ç¤­¤Þ¤»¤ó" + +#, fuzzy +#~ msgid "cannot lstat `.'" +#~ msgstr "Æü»þ¤òÀßÄê¤Ç¤­¤Þ¤»¤ó" + +#, fuzzy +#~ msgid "closing directory %s" +#~ msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Ë°Üư¤Ç¤­¤Þ¤»¤ó" + +#, fuzzy +#~ msgid "%s: remove directory %s? " +#~ msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#~ msgid "%s: directory %s is write protected; descend into it anyway? " +#~ msgstr "" +#~ "%s: ¥Ç¥£¥ì¥¯¥È¥ê %s ¤Ï½ñ¤­¹þ¤ßÊݸ¤ì¤Æ¤¤¤Þ¤¹¡£\n" +#~ " -- ¤½¤ì¤Ç¤â²¼¤ê¤Æ¤¤¤­¤Þ¤¹¤«(yes/no)? " + +#~ msgid "removing all entries of directory %s\n" +#~ msgstr "¥Ç¥£¥ì¥¯¥È¥ê `%s' Ãæ¿È¤òÁ´¤Æºï½ü¤·¤Þ¤·¤¿\n" + +#~ msgid "continue? " +#~ msgstr "³¤±¤Þ¤¹¤«(yes/no)? " + +#, fuzzy +#~ msgid "cannot change back to directory %s via `..'" +#~ msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Ë°Üư¤Ç¤­¤Þ¤»¤ó" + +#, fuzzy +#~ msgid "%s: remove directory %s%s? " +#~ msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#~ msgid " (might be nonempty)" +#~ msgstr "(¿ʬ¡¢¥Õ¥¡¥¤¥ë¤¬»Ä¤Ã¤¿¤Þ¤Þ¤Ç¤¹)" + +#, fuzzy +#~ msgid "removing the directory itself: %s\n" +#~ msgstr "·Ù¹ð: ¥Ç¥£¥ì¥¯¥È¥ê¤ò %s ¤ËÊѹ¹¤Ç¤­¤Þ¤»¤ó" + +#, fuzzy +#~ msgid "cannot remove current directory %s" +#~ msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#, fuzzy +#~ msgid "" +#~ "ERROR: the source file %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after opening it), the numbers\n" +#~ "are %lu/%lu. That means that while this program was running,\n" +#~ "the file was replaced with another one. Skipping this file." +#~ msgstr "" +#~ "¥¨¥é¡¼: ¥Ç¥£¥ì¥¯¥È¥ê %s ¤Ï¸µ¡¹ ¥Ç¥Ð¥¤¥¹¤Þ¤¿¤Ï i ¥Î¡¼¥ÉÈֹ椬 %lu/%lu\n" +#~ "¤Ç¤·¤¿¤¬¡¢¡Ê¤½¤³¤Ë chdir ¤·¤¿¡Ë¸½ºß¡¢`.' ¤ÎÈÖ¹æ¤Ï %lu/%lu ¤Ç¤¹¡£\n" +#~ "¤É¤¦±¾¤¦¤³¤È¤«¤È¤¤¤¦¤È¡¢rm ¤¬Æ°ºî¤·¤Æ¤¤¤ë¤¦¤Á¤Ë¡¢¤½¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ï¾¤Î\n" +#~ "¥Ç¥£¥ì¥¯¥È¥ê¤Ë°Ü¤µ¤ì¤¿¤«¡¢Â¾¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ë link ¤·¤¿¤È±¾¤¦»ö¤Ç¤¹¡£" + +#~ msgid "" +#~ "ERROR: the directory %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after a chdir into it), the numbers for `.'\n" +#~ "are %lu/%lu. That means that while rm was running, the directory\n" +#~ "was replaced with either another directory or a link to another directory." +#~ msgstr "" +#~ "¥¨¥é¡¼: ¥Ç¥£¥ì¥¯¥È¥ê %s ¤Ï¸µ¡¹ ¥Ç¥Ð¥¤¥¹¤Þ¤¿¤Ï i ¥Î¡¼¥ÉÈֹ椬 %lu/%lu\n" +#~ "¤Ç¤·¤¿¤¬¡¢¡Ê¤½¤³¤Ë chdir ¤·¤¿¡Ë¸½ºß¡¢`.' ¤ÎÈÖ¹æ¤Ï %lu/%lu ¤Ç¤¹¡£\n" +#~ "¤É¤¦±¾¤¦¤³¤È¤«¤È¤¤¤¦¤È¡¢rm ¤¬Æ°ºî¤·¤Æ¤¤¤ë¤¦¤Á¤Ë¡¢¤½¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ï¾¤Î\n" +#~ "¥Ç¥£¥ì¥¯¥È¥ê¤Ë°Ü¤µ¤ì¤¿¤«¡¢Â¾¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ë link ¤·¤¿¤È±¾¤¦»ö¤Ç¤¹¡£" + +#, fuzzy +#~ msgid "" +#~ "ERROR: the directory %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after changing into at least one subdirectory\n" +#~ "and changing back via `..'), the numbers for `.' are %lu/%lu.\n" +#~ "That means that while rm was running, a partially-removed subdirectory\n" +#~ "was moved to a different position in the file system hierarchy." +#~ msgstr "" +#~ "¥¨¥é¡¼: ¥Ç¥£¥ì¥¯¥È¥ê %s ¤Ï¸µ¡¹ ¥Ç¥Ð¥¤¥¹¤Þ¤¿¤Ï i ¥Î¡¼¥ÉÈֹ椬 %lu/%lu\n" +#~ "¤Ç¤·¤¿¤¬¡¢¡Ê¤½¤³¤Ë chdir ¤·¤¿¡Ë¸½ºß¡¢`.' ¤ÎÈÖ¹æ¤Ï %lu/%lu ¤Ç¤¹¡£\n" +#~ "¤É¤¦±¾¤¦¤³¤È¤«¤È¤¤¤¦¤È¡¢rm ¤¬Æ°ºî¤·¤Æ¤¤¤ë¤¦¤Á¤Ë¡¢¤½¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ï¾¤Î\n" +#~ "¥Ç¥£¥ì¥¯¥È¥ê¤Ë°Ü¤µ¤ì¤¿¤«¡¢Â¾¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ë link ¤·¤¿¤È±¾¤¦»ö¤Ç¤¹¡£" + +#~ msgid "" +#~ " --sparse=WHEN control creation of sparse files\n" +#~ " -R, --recursive copy directories recursively\n" +#~ " --reply={yes,no,query} specify how to handle the prompt about an\n" +#~ " existing destination file\n" +#~ " --strip-trailing-slashes remove any trailing slashes from each " +#~ "SOURCE\n" +#~ " argument\n" +#~ msgstr "" +#~ " --sparse=WHEN Á¤é¤Ê¥Õ¥¡¥¤¥ë¤ÎºîÀ®¤òÀ©¸æ¤¹¤ë\n" +#~ " -R, --recursive ¥Ç¥£¥ì¥¯¥È¥ê¤òºÆµ¢Åª¤Ë¥³¥Ô¡¼¤¹¤ë\n" +#~ " --reply={yes,no,query} ¥³¥Ô¡¼Àè¤Î´û¸¥Õ¥¡¥¤¥ë¤Ë´Ø¤¹¤ëÌ䤤¹ç¤ï¤»" +#~ "¤Î\n" +#~ " °·¤¤Êý¤ò»ØÄꤹ¤ë\n" +#~ " --strip-trailing-slashes ³Æ SOURCE °ú¿ô¤Î;ʬ¤ÊËöÈø¥¹¥é¥Ã¥·¥å¤ò¼è¤ê" +#~ "½ü¤¯\n" + +#, fuzzy +#~ msgid " or: %s [-acm] MMDDhhmm[YY] FILE... (obsolete)\n" +#~ msgstr " Ëô¤Ï: %s [-acm] MMDDhhmm[YY] FILE... (ÀΤνñ¼°)\n" + +#~ msgid "" +#~ "\n" +#~ "Note that the three time-date formats recognized for the -d and -t " +#~ "options\n" +#~ "and for the obsolescent argument are all different.\n" +#~ msgstr "" +#~ "\n" +#~ "»°¤Ä¤Î `»þ¹ï-ÆüÉÕ' ·Á¼°¤Ï -d ¤ä -t ¥ª¥×¥·¥ç¥óÍѤÈǧ¼±¤µ¤ì¡¢ÇѤ줿½ñ¼°¤Î\n" +#~ "°ú¿ô¤È¤ÏÁ´¤¯°Û¤Ê¤ë¤³¤È¤ËÃí°Õ¤·¤Þ¤·¤ç¤¦¡£\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr " --version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤·¤Æ½ªÎ»\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr " --version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤·¤Æ½ªÎ»\n" + +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ " --help ¤³¤Î»È¤¤Êý¤òɽ¼¨¤·¤Æ½ªÎ»¤¹¤ë\n" +#~ " --version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤·¤Æ½ªÎ»¤¹¤ë\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr " --version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤·¤Æ½ªÎ»\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr " --version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤·¤Æ½ªÎ»\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr " --version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤·¤Æ½ªÎ»\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr " --version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤·¤Æ½ªÎ»\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr " --version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤·¤Æ½ªÎ»\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr " --version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤·¤Æ½ªÎ»\n" + +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ " --help ¤³¤Î»È¤¤Êý¤òɽ¼¨¤·¤Æ½ªÎ»¤¹¤ë\n" +#~ " --version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤·¤Æ½ªÎ»¤¹¤ë\n" +#~ "\n" + +#~ msgid "Copyright (C) 2001 Free Software Foundation, Inc." +#~ msgstr "Copyright (C) 2001 Free Software Foundation, Inc." + +#~ msgid "" +#~ "Change the group membership of each FILE to GROUP.\n" +#~ "\n" +#~ " -c, --changes like verbose but report only when a change is " +#~ "made\n" +#~ " --dereference affect the referent of each symbolic link, " +#~ "rather\n" +#~ " than the symbolic link itself\n" +#~ " -h, --no-dereference affect symbolic links instead of any referenced " +#~ "file\n" +#~ " (available only on systems that can change the\n" +#~ " ownership of a symlink)\n" +#~ " -f, --silent, --quiet suppress most error messages\n" +#~ " --reference=RFILE use RFILE's group rather than the specified\n" +#~ " GROUP value\n" +#~ " -R, --recursive operate on files and directories recursively\n" +#~ " -v, --verbose output a diagnostic for every file processed\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "³Æ¥Õ¥¡¥¤¥ë¤Î½êÍ­¥°¥ë¡¼¥×°À­¤ÎÊѹ¹.\n" +#~ "\n" +#~ " -c, --changes Êѹ¹¤ò¹Ô¤Ê¤Ã¤¿»þ¤Ë¤Î¤ß¡¢Êѹ¹¤Î·ë²Ì¤òÊó¹ð¤¹¤ë\n" +#~ " --dereference ¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤½¤Î¤â¤Î¤Ç¤Ï¤Ê¤¯¡¢¥ê¥ó¥¯Àè¤Î\n" +#~ " ¥Õ¥¡¥¤¥ë¤ËÂФ·¤Æ±Æ¶Á¤µ¤»¤ë\n" +#~ " -h, --no-dereference ¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤Î»²¾ÈÀè¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¯\n" +#~ " ¥ê¥ó¥¯¥Õ¥¡¥¤¥ë¤½¤Î¤â¤Î¤Ë±Æ¶Á¤µ¤»¤ë\n" +#~ " (lchown() ¤ò¥µ¥Ý¡¼¥È¤¹¤ë¥·¥¹¥Æ¥à¤Ç¤Î¤ßÍ­¸ú)\n" +#~ " -f, --silent, --quiet ¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸¤ò¶ËÎÏÍÞ¤¨¤ë\n" +#~ " --reference=RFILE RFILE ¤Ë»ØÄꤷ¤¿¥Õ¥¡¥¤¥ë¤Î¥°¥ë¡¼¥×̾¤òÍøÍѤ¹¤ë\n" +#~ " -R, --recursive ¥Ç¥£¥ì¥¯¥È¥ê¤È¤½¤ÎÃæ¿È¤òºÆµ¢Åª¤ËÊѹ¹¤¹¤ë\n" +#~ " -v, --verbose ¥Õ¥¡¥¤¥ë¤ò½èÍý¤¹¤ë¤¿¤Ó¤Ë¡¢¾ÜºÙ¤ÊÊó¹ð¤ò¹Ô¤Ê¤¦\n" +#~ " --help »È¤¤Êý¤òɸ½à½ÐÎϤËɽ¼¨¤¹¤ë\n" +#~ " --version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɸ½à½ÐÎϤËɽ¼¨¤¹¤ë\n" + +#~ msgid "" +#~ "Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +#~ "\n" +#~ " -c, --changes like verbose but report only when a change is " +#~ "made\n" +#~ " --dereference affect the referent of each symbolic link, " +#~ "rather\n" +#~ " than the symbolic link itself\n" +#~ " -h, --no-dereference affect symbolic links instead of any referenced " +#~ "file\n" +#~ " (available only on systems that can change the\n" +#~ " ownership of a symlink)\n" +#~ " --from=CURRENT_OWNER:CURRENT_GROUP\n" +#~ " change the owner and/or group of each file only " +#~ "if\n" +#~ " its current owner and/or group match those " +#~ "specified\n" +#~ " here. Either may be omitted, in which case a " +#~ "match\n" +#~ " is not required for the omitted attribute.\n" +#~ " -f, --silent, --quiet suppress most error messages\n" +#~ " --reference=RFILE use RFILE's owner and group rather than\n" +#~ " the specified OWNER:GROUP values\n" +#~ " -R, --recursive operate on files and directories recursively\n" +#~ " -v, --verbose output a diagnostic for every file processed\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "FILE ¤Î½êÍ­¼Ô¤ä¥°¥ë¡¼¥×¤ò OWNER ¤ä GROUP ¤ËÊѹ¹¤¹¤ë¡£\n" +#~ "\n" +#~ " -c, --changes Êѹ¹¤ò¹Ô¤Ê¤Ã¤¿¤È¤­¤À¤±¾ÜºÙ¤ÊÊó¹ð¤ò¹Ô¤Ê¤¦\n" +#~ " --dereference ¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤½¤Î¤â¤Î¤Ç¤Ï¤Ê¤¯¡¢¤½¤Î»²¾ÈÀè" +#~ "¤Î\n" +#~ " ¥Õ¥¡¥¤¥ë¤ËÂФ·¤Æ±Æ¶Á¤òÍ¿¤¨¤ë\n" +#~ " -h, --no-dereference ¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤Î»²¾ÈÀè¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¯\n" +#~ " ¥ê¥ó¥¯¥Õ¥¡¥¤¥ë¤½¤Î¤â¤Î¤Ë±Æ¶Á¤òÍ¿¤¨¤ë\n" +#~ " (¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤Î½êͭ°À­¤òÊѹ¹¤Ç¤­¤ë¥·¥¹" +#~ "¥Æ¥à\n" +#~ " ¤Ç¤Î¤ßÍ­¸ú)\n" +#~ " --from=CURRENT_OWNER:CURRENT_GROUP\n" +#~ " »ØÄꤵ¤ì¤¿½êÍ­¼Ô¤ä¥°¥ë¡¼¥×¤È°ìÃפ¹¤ë¥Õ¥¡¥¤¥ë¤Î" +#~ "¤ß¡¢\n" +#~ " ½êÍ­¼Ô¤ä¥°¥ë¡¼¥×¤òÊѹ¹¤¹¤ë¡£¤¤¤º¤ì¤«°ìÊý¤ò¾Ê" +#~ "ά\n" +#~ " ¤·¤¿¤È¤­¤Ï¡¢¾Êά¤µ¤ì¤¿Êý¤ò¥Þ¥Ã¥Á¤µ¤»¤Ê¤¤¡£\n" +#~ " -f, --silent, --quiet ¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸¤òÍÞÀ©¤¹¤ë\n" +#~ " --reference=RFILE OWNER:GROUP ¤ò»ØÄꤹ¤ëÂå¤ï¤ê¤Ë RFILE ¤Ç»ØÄꤵ¤ì" +#~ "¤¿\n" +#~ " ¥Õ¥¡¥¤¥ë¤Î½êÍ­¼Ô¡¦¥°¥ë¡¼¥×¤Î°À­ÃͤòÍøÍѤ¹" +#~ "¤ë\n" +#~ " -R, --recursive ¥Ç¥£¥ì¥¯¥È¥ê¤ÎÃæ¤Î¥Õ¥¡¥¤¥ë¤ò¡¢ºÆµ¢Åª¤Ë½èÍý¤¹¤ë\n" +#~ " -v, --verbose ½èÍýËè¤Î¿ÇÃÇÆâÍÆ¤ò½ÐÎϤ¹¤ë\n" +#~ " --help »È¤¤Êý¤òɸ½à½ÐÎϤËɽ¼¨¤·¤Æ½ªÎ»¤¹¤ë\n" +#~ " --version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɸ½à½ÐÎϤËɽ¼¨¤·¤Æ½ªÎ»¤¹¤ë\n" + +#~ msgid "" +#~ "Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +#~ "\n" +#~ " -a, --archive same as -dpR\n" +#~ " --backup[=CONTROL] make a backup of each existing destination " +#~ "file\n" +#~ " -b like --backup but does not accept an " +#~ "argument\n" +#~ " -d, --no-dereference never follow symbolic links\n" +#~ " -f, --force if an existing destination file cannot be\n" +#~ " opened, remove it and try again\n" +#~ " -i, --interactive prompt before overwrite\n" +#~ " -H follow command-line symbolic links\n" +#~ " -l, --link link files instead of copying\n" +#~ " -L, --dereference always follow symbolic links\n" +#~ " -p, --preserve preserve file attributes if possible\n" +#~ " --parents append source path to DIRECTORY\n" +#~ " -P same as `--parents' for now; soon to " +#~ "change to\n" +#~ " `--no-dereference' to conform to POSIX\n" +#~ " -r copy recursively, non-directories as " +#~ "files\n" +#~ " WARNING: use -R instead when you might " +#~ "copy\n" +#~ " special files like FIFOs or /dev/zero\n" +#~ " --remove-destination remove each existing destination file " +#~ "before\n" +#~ " attempting to open it (contrast with --" +#~ "force)\n" +#~ msgstr "" +#~ "SOURCE ¤«¤é DEST ¤Ø¡¢¤Þ¤¿¤ÏÊ£¿ô¤Î SOURCE ¤«¤é DIRECTORY ¤Ø¥³¥Ô¡¼¤·¤Þ¤¹¡£\n" +#~ "\n" +#~ " -a, --archive -dpR ¤ÈƱ¤¸\n" +#~ " --backup[=CONTROL] ¥Õ¥¡¥¤¥ë¤ò¾å½ñ¤­¤¹¤ëºÝ¡¢¥Ð¥Ã¥¯¥¢¥Ã¥×¤ò¤È" +#~ "¤ë\n" +#~ " -b °ú¿ô¤ò¤È¤é¤Ê¤¤¤³¤È°Ê³°¤Ï --backup ¤ÈƱ¤¸\n" +#~ " -d, --no-dereference ¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤òé¤é¤Ê¤¤\n" +#~ " -f, --force ´û¸¤Î¥³¥Ô¡¼Àè¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Ê¤¤¾ì" +#~ "¹ç¡¢\n" +#~ " ºï½ü¤·¤Æ¤«¤é¤â¤¦°ìÅÙ¥³¥Ô¡¼¤ò»î¤¹\n" +#~ " -i, --interactive ¾å½ñ¤­¤¹¤ëÁ°¤Ë³Îǧ¤¹¤ë\n" +#~ " -H ¥³¥Þ¥ó¥É¥é¥¤¥ó¤Î¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤òé¤ë\n" +#~ " -l, --link ¥³¥Ô¡¼¤ÎÂå¤ï¤ê¤Ë¥ê¥ó¥¯¤ò¤Ï¤ë\n" +#~ " -L, --dereference ¾ï¤Ë¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤òé¤ë\n" +#~ " -p, --preserve ²Äǽ¤Ê¤é¤Ð¥Õ¥¡¥¤¥ë°À­¤ò°Ý»ý¤¹¤ë\n" +#~ " --parents ¥½¡¼¥¹¥Ñ¥¹¤È¤·¤Æ DIRECTORY ¤òÊä­¤¹¤ë\n" +#~ " -P ¸½ºß¤Ï `--parents' ¤ÈƱ¤¸; POSIX ¤Ë½àµò¤¹¤ë" +#~ "¤¿¤á\n" +#~ " `--no-dereference' ¤Îµ¡Ç½¤Ë¤Þ¤â¤Ê¤¯Êѹ¹¤µ" +#~ "¤ì¤ë\n" +#~ " -r ¥Ç¥£¥ì¥¯¥È¥ê°Ê³°¤Ï¥Õ¥¡¥¤¥ë¤È¤·¤ÆºÆµ¢Åª¤Ë¥³" +#~ "¥Ô¡¼\n" +#~ " ·Ù¹ð: FIFO ¤ä /dev/zero ¤ÎÍͤʥ¹¥Ú¥·¥ã" +#~ "¥ë\n" +#~ " ¥Õ¥¡¥¤¥ë¤ò¥³¥Ô¡¼¤¹¤ë¤Ê¤é -R ¤ò»È¤¤¤Þ¤·¤ç" +#~ "¤¦\n" +#~ " --remove-destination ´û¸¤Î¥³¥Ô¡¼Àè¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤ò»î¤¹Á°" +#~ "¤Ë\n" +#~ " ºï½ü¤ò¹Ô¤Ê¤¦¡Ê--force Èæ¤Ù¤Æ¤ß¤Æ¤¯¤À¤µ" +#~ "¤¤¡Ë\n" + +#~ msgid "" +#~ " --sparse=WHEN control creation of sparse files\n" +#~ " -R, --recursive copy directories recursively\n" +#~ " --strip-trailing-slashes remove any trailing slashes from each " +#~ "SOURCE\n" +#~ " argument\n" +#~ " -s, --symbolic-link make symbolic links instead of copying\n" +#~ " -S, --suffix=SUFFIX override the usual backup suffix\n" +#~ " --target-directory=DIRECTORY move all SOURCE arguments into " +#~ "DIRECTORY\n" +#~ " -u, --update copy only when the SOURCE file is newer\n" +#~ " than the destination file or when the\n" +#~ " destination file is missing\n" +#~ " -v, --verbose explain what is being done\n" +#~ " -x, --one-file-system stay on this file system\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "By default, sparse SOURCE files are detected by a crude heuristic and " +#~ "the\n" +#~ "corresponding DEST file is made sparse as well. That is the behavior\n" +#~ "selected by --sparse=auto. Specify --sparse=always to create a sparse " +#~ "DEST\n" +#~ "file whenever the SOURCE file contains a long enough sequence of zero " +#~ "bytes.\n" +#~ "Use --sparse=never to inhibit creation of sparse files.\n" +#~ "\n" +#~ msgstr "" +#~ " --sparse=WHEN Á¤é¤Ê¥Õ¥¡¥¤¥ë¤ÎºîÀ®ÊýË¡¤òÀ©¸æ\n" +#~ " -R, --recursive ¥Ç¥£¥ì¥¯¥È¥ê¤òºÆµ¢Åª¤Ë¥³¥Ô¡¼¤¹¤ë\n" +#~ " --strip-trailing-slashes SOURCE °ú¿ô¤ËÉÕ¤¤¤Æ¤¤¤ë¥¹¥é¥Ã¥·¥å¤ò¼è¤ê½ü" +#~ "¤¯\n" +#~ " -s, --symbolic-link ¥³¥Ô¡¼¤¹¤ëÂå¤ï¤ê¤Ë¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤òŽ" +#~ "¤ë\n" +#~ " -S, --suffix=SUFFIX ñ½ã¥Ð¥Ã¥¯¥¢¥Ã¥×¤ÎºÝ¤Î¥µ¥Õ¥£¥Ã¥¯¥¹¤Î»ØÄê\n" +#~ " --target-directory=DIR Á´ SOURCE °ú¿ô¤ò DIR ¥Ç¥£¥ì¥¯¥È¥ê¤Ø°Üư¤¹" +#~ "¤ë\n" +#~ " -u, --update SOURCE ¥Õ¥¡¥¤¥ë¤¬¥³¥Ô¡¼Àè¥Õ¥¡¥¤¥ë¤è¤ê¤â¿·¤·" +#~ "¤¤¤«\n" +#~ " ¥³¥Ô¡¼Àè¤Ë¥Õ¥¡¥¤¥ë¤¬Ìµ¤¤¾ì¹ç¤Ë¤Î¤ß¥³¥Ô¡¼" +#~ "¤¹¤ë\n" +#~ " -v, --verbose ¹Ô¤Ê¤ï¤ì¤ë¤³¤È¤òÀâÌÀ¤¹¤ë\n" +#~ " -x, --one-file-system °Û¤Ê¤ë¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Ë¤Ï¥³¥Ô¡¼¤·¤Ê¤¤\n" +#~ " --help »È¤¤Êý¤òɸ½à½ÐÎϤËɽ¼¨¤¹¤ë\n" +#~ " --version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɸ½à½ÐÎϤËɽ¼¨¤¹¤ë\n" +#~ "\n" +#~ "ÆÃ¤Ë»ØÄ꤬¤Ê¤±¤ì¤Ð¡¢Á¤é¤Ê SOURCE ¥Õ¥¡¥¤¥ë¤Ïȯ¸«Åª¼êË¡¤Ç¸¡½Ð¤µ¤ì¡¢Âбþ¤¹" +#~ "¤ë\n" +#~ "DEST ¥Õ¥¡¥¤¥ë¤ÏÁ¤é¤Ê¥Õ¥¡¥¤¥ë¤È¤·¤ÆºîÀ®¤µ¤ì¤ë¡£¤³¤ì¤Ï `--sparse=auto'\n" +#~ "¥ª¥×¥·¥ç¥ó¤ò¤Ä¤±¤¿¤Î¤ÈƱ¤¸¤Ç¤¢¤ë¡£ `--sparse=always' ¤ò»ØÄꤹ¤ë¤È¡¢" +#~ "SOURCE\n" +#~ "¥Õ¥¡¥¤¥ë¤¬¡¢Ä¹¤¤Ï¢Â³¤¹¤ë¥¼¥í¤Î¥Ð¥¤¥È¥·¡¼¥±¥ó¥¹¤ò¤â¤Ã¤Æ¤¤¤ë»þ¤Ë¤Ï¡¢¾ï¤Ë\n" +#~ "Á¤é¤Ê¥Õ¥¡¥¤¥ë¤È¤·¤Æ DEST ¥Õ¥¡¥¤¥ë¤òºîÀ®¤¹¤ë¡£\n" +#~ "\n" +#~ "Á¤é¤Ê¥Õ¥¡¥¤¥ë¤È¤·¤Æ¥Õ¥¡¥¤¥ë¤òºîÀ®¤ò¤·¤¿¤¯¤Ê¤±¤ì¤Ð¡¢--sparse=never\n" +#~ "¥ª¥×¥·¥ç¥ó¤ò»È¤¦¤³¤È¡£\n" + +#~ msgid "" +#~ "Warning: the meaning of `-P' will change in the future to conform to " +#~ "POSIX.\n" +#~ "Use `--parents' for the old meaning, and `--no-dereference' for the new " +#~ "one." +#~ msgstr "" +#~ "·Ù¹ð: `-P' ¤Î°ÕÌ£¤Ï POSIX ¤Ë½àµò¤¹¤ë¤¿¤á¤Ë¶á¡¹Êѹ¹¤µ¤ì¤Þ¤¹¡£²áµî¤Î°ÕÌ£¤È\n" +#~ "¤¹¤ë¤¿¤á¤Ë¤Ï `--parents' ¤ò»È¤¤¡¢¿·¤·¤¤°ÕÌ£¤È¤¹¤ë¤Ë¤Ï `--no-dereference' " +#~ "¤ò\n" +#~ "»È¤Ã¤Æ¤¯¤À¤µ¤¤¡£" + +#~ msgid "" +#~ "Copy a file, converting and formatting according to the options.\n" +#~ "\n" +#~ " bs=BYTES force ibs=BYTES and obs=BYTES\n" +#~ " cbs=BYTES convert BYTES bytes at a time\n" +#~ " conv=KEYWORDS convert the file as per the comma separated keyword " +#~ "list\n" +#~ " count=BLOCKS copy only BLOCKS input blocks\n" +#~ " ibs=BYTES read BYTES bytes at a time\n" +#~ " if=FILE read from FILE instead of stdin\n" +#~ " obs=BYTES write BYTES bytes at a time\n" +#~ " of=FILE write to FILE instead of stdout\n" +#~ " seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +#~ " skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "BLOCKS and BYTES may be followed by the following multiplicative " +#~ "suffixes:\n" +#~ "xM M, c 1, w 2, b 512, kD 1000, k 1024, MD 1,000,000, M 1,048,576,\n" +#~ "GD 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +#~ "Each KEYWORD may be:\n" +#~ "\n" +#~ " ascii from EBCDIC to ASCII\n" +#~ " ebcdic from ASCII to EBCDIC\n" +#~ " ibm from ASCII to alternated EBCDIC\n" +#~ " block pad newline-terminated records with spaces to cbs-size\n" +#~ " unblock replace trailing spaces in cbs-size records with newline\n" +#~ " lcase change upper case to lower case\n" +#~ " notrunc do not truncate the output file\n" +#~ " ucase change lower case to upper case\n" +#~ " swab swap every pair of input bytes\n" +#~ " noerror continue after read errors\n" +#~ " sync pad every input block with NULs to ibs-size; when used\n" +#~ " with block or unblock, pad with spaces rather than NULs\n" +#~ msgstr "" +#~ "¥Õ¥¡¥¤¥ë¤ò¥ª¥×¥·¥ç¥ó»ØÄê¤Ë±þ¤¸¤¿ÊÑ´¹¡¦·Á¼°¤Ç²Ã¹©¤·¤Æ¡¢¥³¥Ô¡¼¤¹¤ë\n" +#~ "\n" +#~ " bs=BYTES ibs=BYTES obs=BYTES ¤Ë¶¯À©¤¹¤ë\n" +#~ " cbs=BYTES °ìÅÙ¤¢¤¿¤ê BYTES ¤Ö¤ó¤ÎÊÑ´¹¤ò¹Ô¤Ê¤¦\n" +#~ " conv=KEYWORDS ¥­¡¼¥ï¡¼¥É¥ê¥¹¥È¤Ç»ØÄꤵ¤ì¤¿¥Õ¥¡¥¤¥ëÊÑ´¹¤ò¹Ô¤Ê¤¦\n" +#~ " ¥­¡¼¥ï¡¼¥É¤Î¥ê¥¹¥È¤Ï¥«¥ó¥Þ¤Ç¶èÀÚ¤ë\n" +#~ " count=BLOCKS ÆþÎÏ¥Ö¥í¥Ã¥¯¤ò BLOCKS ¤ÎÂ礭¤µ¤À¤±¥³¥Ô¡¼¤¹¤ë\n" +#~ " ibs=BYTES °ìÅÙ¤¢¤¿¤ê BYTES ¤Ö¤ó¤ÎÆÉ¤ß¹þ¤ß¤ò¹Ô¤Ê¤¦\n" +#~ " if=FILE ɸ½àÆþÎϤÎÂå¤ï¤ê¤Ë¡¢FILE ¤òÆÉ¤ß¹þ¤à\n" +#~ " obs=BYTES °ìÅÙ¤¢¤¿¤ê BYTES ¤Ö¤ó¤Î½ñ¤­¹þ¤ß¤ò¹Ô¤Ê¤¦\n" +#~ " of=FILE ɸ½à½ÐÎϤÎÂå¤ï¤ê¤Ë¡¢FILE ¤Ø½ñ¤­¹þ¤à\n" +#~ " seek=BLOCKS obs ¥µ¥¤¥º¤Î BLOCKS ¤Ö¤ó½ñ¤­¹þ¤ß³«»Ï°ÌÃÖ¤ò¥¹¥­¥Ã¥×¤¹" +#~ "¤ë\n" +#~ " skip=BLOCKS ibs ¥µ¥¤¥º¤Î BLOCKS ¤Ö¤óÆÉ¤ß¹þ¤ß³«»Ï°ÌÃÖ¤ò¥¹¥­¥Ã¥×¤¹" +#~ "¤ë\n" +#~ " --help »È¤¤Êý¤òɽ¼¨¤·¤Æ½ªÎ»¤¹¤ë\n" +#~ " --version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤·¤Æ½ªÎ»¤¹¤ë\n" +#~ "\n" +#~ "BLOCKS ¤ä BYTES ¤Î»ØÄê¤Ë¤Ï¡¢°Ê²¼¤ÎÍͤÊÇÜ¿ô»ì¥µ¥Õ¥£¥Ã¥¯¥¹¤ò»ØÄê¤Ç¤­¤Þ¤¹:\n" +#~ "xM M, c 1, w 2, b 512, kD 1000, k 1024, MD 1,000,000, M 1,048,576,\n" +#~ "GD 1,000,000,000, G 1,073,741,824, ¤½¤Î¤Û¤« T, P, E, Z, Y ¤ò»È¤¨¤Þ¤¹¡£\n" +#~ "¥­¡¼¥ï¡¼¥É¤Î»ØÄê¤Ë¤Ï¡¢°Ê²¼¤Î¤â¤Î¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£\n" +#~ "\n" +#~ " ascii EBCDIC ¤«¤é ASCII ¤ËÊÑ´¹\n" +#~ " ebcdic ASCII ¤«¤é EBCDIC ¤ËÊÑ´¹\n" +#~ " ibm ASCII ¤«¤é ÂåÂØ EBCDIC ¤ËÊÑ´¹\n" +#~ " block ²þ¹Ô¤Ç¶èÀÚ¤é¤ì¤¿¥ì¥³¡¼¥É¤ò¡¢cbs ¤Ç»ØÄꤵ¤ì¤¿¥Ö¥í¥Ã¥¯¥µ¥¤¥º¤Ë\n" +#~ " ¹ç¤ï¤»¤ë¡£Â­¤ê¤Ê¤¤Éôʬ¤Ï¶õÇò¤ÇËä¤á¤ë\n" +#~ " unblock cbs ¤Ç»ØÄꤵ¤ì¤¿¥Ö¥í¥Ã¥¯ËöÈø¤Î¶õÇò¤ò²þ¹Ô¤ËÊÑ´¹¤¹¤ë\n" +#~ " lcase Âçʸ»ú¤ò¾®Ê¸»ú¤ËÊÑ´¹¤¹¤ë\n" +#~ " notrunc ½ÐÎÏ¥Õ¥¡¥¤¥ë¤ÎÀÚ¤êµÍ¤á¤ò¹Ô¤Ê¤ï¤Ê¤¤\n" +#~ " ucase ¾®Ê¸»ú¤òÂçʸ»ú¤ËÊÑ´¹¤¹¤ë\n" +#~ " swab ´ñ¿ô¥Ð¥¤¥È¤È¶ö¿ô¥Ð¥¤¥È¤òÆþ¤ìÂØ¤¨¤ë\n" +#~ " noerror ÆþÎÏ¥¨¥é¡¼¤¬È¯À¸¤·¤Æ¤â¡¢½èÍý¤ò·Ñ³¤¹¤ë\n" +#~ " sync ÆþÎÏ¥Õ¥¡¥¤¥ë¤ËϢ³¤·¤¿ NUL ¤òµÍ¤á¤Æ¡¢ibs ¤Ç»ØÄꤷ¤¿¥Ö¥í¥Ã¥¯\n" +#~ " ¥µ¥¤¥º¤Ë¹ç¤ï¤»¤ë\n" + +#~ msgid "" +#~ "Show information about the filesystem on which each FILE resides,\n" +#~ "or all filesystems by default.\n" +#~ "\n" +#~ " -a, --all include filesystems having 0 blocks\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " -H, --si likewise, but use powers of 1000 not 1024\n" +#~ " -i, --inodes list inode information instead of block usage\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l, --local limit listing to local filesystems\n" +#~ " -m, --megabytes like --block-size=1048576\n" +#~ " --no-sync do not invoke sync before getting usage info " +#~ "(default)\n" +#~ " -P, --portability use the POSIX output format\n" +#~ " --sync invoke sync before getting usage info\n" +#~ " -t, --type=TYPE limit listing to filesystems of type TYPE\n" +#~ " -T, --print-type print filesystem type\n" +#~ " -x, --exclude-type=TYPE limit listing to filesystems not of type " +#~ "TYPE\n" +#~ " -v (ignored)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "¥Õ¥¡¥¤¥ë¤¬Â°¤¹¤ë¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Ë¤Ä¤¤¤Æ¤Î¾ðÊó¤òɽ¼¨¤¹¤ë¡£\n" +#~ "°¿¤¤¤Ï¡¢»ØÄ꤬¤Ê¤±¤ì¤Ð¡¢Á´¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î»ÈÍÑÎ̤òɽ¼¨¤¹¤ë¡£\n" +#~ "\n" +#~ " -a, --all 0 ¥Ö¥í¥Ã¥¯¤Î¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤âɽ¼¨¤µ¤»¤ë\n" +#~ " --block-size=¥µ¥¤¥º »ØÄꥵ¥¤¥º¤ÎÂ礭¤µ¤ò 1 ¥Ö¥í¥Ã¥¯¤È¤¹¤ë\n" +#~ " -h, --human-readable ¿Í¤Ë²ò¤ê¤ä¤¹¤¤·Á¼°¤Çɽ¼¨¤¹¤ë (Îã: 1K 234M 2G)\n" +#~ " -H, --si Ʊ¾å¡£Ã¢¤·¡¢·åÉý¤ò 1024 ¤ÎÂå¤ï¤ê¤Ë 1000 ¤È¤¹¤ë\n" +#~ " -i, --inodes ¥Ö¥í¥Ã¥¯»ÈÍѾðÊó¤ÎÂå¤ï¤ê¤Ë¡¢inode ¾ðÊó¤òɽ¼¨\n" +#~ " -k, --kilobytes ¥­¥í¥Ð¥¤¥Èñ°Ì¤Çɽ¼¨\n" +#~ " -l, --local ¥í¡¼¥«¥ë¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¤ßɽ¼¨¤¹¤ë\n" +#~ " -m, --megabytes ¥á¥¬¥Ð¥¤¥Èñ°Ì¤Çɽ¼¨\n" +#~ " --no-sync ¥­¥ã¥Ã¥·¥å¤È¥Ç¥£¥¹¥¯¤È¤ÎƱ´ü¤ò¼è¤é¤º¤Ëɽ¼¨(ɸ½à)\n" +#~ " -P, --portability POSIX ·Á¼°¤Î½ÐÎÏ¥Õ¥©¡¼¥Þ¥Ã¥È¤òÍøÍѤ¹¤ë\n" +#~ " --sync ¥­¥ã¥Ã¥·¥å¤È¥Ç¥£¥¹¥¯¤È¤ÎƱ´ü¤ò¼è¤Ã¤Æ¤«¤éɽ¼¨\n" +#~ " -t, --type=¥¿¥¤¥× »ØÄꤷ¤¿¥¿¥¤¥×¤Î¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¤ßɽ¼¨¤¹¤ë\n" +#~ " -T, --print-type ¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¼ïÎà¤òɽ¼¨¤¹¤ë\n" +#~ " -x, --exclude-type=¥¿¥¤¥× »ØÄꤷ¤¿¥¿¥¤¥×¤Î¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à°Ê³°¤òɽ¼¨¤¹" +#~ "¤ë\n" +#~ " -v (̵»ë¤µ¤ì¤ë)\n" +#~ " --help »È¤¤Êý¤òɽ¼¨¤¹¤ë\n" +#~ " --version ¥Ð¡¼¥¸¥ç¥óÈÖ¹æ¤òɽ¼¨¤¹¤ë\n" + +#~ msgid "" +#~ "Summarize disk usage of each FILE, recursively for directories.\n" +#~ "\n" +#~ " -a, --all write counts for all files, not just directories\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -b, --bytes print size in bytes\n" +#~ " -c, --total produce a grand total\n" +#~ " -D, --dereference-args dereference PATHs when symbolic link\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " -H, --si likewise, but use powers of 1000 not 1024\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l, --count-links count sizes many times if hard linked\n" +#~ " -L, --dereference dereference all symbolic links\n" +#~ " -m, --megabytes like --block-size=1048576\n" +#~ " -S, --separate-dirs do not include size of subdirectories\n" +#~ " -s, --summarize display only a total for each argument\n" +#~ " -x, --one-file-system skip directories on different filesystems\n" +#~ " -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +#~ "FILE.\n" +#~ " --exclude=PAT Exclude files that match PAT.\n" +#~ " --max-depth=N print the total for a directory (or file, with --" +#~ "all)\n" +#~ " only if it is N or fewer levels below the " +#~ "command\n" +#~ " line argument; --max-depth=0 is the same as\n" +#~ " --summarize\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "¥Õ¥¡¥¤¥ëËè¤Î¥Ç¥£¥¹¥¯»ÈÍÑÎ̤ò½¸·×¤¹¤ë¡£¥Ç¥£¥ì¥¯¥È¥ê¤ÏºÆµ¢Åª¤Ë½èÍý¤¹¤ë¡£\n" +#~ "\n" +#~ " -a, --all ¥Ç¥£¥ì¥¯¥È¥ê¤À¤±¤Ç¤Ê¤¯¡¢Á´¤Æ¤Î¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤ÆÉ½" +#~ "¼¨\n" +#~ " --block-size=¥µ¥¤¥º »ØÄꥵ¥¤¥º¤ÎÂ礭¤µ¤ò 1 ¥Ö¥í¥Ã¥¯¤È¤¹¤ë\n" +#~ " -b, --bytes ¥Ð¥¤¥Èñ°Ì¤Çɽ¼¨¤¹¤ë\n" +#~ " -c, --total ¹ç·×¤òɽ¼¨¤¹¤ë\n" +#~ " -D, --dereference-args ¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤Î¾ì¹ç¤Ï¡¢»²¾ÈÀè¤òé¤ë\n" +#~ " -h, --human-readable ¿Í¤Ë²ò¤ê¤ä¤¹¤¤·Á¼°¤Çɽ¼¨¤¹¤ë (Îã: 1K 234M 2G)\n" +#~ " -H, --si Ʊ¾å¡£Ã¢¤·¡¢·åÉý¤ò 1024 ¤ÎÂå¤ï¤ê¤Ë 1000 ¤È¤¹¤ë\n" +#~ " -k, --kilobytes ¥­¥í¥Ð¥¤¥Èñ°Ì¤Çɽ¼¨¤¹¤ë\n" +#~ " -l, --count-links Ʊ¤¸¥Õ¥¡¥¤¥ë¤ò¼¨¤¹¥Ï¡¼¥É¥ê¥ó¥¯¤Î¾ì¹ç¤Ç¤¢¤Ã¤Æ¤â\n" +#~ " Á´¤Æ½¸·×¤Ë²Ã¤¨¤ë\n" +#~ " -L, --dereference Á´¤Æ¤Î¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤Î»²¾ÈÀè¤òé¤ë\n" +#~ " -m, --megabytes ¥á¥¬¥Ð¥¤¥Èñ°Ì¤Çɽ¼¨¤¹¤ë\n" +#~ " -S, --separate-dirs ¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê¤Î¥µ¥¤¥º¤ò½¸·×¤Ë´Þ¤á¤Ê¤¤\n" +#~ " -s, --summarize °ú¿ôËè¤Î¹ç·×¤Î¤ßɽ¼¨¤¹¤ë\n" +#~ " -x, --one-file-system °Û¤Ê¤ë¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ï½¸·×¤·¤Ê" +#~ "¤¤\n" +#~ " -X ¥Õ¥¡¥¤¥ë, --exclude-from=¥Õ¥¡¥¤¥ë »ØÄê¥Õ¥¡¥¤¥ëÃæ¤Î¥Ñ¥¿¡¼¥ó¤Ë°ìÃפ¹" +#~ "¤ë\n" +#~ " ¥Õ¥¡¥¤¥ë¤Ï½¸·×¤·¤Ê¤¤\n" +#~ " --exclude=¥Ñ¥¿¡¼¥ó ¥Ñ¥¿¡¼¥ó¤Ë°ìÃפ¹¤ë¥Õ¥¡¥¤¥ë¤Ï½¸·×¤·¤Ê¤¤\n" +#~ " --max-depth=N ¥³¥Þ¥ó¥É¥é¥¤¥ó°ú¿ô¤è¤ê¡¢ºÇÂç N ¸Ä²¼¤Î³¬ÁؤޤǤÎ\n" +#~ " ¥Ç¥£¥ì¥¯¥È¥ê(--all ¤Î»ØÄê¤Ç¥Õ¥¡¥¤¥ë¤â)¤ò½¸·×¤¹¤ë\n" +#~ " --max-depth=0 ¤Ê¤é¡¢--summarize ¤ÈƱÅù¤È¤Ê¤ë\n" +#~ " --help »È¤¤Êý¤òɽ¼¨¤¹¤ë\n" +#~ " --version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤¹¤ë\n" + +#~ msgid "" +#~ "In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +#~ "the existing DIRECTORY, while setting permission modes and owner/group.\n" +#~ "In the third format, create all components of the given DIRECTORY(ies).\n" +#~ "\n" +#~ " --backup[=CONTROL] make a backup of each existing destination file\n" +#~ " -b like --backup but does not accept an argument\n" +#~ " -c (ignored)\n" +#~ " -d, --directory treat all arguments as directory names; create all\n" +#~ " components of the specified directories\n" +#~ " -D create all leading components of DEST except the " +#~ "last,\n" +#~ " then copy SOURCE to DEST; useful in the 1st " +#~ "format\n" +#~ " -g, --group=GROUP set group ownership, instead of process' current " +#~ "group\n" +#~ " -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-" +#~ "xr-x\n" +#~ " -o, --owner=OWNER set ownership (super-user only)\n" +#~ " -p, --preserve-timestamps apply access/modification times of SOURCE " +#~ "files\n" +#~ " to corresponding destination files\n" +#~ " -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +#~ " -S, --suffix=SUFFIX override the usual backup suffix\n" +#~ " -v, --verbose print the name of each directory as it is created\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Á°Æó¤Ä¤Î½ñ¼°¤Ç¤Ï¡¢SOURCE ¥Õ¥¡¥¤¥ë¤ò DEST ¤Ø¥³¥Ô¡¼¤¹¤ë¤«¡¢Ê£¿ô¤Î SOURCE\n" +#~ "¥Õ¥¡¥¤¥ë¤ò´û¸¥Ç¥£¥ì¥¯¥È¥ê¤Ø¥³¥Ô¡¼¤·¤Þ¤¹¡£Æ±»þ¤Ë¥¢¥¯¥»¥¹¸¢¡¢½êÍ­¼Ô¤ä¥°¥ë¡¼" +#~ "¥×\n" +#~ "¤âÀßÄꤷ¤Þ¤¹¡£»°¤ÄÌܤνñ¼°¤Ç¤Ï¡¢»ØÄꤵ¤ì¤¿¥Ç¥£¥ì¥¯¥È¥ê¤òÁ´¤ÆºîÀ®¤·¤Þ¤¹¡£\n" +#~ "\n" +#~ " --backup[=CONTROL] ¥Õ¥¡¥¤¥ë¤ò¾å½ñ¤­¤¹¤ëÁ°¤Ë¥Ð¥Ã¥¯¥¢¥Ã¥×¤òºîÀ®¤¹¤ë\n" +#~ " -b °ú¿ô¤ò¼è¤é¤Ê¤¤¤³¤È°Ê³°¤Ï --backup ¤ÈƱ¤¸\n" +#~ " -c (̵»ë¤µ¤ì¤ë)\n" +#~ " -d, --directory Á´¤Æ¤Î°ú¿ô¤ò¥Ç¥£¥ì¥¯¥È¥ê̾¤Ç¤¢¤ë¤È²ò¼á¤¹¤ë\n" +#~ " »ØÄꤵ¤ì¤¿¥Ç¥£¥ì¥¯¥È¥ê¤ò°ìÅ٤˺îÀ®¤¹¤ë\n" +#~ " -D DEST ¤ÎºÇ¸å°Ê³°¤Î¥Õ¥¡¥¤¥ë¤ò¤Þ¤ºÁ´¤ÆºîÀ®¤·¡¢¤½¤Î¸å" +#~ "¤Ç\n" +#~ " SOURCE ¤ò DEST ¤Ë¥³¥Ô¡¼¤¹¤ë¡£°ìÈÖÌܤνñ¼°¤ËÍ­" +#~ "¸ú\n" +#~ " -g, --group=GROUP ¸½ºß¤Î¥×¥í¥»¥¹¥°¥ë¡¼¥×¤ÎÂå¤ï¤ê¤Ë¥°¥ë¡¼¥×°À­¤ò»ØÄê" +#~ "¤¹¤ë\n" +#~ " -m, --mode=MODE ¥¢¥¯¥»¥¹¥â¡¼¥É¤òÊѹ¹¤¹¤ë¡£(»ØÄ̵꤬¤±¤ì¤Ð rwxr-xr-" +#~ "x)\n" +#~ " -o, --owner=OWNER ½êÍ­¼Ô¤òÊѹ¹¤¹¤ë (¥¹¡¼¥Ñ¡¼¥æ¡¼¥¶¡¼¤À¤±¤¬²Äǽ)\n" +#~ " -p, --preserve-timestamps SOURCE ¥Õ¥¡¥¤¥ë¤Î¥¢¥¯¥»¥¹¡¦Êѹ¹»þ¹ï¤òÂбþ¤¹" +#~ "¤ë\n" +#~ " DEST ¥Õ¥¡¥¤¥ë¤Ë¤âÍøÍѤ¹¤ë\n" +#~ " -s, --strip ¥·¥ó¥Ü¥ë¥Æ¡¼¥Ö¥ë¤òÇí¤®Íî¤È¤¹ 1 Ëô¤Ï 2 ÈÖÌܤηÁ¼°" +#~ "¤Î\n" +#~ " °ú¿ô¤ÎºÝ¤Ë¤Î¤ßÍøÍѲÄ\n" +#~ " -S, --suffix=SUFFIX ÉáÃʤΥХ寥¢¥Ã¥×¥µ¥Õ¥£¥Ã¥¯¥¹¤ò̵»ë¤¹¤ë\n" +#~ " --verbose ¥Ç¥£¥ì¥¯¥È¥ê¤òºîÀ®¤¹¤ë¤¿¤Ó¤Ë¡¢¤½¤Î̾Á°¤òɽ¼¨¤¹¤ë\n" +#~ " --help »È¤¤Êý¤òɽ¼¨¤¹¤ë\n" +#~ " --version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤¹¤ë\n" +#~ "\n" + +#~ msgid "" +#~ "Create a link to the specified TARGET with optional LINK_NAME.\n" +#~ "If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +#~ "created in the current directory. When using the second form with more\n" +#~ "than one TARGET, the last argument must be a directory; create links\n" +#~ "in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +#~ "links with --symbolic. When creating hard links, each TARGET must " +#~ "exist.\n" +#~ "\n" +#~ " --backup[=CONTROL] make a backup of each existing destination " +#~ "file\n" +#~ " -b like --backup but does not accept an " +#~ "argument\n" +#~ " -d, -F, --directory hard link directories (super-user only)\n" +#~ " -f, --force remove existing destination files\n" +#~ " -n, --no-dereference treat destination that is a symlink to a\n" +#~ " directory as if it were a normal file\n" +#~ " -i, --interactive prompt whether to remove destinations\n" +#~ " -s, --symbolic make symbolic links instead of hard links\n" +#~ " -S, --suffix=SUFFIX override the usual backup suffix\n" +#~ " --target-directory=DIRECTORY specify the DIRECTORY in which to " +#~ "create\n" +#~ " the links\n" +#~ " -v, --verbose print name of each file before linking\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "TARGET ¤Ë»ØÄꤷ¤¿¥Õ¥¡¥¤¥ë¤ËÂФ·¤Æ¡¢Ç¤°Õ¤Î¥ê¥ó¥¯Ì¾¤Ç¥ê¥ó¥¯¤òºîÀ®¤¹¤ë¡£\n" +#~ "¥ê¥ó¥¯Ì¾¤¬¾Êά¤µ¤ì¤¿¾ì¹ç¡¢TARGET ¤ÈƱ¤¸¥Ù¡¼¥¹¥Õ¥¡¥¤¥ë̾¤Î¥ê¥ó¥¯¤ò¸½ºß¤Î\n" +#~ "¥Ç¥£¥ì¥¯¥È¥ê¤ËºîÀ®¤¹¤ë¡£Ê£¿ô¤Î TARGET ¤¬»ØÄꤵ¤ì¤ëÍͤʡ¢ÆóÈÖÌܤηÁ¼°¤ò\n" +#~ "»È¤Ã¤¿¾ì¹ç¡¢ºÇ¸å¤Î°ú¿ô¤Ï¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤Ê¤±¤ì¤Ð¤Ê¤é¤Ê¤¤¡£\n" +#~ "-- ¤³¤Î¾ì¹ç¡¢¥Ç¥£¥ì¥¯¥È¥ê¤ÎÃæ¤Ë¤½¤ì¤¾¤ì¤ÎÂоݥե¡¥¤¥ëËè¤Ë¥ê¥ó¥¯¤òºîÀ®¤¹" +#~ "¤ë¡£\n" +#~ "ÆÃ¤Ë»ØÄ꤬¤Ê¤¤¾ì¹ç¡¢¥Ï¡¼¥É¥ê¥ó¥¯¤òºîÀ®¤¹¤ë¤Î¤Ç¡¢¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤ò\n" +#~ "ºîÀ®¤¹¤ë¤Ë¤Ï¡¢--symbolic ¤ò»ØÄꤹ¤ë¡£¥Ï¡¼¥É¥ê¥ó¥¯¤òºîÀ®¤¹¤ë¾ì¹ç¡¢\n" +#~ "TARGET ¥Õ¥¡¥¤¥ë¤ÏºîÀ®»þ¤Ë¸ºß¤·¤Æ¤¤¤Ê¤±¤ì¤Ð¤Ê¤é¤Ê¤¤¡£\n" +#~ "\n" +#~ " --backup[=CONTROL] ºîÀ®¤¹¤ë¥ê¥ó¥¯¤Î¥Õ¥¡¥¤¥ë̾¤¬´û¤Ë¸ºß¤¹¤ë¾ì" +#~ "¹ç¡¢\n" +#~ " ¥Ð¥Ã¥¯¥¢¥Ã¥×¤òºîÀ®¤¹¤ë\n" +#~ " -b °ú¿ô¤ò¼è¤é¤Ê¤¤»ö°Ê³°¤Ï --backup ¤ÈƱ¤¸\n" +#~ " -d, -F, --directory ¥Ç¥£¥ì¥¯¥È¥ê¤ËÂФ¹¤ë¥Ï¡¼¥É¥ê¥ó¥¯¤òºîÀ®\n" +#~ " (´ÉÍý¼Ô(root) ¤Î¤ßÍøÍѲÄǽ)\n" +#~ " -f, --force ´û¸¤Î TARGET ¥Õ¥¡¥¤¥ë¤Ïºï½ü¤¹¤ë\n" +#~ " -n, --no-dereference »ØÄꤷ¤¿¥ê¥ó¥¯Ì¾¤¬Ä̾ï¥Õ¥¡¥¤¥ë¤Ç¤¢¤Ã¤Æ¤â¡¢\n" +#~ " ¥Ç¥£¥ì¥¯¥È¥ê¤Ø¤Î¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤È¸«¤Ê" +#~ "¤¹\n" +#~ " -i, --interactive ¾å½ñ¤­¤¹¤ëÁ°¤Ë³Îǧ¤ò¤È¤ë\n" +#~ " -s, --symbolic ¥Ï¡¼¥É¥ê¥ó¥¯¤Ç¤Ï¤Ê¤¯¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤òºîÀ®" +#~ "¤¹¤ë\n" +#~ " -S, --suffix=SUFFIX ¥Ð¥Ã¥¯¥¢¥Ã¥×¥µ¥Õ¥£¥Ã¥¯¥¹¤ò»ØÄꤹ¤ë\n" +#~ " --target-directory=DIR ¥ê¥ó¥¯¤òºîÀ®¤¹¤ë¥Ç¥£¥ì¥¯¥È¥ê¤ò DIR ¤Ë»ØÄꤹ" +#~ "¤ë\n" +#~ " -v, --verbose ½èÍýÆâÍÆ¤Î¾ÜºÙ¤òɽ¼¨¤¹¤ë\n" +#~ " --help »È¤¤Êý¤òɽ¼¨¤·¤Æ½ªÎ»¤¹¤ë\n" +#~ " --version ¥Ð¡¼¥¸¥ç¥óÈÖ¹æ¤òɽ¼¨¤·¤Æ½ªÎ»¤¹¤ë\n" +#~ "\n" + +#, fuzzy +#~ msgid "%a %b %d %H:%M:%S %Y" +#~ msgstr "%b %e %H:%M %Y" + +#~ msgid "" +#~ "List information about the FILEs (the current directory by default).\n" +#~ "Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +#~ "\n" +#~ " -a, --all do not hide entries starting with .\n" +#~ " -A, --almost-all do not list implied . and ..\n" +#~ " -b, --escape print octal escapes for nongraphic " +#~ "characters\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -B, --ignore-backups do not list implied entries ending with ~\n" +#~ " -c with -lt: sort by, and show, ctime (time of " +#~ "last\n" +#~ " modification of file status information)\n" +#~ " with -l: show ctime and sort by name\n" +#~ " otherwise: sort by ctime\n" +#~ " -C list entries by columns\n" +#~ " --color[=WHEN] control whether color is used to distinguish " +#~ "file\n" +#~ " types. WHEN may be `never', `always', or " +#~ "`auto'\n" +#~ " -d, --directory list directory entries instead of contents\n" +#~ " -D, --dired generate output designed for Emacs' dired " +#~ "mode\n" +#~ " -f do not sort, enable -aU, disable -lst\n" +#~ " -F, --classify append indicator (one of */=@|) to entries\n" +#~ " --format=WORD across -x, commas -m, horizontal -x, long -" +#~ "l,\n" +#~ " single-column -1, verbose -l, vertical -C\n" +#~ " --full-time list both full date and full time\n" +#~ msgstr "" +#~ "»ØÄꤵ¤ì¤¿¥Õ¥¡¥¤¥ë¤Î¾ðÊó¤ò¥ê¥¹¥È½ÐÎϤ¹¤ë(¾Êά»þ¤Ï¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê)¡£\n" +#~ "-cftuSUX ¤â --sort ¤â»ØÄ꤬¤Ê¤¤¤È¡¢¥¢¥ë¥Õ¥¡¥Ù¥Ã¥È½ç¤Ë¥½¡¼¥È¤¹¤ë¡£\n" +#~ "\n" +#~ " -a, --all '.' ¤Ç»Ï¤Þ¤ë±£¤·¥Õ¥¡¥¤¥ë¤âɽ¼¨¤¹¤ë\n" +#~ " -A, --almost-all '.' ¤Ç»Ï¤Þ¤ë±£¤·¥Õ¥¡¥¤¥ë¤âɽ¼¨¤¹¤ë¤¬¡¢\n" +#~ " °ÅÌۤΠ. ¤È .. ¤Ïɽ¼¨¤·¤Ê¤¤\n" +#~ " -b, --escape ¥Ð¥Ã¥¯¥¹¥é¥Ã¥·¥å¥·¡¼¥±¥ó¥¹¤Ê¤É¤Î\n" +#~ " Èóɽ¼¨Ê¸»ú¤ò¥¨¥¹¥±¡¼¥×¤¹¤ë\n" +#~ " --block-size=SIZE SIZE ¤ò 1 ¥Ö¥í¥Ã¥¯¤ÎÂ礭¤µ¤È¤¹¤ë¡£\n" +#~ " -B, --ignore-backups ~ ¤¬ºÇ¸å¤Ë¤Ä¤¯¥Õ¥¡¥¤¥ë¤ò¥ê¥¹¥Èɽ¼¨¤·¤Ê¤¤\n" +#~ " -c -lt ÉÕ: ctime (ºÇ½ª¹¹¿·»þ¹ï) ¤Ç¥½¡¼¥È¤·É½¼¨" +#~ "¤¹¤ë\n" +#~ " -l ÉÕ : ctime ¤òɽ¼¨¤·¡¢Ì¾Á°¤Ç¥½¡¼¥È¤¹¤ë\n" +#~ " ¤½¤Î¾: ctime ¤Ç¥½¡¼¥È¤¹¤ë\n" +#~ " -C ¿âľÊý¸þ¤Ë¹àÌܤò¥ê¥¹¥È¤¹¤ë\n" +#~ " --color[=WHEN] ¥Õ¥¡¥¤¥ë¥¿¥¤¥×¤Ë±þ¤¸¤Æ¿§¤Å¤±¤·¤ÆÉ½¼¨¤¹¤ë\n" +#~ " WHEN ¤Ë¤Ï`never', `always' Ëô¤Ï `auto' ¤¬" +#~ "Æþ¤ë\n" +#~ " -d, --directory ¥Ç¥£¥ì¥¯¥È¥ê¤òÃæ¿È¤òɽ¼¨¤¹¤ë¤Î¤Ç¤Ï¤Ê¤¯\n" +#~ " ¾¤Î¥Õ¥¡¥¤¥ë¤ÈƱ¤¸¤è¤¦¤Ëɽ¼¨¤¹¤ë\n" +#~ " -D, --dired Emacs ¤Î dired-mode ¤Î¤è¤¦¤Êɽ¼¨·Á¼°¤Ë¤¹¤ë\n" +#~ " -f ¥½¡¼¥È¤·¤Ê¤¤¡£-aU ¤¬Í­¸ú¡¢-lst ¤ò̵¸ú\n" +#~ " -F, --classify ¥Õ¥¡¥¤¥ë̾¤Î·¿¤ò¼¨¤¹Ê¸»ú (*/=@) ¤òÉÕ¤±¤ë\n" +#~ " --format=WORD across -x, commas -m, horizontal -x, long -" +#~ "l,\n" +#~ " single-column -1, verbose -l, vertical -C\n" +#~ " --full-time ÆüÉÕ¡¦»þ¹ï¤Ë´Ø¤¹¤ëÁ´¤Æ¤Î¾ðÊó¤òɽ¼¨¤¹¤ë\n" + +#~ msgid "" +#~ " -g (ignored)\n" +#~ " -G, --no-group inhibit display of group information\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " --si likewise, but use powers of 1000 not 1024\n" +#~ " -H same as `--si' for now; soon to change\n" +#~ " to conform to POSIX\n" +#~ " --indicator-style=WORD append indicator with style WORD to entry " +#~ "names:\n" +#~ " none (default), classify (-F), file-type (-" +#~ "p)\n" +#~ " -i, --inode print index number of each file\n" +#~ " -I, --ignore=PATTERN do not list implied entries matching shell " +#~ "PATTERN\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l use a long listing format\n" +#~ " -L, --dereference list entries pointed to by symbolic links\n" +#~ " -m fill width with a comma separated list of " +#~ "entries\n" +#~ " -n, --numeric-uid-gid list numeric UIDs and GIDs instead of names\n" +#~ " -N, --literal print raw entry names (don't treat e.g. " +#~ "control\n" +#~ " characters specially)\n" +#~ " -o use long listing format without group info\n" +#~ " -p, --file-type append indicator (one of /=@|) to entries\n" +#~ " -q, --hide-control-chars print ? instead of non graphic characters\n" +#~ " --show-control-chars show non graphic characters as-is (default\n" +#~ " unless program is `ls' and output is a " +#~ "terminal)\n" +#~ " -Q, --quote-name enclose entry names in double quotes\n" +#~ " --quoting-style=WORD use quoting style WORD for entry names:\n" +#~ " literal, locale, shell, shell-always, c, " +#~ "escape\n" +#~ " -r, --reverse reverse order while sorting\n" +#~ " -R, --recursive list subdirectories recursively\n" +#~ " -s, --size print size of each file, in blocks\n" +#~ msgstr "" +#~ " -g (̵»ë¤µ¤ì¤ë)\n" +#~ " -G, --no-group ¥°¥ë¡¼¥×¾ðÊó¤Îɽ¼¨¤ò¹Ô¤Ê¤ï¤Ê¤¤\n" +#~ " -h, --human-readable ¿Í¤Ë²ò¤ê¤ä¤¹¤¤·Á¼°¤Ç½ÐÎϤ¹¤ë (Îã: 1K 234M " +#~ "2G)\n" +#~ " --si Ʊ¾å¡£Ã¢¤·¡¢ÇÜ¿ô¤ò 1024 ¤Ç¤Ê¤¯¡¢1000 ¤È¤¹¤ë\n" +#~ " -H º£¤Î¤È¤³¤í `--si' ¤ÈƱ¤¸¤À¤¬¡¢¶á¡¹ POSIX ¤Ë\n" +#~ " ½àµò¤·¤¿Æ°ºî¤ËÊѹ¹¤µ¤ì¤ë\n" +#~ " --indicator-style=WORD ¥Õ¥¡¥¤¥ëɸ¼±¥¹¥¿¥¤¥ë¤Î»ØÄê¡£WORD ¤È¤·¤Æ»È¤¨" +#~ "¤ë\n" +#~ " ñ¸ì¤Ï°Ê²¼¤ÎÄ̤ê\n" +#~ " none (ɸ½à), classify (-F), file-type " +#~ "(-p)\n" +#~ " -i, --inode ¥Õ¥¡¥¤¥ë¤Î¥¤¥ó¥Ç¥Ã¥¯¥¹ÈÖ¹æ¤òɽ¼¨¤¹¤ë\n" +#~ " -I, --ignore=PATTERN PATTERN ¤È¾È¹ç¤¹¤ë¥ê¥¹¥È¤òɽ¼¨¤·¤Ê¤¤\n" +#~ " -k, --kilobytes --block-size=1024 ¤ÈƱÅù\n" +#~ " -l ¾ÜºÙ¥ê¥¹¥È·Á¼°¤òɽ¼¨¤¹¤ë\n" +#~ " -L, --dereference ¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤ò¥ê¥¹¥Èɽ¼¨" +#~ "¤¹¤ë\n" +#~ " -m ¥Õ¥¡¥¤¥ë¤ò¥³¥ó¥Þ `,' ¤Ç¶èÀڤꡢ°ì¹Ô¤Ë¤Ç¤­¤ë¸Â" +#~ "¤ê\n" +#~ " ¥Õ¥¡¥¤¥ë¤òɽ¼¨¤¹¤ë\n" +#~ " -n, --numeric-uid-gid UID ¤ä GID ¤ò̾Á°¤Ç¤Ê¤¯ÈÖ¹æ¤Çɽ¼¨¤¹¤ë\n" +#~ " -N, --literal À¸¤Î¹àÌÜ̾¤òɽ¼¨¤¹¤ë\n" +#~ " (Î㤨¤Ð¡¢¥³¥ó¥È¥í¡¼¥ëʸ»ú¤òÆÃḚ̂·¤¤¤·¤Ê" +#~ "¤¤)\n" +#~ " -o ½êÍ­¥°¥ë¡¼¥×½ü¤¤¤¿¾ÜºÙ¥ê¥¹¥È·Á¼°¤Çɽ¼¨¤¹¤ë\n" +#~ " -p, --file-type ¥Õ¥¡¥¤¥ë¤ËÌܰõ(/=@! ¤Î¤É¤ì¤«)¤ò¹àÌܤËÉÕ¤±Â­" +#~ "¤¹\n" +#~ " -q, --hide-control-chars ɽ¼¨¤Ç¤­¤Ê¤¤Ê¸»ú¤ò '?' ¤ËÃÖ¤­´¹¤¨¤ë\n" +#~ " --show-control-chars ɽ¼¨¤Ç¤­¤Ê¤¤Ê¸»ú¤â¤½¤Î¤Þ¤Þ½ÐÎϤ¹¤ë(¥×¥í¥°¥é¥à" +#~ "¤¬\n" +#~ " `ls' ¤Ç¤Ï¤Ê¤¤¤«½ÐÎϤ¬Ã¼Ëö¤Ç¤Ï¤Ê¤¤¾ì¹ç¤Î½é´ü" +#~ "¾õÂÖ)\n" +#~ " -Q, --quote-name ¥Õ¥¡¥¤¥ë̾¤ò¥À¥Ö¥ë¥¯¥ª¡¼¥È(\")¤Ç¤¯¤¯¤ë\n" +#~ " --quoting-style=WORD ¹àÌÜ̾¤Î¥¯¥ª¡¼¥È¤Ë WORD ʸ»ú¤ò»È¤¦:\n" +#~ " literal, locale, shell, shell-always, c, " +#~ "escape\n" +#~ " -r, --reverse ¥½¡¼¥È¤òȿž¤¹¤ë\n" +#~ " -R, --recursive ¤¹¤Ù¤Æ¤Î¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê¤òºÆµ¢Åª¤Ëɽ¼¨¤¹¤ë\n" +#~ " -s, --size ³Æ¥Õ¥¡¥¤¥ë¤Î¥Ö¥í¥Ã¥¯¥µ¥¤¥º¤òɽ¼¨¤¹¤ë\n" + +#~ msgid "" +#~ " -S sort by file size\n" +#~ " --sort=WORD extension -X, none -U, size -S, time -t,\n" +#~ " version -v\n" +#~ " status -c, time -t, atime -u, access -u, use " +#~ "-u\n" +#~ " --time=WORD show time as WORD instead of modification " +#~ "time:\n" +#~ " atime, access, use, ctime or status; use\n" +#~ " specified time as sort key if --sort=time\n" +#~ " -t sort by modification time\n" +#~ " -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +#~ " -u with -lt: sort by, and show, access time\n" +#~ " with -l: show access time and sort by " +#~ "name\n" +#~ " otherwise: sort by access time\n" +#~ " -U do not sort; list entries in directory " +#~ "order\n" +#~ " -v sort by version\n" +#~ " -w, --width=COLS assume screen width instead of current " +#~ "value\n" +#~ " -x list entries by lines instead of by columns\n" +#~ " -X sort alphabetically by entry extension\n" +#~ " -1 list one file per line\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "By default, color is not used to distinguish types of files. That is\n" +#~ "equivalent to using --color=none. Using the --color option without the\n" +#~ "optional WHEN argument is equivalent to using --color=always. With\n" +#~ "--color=auto, color codes are output only if standard output is " +#~ "connected\n" +#~ "to a terminal (tty).\n" +#~ msgstr "" +#~ " -S ¥Õ¥¡¥¤¥ë¥µ¥¤¥º¤Ç¥½¡¼¥È¤¹¤ë\n" +#~ " --sort=WORD extension -X, none -U, size -S, time -t,\n" +#~ " version -v\n" +#~ " status -c, time -t, atime -u, access -u, use " +#~ "-u\n" +#~ " --time=WORD »þ¹ï¤ò½¤Àµ»þ¹ï¤Ç¤Ï¤Ê¤¯ WORD ¤Î»þ¹ï¤ò»È¤¦\n" +#~ " atime, access, use, ctime Ëô¤Ï status\n" +#~ " »ØÄꤷ¤¿»þ¹ï¤Ï--sort=time ¤Î¥­¡¼¤È¤·¤Æ»È¤ï" +#~ "¤ì¤ë\n" +#~ " -t ½¤Àµ»þ¹ï¤Ç¥½¡¼¥È¤¹¤ë\n" +#~ " -T, --tabsize=COLS 8 ¤ÎÂå¤ï¤ê¤Ë¥¿¥Ö¥¹¥È¥Ã¥×¤ò COLS ¤È¤ß¤Ê¤¹\n" +#~ " -u -lt ¤ÈÍøÍÑ: ¥¢¥¯¥»¥¹»þ¹ï¤Ç¥½¡¼¥È¤·¡¢É½¼¨¤¹" +#~ "¤ë\n" +#~ " -l ¤ÈÍøÍÑ: ¥¢¥¯¥»¥¹»þ¹ï¤òɽ¼¨¤¹¤ë\n" +#~ " ¤½¤Î¾¤ÈÍøÍÑ: ¥¢¥¯¥»¥¹»þ¹ï¤Ç¥½¡¼¥È¤¹¤ë\n" +#~ " -U ¥½¡¼¥È¤ò¤·¤Ê¤¤ -- ¥Ç¥£¥ì¥¯¥È¥ê½ç¤Ë¥ê¥¹¥È¤¹" +#~ "¤ë\n" +#~ " -v ¥Ð¡¼¥¸¥ç¥ó¤Ç¥½¡¼¥È¤¹¤ë\n" +#~ " -w, --width=COLS ²èÌÌÉý¤ò¸½ºßÃͤǤϤʤ¯ COLS ¤È¸«¤Ê¤¹\n" +#~ " -x ÎóÊý¸þ¤Ç¤Ï¤Ê¤¯¡¢¹ÔÊý¸þ¤Ë¹àÌܤò¥ê¥¹¥È¤¹¤ë\n" +#~ " -X ¹àÌܤγÈÄ¥»Ò½ç¤Ç¥½¡¼¥È¤¹¤ë\n" +#~ " -1 °ì¹Ô¤¢¤¿¤ê¤Ë°ì¤Ä¤Î¥Õ¥¡¥¤¥ë¤ò¥ê¥¹¥È¤¹¤ë\n" +#~ " --help ¤³¤Î¥Ø¥ë¥×¤òɽ¼¨¤·¤Æ½ªÎ»¤¹¤ë\n" +#~ " --version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤·¤Æ½ªÎ»¤¹¤ë\n" +#~ "\n" +#~ "ÆÃ¤Ë»ØÄ꤬¤Ê¤±¤ì¤Ð¡¢color ¤Ï¥Õ¥¡¥¤¥ë¥¿¥¤¥×¤Ë¤è¤Ã¤Æ¶èÊ̤µ¤ì¤Þ¤»¤ó¡£¤³¤ì¤Ï\n" +#~ "--color=none ¤ò»È¤¦¤Î¤ÈƱÅù¤Ç¤¹¡£WHEN °ú¿ô¤ò»ØÄꤻ¤º¤Ë --color ¥ª¥×¥·¥ç¥ó" +#~ "¤ò\n" +#~ "»È¤¦¤È¡¢--color=always ¤ò»È¤¦¤Î¤ÈƱÅù¤Ç¤¹¡£--color=auto ¤ò»È¤¨¤Ð¡¢Àܳ¤µ¤ì" +#~ "¤¿\n" +#~ "üËö(tty)¤Îɸ½à½ÐÎϤˤΤߥ«¥é¡¼¥³¡¼¥É¤ò½ÐÎϤ·¤Þ¤¹¡£\n" + +#~ msgid "" +#~ "Create named pipes (FIFOs) with the given NAMEs.\n" +#~ "\n" +#~ " -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Í¿¤¨¤é¤ì¤¿ `̾Á°' ¤Ç ̾Á°¤Ä¤­¥Ñ¥¤¥×(FIFO)¤òºî¤ë¡£\n" +#~ "\n" +#~ " -m, --mode=MODE ¥¢¥¯¥»¥¹¸¢¤ò(chmod ¤Î¤è¤¦¤Ë)»ØÄꤹ¤ë\n" +#~ " ¾Êά»þ¤Ï a=rw ¤«¤é umask ¤ò°ú¤¤¤¿¤â¤Î¤È¤Ê¤ë\n" +#~ " --help »È¤¤Êý¤òɸ½à½ÐÎϤËɽ¼¨¤¹¤ë\n" +#~ " --version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɸ½à½ÐÎϤËɽ¼¨¤¹¤ë\n" + +#, fuzzy +#~ msgid "cannot create fifo `%s'" +#~ msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#~ msgid "" +#~ "when creating character special files, major and minor device\n" +#~ "numbers must be specified" +#~ msgstr "" +#~ "¥­¥ã¥é¥¯¥¿·¿¥¹¥Ú¥·¥ã¥ë¥Õ¥¡¥¤¥ë¤òºîÀ®¤¹¤ë»þ¤Ï¡¢¥á¥¸¥ã¡¼µÚ¤Ó¥Þ¥¤¥Ê¡¼¥Ç¥Ð¥¤" +#~ "¥¹\n" +#~ "ÈÖ¹æ¤ò»ØÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" + +#~ msgid "" +#~ "Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +#~ "\n" +#~ " --backup[=CONTROL] make a backup of each existing destination " +#~ "file\n" +#~ " -b like --backup but does not accept an " +#~ "argument\n" +#~ " -f, --force never prompt before overwriting\n" +#~ " -i, --interactive prompt before overwrite\n" +#~ " --strip-trailing-slashes remove any trailing slashes from each " +#~ "SOURCE\n" +#~ " argument\n" +#~ " -S, --suffix=SUFFIX override the usual backup suffix\n" +#~ " --target-directory=DIRECTORY move all SOURCE arguments into " +#~ "DIRECTORY\n" +#~ " -u, --update move only older or brand new non-" +#~ "directories\n" +#~ " -v, --verbose explain what is being done\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "SOURCE ¤«¤é DEST ¤ØÌ¾Á°¤òÊѹ¹¡¢¤â¤·¤¯¤Ï¥Õ¥¡¥¤¥ë¤ò¥Ç¥£¥ì¥¯¥È¥ê¤Ø°Üư¤¹" +#~ "¤ë¡£\n" +#~ "\n" +#~ " --backup[=CONTROL] ¥Õ¥¡¥¤¥ë¤ò¾å½ñ¤­¤¹¤ëºÝ, ¥Ð¥Ã¥¯¥¢¥Ã¥×¤ò¤È" +#~ "¤ë\n" +#~ " -b °ú¿ô¤ò¼è¤é¤Ê¤¤¤³¤È°Ê³°¤Ï --backup ¤ÈƱ¤¸\n" +#~ " -f, --force ¶¯À©Åª¤Ë¾å½ñ¤­¤ò¤¹¤ë\n" +#~ " -i, --interactive ¾å½ñ¤­¤ò¤¹¤ëÁ°¤Ë³Îǧ¤ò¤È¤ë\n" +#~ " --strip-trailing-slashes SOURCE °ú¿ô¤«¤é;·×¤Ê¥¹¥é¥Ã¥·¥å¤ò¼è¤ê½ü¤¯\n" +#~ " -S, --suffix=SUFFIX ¥Ð¥Ã¥¯¥¢¥Ã¥×¥µ¥Õ¥£¥Ã¥¯¥¹¤Î»ØÄê\n" +#~ " --target-directory=DIR Á´ SOURCE °ú¿ô¤ò DIR ¥Ç¥£¥ì¥¯¥È¥ê¤Ë°Üư¤¹" +#~ "¤ë\n" +#~ " -u, --update Ʊ°ì¥Õ¥¡¥¤¥ë̾¡¢Æ±°ì¥¿¥¤¥à¥¹¥¿¥ó¥×¤Î\n" +#~ " ¥Õ¥¡¥¤¥ë¤Ï°Üư¤·¤Ê¤¤\n" +#~ " -v --verbose ¹Ô¤Ê¤ï¤ì¤ë¤³¤È¤òÀâÌÀ¤¹¤ë\n" +#~ " --help »È¤¤Êý¤òɸ½à½ÐÎϤËɽ¼¨¤·¤Æ½ªÎ»¤¹¤ë\n" +#~ " --version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɸ½à½ÐÎϤËɽ¼¨¤·¤Æ½ªÎ»¤¹" +#~ "¤ë\n" +#~ "\n" + +#~ msgid "" +#~ "Remove (unlink) the FILE(s).\n" +#~ "\n" +#~ " -d, --directory unlink directory, even if non-empty (super-user " +#~ "only)\n" +#~ " -f, --force ignore nonexistent files, never prompt\n" +#~ " -i, --interactive prompt before any removal\n" +#~ " -r, -R, --recursive remove the contents of directories recursively\n" +#~ " -v, --verbose explain what is being done\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "To remove a file whose name starts with a `-', for example `-foo',\n" +#~ "use one of these commands:\n" +#~ " %s -- -foo\n" +#~ "\n" +#~ " %s ./-foo\n" +#~ "\n" +#~ "Note that if you use rm to remove a file, it is usually possible to " +#~ "recover\n" +#~ "the contents of that file. If you want more assurance that the contents " +#~ "are\n" +#~ "truly unrecoverable, consider using shred.\n" +#~ msgstr "" +#~ "°ì¤Ä¤¢¤ë¤¤¤ÏÊ£¿ô¤Î¥Õ¥¡¥¤¥ë¤òºï½ü(unlink)¤¹¤ë¡£\n" +#~ "\n" +#~ " -d, --directory ¶õ¤Ç¤Ê¤¯¤Æ¤â¥Ç¥£¥ì¥¯¥È¥ê¤Î¥ê¥ó¥¯¤òºï½ü¤¹¤ë\n" +#~ " ´ÉÍý¼Ô(root)¤Î¤ßÍøÍѲÄ\n" +#~ " -f, --force ¸ºß¤·¤Ê¤¤¥Õ¥¡¥¤¥ë¤Ï̵»ë¤·¡¢³Îǧ¤ò¤È¤é¤Ê¤¤\n" +#~ " -i, --interactive ºï½ü¤ò¤¹¤ëÁ°¤Ë³Îǧ¤ò¤È¤ë\n" +#~ " -r, -R, --recursive ¥Ç¥£¥ì¥¯¥È¥ê¤È¤½¤ÎÃæ¿È¤òºÆµ¢Åª¤Ëºï½ü¤¹¤ë\n" +#~ " -v --verbose ¹Ô¤Ê¤ï¤ì¤ë¤³¤È¤òÃà°ìÊó¹ð¤¹¤ë\n" +#~ " --help »È¤¤Êý¤òɸ½à½ÐÎϤËɽ¼¨¤·¤Æ½ªÎ»¤¹¤ë\n" +#~ " --version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɸ½à½ÐÎϤËɽ¼¨¤·¤Æ½ªÎ»¤¹¤ë\n" +#~ "\n" +#~ "`-' ¤Ç»Ï¤Þ¤ë̾Á°¤Î¥Õ¥¡¥¤¥ë¤òºï½ü¤¹¤ë¤Ë¤Ï¡¢Î㤨¤Ð `-foo' ¤È±¾¤¦¥Õ¥¡¥¤¥ë¤Ê" +#~ "¤é\n" +#~ "¤³¤¦¤¤¤¦¥³¥Þ¥ó¥É¤ò»È¤¤¤Þ¤·¤ç¤¦:\n" +#~ " %s -- -foo\n" +#~ " %s ./-foo\n" + +#~ msgid "" +#~ "Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +#~ "for even very expensive hardware probing to recover the data.\n" +#~ "\n" +#~ " -f, --force change permissions to allow writing if necessary\n" +#~ " -n, --iterations=N Overwrite N times instead of the default (%d)\n" +#~ " -s, --size=N shred this many bytes (suffixes like k, M, G accepted)\n" +#~ " -u, --remove truncate and remove file after overwriting\n" +#~ " -v, --verbose show progress\n" +#~ " -x, --exact do not round file sizes up to the next full block\n" +#~ " -z, --zero add a final overwrite with zeros to hide shredding\n" +#~ " - shred standard output\n" +#~ " --help display this help and exit\n" +#~ " --version print version information and exit\n" +#~ "\n" +#~ "Delete FILE(s) if --remove (-u) is specified. The default is not to " +#~ "remove\n" +#~ "the files because it is common to operate on device files like /dev/hda,\n" +#~ "and those files usually should not be removed. When operating on " +#~ "regular\n" +#~ "files, most people use the --remove option.\n" +#~ "\n" +#~ "CAUTION: Note that shred relies on a very important assumption:\n" +#~ "that the filesystem overwrites data in place. This is the traditional\n" +#~ "way to do things, but many modern filesystem designs do not satisfy this\n" +#~ "assumption. The following are examples of filesystems on which shred is\n" +#~ "not effective:\n" +#~ "\n" +#~ "* log-structured or journaled filesystems, such as those supplied with\n" +#~ " AIX and Solaris (and JFS, ReiserFS, XFS, etc.)\n" +#~ "\n" +#~ "* filesystems that write redundant data and carry on even if some writes\n" +#~ " fail, such as RAID-based filesystems\n" +#~ "\n" +#~ "* filesystems that make snapshots, such as Network Appliance's NFS " +#~ "server\n" +#~ "\n" +#~ "* filesystems that cache in temporary locations, such as NFS\n" +#~ " version 3 clients\n" +#~ "\n" +#~ "* compressed filesystems\n" +#~ msgstr "" +#~ "»ØÄꤵ¤ì¤¿ FILE ¤Ë·«¤êÊÖ¤·¤Æ¾å½ñ¤­¤ò¹Ô¤¤¡¢Èó¾ï¤Ë¹â²Á¤Ê¥Ï¡¼¥É¥¦¥§¥¢¤Ç¤µ¤¨\n" +#~ "¥Ç¡¼¥¿¤ÎÉüµì¤Î¤¿¤á¤ÎÄ´ºº¤¬º¤Æñ¤È¤Ê¤ë¤è¤¦¤Ë¤·¤Þ¤¹¡£\n" +#~ "\n" +#~ " -f, --force ɬÍפ˱þ¤¸¤Æ½ñ¹þ¤ß²Äǽ¤Ê¸¢¸Â¤ËÊѹ¹¤¹¤ë\n" +#~ " -n, --iterations=N ¥Ç¥Õ¥©¥ë¥È²ó¿ô(%d)¤ÎÂå¤ï¤ê¤Ë N ²ó¤Î½ñ¤­¹þ¤ß¤ò¹Ô¤Ê" +#~ "¤¦\n" +#~ " -s, --size=N ¤³¤Î¥Ð¥¤¥È¿ô¤ËÀ£ÃǤ¹¤ë (k, M, G ¤ÎÍͤÊÀÜÈø¼­¤ò»È¤¨¤Þ¤¹)\n" +#~ " -u, --remove ¾å½ñ¤­¤Î¸å¤ËÀÚ¼è¤ê¤Èºï½ü\n" +#~ " -v, --verbose ¿ÊĽ¤òɽ¼¨\n" +#~ " -x, --exact ¥Õ¥¡¥¤¥ë¥Ö¥í¥Ã¥¯Ã±°Ì¤Ø¤Î¥Õ¥¡¥¤¥ë¥µ¥¤¥ºÀÚ¤ê¾å¤²¤ò¤·¤Ê¤¤\n" +#~ " -z, --zero shred ¤ò±£¤¹¤¿¤á¤Ë¡¢ºÇ¸å¤Ë°ìÅÙ¥¼¥í¤Ç¤Î¾å½ñ¤­¤òÄɲ乤ë\n" +#~ " - ɸ½à½ÐÎϤòÀ£ÃǤ¹¤ë\n" +#~ " --help ¤³¤Î»È¤¤Êý¤òɽ¼¨¤·¤Æ½ªÎ»¤¹¤ë\n" +#~ " --version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤·¤Æ½ªÎ»¤¹¤ë\n" +#~ "\n" +#~ "--remove (-u) ¤¬»ØÄꤵ¤ì¤¿¤È¤­¤Ë FILE ¤òºï½ü¤·¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ç¥Õ¥¡¥¤¥ë" +#~ "¤ò\n" +#~ "ºï½ü¤·¤Ê¤¤¤Î¤Ï¡¢/dev/hda ¤Î¤è¤¦¤Ê¥Ç¥Ð¥¤¥¹¥Õ¥¡¥¤¥ë¤Ë¤È¤Ã¤Æ¤Î¶¦Ä̤ÎÁàºî¤Ç¤¢" +#~ "¤ê¡¢\n" +#~ "¤³¤ì¤é¤Î¥Õ¥¡¥¤¥ë¤ÏÉáÄ̺ï½ü¤µ¤ì¤ë¤Ù¤­¤Ç¤Ï¤Ê¤¤¤«¤é¤Ç¤¹¡£\n" +#~ "Ä̾ï¥Õ¥¡¥¤¥ë¤òÁàºî¤¹¤ë¤È¤­¤Ë¤Ï¡¢Ëؤó¤É¤Î¿Í¤¬ --remove ¥ª¥×¥·¥ç¥ó¤ò»È¤¤¤Þ" +#~ "¤¹\n" +#~ "\n" +#~ "Ãí°Õ: shred ¤ÏÈó¾ï¤Ë½ÅÂç¤Ê²¾Äê¤Ë´ð¤Å¤¤¤Æ¤¤¤ë¤³¤È¤ËÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤:\n" +#~ "¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤¬¥Ç¡¼¥¿¤Î¾ì½ê¤Ë¾å½ñ¤­¤¹¤ë¤È¤¤¤¦¤³¤È¡£¤³¤ì¤ÏÅÁÅýŪ¤Ê\n" +#~ "ÊýË¡¤Ç¤¹¤¬¡¢¶áǯ¤Î¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Ï¤³¤Î²¾Äê¤òËþ¤¿¤·¤Þ¤»¤ó¡£\n" +#~ "shred ¤ò»È¤¦°ÕÌ£¤¬¤Ê¤¤¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤ÎÎã¤Ï°Ê²¼¤ÎÄ̤ê¤Ç¤¹:\n" +#~ "\n" +#~ "* AIX ¤ä Solaris ¤ÇÄ󶡤µ¤ì¤ë¥í¥°¹½Â¤¤ä¥¸¥ã¡¼¥Ê¥ê¥ó¥°¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à\n" +#~ " ¡ÊµÚ¤Ó JFS, ReiserFS, XFS Åù¡Ë\n" +#~ "\n" +#~ "* RAID ¥Ù¡¼¥¹¤ÎÍͤˡ¢¾éĹ¤Ê¥Ç¡¼¥¿¤ò½ñ¹þ¤ó¤Ç¤ª¤ê¡¢½ñ¤­¹þ¤ß¤¬¼ºÇÔ¤·¤¿¤È¤­¤Ç" +#~ "¤â\n" +#~ " °Ý»ý¤µ¤ì¤ëÍͤʥե¡¥¤¥ë¥·¥¹¥Æ¥à\n" +#~ "\n" +#~ "* Network Appliance ¤Î NFS ¥µ¡¼¥Ð¤ÎÍͤˡ¢¥¹¥Ê¥Ã¥×¥·¥ç¥Ã¥È¤òºî¤ë¥Õ¥¡¥¤¥ë¥·" +#~ "¥¹¥Æ¥à\n" +#~ "\n" +#~ "* NFS ¥Ð¡¼¥¸¥ç¥ó 3 ¥¯¥é¥¤¥¢¥ó¥È¤ÎÍͤˡ¢°ì»þŪ¤Ë¥­¥ã¥Ã¥·¥å¤ò¹Ô¤Ê¤¦¤è¤¦¤Ê\n" +#~ " ¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à\n" +#~ "\n" +#~ "* °µ½Ì¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à\n" + +#~ msgid "" +#~ "Force changed blocks to disk, update the super block.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¥Ð¥Ã¥Õ¥¡¤Î¥Õ¥é¥Ã¥·¥å\n" +#~ "\n" +#~ " --help »È¤¤Êý¤òɸ½à½ÐÎϤËɽ¤·¤Æ½ªÎ»¤¹¤ë\n" +#~ " --version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɸ½à½ÐÎϤËɽ¼¨¤·¤Æ½ªÎ»¤¹¤ë\n" + +#~ msgid "" +#~ "Update the access and modification times of each FILE to the current " +#~ "time.\n" +#~ "\n" +#~ " -a change only the access time\n" +#~ " -c, --no-create do not create any files\n" +#~ " -d, --date=STRING parse STRING and use it instead of current time\n" +#~ " -f (ignored)\n" +#~ " -m change only the modification time\n" +#~ " -r, --reference=FILE use this file's times instead of current time\n" +#~ " -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current " +#~ "time\n" +#~ " --time=WORD set time given by WORD: access atime use (same " +#~ "as -a)\n" +#~ " modify mtime (same as -m)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Note that the three time-date formats recognized for the -d and -t " +#~ "options\n" +#~ "and for the obsolescent argument are all different.\n" +#~ msgstr "" +#~ "¤½¤ì¤¾¤ì¤Î¥Õ¥¡¥¤¥ë¤Î¥¢¥¯¥»¥¹»þ¹ï¤ä½¤Àµ»þ¹ï¤ò¸½ºß»þ¹ï¤Ë¹¹¿·¤¹¤ë¡£\n" +#~ "\n" +#~ " -a ¥¢¥¯¥»¥¹»þ¹ï¤Î¤ß¤òÊѹ¹¤¹¤ë\n" +#~ " -c --no-create ¥Õ¥¡¥¤¥ë¤¬Â¸ºß¤·¤Ê¤¤¾ì¹ç¤Ë¿·µ¬ºîÀ®¤ò¹Ô¤ï¤Ê¤¤\n" +#~ " -d, --date=STRING ¸½ºß¤Î»þ¹ï¤ÎÂå¤ï¤ê¤Ë STRING ¤Î»þ¹ï¤òÍѤ¤¤ë\n" +#~ " -f (̵»ë¤µ¤ì¤ë)\n" +#~ " -m ½¤Àµ»þ¹ï¤Î¤ß¤òÊѹ¹¤¹¤ë\n" +#~ " -r, --reference=FILE ¸½ºß¤Î»þ¹ï¤ÎÂå¤ï¤ê¤Ë FILE ¤Î»þ¹ï¤òÍѤ¤¤ë\n" +#~ " -t STAMP ¸½ºß¤Î»þ¹ï¤ÎÂå¤ï¤ê¤Ë [[CC]YY]MMDDhhmm[.ss]¤ò¤Ä¤«" +#~ "¤¦\n" +#~ " --time=WORD WORD ¤Ë¤è¤Ã¤ÆÍ¿¤¨¤é¤ì¤¿ »þ¹ï¤òÀßÄꤹ¤ë\n" +#~ " access ¤Ê¤é atime (-a ¤ÈƱ¤¸)¡¢modify ¤Ê¤é " +#~ "mtime\n" +#~ " (-m ¤ÈƱ¤¸)¤ò»È¤¦\n" +#~ " --help »È¤¤Êý¤òɸ½à½ÐÎϤËɽ¼¨¤·¤Æ½ªÎ»¤¹¤ë\n" +#~ " --version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɸ½à½ÐÎϤËɽ¼¨¤·¤Æ½ªÎ»¤¹¤ë\n" +#~ "\n" +#~ "3 ¤Ä¤Î »þ¹ï-ÆüÉդνñ¼°¤Ï -d ¤È -t ¥ª¥×¥·¥ç¥óÍѤȸ«¤Ê¤µ¤ì¡¢ÀΤνñ¼°¤Î\n" +#~ "°ú¿ô¤È¤ÏÁ´¤¯°Û¤Ê¤ë¤³¤È¤ËÃí°Õ¤·¤Þ¤·¤ç¤¦¡£\n" + +#, fuzzy +#~ msgid "virtual memory exhausted" +#~ msgstr "¥á¥â¥ê¤ò»È¤¤²Ì¤¿¤·¤Þ¤·¤¿" + +#, fuzzy +#~ msgid "Memory exhausted" +#~ msgstr "¥á¥â¥ê¤ò»È¤¤²Ì¤¿¤·¤Þ¤·¤¿" + +#~ msgid "group of %s changed to %s\n" +#~ msgstr "%s ¤Î¥°¥ë¡¼¥×¤ò %s ¤ØÊѹ¹¤·¤Þ¤·¤¿\n" + +#~ msgid "you are not a member of group `%s'" +#~ msgstr "¤¢¤Ê¤¿¤Ï¥°¥ë¡¼¥× `%s' ¤Î¥á¥ó¥Ð¡¼¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" + +#~ msgid "owner of %s changed to " +#~ msgstr "%s ¤Î½êÍ­¼Ô¤ò°Ê²¼¤ËÊѹ¹ : " + +#, fuzzy +#~ msgid "cannot remove old link to `%s'" +#~ msgstr "`%s' ¤Ç ioctl() ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó" + +#, fuzzy +#~ msgid "cannot make fifo `%s'" +#~ msgstr "`%s' ¤Ç ioctl() ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó" + +#~ msgid "" +#~ "Delete a file securely, first overwriting it to hide its contents.\n" +#~ "\n" +#~ " -f, --force change permissions to allow writing if necessary\n" +#~ " -n, --iterations=N Overwrite N times instead of the default (%d)\n" +#~ " -s, --size=N shred this many bytes (suffixes like k, M, G accepted)\n" +#~ " -u, --remove truncate and remove file after overwriting\n" +#~ " -v, --verbose show progress\n" +#~ " -x, --exact do not round file sizes up to the next full block\n" +#~ " -z, --zero add a final overwrite with zeros to hide shredding\n" +#~ " - shred standard output\n" +#~ " --help display this help and exit\n" +#~ " --version print version information and exit\n" +#~ "\n" +#~ "FIXME maybe add more discussion here?" +#~ msgstr "" +#~ "¥Õ¥¡¥¤¥ë¤ò°ÂÁ´¤Ëºï½ü¤·¤Þ¤¹¡¢¤Þ¤º¤ÏÆâÍÆ¤ò±£Ê乤뤿¤á¾å½ñ¤­¤·¤Þ¤¹¡£\n" +#~ "\n" +#~ " -f, --force ɬÍפ˱þ¤¸¡¢½ñ¤­¹þ¤ß¤Î¤¿¤á¤Îµö²Ä°À­¤òÊѹ¹\n" +#~ " -n, --iterations=N ½é´üÃÍ(%d)¤ÎÂå¤ï¤ê¤Ë N ²ó¾å½ñ¤­\n" +#~ " -s, --size=N ¿¤¯¤Î¥Ð¥¤¥È¿ô¤ò shred ¤¹¤ë (k, M, G ¤ÎÍͤÊñ°Ì¤â²ò¼á¤¹" +#~ "¤ë)\n" +#~ " -u, --remove ¾å½ñ¤­¤Î¸å¤Ç¥Õ¥¡¥¤¥ë¤òÀÚ¤êµÍ¤á¤Æºï½ü\n" +#~ " -v, --verbose ¿Ê¹Ô¾õ¶·¤ò¸«¤ë\n" +#~ " -x, --exact ¥Õ¥¡¥¤¥ë¥Ö¥í¥Ã¥¯Ã±°Ì¤Ø¤Î¥Õ¥¡¥¤¥ë¥µ¥¤¥ºÀÚ¤ê¾å¤²¤ò¤·¤Ê¤¤\n" +#~ " -z, --zero shred ¤ò±£¤¹¤¿¤á¡¢ºÇ¸å¤Ë°ì²ó¥¼¥í¤Ç¤Î¾å½ñ¤­¤òÄɲ乤ë\n" +#~ " - ɸ½à½ÐÎϤΠshred\n" +#~ " --help ¤³¤Î»È¤¤Êý¤òɽ¼¨¤·¤Æ½ªÎ»¤·¤Þ¤¹\n" +#~ " --version ¥ô¥¡¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤·¤Æ½ªÎ»¤·¤Þ¤¹\n" +#~ "\n" +#~ "*½¤Àµ¤¹¤Ù¤·* ¤³¤³¤Ë¤¤¤í¤¤¤íÀâÌÀ¤¬²Ã¤ï¤ë¤«¤Ê¡©" + +#~ msgid "create %s %s to %s" +#~ msgstr "%2$s ¤«¤é %3$s ¤Ë%1$s¤ò¤Ï¤ê¤Þ¤·¤¿" + +#~ msgid "hard link" +#~ msgstr "¥Ï¡¼¥É¥ê¥ó¥¯" + +#~ msgid "link" +#~ msgstr "¥ê¥ó¥¯" + +#~ msgid "--version-control" +#~ msgstr "--version-control" + +#, fuzzy +#~ msgid "starting directory" +#~ msgstr "¥Ç¥£¥ì¥¯¥È¥ê" + +#~ msgid "%s -> %s (backup)\n" +#~ msgstr "%s -> %s (¥Ð¥Ã¥¯¥¢¥Ã¥×)\n" + +#, fuzzy +#~ msgid "" +#~ "Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +#~ " or: %s [OPTION]... TARGET... DIRECTORY\n" +#~ msgstr "" +#~ "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... [ÆþÎϸµ]... (-G ¤Ê¤·)\n" +#~ " Ëô¤Ï: %s -G [¥ª¥×¥·¥ç¥ó]... [ÆþÎϸµ [½ÐÎÏÀè]]\n" + +#, fuzzy +#~ msgid "Usage: %s [OPTION]... EXISTING_DIR NEW_DIR\n" +#~ msgstr "»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]... SET1 [SET2]\n" + +#, fuzzy +#~ msgid "cannot rename `.' or `..'" +#~ msgstr "¥Û¥¹¥È̾¤ò `%s' ¤ËÀßÄê¤Ç¤­¤Þ¤»¤ó" diff --git a/src/apps/bin/coreutils-5.0/po/ko.gmo b/src/apps/bin/coreutils-5.0/po/ko.gmo new file mode 100644 index 0000000000..d4888e80b5 Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/ko.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/ko.po b/src/apps/bin/coreutils-5.0/po/ko.po new file mode 100644 index 0000000000..7fd265d0da --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/ko.po @@ -0,0 +1,8485 @@ +# Korean messages for GNU textutils +# Copyright (C) 1996, 2001, 2002 Free Software Foundation, Inc. +# Bang Jun-Young , 1996-1997. +# Changwoo Ryu , 2001-2002. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU textutils 2.0.22\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2002-07-22 20:02+0900\n" +"Last-Translator: Changwoo Ryu \n" +"Language-Team: Korean \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=EUC-KR\n" +"Content-Transfer-Encoding: 8bit\n" + +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "%2$s¿¡ ´ëÇØ ºÎÀûÀýÇÑ ÀÎÀÚ %1$s" + +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "%2$s¿¡ ´ëÇØ ¾Ö¸ÅÇÑ ÀÎÀÚ %1$s" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "¿Ã¹Ù¸¥ ÀÎÀÚ´Â:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "¾²±â ¿À·ù" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "¾Ë ¼ö ¾ø´Â ½Ã½ºÅÛ ¿À·ù" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "ÀÏ¹Ý ºó ÆÄÀÏ" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "ÀÏ¹Ý ÆÄÀÏ" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "µð·ºÅ丮" + +#: lib/file-type.c:48 +msgid "block special file" +msgstr "ºí·Ï Ư¼ö ÆÄÀÏ" + +#: lib/file-type.c:51 +msgid "character special file" +msgstr "¹®ÀÚ Æ¯¼ö ÆÄÀÏ" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "FIFO" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "½Éº¼¸¯ ¸µÅ©" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "¼ÒÄÏ" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "¸Þ¼¼Áö Å¥" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "¼¼¸¶Æ÷¾î" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "°øÀ¯ ¸Þ¸ð¸® ¿ÀºêÁ§Æ®" + +#: lib/file-type.c:71 +msgid "weird file" +msgstr "±«»óÇÑ ÆÄÀÏ" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: `%s'Àº(´Â) ¸ðÈ£ÇÑ ¿É¼ÇÀÔ´Ï´Ù\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: `--%s' ¿É¼ÇÀº Àμö¸¦ Çã¿ëÇÏÁö ¾Ê½À´Ï´Ù\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: `%c%s' ¿É¼ÇÀº Àμö¸¦ Çã¿ëÇÏÁö ¾Ê½À´Ï´Ù\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: `%s' ¿É¼ÇÀº Àμö°¡ ÇÊ¿äÇÕ´Ï´Ù\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: ÀνÄÇÒ ¼ö ¾ø´Â ¿É¼Ç `--%s'\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: ÀνÄÇÒ ¼ö ¾ø´Â ¿É¼Ç `%c%s'\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: À߸øµÈ ¿É¼Ç -- %c\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: ºÎÀûÀýÇÑ ¿É¼Ç -- %c\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: ÀÌ ¿É¼ÇÀº Àμö°¡ ÇÊ¿äÇÕ´Ï´Ù -- %c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: `-W %s'Àº(´Â) ¸ðÈ£ÇÑ ¿É¼ÇÀÔ´Ï´Ù\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: `-W %s' ¿É¼ÇÀº Àμö¸¦ Çã¿ëÇÏÁö ¾Ê½À´Ï´Ù\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "ºí·Ï Å©±â" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%sÀÌ(°¡) Á¸ÀçÇÏÁö¸¸ µð·ºÅ丮°¡ ¾Æ´Õ´Ï´Ù" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "%sÀÇ ¼ÒÀ¯ÀÚ ±×¸®°í/ȤÀº ±×·ìÀ» ¹Ù²Ü ¼ö ¾ø½À´Ï´Ù" + +#: lib/makepath.c:338 +#, c-format +msgid "cannot chdir to directory %s" +msgstr "%s µð·ºÅ丮·Î chdirÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "%sÀÇ Çã°¡¸¦ ¹Ù²Ü ¼ö ¾ø½À´Ï´Ù" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "¸Þ¸ð¸®°¡ ¹Ù´Ú³²" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "`" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "'" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[yY]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[nN]" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "iconv ÇÔ¼ö¸¦ »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù" + +# not usable°ú not availableÀÇ Â÷ÀÌ´Â? +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "iconv ÇÔ¼ö¸¦ »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "¹üÀ§¸¦ ¹þ¾î³­ ¹®ÀÚ" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "U+%04XÀ»(¸¦) ·ÎÄ® ¹®ÀÚ¼ÂÀ¸·Î º¯È¯ÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "U+%04XÀ»(¸¦) ·ÎÄ® ¹®ÀÚ¼ÂÀ¸·Î º¯È¯ÇÒ ¼ö ¾ø½À´Ï´Ù: %s" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "À߸øµÈ »ç¿ëÀÚ" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "À߸øµÈ ±×·ì" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "UIDÀÇ ·Î±×ÀÎ ±×·ìÀ» ¾Ë¾Æ ³¾ ¼ö ¾ø½À´Ï´Ù" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "»ç¿ëÀÚ¿Í ±×·ìÀ» ¸ðµÎ »ý·«ÇÒ ¼ö´Â ¾ø½À´Ï´Ù" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "%sÀÌ(°¡) ¸¸µé¾ú½À´Ï´Ù.\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +"ÀÌ ÇÁ·Î±×·¥Àº ÀÚÀ¯ ¼ÒÇÁÆ®¿þ¾îÀÔ´Ï´Ù; º¹»ç Á¶°ÇÀº ¼Ò½º¸¦ ÂüÁ¶ÇϽʽÿÀ. \n" +"»óǰ¼ºÀ̳ª ƯÁ¤ ¸ñÀû¿¡ ´ëÇÑ ÀûÇÕ¼ºÀ» ºñ·ÔÇÏ¿©, ¾î¶°ÇÑ º¸Áõµµ ÇÏÁö ¾Ê½À´Ï´Ù.\n" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "¹®ÀÚ¿­ ºñ±³°¡ ½ÇÆÐÇß½À´Ï´Ù" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "ÀÌ ¹®Á¦¸¦ ÇÇÇØ °¡·Á¸é LC_ALL='C'ÇϽʽÿÀ." + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "ºñ±³ÇÑ ¹®ÀÚ¿­Àº %s°ú(¿Í) %sÀÔ´Ï´Ù." + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "´õ ¸¹Àº Á¤º¸¸¦ º¸·Á¸é `%s --help' ÇϽʽÿÀ.\n" + +#: src/basename.c:54 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"»ç¿ë¹ý: %s [<ÆÄÀÏ>]...\n" +" ȤÀº: %s [<¿É¼Ç>]\n" + +#: src/basename.c:59 +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"<%s>(À¸)·Î ¹ö±×¸¦ ¾Ë·Á ÁֽʽÿÀ.\n" + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "Àμö°¡ ³Ê¹« ÀûÀ½" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "Àμö°¡ ³Ê¹« ¸¹À½" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "Torbjorn Granlund ±×¸®°í Richard M. Stallman" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>] [<ÆÄÀÏ>]...\n" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" +"<ÆÄÀÏ>(µé)À̳ª Ç¥ÁØ ÀÔ·ÂÀ» ¿¬°áÇØ Ç¥ÁØ Ãâ·Â¿¡ Ãâ·ÂÇÕ´Ï´Ù.\n" +"\n" +" -A, --show-all -vET¿Í °°À½\n" +" -b, --number-nonblank ºóÁÙÀÌ ¾Æ´Ñ Ãâ·ÂÇàÀÇ °³¼ö¸¦ ¼Á´Ï´Ù\n" +" -e -vE¿Í °°À½\n" +" -E, --show-ends °¢ ÇàÀÇ ³¡¿¡ $¸¦ Ç¥½ÃÇÕ´Ï´Ù\n" +" -n, --number ¸ðµç Ãâ·ÂÇàÀÇ °³¼ö¸¦ ¼Á´Ï´Ù\n" +" -s, --squeeze-blank ÇÑÁÙ ÀÌ»óÀÇ ºó ÇàÀ» Á¦°ÅÇÕ´Ï´Ù\n" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" +" -t -vT¿Í °°À½\n" +" -T, --show-tabs ÅÇ ¹®ÀÚ¸¦ ^I·Î Ç¥½ÃÇÕ´Ï´Ù\n" +" -u (¹«½ÃµÊ)\n" +" -v, --show-nonprinting ^ ¿Í M- Ç¥±â¹ýÀ» »ç¿ëÇÕ´Ï´Ù (LFD¿Í TAB Á¦¿Ü)\n" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"<ÆÄÀÏ>ÀÌ ÁÖ¾îÁöÁö ¾Ê°Å³ª - À̸é Ç¥ÁØ ÀÔ·ÂÀ» ÀнÀ´Ï´Ù.\n" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" +"\n" +" -B, --binary ÄÜ¼Ö ÀåÄ¡¿¡ ÀÌÁø µ¥ÀÌŸ¸¦ ¾¹´Ï´Ù\n" +"\n" + +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "`%s'¿¡¼­ ioctlÀ» ÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "Ç¥ÁØ Ãâ·Â" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s: ÀÔ·Â ÆÄÀÏÀÌ Ãâ·Â ÆÄÀÏÀÔ´Ï´Ù" + +#: src/cat.c:858 +#, fuzzy +msgid "closing standard input" +msgstr "Ç¥ÁØ ÀÔ·Â" + +#: src/cat.c:861 +#, fuzzy +msgid "closing standard output" +msgstr "Ç¥ÁØ Ãâ·Â" + +#: src/chgrp.c:93 +#, fuzzy +msgid "cannot change to null group" +msgstr "%sÀÇ ¼ÒÀ¯ÀÚ ±×¸®°í/ȤÀº ±×·ìÀ» ¹Ù²Ü ¼ö ¾ø½À´Ï´Ù" + +#: src/chgrp.c:102 +#, fuzzy, c-format +msgid "invalid group name %s" +msgstr "À߸øµÈ ±×·ì" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "±×·ì¹øÈ£" + +#: src/chgrp.c:109 +#, fuzzy, c-format +msgid "invalid group number %s" +msgstr "ºÎÀûÀýÇÑ ¼ýÀÚ" + +#: src/chgrp.c:126 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"»ç¿ë¹ý: %s [<¿É¼Ç>]... [<ÆÄÀÏ>]...\n" +" ¶Ç´Â: %s --traditional [<ÆÄÀÏ>] [[+]<¿É¼Â> [[+]<·¹À̺í>]]\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, fuzzy, c-format +msgid "failed to get attributes of %s" +msgstr "%sÀÇ ½Ã°£À» À¯ÁöÇÕ´Ï´Ù" + +#: src/chmod.c:102 +#, fuzzy, c-format +msgid "getting new attributes of %s" +msgstr "%sÀÇ ½Ã°£À» À¯ÁöÇÕ´Ï´Ù" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "%sÀÇ ¸ðµå¸¦ %04lo(%s)À¸·Î º¯°æÇÏ¿´½À´Ï´Ù\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "%sÀÇ ¸ðµå¸¦ %04lo(%s)À¸·Î º¯°æÇϴµ¥ ½ÇÆÐÇÏ¿´½À´Ï´Ù\n" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "%sÀÇ ¸ðµå¸¦ %04lo(%s)À¸·Î À¯ÁöÇÏ¿´½À´Ï´Ù\n" + +#: src/chmod.c:179 +#, fuzzy, c-format +msgid "changing permissions of %s" +msgstr "%sÀÇ Çã°¡¸¦ ¹Ù²Ü ¼ö ¾ø½À´Ï´Ù" + +#: src/chmod.c:242 +#, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"»ç¿ë¹ý: %s [¿É¼Ç]... MODE[,MODE]... FILE...\n" +" ¶Ç´Â: %s [¿É¼Ç]... 8Áø¼ö-MODE FILE...\n" +" ¶Ç´Â: %s [¿É¼Ç]... --reference=RFILE FILE...\n" + +#: src/chmod.c:248 +#, fuzzy +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"°¢ FILEÀÇ ¸ðµå¸¦ MODE·Î º¯°æÇÕ´Ï´Ù.\n" +"\n" +" -c, --changes verbose¿Í °°Áö¸¸ º¯°æÇÒ¶§¸¸ ¾Ë¸³´Ï´Ù\n" +" -f, --silent, --quiet ´ëºÎºÐÀÇ ¿¡·¯¸Þ½ÃÁö¸¦ ³»Áö ¾Ê°Ô ÇÕ´Ï´Ù\n" +" -v, --verbose 󸮵Ǵ ¸ðµç ÆÄÀÏ¿¡ ´ëÇØ Áø´Ü ¸Þ½ÃÁö¸¦ Ãâ·ÂÇÕ´Ï" +"´Ù\n" +" --reference=RFILE MODE °ª ´ë½Å RFILEÀÇ ¸ðµå°ªÀ» »ç¿ëÇÕ´Ï´Ù\n" +" -R, --recursive ÆÄÀϰú ¼­ºêµð·ºÅ丮±îÁö º¯°æÇÕ´Ï´Ù\n" +" --help ÀÌ µµ¿ò¸»À» Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +" --version ¹öÀü Á¤º¸¸¦ Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +"\n" +"°¢ MODE´Â Çϳª ÀÌ»óÀÇ u,g,o,a¹®ÀÚ ´ÙÀ½¿¡ +,-,=ÁßÀÇ ÇϳªÀÇ ±âÈ£¿Í\n" +"±× ´ÙÀ½ÀÇ r,w,x,X,s,t,u,g,oÁß ÇϳªÀÇ ¹®ÀÚ·Î ±¸¼ºµË´Ï´Ù.\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" + +#: src/chmod.c:320 +#, fuzzy, c-format +msgid "invalid character %s in mode string %s" +msgstr "ºÎÀûÀýÇÑ ¹®ÀÚ %c' -- Çü ¹®ÀÚ¿­ `%s'" + +#: src/chmod.c:361 +#, fuzzy, c-format +msgid "invalid mode string: %s" +msgstr "ºÎÀûÀýÇÑ Å¸ÀÔÀÇ ¹®ÀÚ¿­ `%s'" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "½Éº¼¸¯ ¸µÅ© %sµµ, À̸¦ °¡¸®Ä¡´Â ¿ø·¡ ÆÄÀϵµ º¯°æµÇÁö ¾Ê¾Ò½À´Ï´Ù\n" + +#: src/chown-core.c:143 +#, fuzzy, c-format +msgid "changed ownership of %s to %s\n" +msgstr "%sÀÇ ¼ÒÀ¯ÁÖ¸¦ ´ÙÀ½À¸·Î º¯°æÇϴµ¥ ½ÇÆÐÇÏ¿´½À´Ï´Ù: " + +#: src/chown-core.c:144 +#, fuzzy, c-format +msgid "changed group of %s to %s\n" +msgstr "%sÀÇ ±×·ìÀ» %s·Î ¹Ù²Ù´Âµ¥ ½ÇÆÐÇß½À´Ï´Ù\n" + +#: src/chown-core.c:148 +#, fuzzy, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "%sÀÇ Çã°¡¸¦ ¹Ù²Ü ¼ö ¾ø½À´Ï´Ù" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "%sÀÇ ±×·ìÀ» %s·Î ¹Ù²Ù´Âµ¥ ½ÇÆÐÇß½À´Ï´Ù\n" + +#: src/chown-core.c:153 +#, fuzzy, c-format +msgid "ownership of %s retained as %s\n" +msgstr "%sÀÇ ¼ÒÀ¯ÀÚ´Â ´ÙÀ½°ú °°ÀÌ À¯ÁöµÇ¾ú½À´Ï´Ù: " + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "%sÀÇ ±×·ìÀÌ %sÀ¸·Î º¸Á¸µÇ¾ú½À´Ï´Ù\n" + +#: src/chown-core.c:326 +#, fuzzy, c-format +msgid "changing ownership of %s" +msgstr "%sÀÇ ¼ÒÀ¯±ÇÀ» À¯ÁöÇÕ´Ï´Ù" + +#: src/chown-core.c:327 +#, fuzzy, c-format +msgid "changing group of %s" +msgstr "%sÀÇ ¼ÒÀ¯ÀÚ ±×¸®°í/ȤÀº ±×·ìÀ» ¹Ù²Ü ¼ö ¾ø½À´Ï´Ù" + +#: src/chown-core.c:345 +#, fuzzy, c-format +msgid "unable to restore permissions of %s" +msgstr "%sÀÇ Çã°¡¸¦ ¹Ù²Ü ¼ö ¾ø½À´Ï´Ù" + +#: src/chown.c:99 +#, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"»ç¿ë¹ý: %s [¿É¼Ç]... OWNER[:[GROUP]] FILE...\n" +" ¶Ç´Â: %s [¿É¼Ç]... .GROUP FILE...\n" +" ¶Ç´Â: %s [¿É¼Ç]... --reference=RFILE FILE...\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" + +#: src/chroot.c:45 +#, fuzzy, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"»ç¿ë¹ý: %s [<ÆÄÀÏ>]...\n" +" ȤÀº: %s [<¿É¼Ç>]\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" + +#: src/chroot.c:84 +#, fuzzy, c-format +msgid "cannot change root directory to %s" +msgstr "%s µð·ºÅ丮·Î chdirÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/chroot.c:87 +#, fuzzy +msgid "cannot chdir to root directory" +msgstr "%s µð·ºÅ丮·Î chdirÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "%s: ÆÄÀÏÀÌ ³Ê¹« ±é´Ï´Ù" + +#: src/cksum.c:282 +#, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"»ç¿ë¹ý: %s [<ÆÄÀÏ>]...\n" +" ȤÀº: %s [<¿É¼Ç>]\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" +"°¢ <ÆÄÀÏ>¿¡ ´ëÇØ CRC üũ¼¶°ú ¹ÙÀÌÆ® °³¼ö¸¦ Ãâ·ÂÇÕ´Ï´Ù.\n" +"\n" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "Richard Stallman ±×¸®°í David MacKenzie" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>]... <¿ÞÂÊ_ÆÄÀÏ> <¿À¸¥ÂÊ_ÆÄÀÏ>\n" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" +"Á¤·ÄµÈ ÆÄÀÏÀÎ <¿ÞÂÊ_ÆÄÀÏ>°ú <¿À¸¥ÂÊ_ÆÄÀÏ>À» Çà ´ÜÀ§·Î ºñ±³ÇÕ´Ï´Ù.\n" +"\n" +" -1 ¿ÞÂÊ ÆÄÀÏ¿¡ À¯ÀÏÇÑ ÇàÀ» Á¦°ÅÇÕ´Ï´Ù\n" +" -2 ¿À¸¥ÂÊ ÆÄÀÏ¿¡ À¯ÀÏÇÑ ÇàÀ» Á¦°ÅÇÕ´Ï´Ù\n" +" -3 ¾çÂÊ ÆÄÀÏ¿¡ À¯ÀÏÇÑ ÇàÀ» Á¦°ÅÇÕ´Ï´Ù\n" + +#: src/copy.c:162 src/du.c:332 +#, fuzzy, c-format +msgid "cannot access %s" +msgstr "`%s'¿¡ chownÀ» ½ÇÇàÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:226 +#, fuzzy, c-format +msgid "cannot open %s for reading" +msgstr "`%s'¸¦ `%s'·Î À̵¿ÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, fuzzy, c-format +msgid "cannot fstat %s" +msgstr "`%s'ÀÇ Á¤º¸(stat)¸¦ ¾òÀ» ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, fuzzy, c-format +msgid "cannot remove %s" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:277 +#, fuzzy, c-format +msgid "cannot create regular file %s" +msgstr "Àӽà ÆÄÀÏÀ» ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, fuzzy, c-format +msgid "reading %s" +msgstr "%sÀ»(¸¦) Àд µµÁß ¿À·ù ¹ß»ý" + +#: src/copy.c:362 +#, fuzzy, c-format +msgid "cannot lseek %s" +msgstr "%s: ¿ÀÇÁ¼Â %s%s·Î(À¸·Î) °¥ ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, fuzzy, c-format +msgid "writing %s" +msgstr "%s¿¡ ¾²´Â µµÁß ¿À·ù ¹ß»ý" + +#: src/copy.c:409 src/copy.c:415 +#, fuzzy, c-format +msgid "closing %s" +msgstr "%s(fd=%d)À»(¸¦) ´Ý½À´Ï´Ù " + +#: src/copy.c:610 +#, fuzzy, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: `%s'¿¡ ¸ðµå %04loÀ¸·Î °ãÃľ²°Ú½À´Ï±î? " + +#: src/copy.c:616 +#, fuzzy, c-format +msgid "%s: overwrite %s? " +msgstr "%s: `%s'¸¦ °ãÃľ¹´Ï±î? " + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, fuzzy, c-format +msgid "cannot stat %s" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:820 +#, fuzzy, c-format +msgid "omitting directory %s" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "" + +#: src/copy.c:866 src/ln.c:237 +#, fuzzy, c-format +msgid "%s and %s are the same file" +msgstr "`%s'¿Í `%s'´Â °°Àº ÆÄÀÏÀÔ´Ï´Ù" + +#: src/copy.c:876 +#, fuzzy, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "%s µð·ºÅ丮·Î chdirÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:893 +#, fuzzy, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "%s: µð·ºÅ丮°¡ ¾Æ´Ñ °÷¿¡ µð·ºÅ丮¸¦ °ãÃľµ ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:904 +#, fuzzy, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:965 +#, fuzzy, c-format +msgid "cannot overwrite directory %s" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:974 +#, fuzzy, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "%s µð·ºÅ丮·Î chdirÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:997 +#, fuzzy, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "`%s'ÀÇ ¹é¾÷Àº ¿ø·¡ ÆÄÀÏÀ» ¼Õ»óÇÒ °ÍÀÔ´Ï´Ù; `%s'´Â À̵¿µÇÁö ¾Ê½À´Ï´Ù" + +#: src/copy.c:998 +#, fuzzy, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "`%s'ÀÇ ¹é¾÷Àº ¿ø·¡ ÆÄÀÏÀ» ¼Õ»óÇÒ °ÍÀÔ´Ï´Ù; `%s'´Â º¹»çµÇÁö ¾Ê½À´Ï´Ù" + +#: src/copy.c:1013 src/ln.c:273 +#, fuzzy, c-format +msgid "cannot backup %s" +msgstr "`%s'¸¦ ¹é¾÷ÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr " (¹é¾÷: %s)" + +#: src/copy.c:1099 +#, fuzzy, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:1106 +#, fuzzy, c-format +msgid "will not create hard link %s to directory %s" +msgstr "%s µð·ºÅ丮·Î chdirÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:1132 +#, fuzzy, c-format +msgid "cannot create hard link %s to %s" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:1186 +#, fuzzy, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "%s µð·ºÅ丮·Î chdirÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:1229 +#, fuzzy, c-format +msgid "cannot move %s to %s" +msgstr "`%s'¿¡¼­ ioctlÀ» ÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "" + +#: src/copy.c:1269 +#, fuzzy, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "%s: ½Éº¼¸¯ ¸µÅ©ÀÇ »çÀÌŬÀº º¹»çÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "%s: ÇöÀç µð·ºÅ丮 ¾È¿¡¼­¸¸ »ó´ëÀûÀÎ ½Éº¼¸¯ ¸µÅ©¸¦ ¸¸µé ¼ö ÀÖ½À´Ï´Ù" + +#: src/copy.c:1353 +#, fuzzy, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:1364 +#, fuzzy, c-format +msgid "cannot create link %s" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, fuzzy, c-format +msgid "cannot create fifo %s" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:1403 +#, fuzzy, c-format +msgid "cannot create special file %s" +msgstr "¹®ÀÚ Æ¯¼ö ÆÄÀÏ" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, fuzzy, c-format +msgid "cannot read symbolic link %s" +msgstr "½Éº¼¸¯ ¸µÅ©" + +#: src/copy.c:1440 +#, fuzzy, c-format +msgid "cannot create symbolic link %s" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, fuzzy, c-format +msgid "failed to preserve ownership for %s" +msgstr "%sÀÇ ¼ÒÀ¯±ÇÀ» À¯ÁöÇÕ´Ï´Ù" + +#: src/copy.c:1471 +#, fuzzy, c-format +msgid "%s has unknown file type" +msgstr "%s: ¾Ë ¼ö ¾ø´Â ÆÄÀÏÇü" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "%sÀÇ ½Ã°£À» À¯ÁöÇÕ´Ï´Ù" + +#: src/copy.c:1531 +#, fuzzy, c-format +msgid "failed to preserve authorship for %s" +msgstr "%sÀÇ ¼ÒÀ¯±ÇÀ» À¯ÁöÇÕ´Ï´Ù" + +#: src/copy.c:1549 +#, fuzzy, c-format +msgid "setting permissions for %s" +msgstr "%sÀÇ Çã°¡¸¦ ¹Ù²Ü ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:1571 src/ln.c:326 +#, fuzzy, c-format +msgid "cannot un-backup %s" +msgstr "`%s'ÀÇ ¹é¾÷À» µÇµ¹¸± ¼ö ¾ø½À´Ï´Ù" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s -> %s (¹é¾÷ ÇØÁ¦)\n" + +#: src/cp.c:53 +#, fuzzy +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie, ±×¸®°í Jim Meyering" + +#: src/cp.c:164 src/mv.c:311 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"»ç¿ë¹ý: %s [OPTION]... SOURCE DEST\n" +" ¶Ç´Â: %s [OPTION]... SOURCE... DIRECTORY\n" +" ¶Ç´Â: %s -d [OPTION]... --target-directory=DIRECTORY SOURCE...\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "±ä ¿É¼Ç¿¡¼­ ²À ÇÊ¿äÇÑ Àμö´Â ªÀº ¿É¼Ç¿¡µµ ²À ÇÊ¿äÇÕ´Ï´Ù.\n" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" + +#: src/cp.c:209 +#, fuzzy +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +"SOURCE¸¦ DEST·Î º¹»çÇϰųª ¿©·¯°³ÀÇ SOURCE¸¦ DIRECTORY·Î º¹»çÇÕ´Ï´Ù.\n" +"\n" +" -a, --archive -dpR¿É¼Ç°ú °°½À´Ï´Ù\n" +" --backup[=CONTROL] Áö¿ì±â Àü¿¡ ¹é¾÷º»À» ¸¸µì´Ï´Ù.\n" +" -b --backup°ú ºñ½ÁÇѵ¥ Àμö¸¦ ¹ÞÁö ¾Ê´Â´Ù\n" +" -d, --no-dereference ¸µÅ©¸¦ À¯ÁöÇÕ´Ï´Ù\n" +" -f, --force ÀÌ¹Ì Á¸ÀçÇÏ´Â DEST¸¦ Áú¹® ¾øÀÌ »èÁ¦ÇÕ´Ï´Ù.\n" +" -i, --interactive µ¤¾î ¾²±â Àü¿¡ ¿©ºÎ¸¦ ¹¯½À´Ï´Ù\n" +" -l, --link ÆÄÀÏÀ» º¹»çÇÏÁö ¾Ê°í ¸µÅ©ÇÕ´Ï´Ù.\n" +" -p, --preserve °¡´ÉÇÏ´Ù¸é ÆÄÀÏ ¼Ó¼ºÀ» À¯ÁöÇÕ´Ï´Ù.\n" +" -P, --parents ¿øº»ÀÇ °æ·Î¸¦ DIRECTORY¿¡ Ãß°¡ÇÕ´Ï´Ù\n" +" -r ÇÏÀ§ µð·ºÅ丮±îÁö º¹»çÇÕ´Ï´Ù. µð·ºÅ丮°¡\n" +" ¾Æ´Ñ °ÍÀº ÆÄÀÏ·Î ¿©±é´Ï´Ù\n" +" *°æ°í*: FIFO³ª /dev/zero°°Àº Ưº° ÆÄÀÏÀ»\n" +" º¹»çÇÒ °æ¿ì¿¡´Â -RÀ» »ç¿ëÇϼ¼¿ä\n" +" --sparse=WHEN ¼º±ä ÆÄÀÏ(sparse file)ÀÇ »ý¼ºÀ» Á¶ÀýÇÕ´Ï´Ù\n" +" -R, --recursive Àç±ÍÀûÀ¸·Î º¹»çÇÕ´Ï´Ù\n" +" --strip-trailing-slashes °¢ SOURCE Àμö¿¡¼­ ³¡ÀÇ ½½·¡½Ã(/)¹®ÀÚ¸¦\n" +" Áö¿ó´Ï´Ù\n" +" -s, --symbolic-link º¹»çÇÏ´Â ´ë½Å ½Éº¼¸¯ ¸µÅ©¸¦ ¸¸µì´Ï´Ù\n" +" -S, --suffix=SUFFIX ÀϹÝÀûÀÎ ¹é¾÷ Á¢¹Ì»ç¸¦ °ãÃľ¹´Ï´Ù\n" +" --target-directory=DIRECTORY ¸ðµç SOURCE ÀÇ Àμö¸¦ DIRECTORY·Î ¿Å±é´Ï" +"´Ù\n" +" -u, --update SOURCEÆÄÀÏÀÌ º¹»çµÉ ÆÄÀϺ¸´Ù »õ°ÍÀ̰ųª\n" +" º¹»çµÉ ÆÄÀÏÀÌ ¾øÀ» ¶§¸¸ º¹»çÇÕ´Ï´Ù\n" +" -v, --verbose ÀÛ¾÷À» Ãâ·ÂÇÕ´Ï´Ù\n" +" -x, --one-file-system ÀÌ ÆÄÀϽýºÅÛ¿¡¼­¸¸ º¹»çÇÕ´Ï´Ù\n" +" --help ÀÌ µµ¿ò¸»À» º¸¿©ÁÖ°í Á¾·áÇÕ´Ï´Ù\n" +" --version ¹öÀü Á¤º¸¸¦ Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +"\n" +"±âº»ÀûÀ¸·Î ¼º±ä SOURCE ÆÄÀÏÀº ±×¸® ÁÁÁö ¾ÊÀº ¹æ¹ýÀ¸·Î ŽÁöÇØ ³»¾î\n" +"´ëÀÀÇÏ´Â DESTÆÄÀϵµ ¶ÇÇÑ ¼º±â°Ô ¸¸µì´Ï´Ù. À̰ÍÀº --sparse=auto\n" +"¿¡ ÀÇÇØ ¼±ÅõǴ ÇൿÀ̸ç, --sparse=always¶ó°í ÁöÁ¤Çϸé SOURCEÆÄÀÏ¿¡\n" +"ÃæºÐÇÑ Å©±âÀÇ 0À¸·Î °è¼ÓµÇ´Â ÁöÁ¡ÀÌ ÀÖÀ» ¶§´Â ¾ðÁ¦³ª ¼º±ä DESTÆÄÀÏÀ»\n" +"¸¸µì´Ï´Ù.\n" +"--sparse=never¶ó°í ÁöÁ¤ÇÏ¸é ¼º±ä ÆÄÀÏÀ» »ý¼ºÇÏÁö ¸øÇÏ°Ô ÇÕ´Ï´Ù.\n" +"\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" + +#: src/cp.c:221 +#, fuzzy +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +"SOURCE¸¦ DEST·Î À̸§À» ¹Ù²Ù°Å³ª SOURCE¸¦ DIRECTORY·Î ¿Å±é´Ï´Ù.\n" +"\n" +" --backup[=CONTROL] Áö¿ì±â Àü¿¡ ¹é¾÷º»À» ¸¸µì´Ï´Ù\n" +" -b --backup°ú ºñ½ÁÇѵ¥ Àμö¸¦ ¹ÞÁö ¾Ê´Â´Ù\n" +" -f, --force ÀÌ¹Ì Á¸ÀçÇÏ´Â DEST¸¦ Áú¹® ¾øÀÌ »èÁ¦ÇÕ´Ï´Ù.\n" +" -i, --interactive ¿Å±â±â Àü¿¡ ¿©ºÎ¸¦ ¹¯½À´Ï´Ù\n" +" --strip-trailing-slashes °¢ SOURCE Àμö¿¡¼­ µÚ¿¡ ³¡³ª´Â ½½·¡½Ã ±âÈ£¸¦\n" +" »èÁ¦\n" +" -S, --suffix=SUFFIX ÀϹÝÀûÀÎ ¹é¾÷ Á¢¹Ì»ç¸¦ °ãÃľ¹´Ï´Ù\n" +" --target-directory=DIRECTORY SOURCEÀÇ ¸ðµç Àμö¸¦ DIRECTORY·Î ¿Å±é´Ï" +"´Ù\n" +" -u, --update ¿À·¡µÈ ÆÄÀϰú »õ ÆÄÀϸ¸ ¿Å±é´Ï´Ù\n" +" -v, --verbose ÀÛ¾÷À» Ãâ·ÂÇÕ´Ï´Ù\n" +" -V, --version-control=WORD ÀϹÝÀûÀÎ ¹öÀü ÄÜÆ®·ÑÀ» °ãÃľ¹´Ï´Ù\n" +" --help ÀÌ µµ¿ò¸»À» º¸¿©ÁÖ°í Á¾·áÇÕ´Ï´Ù\n" +" --version ¹öÀü Á¤º¸¸¦ Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +"\n" + +#: src/cp.c:230 +#, fuzzy +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +"SOURCE¸¦ DEST·Î º¹»çÇϰųª ¿©·¯°³ÀÇ SOURCE¸¦ DIRECTORY·Î º¹»çÇÕ´Ï´Ù.\n" +"\n" +" -a, --archive -dpR¿É¼Ç°ú °°½À´Ï´Ù\n" +" --backup[=CONTROL] Áö¿ì±â Àü¿¡ ¹é¾÷º»À» ¸¸µì´Ï´Ù.\n" +" -b --backup°ú ºñ½ÁÇѵ¥ Àμö¸¦ ¹ÞÁö ¾Ê´Â´Ù\n" +" -d, --no-dereference ¸µÅ©¸¦ À¯ÁöÇÕ´Ï´Ù\n" +" -f, --force ÀÌ¹Ì Á¸ÀçÇÏ´Â DEST¸¦ Áú¹® ¾øÀÌ »èÁ¦ÇÕ´Ï´Ù.\n" +" -i, --interactive µ¤¾î ¾²±â Àü¿¡ ¿©ºÎ¸¦ ¹¯½À´Ï´Ù\n" +" -l, --link ÆÄÀÏÀ» º¹»çÇÏÁö ¾Ê°í ¸µÅ©ÇÕ´Ï´Ù.\n" +" -p, --preserve °¡´ÉÇÏ´Ù¸é ÆÄÀÏ ¼Ó¼ºÀ» À¯ÁöÇÕ´Ï´Ù.\n" +" -P, --parents ¿øº»ÀÇ °æ·Î¸¦ DIRECTORY¿¡ Ãß°¡ÇÕ´Ï´Ù\n" +" -r ÇÏÀ§ µð·ºÅ丮±îÁö º¹»çÇÕ´Ï´Ù. µð·ºÅ丮°¡\n" +" ¾Æ´Ñ °ÍÀº ÆÄÀÏ·Î ¿©±é´Ï´Ù\n" +" *°æ°í*: FIFO³ª /dev/zero°°Àº Ưº° ÆÄÀÏÀ»\n" +" º¹»çÇÒ °æ¿ì¿¡´Â -RÀ» »ç¿ëÇϼ¼¿ä\n" +" --sparse=WHEN ¼º±ä ÆÄÀÏ(sparse file)ÀÇ »ý¼ºÀ» Á¶ÀýÇÕ´Ï´Ù\n" +" -R, --recursive Àç±ÍÀûÀ¸·Î º¹»çÇÕ´Ï´Ù\n" +" --strip-trailing-slashes °¢ SOURCE Àμö¿¡¼­ ³¡ÀÇ ½½·¡½Ã(/)¹®ÀÚ¸¦\n" +" Áö¿ó´Ï´Ù\n" +" -s, --symbolic-link º¹»çÇÏ´Â ´ë½Å ½Éº¼¸¯ ¸µÅ©¸¦ ¸¸µì´Ï´Ù\n" +" -S, --suffix=SUFFIX ÀϹÝÀûÀÎ ¹é¾÷ Á¢¹Ì»ç¸¦ °ãÃľ¹´Ï´Ù\n" +" --target-directory=DIRECTORY ¸ðµç SOURCE ÀÇ Àμö¸¦ DIRECTORY·Î ¿Å±é´Ï" +"´Ù\n" +" -u, --update SOURCEÆÄÀÏÀÌ º¹»çµÉ ÆÄÀϺ¸´Ù »õ°ÍÀ̰ųª\n" +" º¹»çµÉ ÆÄÀÏÀÌ ¾øÀ» ¶§¸¸ º¹»çÇÕ´Ï´Ù\n" +" -v, --verbose ÀÛ¾÷À» Ãâ·ÂÇÕ´Ï´Ù\n" +" -x, --one-file-system ÀÌ ÆÄÀϽýºÅÛ¿¡¼­¸¸ º¹»çÇÕ´Ï´Ù\n" +" --help ÀÌ µµ¿ò¸»À» º¸¿©ÁÖ°í Á¾·áÇÕ´Ï´Ù\n" +" --version ¹öÀü Á¤º¸¸¦ Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +"\n" +"±âº»ÀûÀ¸·Î ¼º±ä SOURCE ÆÄÀÏÀº ±×¸® ÁÁÁö ¾ÊÀº ¹æ¹ýÀ¸·Î ŽÁöÇØ ³»¾î\n" +"´ëÀÀÇÏ´Â DESTÆÄÀϵµ ¶ÇÇÑ ¼º±â°Ô ¸¸µì´Ï´Ù. À̰ÍÀº --sparse=auto\n" +"¿¡ ÀÇÇØ ¼±ÅõǴ ÇൿÀ̸ç, --sparse=always¶ó°í ÁöÁ¤Çϸé SOURCEÆÄÀÏ¿¡\n" +"ÃæºÐÇÑ Å©±âÀÇ 0À¸·Î °è¼ÓµÇ´Â ÁöÁ¡ÀÌ ÀÖÀ» ¶§´Â ¾ðÁ¦³ª ¼º±ä DESTÆÄÀÏÀ»\n" +"¸¸µì´Ï´Ù.\n" +"--sparse=never¶ó°í ÁöÁ¤ÇÏ¸é ¼º±ä ÆÄÀÏÀ» »ý¼ºÇÏÁö ¸øÇÏ°Ô ÇÕ´Ï´Ù.\n" +"\n" + +#: src/cp.c:239 +#, fuzzy +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"--suffix³ª SIMPLE_BACKUP_SUFFIXȯ°æº¯¼ö¿¡ ÁöÁ¤ÇÏÁö ¾ÊÀ¸¸é ¹é¾÷ Á¢¹Ì»ç´Â\n" +"~ÀÔ´Ï´Ù.\n" +"¹öÀü Á¦¾î´Â --backup¿É¼ÇÀ̳ª VERSION_CONTROLȯ°æº¯¼ö·Î ÁöÁ¤Çϸç, \n" +"´ÙÀ½°ú °°½À´Ï´Ù:\n" +"\n" +" none, off ¹é¾÷À» ÇÏÁö ¾Ê½À´Ï´Ù(--backupÀ» Á־)\n" +" numbered, t ¹øÈ£°¡ ÁÖ¾îÁø ¹é¾÷À» ¸¸µì´Ï´Ù\n" +" existing, nil ¹øÈ£°¡ ÁÖ¾îÁø ¹é¾÷ÀÌ ÀÖÀ¸¸é ¹øÈ£¸¦ ÁÖ°í, ±×·¸Áö ¾ÊÀ¸¸é\n" +" ´Ü¼øÇÏ°Ô ÇÕ´Ï´Ù\n" +" simple, never Ç×»ó ´Ü¼ø ¹é¾÷À» ÇÕ´Ï´Ù\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +#, fuzzy +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +"--suffix³ª SIMPLE_BACKUP_SUFFIXȯ°æº¯¼ö¿¡ ÁöÁ¤ÇÏÁö ¾ÊÀ¸¸é ¹é¾÷ Á¢¹Ì»ç´Â\n" +"~ÀÔ´Ï´Ù.\n" +"¹öÀü Á¦¾î´Â --backup¿É¼ÇÀ̳ª VERSION_CONTROLȯ°æº¯¼ö·Î ÁöÁ¤Çϸç, \n" +"´ÙÀ½°ú °°½À´Ï´Ù:\n" +"\n" +" none, off ¹é¾÷À» ÇÏÁö ¾Ê½À´Ï´Ù(--backupÀ» Á־)\n" +" numbered, t ¹øÈ£°¡ ÁÖ¾îÁø ¹é¾÷À» ¸¸µì´Ï´Ù\n" +" existing, nil ¹øÈ£°¡ ÁÖ¾îÁø ¹é¾÷ÀÌ ÀÖÀ¸¸é ¹øÈ£¸¦ ÁÖ°í, ±×·¸Áö ¾ÊÀ¸¸é\n" +" ´Ü¼øÇÏ°Ô ÇÕ´Ï´Ù\n" +" simple, never Ç×»ó ´Ü¼ø ¹é¾÷À» ÇÕ´Ï´Ù\n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +"Ưº°ÇÑ °æ¿ì·Î, °­Á¦¿Í ¹é¾÷ ¿É¼ÇÀÌ ÁÖ¾îÁö¸ç SOURCE¿Í DEST°¡ À̸§ÀÌ °°°í,\n" +"Á¸ÀçÇÏ´Â ÀÏ¹Ý ÆÄÀÏÀÏ ¶§ cp´Â SOURCEÀÇ ¹é¾÷À» ¸¸µì´Ï´Ù.\n" + +#: src/cp.c:325 +#, fuzzy, c-format +msgid "failed to preserve times for %s" +msgstr "%sÀÇ ½Ã°£À» À¯ÁöÇÕ´Ï´Ù" + +#: src/cp.c:349 +#, fuzzy, c-format +msgid "failed to preserve permissions for %s" +msgstr "%sÀÇ Çã°¡¸¦ ¹Ù²Ü ¼ö ¾ø½À´Ï´Ù" + +#: src/cp.c:434 +#, fuzzy, c-format +msgid "cannot make directory %s" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +#, fuzzy +msgid "missing file argument" +msgstr "Àμö¸¦ °Ç³Ê ¶Ü" + +#: src/cp.c:498 +#, fuzzy +msgid "missing destination file" +msgstr "ÇʵåÀÇ ¸ñ·ÏÀÌ ºüÁ³À½" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, fuzzy, c-format +msgid "accessing %s" +msgstr "%s¸¦ Áö¿ó´Ï´Ù\n" + +#: src/cp.c:546 +#, fuzzy, c-format +msgid "%s: specified target is not a directory" +msgstr "%sÀÌ(°¡) Á¸ÀçÇÏÁö¸¸ µð·ºÅ丮°¡ ¾Æ´Õ´Ï´Ù" + +#: src/cp.c:554 +#, fuzzy, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "¿©·¯°³ÀÇ ÆÄÀÏÀ» º¹»çÇϴµ¥ ¸¶Áö¸· Àμö(%s)´Â µð·ºÅ丮°¡ ¾Æ´Õ´Ï´Ù" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "ÆÐ½º¸¦ À¯ÁöÇÒ ¶§ ¸¶Áö¸· Àμö´Â µð·ºÅ丮¿©¾ß ÇÕ´Ï´Ù" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"°æ°í: --version-control (-V) ¿É¼ÇÀº ´õÀÌ»ó ¾²ÀÌÁö ¾Ê½À´Ï´Ù. ÀÌ ¿É¼ÇÀº\n" +"ÀÌÈÄ ¸±¸®Áî¿¡¼­´Â »èÁ¦µÉ °ÍÀÔ´Ï´Ù. ´ë½Å --backup=%s À» »ç¿ëÇϼ¼¿ä." + +#: src/cp.c:972 src/ln.c:464 +#, fuzzy +msgid "symbolic links are not supported on this system" +msgstr "°æ°í: `--pid=PID'´Â ÀÌ ½Ã½ºÅÛ¿¡¼­ Áö¿øÇÏÁö ¾Ê½À´Ï´Ù" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "Çϵ帵ũ¿Í ½Éº¼¸¯ ¸µÅ©¸¦ µ¿½Ã¿¡ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "¹é¾÷ Á¾·ù" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "Stuart Kemp ±×¸®°í David MacKenzie" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "Àб⠿À·ù" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "ÀÔ·ÂÀÌ »ç¶óÁü" + +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s: ¹üÀ§¸¦ ¹þ¾î³­ Çà ¹øÈ£" + +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: `%s': ¹üÀ§¸¦ ¹þ¾î³­ Çà ¹øÈ£" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr " %d ¹øÂ° ¹Ýº¹Áß\n" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s: `%s': ¸Â´Â ¦À» ãÁö ¸øÇßÀ½" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "Á¤±Ô½Ä Ž»ö¿¡ ¿À·ù ¹ß»ý" + +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "`%s'¿¡ ¾²±â ¿À·ù" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "%s: ±¸È¹ ¹®ÀÚ µÚ¿¡ `+'³ª `-'°¡ ¿Í¾ßÇÔ" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s: `%c' µÚ¿¡ Á¤¼ö°¡ ¿Í¾ßÇÔ" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "%s: ¹Ýº¹ Ƚ¼ö¿¡ `}'°¡ ÇÊ¿äÇÕ´Ï´Ù" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "%s}: `{'°ú `}' »çÀÌ¿¡ Á¤¼ö°¡ ÇÊ¿äÇÔ" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s: ´Ý´Â ±¸ºÐÀÚ `%c'ÀÌ(°¡) ¾ø½À´Ï´Ù" + +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: ºÎÀûÀýÇÑ Á¤±Ô½Ä: %s" + +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "%s: ºÎÀûÀýÇÑ ÆÐÅÏ" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s: Çà¹øÈ£´Â ¿µº¸´Ù Ä¿¾ß ÇÕ´Ï´Ù" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "Çà¹øÈ£ `%s'ÀÌ(°¡) ¾Õ¼± Çà¹øÈ£ %sº¸´Ù ÀÛ½À´Ï´Ù" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "°æ°í: Çà¹øÈ£ `%s'ÀÌ(°¡) ¾Õ¼± Çà¹øÈ£¿Í °°½À´Ï´Ù" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "Á¢¹Ì»ç¿¡ º¯È¯ ÁöÁ¤ÀÚ°¡ ºüÁ³À½" + +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "Á¢¹Ì»ç¿¡ ºÎÀûÀýÇÑ º¯È¯ ÁöÁ¤ÀÚ: %c" + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "Á¢¹Ì»ç¿¡ ºÎÀûÀýÇÑ º¯È¯ ÁöÁ¤ÀÚ: \\%.3o" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "Á¢¹Ì»ç¿¡ %% º¯È¯ ÁöÁ¤ÀÚ°¡ ºüÁ³À½" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "Á¢¹Ì»ç¿¡ %% º¯È¯ ÁöÁ¤ÀÚ°¡ ³Ê¹« ¸¹À½" + +#: src/csplit.c:1441 +#, c-format +msgid "%s: invalid number" +msgstr "%s: ºÎÀûÀýÇÑ ¼ýÀÚ" + +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>]... <ÆÄÀÏ> <ÆÐÅÏ>...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" +"<ÆÄÀÏ>À», <ÆÐÅÏ>À» ±âÁØÀ¸·Î ³ª´« ´ÙÀ½, ±× Á¶°¢µéÀ» `xx01', `xx02', ... ÆÄÀϵé" +"¿¡\n" +"Ãâ·ÂÇϰí, °¢ Á¶°¢µéÀÇ ¹ÙÀÌÆ® ¼ö¸¦ Ç¥ÁØ Ãâ·ÂÀ¸·Î Ãâ·ÂÇÕ´Ï´Ù.\n" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" +" -b, --suffix-format=<Æ÷¸Ë> %d ´ë½Å¿¡ sprintf <Æ÷¸Ë>À» ¾¹´Ï´Ù\n" +" -f, --prefix=<Á¢µÎ¾î> `xx' ´ë½Å¿¡ <Á¢µÎ¾î>¸¦ ¾¹´Ï´Ù\n" +" -k, --keep-files ¿À·ù ¹ß»ý½Ã¿¡µµ Ãâ·Â ÆÄÀϵéÀ» Áö¿ìÁö ¾Ê½À´Ï´Ù\n" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" +" -n, --digits=¼ýÀÚµé 2 ´ë½Å¿¡ ÁöÁ¤ÇÑ ¼ýÀÚµéÀÇ °³¼ö¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n" +" -s, --quiet, --silent Ãâ·Â ÆÄÀÏÀÇ Å©±â¸¦ Ç¥½ÃÇÏÁö ¾Ê½À´Ï´Ù\n" +" -z, --elide-empty-files ºó Ãâ·Â ÆÄÀÏÀ» Áö¿ó´Ï´Ù\n" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" +"\n" +"<ÆÄÀÏ>ÀÌ `-'À̸é Ç¥ÁØ ÀÔ·ÂÀ» ÀнÀ´Ï´Ù. °¢ <ÆÐÅÏ>¿¡´Â ´ÙÀ½À» ¾µ ¼ö ÀÖ½À´Ï" +"´Ù:\n" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" +"\n" +" <Á¤¼ö> ÁöÁ¤ÇÑ ÁÙ¹øÈ£ ¾Õ±îÁö º¹»çÇÕ´Ï´Ù\n" +" /<Á¤±Ô½Ä>/[<¿ÀÇÁ¼Â>] Á¤±Ô½Ä¿¡ ¸Â´Â ÁÙ ¾Õ±îÁö º¹»çÇÕ´Ï´Ù\n" +" %<Á¤±Ô½Ä>%[<¿ÀÇÁ¼Â>] Á¤±Ô½Ä¿¡ ¸Â´Â ÁÙ ¾Õ±îÁö °Ç³Ê ¶Ý´Ï´Ù\n" +" {<Á¤¼ö>} ¹Ù·Î ¾ÕÀÇ ÆÐÅÏÀ» ÁöÁ¤ÇÑ È½¼ö¸¸Å­ ¹Ýº¹ÇÕ´Ï´Ù\n" +" {*} ¹Ù·Î ¾ÕÀÇ ÆÐÅÏÀ» °¡´ÉÇÑÇÑ ¸¹ÀÌ ¹Ýº¹ÇÕ´Ï´Ù\n" +"\n" +"ÁÙ <¿ÀÇÁ¼Â>Àº `+' ȤÀº `-' ´ÙÀ½¿¡ 0º¸´Ù Å« Á¤¼öÀ̾î¾ß ÇÕ´Ï´Ù\n" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie, ±×¸®°í Jim Meyering" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>]... [<ÆÄÀÏ>]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" +"°¢ <ÆÄÀÏ>¿¡¼­ ¼±ÅÃÇÑ Áٵ鸸 Ç¥ÁØ Ãâ·Â¿¡ Ç¥½ÃÇÕ´Ï´Ù.\n" +"\n" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" +" -b, --bytes=<¸®½ºÆ®> ÀÌ ¹ÙÀÌÆ®µé¸¸À» Ç¥½ÃÇÕ´Ï´Ù\n" +" -c, --characters=<¸®½ºÆ®> ÀÌ ¹®Àڵ鸸À» Ç¥½ÃÇÕ´Ï´Ù\n" +" -d, --delimiter=<±¸ºÐÀÚ> ÇÊµå ±¸ºÐÀÚ·Î ÅÇ ´ë½Å¿¡ <±¸ºÐÀÚ>¸¦ ¾¹´Ï´Ù\n" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" +" -f, --fields=<¸®½ºÆ®> ÀÌ Çʵ常À» Ãâ·ÂÇÕ´Ï´Ù; ¶Ç -s ¿É¼ÇÀÌ »ç¿ëµÇÁö\n" +" ¾Ê¾Ò´Ù¸é ±¸ºÐÀÚ ¹®ÀÚ°¡ µé¾î ÀÖÁö ¾ÊÀº ÁÙµµ\n" +" Ãâ·ÂÇÕ´Ï´Ù\n" +" -n (¹«½ÃµÊ)\n" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" +" -s, --only-delimited ±¸ºÐÀÚ°¡ µé¾î ÀÖÁö ¾ÊÀº ÁÙÀº Ç¥½ÃÇÏÁö ¾Ê½À´Ï´Ù\n" +" --output-delimiter=<¹®ÀÚ¿­> <¹®ÀÚ¿­>À» Ãâ·Â ±¸ºÐÀÚ·Î »ç¿ëÇÕ´Ï´Ù\n" +" ±âº»°ªÀº ÀÔ·Â ±¸ºÐÀÚ·Î »ç¿ëÇÏ´Â °ÍÀÔ´Ï´Ù\n" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"-b, -c ȤÀº -f Áß¿¡¼­ ÇÑ °³¸¸À» ¾²½Ê½Ã¿À. °¢ <¸®½ºÆ®>´Â ÇϳªÀÇ ¹üÀ§, \n" +"ȤÀº ½°Ç¥·Î ±¸ºÐµÈ ¿©·¯ °³ÀÇ ¹üÀ§ÀÔ´Ï´Ù. °¢ ¹üÀ§´Â ´ÙÀ½ Áß ÇϳªÀÔ´Ï´Ù:\n" +"\n" +" N N¹øÂ° ¹ÙÀÌÆ®, ¹®ÀÚ, ȤÀº Çʵå, 1ºÎÅÍ ½ÃÀÛÇÕ´Ï´Ù\n" +" N- N¹øÂ° ¹ÙÀÌÆ®, ¹®ÀÚ, ȤÀº ÇʵåºÎÅÍ ÁÙ ³¡±îÁö\n" +" N-M N¹øÂ°ºÎÅÍ M¹øÂ° ¹ÙÀÌÆ®, ¹®ÀÚ, ȤÀº Çʵå±îÁö (N, M¹øÂ° Æ÷ÇÔ)\n" +" -M óÀ½ºÎÅÍ M¹øÂ° ¹ÙÀÌÆ®, ¹®ÀÚ, ȤÀº Çʵå±îÁö (M¹øÂ° Æ÷ÇÔ)\n" +"\n" +"<ÆÄÀÏ>ÀÌ ÁÖ¾îÁöÁö ¾Ê°Å³ª, <ÆÄÀÏ>ÀÌ `-'À̸é, Ç¥ÁØ ÀÔ·ÂÀ» ÀнÀ´Ï´Ù.\n" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "ºÎÀûÀýÇÑ ¹ÙÀÌÆ®³ª ÇÊµå ¸ñ·Ï" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "¿ÀÁ÷ ÇѰ¡Áö ÇüÅÂÀÇ ¸ñ·Ï¸¸ÀÌ ÁöÁ¤µÉ ¼ö ÀÖ½À´Ï´Ù" + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "À§Ä¡ÀÇ ¸ñ·ÏÀÌ ºüÁ³À½" + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "ÇʵåÀÇ ¸ñ·ÏÀÌ ºüÁ³À½" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "±¸È¹ ¹®ÀÚ´Â ´ÜÀÏ ¹®ÀÚ¿©¾ß ÇÕ´Ï´Ù" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "¹ÙÀÌÆ®, ¹®ÀÚ, ¶Ç´Â Çʵå·Î µÈ ¸ñ·ÏÀ» ÁöÁ¤ÇØ¾ß ÇÕ´Ï´Ù" + +#: src/cut.c:720 +#, fuzzy +msgid "an input delimiter may be specified only when operating on fields" +msgstr "Çʵ忡 ´ëÇØ ¿¬»êÇÒ ¶§¿¡¸¸ ±¸È¹ ¹®ÀÚ°¡ ÁöÁ¤µÉ ¼ö ÀÖ½À´Ï´Ù" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" +"±¸ºÐÀÚ°¡ ¾ø´Â ÁÙÀ» ¹«½ÃÇÏ´Â °ÍÀº\n" +"\tÇʵ忡 °üÇØ µ¿ÀÛÇÏ´Â °æ¿ì¿¡¸¸ ÀÌÄ¡¿¡ ¸Â½À´Ï´Ù" + +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "Ç¥ÁØ ÀÔ·Â" + +#: src/date.c:268 src/date.c:460 +#, fuzzy, c-format +msgid "invalid date `%s'" +msgstr "ºÎÀûÀýÇÑ Æø: `%s'" + +#: src/date.c:364 +#, fuzzy +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "--string°ú --check ¿É¼ÇÀº »óÈ£ ¹èŸÀûÀÔ´Ï´Ù" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "" + +#: src/date.c:377 +#, fuzzy, c-format +msgid "too many non-option arguments: %s%s" +msgstr "¿É¼Ç¾Æ´Ñ Àμö°¡ ³Ê¹« ¸¹À½" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" + +#: src/date.c:397 +#, fuzzy +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "--stringÀ» »ç¿ëÇÒ ¶© ÆÄÀÏÀÌ ÁöÁ¤µÉ ¼ö ¾ø½À´Ï´Ù" + +#: src/date.c:433 +msgid "undefined" +msgstr "" + +#: src/date.c:435 +#, fuzzy +msgid "cannot get time of day" +msgstr "ÇÑ °¡Áö ÀÌ»óÀÇ ¹æ¹ýÀ¸·Î ºÐÇÒÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/date.c:468 +#, fuzzy +msgid "cannot set date" +msgstr "`%s'ÀÇ Á¤º¸(stat)¸¦ ¾òÀ» ¼ö ¾ø½À´Ï´Ù" + +#: src/dd.c:43 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "Paul Rubin ±×¸®°í David MacKenzie" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>] [<ÆÄÀÏ>]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "%s+%s°³ÀÇ ·¹Äڵ带 ÀÔ·ÂÇÏ¿´½À´Ï´Ù\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "%s+%s°³ÀÇ ·¹Äڵ带 Ãâ·ÂÇÏ¿´½À´Ï´Ù\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "À߸° ·¹ÄÚµå" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "À߸° ·¹ÄÚµåµé" + +#: src/dd.c:382 +#, fuzzy, c-format +msgid "closing input file %s" +msgstr "ÆÄÀÏ `%s'À»(¸¦) ¸¸µê\n" + +#: src/dd.c:385 +#, fuzzy, c-format +msgid "closing output file %s" +msgstr "%s¸¦ Áö¿ó´Ï´Ù\n" + +#: src/dd.c:469 +#, fuzzy, c-format +msgid "writing to %s" +msgstr "%s¿¡ ¾²´Â µµÁß ¿À·ù ¹ß»ý" + +#: src/dd.c:501 +#, fuzzy, c-format +msgid "invalid conversion: %s" +msgstr "ºÎÀûÀýÇÑ Æø ¿É¼Ç `%s'" + +#: src/dd.c:557 +#, fuzzy, c-format +msgid "unrecognized option %s" +msgstr "ÀνÄÇÒ ¼ö ¾ø´Â ¿É¼Ç `-%c'" + +#: src/dd.c:610 +#, fuzzy, c-format +msgid "unrecognized option %s=%s" +msgstr "ÀνÄÇÒ ¼ö ¾ø´Â ¿É¼Ç `-%c'" + +#: src/dd.c:616 +#, fuzzy, c-format +msgid "invalid number %s" +msgstr "ºÎÀûÀýÇÑ ¼ýÀÚ" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"{ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, {unblock,sync}Áß¿¡ Çϳª" +"ÀÇ conv¸¸ °¡´ÉÇÕ´Ï´Ù" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" + +#: src/dd.c:1170 src/dd.c:1188 +#, fuzzy, c-format +msgid "opening %s" +msgstr "%sÀ»(¸¦) Àд µµÁß ¿À·ù ¹ß»ý" + +#: src/dd.c:1196 +#, fuzzy +msgid "file offset out of range" +msgstr "%s: ¹üÀ§¸¦ ¹þ¾î³­ Çà ¹øÈ£" + +#: src/dd.c:1214 +#, fuzzy, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "%s¸¦ Áö¿ó´Ï´Ù\n" + +#: src/df.c:49 +#, fuzzy +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "David Ihnat, David MacKenzie, ±×¸®°í Jim Meyering" + +#: src/df.c:153 +msgid "Filesystem Type" +msgstr "" + +#: src/df.c:155 +msgid "Filesystem " +msgstr "" + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr "" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr "" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr "" + +#: src/df.c:167 +#, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr "" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr "" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr "" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" + +#: src/df.c:859 +#, fuzzy, c-format +msgid "file system type %s both selected and excluded" +msgstr "ÆÄÀϽýºÅÛ `%s'¸¦ µ¿½Ã¿¡ ¼±ÅÃÇϰí Á¦¿ÜÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/df.c:903 +msgid "Warning: " +msgstr "°æ°í: " + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "%s: ¸¶¿îÆ®µÈ ÆÄÀϽýºÅÛÀÇ Å×À̺íÀº ÀÐÀ» ¼ö ¾ø½À´Ï´Ù" + +#: src/dircolors.c:103 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>]... [<ÆÄÀÏ>]...\n" + +#: src/dircolors.c:104 +#, fuzzy +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"LS_COLORSȯ°æº¯¼ö¸¦ ÁöÁ¤Çϱâ À§ÇÑ ¸í·ÉÀ» Ãâ·ÂÇÕ´Ï´Ù.\n" +"\n" +"Ãâ·Â Æ÷¸Ë:\n" +" -b, --sh, --bourne-shell LS_COLORS¸¦ ÁöÁ¤Çϱâ À§ÇÑ Bourne½© ¸í·É Ãâ·Â\n" +" -c, --csh, --c-shell LS_COLORS¸¦ ÁöÁ¤Çϱâ À§ÇÑ C½© ¸í·É Ãâ·Â\n" +" -p, --print-database ±âº»°ª Ãâ·Â\n" +" --help ÀÌ µµ¿ò¸»À» º¸¿©ÁÖ°í Á¾·áÇÕ´Ï´Ù\n" +" --version ¹öÀü Á¤º¸¸¦ Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +"\n" +"FILEÀÌ ÁöÁ¤µÇ¸é, À̸¦ ÀÐ¾î ÆÄÀÏ ÇüÅÂ¿Í È®ÀåÀÚ¿¡ µû¶ó ¾î¶² »öÀ» »ç¿ëÇÒ °ÍÀÎÁö" +"¸¦\n" +"°áÁ¤ÇÕ´Ï´Ù. ±×·¸Áö ¾ÊÀº °æ¿ì¿¡´Â ¹Ì¸® ¸¸µé¾îÁø µ¥ÀÌÅͺ£À̽º¸¦ »ç¿ëÇÕ´Ï´Ù.\n" +"ÀÌ ÆÄÀÏÀÇ Æ÷¸ËÀ» ÀÚ¼¼È÷ ¾Ë·Á¸é `dircolors --print-database'¶ó°í Çϼ¼¿ä.\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" + +#: src/dircolors.c:299 +#, fuzzy, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s: ºÎÀûÀýÇÑ ÃÊ" + +#: src/dircolors.c:371 +#, fuzzy, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s: ÀνÄÇÒ ¼ö ¾ø´Â ¿É¼Ç `%c%s'\n" + +#: src/dircolors.c:372 +msgid "" +msgstr "<³»Àå>" + +#: src/dircolors.c:467 +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" +"dircolorÀÇ ³»ºÎ µ¥ÀÌÅͺ£À̽º¸¦ Ãâ·ÂÇÏ´Â ¿É¼Ç°ú ½© ¹®¹ýÀ»\n" +"¼±ÅÃÇÏ´Â ¿É¼ÇÀº °°ÀÌ ¾µ ¼ö ¾ø½À´Ï´Ù" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" +"dircolorsÀÇ ³»ºÎ µ¥ÀÌÅͺ£À̽º¸¦ Ãâ·ÂÇÏ´Â ¿É¼ÇÀ» ÁÙ ¶§¿¡´Â\n" +"FILEÀμö´Â ¾²ÀÌÁö ¾Ê½À´Ï´Ù" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "SHELLȯ°æº¯¼ö°¡ ¾ø°í ½© ÇüÅ ¿É¼ÇÀ» ÁöÁ¤ÇÏÁö ¾Ê¾Ò½À´Ï´Ù" + +#: src/dirname.c:33 src/pathchk.c:59 +#, fuzzy +msgid "David MacKenzie and Jim Meyering" +msgstr "David Ihnat, David MacKenzie, ±×¸®°í Jim Meyering" + +#: src/dirname.c:46 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"»ç¿ë¹ý: %s [<ÆÄÀÏ>]...\n" +" ȤÀº: %s [<¿É¼Ç>]\n" + +#: src/dirname.c:51 +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" + +#: src/du.c:49 +#, fuzzy +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "David Ihnat, David MacKenzie, ±×¸®°í Jim Meyering" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" + +#: src/du.c:337 +#, fuzzy, c-format +msgid "cannot change to parent of directory %s" +msgstr "%s µð·ºÅ丮·Î chdirÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/du.c:345 +#, fuzzy, c-format +msgid "cannot change to directory %s" +msgstr "%s µð·ºÅ丮·Î chdirÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/du.c:352 +#, fuzzy, c-format +msgid "cannot read directory %s" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "ÇÕ°è" + +#: src/du.c:641 +#, fuzzy, c-format +msgid "invalid maximum depth %s" +msgstr "ºÎÀûÀýÇÑ Æø: `%s'" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "¸ðµç µð·ºÅ丮 ³»¿ëÀ» Ç¥½ÃÇϸ鼭 ¿ä¾àÇÒ ¼ö´Â ¾ø½À´Ï´Ù" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "°æ°í: ¿ä¾àÀº --max-depth=0À» »ç¿ëÇÏ´Â °Í°ú °°½À´Ï´Ù" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "°æ°í: --max-depth=%d´Â ¿ä¾à ¿É¼Ç°ú Ãæµ¹ÇÕ´Ï´Ù" + +#: src/echo.c:77 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>]... [<ÆÄÀÏ>]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/env.c:93 +#, fuzzy +msgid "Richard Mlynarik and David MacKenzie" +msgstr "Richard Stallman ±×¸®°í David MacKenzie" + +#: src/env.c:119 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>]... [<ÆÄÀÏ>]...\n" + +#: src/env.c:122 +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"°¢ <ÆÄÀÏ>µéÀÇ ÅÇÀ» °ø¹éÀ¸·Î ¹Ù²Ù°í, Ç¥ÁØ Ãâ·Â¿¡ ¾¹´Ï´Ù.\n" +"<ÆÄÀÏ>ÀÌ ÁÖ¾îÁöÁö ¾Ê°Å³ª, <ÆÄÀÏ>ÀÌ `-'À̸é, Ç¥ÁØ ÀÔ·ÂÀ» ÀнÀ´Ï´Ù.\n" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" +" -i, --initial °ø¹é ´ÙÀ½¿¡ ÀÖ´Â ÅÇÀ» º¯È¯ÇÏÁö ¾Ê½À´Ï´Ù\n" +" -t, --tabs=<°³¼ö> ÅÇÀ» 8ÀÌ ¾Æ´Ñ <°³¼ö>¸¸Å­ÀÇ ¹®ÀÚÅ©±âÀÇ °ø¹éÀ¸·Î Ãë±ÞÇÕ´Ï" +"´Ù\n" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" +" -t, --tabs=¸®½ºÆ® ÅÇ À§Ä¡¸¦ Á÷Á¢ ½°Ç¥·Î ±¸ºÐÇÑ ¸®½ºÆ®·Î ³ªÅ¸³À´Ï´Ù\n" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "ÅÇ Å©±â¿¡ ºÎÀûÀýÇÑ ¹®ÀÚ°¡ ÁöÁ¤µÇ¾î ÀÖ½À´Ï´Ù" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "ÅÇ Å©±â´Â 0ÀÌ µÉ ¼ö ¾ø½À´Ï´Ù" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "ÅÇ Å©±âµéÀº Á¡Á¡ Ä¿Á®¾ß ÇÕ´Ï´Ù" + +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "`-<¸®½ºÆ®>' ¿É¼ÇÀº ¾ø¾îÁ³½À´Ï´Ù `-t <¸®½ºÆ®>'¸¦ »ç¿ëÇϽʽÿÀ " + +#: src/expr.c:90 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"»ç¿ë¹ý: %s [<ÆÄÀÏ>]...\n" +" ȤÀº: %s [<¿É¼Ç>]\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +#, fuzzy +msgid "syntax error" +msgstr "Ç¥ÁØ ¿À·ù" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" + +#: src/expr.c:586 src/expr.c:625 +#, fuzzy +msgid "non-numeric argument" +msgstr "Àμö Á¦ÇÑ" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "" + +#: src/factor.c:74 +#, fuzzy, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"»ç¿ë¹ý: %s [<ÆÄÀÏ>]...\n" +" ȤÀº: %s [<¿É¼Ç>]\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" + +#: src/factor.c:85 +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "" + +#: src/false.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "»ç¿ë¹ý: %s [-<¼ýÀÚ>] [<¿É¼Ç>]... [<ÆÄÀÏ>]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" +"<ÆÄÀÏ>ÀÇ °¢ ¹®´ÜÀ» ´Ù½Ã ±¸¼ºÇØ, Ç¥ÁØ Ãâ·Â¿¡ ¾¹´Ï´Ù.\n" +"<ÆÄÀÏ>ÀÌ ¾ø°Å³ª <ÆÄÀÏ>ÀÌ `-'À̸é, Ç¥ÁØ ÀÔ·ÂÀ» ÀнÀ´Ï´Ù.\n" +"\n" + +# refillÀ» ¹¹¶ó°í ¹ø¿ª? -- ÁÙÀÌ ³²À» ¶§ ¾Æ·¡ ¹®ÀåÀÇ ÀϺθ¦ °®´Ù ºÙÀÌ´Â °Í +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" +" -c, --crown-margin ¸Ç óÀ½ µÎ ÁÙÀÇ µé¿©¾²±â¸¦ À¯ÁöÇÕ´Ï´Ù\n" +" -p, --prefix=<¹®ÀÚ¿­> <¹®ÀÚ¿­>À» Á¢µÎ¾î·Î °¡Áø ÁÙ¸¸À» °áÇÕÇÕ´Ï´Ù\n" +" -s, --split-only ±ä ÁÙÀ» ³ª´©µÇ, ä¿ö ³ÖÁö´Â ¾Ê½À´Ï´Ù\n" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" +" -t, --tagged-paragraph ù ¹øÂ° ÁÙÀÇ µé¿©¾²±â¸¦ µÎ ¹øÂ°¿Í ´Ù¸£°Ô ÇÕ´Ï´Ù\n" +" -u, --uniform-spacing ´Ü¾î »çÀÌ¿¡ ÇÑ °³ÀÇ °ø¹é, ¹®Àå ´ÙÀ½¿¡ µÎ °³ÀÇ °ø" +"¹é\n" +" -w, --width=<°³¼ö> ÇÑ ÁÙÀÇ ÃÖ´ë Æø (±âº»°ªÀº 75¿­)\n" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" +"\n" +"-w<°³¼ö>¿¡¼­, `w'¸¦ »ý·«ÇÒ ¼ö ÀÖ½À´Ï´Ù.\n" + +#: src/fmt.c:345 +#, c-format +msgid "invalid width option: `%s'" +msgstr "ºÎÀûÀýÇÑ Æø ¿É¼Ç `%s'" + +#: src/fmt.c:385 +#, c-format +msgid "invalid width: `%s'" +msgstr "ºÎÀûÀýÇÑ Æø: `%s'" + +# wrapÀ» ¹¹¶ó°í ÇÑ´Ù? +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" +"°¢ <ÆÄÀÏ>¿¡¼­ (±âº»°ªÀº Ç¥ÁØÀԷ¿¡¼­) ÀÔ·ÂµÈ ÁÙÀ» ³ª´²¼­, Ç¥ÁØ Ãâ·Â¿¡\n" +"¾¹´Ï´Ù.\n" +"\n" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" +" -b, --bytes ¿­ÀÌ ¾Æ´Ï¶ó ¹ÙÀÌÆ® ¼ö¸¦ ¼Á´Ï´Ù\n" +" -s, --spaces °ø¹é¿¡¼­ ÁÙÀ» ³ª´¯´Ï´Ù\n" +" -w, --width=<Æø> 80¿­ ´ë½Å¿¡ <Æø>¿­À» ÀÌ¿ëÇÕ´Ï´Ù\n" + +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "`%s': ¾ø¾îÁø ¿É¼ÇÀÔ´Ï´Ù; `%s'À»(¸¦) »ç¿ëÇϽʽÿÀ" + +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "ºÎÀûÀýÇÑ ¿­ÀÇ °³¼ö: `%s'" + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"°¢ <ÆÄÀÏ>ÀÇ ¸Ç ù 10ÁÙÀ» Ç¥ÁØ Ãâ·Â¿¡ Ç¥½ÃÇÕ´Ï´Ù.\n" +"µÎ °³ ÀÌ»óÀÇ <ÆÄÀÏ>ÀÇ °æ¿ì, °¢°¢ÀÇ ÆÄÀϸ¶´Ù ÆÄÀÏÀ̸§À» ³ªÅ¸³»´Â Çì´õ¸¦ ¸Õ" +"Àú \n" +"Ç¥½ÃÇÕ´Ï´Ù. <ÆÄÀÏ>ÀÌ ÁÖ¾îÁöÁö ¾Ê°Å³ª, <ÆÄÀÏ>ÀÌ `-'À̸é, Ç¥ÁØ ÀÔ·ÂÀ» ÀнÀ´Ï" +"´Ù.\n" +"\n" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" +" -c, --bytes=<Å©±â> ¸Ç ù <Å©±â>¹ÙÀÌÆ®¸¦ Ç¥½ÃÇÕ´Ï´Ù\n" +" -n, --lines=<°³¼ö> 10ÁÙÀÌ ¾Æ´Ï¶ó ¸Ç ù <¼ýÀÚ>ÁÙÀ» Ç¥½ÃÇÕ´Ï´Ù\n" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" +" -q, --quiet, --silent ÆÄÀÏÀ̸§À» ³ªÅ¸³»´Â Çì´õ¸¦ Ç¥½ÃÇÏÁö ¾Ê½À´Ï´Ù\n" +" -v, --verbose ¾ðÁ¦³ª ÆÄÀÏÀ̸§À» ³ªÅ¸³»´Â Çì´õ¸¦ Ç¥½ÃÇÕ´Ï´Ù\n" + +# ÇÑ ÁÙ¿¡ ¸ÂÃßÀÚ +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" +"\n" +"<Å©±â>¿¡ Á¢¹Ì¾î·Î ±× ´ÜÀ§¸¦ ³ªÅ¸³¾ ¼ö ÀÖ½À´Ï´Ù; b´Â 512, k´Â 1ų·Î, mÀº 1¸Þ°¡" +"ÀÔ´Ï´Ù.\n" + +#: src/head.c:190 +#, c-format +msgid "cannot reposition file pointer for %s" +msgstr "%s¿¡ ´ëÇÑ ÆÄÀÏ Æ÷ÀÎÅ͸¦ ÀçÀ§Ä¡ÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "%s: %sÀº(´Â) ³Ê¹« Ä¿¼­ Ç¥½ÃÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "ÇàÀÇ °³¼ö" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "¹ÙÀÌÆ® ¼ö" + +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "ºÎÀûÀýÇÑ ÇàÀÇ °³¼ö" + +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "%s: ºÎÀûÀýÇÑ ¹ÙÀÌÆ® ¼ö" + +#: src/head.c:341 +#, c-format +msgid "unrecognized option `-%c'" +msgstr "ÀνÄÇÒ ¼ö ¾ø´Â ¿É¼Ç `-%c'" + +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "`-%s'¿É¼ÇÀº ¾ø¾îÁ³½À´Ï´Ù; `-%c %.*s%.*s%s'À»(¸¦) »ç¿ëÇϽʽÿÀ" + +#: src/hostid.c:48 +#, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" + +#: src/hostname.c:67 +#, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" + +#: src/hostname.c:104 +#, fuzzy, c-format +msgid "cannot set hostname to `%s'" +msgstr "`%s'¿¡¼­ ioctlÀ» ÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "" + +#: src/hostname.c:117 +#, fuzzy +msgid "cannot determine hostname" +msgstr "%s: µ¹¾Æ°¥ ¼ö ¾ø½À´Ï´Ù" + +#: src/id.c:36 +#, fuzzy +msgid "Arnold Robbins and David MacKenzie" +msgstr "Paul Rubin ±×¸®°í David MacKenzie" + +#: src/id.c:87 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>]... <ÁýÇÕ1> [<ÁýÇÕ2>]\n" + +#: src/id.c:88 +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" + +#: src/id.c:162 +#, fuzzy +msgid "cannot print only user and only group" +msgstr "»ç¿ëÀÚ¿Í ±×·ìÀ» ¸ðµÎ »ý·«ÇÒ ¼ö´Â ¾ø½À´Ï´Ù" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "" + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "" + +#: src/id.c:235 +#, fuzzy, c-format +msgid "cannot find name for group ID %u" +msgstr "%sÀÇ ¼ÒÀ¯ÀÚ ±×¸®°í/ȤÀº ±×·ìÀ» ¹Ù²Ü ¼ö ¾ø½À´Ï´Ù" + +#: src/id.c:273 +#, fuzzy +msgid "cannot get supplemental group list" +msgstr "null ±×·ìÀ¸·Î ¹Ù²Ü ¼ö ¾ø½À´Ï´Ù" + +#: src/id.c:385 +msgid " groups=" +msgstr "" + +#: src/install.c:269 +msgid "the strip option may not be used when installing a directory" +msgstr "strip¿É¼ÇÀº µð·ºÅ丮¸¦ ¼³Ä¡ÇÒ ¶§´Â ¾µ ¼ö ¾ø½À´Ï´Ù" + +#: src/install.c:292 src/mkdir.c:140 +#, fuzzy, c-format +msgid "invalid mode %s" +msgstr "ºÎÀûÀýÇÑ Æø: `%s'" + +#: src/install.c:307 src/install.c:371 +#, fuzzy, c-format +msgid "creating directory %s" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/install.c:332 +#, fuzzy, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "¿©·¯°³ÀÇ ÆÄÀÏÀ» ¼³Ä¡Çϴµ¥ ¸¶Áö¸· Àμö(%s)´Â µð·ºÅ丮°¡ ¾Æ´Õ´Ï´Ù" + +#: src/install.c:435 +#, fuzzy, c-format +msgid "%s is a directory" +msgstr "%sÀÌ(°¡) Á¸ÀçÇÏÁö¸¸ µð·ºÅ丮°¡ ¾Æ´Õ´Ï´Ù" + +#: src/install.c:495 +#, fuzzy, c-format +msgid "cannot obtain time stamps for %s" +msgstr "%s¿¡ ´ëÇÑ ÆÄÀÏ Æ÷ÀÎÅ͸¦ ÀçÀ§Ä¡ÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/install.c:507 +#, fuzzy, c-format +msgid "cannot set time stamps for %s" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/install.c:528 +#, fuzzy +msgid "fork system call failed" +msgstr "ºí·Ï Ư¼ö ÆÄÀÏ" + +#: src/install.c:532 +msgid "cannot run strip" +msgstr "strip¸¦ ½ÇÇàÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/install.c:539 +#, fuzzy +msgid "strip failed" +msgstr "stat ½ÇÆÐ" + +#: src/install.c:560 +#, fuzzy, c-format +msgid "invalid user %s" +msgstr "À߸øµÈ »ç¿ëÀÚ" + +#: src/install.c:578 +#, fuzzy, c-format +msgid "invalid group %s" +msgstr "À߸øµÈ ±×·ì" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"»ç¿ë¹ý: %s [OPTION]... SOURCE DEST (ù¹øÂ° Çü½Ä)\n" +" ¶Ç´Â: %s [OPTION]... SOURCE... DIRECTORY (µÎ¹øÂ° Çü½Ä)\n" +" ¶Ç´Â: %s -d [OPTION]... DIRECTORY... (¼¼¹øÂ° Çü½Ä)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +#, fuzzy +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"--suffix³ª SIMPLE_BACKUP_SUFFIXȯ°æº¯¼ö¿¡ ÁöÁ¤ÇÏÁö ¾ÊÀ¸¸é ¹é¾÷ Á¢¹Ì»ç´Â\n" +"~ÀÔ´Ï´Ù.\n" +"¹öÀü Á¦¾î´Â --backup¿É¼ÇÀ̳ª VERSION_CONTROLȯ°æº¯¼ö·Î ÁöÁ¤Çϸç, \n" +"´ÙÀ½°ú °°½À´Ï´Ù:\n" +"\n" +" none, off ¹é¾÷À» ÇÏÁö ¾Ê½À´Ï´Ù(--backupÀ» Á־)\n" +" numbered, t ¹øÈ£°¡ ÁÖ¾îÁø ¹é¾÷À» ¸¸µì´Ï´Ù\n" +" existing, nil ¹øÈ£°¡ ÁÖ¾îÁø ¹é¾÷ÀÌ ÀÖÀ¸¸é ¹øÈ£¸¦ ÁÖ°í, ±×·¸Áö ¾ÊÀ¸¸é\n" +" ´Ü¼øÇÏ°Ô ÇÕ´Ï´Ù\n" +" simple, never Ç×»ó ´Ü¼ø ¹é¾÷À» ÇÕ´Ï´Ù\n" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>]... <ÆÄÀÏ1> <ÆÄÀÏ2>\n" + +# -a SIDE, -e EMPTY Àç°í·Á +#: src/join.c:148 +#, fuzzy +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" +"ÀÔ·ÂÁß¿¡¼­ µ¿ÀÏÇÑ join Çʵ带 °¡Áø ÁÙÀÇ °¢°¢ÀÇ ½Ö¿¡ ´ëÇØ, Ç¥ÁØ ÀÔ·ÂÀ¸·Î\n" +"Ãâ·ÂÇÕ´Ï´Ù. ±âº» join Çʵå´Â ù ¹øÂ° Çʵå·Î, Çʵå´Â °ø¹é¿¡ ÀÇÇØ ±¸ºÐ µË´Ï" +"´Ù.\n" +"<ÆÄÀÏ1> ȤÀº <ÆÄÀÏ2>°¡ -À϶§ (µÑ ´Ù -ÀÌ¸é ¾È µÊ) Ç¥ÁØ ÀԷ¿¡¼­ ÀнÀ´Ï´Ù.\n" +"\n" +" -a <»çÀ̵å> <»çÀ̵å> ÆÄÀÏ¿¡¼­ ½ÖÀ» Áö¿ï ¼ö ¾ø´Â ÁÙÀ» Ãâ·ÂÇÕ´Ï´Ù\n" +" -e <¿¥ÇÁƼ> ÀÔ·Â Çʵ尡 ¾ø´Â °÷¿¡ <¿¥ÇÁƼ>¸¦ ¾¹´Ï´Ù.\n" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" +" -i, --ignore-case Çʵ带 ±¸ºÐÇÒ ¶§ ´ë¼Ò¹®ÀÚ¸¦ ±¸º°ÇÏÁö ¾Ê½À´Ï´Ù\n" +" -j <Çʵå> (°ð ¾ø¾îÁú ¿É¼Ç) `-1 <Çʵå> -2 <Çʵå>'¿Í µ¿ÀÏÇÕ´Ï´Ù\n" +" -j1 <Çʵå> (°ð ¾ø¾îÁú ¿É¼Ç) `-1 <Çʵå>'¿Í µ¿ÀÏÇÕ´Ï´Ù\n" +" -j2 <Çʵå> (°ð ¾ø¾îÁú ¿É¼Ç) `-2 <Çʵå>'¿Í µ¿ÀÏÇÕ´Ï´Ù\n" +" -o <Çü½Ä> Ãâ·Â ÁÙÀ» ¸¸µé ¶§ <Çü½Ä>À» µû¸¨´Ï´Ù\n" +" -t <¹®ÀÚ> ÀÔ·Â ¹× Ãâ·Â ÇÊµå ±¸ºÐÀÚ·Î <¹®ÀÚ>¸¦ »ç¿ëÇÕ´Ï´Ù\n" + +#: src/join.c:165 +#, fuzzy +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" +" -v <»çÀ̵å> -a <»çÀ̵å>¿Í µ¿ÀÏÇÏÁö¸¸, joinµÈ ÁÙÀ» Ãâ·ÂÇÏÁö ¾Ê½À´Ï´Ù\n" +" -1 <Çʵå> ÆÄÀÏ 1¿¡¼­ ÀÌ <Çʵå>¿¡ ´ëÇØ joinÇÕ´Ï´Ù\n" +" -2 <Çʵå> ÆÄÀÏ 2¿¡¼­ ÀÌ <Çʵå>¿¡ ´ëÇØ joinÇÕ´Ï´Ù\n" + +#: src/join.c:172 +#, fuzzy +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" +"\n" +"`-t <¹®ÀÚ>' ¿É¼ÇÀ» ¾²Áö ¾Ê¾Ò´Ù¸é, ÁÙÀÇ ¸Ç ¾ÕÀÇ °ø¹éÀº ¹«½ÃµË´Ï´Ù. ÀÌ ¿É¼Ç" +"À»\n" +"½è´Ù¸é °¢ Çʵå´Â <¹®ÀÚ>¿¡ ÀÇÇØ ±¸ºÐµË´Ï´Ù. <Çʵå>´Â ÇÊµå ¹øÈ£·Î 1ºÎÅÍ \n" +"½ÃÀÛÇÕ´Ï´Ù. <Çü½Ä>Àº Çʵ带 ½°Ç¥ ȤÀº °ø¹é¿¡ ÀÇÇØ ±¸ºÐµÇ´Â Çü½Ä ÁöÁ¤ÀÚ·Î, \n" +"°¢°¢ÀÇ Çü½Ä ÁöÁ¤ÀÚ´Â `<»çÀ̵å>.<Çʵå>' ȤÀº `0'ÀÇ Çü½ÄÀ» Áö´Õ´Ï´Ù. ±âº»\n" +"<Çü½Ä> Ãâ·ÂÀ¸·Î, join Çʵå, <ÆÄÀÏ1>¿¡ ³²¾Æ ÀÖ´Â Çʵå, <ÆÄÀÏ2>¿¡ ³²¾Æ ÀÖ´Â \n" +"ÇʵåÀÇ ¼ø¼­´ë·Î °¢°¢Àº <¹®ÀÚ>¿¡ ±¸ºÐµÇ¾î Ãâ·ÂµË´Ï´Ù.\n" + +#: src/join.c:645 +#, c-format +msgid "invalid field specifier: `%s'" +msgstr "ºÎÀûÀýÇÑ Çʵå ÁöÁ¤ÀÚ: `%s'" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, c-format +msgid "invalid field number: `%s'" +msgstr "ºÎÀûÀýÇÑ ÇÊµå ¹øÈ£: `%s'" + +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "Çʵå ÁöÁ¤¿¡ ºÎÀûÀýÇÑ ÆÄÀÏ ¹øÈ£: `%s'" + +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "ÆÄÀÏ 1¿¡ ´ëÇÑ ÇÊµå ¹øÈ£·Î ºÎÀûÀýÇÔ: `%s'" + +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "ÆÄÀÏ 2¿¡ ´ëÇÑ ÇÊµå ¹øÈ£·Î ºÎÀûÀýÇÔ: `%s'" + +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "¿É¼Ç¾Æ´Ñ Àμö°¡ ³Ê¹« ¸¹À½" + +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "¿É¼Ç¾Æ´Ñ Àμö°¡ ³Ê¹« ÀûÀ½" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "µÎ ÆÄÀÏÀÌ ¸ðµÎ Ç¥ÁØ ÀÔ·ÂÀÌ¸é ¾È µË´Ï´Ù" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" + +#: src/kill.c:106 +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" + +#: src/kill.c:163 +#, fuzzy, c-format +msgid "%s: invalid signal" +msgstr "%s: ºÎÀûÀýÇÑ PID" + +#: src/kill.c:262 +#, fuzzy, c-format +msgid "missing operand after `%s'" +msgstr "%s: `%c' µÚ¿¡ Á¤¼ö°¡ ¿Í¾ßÇÔ" + +#: src/kill.c:274 +#, fuzzy, c-format +msgid "%s: invalid process id" +msgstr "%s: ºÎÀûÀýÇÑ ÆÐÅÏ" + +#: src/kill.c:327 +#, fuzzy, c-format +msgid "invalid option -- %c" +msgstr "%s: ºÎÀûÀýÇÑ ¿É¼Ç -- %c\n" + +#: src/kill.c:336 +#, c-format +msgid "%s: multiple signals specified" +msgstr "" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "" + +#: src/link.c:51 +#, fuzzy, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"»ç¿ë¹ý: %s [<ÆÄÀÏ>]...\n" +" ȤÀº: %s [<¿É¼Ç>]\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" + +#: src/link.c:98 +#, fuzzy, c-format +msgid "cannot create link %s to %s" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/ln.c:39 +#, fuzzy +msgid "Mike Parker and David MacKenzie" +msgstr "Scott Bartram ±×¸®°í David MacKenzie" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "" +"%s: °æ°í: ½Éº¼¸¯ ¸µÅ©·Î Çϵ帵ũ¸¦ ¸¸µå´Â °ÍÀº ½Ã½ºÅÛ¿¡ µû¶ó ¾ÈµÉ ¼öµµ\n" +" ÀÖ½À´Ï´Ù." + +#: src/ln.c:174 +#, c-format +msgid "%s: hard link not allowed for directory" +msgstr "%s: µð·ºÅ丮´Â Çϵ帵ũÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/ln.c:246 +#, fuzzy, c-format +msgid "%s: cannot overwrite directory" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/ln.c:251 +#, fuzzy, c-format +msgid "%s: replace %s? " +msgstr "%s: `%s'¸¦ ¹Ù²Ü±î¿ä? " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: ÆÄÀÏÀÌ Á¸ÀçÇÕ´Ï´Ù" + +#: src/ln.c:304 +#, fuzzy, c-format +msgid "create symbolic link %s to %s" +msgstr "½Éº¼¸¯ ¸µÅ©" + +#: src/ln.c:305 +#, fuzzy, c-format +msgid "create hard link %s to %s" +msgstr "Çϵ帵ũ `%s'¸¦ `%s'¿¡ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/ln.c:319 +#, fuzzy, c-format +msgid "creating symbolic link %s to %s" +msgstr "½Éº¼¸¯ ¸µÅ© `%s'¸¦ `%s'¿¡ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/ln.c:320 +#, fuzzy, c-format +msgid "creating hard link %s to %s" +msgstr "Çϵ帵ũ `%s'¸¦ `%s'¿¡ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/ln.c:339 +#, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"»ç¿ë¹ý: %s [OPTION]... TARGET [LINK_NAME]\n" +" ¶Ç´Â: %s [OPTION]... TARGET... DIRECTORY\n" +" ¶Ç´Â: %s [OPTION]... --target-directory=DIRECTORY TARGET...\\n\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" + +#: src/ln.c:521 +#, fuzzy, c-format +msgid "%s: specified target directory is not a directory" +msgstr "%sÀÌ(°¡) Á¸ÀçÇÏÁö¸¸ µð·ºÅ丮°¡ ¾Æ´Õ´Ï´Ù" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "¿©·¯°³ÀÇ ¸µÅ©¸¦ ¸¸µé ¶§¿¡´Â ¸¶Áö¸· Àμö´Â µð·ºÅ丮¿©¾ß ÇÕ´Ï´Ù" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>] [<ÆÄÀÏ>]...\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" + +#: src/logname.c:99 +#, fuzzy, c-format +msgid "%s: no login name\n" +msgstr "%s: ºÎÀûÀýÇÑ ¼ýÀÚ" + +#: src/ls.c:673 +#, fuzzy +msgid "%b %e %Y" +msgstr " %Y %b %e %H:%M" + +#: src/ls.c:681 +#, fuzzy +msgid "%b %e %H:%M" +msgstr " %Y %b %e %H:%M" + +#: src/ls.c:1307 +#, fuzzy, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "ȯ°æº¯¼ö COLUMNSÀÇ °ª¿¡ ´ÙÀ½ÀÇ À߸øµÈ ÆøÀÌ ÁöÁ¤µÇ¾ú½À´Ï´Ù: %s" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "ȯ°æº¯¼ö COLUMNSÀÇ °ª¿¡ ´ÙÀ½ÀÇ À߸øµÈ ÆøÀÌ ÁöÁ¤µÇ¾ú½À´Ï´Ù: %s" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "ȯ°æº¯¼ö TABSIZEÀÇ °ª¿¡ ´ÙÀ½ÀÇ À߸øµÈ ÅÇ Å©±â°¡ ÁöÁ¤µÇ¾ú½À´Ï´Ù: %s" + +#: src/ls.c:1482 +#, fuzzy, c-format +msgid "invalid line width: %s" +msgstr "ºÎÀûÀýÇÑ Æø: `%s'" + +#: src/ls.c:1556 +#, fuzzy, c-format +msgid "invalid tab size: %s" +msgstr "ºÎÀûÀýÇÑ Å¸ÀÔÀÇ ¹®ÀÚ¿­ `%s'" + +#: src/ls.c:1722 +#, fuzzy, c-format +msgid "invalid time style format %s" +msgstr "%2$s¿¡ ´ëÇØ ºÎÀûÀýÇÑ ÀÎÀÚ %1$s" + +#: src/ls.c:2054 +#, fuzzy, c-format +msgid "unrecognized prefix: %s" +msgstr "ÀνÄÇÒ ¼ö ¾ø´Â ¿É¼Ç `-%c'" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "LS_COLORSȯ°æº¯¼öÀÇ ÇØ¼®ÇÒ ¼ö ¾ø´Â °ª" + +#: src/ls.c:2145 +#, fuzzy, c-format +msgid "cannot determine device and inode of %s" +msgstr "%s¿¡ ´ëÇÑ ÆÄÀÏ Æ÷ÀÎÅ͸¦ ÀçÀ§Ä¡ÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/ls.c:2155 +#, fuzzy, c-format +msgid "not listing already-listed directory: %s" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/ls.c:2208 src/remove.c:929 +#, fuzzy, c-format +msgid "reading directory %s" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/ls.c:2603 +#, fuzzy, c-format +msgid "cannot compare file names %s and %s" +msgstr "ºñ±³ÇÑ ¹®ÀÚ¿­Àº %s°ú(¿Í) %sÀÔ´Ï´Ù." + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" + +#: src/ls.c:3784 +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" + +#: src/ls.c:3799 +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" + +#: src/ls.c:3831 +#, fuzzy +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -g (¹«½ÃÇÕ´Ï´Ù)\n" +" -G, --no-group ±×·ìÁ¤º¸ Ãâ·ÂÀ» ÇÏÁö ¾Ê½À´Ï´Ù\n" +" -h, --human-readable Å©±â¸¦ »ç¶÷ÀÌ ¾Ë±â ½±°Ô(1K, 234M, 2Gµî)Ç¥½ÃÇÕ´Ï" +"´Ù\n" +" -H, --si ºñ½ÁÇÕ´Ï´Ù¸¸ 1024¹è ´ë½Å 1000¹è¸¦ »ç¿ëÇÕ´Ï´Ù\n" +" --indicator-style=WORD WORD ½ºÅ¸ÀÏ·Î ÆÄÀÏ ±¸ºÐÀ» ÇØ ÁÝ´Ï´Ù. °¡´ÉÇÑ °ª" +"Àº:\n" +" none (±âº»°ª), Á¾·ù (-F), ÆÄÀÏÇü½Ä (-p)\n" +" -i, --inode °¢ ÆÄÀÏÀÇ i-node¹øÈ£¸¦ Ãâ·ÂÇÕ´Ï´Ù\n" +" -I, --ignore=PATTERN ¼Ð PATTERN¿Í ÀÏÄ¡ÇÏ´Â ¸ñ·ÏÀº Ãâ·ÂÇÏÁö ¾Ê½À´Ï´Ù\n" +" -k, --kilobytes --block-size=1024¿Í °°½À´Ï´Ù\n" +" -l ±ä Ãâ·Â Æ÷¸ËÀ» »ç¿ëÇÕ´Ï´Ù\n" +" -L, --dereference ½Éº¼¸¯ ¸µÅ©¸¦ µû¶ó°¡ ¸µÅ©µÈ ¸ñ·ÏÀ» Ãâ·ÂÇÕ´Ï´Ù\n" +" -m Ç౸ºÐ ¾øÀÌ ½°Ç¥·Î ±¸ºÐµÇ´Â ¸ñ·Ï Ãâ·ÂÀ» ÇÕ´Ï´Ù\n" +" -n, --numeric-uid-gid À̸§ ´ë½Å ¼ýÀÚ·Î µÈ UID¿Í GID¸¦ Ãâ·ÂÇÕ´Ï´Ù\n" +" -N, --literal ¸ñ·Ï À̸§À» ±×´ë·Î Ãâ·ÂÇÕ´Ï´Ù\n" +" (ÄÜÆ®·Ñ ¹®ÀÚµµ Ưº°È÷ ó¸®ÇÏÁö ¾Ê½À´Ï´Ù)\n" +" -o ±×·ìÁ¤º¸ ¾øÀÌ ±ä Ãâ·Â Æ÷¸ËÀ» »ç¿ëÇÕ´Ï´Ù\n" +" -p, --file-type °¢ ¸ñ·ÏÀ» ±¸ºÐÇϱâ À§ÇÑ ¹®ÀÚ(/=@|)¸¦ µÚ¿¡ ºÙÀÔ´Ï" +"´Ù\n" +" -q, --hide-control-chars Ãâ·ÂÇÒ ¼ö ¾ø´Â ¹®ÀÚ ´ë½Å ?À» Ãâ·ÂÇÕ´Ï´Ù\n" +" --show-control-chars Ãâ·ÂÇÒ ¼ö ¾ø´Â ¹®ÀÚ¸¦ ±×´ë·Î º¸¿©ÁÝ´Ï´Ù(±âº»" +"°ª)\n" +" -Q, --quote-name ¸ñ·Ï À̸§À» Å«µû¿ÈÇ¥ ¾È¿¡ ³Ö½À´Ï´Ù\n" +" --quoting-style=WORD WORDÀÇ ÀÎ¿ë ½ºÅ¸ÀÏÀ» »ç¿ëÇÕ´Ï´Ù. °¡´ÉÇÑ °ªÀº:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +" -r, --reverse Á¤·Ä¼ø¼­¸¦ °Å²Ù·Î ÇÕ´Ï´Ù\n" +" -R, --recursive ¼­ºêµð·ºÅ丮±îÁö Ãâ·ÂÇÕ´Ï´Ù\n" +" -s, --size °¢ ÆÄÀÏÀÇ ºí·Ï Å©±â¸¦ Ãâ·ÂÇÕ´Ï´Ù\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" + +#: src/ls.c:3871 +#, fuzzy +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" +" -f, --fields=<¸®½ºÆ®> ÀÌ Çʵ常À» Ãâ·ÂÇÕ´Ï´Ù; ¶Ç -s ¿É¼ÇÀÌ »ç¿ëµÇÁö\n" +" ¾Ê¾Ò´Ù¸é ±¸ºÐÀÚ ¹®ÀÚ°¡ µé¾î ÀÖÁö ¾ÊÀº ÁÙµµ\n" +" Ãâ·ÂÇÕ´Ï´Ù\n" +" -n (¹«½ÃµÊ)\n" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "Ulrich Drepper ±×¸®°í Scott Miller" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"»ç¿ë¹ý: %s [<¿É¼Ç>] [<ÆÄÀÏ>]...\n" +" ȤÀº: %s [<¿É¼Ç>] --check [<ÆÄÀÏ>]\n" +"%s (%dºñÆ®) üũ¼¶À» Ç¥½ÃÇϰųª °Ë»çÇÕ´Ï´Ù.\n" +"<ÆÄÀÏ>ÀÌ ÁÖ¾îÁöÁö ¾Ê°Å³ª, <ÆÄÀÏ>ÀÌ `-'À̸é, Ç¥ÁØ ÀÔ·ÂÀ» ÀнÀ´Ï´Ù.\n" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" +"\n" +" -b, --binary ÀÌÁø ¸ðµå·Î ÆÄÀÏÀ» ÀнÀ´Ï´Ù (µµ½º/À©µµ¿¡¼­ ±âº»" +"°ª)\n" +" -c, --check ÁÖ¾îÁø ¸®½ºÆ®¿¡¼­ %s üũ¼¶À» °Ë»çÇÕ´Ï´Ù\n" +" -t, --text ¹®¼­ ¸ðµå·Î ÆÄÀÏÀ» ÀнÀ´Ï´Ù (±âº»°ª)\n" +"\n" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" +"´ÙÀ½ µÎ ¿É¼ÇÀº üũ¼¶À» °Ë»çÇÒ °æ¿ì¿¡¸¸ ¿É¼ÇÀ» ¾µ ¼ö ÀÖ½À´Ï´Ù:\n" +" --status Ãâ·ÂÀ» ÇÏÁö ¾Ê°í, »óÅ ÄÚµå´Â ¼º°ø/½ÇÆÐ¸¦ ¸®ÅÏÇÕ´Ï" +"´Ù\n" +" -w, --warn Ʋ¸° Çü½ÄÀÇ Ã¼Å©¼¶ ÁÙ¿¡ ´ëÇØ °æ°íÇÕ´Ï´Ù\n" +"\n" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" +"\n" +"üũ¼¶Àº %s¿¡ ±â¼úµÈ ´ë·Î °è»êµË´Ï´Ù. °Ë»çÇÒ ¶§, ÀÔ·ÂÀº ÀÌ \n" +"ÇÁ·Î±×·¥ÀÇ Ãâ·Â¹°À̾î¾ß ÇÕ´Ï´Ù. ±âº» ¸ðµå´Â üũ¼¶, ŸÀÔÀ» \n" +"³ªÅ¸³»´Â ¹®ÀÚ (ÀÌÁø ÆÄÀÏÀº `*', ¹®¼­ ÆÄÀÏÀº ` '), ±×¸®°í °¢ <ÆÄÀÏ>ÀÇ \n" +"À̸§ÀÔ´Ï´Ù.\n" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "%s: %lu: ¿Ã¹Ù¸£Áö ¾ÊÀº Çü½ÄÀ» °®Ãá %s üũ¼¶ Çà" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "%s: ¿­±â ¶Ç´Â ÀÐ±â ½ÇÆÐ\n" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "½ÇÆÐ" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "¼º°ø" + +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%s: Àб⠿À·ù" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "%s: ¿Ã¹Ù¸¥ Çü½ÄÀ» °®Ãá %s üũ¼¶ ÇàÀ» ãÁö ¸øÇßÀ½" + +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "°æ°í: ¿­°ÅµÈ %2$d°³ÀÇ %3$s Áß¿¡¼­ %1$d°³¸¦ ÀÐÀ» ¼ö ¾ø½À´Ï´Ù" + +#: src/md5sum.c:473 +msgid "file" +msgstr "ÆÄÀÏ" + +#: src/md5sum.c:473 +msgid "files" +msgstr "ÆÄÀÏ" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "°æ°í: °è»êµÈ %2$d°³ÀÇ %3$s Áß¿¡¼­ %1$d °³°¡ ¼­·Î ÀÏÄ¡ÇÏÁö ¾Ê½À´Ï´Ù" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "üũ¼¶" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "üũ¼¶" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "--binary¿Í --text ¿É¼ÇÀº ¿ÀÁ÷ üũ¼¶À» °Ë»çÇÒ ¶§¸¸ Àǹ̰¡ ÀÖ½À´Ï´Ù" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "--string°ú --check ¿É¼ÇÀº »óÈ£ ¹èŸÀûÀÔ´Ï´Ù" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "--status ¿É¼ÇÀº ¿ÀÁ÷ üũ¼¶À» °Ë»çÇÒ ¶§¸¸ Àǹ̰¡ ÀÖ½À´Ï´Ù" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "--warn ¿É¼ÇÀº ¿ÀÁ÷ üũ¼¶À» °Ë»çÇÒ ¶§¸¸ Àǹ̰¡ ÀÖ½À´Ï´Ù" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "--stringÀ» »ç¿ëÇÒ ¶© ÆÄÀÏÀÌ ÁöÁ¤µÉ ¼ö ¾ø½À´Ï´Ù" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "--check¸¦ »ç¿ëÇÒ ¶§´Â ¿ÀÁ÷ ÇÑ °³ÀÇ Àμö¸¸ ÁöÁ¤µÉ ¼ö ÀÖ½À´Ï´Ù" + +#: src/mkdir.c:61 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>] [<ÆÄÀÏ>]...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" + +#: src/mkdir.c:69 +#, fuzzy +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +"Á¸ÀçÇÏÁö ¾Ê´Â °æ¿ì µð·ºÅ丮¸¦ ¸¸µì´Ï´Ù.\n" +"\n" +" -m, --mode=MODE rwxrwxrwx - umask°¡ ¾Æ´Ñ, ±ÇÇÑ ¸ðµå¸¦ ¼³Á¤ÇÕ´Ï´Ù(chmod)\n" +" -p, --parents ÇÊ¿äÇÑ °æ¿ì ºÎ¸ð µð·ºÅ丮µµ ¸¸µì´Ï´Ù. À־ ¿À·ù°¡\n" +" ¾Æ´Õ´Ï´Ù\n" +" -v, --verbose ¸¸µé¾î±â´Â °¢°¢ÀÇ µð·ºÅ丮¸¦ Ãâ·ÂÇÕ´Ï´Ù\n" +" --help ÀÌ µµ¿ò¸»À» Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +" --version ¹öÀü Á¤º¸¸¦ Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" + +#: src/mkdir.c:113 +#, fuzzy, c-format +msgid "created directory %s" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/mkdir.c:190 +#, fuzzy, c-format +msgid "cannot set permissions of directory %s" +msgstr "%sÀÇ Çã°¡¸¦ ¹Ù²Ü ¼ö ¾ø½À´Ï´Ù" + +#: src/mkfifo.c:55 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>] [<ÆÄÀÏ>]...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" + +#: src/mkfifo.c:63 src/mknod.c:64 +#, fuzzy +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" +"À̸§ ÀÖ´Â ÆÄÀÌÇÁ(FIFO)¸¦ NAMEÀ̶ó´Â À̸§À¸·Î ¸¸µì´Ï´Ù.\n" +"\n" +" -m, --mode=MODE a=rw - umask°¡ ¾Æ´Ñ, ±ÇÇÑ ¸ðµå¸¦ ¼³Á¤ÇÕ´Ï´Ù(chmod)\n" +" --help ÀÌ µµ¿ò¸»À» Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +" --version ¹öÀü Á¤º¸¸¦ Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "fifoÆÄÀÏÀº Áö¿øÇÏÁö ¾Ê½À´Ï´Ù" + +#: src/mkfifo.c:123 src/mknod.c:127 +#, fuzzy +msgid "invalid mode" +msgstr "ºÎÀûÀýÇÑ ¼ýÀÚ" + +#: src/mkfifo.c:142 +#, fuzzy, c-format +msgid "cannot set permissions of fifo %s" +msgstr "%sÀÇ Çã°¡¸¦ ¹Ù²Ü ¼ö ¾ø½À´Ï´Ù" + +#: src/mknod.c:55 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>]... <ÁýÇÕ1> [<ÁýÇÕ2>]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" + +#: src/mknod.c:76 +#, fuzzy +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"TYPEÇüÅÂÀÇ Æ¯º° ÆÄÀÏ NAMEÀ» ¸¸µì´Ï´Ù.\n" +"\n" +" -m, --mode=MODE a=rw - umask°¡ ¾Æ´Ñ, ±ÇÇÑ ¸ðµå¸¦ ¼³Á¤ÇÕ´Ï´Ù(chmod)\n" +" --help ÀÌ µµ¿ò¸»À» Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +" --version ¹öÀü Á¤º¸¸¦ Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +"\n" +"MAJOR MINOR´Â TYPE pÇüÀº ¾ÈµÇÁö¸¸ ´Ù¸¥ Çü¿¡´Â ¼³Á¤ÇØ¾ß ÇÕ´Ï´Ù. TYPEÀº\n" +"´ÙÀ½°ú °°½À´Ï´Ù:\n" +"\n" +" b ºí·°(¹öÆÛ¸µ ÀÖ´Â) Ưº° ÆÄÀÏÀ» ¸¸µì´Ï´Ù.\n" +" c, u ij¸¯ÅÍ(¹öÆÛ¸µ ¾ø´Â) Ưº° ÆÄÀÏÀ» ¸¸µì´Ï´Ù.\n" +" p FIFO¸¦ ¸¸µì´Ï´Ù\n" + +#: src/mknod.c:141 +#, fuzzy +msgid "wrong number of arguments" +msgstr "Àμö°¡ ³Ê¹« ÀûÀ½" + +#: src/mknod.c:153 +#, fuzzy +msgid "block special files not supported" +msgstr "ºí·Ï Ư¼ö ÆÄÀÏ" + +#: src/mknod.c:162 +#, fuzzy +msgid "character special files not supported" +msgstr "¹®ÀÚ Æ¯¼ö ÆÄÀÏ" + +#: src/mknod.c:171 +#, fuzzy +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" +"ºí·° Ưº° ÆÄÀÏÀ» ¸¸µé ¶§¿¡´Â, major¿Í minorÀåÄ¡ ¹øÈ£¸¦\n" +"ÁöÁ¤ÇØ¾ß ÇÕ´Ï´Ù" + +#: src/mknod.c:186 +#, fuzzy, c-format +msgid "invalid major device number %s" +msgstr "ºÎÀûÀýÇÑ ½ÃÀÛ Çà¹øÈ£: `%s'" + +#: src/mknod.c:191 +#, fuzzy, c-format +msgid "invalid minor device number %s" +msgstr "ºÎÀûÀýÇÑ ½ÃÀÛ Çà¹øÈ£: `%s'" + +#: src/mknod.c:196 +#, fuzzy, c-format +msgid "invalid device %s %s" +msgstr "%2$s¿¡ ´ëÇØ ºÎÀûÀýÇÑ ÀÎÀÚ %1$s" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "major¿Í minorÀåÄ¡¹øÈ£´Â fifoÆÄÀÏ¿¡´Â ¼³Á¤ÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/mknod.c:231 +#, fuzzy, c-format +msgid "cannot set permissions of %s" +msgstr "%sÀÇ Çã°¡¸¦ ¹Ù²Ü ¼ö ¾ø½À´Ï´Ù" + +#: src/mv.c:44 +#, fuzzy +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie, ±×¸®°í Jim Meyering" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" + +#: src/mv.c:339 +#, fuzzy +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"SOURCE¸¦ DEST·Î À̸§À» ¹Ù²Ù°Å³ª SOURCE¸¦ DIRECTORY·Î ¿Å±é´Ï´Ù.\n" +"\n" +" --backup[=CONTROL] Áö¿ì±â Àü¿¡ ¹é¾÷º»À» ¸¸µì´Ï´Ù\n" +" -b --backup°ú ºñ½ÁÇѵ¥ Àμö¸¦ ¹ÞÁö ¾Ê´Â´Ù\n" +" -f, --force ÀÌ¹Ì Á¸ÀçÇÏ´Â DEST¸¦ Áú¹® ¾øÀÌ »èÁ¦ÇÕ´Ï´Ù.\n" +" -i, --interactive ¿Å±â±â Àü¿¡ ¿©ºÎ¸¦ ¹¯½À´Ï´Ù\n" +" --strip-trailing-slashes °¢ SOURCE Àμö¿¡¼­ µÚ¿¡ ³¡³ª´Â ½½·¡½Ã ±âÈ£¸¦\n" +" »èÁ¦\n" +" -S, --suffix=SUFFIX ÀϹÝÀûÀÎ ¹é¾÷ Á¢¹Ì»ç¸¦ °ãÃľ¹´Ï´Ù\n" +" --target-directory=DIRECTORY SOURCEÀÇ ¸ðµç Àμö¸¦ DIRECTORY·Î ¿Å±é´Ï" +"´Ù\n" +" -u, --update ¿À·¡µÈ ÆÄÀϰú »õ ÆÄÀϸ¸ ¿Å±é´Ï´Ù\n" +" -v, --verbose ÀÛ¾÷À» Ãâ·ÂÇÕ´Ï´Ù\n" +" -V, --version-control=WORD ÀϹÝÀûÀÎ ¹öÀü ÄÜÆ®·ÑÀ» °ãÃľ¹´Ï´Ù\n" +" --help ÀÌ µµ¿ò¸»À» º¸¿©ÁÖ°í Á¾·áÇÕ´Ï´Ù\n" +" --version ¹öÀü Á¤º¸¸¦ Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +"\n" + +#: src/mv.c:467 +#, fuzzy, c-format +msgid "specified target, %s is not a directory" +msgstr "%sÀÌ(°¡) Á¸ÀçÇÏÁö¸¸ µð·ºÅ丮°¡ ¾Æ´Õ´Ï´Ù" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "¿©·¯°³ÀÇ ÆÄÀÏÀ» ¿Å±æ ¶§¿¡´Â ¸¶Áö¸· Àμö´Â µð·ºÅ丮¿©¾ß ÇÕ´Ï´Ù" + +#: src/nice.c:67 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>] [<ÆÄÀÏ>]...\n" + +#: src/nice.c:68 +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" + +#: src/nice.c:109 src/nice.c:122 +#, fuzzy, c-format +msgid "invalid option `%s'" +msgstr "ºÎÀûÀýÇÑ Æø ¿É¼Ç `%s'" + +#: src/nice.c:147 +#, fuzzy, c-format +msgid "invalid priority `%s'" +msgstr "ºÎÀûÀýÇÑ Æø: `%s'" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "" + +#: src/nice.c:178 src/nice.c:187 +#, fuzzy +msgid "cannot get priority" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/nice.c:192 +#, fuzzy +msgid "cannot set priority" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "Scott Bartram ±×¸®°í David MacKenzie" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"°¢ <ÆÄÀÏ>À» ÁÙ¹øÈ£¸¦ ºÙ¿©¼­ Ç¥ÁØ Ãâ·Â¿¡ ¾¹´Ï´Ù.\n" +"<ÆÄÀÏ>ÀÌ ÁÖ¾îÁöÁö ¾Ê°Å³ª, <ÆÄÀÏ>ÀÌ `-'À̸é, Ç¥ÁØ ÀÔ·ÂÀ» ÀнÀ´Ï´Ù.\n" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" +" -b, --body-numbering=<½ºÅ¸ÀÏ> º»¹®¿¡ ¹øÈ£¸¦ ºÙÀÌ´Â µ¥ <½ºÅ¸ÀÏ>À» ¾¹´Ï´Ù\n" +" -d, --section-delimiter=<±¸ºÐ> ³í¸®Àû ÆäÀÌÁö¸¦ ±¸ºÐÇÏ´Â µ¥ <±¸ºÐ>À» ¾¹´Ï" +"´Ù\n" +" -f, --footer-numbering=<½ºÅ¸ÀÏ> ¾Æ·¡´Ü¿¡ ¹øÈ£¸¦ ºÙÀÌ´Â µ¥ <½ºÅ¸ÀÏ>À» ¾¹´Ï" +"´Ù\n" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" +" -f, --header-numbering=<½ºÅ¸ÀÏ> À­´Ü¿¡ ¹øÈ£¸¦ ºÙÀÌ´Â µ¥ <½ºÅ¸ÀÏ>À» ¾¹´Ï´Ù\n" +" -i, --page-increment=<¹øÈ£> °¢ ÁÙÀÇ ÁÙ¹øÈ£ Áõ°¡Ä¡\n" +" -l, --join-blank-lines=<¹øÈ£> <¹øÈ£>°³ÀÇ ºó ÁÙÀº Çϳª·Î Ãë±ÞµË´Ï´Ù.\n" +" -n, --number-format=<Çü½Ä> <Çü½Ä>¿¡ µû¶ó ÁÙ ¹øÈ£¸¦ ¾¹´Ï´Ù\n" +" -p, --no-renumber ÆäÀÌÁö°¡ ³Ñ¾î°¡µµ ÁÙ¹øÈ£¸¦ ¸®¼ÂÇÏÁö ¾Ê½À´Ï" +"´Ù\n" +" -s, --number-separator=<¹®ÀÚ¿­> ÁÙ ¹øÈ£ ´ÙÀ½¿¡ <¹®ÀÚ¿­>À» Ãß°¡ÇÕ´Ï´Ù\n" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" +" -v, --first-page=<°³¼ö> °¢ ³í¸®Àû ÆäÀÌÁö¿¡¼­ ù¹øÂ° ÁÙ¹øÈ£\n" +" -w, --number-width=<°³¼ö> ÁÙ¹øÈ£¸¦ <°³¼ö>¿­¿¡ ¾¹´Ï´Ù\n" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" +"\n" +"±âº» ¿É¼ÇÀº, `-v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn'ÀÔ´Ï´Ù. <±¸ºÐ>Àº ³í¸®" +"Àû\n" +"ÆäÀÌÁö¸¦ ±¸ºÐÇÏ´Â µ¥ ¾²ÀÌ´Â µÎ °³ÀÇ ¹®ÀÚÀ̰í, µÎ ¹øÂ° ¹®ÀÚ°¡ ¾ø´Ù¸é `.'ÀÌ \n" +"¾²ÀÔ´Ï´Ù: `.'À» ¾²·Á¸é `\\\\'¶ó°í ¾²½Ê½Ã¿À. <½ºÅ¸ÀÏ>Àº ´ÙÀ½ Áß ÇϳªÀÔ´Ï´Ù.\n" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" +"\n" +" a ¸ðµç ÁÙ¿¡ ¹øÈ£¸¦ ºÙÀÔ´Ï´Ù.\n" +" t ºó ÁÙÀÌ ¾Æ´Ñ °æ¿ì¿¡¸¸ ¹øÈ£¸¦ ºÙÀÔ´Ï´Ù\n" +" n ¹øÈ£¸¦ ºÙÀÌÁö ¾Ê½À´Ï´Ù\n" +" p<Á¤±Ô½Ä> <Á¤±Ô½Ä>¿¡ ¸Â´Â ÁÙ¸¸ ¹øÈ£¸¦ ºÙÀÔ´Ï´Ù\n" +"\n" +"<Çü½Ä>Àº ´ÙÀ½Áß ÇϳªÀÔ´Ï´Ù:\n" +"\n" +" ln ¿ÞÂÊ Á¤·Ä, ¾Õ¿¡ 0À» ºÙÀÌÁö ¾Ê½À´Ï´Ù\n" +" rn ¿À¸¥ÂÊ Á¤·Ä, ¾Õ¿¡ 0À» ºÙÀÌÁö ¾Ê½À´Ï´Ù\n" +" rz ¿À¸¥ÂÊ Á¤·Ä, ¾Õ¿¡ 0À» ºÙÀÔ´Ï´Ù\n" +"\n" + +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "ºÎÀûÀýÇÑ ½ÃÀÛ Çà¹øÈ£: `%s'" + +#: src/nl.c:514 +#, c-format +msgid "invalid line number increment: `%s'" +msgstr "ºÎÀûÀýÇÑ Çà¹øÈ£ Áõ°¡: `%s'" + +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "ºÎÀûÀýÇÑ ºóÁÙÀÇ °³¼ö: `%s'" + +#: src/nl.c:541 +#, c-format +msgid "invalid line number field width: `%s'" +msgstr "ºÎÀûÀýÇÑ Çà¹øÈ£ ÇÊµå Æø: `%s'" + +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"»ç¿ë¹ý: %s [<¿É¼Ç>]... [<ÆÄÀÏ>]...\n" +" ¶Ç´Â: %s --traditional [<ÆÄÀÏ>] [[+]<¿É¼Â> [[+]<·¹À̺í>]]\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"\n" +"<ÆÄÀÏ>ÀÇ ³»¿ëÀ», ±âº»°ªÀ¸·Î´Â 8Áø¼ö ¹ÙÀÌÆ®°ªÀ¸·Î, Ç¥ÁØ Ãâ·Â¿¡ ¾¹´Ï´Ù.\n" +"<ÆÄÀÏ> ÀÎÀÚ°¡ µÎ °³ ÀÌ»ó ÀÖ´Â °æ¿ì, ±× ÆÄÀϵéÀ» ¿¬°áÇØ¼­ ÀÔ·ÂÀ¸·Î\n" +"ÀÌ¿ëÇÕ´Ï´Ù.\n" +"<ÆÄÀÏ>ÀÌ ÁÖ¾îÁöÁö ¾Ê°Å³ª, <ÆÄÀÏ>ÀÌ `-'À̸é, Ç¥ÁØ ÀÔ·ÂÀ» ÀнÀ´Ï´Ù.\n" +"\n" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "±ä ¿É¼ÇÀÇ Àμö´Â ªÀº ¿É¼Ç¿¡µµ ²À ÇÊ¿äÇÕ´Ï´Ù.\n" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" +" -A, --address-radix=<±â¼ö> ÆÄÀÏ ¿ÀÇÁ¼ÂÀ» Ãâ·ÂÇÏ´Â ¹æ¹ýÀ» ÁöÁ¤ÇÕ´Ï´Ù\n" +" -j, --skip-bytes=<¹ÙÀÌÆ®> ÀÔ·ÂÀÇ Ã¹ ¹øÂ° <¹ÙÀÌÆ®> ¹ÙÀÌÆ®¸¦ °Ç³Ê ¶Ý´Ï´Ù\n" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" +" -N, --read-bytes=<¹ÙÀÌÆ®> ÀԷ¿¡¼­ <¹ÙÀÌÆ®> ¹ÙÀÌÆ®ÀÇ ³»¿ë¸¸À» Ç¥½ÃÇÕ´Ï" +"´Ù\n" +" -s, --strings[=<¹ÙÀÌÆ®>] ÃÖ¼Ò <¹ÙÀÌÆ®> ±×·¡ÇÈ ¹®ÀÚÀÇ ¹®ÀÚ¿­À» Ãâ·ÂÇÕ´Ï" +"´Ù\n" +" -t, --format=<ŸÀÔ> Ãâ·Â Çü½ÄÀ» ÁöÁ¤ÇÕ´Ï´Ù\n" +" -v, --output-duplicates µ¿ÀÏÇÑ ÁÙ¿¡ ´ëÇØ¼­´Â *¸¦ Ç¥½ÃÇÏÁö ¾Ê½À´Ï´Ù\n" +" -w, --width[=<¹ÙÀÌÆ®>] Ãâ·ÂÀÇ ÇÑ ÁÙ¿¡ <¹ÙÀÌÆ®> ¹ÙÀÌÆ®¸¦ Ãâ·ÂÇÕ´Ï´Ù\n" +" --traditional °íÀüÀûÀÎ Çü½ÄÀ¸·Î ÀÎÀÚ¸¦ ¹Þ½À´Ï´Ù\n" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" +"\n" +"°íÀüÀûÀÎ Çü½Ä ÁöÁ¤ÀÚ¸¦ ¼¯¾î¼­ ¾µ ¼öµµ ÀÖ½À´Ï´Ù. ´ÙÀ½°ú °°½À´Ï´Ù:\n" +" -a `-t a'¿Í µ¿ÀÏÇϰí, ¹®ÀÚ À̸§À¸·Î ÁöÁ¤ÇÕ´Ï´Ù\n" +" -b `-t oC'¿Í µ¿ÀÏÇϰí, 8Áø¼ö ¹ÙÀÌÆ®·Î ÁöÁ¤ÇÕ´Ï´Ù\n" +" -c `-t c'¿Í µ¿ÀÏÇϰí, ASCII ¹®ÀÚ È¤Àº ¹é½½·¡½¬ À̽ºÄÉÀÌÇÁ·Î ÁöÁ¤ÇÕ´Ï´Ù\n" +" -d `-t u2'¿Í µ¿ÀÏÇϰí, 10Áø¼ö unsigned short·Î ÁöÁ¤ÇÕ´Ï´Ù\n" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" +" -f -t fF¿Í µ¿ÀÏÇϰí, ºÎµ¿ ¼Ò¼öÁ¡ ½Ç¼ö¸¦ ¼±ÅÃÇÕ´Ï´Ù\n" +" -h -t x2¿Í µ¿ÀÏÇϰí, 16Áø¼ö short¸¦ ¼±ÅÃÇÕ´Ï´Ù\n" +" -i -t d2¿Í µ¿ÀÏÇϰí, 10Áø¼ö short¸¦ ¼±ÅÃÇÕ´Ï´Ù\n" +" -l -t d4¿Í µ¿ÀÏÇϰí, 10Áø¼ö longÀ» ¼±ÅÃÇÕ´Ï´Ù\n" +" -o -t o2¿Í µ¿ÀÏÇϰí, 8Áø¼ö short¸¦ ¼±ÅÃÇÕ´Ï´Ù\n" +" -x -t x2¿Í µ¿ÀÏÇϰí, 16Áø¼ö short¸¦ ¼±ÅÃÇÕ´Ï´Ù\n" + +# 8Áø¼ö suffix¿¡ ´ëÇØ¼­ Á» ÀÌ»óÇÏ´Ù +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" +"\n" +"(µÎ¹øÂ°¿¡ Çü½ÄÀÌ ¿À´Â) °ú°ÅÀÇ ¹®¹ý¿¡¼­, <¿ÀÇÁ¼Â>Àº `-j <¿ÀÇÁ¼Â>'À» ¶æÇÕ´Ï" +"´Ù.\n" +"<·¹À̺í>Àº Ãâ·ÂÇÒ Ã¹ ¹øÂ° ¹ÙÀÌÆ®ÀÇ ÁÖ¼Ò¸¦ ¶æÇϰí, ³»¿ëÀ» Ç¥½ÃÇÒ ¶§¸¶´Ù ±×\n" +"ÁÖ¼Ò¿¡¼­ Áõ°¡µË´Ï´Ù. <¿ÀÇÁ¼Â>°ú <·¹À̺í>¿¡¼­, 0x³ª 0X Á¢µÎ¾î°¡ ºÙÀ¸¸é\n" +"16Áø¼ö¸¦ ¸»Çϸç, `.' Á¢¹Ì¾î´Â 8Áø¼ö¸¦ ¸»Çϰí, b´Â 512¸¦ °öÇÑ´Ù´Â ¶æÀÔ´Ï´Ù.\n" +"\n" +"<ŸÀÔ>Àº ´ÙÀ½Áß ÇÑ °³ ÀÌ»óÀ¸·Î ¸¸µé¾î Áý´Ï´Ù:\n" +"\n" +" a ¹®ÀÚ À̸§\n" +" c ASCII ¹®ÀÚ È¤Àº ¹é½½·¡½¬ À̽ºÄÉÀÌÇÁ\n" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" +" d[<Å©±â>] ºÎÈ£ÀÖ´Â 10Áø¼ö, °¢ ¼ýÀÚ¸¶´Ù <Å©±â> ¹ÙÀÌÆ®\n" +" f[<Å©±â>] ºÎµ¿ ¼Ò¼öÁ¡, °¢ ¼ýÀÚ¸¶´Ù <Å©±â> ¹ÙÀÌÆ®\n" +" o[<Å©±â>] 8Áø¼ö, °¢ ¼ýÀÚ¸¶´Ù <Å©±â> ¹ÙÀÌÆ®\n" +" u[<Å©±â>] ºÎÈ£¾ø´Â 10Áø¼ö, °¢ ¼ýÀÚ¸¶´Ù <Å©±â> ¹ÙÀÌÆ®\n" +" x[<Å©±â>] 16Áø¼ö, °¢ ¼ýÀÚ¸¶´Ù <Å©±â> ¹ÙÀÌÆ®\n" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" +"\n" +"<Å©±â>´Â ¼ýÀÚÀÔ´Ï´Ù. doux¿¡¼­ <ŸÀÔ>ÀÇ °æ¿ì, <Å©±â>´Â sizeof(char)ÀÇ °æ¿ì\n" +"C, sizeof(short)´Â S, sizeof(int)´Â I, sizeof(long)Àº L·Î ¾µ ¼ö ÀÖ½À´Ï´Ù.\n" +"<ŸÀÔ>ÀÌ fÀÎ °æ¿ì <Å©±â>´Â sizeof(float)ÀÌ µÇ°í, D´Â sizeof(double), LÀº\n" +"(long double)ÀÌ µË´Ï´Ù.\n" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" +"\n" +"<±â¼ö>´Â ½ÊÁø¼öÀÇ °æ¿ì d, 8Áø¼ö´Â o, 16Áø¼ö´Â x, ¾Æ¹«°Íµµ ¾Æ´Ï¸é nÀÔ´Ï´Ù.\n" +"<¹ÙÀÌÆ®>´Â 0x³ª 0X¸¦ ºÙÀÎ 16Áø¼öÀ̸ç, b Á¢¹Ì¾î°¡ ºÙÀ¸¸é, 512°¡ °öÇØ Áö°í,\n" +"k´Â 1024, mÀº 1048576ÀÌ °öÇØ Áý´Ï´Ù. ¾î¶² ŸÀÔÀÌ¶óµµ z Á¢¹Ì¾î¸¦ µ¡ºÙÀ̸é\n" +"Ãâ·Â ÁÙÀÇ ³¡¿¡ Ç¥½Ã °¡´ÉÇÑ ¹®ÀÚµéÀ» Ç¥½ÃÇÏ°Ô µË´Ï´Ù. " + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" +"-stringÀ» ¼ýÀÚ ¾øÀÌ ¾²¸é 3À̶ó°í °¡Á¤ÇÕ´Ï´Ù. --width¸¦ ¼ýÀÚ ¾øÀÌ ¾²¸é 32¸¦\n" +"°¡Á¤ÇÕ´Ï´Ù. ±âº»°ªÀ¸·Î od´Â `-A -o -t d2 -w 16'À» ¾¹´Ï´Ù.\n" + +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "ºÎÀûÀýÇÑ Å¸ÀÔÀÇ ¹®ÀÚ¿­ `%s'" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" +"ºÎÀûÀýÇÑ Çü ¹®ÀÚ¿­ `%s';\n" +"ÀÌ ½Ã½ºÅÛÀº %lu ¹ÙÀÌÆ® Á¤¼öÇüÀ» Á¦°øÇÏÁö ¾Ê½À´Ï´Ù" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" +"ºÎÀûÀýÇÑ Çü ¹®ÀÚ¿­ `%s';\n" +"ÀÌ ½Ã½ºÅÛÀº %lu ¹ÙÀÌÆ® ºÎµ¿¼Ò¼öÁ¡ÇüÀ» Á¦°øÇÏÁö ¾Ê½À´Ï´Ù" + +#: src/od.c:917 +#, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "ºÎÀûÀýÇÑ ¹®ÀÚ %c' -- Çü ¹®ÀÚ¿­ `%s'" + +# combined input ¹ø¿ª °³¼± +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "°áÇÕµÈ ÀÔ·ÂÀÇ ³¡À» ³Ñ¾î°¥ ¼ö´Â ¾ø½À´Ï´Ù." + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "¿¾³¯ ¹æ½ÄÀÇ ¿É¼Â" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "" +"Ãâ·Â ÁÖ¼Ò ±â¼ö `%c'ÀÌ(°¡) ºÎÀûÀýÇÕ´Ï´Ù; [odxn]ÁßÀÇ ÇϳªÀÇ ¹®ÀÚÀ̾î¾ß ÇÕ´Ï´Ù" + +#: src/od.c:1717 +msgid "skip argument" +msgstr "Àμö¸¦ °Ç³Ê ¶Ü" + +#: src/od.c:1725 +msgid "limit argument" +msgstr "Àμö Á¦ÇÑ" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "ÃÖ¼Ò ¹®ÀÚ¿­ ±æÀÌ" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "%sÀº(´Â) ³Ê¹« Å®´Ï´Ù" + +#: src/od.c:1804 +msgid "width specification" +msgstr "±æÀÌ ÁöÁ¤" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "¹®ÀÚ¿­À» ´ýÇÁÇÒ ¶§¿¡´Â ŸÀÔÀÌ ÁöÁ¤µÇ¸é ¾ÈµË´Ï´Ù" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "ȣȯ ¸ðµå `%s'ÀÇ µÎ¹øÂ° ÇÇ¿¬»êÀÚ°¡ ºÎÀûÀýÇÔ" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "ȣȯ ¸ðµå¿¡¼­ ¸¶Áö¸· µÎ Àμö´Â ¿É¼ÂÀ̾î¾ß ÇÕ´Ï´Ù" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "ȣȯ ¸ðµå¿¡¼­´Â ÃÖ´ë ¼Â±îÁöÀÇ Àμö¸¸À» ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "°æ°í: ºÎÀûÀýÇÑ Æø %lu; ´ë½Å %dÀ»(¸¦) »ç¿ëÇÔ" + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "%d: Çü½Ä=\"%s\" Æø=%d\n" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "David M. Ihnat ±×¸®°í David MacKenzie" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "Ç¥ÁØ ÀÔ·ÂÀÌ ´ÝÇûÀ½" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"¼ø¼­´ë·Î °¢ <ÆÄÀÏ>¿¡¼­ ´ëÀÀµÇ´Â ÁÙµéÀ», TABÀ¸·Î ±¸ºÐµÇ¾î ±¸¼ºÇØ, Ç¥ÁØ\n" +"Ãâ·ÂÀ¸·Î Ãâ·ÂÇÕ´Ï´Ù.\n" +"<ÆÄÀÏ>ÀÌ ÁÖ¾îÁöÁö ¾Ê°Å³ª, <ÆÄÀÏ>ÀÌ `-'À̸é, Ç¥ÁØ ÀÔ·ÂÀ» ÀнÀ´Ï´Ù.\n" +"\n" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" +" -d, --delimiters=<¸®½ºÆ®> ÅÇ ´ë½Å¿¡ <¸®½ºÆ®> ¾È¿¡ ÀÖ´Â ¹®ÀÚµéÀ» »ç¿ëÇÕ´Ï" +"´Ù\n" +" -s, --serial µ¿½Ã¿¡ ÇÏÁö ¾Ê°í ÇÑ ¹ø¿¡ ÇÑ °³ÀÇ ÆÄÀÏÀ» ¾¹´Ï´Ù\n" + +#: src/pathchk.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>]... [<ÆÄÀÏ>]...\n" + +#: src/pathchk.c:147 +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" + +#: src/pathchk.c:237 +#, fuzzy, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "ÅÇ Å©±â¿¡ ºÎÀûÀýÇÑ ¹®ÀÚ°¡ ÁöÁ¤µÇ¾î ÀÖ½À´Ï´Ù" + +#: src/pathchk.c:257 +#, fuzzy, c-format +msgid "`%s' is not a directory" +msgstr "%sÀÌ(°¡) Á¸ÀçÇÏÁö¸¸ µð·ºÅ丮°¡ ¾Æ´Õ´Ï´Ù" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "" + +#: src/pathchk.c:355 +#, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "" + +#: src/pathchk.c:381 +#, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "" + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "" + +#: src/pinky.c:298 +msgid "???\n" +msgstr "" + +#: src/pinky.c:318 +#, fuzzy +msgid "Directory: " +msgstr "µð·ºÅ丮" + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "" + +#: src/pinky.c:341 +msgid "Project: " +msgstr "" + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "" + +#: src/pinky.c:386 +msgid "Login" +msgstr "" + +#: src/pinky.c:388 +msgid "Name" +msgstr "" + +#: src/pinky.c:389 +msgid " TTY" +msgstr "" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "" + +#: src/pinky.c:392 +msgid "When" +msgstr "" + +#: src/pinky.c:395 +msgid "Where" +msgstr "" + +#: src/pinky.c:469 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>]... [<ÆÄÀÏ>]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" + +#: src/pinky.c:574 +#, fuzzy +msgid "no username specified; at least one must be specified when using -l" +msgstr "--stringÀ» »ç¿ëÇÒ ¶© ÆÄÀÏÀÌ ÁöÁ¤µÉ ¼ö ¾ø½À´Ï´Ù" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "Pete TerMaat ±×¸®°í Roland Huebner" + +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "`--pages' ºÎÀûÀýÇÑ ÆäÀÌÁö ¹øÈ£ ¹üÀ§: `%s'" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "`--pages' ºÎÀûÀýÇÑ ½ÃÀÛ ÆäÀÌÁö ¹øÈ£: `%s'" + +#: src/pr.c:829 +#, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "`--pages' ºÎÀûÀýÇÑ ³¡ ÆäÀÌÁö ¹øÈ£: `%s'" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "`--pages' ½ÃÀÛ ÆäÀÌÁö ¹øÈ£°¡ ³¡ ÆäÀÌÁö ¹øÈ£º¸´Ù Å®´Ï´Ù" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "`--pages=<ù_ÆäÀÌÁö>[:<³¡_ÆäÀÌÁö>]' Àμö°¡ ¾ø½À´Ï´Ù" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "`--columns=¿­' ºÎÀûÀýÇÑ ¿­ÀÇ °³¼ö: `%s'" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "`-l ÆäÀÌÁö_±æÀÌ' ºÎÀûÀýÇÑ ÇàÀÇ °³¼ö: `%s'" + +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "`-N ¹øÈ£' ºÎÀûÀýÇÑ ½ÃÀÛ Çà ¹øÈ£: `%s'" + +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "`-o ¿©¹é' ºÎÀûÀýÇÑ Çà ¿É¼Â: `%s'" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "`-l ÆäÀÌÁö_Æø' ºÎÀûÀýÇÑ ¹®ÀÚ °³¼ö: `%s'" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "`-l ÆäÀÌÁö_Æø' ºÎÀûÀýÇÑ ¹®ÀÚ °³¼ö: `%s'" + +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr " %Y %b %e %H:%M" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "º´·Ä·Î ÀμâÇÒ ¶§¿¡´Â ¿­ÀÇ °³¼ö¸¦ ÁöÁ¤ÇÒ ¼ö ¾ø½À´Ï´Ù." + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "º´·Ä Àμâ¿Í ¿­¿¡ °ÉÃļ­ ÀμâÇÏ´Â °ÍÀ» µ¿½Ã¿¡ ÁöÁ¤ÇÒ ¼ö´Â ¾ø½À´Ï´Ù>" + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "`-%c' ÀÎÀÚ¿¡¼­ ºÒÇÊ¿äÇÑ ¹®ÀÚ È¤Àº ºÎÀûÀýÇÑ ¼ýÀÚ°¡ µé¾î ÀÖ½À´Ï´Ù: `%s'" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "ÆäÀÌÁö ÆøÀÌ ³Ê¹« Á¼À½" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "½ÃÀÛ ÆäÀÌÁö ¹øÈ£°¡ Àüü ÆäÀÌÁö ¼öº¸´Ù Å®´Ï´Ù: `%d'" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "%d ÆäÀÌÁö" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" +"<ÆÄÀÏ>(µé)À» ÆäÀÌÁöº°·Î ³ª´©°Å³ª ¿©·¯ ¿­·Î ³ª´©¾î ÀμâÇϱâ ÁÁµµ·Ï ¸¸µì´Ï´Ù.\n" +"\n" + +#: src/pr.c:2766 +#, fuzzy +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" +" +<ù_ÆäÀÌÁö>[:<³¡_ÆäÀÌÁö>], --pages=<ù_ÆäÀÌÁö>[:<³¡_ÆäÀÌÁö>]\n" +" <ù_ÆäÀÌÁö>[<³¡_ÆäÀÌÁö]¿¡¼­ Àμ⸦ ½ÃÀÛÇÕ´Ï´Ù[³¡³À´Ï" +"´Ù].\n" +" -<¿­>, --columns=<¿­>\n" +" <¿­> ¿­ÀÇ Ãâ·Â¹°À» ¸¸µé¾î ±× ¿­µéÀ» ÆäÀÌÁö ´ÜÀ§·Î\n" +" ÀμâÇÕ´Ï´Ù (-a ¿É¼ÇÀÌ »ç¿ëµÇÁö ¾Ê´Â´Ù¸é). ÆäÀÌÁö¿¡¼­ \n" +" °¢°¢ÀÇ ¿­¿¡ µé¾î ÀÖ´Â ÁÙ ¼ö°¡ °°°Ô À¯ÁöÇÕ´Ï´Ù.\n" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" +" -a, --across ÇÑ ÁÙ ÇÑ ÁÙÀ» ¿©·¯ ¿­¿¡ °ÉÃļ­ ÀμâÇÕ´Ï´Ù. -<¿­> ¿É¼Ç" +"°ú\n" +" °°ÀÌ ¾¹´Ï´Ù.\n" +" -c, --show-control-chars\n" +" (^G¿Í °°ÀÌ) ^ Ç¥½Ã¸¦ ¾²Áö ¾Ê°í 8Áø¼ö ¹é½½·¡½¬ Ç¥½Ã¸¦ ¾¹´Ï" +"´Ù\n" +" -d, --double-space\n" +" ÇÑ ÁÙ¾¿ ¶ç¿ö¼­ ÀμâÇÕ´Ï´Ù\n" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" +" -D, --date-format=<Çü½Ä>\n" +" À­´ÜÀÇ ³¯Â¥ Ç¥½Ã¸¦ <Çü½Ä>´ë·Î ÇÕ´Ï´Ù\n" +" -e[<¹®ÀÚ>[<Æø>]], --expand-tabs[=<¹®ÀÚ>[<Æø>]]\n" +" ÀÔ·ÂµÈ <¹®ÀÚ> ¹®ÀÚ¸¦ <Æø>°³ÀÇ ÅÇ(8)À¸·Î ¹Ù²ß´Ï´Ù.\n" +" -F, -f, --form-feed\n" +" ÆäÀÌÁö¸¦ ±¸ºÐÇÏ´Â µ¥ newline ´ë½Å form feed¸¦ ¾¹´Ï´Ù\n" +" (-F´Â 3ÁÙÀÇ ÆäÀÌÁö Çì´õ, -F ¾øÀÌ´Â 5ÁÙÀÇ Çì´õ¿Í \n" +" trailer)\n" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" +" -h <À­´Ü>, --header=<À­´Ü>\n" +" ÆäÀÌÁö À­´Ü¿¡ ÆÄÀÏÀ̸§ ´ë½Å¿¡ °¡¿îµ¥ Á¤·ÄµÈ <À­´Ü>À» ¾¹´Ï" +"´Ù\n" +" -h \"\"Àº ºó ÁÙÀ» ¾¹´Ï´Ù. -h\"\"¶ó°í ¾²Áö ¸¶½Ê½Ã¿À.\n" +" -i[<¹®ÀÚ>[<Æø>]], --output-tabs[=<¹®ÀÚ>[<Æø>]]\n" +" °ø¹éÀ» ÅÇ <Æø>(8)¸¸Å­ÀÇ <¹®ÀÚ>·Î ¹Ù²ß´Ï´Ù\n" +" -J, --join-lines Àüü ÁÙÀ» ÇÕĨ´Ï´Ù. -W ÁÙ À߶󳻱⸦ ¾²Áö ¾Êµµ·Ï ¸¸µé" +"°í, ¿­ \n" +" Á¤·Äµµ ¾ø½À´Ï´Ù. --sep-string=[<¹®ÀÚ¿­>]Àº ±¸ºÐÀÚ¸¦ ÁöÁ¤" +"ÇÕ´Ï´Ù\n" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" +" -l <ÆäÀÌÁö_±æÀÌ>, --length=<ÆäÀÌÁö_±æÀÌ>\n" +" ÆäÀÌÁö ±æÀ̸¦ <ÆäÀÌÁö_±æÀÌ> (66) ÁÙ·Î ¸¸µì´Ï´Ù\n" +" (ÁÙ ¼öÀÇ ±âº»°ªÀº 56À̰í, -F ¿É¼ÇÀ» ¾²¸é 63ÀÔ´Ï´Ù)\n" +" -m, --merge ¸ðµç ÆÄÀÏÀ» º´·ÄÀûÀ¸·Î, °¢ ¿­¿¡ Çϳª¾¿ ¾¹´Ï´Ù. ³Ñ¾î°¡´Â\n" +" ÁÙÀ» ÀÚ¸£Áö¸¸, -J ¿É¼ÇÀ¸·Î ¿©·¯ ÁÙÀ» ÇÕÃļ­ ÁÙÀ» ä¿ó´Ï" +"´Ù\n" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" +" -n[<±¸ºÐ>[<¼ýÀÚ>]], --number-lines[=<±¸ºÐ>[<¼ýÀÚ>]]\n" +" <¼ýÀÚ>°³ÀÇ ¼ýÀÚ, ´ÙÀ½¿¡ <±¸ºÐ>(ÅÇ)À¸·Î ÁÙ¸¶´Ù ¹øÈ£¸¦\n" +" ¸Å±é´Ï´Ù. ±âº»ÀûÀ¸·Î 1¹øÂ° ÁÙºÎÅÍ ¼¼¾î ³ª°©´Ï´Ù.\n" +" -N <°³¼ö>, --first-line-number=<°³¼ö>\n" +" ù ¹øÂ° ÆäÀÌÁöÀÇ Ã¹ ¹øÂ° ÁÙÀ» <°³¼ö>·Î ÇØ¼­ ÁÙ ¹øÈ£¸¦\n" +" ¼¼¾î ³ª°©´Ï´Ù (+<ù_ÆäÀÌÁö> Âü°í)\n" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" +" -o <¿©¹é>, --indent=<¿©¹é>\n" +" <¿©¹é>(0)°³ÀÇ °ø¹é¹®ÀÚ¸¦ °¢ ÁÙ ¾Õ¿¡ ¾¹´Ï´Ù. -w³ª -W¿¡" +"´Â\n" +" ¿µÇâÀ» ÁÖÁö ¾ÊÀ¸¸ç, <¿©¹é>Àº <ÆäÀÌÁö_Æø>¿¡ ´õÇØÁý´Ï´Ù\n" +" -r, --no-file-warnings\n" +" ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ» ¶§ °æ°í¸¦ »ý·«ÇÕ´Ï´Ù.\n" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" +" -s[<¹®ÀÚ>],--separator[=<¹®ÀÚ>]\n" +" °¢ ¿­À» ÇÑ °³ÀÇ <¹®ÀÚ>·Î ±¸ºÐÇÕ´Ï´Ù. <¹®ÀÚ>ÀÇ ±âº»°ª" +"Àº \n" +" -w°¡ ¾øÀ¸¸é ÅÇ ¹®ÀÚÀ̰í, -w°¡ ÀÖÀ¸¸é ±¸ºÐ¹®ÀÚ°¡ ¾ø½À´Ï" +"´Ù.\n" +" -s[<¹®ÀÚ>]´Â ¸ðµç 3¿­ ¿É¼ÇµéÀÇ (-<¿­>|-a -<¿­>|-m) \n" +" ³Ñ¾î°¡´Â ÁÙ ÀÚ¸£±â ±â´ÉÀ» (-w°¡ ¾øÀ¸¸é) ²ü´Ï´Ù.\n" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr " -S<¹®ÀÚ¿­>, --sep-string[=<¹®ÀÚ¿­>]\n" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" +" ¿­µéÀ» -S ¾øÀÌ <¹®ÀÚ¿­>·Î ±¸ºÐÇÕ´Ï´Ù. \n" +" ±âº» ±¸ºÐÀÚ´Â ÅÇ ¹®ÀÚ¿Í -JÀÌ°í ±× ¿ÜÀÇ °æ¿ì °ø¹é ¹®ÀÚÀÔ´Ï" +"´Ù\n" +" (-S\" \"¿Í µ¿ÀÏ). ¿­ °ü·Ã ¿É¼Ç¿¡ ¿µÇâÀ» ÁÖÁö ¾Ê½À´Ï´Ù\n" +" -t, --omit-header ÆäÀÌÁö Çì´õ¿Í Æ®·¹ÀÏ·¯¸¦ »ý·«ÇÕ´Ï´Ù\n" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" +" -T, --omit-pagination\n" +" ÆäÀÌÁö Çì´õ¿Í Æ®·¹ÀÏ·¯¸¦ »ý·«Çϰí, ÀÔ·Â ÆÄÀÏ¿¡ µé¾î ÀÖ" +"´Â\n" +" ÆûÇǵ忡 ÀÇÇÑ ÆäÀÌÁö ±¸ºÐµéÀ» ¾ø¾Û´Ï´Ù\n" +" -v, --show-nonprinting\n" +" 8Áø¼ö ¹é½½·¡½¬ Ç¥½Ã¸¦ »ç¿ëÇÕ´Ï´Ù\n" +" -w <ÆäÀÌÁö_Æø>, --width=<ÆäÀÌÁö_Æø>\n" +" ÅØ½ºÆ®-¿­ Ãâ·Â¿¡¼­, -s[<¹®ÀÚ>]¸¦ ¾²Áö ¾Ê¾ÒÀ» °æ¿ì¿¡\n" +" ÆäÀÌÁö ÆøÀ» <ÆäÀÌÁö_Æø>(72)À¸·Î ÇÕ´Ï´Ù\n" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" +" -W <ÆäÀÌÁö_Æø>, --page-width=<ÆäÀÌÁö_Æø>\n" +" ÆäÀÌÁöÀÌ ÆøÀ» <ÆäÀÌÁö_Æø>(72)À¸·Î ¸ÂÃä´Ï´Ù. ³Ñ¾î°¡´Â \n" +" ÁÙÀº Àß·ÁÁö°í, -J ¿É¼Ç°ú °°Àº È¿°ú°¡ ³ª¿À´Â °ÍÀ» Á¦¿ÜÇÏ" +"¸é, \n" +" -S³ª -s¿¡ ¿µÇâÀ» ¹ÞÁö ¾Ê½À´Ï´Ù.\n" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" +"\n" +"nn <= 10 À̰ųª -F ¿É¼ÇÀ» ¾²°í n <= 3 ÀÎ °æ¿ì -l ¿É¼ÇÀº -T¸¦ Æ÷ÇÔÇÕ´Ï´Ù. \n" +"<ÆÄÀÏ>ÀÌ ÁÖ¾îÁöÁö ¾Ê°Å³ª, <ÆÄÀÏ>ÀÌ `-'À̸é, Ç¥ÁØ ÀÔ·ÂÀ» ÀнÀ´Ï´Ù.\n" + +#: src/printenv.c:43 +#, fuzzy +msgid "David MacKenzie and Richard Mlynarik" +msgstr "David Ihnat, David MacKenzie, ±×¸®°í Jim Meyering" + +#: src/printenv.c:63 +#, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "" + +#: src/printf.c:100 +#, fuzzy, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"»ç¿ë¹ý: %s [<ÆÄÀÏ>]...\n" +" ȤÀº: %s [<¿É¼Ç>]\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "" + +#: src/printf.c:292 +#, fuzzy, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "ºÎÀûÀýÇÑ ¹®ÀÚ Å¬·¡½º `%s'" + +#: src/printf.c:472 +#, fuzzy, c-format +msgid "invalid field width: %s" +msgstr "ºÎÀûÀýÇÑ Æø: `%s'" + +#: src/printf.c:498 +#, fuzzy, c-format +msgid "invalid precision: %s" +msgstr "ºÎÀûÀýÇÑ Æø ¿É¼Ç `%s'" + +#: src/printf.c:519 +#, fuzzy, c-format +msgid "%%%c: invalid directive" +msgstr "%s: ºÎÀûÀýÇÑ ÆÐÅÏ" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "" + +#: src/printf.c:594 +#, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "%s (Á¤±Ô½Ä `%s'¿¡ ´ëÇØ)" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"»ç¿ë¹ý: %s [<¿É¼Ç>]... [<ÀÔ·Â>]... (-G ¾øÀÌ)\n" +" ȤÀº: %s -G [<¿É¼Ç>]... [<ÀÔ·Â> [<Ãâ·Â>]]\n" +"\n" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" +"ÀÔ·Â ÆÄÀÏ¿¡ µé¾î ÀÖ´Â ´Ü¾îµéÀÇ permuated À妽º¸¦ ±× ¹®¸Æ°ú ÇÔ²² Ãâ·ÂÇÕ´Ï´Ù\n" +"\n" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" +" -A, --auto-reference ÀÚµ¿À¸·Î ¸¸µç ÂüÁ¶¸¦ Ãâ·ÂÇÕ´Ï´Ù\n" +" -C, --copyright ÀúÀ۱ǰú º¹»ç Á¶°ÇÀ» Ç¥½ÃÇմϤ§\n" +" -G, --traditional System V `ptx'¿Í ´õ ºñ½ÁÇÏ°Ô µ¿ÀÛÇÕ´Ï´Ù\n" +" -F, --flag-truncation=<¹®ÀÚ¿­> ³Ñ¾î°£ ÁÙÀ» ÀÚ¸¦¶§ <¹®ÀÚ¿­>·Î Ç¥½ÃÇÕ´Ï´Ù\n" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" +" -M, --macro-name=<¹®ÀÚ¿­> `xx' ´ë½Å¿¡ »ç¿ëÇÒ ¸ÅÅ©·Î À̸§\n" +" -O, --format=roff Ãâ·ÂÀ» roff·Î ÇÕ´Ï´Ù\n" +" -R, --right-side-refs ÂüÁ¶¸¦ ¿À¸¥ ÂÊ¿¡ ¾¹´Ï´Ù. -wÀÇ °æ¿ì È¿°ú ¾ø" +"À½\n" +" -S, --sentence-regexp=<Á¤±Ô½Ä> ÁÙÀÇ ³¡À̳ª ¹®ÀÚÀÇ ³¡À» ³ªÅ¸³»´Â Á¤±Ô½Ä\n" +" -T, --format=tex Ãâ·ÂÀ» TeXÀ¸·Î ÇÕ´Ï´Ù\n" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" +" -W, --word-regexp=<Á¤±Ô½Ä> Ű¿öµå¸¦ ±¸ºÐÇÏ´Â µ¥ <Á¤±Ô½Ä>À» ¾¹´Ï´Ù\n" +" -b, --break-file=<ÆÄÀÏ> ÀÌ <ÆÄÀÏ>¿¡ ´Ü¾î ±¸ºÐ ¹®ÀÚ°¡ µé¾î ÀÖ½À´Ï´Ù\n" +" -f, --ignore-case Á¤·Ä¿¡¼­ ¼Ò¹®ÀÚ¿Í ´ë¹®ÀÚ¸¦ ±¸º°ÇÏÁö ¾Ê½À´Ï" +"´Ù\n" +" -g, --gap-size=<°³¼ö> Ãâ·ÂÇÒ Çʵ忡¼­ ¿­ »çÀÌÀÇ °£°Ý\n" +" -i, --ignore-file=<ÆÄÀÏ> ÀÌ <ÆÄÀÏ>¿¡ µé¾î ÀÖ´Â ´Ü¾îµéÀ» ¹«½ÃÇÕ´Ï´Ù\n" +" -o, --only-file=<ÆÄÀÏ> ÀÌ <ÆÄÀÏ>¿¡ µé¾î ÀÖ´Â ´Ü¾îµé¸¸ ÀнÀ´Ï´Ù\n" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" +" -r, --references °¢ ÁÙÀÇ Ã¹ ¹øÂ° Çʵ尡 ÂüÁ¶ÀÔ´Ï´Ù\n" +" -t, --typeset-mode - ±¸ÇöµÇÁö ¾Ê¾ÒÀ½ -\n" +" -w, --width=<°³¼ö> Ãâ·ÂÇÒ ¿­ÀÇ Æø (ÂüÁ¶´Â Á¦¿ÜÇϰí)\n" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" +"\n" +"<ÆÄÀÏ>ÀÌ ÁÖ¾îÁöÁö ¾Ê°Å³ª, <ÆÄÀÏ>ÀÌ `-'À̸é, Ç¥ÁØ ÀÔ·ÂÀ» ÀнÀ´Ï´Ù. `-F /'°¡ " +"±âº»°ªÀÔ´Ï´Ù.\n" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" +"ÀÌ ÇÁ·Î±×·¥Àº ÀÚÀ¯ ¼ÒÇÁÆ®¿þ¾îÀÔ´Ï´Ù. ¼ÒÇÁÆ®¿þ¾îÀÇ ÇǾ絵ÀÚ´Â ÀÚÀ¯ \n" +"¼ÒÇÁÆ®¿þ¾î Àç´ÜÀÌ °øÇ¥ÇÑ GNU General Public License 2ÆÇ (¶Ç´Â ±× ÀÌÈÄ \n" +"ÆÇÀ» ÀÓÀÇ·Î ¼±ÅÃÇØ¼­), ±× ±ÔÁ¤¿¡ µû¶ó ÇÁ·Î±×·¥À» °³ÀÛÇϰųª Àç¹èÆ÷ÇÒ \n" +"¼ö ÀÖ½À´Ï´Ù.\n" +"\n" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" +"ÀÌ ÇÁ·Î±×·¥Àº À¯¿ëÇÏ°Ô »ç¿ëµÉ ¼ö ÀÖÀ¸¸®¶ó´Â Èñ¸Á¿¡¼­ ¹èÆ÷µÇ°í ÀÖÁö¸¸,\n" +"ÇÁ·Î±×·¥ÀÇ ½ÃÀ强°ú ƯÁ¤ÇÑ ¸ñÀû¿¡ ¸Â´Â ÀûÇÕ¼º ¿©ºÎ¿¡ ´ëÇÑ ¹¬½ÃÀûÀÎ\n" +"º¸ÁõÀ» Æ÷ÇÔÇÑ ¾î¶°ÇÑ ÇüÅÂÀÇ º¸Áõµµ Á¦°øµÇÁö ¾Ê½À´Ï´Ù. º¸´Ù ÀÚ¼¼ÇÑ\n" +"»çÇ׿¡ ´ëÇØ¼­´Â GNU General Public License¸¦ Âü°íÇϽñ⠹ٶø´Ï´Ù.\n" +"\n" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" +"GNU General Public License´Â ÀÌ ÇÁ·Î±×·¥°ú ÇÔ²² Á¦°øµË´Ï´Ù. ¸¸¾à ÀÌ ¹®¼­°¡\n" +"´©¶ôµÇ¾î ÀÖ´Ù¸é ÀÚÀ¯ ¼ÒÇÁÆ®¿þ¾î Àç´ÜÀ¸·Î ¹®ÀÇÇϽñ⠹ٶø´Ï´Ù. (ÀÚÀ¯ \n" +"¼ÒÇÁÆ®¿þ¾î Àç´Ü: Free Software Foundation, Inc., 59 Temple Place - Suite " +"330, \n" +"Boston, MA 02111-1307, USA)\n" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" + +#: src/pwd.c:74 +#, fuzzy +msgid "ignoring non-option arguments" +msgstr "¿É¼Ç¾Æ´Ñ Àμö°¡ ³Ê¹« ¸¹À½" + +#: src/pwd.c:78 +#, fuzzy +msgid "cannot get current directory" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/readlink.c:69 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>]... [<ÆÄÀÏ>]...\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" + +#: src/remove.c:394 +#, fuzzy, c-format +msgid "cannot chdir from %s to .." +msgstr "%s µð·ºÅ丮·Î chdirÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/remove.c:407 src/remove.c:488 +#, fuzzy, c-format +msgid "cannot lstat `.' in %s" +msgstr "`%s'¿¡¼­ `.'¿¡ ´ëÇØ lstatÄÝÀ» ÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, fuzzy, c-format +msgid "cannot lstat %s" +msgstr "`%s'ÀÇ Á¤º¸(stat)¸¦ ¾òÀ» ¼ö ¾ø½À´Ï´Ù" + +#: src/remove.c:603 +#, fuzzy, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/remove.c:604 +#, fuzzy, c-format +msgid "%s: descend into directory %s? " +msgstr "%s µð·ºÅ丮·Î chdirÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/remove.c:614 +#, fuzzy, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: ¾²±â º¸È£µÈ `%s'ÆÄÀÏÀ» Áö¿ï±î¿ä? " + +#: src/remove.c:615 +#, fuzzy, c-format +msgid "%s: remove %s %s? " +msgstr "%s: `%s'¸¦ Áö¿ï±î¿ä? " + +#: src/remove.c:639 +#, fuzzy, c-format +msgid "removed %s\n" +msgstr "%s¸¦ Áö¿ó´Ï´Ù\n" + +#: src/remove.c:654 src/remove.c:1059 +#, fuzzy, c-format +msgid "removed directory: %s\n" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, fuzzy, c-format +msgid "cannot remove directory %s" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/remove.c:815 +#, fuzzy, c-format +msgid "cannot open directory %s" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/remove.c:896 src/remove.c:1002 +#, fuzzy, c-format +msgid "cannot chdir from %s to %s" +msgstr "%s µð·ºÅ丮·Î chdirÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/remove.c:904 +#, fuzzy, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +"%s: <°æ°í>: ¼øÈ¯ µð·ºÅ丮 ±¸Á¶.\n" +"À̰ÍÀº ´ëºÎºÐÀÇ °æ¿ì ÆÄÀϽýºÅÛÀÌ ¼Õ»óµÇ¾ú´Ù´Â °ÍÀ» ÀǹÌÇÕ´Ï´Ù.\n" +"**½Ã½ºÅÛ °ü¸®ÀÚ¿¡°Ô ¾Ë¸®½Ê½Ã¿À**\n" +"´ÙÀ½ µÎ µð·ºÅ丮°¡ °°Àº inode ¹øÈ£¸¦ °¡Á³½À´Ï´Ù:\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "`.'³ª `..'¸¦ Áö¿ï ¼ö ¾ø½À´Ï´Ù" + +#: src/rm.c:60 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie, ±×¸®°í Jim Meyering" + +#: src/rm.c:99 src/touch.c:244 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>]... [<ÆÄÀÏ>]...\n" + +#: src/rm.c:100 +#, fuzzy +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"ÆÄÀÏÀ» Áö¿ì°Å³ª ¸µÅ©¸¦ ÇØÁ¦ÇÕ´Ï´Ù.\n" +"\n" +" -d, --directory ºñ¾î ÀÖÁö ¾Ê¾Æµµ µð·ºÅ丮 ¸µÅ©¸¦ ÇØÁ¦ÇÕ´Ï´Ù(°ü¸®ÀÚ" +"¿ë)\n" +" -f, --force Áú¹® ¾øÀÌ Á¸ÀçÇÏÁö ¾Ê´Â ÆÄÀÏÀ» ¹«½ÃÇÕ´Ï´Ù\n" +" -i, --interactive Áö¿ì±â Àü¿¡ Áú¹®ÇÕ´Ï´Ù\n" +" -r, -R, --recursive µð·ºÅ丮ÀÇ ³»¿ëÀ» Àç±ÍÀûÀ¸·Î Áö¿ó´Ï´Ù\n" +" -v, --verbose ÀÛ¾÷À» Ãâ·ÂÇÕ´Ï´Ù\n" +" --help ÀÌ µµ¿ò¸»À» Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +" --version ¹öÀü Á¤º¸¸¦ Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +"\n" +"`-foo'¿Í °°ÀÌ `-'·Î ½ÃÀÛÇÏ´Â ÆÄÀÏÀ» Áö¿ì±â À§Çؼ­´Â ´ÙÀ½ ¸í·É Áß Çϳª¸¦\n" +"»ç¿ëÇÕ´Ï´Ù:\n" +" %s -- -foo\n" +" %s ./-foo\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, fuzzy, c-format +msgid "removing directory, %s" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/rmdir.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>]... [<ÆÄÀÏ>]...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" + +#: src/rmdir.c:154 +#, fuzzy +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +"ºñ¾î ÀÖ´Ù¸é µð·ºÅ丮¸¦ Áö¿ó´Ï´Ù.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" µð·ºÅ丮¸¦ ¿ÏÀüÈ÷ ºñ¿ìÁö ¸øÇؼ­ »ý±â´Â ½ÇÆÐ´Â\n" +" ¹«½ÃÇÕ´Ï´Ù\n" +" -p, --parents ºñ¾îÀÖ´Â °æ¿ì ºÎ¸ð µð·ºÅ丮¸¦ Áö¿ó´Ï´Ù\n" +" ¿¹) `rmdir -p a/b/c'´Â `rmdir a/b/c a/b a'°ú ºñ½ÁÇÕ´Ï´Ù\n" +" -v, --verbose 󸮵Ǵ ¸ðµç µð·ºÅ丮¿¡ ´ëÇØ ¸Þ½ÃÁö¸¦ Ãâ·ÂÇÕ´Ï´Ù\n" +" --help ÀÌ µµ¿ò¸»À» Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +" --version ¹öÀü Á¤º¸¸¦ Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" + +#: src/seq.c:82 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"»ç¿ë¹ý: %s [<¿É¼Ç>]... [<ÀÔ·Â>]... (-G ¾øÀÌ)\n" +" ȤÀº: %s -G [<¿É¼Ç>]... [<ÀÔ·Â> [<Ãâ·Â>]]\n" +"\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" + +#: src/seq.c:96 +#, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" + +#: src/seq.c:119 +#, fuzzy, c-format +msgid "invalid floating point argument: %s" +msgstr "ºÎÀûÀýÇÑ ½ÃÀÛ Çà¹øÈ£: `%s'" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" + +#: src/seq.c:423 +#, fuzzy, c-format +msgid "invalid format string: `%s'" +msgstr "ºÎÀûÀýÇÑ Å¸ÀÔÀÇ ¹®ÀÚ¿­ `%s'" + +#: src/seq.c:445 +#, fuzzy +msgid "format string may not be specified when printing equal width strings" +msgstr "¹®ÀÚ¿­À» ´ýÇÁÇÒ ¶§¿¡´Â ŸÀÔÀÌ ÁöÁ¤µÇ¸é ¾ÈµË´Ï´Ù" + +#: src/shred.c:160 +#, fuzzy, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>] [<ÆÄÀÏ>]...\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" + +#: src/shred.c:174 +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" + +#: src/shred.c:808 +#, c-format +msgid "%s: cannot rewind" +msgstr "%s: µ¹¾Æ°¥ ¼ö ¾ø½À´Ï´Ù" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "%s: ÁøÇàÁß %lu/%lu (%s)..." + +#: src/shred.c:868 +#, fuzzy, c-format +msgid "%s: error writing at offset %s" +msgstr "%s¿¡ ¾²´Â µµÁß ¿À·ù ¹ß»ý" + +#: src/shred.c:897 +#, fuzzy, c-format +msgid "%s: file too large" +msgstr "%s: ÆÄÀÏÀÌ ³Ê¹« ±é´Ï´Ù" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "%s: ÁøÇàÁß %lu/%lu (%s)...%s" + +#: src/shred.c:936 +#, fuzzy, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "%s: ÁøÇàÁß %lu/%lu (%s)...%s/%s" + +#: src/shred.c:1195 +#, fuzzy, c-format +msgid "%s: invalid file type" +msgstr "%s: ºÎÀûÀýÇÑ Á¢¹Ì¾î ±æÀÌ" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s: ÆÄÀÏÀÌ À½ÀÇ Å©±â¸¦ °®½À´Ï´Ù" + +#: src/shred.c:1265 +#, fuzzy, c-format +msgid "%s: error truncating" +msgstr "%s: ÆÄÀÏÀÌ Àß·ÈÀ½" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "%s: ¾²±â Àü¿ë ÆÄÀÏ µð½ºÅ©¸³ÅÍ´Â ÆÄ±âÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "%s: »èÁ¦Áß" + +#: src/shred.c:1412 +#, fuzzy, c-format +msgid "%s: renamed to %s" +msgstr "%s: Àб⠿À·ù" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s: »èÁ¦µÇ¾úÀ½" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "%s: Áö¿ï ¼ö ¾ø½À´Ï´Ù" + +#: src/shred.c:1551 +#, fuzzy, c-format +msgid "%s: invalid number of passes" +msgstr "%s: ºÎÀûÀýÇÑ ÃÊ" + +#: src/shred.c:1568 +#, fuzzy, c-format +msgid "%s: invalid file size" +msgstr "%s: ºÎÀûÀýÇÑ Á¢¹Ì¾î ±æÀÌ" + +#: src/sleep.c:34 +#, fuzzy +msgid "Jim Meyering and Paul Eggert" +msgstr "Mike Haertel ±×¸®°í Paul Eggert" + +#: src/sleep.c:52 +#, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" + +#: src/sleep.c:155 +#, fuzzy, c-format +msgid "invalid time interval `%s'" +msgstr "ºÎÀûÀýÇÑ ÇÊµå ¹øÈ£: `%s'" + +#: src/sleep.c:166 src/tail.c:1031 +#, fuzzy +msgid "cannot read realtime clock" +msgstr "¸µÅ© `%s'¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "Mike Haertel ±×¸®°í Paul Eggert" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" +"¸ðµç <ÆÄÀÏ>(µé)À» ¿¬°áÇØ¼­ Á¤·ÄÇÑ °á°ú¸¦ Ç¥ÁØ Ãâ·Â¿¡ ¾¹´Ï´Ù.\n" +"\n" +"Á¤·Ä ¿É¼ÇÀº ´ÙÀ½°ú °°½À´Ï´Ù:\n" +"\n" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" +" -b, --ignore-leading-blanks ¾Õ¿¡ ³ª¿À´Â °ø¹éÀ» ¹«½ÃÇÕ´Ï´Ù\n" +" -d, --dictionary-order °ø¹é, ¾ËÆÄºª, ¼ýÀÚ¸¸À» °í·ÁÇÕ´Ï´Ù\n" +" -f, --ignore-case ¼Ò¹®ÀÚ¿Í ´ë¹®ÀÚ¸¦ ±¸º°ÇÏÁö ¾Ê½À´Ï´Ù\n" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" +" -g, --general-numeric-sort ÀϹÝÀûÀÎ ¼öÄ¡ °ª¿¡ µû¶ó ºñ±³ÇÕ´Ï´Ù\n" +" -i, --ignore-nonprinting Ç¥½Ã °¡´ÉÇÑ ¹®ÀÚ¸¸ °í·ÁÇÕ´Ï´Ù\n" +" -M, --month-sort (±×¿Ü) < `JAN' < ... < `DEC' ÀÇ ¼ø¼­´ë·Î ºñ±³\n" +" -n, --numeric-sort ¹®ÀÚ¿­ÀÇ ¼öÄ¡ °ª¿¡ µû¶ó ºñ±³ÇÕ´Ï´Ù\n" +" -r, --reverse ºñ±³ÀÇ °á°ú¸¦ µÚ¹Ù²ß´Ï´Ù\n" +"\n" + +# last-resort comparison? +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" +"±× ¿Ü ¿É¼Ç:\n" +"\n" +" -c, --check ÀÔ·ÂÀÌ Á¤·ÄµÇ¾ú´ÂÁö °Ë»çÇÕ´Ï´Ù; Á¤·ÄÇÏÁö´Â ¾Ê½À´Ï" +"´Ù\n" +" -k, --key=POS1[,POS2] POS1¿¡¼­ ۸¦ ½ÃÀÛÇϰí, POS2¿¡¼­ ³¡³À´Ï´Ù (±âÁØ " +"1)\n" +" -m, --merge ÀÌ¹Ì Á¤·ÄµÈ ÆÄÀϵéÀ» ÇÕĨ´Ï´Ù; Á¤·ÄÇÏÁö´Â ¾Ê½À´Ï" +"´Ù\n" +" -o, --output=<ÆÄÀÏ> °á°ú¸¦ Ç¥ÁØ Ãâ·Â ´ë½Å¿¡ <ÆÄÀÏ>¿¡ ¾¹´Ï´Ù\n" +" -s, --stable ¸¶Áö¸·-ÀçÁ¤·Ä ºñ±³°úÁ¤À» ¾ø¾Ö Á¤·ÄÀ» ¾ÈÁ¤È­ÇÕ´Ï" +"´Ù\n" +" -S, --buffer-size=<Å©±â> ¸ÞÀÎ ¸Þ¸ð¸® ¹öÆÛ¸¦ <Å©±â>¸¸Å­ ¾¹´Ï´Ù\n" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" +" -t, --field-separator=<±¸ºÐ> °ø¹éÀ» (ºóÄ­À¸·Î ¹Ù²Ù´Â ´ë½Å) <±¸ºÐ>À¸·Î ¹Ù" +"²Þ\n" +" -T, --temporary-directory=DIR Àӽà ÆÄÀÏ¿¡ $TMPDIRÀ̳ª %s ´ë½Å <µð·ºÅ丮>" +"¸¦\n" +" »ç¿ëÇÕ´Ï´Ù. ¿É¼Ç ¿©·¯ °³´Â ¿©·¯ °³ µð·ºÅ丮¸¦ " +"ÁöÁ¤\n" +" -u, --unique -c¿Í °°ÀÌ »ç¿ë: ±× ¿Ü¿¡´Â ¾ö°ÝÇÑ ¼ø¼­¸¦ °Ë»çÇÕ´Ï" +"´Ù:\n" +" µ¿ÀÏÇÑ °ÍÁß Ã¹ ¹øÂ°¸¸ Ãâ·ÂÇÕ´Ï´Ù\n" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr " -z, --zero-terminated ÁÙÀÇ ³¡¿¡ ÁÙ¹Ù²Þ ´ë½Å ¹ÙÀÌÆ® 0À» ¾¹´Ï´Ù\n" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" +"\n" +"POS´Â `F[.C][OPTS]'ÀÔ´Ï´Ù. ¿©±â¼­ F´Â ÇÊµå ¹øÈ£À̰í C´Â ÇʵåÀÇ ¹®ÀÚ \n" +"À§Ä¡ÀÔ´Ï´Ù. OPTS´Â ÇÑ °³ ȤÀº ±× ÀÌ»óÀÇ ÇѱÛÀÚ·Î µÈ ¼ø¼­ ÁöÁ¤ ¿É¼ÇÀ¸·Î,\n" +"ÇØ´ç Ű¿¡ ´ëÇÑ ±âº» ¼ø¼­ ¿É¼Ç¿¡ ¿ì¼±ÇÕ´Ï´Ù. ۰¡ ÁÖ¾îÁöÁö ¾ÊÀ¸¸é, Àüü\n" +"ÁÙÀ» Ű·Î Ãë±ÞÇÕ´Ï´Ù.\n" +"\n" +"<Å©±â> ´ÙÀ½¿¡´Â ´ÙÀ½ °öÇϱâ Á¢¹Ì¾î°¡ µû¶ó¿Ã ¼ö ÀÖ½À´Ï´Ù:\n" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" +"%% ¹®ÀÚ´Â ¸Þ¸ð¸®ÀÇ 1ÆÛ¼¾Æ®, b´Â 1, k´Â 1024 (±âº»°ª), ±× ¿Ü¿¡ M, G, T, P, E, " +"Z, Y.\n" +"\n" +"<ÆÄÀÏ>ÀÌ ÁÖ¾îÁöÁö ¾Ê°Å³ª, <ÆÄÀÏ>ÀÌ `-'À̸é, Ç¥ÁØ ÀÔ·ÂÀ» ÀнÀ´Ï´Ù.\n" +"\n" +"*** °æ°í ***\n" +"ȯ°æº¯¼ö¿¡ ÁöÁ¤µÈ ·ÎÄÉÀÏÀÌ Á¤·Ä ¼ø¼­¿¡ ¿µÇâÀ» ÁÝ´Ï´Ù.\n" +"¹ÙÀÌÆ®°ª¿¡ µû¶ó Á¤·ÄµÈ ÀüÅëÀûÀÎ Á¤·Ä ¹æ½ÄÀ» ¿øÇÑ´Ù¸é \"LC_ALL=C\"·Î\n" +"ȯ°æº¯¼ö¸¦ ¼¼ÆÃÇϽʽÿÀ\n" + +#: src/sort.c:444 +msgid "cannot create temporary file" +msgstr "Àӽà ÆÄÀÏÀ» ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/sort.c:467 +msgid "open failed" +msgstr "ÆÄÀÏ ¿­±â ½ÇÆÐ" + +#: src/sort.c:487 src/sort.c:2496 +msgid "close failed" +msgstr "ÆÄÀÏ ´Ý±â ½ÇÆÐ" + +#: src/sort.c:495 +msgid "write failed" +msgstr "ÆÄÀÏ ¾²±â ½ÇÆÐ" + +#: src/sort.c:641 +msgid "sort size" +msgstr "Á¤·Ä Å©±â" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "stat ½ÇÆÐ" + +#: src/sort.c:972 +msgid "read failed" +msgstr "ÆÄÀÏ ÀÐ±â ½ÇÆÐ" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "%s: %s:%s: ¼ø¼­°¡ ¸ÂÁö ¾ÊÀ½: " + +#: src/sort.c:1574 +msgid "standard error" +msgstr "Ç¥ÁØ ¿À·ù" + +#: src/sort.c:2032 +#, c-format +msgid "%s: invalid field specification `%s'" +msgstr "%s: ºÎÀûÀýÇÑ Çʵå ÁöÁ¤ `%s'" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "%s: ÀϷùøÈ£ `%.*s'Àº(´Â) ³Ê¹« Å®´Ï´Ù" + +# count? +#: src/sort.c:2064 +#, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "%s: `%s' ½ÃÀÛ ºÎºÐ¿¡ ºÎÀûÀýÇÑ °¹¼ö" + +#: src/sort.c:2298 +msgid "invalid number after `-'" +msgstr "`-' ´ÙÀ½¿¡ ºÎÀûÀýÇÑ ¼ýÀÚ" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +msgid "invalid number after `.'" +msgstr "`.' ´ÙÀ½¿¡ ºÎÀûÀýÇÑ ¼ýÀÚ" + +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "ÇÊµå ½ºÆå¿¡ ¹þ¾î³­ ¹®ÀÚ" + +#: src/sort.c:2338 +msgid "invalid number at field start" +msgstr "Çʵå óÀ½¿¡ ºÎÀûÀýÇÑ ¼ýÀÚ" + +#: src/sort.c:2342 src/sort.c:2370 +msgid "field number is zero" +msgstr "ÇÊµå °³¼ö°¡ 0ÀÔ´Ï´Ù" + +#: src/sort.c:2351 +msgid "character offset is zero" +msgstr "¹®ÀÚ ¿ÀÇÁ¼ÂÀÌ 0ÀÔ´Ï´Ù" + +#: src/sort.c:2366 +msgid "invalid number after `,'" +msgstr "`,' ´ÙÀ½¿¡ ºÎÀûÀýÇÑ ¼ýÀÚ" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "¿©·¯ ¹®ÀÚ·Î µÈ ÅÇ `%s'" + +# extra operand? ¹º ¼Ò¸®¾ß? +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "-c ¿É¼Ç¿¡¼­´Â Ãß°¡ ÇÇ¿¬»êÀÚ `%s'À»(¸¦) ¾µ ¼ö ¾ø½À´Ï´Ù" + +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>] [<ÀÔ·Â> [<Á¢µÎ¾î>]]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" +"ÀÔ·ÂÀ» °íÁ¤µÈ Å©±âÀÇ Á¶°¢ <Á¢µÎ¾î>aa, <Á¢µÎ¾î>ab, ... À¸·Î ³ª´©¾î ¾¹´Ï´Ù; ±â" +"º»\n" +"<Á¢µÎ¾î>´Â`x'ÀÔ´Ï´Ù. <ÀÔ·Â>ÀÌ ÁÖ¾îÁöÁö ¾Ê°Å³ª, <ÀÔ·Â>ÀÌ `-'À̸é, Ç¥ÁØ ÀÔ·Â" +"À»\n" +"ÀнÀ´Ï´Ù.\n" + +#: src/split.c:108 +#, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" +" -a, --suffix-length=N N¸¸Å­ÀÇ ±æÀÌÀÇ Á¢¹Ì¾î¸¦ »ç¿ëÇÕ´Ï´Ù (±âº»°ª %d)\n" +" -b, --bytes=<Å©±â> Ãâ·Â ÆÄÀÏ´ç <Å©±â> ¹ÙÀÌÆ®¸¦ ¾¹´Ï´Ù\n" +" -C, --line-bytes=<Å©±â> Ãâ·Â ÆÄÀÏ´ç ÃÖ´ë <Å©±â> ¹ÙÀÌÆ®¸¸Å­ÀÇ ÁÙÀ» ¾¹´Ï´Ù\n" +" -l, --lines=<°³¼ö> Ãâ·Â ÆÄÀÏ´ç <°³¼ö> ÁÙ¸¸Å­ÀÇ ÁÙÀ» ¾¹´Ï´Ù\n" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" +" --verbose Áø´Ü ³»¿ëÀ» °¢ Ãâ·Â ÆÄÀÏÀ» ¿­±â Á÷Àü¿¡ Ç¥ÁØ ¿À·ù" +"·Î\n" +" Ãâ·ÂÇÕ´Ï´Ù\n" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "Ãâ·ÂÆÄÀÏ Á¢¹Ì¾î¸¦ ´Ù ½è½À´Ï´Ù" + +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "ÆÄÀÏ `%s'À»(¸¦) ¸¸µê\n" + +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "ÇÑ °¡Áö ÀÌ»óÀÇ ¹æ¹ýÀ¸·Î ºÐÇÒÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/split.c:394 +#, c-format +msgid "%s: invalid suffix length" +msgstr "%s: ºÎÀûÀýÇÑ Á¢¹Ì¾î ±æÀÌ" + +#: src/split.c:408 src/split.c:434 +#, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: ºÎÀûÀýÇÑ ¹ÙÀÌÆ®ÀÇ °³¼ö" + +#: src/split.c:421 +#, c-format +msgid "%s: invalid number of lines" +msgstr "%s: ºÎÀûÀýÇÑ ÇàÀÇ °³¼ö" + +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "`-%d' ¿É¼ÇÀº ¾ø¾îÁ³½À´Ï´Ù; `-l %d'À»(¸¦) »ç¿ëÇϽʽÿÀ" + +#: src/split.c:483 +msgid "invalid number" +msgstr "ºÎÀûÀýÇÑ ¼ýÀÚ" + +#: src/stat.c:326 +#, fuzzy +msgid "*** invalid date/time ***" +msgstr "ºÎÀûÀýÇÑ Æø: `%s'" + +#: src/stat.c:608 +#, fuzzy, c-format +msgid "cannot read file system information for %s" +msgstr "%s¿¡ ´ëÇÑ ÆÄÀÏ Æ÷ÀÎÅ͸¦ ÀçÀ§Ä¡ÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/stat.c:684 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>] [<ÆÄÀÏ>]...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" + +#: src/stty.c:504 +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" + +#: src/stty.c:570 +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:608 +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" + +#: src/stty.c:787 +#, fuzzy +msgid "only one device may be specified" +msgstr "¿ÀÁ÷ ÇÑ °³ÀÇ Àμö¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù" + +#: src/stty.c:882 +#, fuzzy +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "--string°ú --check ¿É¼ÇÀº »óÈ£ ¹èŸÀûÀÔ´Ï´Ù" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "" + +#: src/stty.c:957 src/stty.c:1064 +#, fuzzy, c-format +msgid "invalid argument `%s'" +msgstr "%2$s¿¡ ´ëÇØ ºÎÀûÀýÇÑ ÀÎÀÚ %1$s" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, fuzzy, c-format +msgid "missing argument to `%s'" +msgstr "%2$s¿¡ ´ëÇØ ¾Ö¸ÅÇÑ ÀÎÀÚ %1$s" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "" + +#: src/stty.c:1944 +#, fuzzy, c-format +msgid "invalid integer argument `%s'" +msgstr "ºÎÀûÀýÇÑ Çà¹øÈ£ Áõ°¡: `%s'" + +#: src/su.c:289 +msgid "Password:" +msgstr "" + +#: src/su.c:292 +#, fuzzy +msgid "getpass: cannot open /dev/tty" +msgstr "`%s'µð·ºÅ丮¸¦ Áö¿ï ¼ö ¾ø½À´Ï´Ù" + +#: src/su.c:350 +#, fuzzy +msgid "cannot set groups" +msgstr "»ç¿ëÀÚ¿Í ±×·ìÀ» ¸ðµÎ »ý·«ÇÒ ¼ö´Â ¾ø½À´Ï´Ù" + +#: src/su.c:354 +#, fuzzy +msgid "cannot set group id" +msgstr "»ç¿ëÀÚ¿Í ±×·ìÀ» ¸ðµÎ »ý·«ÇÒ ¼ö´Â ¾ø½À´Ï´Ù" + +#: src/su.c:356 +#, fuzzy +msgid "cannot set user id" +msgstr "»ç¿ëÀÚ¿Í ±×·ìÀ» ¸ðµÎ »ý·«ÇÒ ¼ö´Â ¾ø½À´Ï´Ù" + +#: src/su.c:437 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>]... [<ÆÄÀÏ>]...\n" + +#: src/su.c:438 +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "" + +#: src/su.c:580 +#, fuzzy, c-format +msgid "warning: cannot change directory to %s" +msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "Kayvan Aghaiepour ±×¸®°í David MacKenzie" + +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" +"°¢ ÆÄÀÏ¿¡ ´ëÇÑ Ã¼Å©¼¶°ú ºí·°ÀÇ °³¼ö¸¦ ÀμâÇÕ´Ï´Ù.\n" +"\n" +" -r -s¸¦ ¹«½Ã, BSD ÇÕ ¾Ë°í¸®Áò »ç¿ë, 1K ºí·° »ç¿ë\n" +" -s, --sysv ½Ã½ºÅÛ V ÇÕ ¾Ë°í¸®Áò »ç¿ë, 512 ¹ÙÀÌÆ® ºí·° »ç¿ë\n" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" + +#: src/sync.c:70 src/tty.c:112 +#, fuzzy +msgid "ignoring all arguments" +msgstr "Àμö°¡ ³Ê¹« ¸¹À½" + +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr " --help ÀÌ µµ¿ò¸»À» Ç¥½ÃÇÏ°í ³¡³À´Ï´Ù\n" + +#: src/sys2.h:494 +msgid " --version output version information and exit\n" +msgstr " --version ¹öÀü Á¤º¸¸¦ Ãâ·ÂÇÏ°í ³¡³À´Ï´Ù\n" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "Jay Lepreau ±×¸®°í David MacKenzie" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"°¢ <ÆÄÀÏ>À» ¸¶Áö¸· ÁÙºÎÅÍ Ç¥ÁØ Ãâ·Â¿¡ ¾¹´Ï´Ù.\n" +"<ÆÄÀÏ>ÀÌ ÁÖ¾îÁöÁö ¾Ê°Å³ª, <ÆÄÀÏ>ÀÌ `-'À̸é, Ç¥ÁØ ÀÔ·ÂÀ» ÀнÀ´Ï´Ù.\n" +"\n" + +#: src/tac.c:139 +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" +" -b, --before ±¸ºÐÀÚ¸¦ µÚ¿¡ ³õÁö ¾Ê°í ¾Õ¿¡ ³õ½À´Ï´Ù\n" +" -r, --regex ±¸ºÐÀÚ¸¦ Á¤±Ô½ÄÀ¸·Î »ý°¢ÇÕ´Ï´Ù\n" +" -s, --separator=<¹®ÀÚ¿­> ÁÙ¹Ù²Þ ´ë½Å¿¡ <¹®ÀÚ¿­>À» ±¸ºÐÀÚ·Î ¾¹´Ï´Ù\n" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "stdin: ÆÄÀÏ Àб⠿À·ù" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "±¸ºÐ ´ÜÀ§°¡ ºó ¹®ÀÚ¿­ÀÌ µÉ ¼ö´Â ¾ø½À´Ï´Ù" + +#: src/tail.c:49 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie, ±×¸®°í Jim Meyering" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"°¢ <ÆÄÀÏ>ÀÇ ¸Ç ¸¶Áö¸· %dÁÙÀ» Ç¥ÁØ Ãâ·Â¿¡ Ç¥½ÃÇÕ´Ï´Ù.\n" +"µÎ °³ ÀÌ»óÀÇ <ÆÄÀÏ>ÀÇ °æ¿ì, °¢°¢ÀÇ ÆÄÀϸ¶´Ù ÆÄÀÏÀ̸§À» ³ªÅ¸³»´Â Çì´õ¸¦ ¸Õ" +"Àú \n" +"Ç¥½ÃÇÕ´Ï´Ù. <ÆÄÀÏ>ÀÌ ÁÖ¾îÁöÁö ¾Ê°Å³ª, <ÆÄÀÏ>ÀÌ `-'À̸é, Ç¥ÁØ ÀÔ·ÂÀ» ÀнÀ´Ï" +"´Ù.\n" +"\n" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" +" --retry ÆÄÀÏÀ» ¿­ ¶§ Á¢±Ù ºÒ°¡´ÉÇϰųª, ³ªÁß¿¡ \n" +" Á¢±Ù ºÒ°¡´ÉÇØ Áö´õ¶óµµ °è¼ÓÇØ¼­ ÆÄÀÏ ¿­±â¸¦\n" +" ½ÃµµÇÕ´Ï´Ù -- -f¿Í °°ÀÌ ¾²¸é À¯¿ëÇÕ´Ï´Ù\n" +" -c, --bytes=N ¸¶Áö¸· N¹ÙÀÌÆ®¸¦ Ãâ·ÂÇÕ´Ï´Ù\n" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" +" -f, --follow[={name|descriptor}]\n" +" ÆÄÀÏÀÌ ´Ã¾î³²¿¡ ´Ù¶ó Ãß°¡µÈ µ¥ÀÌŸ¸¦ Ãâ·ÂÇÕ´Ï´Ù;\n" +" -f, --follow, --follow=descriptor´Â \n" +" °°Àº ±â´ÉÀ» ÇÕ´Ï´Ù\n" +" -F --follow=name --retry¿Í °°½À´Ï´Ù\n" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" +" -n, --lines=N ¸¶Áö¸· NÁÙÀ» (¸¶Áö¸· %dÁÙ ´ë½Å) Ãâ·ÂÇÕ´Ï´Ù\n" +" --max-unchanged-stats=N\n" +" --follow=name°ú °°ÀÌ ½á¼­, N(±âº»°ª %d)¹ø ÀÌÈÄ·Î\n" +" Å©±â°¡ ¹Ù²îÁö ¾ÊÀº <ÆÄÀÏ>À» ´Ù½Ã ¿­¾î¼­,\n" +" ÆÄÀÏÀÌ Áö¿öÁö°Å³ª À̸§ÀÌ ¹Ù²îÁö ¾Ê¾Ò´ÂÁö °Ë»çÇÕ´Ï" +"´Ù\n" +" (ȸÀüµÈ ·Î±× ÆÄÀÏÀÇ °æ¿ì ÀÌ·¯ÇÕ´Ï´Ù)\n" + +#: src/tail.c:271 +#, fuzzy +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" +" --pid=PID -f¿Í °°ÀÌ ¾²¿©, ÇÁ·Î¼¼½º ID PID°¡ Á×À¸¸é ³¡³³´Ï" +"´Ù\n" +" -q, --quiet, --silent ÆÄÀÏÀ̸§ÀÌ µé¾î ÀÖ´Â Çì´õ¸¦ Ãâ·ÂÇÏÁö ¾Ê½À´Ï´Ù\n" +" -s, --sleep-interval=S -f¿Í °°ÀÌ ½á¼­, °¢°¢À» ¹Ýº¹ÇÒ ¶§¸¶´Ù ¾à \n" +" SÃÊ(±âº»°ª 1ÃÊ)¸¸Å­ Áö¼ÓµÇµµ·Ï ÇÕ´Ï´Ù\n" +" -v, --verbose ¾ðÁ¦³ª ÆÄÀÏÀ̸§ÀÌ µé¾î ÀÖ´Â Çì´õ¸¦ Ãâ·ÂÇÕ´Ï´Ù\n" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" +"\n" +"¸¸¾à N(¹ÙÀÌÆ®¼ö³ª ÁÙÀÇ °³¼ö) ¾Õ¿¡ `+'°¡ ¿À´Â °æ¿ì, °¢ ÆÄÀÏÀÇ \n" +"óÀ½¿¡¼­ºÎÅÍ N¹øÂ°ºÎÅÍ ½ÃÀÛÇÕ´Ï´Ù. ±× ¿ÜÀÇ °æ¿ì ÆÄÀÏÀÇ ¸¶Áö¸· N°³¸¦ \n" +"Ç¥½ÃÇÕ´Ï´Ù. N µÚ¿¡ °öÇϱâ Á¢¹Ì¾î°¡ ¿Ã ¼ö ÀÖ½À´Ï´Ù: b´Â 512, k´Â 1024, mÀº \n" +"1048576 (1¸Þ°¡)ÀÔ´Ï´Ù.\n" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" +"--follow (-f) ¿É¼ÇÀ» ¾²¸é, tailÀº ÆÄÀÏ ±â¼úÀÚ¸¦ µû¶ó´Ù´Ï°Ô µË´Ï´Ù. Áï \n" +"tailµÈ ÆÄÀÏÀÇ À̸§ÀÌ º¯°æµÇ¾ú´õ¶óµµ, tailÀº °è¼ÓÇØ¼­ ±× ³¡À» µû¶ó´Ù´Ï°Ô \n" +"µË´Ï´Ù. " + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" +"ÀÌ·¯ÇÑ ±âº» µ¿ÀÛ ¹æ½ÄÀº ÆÄÀÏ µð½ºÅ©¸³ÅͰ¡ ¾Æ´Ñ ÆÄÀÏ À̸§À» ÃßÀûÇÒ \n" +"¶§´Â ºÎÀûÀýÇÕ´Ï´Ù(¿¹¸¦ µé¾î ·Î±× ȸÀüÀÇ °æ¿ì). ±× °æ¿ì¿¡ `--" +"follow=name'À» \n" +"»ç¿ëÇϽʽÿÀ. ÀÌ·¸°Ô Çϸé tailÀº ±× ÆÄÀÏÀÇ À̸§À» ÃßÀûÇÕ´Ï´Ù. Á¤±âÀûÀ¸·Î \n" +"ÆÄÀÏÀ» ´Ù½Ã ¿­¾î Áö¿öÁ³°Å³ª ´Ù¸¥ ÇÁ·Î±×·¥¿¡ ÀÇÇØ ´Ù½Ã ¸¸µé¾î Á³´ÂÁö ¿©ºÎ¸¦ \n" +"°Ë»çÇÏ°Ô µÉ °ÍÀÔ´Ï´Ù.\n" + +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "%s(fd=%d)À»(¸¦) ´Ý½À´Ï´Ù " + +#: src/tail.c:391 +#, fuzzy, c-format +msgid "%s: cannot seek to offset %s" +msgstr "%s: ¿ÀÇÁ¼Â %s%s·Î(À¸·Î) °¥ ¼ö ¾ø½À´Ï´Ù" + +#: src/tail.c:395 +#, fuzzy, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "%s: »ó´ë ¿ÀÇÁ¼Â %s%s·Î(À¸·Î) °¥ ¼ö ¾ø½À´Ï´Ù" + +#: src/tail.c:400 +#, fuzzy, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "%s: ³¡ »ó´ë ¿ÀÇÁ¼Â %s%s·Î(À¸·Î) °¥ ¼ö ¾ø½À´Ï´Ù" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "`%s'ÀÌ(°¡) Á¢±Ù ºÒ°¡´ÉÇÏ°Ô µÇ¾ú½À´Ï´Ù" + +# Á» ´õ ÀÚ¿¬½º·´°Ô +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "" +"`%s'ÀÌ(°¡) tailÀ» ½ÇÇàÇÒ ¼ö ¾ø´Â ÆÄÀÏ·Î ´ëüµÇ¾ú½À´Ï´Ù; ÀÌ À̸§Àº Æ÷±âÇÕ´Ï´Ù" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "`%s'ÀÌ(°¡) Á¢±Ù °¡´ÉÇÏ°Ô µÇ¾ú½À´Ï´Ù" + +# Á» ´õ ÀÚ¿¬½º·´°Ô +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "`%s'ÀÌ(°¡) ³ªÅ¸³µ½À´Ï´Ù; »õ·Î¿î ÆÄÀÏÀÇ ³¡¿¡ À̾ ³ªÅ¸³µ½À´Ï´Ù" + +# Á» ´õ ÀÚ¿¬½º·´°Ô +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "`%s'ÀÌ(°¡) ´ëüµÇ¾ú½À´Ï´Ù; »õ·Î¿î ÆÄÀÏÀÇ ³¡¿¡ À̾ ´ëüµÇ¾ú½À´Ï´Ù" + +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "%s: ÆÄÀÏÀÌ Àß·ÈÀ½" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "ÆÄÀÏÀÌ ³²¾Æ ÀÖÁö ¾Ê½À´Ï´Ù" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "" +"`%s'Àº(´Â) ÀÌ·± Á¾·ùÀÇ ÆÄÀÏ µÚ¿¡ À̾ ³ª¿Ã ¼ö ¾ø½À´Ï´Ù; ÀÌ À̸§Àº Æ÷±âÇÕ´Ï" +"´Ù" + +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "%c: ºÎÀûÀýÇÑ Á¢µÎ¾î ¹®ÀÚ°¡ °ð ¾ø¾îÁú ¿É¼Ç¿¡ µé¾î ÀÖ½À´Ï´Ù" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"³Ê¹« ÀÎÀÚ°¡ ¸¹½À´Ï´Ù; tail¿¡¼­ °ð ¾ø¾îÁú ¿É¼ÇÀ» »ç¿ëÇÒ ¶§ (%s)\n" +"µÎ °³ ÀÌ»óÀÇ ÆÄÀÏ ÀÎÀÚ°¡ ÀÖÀ» ¼öµµ ÀÖ½À´Ï´Ù. ´ë½Å¿¡ °°Àº ±â´ÉÀÇ -nÀ̳ª -c\n" +"¿É¼ÇÀ» »ç¿ëÇϼ¼¿ä." + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"°æ°í: tailÀÇ °ð ¾ø¾îÁú ¿É¼ÇÀ» »ç¿ëÇØ¼­ (%s) µÎ °³ ÀÌ»óÀÇ \n" +"ÆÄÀÏÀ» »ç¿ëÇÏ´Â °ÍÀº Æ÷ÅͺíÇÏÁö ¾Ê½À´Ï´Ù. °°Àº ±â´ÉÀ» ÇÏ´Â -nÀ̳ª -c\n" +"¿É¼ÇÀ» »ç¿ëÇϼ¼¿ä." + +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "`%s': ÀÌ ¿É¼ÇÀº ¾ø¾îÁ³½À´Ï´Ù; `%s-%c %.*s'À»(¸¦) »ç¿ëÇϽʽÿÀ" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "%s ÀÌ ½Ã½ºÅÛÀÇ ÃÖ´ë ÆÄÀÏ Å©±âº¸´Ù ´õ Å®´Ï´Ù" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "%s: ¿­±âÁß¿¡ ¹Ù²îÁö ¾ÊÀº statÀÇ ÃÖ´ë °³¼ö°¡ ºÎÀûÀýÇÕ´Ï´Ù" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "%s: Áö¼ÓÀûÀÎ Å©±â º¯È­ÀÇ ÃÖ´ë °³¼ö°¡ ºÎÀûÀýÇÕ´Ï´Ù" + +#: src/tail.c:1534 +#, c-format +msgid "%s: invalid PID" +msgstr "%s: ºÎÀûÀýÇÑ PID" + +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: ºÎÀûÀýÇÑ ÃÊ" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "°æ°í: --retry´Â --follow=name ¿É¼ÇÀ» »ç¿ëÇßÀ» °æ¿ì¸¸ À¯È¿ÇÕ´Ï´Ù" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "" +"°æ°í: PID ¹«½Ã; `--pid=PID'´Â --follow ¿É¼Ç°ú °°ÀÌ »ç¿ëÇßÀ» °æ¿ì¸¸ À¯È¿ÇÕ´Ï´Ù" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "°æ°í: `--pid=PID'´Â ÀÌ ½Ã½ºÅÛ¿¡¼­ Áö¿øÇÏÁö ¾Ê½À´Ï´Ù" + +#: src/tee.c:33 +#, fuzzy +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "Richard Stallman ±×¸®°í David MacKenzie" + +#: src/tee.c:64 +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "" + +#: src/test.c:424 +msgid "before -lt" +msgstr "" + +#: src/test.c:432 +msgid "after -lt" +msgstr "" + +#: src/test.c:446 +msgid "before -le" +msgstr "" + +#: src/test.c:453 +msgid "after -le" +msgstr "" + +#: src/test.c:469 +msgid "before -gt" +msgstr "" + +#: src/test.c:476 +msgid "after -gt" +msgstr "" + +#: src/test.c:490 +msgid "before -ge" +msgstr "" + +#: src/test.c:497 +msgid "after -ge" +msgstr "" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "" + +#: src/test.c:526 +msgid "before -ne" +msgstr "" + +#: src/test.c:533 +msgid "after -ne" +msgstr "" + +#: src/test.c:549 +msgid "before -eq" +msgstr "" + +#: src/test.c:556 +msgid "after -eq" +msgstr "" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "" + +#: src/test.c:586 +msgid "-ot does not accept -l\n" +msgstr "" + +#: src/test.c:593 +#, fuzzy +msgid "unknown binary operator" +msgstr "¾Ë ¼ö ¾ø´Â ½Ã½ºÅÛ ¿À·ù" + +#: src/test.c:781 +msgid "after -t" +msgstr "" + +#: src/test.c:979 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"»ç¿ë¹ý: %s [<ÆÄÀÏ>]...\n" +" ȤÀº: %s [<¿É¼Ç>]\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" + +#: src/test.c:1009 +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "" + +#: src/test.c:1125 +#, fuzzy +msgid "too many arguments\n" +msgstr "Àμö°¡ ³Ê¹« ¸¹À½" + +#: src/touch.c:39 +#, fuzzy +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "Paul Rubin ±×¸®°í David MacKenzie" + +#: src/touch.c:164 src/touch.c:179 +#, fuzzy, c-format +msgid "creating %s" +msgstr "ÆÄÀÏ `%s'À»(¸¦) ¸¸µê\n" + +#: src/touch.c:222 +#, fuzzy, c-format +msgid "cannot touch %s" +msgstr "`%s'¿¡¼­ ioctlÀ» ÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/touch.c:228 +#, fuzzy, c-format +msgid "setting times of %s" +msgstr "%sÀÇ ½Ã°£À» À¯ÁöÇÕ´Ï´Ù" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" + +#: src/touch.c:311 src/touch.c:331 +#, fuzzy, c-format +msgid "invalid date format %s" +msgstr "%2$s¿¡ ´ëÇØ ºÎÀûÀýÇÑ ÀÎÀÚ %1$s" + +#: src/touch.c:355 +#, fuzzy +msgid "cannot specify times from more than one source" +msgstr "ÇÑ °¡Áö ÀÌ»óÀÇ ¹æ¹ýÀ¸·Î ºÐÇÒÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "" + +#: src/touch.c:399 +#, fuzzy +msgid "file arguments missing" +msgstr "Àμö°¡ ³Ê¹« ÀûÀ½" + +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>]... <ÁýÇÕ1> [<ÁýÇÕ2>]\n" + +#: src/tr.c:331 +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" +"Ç¥ÁØ ÀÔ·ÂÀ¸·ÎºÎÅÍ ¹®ÀÚµéÀ» ¿Å±â°í, ÁÙÀ̰í, ±×¸®°í/ȤÀº Áö¿ö¼­ Ç¥ÁØ Ãâ·Â¿¡ \n" +"Ãâ·ÂÇÕ´Ï´Ù.\n" +"\n" +" -c, --complement ¸ÕÀú <ÁýÇÕ1>ÀÇ ¿©ÁýÇÕÀ» ÃëÇÕ´Ï´Ù\n" +" -d, --delete <ÁýÇÕ1>ÀÇ ¹®ÀÚµéÀ» Áö¿ì°í, ¿Å±âÁö ¾Ê½À´Ï´Ù\n" +" -s, --squeeze-repeats °°Àº ¹®ÀÚµéÀÇ ¹Ýº¹À» ÇϳªÀÇ ¹®ÀÚ·Î ¸¸µì´Ï´Ù\n" +" <ÁýÇÕ1>¿¡¼­ ÇØ´ç ¹®ÀÚ°¡ ÇÑ ¹ø¸¸ ³ªÅ¸³ª°Ô µË´Ï´Ù\n" +" -t, --truncate-set1 ¸ÕÀú <ÁýÇÕ1>À» <ÁýÇÕ2>ÀÇ ±æÀÌ¿¡ ¸Â°Ô ÀÚ¸¨´Ï´Ù\n" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN 8Áø¼ö °ª NNNÀÇ ¹®ÀÚ (1°³¿¡¼­ 3°³ÀÇ 8Áø¼ö ¼ýÀÚ)\n" +" \\\\ ¹é½½·¡½¬\n" +" \\a ¼Ò¸®³ª´Â BEL\n" +" \\b ¹é½ºÆäÀ̽º\n" +" \\f ÆûÇǵå\n" +" \\n ÁٹٲÞ\n" +" \\r ¸®ÅÏ\n" +" \\t ¼öÆò ÅÇ\n" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" +" \\v ¼öÁ÷ ÅÇ\n" +" CHAR1-CHAR2 CHAR1¿¡¼­ CHAR2±îÁöÀÇ (Ä¿Áö´Â ¼ø¼­´ë·Î) ¸ðµç ¹®ÀÚ\n" +" [CHAR*] <ÁýÇÕ2>¿¡¼­, <ÁýÇÕ1>ÀÇ ±æÀ̸¸Å­ CHAR¸¦ º¹»ç\n" +" [CHAR*REPEAT] CHARÀÇ REPEAT¹ø ¹Ýº¹, REPEAT°¡ 0À¸·Î ½ÃÀÛÇϸé 8Áø¼ö\n" +" [:alnum:] ¸ðµç ¹®ÀÚ ¹× ¼ýÀÚ\n" +" [:alpha:] ¸ðµç ¹®ÀÚ\n" +" [:blank:] ¸ðµç ¼öÆò °ø¹é¹®ÀÚµé\n" +" [:cntrl:] ¸ðµç ÄÁÆ®·Ñ ¹®ÀÚ\n" +" [:digit:] ¸ðµç ¼ýÀÚ\n" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" +" [:graph:] ¸ðµç Ç¥½Ã °¡´ÉÇÑ ¹®ÀÚ, °ø¹éÀº Æ÷ÇÔÇÏÁö ¾ÊÀ½\n" +" [:lower:] ¸ðµç ¼Ò¹®ÀÚ\n" +" [:print:] ¸ðµç Ç¥½Ã °¡´ÉÇÑ ¹®ÀÚ, °ø¹é Æ÷ÇÔ\n" +" [:punct:] ¸ðµç ¹®Àå ±âÈ£ ¹®ÀÚ\n" +" [:space:] ¸ðµç ¼öÆò ¹× ¼öÁ÷ °ø¹é¹®ÀÚ\n" +" [:upper:] ¸ðµç ´ë¹®ÀÚ\n" +" [:xdigit:] ¸ðµç 16Áø¼ö ¼ýÀÚ\n" +" [=CHAR=] CHAR¿Í µ¿ÀÏÇÑ ¸ðµç ¹®ÀÚ\n" + +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" +"\n" +"-d°¡ ÁÖ¾îÁöÁö ¾Ê°í <ÁýÇÕ1>°ú <ÁýÇÕ2>°¡ ÀÖ´Â °æ¿ì¿¡ ¹®ÀÚ¸¦ ¿Å±é´Ï´Ù.\n" +"-t´Â ¿Å±èÀÇ °æ¿ì¿¡¸¸ ¾µ ¼ö ÀÖ½À´Ï´Ù. <ÁýÇÕ2>´Â ¸¶Áö¸· ¹®ÀÚ¸¦\n" +"ÇÊ¿äÇÑ ¸¸Å­ ¹Ýº¹ÇØ <ÁýÇÕ1>ÀÇ ±æÀ̸¸Å­ È®ÀåµË´Ï´Ù. " + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" +"<ÁýÇÕ2>ÀÇ ¹®ÀÚ°¡ ´õ\n" +"¸¹À¸¸é ´õ ¸¹Àº ¹®ÀÚµéÀº ¹«½ÃµË´Ï´Ù. [:lower:]¿Í [:upper]¸¸ÀÌ\n" +"°è¼Ó °ªÀÌ Ä¿Áö¸é¼­ È®ÀåµË´Ï´Ù; ¿Å±èÀÇ °æ¿ì <ÁýÇÕ2>¿¡¼­ ±×·¸°Ô µÇ¸ç,\n" +"ÀÌ´Â ´ë¼Ò¹®ÀÚ º¯È¯À» ÁöÁ¤ÇÒ °æ¿ì¿¡¸¸ »ç¿ëµË´Ï´Ù. " + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" +"¿Å±èÀ̳ª Áö¿ò\n" +"¾î´À °Íµµ ¾Æ´Ñ °æ¿ì¿¡ -s´Â <ÁýÇÕ1>À» »ç¿ëÇÕ´Ï´Ù; ±× ¿Ü¿¡ ÁÙÀÓÀº <ÁýÇÕ2>¸¦\n" +"»ç¿ëÇÏ¸ç ¿Å±èÀ̳ª Áö¿ò ÀÌÈÄ¿¡ ÀϾ´Ï´Ù.\n" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" +"°æ°í: ¾Ö¸ÅÇÑ 8Áø¼ö À̽ºÄÉÀÌÇÁ \\%c%c%cÀº(´Â) 2¹ÙÀÌÆ® ½ÃÄö½º\n" +"\t\\0%c%c, `%c'·Î(À¸·Î) ÇØ¼®µË´Ï´Ù" + +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "¹®ÀÚ¿­ ³¡¿¡ ºÎÀûÀýÇÑ ¿ª½½·¡½¬ À̽ºÄÉÀÌÇÁ" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "ºÎÀûÀýÇÑ ¿ª½½·¡½¬ À̽ºÄÉÀÌÇÁ `\\%c'" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "¹üÀ§ ÁöÁ¤ `%s-%s'Àº(´Â) ¼ø¼­°¡ »çÀü¼ø¼­ÀÇ ¿ª¹æÇâÀÔ´Ï´Ù" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "[c*n] ±¸¹®¿¡ ºÎÀûÀýÇÑ ¹Ýº¹ ȸ¼ö `%s'" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "¹®ÀÚ Å¬·¡½º À̸§ÀÌ ºüÁ³½À´Ï´Ù `[::]'" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "µ¿°Ý Ŭ·¡½º ¹®ÀÚ°¡ ºüÁ³½À´Ï´Ù `[==]'" + +#: src/tr.c:1025 +#, c-format +msgid "invalid character class `%s'" +msgstr "ºÎÀûÀýÇÑ ¹®ÀÚ Å¬·¡½º `%s'" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "%s: µ¿ÀÏ Å¬·¡½º ÇÇ¿¬»êÀÚ´Â ÇϳªÀÇ ¹®ÀÚÀ̾î¾ß ÇÕ´Ï´Ù" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "[c*] ¹Ýº¹ ±¸¼º¹®Àº string1¿¡¼­´Â ¾µ ¼ö ¾ø½À´Ï´Ù" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "[c*] ¹Ýº¹ ±¸¼º¹®Àº string2¿¡¼­ ¿ÀÁ÷ ÇÑ °³¸¸ ¾µ ¼ö ÀÖ½À´Ï´Ù" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "[=c=] Ç¥ÇöÀº ¿Å±èÀÇ °æ¿ì string2¿¡¼­ ¾µ ¼ö ¾ø½À´Ï´Ù" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "ÁýÇÕ1ÀÌ Àß·Á³ª°¡Áö ¾Ê´Â´Ù¸é, string2´Â ºó ÁýÇÕÀ̾´Â ¾È µË´Ï´Ù" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" +"¹®ÀÚ Å¬·¡½ºÀÇ ¿©ÁýÇÕÀ¸·Î ¿Å±æ °æ¿ì¿¡´Â,\n" +"string2´Â ±× µµ¸ÞÀÎÀÇ ¸ðµç ¹®ÀÚ¸¦ ÇϳªÀÇ ¹®ÀÚ·Î ¸ÅÇÎÇØ¾ß ÇÕ´Ï´Ù" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" +"¿Å±èÀÇ °æ¿ì, string2¿¡ ³ªÅ¸³¯ ¼ö ÀÖ´Â ¹®ÀÚ Å¬·¡½º´Â `upper'¿Í \n" +"`lower'»ÓÀÔ´Ï´Ù" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "¹ø¿ªÇÒ ¶§¿¡¸¸ [c*] ±¸¹®ÀÌ ¹®ÀÚ¿­2¿¡ ³ªÅ¸³¯ ¼ö ÀÖ½À´Ï´Ù" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "¹ø¿ªÇÒ ¶§ µÎ ¹®ÀÚ¿­ÀÌ ÁÖ¾îÁ®¾ß ÇÕ´Ï´Ù" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "Áö¿ò°ú ¹Ýº¹ÁÙÀÓÀ» µ¿½Ã¿¡ ÇÏ´Â °æ¿ì µÎ °³ÀÇ stringÀÌ ÁÖ¾îÁ®¾ß ÇÕ´Ï´Ù" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "¹Ýº¹ÁÙÀÓ ¾øÀÌ Áö¿ì´Â °æ¿ì 1°³ÀÇ string¸¸ÀÌ ÁÖ¾îÁ®¾ß ÇÕ´Ï´Ù" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "¹Ýº¹ÁÙÀÓÀÇ °æ¿ì ÃÖ¼Ò 1°³ÀÇ ¹®ÀÚ¿­ÀÌ ÁÖ¾îÁ®¾ß ÇÕ´Ï´Ù" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "¸ÂÁö ¾Ê´Â [:upper:] ±×¸®°í/ȤÀº [:lower:] ±¸¼º" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" +"µ¿Àϼº ¸ÅÇÎÀÌ À߸øµÇ¾ú½À´Ï´Ù; ¿Å±èÀÇ °æ¿ì, string1ÀÇ [:lower:]³ª [:upper:]\n" +"±¸¼ºÀº string2ÀÇ ´ëÀÀµÇ´Â ±¸¼º(¼ø¼­´ë·Î [:upper:]³ª [:lower:])°ú ¸Â¾Æ¾ß \n" +"ÇÕ´Ï´Ù" + +#: src/true.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"»ç¿ë¹ý: %s [¿É¼Ç] [<ÆÄÀÏ>]\n" +"<ÆÄÀÏ>ÀÇ partial Á¤·Ä¿¡ µû¸£´Â ¿ÏÀüÈ÷ Á¤·ÄµÈ ¸®½ºÆ®¸¦ ¾¹´Ï´Ù.\n" +"<ÆÄÀÏ>ÀÌ ÁÖ¾îÁöÁö ¾Ê°Å³ª, <ÆÄÀÏ>ÀÌ `-'À̸é, Ç¥ÁØ ÀÔ·ÂÀ» ÀнÀ´Ï´Ù.\n" +"\n" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "%s: ÀԷ¿¡ ·çÇÁ°¡ µé¾î°¡ ÀÖ½À´Ï´Ù loop:" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "¿ÀÁ÷ ÇÑ °³ÀÇ Àμö¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù" + +#: src/tty.c:63 +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "" + +#: src/uname.c:111 +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" + +#: src/uname.c:226 +#, fuzzy +msgid "cannot get system name" +msgstr "Àӽà ÆÄÀÏÀ» ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"°¢ <ÆÄÀÏ>ÀÇ ÅÇÀ» °ø¹é¹®ÀÚ·Î º¯È¯ÇÏ¿©, Ç¥ÁØ Ãâ·Â¿¡ ¾¹´Ï´Ù.\n" +"<ÆÄÀÏ>ÀÌ ÁÖ¾îÁöÁö ¾Ê°Å³ª, <ÆÄÀÏ>ÀÌ `-'À̸é, Ç¥ÁØ ÀÔ·ÂÀ» ÀнÀ´Ï´Ù.\n" +"\n" + +#: src/unexpand.c:387 +#, fuzzy +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" +" -a, --all (ÃÖÃÊÀÇ °ø¹é¹®ÀÚ°¡ ¾Æ´Ñ) ¸ðµç °ø¹é¹®ÀÚ¸¦ º¯È¯ÇÕ´Ï´Ù\n" +" -t, --tabs=<°³¼ö> ÅÇÀÌ <°³¼ö>¸¸Å­ÀÇ ¹®ÀÚ¸¸Å­ ¶³¾îÁö°Ô ¸¸µì´Ï´Ù\n" +" -t, --tabs=<¸®½ºÆ®> ¸í½ÃÀûÀ¸·Î ÅÇ À§Ä¡¸¦ ½°Ç¥·Î ±¸ºÐÇØ ÁöÁ¤ÇÕ´Ï´Ù\n" + +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "" +"-<¸®½ºÆ®> ¿É¼ÇÀº ¾ø¾îÁ³½À´Ï´Ù; `--first-only -t <¸®½ºÆ®>'¸¦ »ç¿ëÇϽʽÿÀ" + +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "»ç¿ë¹ý: %s [¿É¼Ç]... [<ÀÔ·Â> [<Ãâ·Â>]]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" +"<ÀÔ·Â>(ȤÀº Ç¥ÁØ ÀÔ·Â)¿¡¼­ µ¿ÀÏÇÑ ÁÙÀ» ¸ðµÎ Áö¿ì°í ÇÑ °³¸¸ ³²°Ü ³õ°í\n" +"¸ðµÎ Áö¿ö¼­ <Ãâ·Â>(ȤÀº Ç¥ÁØ Ãâ·Â)¿¡ ¾¹´Ï´Ù.\n" +"\n" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" +" -c, --count ÁÙ ¾Õ¿¡ ¹Ýº¹µÈ ȸ¼ö¸¦ ¾¹´Ï´Ù\n" +" -d, --repeated ¹Ýº¹µÈ ÁÙ¸¸ Ç¥½ÃÇÕ´Ï´Ù\n" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" +" -D, --all-repeated[=delimit-method] ¸ðµç ¹Ýº¹µÈ ÁÙÀ» Ç¥½ÃÇÕ´Ï´Ù\n" +" delimit-method={none(±âº»°ª),prepend,separate)}\n" +" ºó ÁÙÀ» ±âÁØÀ¸·Î ±¸ºÐÇÕ´Ï´Ù.\n" +" -f, --skip-fields=N ù¹øÂ° N°³ÀÇ Çʵ带 ºñ±³ÇÏÁö ¾Ê½À´Ï´Ù\n" +" -i, --ignore-case ºñ±³ÇÒ ¶§ ´ë¼Ò¹®ÀÚÀÇ Â÷À̸¦ ¹«½ÃÇÕ´Ï´Ù\n" +" -s, --skip-chars=N ù¹øÂ° N°³ÀÇ ¹®ÀÚ¸¦ ºñ±³ÇÏÁö ¾Ê½À´Ï´Ù\n" +" -u, --unique À¯ÀÏÇÑ ÁÙ¸¸À» Ç¥½ÃÇÕ´Ï´Ù\n" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr " -w, --check-chars=N ÇÑ ÁÙ¿¡ N°³ÀÇ ¹®ÀÚ±îÁö¸¸ ºñ±³ÇÕ´Ï´Ù\n" + +# ?? +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" +"\n" +"ÇÑ Çʵå´Â °ø¹é»ÓÀ̰í, ±× ´ÙÀ½¿¡ °ø¹é¹®ÀÚ°¡ ¾Æ´Ñ ¹®ÀÚµéÀÌ ÀÖ½À´Ï´Ù.\n" +"¹®ÀÚ°¡ ³ª¿À±â Àü¿¡ Çʵå´Â °Ç³Ê ¶Ý´Ï´Ù\n" + +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "%sÀ»(¸¦) Àд µµÁß ¿À·ù ¹ß»ý" + +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "%s¿¡ ¾²´Â µµÁß ¿À·ù ¹ß»ý" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "ºÒÇÊ¿äÇÑ ÇÇ¿¬»êÀÚ `%s'" + +#: src/uniq.c:473 src/uniq.c:498 +msgid "invalid number of fields to skip" +msgstr "°Ç³Ê ¶Û ÇʵåÀÇ °³¼ö°¡ ºÎÀûÀýÇÕ´Ï´Ù" + +#: src/uniq.c:507 +msgid "invalid number of bytes to skip" +msgstr "°Ç³Ê ¶Û ¹ÙÀÌÆ® ¼ö°¡ ºÎÀûÀýÇÕ´Ï´Ù" + +#: src/uniq.c:516 +msgid "invalid number of bytes to compare" +msgstr "ºñ±³ÇÒ ¹ÙÀÌÆ®ÀÇ °³¼ö°¡ ºÎÀûÀýÇÕ´Ï´Ù" + +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "`-%lu' ¿É¼ÇÀº ¾ø¾îÁ³½À´Ï´Ù; `-f %lu'À»(¸¦) »ç¿ëÇϽʽÿÀ" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "¹Ýº¹µÈ ÁÙÀ» Ç¥½ÃÇϰí ȸ¼ö¸¦ ¼¼´Â °ÍÀº ¹«ÀǹÌÇÕ´Ï´Ù" + +#: src/unlink.c:51 +#, fuzzy, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"»ç¿ë¹ý: %s [<ÆÄÀÏ>]...\n" +" ȤÀº: %s [<¿É¼Ç>]\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" + +#: src/unlink.c:99 +#, fuzzy, c-format +msgid "cannot unlink %s" +msgstr "`%s'¿¡¼­ ioctlÀ» ÇÒ ¼ö ¾ø½À´Ï´Ù" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr "" + +#: src/uptime.c:140 +msgid "am" +msgstr "" + +#: src/uptime.c:140 +msgid "pm" +msgstr "" + +#: src/uptime.c:142 +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#: src/uptime.c:144 +#, fuzzy, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "À߸øµÈ »ç¿ëÀÚ" +msgstr[1] "À߸øµÈ »ç¿ëÀÚ" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr "" + +#: src/uptime.c:191 src/users.c:118 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>]... [<ÆÄÀÏ>]...\n" + +#: src/uptime.c:192 +#, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" + +#: src/users.c:35 +#, fuzzy +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "Jay Lepreau ±×¸®°í David MacKenzie" + +#: src/users.c:119 +#, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "Paul Rubin ±×¸®°í David MacKenzie" + +#: src/wc.c:129 +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" +"°¢ <ÆÄÀÏ>¿¡ ´ëÇÏ¿© ¹ÙÀÌÆ®, ´Ü¾î, ÁÙ ¹Ù²ÞÀÇ °³¼ö¸¦ Ç¥½ÃÇϰí, ÀÌ»óÀÇ ÆÄÀÏÀÌ\n" +"ÁöÁ¤µÉ ¶© Àüü ÇàÀÇ ¼öµµ ÀμâÇÕ´Ï´Ù. ÆÄÀÏÀÌ ÁÖ¾îÁöÁö ¾Ê°Å³ª ÆÄÀÏÀÌ - À̸é\n" +"Ç¥ÁØ ÀÔ·ÂÀ» ÀнÀ´Ï´Ù.\n" +" -c, --bytes ¹®ÀÚÀÇ °³¼ö¸¦ Ç¥½ÃÇÕ´Ï´Ù\n" +" -l, --lines ÇàÀÇ °³¼ö¸¦ Ç¥½ÃÇÕ´Ï´Ù\n" +" -w, --words ´Ü¾îÀÇ °³¼ö¸¦ Ç¥½ÃÇÕ´Ï´Ù\n" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" +" -L, --max-line-length °¡Àå ±ä ÁÙÀÇ ±æÀ̸¦ Ç¥½ÃÇÕ´Ï´Ù\n" +" -w, --words ´Ü¾îÀÇ °³¼ö¸¦ ÀμâÇÕ´Ï´Ù\n" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "" + +#: src/who.c:223 +msgid " old " +msgstr "" + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "" + +#: src/who.c:446 +msgid "clock change" +msgstr "" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" + +#: src/who.c:498 +msgid "NAME" +msgstr "" + +#: src/who.c:498 +msgid "LINE" +msgstr "" + +#: src/who.c:498 +msgid "TIME" +msgstr "" + +#: src/who.c:498 +#, fuzzy +msgid "IDLE" +msgstr "½ÇÆÐ" + +#: src/who.c:498 +msgid "PID" +msgstr "" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "" + +#: src/who.c:499 +msgid "EXIT" +msgstr "" + +#: src/who.c:574 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "»ç¿ë¹ý: %s [<¿É¼Ç>]... <ÆÄÀÏ1> <ÆÄÀÏ2>\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" + +#: src/who.c:711 +#, fuzzy +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "" +"°æ°í: --version-control (-V) ¿É¼ÇÀº ´õÀÌ»ó ¾²ÀÌÁö ¾Ê½À´Ï´Ù. ÀÌ ¿É¼ÇÀº\n" +"ÀÌÈÄ ¸±¸®Áî¿¡¼­´Â »èÁ¦µÉ °ÍÀÔ´Ï´Ù. ´ë½Å --backup=%s À» »ç¿ëÇϼ¼¿ä." + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" + +#: src/whoami.c:53 +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "" + +#: src/yes.c:49 +#, fuzzy, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"»ç¿ë¹ý: %s [<ÆÄÀÏ>]...\n" +" ȤÀº: %s [<¿É¼Ç>]\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" + +#, fuzzy +#~ msgid "\\%c: invalid escape" +#~ msgstr "%s: ºÎÀûÀýÇÑ ÆÐÅÏ" + +#~ msgid "program error" +#~ msgstr "ÇÁ·Î±×·¥ ¿À·ù" + +#~ msgid "stack overflow" +#~ msgstr "½ºÅà ¿À¹öÇ÷οì" + +#, fuzzy +#~ msgid "cannot convert time" +#~ msgstr "`%s'ÀÇ Á¤º¸(stat)¸¦ ¾òÀ» ¼ö ¾ø½À´Ï´Ù" + +#, fuzzy +#~ msgid "cannot format time" +#~ msgstr "fork() ÇÒ ¼ö ¾ø½À´Ï´Ù" + +#, fuzzy +#~ msgid "cannot change to `..' from directory %s" +#~ msgstr "%s µð·ºÅ丮·Î chdirÇÒ ¼ö ¾ø½À´Ï´Ù" + +#, fuzzy +#~ msgid "missing file arguments" +#~ msgstr "Àμö°¡ ³Ê¹« ÀûÀ½" + +#, fuzzy +#~ msgid "environment variable, QUOTING_STYLE" +#~ msgstr "ȯ°æº¯¼ö COLUMNSÀÇ °ª¿¡ ´ÙÀ½ÀÇ À߸øµÈ ÆøÀÌ ÁöÁ¤µÇ¾ú½À´Ï´Ù: %s" + +#~ msgid "%s: is so large that it is not representable" +#~ msgstr "%s: ³Ê¹« Ä¿¼­ Ç¥½ÃÇÒ ¼ö ¾ø½À´Ï´Ù" + +#, fuzzy +#~ msgid "cannot execute %s" +#~ msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#, fuzzy +#~ msgid "cannot run %s" +#~ msgstr "`%s'¿¡¼­ ioctlÀ» ÇÒ ¼ö ¾ø½À´Ï´Ù" + +#, fuzzy +#~ msgid "Try %s --help' for more information.\n" +#~ msgstr "´õ ¸¹Àº Á¤º¸¸¦ º¸·Á¸é `%s --help' ÇϽʽÿÀ.\n" + +#, fuzzy +#~ msgid "preserving permissions for %s" +#~ msgstr "%sÀÇ Çã°¡¸¦ ¹Ù²Ü ¼ö ¾ø½À´Ï´Ù" + +#, fuzzy +#~ msgid "cannot lstat `.'" +#~ msgstr "`%s'¿¡¼­ `.'¿¡ ´ëÇØ lstatÄÝÀ» ÇÒ ¼ö ¾ø½À´Ï´Ù" + +#, fuzzy +#~ msgid "closing directory %s" +#~ msgstr "%s µð·ºÅ丮·Î chdirÇÒ ¼ö ¾ø½À´Ï´Ù" + +#, fuzzy +#~ msgid "%s: remove directory %s? " +#~ msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#, fuzzy +#~ msgid "%s: directory %s is write protected; descend into it anyway? " +#~ msgstr "%s: `%s' µð·ºÅ丮´Â ¾²±â º¸È£µÇ¾ú½À´Ï´Ù. ±×·¡µµ °è¼Ó ÇÒ±î¿ä? " + +#~ msgid "removing all entries of directory %s\n" +#~ msgstr "%sµð·ºÅ丮ÀÇ ¸ðµç ³»¿ëÀ» Áö¿ó´Ï´Ù\n" + +#~ msgid "continue? " +#~ msgstr "°è¼ÓÇÒ±î¿ä? " + +#, fuzzy +#~ msgid "cannot change back to directory %s via `..'" +#~ msgstr "%s µð·ºÅ丮·Î chdirÇÒ ¼ö ¾ø½À´Ï´Ù" + +#, fuzzy +#~ msgid "%s: remove directory %s%s? " +#~ msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#~ msgid " (might be nonempty)" +#~ msgstr " (¿ÏÀüÈ÷ ºñ¿ìÁö ¾Ê¾Ò½À´Ï´Ù)" + +#~ msgid "removing the directory itself: %s\n" +#~ msgstr "%s µð·ºÅ丮 ÀÚ½ÅÀ» Áö¿ó´Ï´Ù\n" + +#, fuzzy +#~ msgid "" +#~ "ERROR: the source file %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after opening it), the numbers\n" +#~ "are %lu/%lu. That means that while this program was running,\n" +#~ "the file was replaced with another one. Skipping this file." +#~ msgstr "" +#~ "¿À·ù: `%s' µð·ºÅ丮´Â %lu/%luÀÇ ÀåÄ¡/³ëµå ¹øÈ£°¡ ÀÖ¾ú´Âµ¥, Áö±ÝÀº\n" +#~ "(chdirÈÄ) `.'ÀÇ ÀåÄ¡/³ëµå ¹øÈ£´Â %lu/%luÀÔ´Ï´Ù. À̰ÍÀº rm ÁøÇàÁß¿¡\n" +#~ "µð·ºÅ丮°¡ ´Ù¸¥ µð·ºÅ丮·Î ¹Ù²î¾ú°Å³ª ´Ù¸¥ µð·ºÅ丮ÀÇ ¸µÅ©·Î ¹Ù²î¾ú´Ù´Â \n" +#~ "ÀǹÌÀÔ´Ï´Ù." + +#, fuzzy +#~ msgid "" +#~ "ERROR: the directory %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after a chdir into it), the numbers for `.'\n" +#~ "are %lu/%lu. That means that while rm was running, the directory\n" +#~ "was replaced with either another directory or a link to another directory." +#~ msgstr "" +#~ "¿À·ù: `%s' µð·ºÅ丮´Â %lu/%luÀÇ ÀåÄ¡/³ëµå ¹øÈ£°¡ ÀÖ¾ú´Âµ¥, Áö±ÝÀº\n" +#~ "(chdirÈÄ) `.'ÀÇ ÀåÄ¡/³ëµå ¹øÈ£´Â %lu/%luÀÔ´Ï´Ù. À̰ÍÀº rm ÁøÇàÁß¿¡\n" +#~ "µð·ºÅ丮°¡ ´Ù¸¥ µð·ºÅ丮·Î ¹Ù²î¾ú°Å³ª ´Ù¸¥ µð·ºÅ丮ÀÇ ¸µÅ©·Î ¹Ù²î¾ú´Ù´Â \n" +#~ "ÀǹÌÀÔ´Ï´Ù." + +#, fuzzy +#~ msgid "" +#~ "ERROR: the directory %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after changing into at least one subdirectory\n" +#~ "and changing back via `..'), the numbers for `.' are %lu/%lu.\n" +#~ "That means that while rm was running, a partially-removed subdirectory\n" +#~ "was moved to a different position in the file system hierarchy." +#~ msgstr "" +#~ "¿À·ù: `%s' µð·ºÅ丮´Â %lu/%luÀÇ ÀåÄ¡/³ëµå ¹øÈ£°¡ ÀÖ¾ú´Âµ¥, Áö±ÝÀº\n" +#~ "(chdirÈÄ) `.'ÀÇ ÀåÄ¡/³ëµå ¹øÈ£´Â %lu/%luÀÔ´Ï´Ù. À̰ÍÀº rm ÁøÇàÁß¿¡\n" +#~ "µð·ºÅ丮°¡ ´Ù¸¥ µð·ºÅ丮·Î ¹Ù²î¾ú°Å³ª ´Ù¸¥ µð·ºÅ丮ÀÇ ¸µÅ©·Î ¹Ù²î¾ú´Ù´Â \n" +#~ "ÀǹÌÀÔ´Ï´Ù." + +#, fuzzy +#~ msgid " or: %s [-acm] MMDDhhmm[YY] FILE... (obsolete)\n" +#~ msgstr " ¶Ç´Â: %s [-acm] MMDDhhmm[YY] FILE... (±¸½Ä)\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr " --version ¹öÀü Á¤º¸¸¦ Ãâ·ÂÇÏ°í ³¡³À´Ï´Ù\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr " --version ¹öÀü Á¤º¸¸¦ Ãâ·ÂÇÏ°í ³¡³À´Ï´Ù\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "¹Ù²ï ºí·°À» µð½ºÅ©¿¡ °­Á¦ÀûÀ¸·Î ¾²°Ô Çϰí, ¼öÆÛºí·°À» °»½ÅÇÕ´Ï´Ù.\n" +#~ "\n" +#~ " --help ÀÌ µµ¿ò¸»À» Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +#~ " --version ¹öÀü Á¤º¸¸¦ Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr " --version ¹öÀü Á¤º¸¸¦ Ãâ·ÂÇÏ°í ³¡³À´Ï´Ù\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr " --version ¹öÀü Á¤º¸¸¦ Ãâ·ÂÇÏ°í ³¡³À´Ï´Ù\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr " --version ¹öÀü Á¤º¸¸¦ Ãâ·ÂÇÏ°í ³¡³À´Ï´Ù\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr " --version ¹öÀü Á¤º¸¸¦ Ãâ·ÂÇÏ°í ³¡³À´Ï´Ù\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr " --version ¹öÀü Á¤º¸¸¦ Ãâ·ÂÇÏ°í ³¡³À´Ï´Ù\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr " --version ¹öÀü Á¤º¸¸¦ Ãâ·ÂÇÏ°í ³¡³À´Ï´Ù\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "¹Ù²ï ºí·°À» µð½ºÅ©¿¡ °­Á¦ÀûÀ¸·Î ¾²°Ô Çϰí, ¼öÆÛºí·°À» °»½ÅÇÕ´Ï´Ù.\n" +#~ "\n" +#~ " --help ÀÌ µµ¿ò¸»À» Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +#~ " --version ¹öÀü Á¤º¸¸¦ Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr " --version ¹öÀü Á¤º¸¸¦ Ãâ·ÂÇÏ°í ³¡³À´Ï´Ù\n" + +#~ msgid "" +#~ "Change the group membership of each FILE to GROUP.\n" +#~ "\n" +#~ " -c, --changes like verbose but report only when a change is " +#~ "made\n" +#~ " --dereference affect the referent of each symbolic link, " +#~ "rather\n" +#~ " than the symbolic link itself\n" +#~ " -h, --no-dereference affect symbolic links instead of any referenced " +#~ "file\n" +#~ " (available only on systems that can change the\n" +#~ " ownership of a symlink)\n" +#~ " -f, --silent, --quiet suppress most error messages\n" +#~ " --reference=RFILE use RFILE's group rather than the specified\n" +#~ " GROUP value\n" +#~ " -R, --recursive operate on files and directories recursively\n" +#~ " -v, --verbose output a diagnostic for every file processed\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "°¢ FILEÀÇ ¼ÒÀ¯ ±×·ì¸¦ GROUPÀ¸·Î ¹Ù²ß´Ï´Ù.\n" +#~ "\n" +#~ " -c, --changes verbose¿Í °°Áö¸¸ º¯°æÇÏ´Â °æ¿ì¿¡¸¸ ¾Ë¸³´Ï´Ù\n" +#~ " --dereference ½Éº¼¸¯ ¸µÅ© ÀÚ½ÅÀÌ ¾Æ´Ï¶ó °¢ ½Éº¼¸¯ ¸µÅ©°¡ ÂüÁ¶" +#~ "ÇÏ´Â\n" +#~ " °Í¿¡ ÀÛ¿ëÇÕ´Ï´Ù\n" +#~ " -h, --no-dereference ÂüÁ¶µÇ´Â ÆÄÀÏ ´ë½Å ½Éº¼¸¯ ¸µÅ©¿¡ ÀÛ¿ëÇÕ´Ï´Ù\n" +#~ " (½Éº¼¸¯ ¸µÅ©ÀÇ ¼ÒÀ¯±ÇÀ» ¹Ù²Ü ¼ö ÀÖ´Â ½Ã½ºÅÛ¿¡¼­" +#~ "¸¸\n" +#~ " °¡´ÉÇÕ´Ï´Ù)\n" +#~ " -f, --silent, --quiet ´ëºÎºÐÀÇ ¿¡·¯¸Þ½ÃÁö¸¦ ³»Áö ¾Ê°Ô ÇÕ´Ï´Ù\n" +#~ " --reference=RFILE GROUP°ªÀ» »ç¿ëÇÏ´Â ´ë½Å RFILEÀÇ ±×·ìÀ» »ç¿ëÇÕ´Ï" +#~ "´Ù\n" +#~ " -R, --recursive ÆÄÀϰú ±× µð·ºÅ丮ÀÇ ¾Æ·¡±îÁö º¯°æÇÕ´Ï´Ù\n" +#~ " -v, --verbose 󸮵Ǵ ¸ðµç ÆÄÀÏ¿¡ ´ëÇØ Áø´Ü ¸Þ½ÃÁö¸¦ Ãâ·ÂÇÕ´Ï" +#~ "´Ù\n" +#~ " --help ÀÌ µµ¿ò¸»À» Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +#~ " --version ¹öÀü Á¤º¸¸¦ Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" + +#, fuzzy +#~ msgid "" +#~ "Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +#~ "\n" +#~ " -c, --changes like verbose but report only when a change is " +#~ "made\n" +#~ " --dereference affect the referent of each symbolic link, " +#~ "rather\n" +#~ " than the symbolic link itself\n" +#~ " -h, --no-dereference affect symbolic links instead of any referenced " +#~ "file\n" +#~ " (available only on systems that can change the\n" +#~ " ownership of a symlink)\n" +#~ " --from=CURRENT_OWNER:CURRENT_GROUP\n" +#~ " change the owner and/or group of each file only " +#~ "if\n" +#~ " its current owner and/or group match those " +#~ "specified\n" +#~ " here. Either may be omitted, in which case a " +#~ "match\n" +#~ " is not required for the omitted attribute.\n" +#~ " -f, --silent, --quiet suppress most error messages\n" +#~ " --reference=RFILE use RFILE's owner and group rather than\n" +#~ " the specified OWNER:GROUP values\n" +#~ " -R, --recursive operate on files and directories recursively\n" +#~ " -v, --verbose output a diagnostic for every file processed\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "°¢ FILEÀÇ ¼ÒÀ¯ÀÚ¸¦ OWNER·Î, ±×·ìÀ» GROUPÀ¸·Î, ¶Ç´Â µÑ ´Ù¸¦ ¹Ù²ß´Ï´Ù.\n" +#~ "\n" +#~ " -c, --changes verbose¿Í °°Áö¸¸ º¯°æÇÒ¶§¸¸ ¾Ë¸³´Ï´Ù\n" +#~ " --dereference ½Éº¼¸¯ ¸µÅ© Àڽź¸´Ù °¢ ½Éº¼¸¯ ¸µÅ©°¡ ÂüÁ¶ÇÏ´Â\n" +#~ " ÆÄÀÏ¿¡°Ô ÀÛ¿ëÇÕ´Ï´Ù\n" +#~ " -h, --no-dereference ÂüÁ¶µÇ´Â ÆÄÀÏ ´ë½Å ½Éº¼¸¯ ¸µÅ©¿¡ ÀÛ¿ëÇÕ´Ï´Ù\n" +#~ " (½Éº¼¸¯ ¸µÅ©ÀÇ ¼ÒÀ¯±ÇÀ» ¹Ù²Ü ¼ö ÀÖ´Â ½Ã½ºÅÛ¿¡¼­" +#~ "¸¸\n" +#~ " »ç¿ë °¡´ÉÇÕ´Ï´Ù)\n" +#~ " --from=CURRENT_OWNER:CURRENT_GROUP\n" +#~ " ÁöÁ¤ÇÑ »ç¿ëÀÚ/±×·ì°ú ÆÄÀÏÀÇ »ç¿ëÀÚ/±×·ìÀÌ ¸Â¾Æ¾ß" +#~ "¸¸\n" +#~ " ±× ÆÄÀÏÀÇ »ç¿ëÀÚ/±×·ìÀ» º¯°æÇÕ´Ï´Ù. ÇÊ¿ä ¾ø´Ù" +#~ "¸é\n" +#~ " µÑ Áß Çϳª¸¦ »ý·«ÇÒ ¼ö ÀÖ½À´Ï´Ù.\n" +#~ " -f, --silent, --quiet ´ëºÎºÐÀÇ ¿¡·¯¸Þ½ÃÁö¸¦ ³»Áö ¾Ê°Ô ÇÕ´Ï´Ù\n" +#~ " --reference=RFILE ¸í½ÃÀûÀÎ OWNER.GROUP °ªÀ» »ç¿ëÇÏ´Â ´ë½Å RFILE" +#~ "ÀÇ\n" +#~ " ¼ÒÀ¯ÀÚ¿Í ±×·ì °ªÀ» »ç¿ëÇÕ´Ï´Ù\n" +#~ " -R, --recursive ÆÄÀϰú ±× µð·ºÅ丮ÀÇ ¾Æ·¡±îÁö º¯°æÇÕ´Ï´Ù\n" +#~ " -v, --verbose 󸮵Ǵ ¸ðµç ÆÄÀÏ¿¡ ´ëÇØ Áø´Ü ¸Þ½ÃÁö¸¦ Ãâ·ÂÇÕ´Ï" +#~ "´Ù\n" +#~ " --help ÀÌ µµ¿ò¸»À» Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +#~ " --version ¹öÀü Á¤º¸¸¦ Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +#~ "\n" +#~ "¼ÒÀ¯ÀÚ¸¦ ÁöÁ¤ÇÏÁö ¾ÊÀº °æ¿ì º¯°æÇÏÁö ¾Ê½À´Ï´Ù. ¶ÇÇÑ ±×·ìµµ ÁöÁ¤ÇÏÁö ¾ÊÀ¸" +#~ "¸é\n" +#~ "¹Ù²îÁö ¾ÊÁö¸¸ ¸¶Ä§Ç¥(.)¸¦ ÁÖ´Â °æ¿ì¿¡´Â ·Î±×ÀνÃÀÇ ±×·ìÀ¸·Î º¯°æÇÕ´Ï´Ù.\n" +#~ "ÄÝ·Ð(:)À» ¸¶Ä§Ç¥(.) ´ë½Å ¾µ ¼ö ÀÖ½À´Ï´Ù.\n" + +#, fuzzy +#~ msgid "" +#~ " -l, --link link files instead of copying\n" +#~ " -L, --dereference always follow symbolic links\n" +#~ " -p same as --preserve=mode,ownership," +#~ "timestamps\n" +#~ " --preserve[=ATTR_LIST] preserve the specified attributes " +#~ "(default:\n" +#~ " mode,ownership,timestamps), if possible\n" +#~ " additional attributes: links, all\n" +#~ " --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +#~ " --parents append source path to DIRECTORY\n" +#~ " -P same as `--no-dereference'\n" +#~ " -r copy recursively, non-directories as " +#~ "files\n" +#~ " WARNING: use -R instead when you might " +#~ "copy\n" +#~ " special files like FIFOs or /dev/zero\n" +#~ " --remove-destination remove each existing destination file " +#~ "before\n" +#~ " attempting to open it (contrast with --" +#~ "force)\n" +#~ msgstr "" +#~ "SOURCE¸¦ DEST·Î º¹»çÇϰųª ¿©·¯°³ÀÇ SOURCE¸¦ DIRECTORY·Î º¹»çÇÕ´Ï´Ù.\n" +#~ "\n" +#~ " -a, --archive -dpR¿É¼Ç°ú °°½À´Ï´Ù\n" +#~ " --backup[=CONTROL] Áö¿ì±â Àü¿¡ ¹é¾÷º»À» ¸¸µì´Ï´Ù.\n" +#~ " -b --backup°ú ºñ½ÁÇѵ¥ Àμö¸¦ ¹ÞÁö ¾Ê´Â´Ù\n" +#~ " -d, --no-dereference ¸µÅ©¸¦ À¯ÁöÇÕ´Ï´Ù\n" +#~ " -f, --force ÀÌ¹Ì Á¸ÀçÇÏ´Â DEST¸¦ Áú¹® ¾øÀÌ »èÁ¦ÇÕ´Ï" +#~ "´Ù.\n" +#~ " -i, --interactive µ¤¾î ¾²±â Àü¿¡ ¿©ºÎ¸¦ ¹¯½À´Ï´Ù\n" +#~ " -l, --link ÆÄÀÏÀ» º¹»çÇÏÁö ¾Ê°í ¸µÅ©ÇÕ´Ï´Ù.\n" +#~ " -p, --preserve °¡´ÉÇÏ´Ù¸é ÆÄÀÏ ¼Ó¼ºÀ» À¯ÁöÇÕ´Ï´Ù.\n" +#~ " -P, --parents ¿øº»ÀÇ °æ·Î¸¦ DIRECTORY¿¡ Ãß°¡ÇÕ´Ï´Ù\n" +#~ " -r ÇÏÀ§ µð·ºÅ丮±îÁö º¹»çÇÕ´Ï´Ù. µð·ºÅ丮°¡\n" +#~ " ¾Æ´Ñ °ÍÀº ÆÄÀÏ·Î ¿©±é´Ï´Ù\n" +#~ " *°æ°í*: FIFO³ª /dev/zero°°Àº Ưº° ÆÄÀÏ" +#~ "À»\n" +#~ " º¹»çÇÒ °æ¿ì¿¡´Â -RÀ» »ç¿ëÇϼ¼¿ä\n" +#~ " --sparse=WHEN ¼º±ä ÆÄÀÏ(sparse file)ÀÇ »ý¼ºÀ» Á¶ÀýÇÕ´Ï" +#~ "´Ù\n" +#~ " -R, --recursive Àç±ÍÀûÀ¸·Î º¹»çÇÕ´Ï´Ù\n" +#~ " --strip-trailing-slashes °¢ SOURCE Àμö¿¡¼­ ³¡ÀÇ ½½·¡½Ã(/)¹®ÀÚ¸¦\n" +#~ " Áö¿ó´Ï´Ù\n" +#~ " -s, --symbolic-link º¹»çÇÏ´Â ´ë½Å ½Éº¼¸¯ ¸µÅ©¸¦ ¸¸µì´Ï´Ù\n" +#~ " -S, --suffix=SUFFIX ÀϹÝÀûÀÎ ¹é¾÷ Á¢¹Ì»ç¸¦ °ãÃľ¹´Ï´Ù\n" +#~ " --target-directory=DIRECTORY ¸ðµç SOURCE ÀÇ Àμö¸¦ DIRECTORY·Î ¿Å±é" +#~ "´Ï´Ù\n" +#~ " -u, --update SOURCEÆÄÀÏÀÌ º¹»çµÉ ÆÄÀϺ¸´Ù »õ°ÍÀ̰ųª\n" +#~ " º¹»çµÉ ÆÄÀÏÀÌ ¾øÀ» ¶§¸¸ º¹»çÇÕ´Ï´Ù\n" +#~ " -v, --verbose ÀÛ¾÷À» Ãâ·ÂÇÕ´Ï´Ù\n" +#~ " -x, --one-file-system ÀÌ ÆÄÀϽýºÅÛ¿¡¼­¸¸ º¹»çÇÕ´Ï´Ù\n" +#~ " --help ÀÌ µµ¿ò¸»À» º¸¿©ÁÖ°í Á¾·áÇÕ´Ï´Ù\n" +#~ " --version ¹öÀü Á¤º¸¸¦ Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +#~ "\n" +#~ "±âº»ÀûÀ¸·Î ¼º±ä SOURCE ÆÄÀÏÀº ±×¸® ÁÁÁö ¾ÊÀº ¹æ¹ýÀ¸·Î ŽÁöÇØ ³»¾î\n" +#~ "´ëÀÀÇÏ´Â DESTÆÄÀϵµ ¶ÇÇÑ ¼º±â°Ô ¸¸µì´Ï´Ù. À̰ÍÀº --sparse=auto\n" +#~ "¿¡ ÀÇÇØ ¼±ÅõǴ ÇൿÀ̸ç, --sparse=always¶ó°í ÁöÁ¤Çϸé SOURCEÆÄÀÏ¿¡\n" +#~ "ÃæºÐÇÑ Å©±âÀÇ 0À¸·Î °è¼ÓµÇ´Â ÁöÁ¡ÀÌ ÀÖÀ» ¶§´Â ¾ðÁ¦³ª ¼º±ä DESTÆÄÀÏÀ»\n" +#~ "¸¸µì´Ï´Ù.\n" +#~ "--sparse=never¶ó°í ÁöÁ¤ÇÏ¸é ¼º±ä ÆÄÀÏÀ» »ý¼ºÇÏÁö ¸øÇÏ°Ô ÇÕ´Ï´Ù.\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "Copy a file, converting and formatting according to the options.\n" +#~ "\n" +#~ " bs=BYTES force ibs=BYTES and obs=BYTES\n" +#~ " cbs=BYTES convert BYTES bytes at a time\n" +#~ " conv=KEYWORDS convert the file as per the comma separated keyword " +#~ "list\n" +#~ " count=BLOCKS copy only BLOCKS input blocks\n" +#~ " ibs=BYTES read BYTES bytes at a time\n" +#~ " if=FILE read from FILE instead of stdin\n" +#~ " obs=BYTES write BYTES bytes at a time\n" +#~ " of=FILE write to FILE instead of stdout\n" +#~ " seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +#~ " skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "BLOCKS and BYTES may be followed by the following multiplicative " +#~ "suffixes:\n" +#~ "xM M, c 1, w 2, b 512, kD 1000, k 1024, MD 1,000,000, M 1,048,576,\n" +#~ "GD 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +#~ "Each KEYWORD may be:\n" +#~ "\n" +#~ " ascii from EBCDIC to ASCII\n" +#~ " ebcdic from ASCII to EBCDIC\n" +#~ " ibm from ASCII to alternated EBCDIC\n" +#~ " block pad newline-terminated records with spaces to cbs-size\n" +#~ " unblock replace trailing spaces in cbs-size records with newline\n" +#~ " lcase change upper case to lower case\n" +#~ " notrunc do not truncate the output file\n" +#~ " ucase change lower case to upper case\n" +#~ " swab swap every pair of input bytes\n" +#~ " noerror continue after read errors\n" +#~ " sync pad every input block with NULs to ibs-size; when used\n" +#~ " with block or unblock, pad with spaces rather than NULs\n" +#~ msgstr "" +#~ "¿É¼Ç¿¡ µû¶ó ÆÄÀÏÀ» º¹»çÇϰí, º¯È¯ÇÏ°í Æ÷¸ËÇÕ´Ï´Ù\n" +#~ "\n" +#~ " bs=BYTES ibs=BYTES¿Í obs=BYTES¸¦ °°ÀÌ ÁöÁ¤ÇÕ´Ï´Ù\n" +#~ " cbs=BYTES Çѹø¿¡ BYTES¸¸Å­ÀÇ ¹ÙÀÌÆ®¸¦ º¯È¯ÇÕ´Ï´Ù\n" +#~ " conv=KEYWORDS ÆÄÀÏÀ» ½°Ç¥(,)·Î ºÐ¸®µÈ Ű¿öµå ¸®½ºÆ®¿¡ µû¶ó º¯È¯ÇÕ´Ï" +#~ "´Ù\n" +#~ " count=BLOCKS BLOCKS°³ÀÇ ÀÔ·Â ºí·°¸¸ ¹Þ½À´Ï´Ù\n" +#~ " ibs=BYTES Çѹø¿¡ BYTES¹ÙÀÌÆ®ÀÇ ÆÄÀÏÀ» ÀнÀ´Ï´Ù\n" +#~ " if=FILE Ç¥ÁØÀÔ·Â ´ë½Å FILE¿¡¼­ ÀнÀ´Ï´Ù\n" +#~ " obs=BYTES Çѹø¿¡ BYTES¹ÙÀÌÆ®¸¦ ÀнÀ´Ï´Ù\n" +#~ " of=FILE Ç¥ÁØÃâ·Â ´ë½Å FILE¿¡ ¾²¸ç, Á¸ÀçÇÏ´Â ÆÄÀÏÀ» ¾ø¾ÖÁö ¾Ê½À´Ï" +#~ "´Ù\n" +#~ " seek=BLOCKS Ãâ·Â ½ÃÀ۽ÿ¡ obsÅ©±âÀÇ ºí·° BLOCKS°³¸¦ ¶Ù¾î³Ñ½À´Ï´Ù\n" +#~ " skip=BLOCKS ÀÔ·Â ½ÃÀ۽ÿ¡ ibsÅ©±âÀÇ ºí·° BLOCKS°³¸¦ ¶Ù¾î³Ñ½À´Ï´Ù\n" +#~ " --help ÀÌ µµ¿ò¸»À» Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +#~ " --version ¹öÀü Á¤º¸¸¦ Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +#~ "\n" +#~ "BYTES´Â ´ÙÀ½ÀÇ ¼ö·®À» ³ªÅ¸³»´Â Á¢¹Ì¾î¿Í ÇÔ²² »ç¿ëÇÒ ¼ö ÀÖ½À´Ï´Ù:\n" +#~ "xM M, c 1, w 2, b 512, kD 1000, k 1024, MD 1,000,000, M 1,048,576,\n" +#~ "GD 1,000,000,000, G 1,073,741,824, ±×¸®°í T, P, E, Z, Yµµ »ç¿ëÇÒ ¼ö ÀÖ½À´Ï" +#~ "´Ù\n" +#~ "(¿¹: c´Â x1¿Í °°°í, w´Â x2¿Í °°À¸¸ç, b´Â x512¿Í °°À¸¸ç k´Â x1024¿Í °°½À´Ï" +#~ "´Ù.\n" +#~ "°¢°¢ÀÇ KEYWORD´Â ´ÙÀ½°ú °°½À´Ï´Ù:\n" +#~ "\n" +#~ " ascii EBCDIC¿¡¼­ ASCII·Î º¯È¯ÇÕ´Ï´Ù\n" +#~ " ebcdic ASCII¿¡¼­ EBCDICÀ¸·Î º¯È¯ÇÕ´Ï´Ù\n" +#~ " ibm ASCII¿¡¼­ ´ëü(alternated) EBCDICÀ¸·Î º¯È¯ÇÕ´Ï´Ù\n" +#~ " block °³Ç๮ÀÚ·Î ³¡³ª´Â ·¹Äڵ带 cbsÅ©±âÀÇ °ø¹é¹®ÀڷΠä¿ó´Ï´Ù\n" +#~ " unblock cbsÅ©±âÀÇ ·¹ÄÚµå µÞºÎºÐÀÇ °ø¹é¹®ÀÚµéÀ» °³Ç๮ÀÚ·Î ¹Ù²ß´Ï´Ù\n" +#~ " lcase ´ë¹®ÀÚ¸¦ ¼Ò¹®ÀÚ·Î ¹Ù²ß´Ï´Ù\n" +#~ " notrunc Ãâ·Â ÆÄÀÏÀÇ ³¡À» Àß¶ó³»Áö ¾Ê½À´Ï´Ù\n" +#~ " ucase ¼Ò¹®ÀÚ¸¦ ´ë¹®ÀÚ·Î ¹Ù²ß´Ï´Ù\n" +#~ " swab ÀÔ·ÂÇÏ´Â µÎ ¹ÙÀÌÆ®ÀÇ ¼ø¼­¸¦ ¹Ù²ß´Ï´Ù\n" +#~ " noerror Àб⠿¡·¯°¡ ³ªµµ °è¼ÓÇÕ´Ï´Ù\n" +#~ " sync ibsÅ©±âÀÇ ÀÔ·Â ·¹Äڵ带 Å©±â°¡ ¸ÂÁö ¾ÊÀ¸¸é NUL·Î ä¿ó´Ï´Ù\n" + +#~ msgid "" +#~ "Show information about the filesystem on which each FILE resides,\n" +#~ "or all filesystems by default.\n" +#~ "\n" +#~ " -a, --all include filesystems having 0 blocks\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " -H, --si likewise, but use powers of 1000 not 1024\n" +#~ " -i, --inodes list inode information instead of block usage\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l, --local limit listing to local filesystems\n" +#~ " -m, --megabytes like --block-size=1048576\n" +#~ " --no-sync do not invoke sync before getting usage info " +#~ "(default)\n" +#~ " -P, --portability use the POSIX output format\n" +#~ " --sync invoke sync before getting usage info\n" +#~ " -t, --type=TYPE limit listing to filesystems of type TYPE\n" +#~ " -T, --print-type print filesystem type\n" +#~ " -x, --exclude-type=TYPE limit listing to filesystems not of type " +#~ "TYPE\n" +#~ " -v (ignored)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "°¢°¢ÀÇ FILEÀÌ ÀÖ´Â ÆÄÀÏ ½Ã½ºÅÛ¿¡ ´ëÇÑ Á¤º¸¸¦ Ãâ·ÂÇÕ´Ï´Ù.\n" +#~ "±âº»°ªÀº ¸ðµç ÆÄÀϽýºÅÛÀÔ´Ï´Ù.\n" +#~ "\n" +#~ " -a, --all 0ºí·°À» °¡Áø ÆÄÀϽýºÅÛµµ Ãâ·Â¿¡ Æ÷ÇÔÇÕ´Ï´Ù\n" +#~ " --block-size=SIZE SIZE ¹ÙÀÌÆ® Å©±âÀÇ ºí·°À» »ç¿ëÇÕ´Ï´Ù\n" +#~ " -h, --human-readable Å©±â¸¦ »ç¶÷ÀÌ ¾Ë±â ½±°Ô(1K, 234M, 2Gµî)Ç¥½ÃÇÕ´Ï" +#~ "´Ù\n" +#~ " -H, --si ºñ½ÁÇÕ´Ï´Ù¸¸ 1024¹è ´ë½Å 1000¹è¸¦ »ç¿ëÇÕ´Ï´Ù\n" +#~ " -i, --inodes ºí·° »ç¿ë ´ë½Å inodeÁ¤º¸¸¦ Ç¥½ÃÇÕ´Ï´Ù\n" +#~ " -k, --kilobytes --block-size=1024¿Í °°½À´Ï´Ù\n" +#~ " -l, --local Áö¿ª ÆÄÀϽýºÅÛ¸¸ ³ª¿­ÇÕ´Ï´Ù\n" +#~ " -m, --megabytes --block-size=1048576°ú °°½À´Ï´Ù\n" +#~ " --no-sync »ç¿ëÁ¤º¸¸¦ ¾ò±â Àü¿¡ sync¸¦ ºÎ¸£Áö ¾Ê½À´Ï´Ù(±âº»" +#~ "°ª)\n" +#~ " -P, --portability POSIX»ç¾çÀ¸·Î Ãâ·ÂÇÕ´Ï´Ù\n" +#~ " --sync »ç¿ëÁ¤º¸¸¦ ¾ò±â Àü¿¡ sync¸¦ ºÎ¸¨´Ï´Ù\n" +#~ " -t, --type=TYPE TYPEÇüÅÂÀÇ ÆÄÀϽýºÅÛ¿¡ ´ëÇÑ Á¤º¸¸¸ Ç¥½ÃÇÕ´Ï´Ù\n" +#~ " -T, --print-type ÆÄÀϽýºÅÛ ÇüŸ¦ Ãâ·ÂÇÕ´Ï´Ù\n" +#~ " -x, --exclude-type=TYPE TYPEÇüŰ¡ ¾Æ´Ñ ÆÄÀϽýºÅÛ Á¤º¸¸¸ Ç¥½ÃÇÕ´Ï´Ù\n" +#~ " -v (¹«½ÃÇÕ´Ï´Ù)\n" +#~ " --help ÀÌ µµ¿ò¸»À» Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +#~ " --version ¹öÀü Á¤º¸¸¦ Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" + +#~ msgid "" +#~ "Summarize disk usage of each FILE, recursively for directories.\n" +#~ "\n" +#~ " -a, --all write counts for all files, not just directories\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -b, --bytes print size in bytes\n" +#~ " -c, --total produce a grand total\n" +#~ " -D, --dereference-args dereference PATHs when symbolic link\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " -H, --si likewise, but use powers of 1000 not 1024\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l, --count-links count sizes many times if hard linked\n" +#~ " -L, --dereference dereference all symbolic links\n" +#~ " -m, --megabytes like --block-size=1048576\n" +#~ " -S, --separate-dirs do not include size of subdirectories\n" +#~ " -s, --summarize display only a total for each argument\n" +#~ " -x, --one-file-system skip directories on different filesystems\n" +#~ " -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +#~ "FILE.\n" +#~ " --exclude=PAT Exclude files that match PAT.\n" +#~ " --max-depth=N print the total for a directory (or file, with --" +#~ "all)\n" +#~ " only if it is N or fewer levels below the " +#~ "command\n" +#~ " line argument; --max-depth=0 is the same as\n" +#~ " --summarize\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "µð·ºÅ丮¸¦ µû¶ó °¢ FILEÀÇ µð½ºÅ© »ç¿ëÀ» ¿ä¾àÇÕ´Ï´Ù.\n" +#~ "\n" +#~ " -a, --all µð·ºÅ丮¸¸ÀÌ ¾Æ´Ï°í °¢ ÆÄÀÏÀ» ¸ðµÎ ¼Á´Ï´Ù\n" +#~ " -b, --bytes Å©±â¸¦ ¹ÙÀÌÆ®·Î Ç¥½ÃÇÕ´Ï´Ù\n" +#~ " --block-size=SIZE SIZE ¹ÙÀÌÆ® Å©±âÀÇ ºí·°À» »ç¿ëÇÕ´Ï´Ù\n" +#~ " -c, --total ÃÑÇÕÀ» °è»êÇÕ´Ï´Ù\n" +#~ " -D, --dereference-args ½Éº¼¸¯ ¸µÅ©ÀÇ °æ¿ì °æ·Î¸¦ µû¶ó°©´Ï´Ù\n" +#~ " -h, --human-readable Å©±â¸¦ »ç¶÷ÀÌ ¾Ë±â ½±°Ô(1K, 234M, 2Gµî)Ç¥½ÃÇÕ´Ï" +#~ "´Ù\n" +#~ " -k, --kilobytes --block-size=1024¿Í °°½À´Ï´Ù\n" +#~ " -l, --count-links Çϵ帵ũÀÇ °æ¿ì¿¡µµ ¸Å¹ø Å©±â¸¦ °è»êÇÕ´Ï´Ù\n" +#~ " -L, --dereference ¸ðµç ½Éº¼¸¯ ¸µÅ©¸¦ µû¶ó°©´Ï´Ù\n" +#~ " -m, --megabytes --block-size=1048576°ú °°½À´Ï´Ù\n" +#~ " -S, --separate-dirs ÇÏÀ§ µð·ºÅ丮ÀÇ Å©±â´Â Æ÷ÇÔÇÏÁö ¾Ê½À´Ï´Ù\n" +#~ " -s, --summarize °¢ Àμö¿¡ ´ëÇØ¼­¸¸ Çհ踦 Ç¥½ÃÇÕ´Ï´Ù\n" +#~ " -x, --one-file-system ´Ù¸¥ ÆÄÀϽýºÅÛ¿¡ ÀÖ´Â µð·ºÅ丮´Â Á¦¿ÜÇÕ´Ï´Ù\n" +#~ " -X FILE, --exclude-from=FILE FILE ¾ÈÀÇ ÆÐÅÏ¿¡ ÀÏÄ¡ÇÏ´Â ÆÄÀÏÀº Á¦¿ÜÇÕ´Ï" +#~ "´Ù\n" +#~ " --exclude=PAT PATÆÐÅÏ¿¡ ÀÏÄ¡ÇÏ´Â ÆÄÀÏÀº Á¦¿ÜÇÕ´Ï´Ù.\n" +#~ " --max-depth=N µð·ºÅ丮(--with all¿É¼ÇÀÇ °æ¿ì ÆÄÀϵµ)ÀÇ ±íÀ̰¡\n" +#~ " Nº¸´Ù ÀÛÀº °Í¿¡ ´ëÇØ¼­¸¸ Çհ踦 Ç¥½ÃÇÕ´Ï´Ù;\n" +#~ " --max-depth=0 ´Â --summarize¿Í °°½À´Ï´Ù\n" +#~ " --help ÀÌ µµ¿ò¸»À» Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +#~ " --version ¹öÀü Á¤º¸¸¦ Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" + +#~ msgid "" +#~ "In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +#~ "the existing DIRECTORY, while setting permission modes and owner/group.\n" +#~ "In the third format, create all components of the given DIRECTORY(ies).\n" +#~ "\n" +#~ " --backup[=CONTROL] make a backup of each existing destination file\n" +#~ " -b like --backup but does not accept an argument\n" +#~ " -c (ignored)\n" +#~ " -d, --directory treat all arguments as directory names; create all\n" +#~ " components of the specified directories\n" +#~ " -D create all leading components of DEST except the " +#~ "last,\n" +#~ " then copy SOURCE to DEST; useful in the 1st " +#~ "format\n" +#~ " -g, --group=GROUP set group ownership, instead of process' current " +#~ "group\n" +#~ " -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-" +#~ "xr-x\n" +#~ " -o, --owner=OWNER set ownership (super-user only)\n" +#~ " -p, --preserve-timestamps apply access/modification times of SOURCE " +#~ "files\n" +#~ " to corresponding destination files\n" +#~ " -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +#~ " -S, --suffix=SUFFIX override the usual backup suffix\n" +#~ " -v, --verbose print the name of each directory as it is created\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "óÀ½ µÎ°¡Áö Çü½Ä¿¡¼­´Â SOURCE¸¦ DEST·Î º¹»çÇϰųª ¿©·¯°³ÀÇ SOURCE¸¦\n" +#~ "±âÁ¸ÀÇ DIRECTORY·Î º¹»çÇϸç, ÆÄÀÏ ±ÇÇÑÀ̳ª ¼ÒÀ¯ÀÚ/±×·ìÀ» ¼³Á¤ÇÒ ¼ö ÀÖ½À´Ï" +#~ "´Ù\n" +#~ "¼¼¹øÂ° Çü½Ä¿¡¼­´Â ÁÖ¾îÁø DIRECTORYÀÇ ¸ðµç ±¸¼º ¿ä¼Ò¸¦ ¸¸µì´Ï´Ù\n" +#~ "\n" +#~ " --backup[=CONTROL] Áö¿ì±â Àü¿¡ ¹é¾÷º»À» ¸¸µì´Ï´Ù\n" +#~ " -b --backup°ú ºñ½ÁÇѵ¥ Àμö¸¦ ¹ÞÁö ¾Ê´Â´Ù\n" +#~ " -c (¹«½ÃÇÕ´Ï´Ù)\n" +#~ " -d, --directory ¸ðµç Àμö¸¦ µð·ºÅ丮 À̸§À¸·Î Ãë±ÞÇÕ´Ï´Ù; ÁöÁ¤" +#~ "µÈ\n" +#~ " µð·ºÅ丮µéÀÇ ¸ðµç ±¸¼º ¿ä¼Ò¸¦ ¸¸µì´Ï´Ù\n" +#~ " -D ¸¶Áö¸· °ÍÀ» Á¦¿ÜÇÑ ¸ðµç DESTÀÇ ±¸¼º ¿ä¼Ò¸¦ ¸¸µé" +#~ "°í\n" +#~ " SOURCE¸¦ DEST·Î º¹»çÇÕ´Ï´Ù. ù¹øÂ° Çü½Ä¿¡ À¯¿ëÇÕ" +#~ "´Ï´Ù\n" +#~ " -g, --group=GROUP ÇÁ·Î¼¼½ºÀÇ ÇöÀç ±×·ìÀÌ ¾Æ´Ñ ¼ÒÀ¯ÀÚ ±×·ìÀ» ÁöÁ¤ÇÕ" +#~ "´Ï´Ù\n" +#~ " -m, --mode=MODE rwxr-xr-x´ë½ÅÀÇ ¸ðµåÀ» ÁöÁ¤ÇÕ´Ï´Ù(chmod¿Í °°ÀÌ)\n" +#~ " -o, --owner=OWNER ¼ÒÀ¯ÀÚ¸¦ ÁöÁ¤ÇÕ´Ï´Ù(°ü¸®ÀÚ¿ë)\n" +#~ " -p, --preserve-timestamps ÇØ´ç ¸ñÀû ÆÄÀÏ¿¡ SOURCEÆÄÀÏÀÇ Á¢±Ù/º¯°æ\n" +#~ " ½Ã°£À» Àû¿ëÇÕ´Ï´Ù\n" +#~ " -s, --strip ½Éº¼ Å×À̺íÀ» »èÁ¦ÇÕ´Ï´Ù(ù¹øÂ°¿Í µÎ¹øÂ° Çü½Ä" +#~ "¸¸)\n" +#~ " -S, --suffix=SUFFIX ÀϹÝÀûÀÎ ¹é¾÷ Á¢¹Ì»ç¸¦ °ãÃÄ ¾¹´Ï´Ù\n" +#~ " -v, --verbose µð·ºÅ丮°¡ ¸¸µé¾îÁú¶§ ±× À̸§À» Ãâ·ÂÇÕ´Ï´Ù\n" +#~ " --help ÀÌ µµ¿ò¸»À» Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +#~ " --version ¹öÀü Á¤º¸¸¦ Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +#~ "\n" + +#~ msgid "" +#~ "Create a link to the specified TARGET with optional LINK_NAME.\n" +#~ "If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +#~ "created in the current directory. When using the second form with more\n" +#~ "than one TARGET, the last argument must be a directory; create links\n" +#~ "in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +#~ "links with --symbolic. When creating hard links, each TARGET must " +#~ "exist.\n" +#~ "\n" +#~ " --backup[=CONTROL] make a backup of each existing destination " +#~ "file\n" +#~ " -b like --backup but does not accept an " +#~ "argument\n" +#~ " -d, -F, --directory hard link directories (super-user only)\n" +#~ " -f, --force remove existing destination files\n" +#~ " -n, --no-dereference treat destination that is a symlink to a\n" +#~ " directory as if it were a normal file\n" +#~ " -i, --interactive prompt whether to remove destinations\n" +#~ " -s, --symbolic make symbolic links instead of hard links\n" +#~ " -S, --suffix=SUFFIX override the usual backup suffix\n" +#~ " --target-directory=DIRECTORY specify the DIRECTORY in which to " +#~ "create\n" +#~ " the links\n" +#~ " -v, --verbose print name of each file before linking\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "TARGET¿¡¼­ ¿É¼ÇÀ¸·Î ÁöÁ¤µÈ LINK_NAMEÀ¸·Î ¸µÅ©¸¦ ¸¸µì´Ï´Ù. Çϳª ÀÌ»óÀÇ " +#~ "TARGETÀÌ\n" +#~ "ÀÖ´Ù¸é ¸¶Áö¸· Àμö´Â µð·ºÅ丮°¡ µË´Ï´Ù; ¶Ç ÇϳªÀÇ ¹æ¹ýÀº °¢ TARGETÀÇ\n" +#~ "¸µÅ©¸¦ DIRECTORY¿¡ ¸¸µì´Ï´Ù. ±âº»ÀûÀ¸·Î Çϵ帵ũ¸¦ ¸¸µé°í, ½Éº¼¸¯\n" +#~ "¸µÅ©´Â --symbolicÀ¸·Î ¸¸µì´Ï´Ù. Çϵ帵ũ¸¦ ¸¸µé ¶§¿¡´Â TARGETÀÌ ¹Ýµå½Ã\n" +#~ "Á¸ÀçÇØ¾ß ÇÕ´Ï´Ù.\n" +#~ "\n" +#~ " --backup[=CONTROL] Áö¿ì±â Àü¿¡ ¹é¾÷º»À» ¸¸µì´Ï´Ù\n" +#~ " -b --backup°ú ºñ½ÁÇѵ¥ Àμö¸¦ ¹ÞÁö ¾Ê´Â´Ù\n" +#~ " -d, -F, --directory µð·ºÅ丮¸¦ Çϵ帵ũÇÕ´Ï´Ù(°ü¸®ÀÚ¸¸)\n" +#~ " -f, --force Á¸ÀçÇÏ´Â DEST¸¦ Áö¿ó´Ï´Ù\n" +#~ " -n, --no-dereference µð·ºÅ丮·ÎÀÇ ½Éº¼¸¯ ¸µÅ©¸¦ ÀÏ¹Ý ÆÄÀÏÀΰÍó" +#~ "·³\n" +#~ " ó¸®ÇÕ´Ï´Ù\n" +#~ " -i, --interactive DEST¸¦ Áö¿ï °ÍÀÎÁö ¹°¾îº¾´Ï´Ù\n" +#~ " -s, --symbolic Çϵ帵ũ ´ë½Å ½Éº¼¸¯ ¸µÅ©¸¦ ÇÕ´Ï´Ù\n" +#~ " -S, --suffix=SUFFIX ÀϹÝÀûÀÎ ¹é¾÷ Á¢¹Ì»ç¸¦ °ãÃÄ ¾¹´Ï´Ù\n" +#~ " --target-directory=DIRECTORY ¸µÅ©¸¦ »ý¼ºÇÒ µð·ºÅ丮¸¦ ÁöÁ¤ÇÕ´Ï´Ù\n" +#~ " -v, --verbose ¸µÅ©Çϱâ Àü¿¡ °¢°¢ÀÇ ÆÄÀÏÀ̸§À» Ãâ·ÂÇÕ´Ï" +#~ "´Ù\n" +#~ " --help ÀÌ µµ¿ò¸»À» Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +#~ " --version ¹öÀü Á¤º¸¸¦ Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "List information about the FILEs (the current directory by default).\n" +#~ "Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +#~ "\n" +#~ " -a, --all do not hide entries starting with .\n" +#~ " -A, --almost-all do not list implied . and ..\n" +#~ " -b, --escape print octal escapes for nongraphic " +#~ "characters\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -B, --ignore-backups do not list implied entries ending with ~\n" +#~ " -c with -lt: sort by, and show, ctime (time of " +#~ "last\n" +#~ " modification of file status information)\n" +#~ " with -l: show ctime and sort by name\n" +#~ " otherwise: sort by ctime\n" +#~ " -C list entries by columns\n" +#~ " --color[=WHEN] control whether color is used to distinguish " +#~ "file\n" +#~ " types. WHEN may be `never', `always', or " +#~ "`auto'\n" +#~ " -d, --directory list directory entries instead of contents\n" +#~ " -D, --dired generate output designed for Emacs' dired " +#~ "mode\n" +#~ " -f do not sort, enable -aU, disable -lst\n" +#~ " -F, --classify append indicator (one of */=@|) to entries\n" +#~ " --format=WORD across -x, commas -m, horizontal -x, long -" +#~ "l,\n" +#~ " single-column -1, verbose -l, vertical -C\n" +#~ " --full-time like -l --time-style=full-iso\n" +#~ msgstr "" +#~ "FILE¿¡ ´ëÇÑ Á¤º¸¸¦ Ãâ·ÂÇÕ´Ï´Ù(±âº»°ªÀº ÇöÀçµð·ºÅ丮).\n" +#~ "-cftuSUXÀ̳ª --sort¿É¼ÇÀÌ ÁöÁ¤µÇÁö ¾ÊÀ¸¸é ±âº»ÀûÀ¸·Î ¾ËÆÄºª ¼øÀ¸·Î Á¤·ÄÇÕ" +#~ "´Ï´Ù.\n" +#~ "\n" +#~ " -a, --all .À¸·Î ½ÃÀÛÇÏ´Â ¸ñ·Ï±îÁö ¸ðµÎ Ãâ·ÂÇÕ´Ï´Ù\n" +#~ " -A, --almost-all -a¿Í °°Áö¸¸ .°ú ..Àº Ãâ·ÂÇÏÁö ¾Ê½À´Ï´Ù\n" +#~ " -b, --escape Ãâ·ÂÇÒ ¼ö ¾ø´Â ¹®ÀÚ´Â 8Áø¼ö·Î Ç¥±âÇÕ´Ï´Ù\n" +#~ " --block-size=SIZE SIZE ¹ÙÀÌÆ® Å©±âÀÇ ºí·°À» »ç¿ëÇÕ´Ï´Ù\n" +#~ " -B, --ignore-backups ~À¸·Î ³¡³ª´Â ¸ñ·ÏÀº Ãâ·ÂÇÏÁö ¾Ê½À´Ï´Ù\n" +#~ " -c »ý¼º½Ã°£´ÜÀ§·Î Á¤·ÄÇÕ´Ï´Ù. -l¿É¼Ç°ú °°ÀÌ ¾²" +#~ "¸é\n" +#~ " »ý¼º½Ã°£À» Ãâ·ÂÇÕ´Ï´Ù\n" +#~ " -C ¿­´ÜÀ§·Î ¸ñ·ÏÀ» Ãâ·ÂÇÕ´Ï´Ù\n" +#~ " --color[=WHEN] ÆÄÀÏÀ» ±¸ºÐÇϱâ À§ÇØ »öÀ» ¾µ °ÍÀÎÁö Á¶Á¤ÇÕ´Ï" +#~ "´Ù.\n" +#~ " WHENÀº `never', `always', ¶Ç´Â `auto'ÀÔ´Ï" +#~ "´Ù.\n" +#~ " -d, --directory µð·ºÅ丮ÀÇ ³»¿ë ´ë½Å µð·ºÅ丮¸¦ Ãâ·ÂÇÕ´Ï´Ù\n" +#~ " -D, --dired EmacsÀÇ dired¸ðµå¿¡ ¾Ë¸Â´Â Ãâ·ÂÀ» ÇÕ´Ï´Ù\n" +#~ " -f Á¤·ÄÇÏÁö ¾Ê½À´Ï´Ù(-aU¸¦ ÁÖ°í -lst¸¦ »®´Ï" +#~ "´Ù).\n" +#~ " -F, --classify °¢ ¸ñ·ÏÀ» ±¸ºÐÇϱâ À§ÇÑ ¹®ÀÚ¸¦ µÚ¿¡ ºÙÀÔ´Ï" +#~ "´Ù\n" +#~ " --format=WORD across -x, comma -m, horizontal -x, long -" +#~ "l,\n" +#~ " single-column -1, verbose -l, vertical -C\n" +#~ " --full-time ³¯Â¥¿Í ½Ã°¢À» ÀÚ¼¼È÷ Ãâ·ÂÇÕ´Ï´Ù\n" + +#, fuzzy +#~ msgid "" +#~ " -g like -l, but do not list owner\n" +#~ " -G, --no-group inhibit display of group information\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " --si likewise, but use powers of 1000 not 1024\n" +#~ " -H, --dereference-command-line follow symbolic links on the command " +#~ "line\n" +#~ " --indicator-style=WORD append indicator with style WORD to entry " +#~ "names:\n" +#~ " none (default), classify (-F), file-type (-" +#~ "p)\n" +#~ " -i, --inode print index number of each file\n" +#~ " -I, --ignore=PATTERN do not list implied entries matching shell " +#~ "PATTERN\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l use a long listing format\n" +#~ " -L, --dereference when showing file information for a " +#~ "symbolic\n" +#~ " link, show information for the file the " +#~ "link\n" +#~ " references rather than for the link " +#~ "itself\n" +#~ " -m fill width with a comma separated list of " +#~ "entries\n" +#~ msgstr "" +#~ " -g (¹«½ÃÇÕ´Ï´Ù)\n" +#~ " -G, --no-group ±×·ìÁ¤º¸ Ãâ·ÂÀ» ÇÏÁö ¾Ê½À´Ï´Ù\n" +#~ " -h, --human-readable Å©±â¸¦ »ç¶÷ÀÌ ¾Ë±â ½±°Ô(1K, 234M, 2Gµî)Ç¥½ÃÇÕ" +#~ "´Ï´Ù\n" +#~ " -H, --si ºñ½ÁÇÕ´Ï´Ù¸¸ 1024¹è ´ë½Å 1000¹è¸¦ »ç¿ëÇÕ´Ï" +#~ "´Ù\n" +#~ " --indicator-style=WORD WORD ½ºÅ¸ÀÏ·Î ÆÄÀÏ ±¸ºÐÀ» ÇØ ÁÝ´Ï´Ù. °¡´ÉÇÑ " +#~ "°ªÀº:\n" +#~ " none (±âº»°ª), Á¾·ù (-F), ÆÄÀÏÇü½Ä (-p)\n" +#~ " -i, --inode °¢ ÆÄÀÏÀÇ i-node¹øÈ£¸¦ Ãâ·ÂÇÕ´Ï´Ù\n" +#~ " -I, --ignore=PATTERN ¼Ð PATTERN¿Í ÀÏÄ¡ÇÏ´Â ¸ñ·ÏÀº Ãâ·ÂÇÏÁö ¾Ê½À´Ï" +#~ "´Ù\n" +#~ " -k, --kilobytes --block-size=1024¿Í °°½À´Ï´Ù\n" +#~ " -l ±ä Ãâ·Â Æ÷¸ËÀ» »ç¿ëÇÕ´Ï´Ù\n" +#~ " -L, --dereference ½Éº¼¸¯ ¸µÅ©¸¦ µû¶ó°¡ ¸µÅ©µÈ ¸ñ·ÏÀ» Ãâ·ÂÇÕ´Ï" +#~ "´Ù\n" +#~ " -m Ç౸ºÐ ¾øÀÌ ½°Ç¥·Î ±¸ºÐµÇ´Â ¸ñ·Ï Ãâ·ÂÀ» ÇÕ´Ï" +#~ "´Ù\n" +#~ " -n, --numeric-uid-gid À̸§ ´ë½Å ¼ýÀÚ·Î µÈ UID¿Í GID¸¦ Ãâ·ÂÇÕ´Ï´Ù\n" +#~ " -N, --literal ¸ñ·Ï À̸§À» ±×´ë·Î Ãâ·ÂÇÕ´Ï´Ù\n" +#~ " (ÄÜÆ®·Ñ ¹®ÀÚµµ Ưº°È÷ ó¸®ÇÏÁö ¾Ê½À´Ï´Ù)\n" +#~ " -o ±×·ìÁ¤º¸ ¾øÀÌ ±ä Ãâ·Â Æ÷¸ËÀ» »ç¿ëÇÕ´Ï´Ù\n" +#~ " -p, --file-type °¢ ¸ñ·ÏÀ» ±¸ºÐÇϱâ À§ÇÑ ¹®ÀÚ(/=@|)¸¦ µÚ¿¡ ºÙ" +#~ "ÀÔ´Ï´Ù\n" +#~ " -q, --hide-control-chars Ãâ·ÂÇÒ ¼ö ¾ø´Â ¹®ÀÚ ´ë½Å ?À» Ãâ·ÂÇÕ´Ï´Ù\n" +#~ " --show-control-chars Ãâ·ÂÇÒ ¼ö ¾ø´Â ¹®ÀÚ¸¦ ±×´ë·Î º¸¿©ÁÝ´Ï´Ù(±âº»" +#~ "°ª)\n" +#~ " -Q, --quote-name ¸ñ·Ï À̸§À» Å«µû¿ÈÇ¥ ¾È¿¡ ³Ö½À´Ï´Ù\n" +#~ " --quoting-style=WORD WORDÀÇ ÀÎ¿ë ½ºÅ¸ÀÏÀ» »ç¿ëÇÕ´Ï´Ù. °¡´ÉÇÑ °ª" +#~ "Àº:\n" +#~ " literal, locale, shell, shell-always, c, " +#~ "escape\n" +#~ " -r, --reverse Á¤·Ä¼ø¼­¸¦ °Å²Ù·Î ÇÕ´Ï´Ù\n" +#~ " -R, --recursive ¼­ºêµð·ºÅ丮±îÁö Ãâ·ÂÇÕ´Ï´Ù\n" +#~ " -s, --size °¢ ÆÄÀÏÀÇ ºí·Ï Å©±â¸¦ Ãâ·ÂÇÕ´Ï´Ù\n" + +#, fuzzy +#~ msgid "" +#~ " -S sort by file size\n" +#~ " --sort=WORD extension -X, none -U, size -S, time -t,\n" +#~ " version -v\n" +#~ " status -c, time -t, atime -u, access -u, use " +#~ "-u\n" +#~ " --time=WORD show time as WORD instead of modification " +#~ "time:\n" +#~ " atime, access, use, ctime or status; use\n" +#~ " specified time as sort key if --sort=time\n" +#~ " --time-style=WORD show times using style WORD:\n" +#~ " full-iso, iso, locale, posix-iso\n" +#~ " -t sort by modification time\n" +#~ " -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +#~ " -u with -lt: sort by, and show, access time\n" +#~ " with -l: show access time and sort by " +#~ "name\n" +#~ " otherwise: sort by access time\n" +#~ " -U do not sort; list entries in directory " +#~ "order\n" +#~ " -v sort by version\n" +#~ " -w, --width=COLS assume screen width instead of current " +#~ "value\n" +#~ " -x list entries by lines instead of by columns\n" +#~ " -X sort alphabetically by entry extension\n" +#~ " -1 list one file per line\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "By default, color is not used to distinguish types of files. That is\n" +#~ "equivalent to using --color=none. Using the --color option without the\n" +#~ "optional WHEN argument is equivalent to using --color=always. With\n" +#~ "--color=auto, color codes are output only if standard output is " +#~ "connected\n" +#~ "to a terminal (tty).\n" +#~ msgstr "" +#~ " -S ÆÄÀÏÅ©±â´ÜÀ§·Î Á¤·ÄÇÕ´Ï´Ù\n" +#~ " --sort=WORD extension -X, none -U, size -S, time -t,\n" +#~ " version -v\n" +#~ " --time=WORD º¯°æ½Ã°£ ´ë½Å ½Ã°£À» WORD·Î Ç¥½ÃÇÕ´Ï´Ù:\n" +#~ " atime, access, use, ctime, status\n" +#~ " --sort=timeÀ̸é ÁöÁ¤µÈ °ªÀÌ Á¤·Ä ±âÁØÀÔ´Ï" +#~ "´Ù\n" +#~ " -t º¯°æ½Ã°£´ÜÀ§·Î Á¤·ÄÇÕ´Ï´Ù.\n" +#~ " -T, --tabsize=COLS 8´ë½Å ÅÇ Å©±â¸¦ COLS·Î °¡Á¤ÇÕ´Ï´Ù\n" +#~ " -u ÃÖÈÄÁ¢±Ù½Ã°£¿¡ µû¶ó Á¤·ÄÇÕ´Ï´Ù.\n" +#~ " -l°ú ÇÔ²² »ç¿ëÇϸé Á¢±Ù½Ã°£À» º¸¿©ÁÝ´Ï´Ù\n" +#~ " -U Á¤·ÄÇÏÁö ¾Ê°í µð·ºÅ丮ÀÇ ¼ø¼­´ë·Î Ãâ·ÂÇÕ´Ï" +#~ "´Ù\n" +#~ " -v ¹öÀü¿¡ µû¶ó Á¤·ÄÇÕ´Ï´Ù\n" +#~ " -w, --width=COLS ÇöÀç °ª ´ë½Å È­¸éÆøÀ» Á¤ÇØÁØ °ªÀ¸·Î °¡Á¤ÇÕ´Ï" +#~ "´Ù\n" +#~ " -x ¿­´ÜÀ§º¸´Ù´Â Çà¼øÀ¸·Î ¸ñ·ÏÀ» Á¤·ÄÇÕ´Ï´Ù\n" +#~ " -X ¸ñ·Ï È®Àå¿¡ ÀÇÇØ ¾ËÆÄºª¼øÀ¸·Î Á¤·ÄÇÕ´Ï´Ù\n" +#~ " -1 ÇÑ ÁÙ¿¡ ÇÑ ÆÄÀϾ¿ Ãâ·ÂÇÕ´Ï´Ù\n" +#~ " --help ÀÌ µµ¿ò¸»À» Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +#~ " --version ¹öÀü Á¤º¸¸¦ Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +#~ "\n" +#~ "±âº»ÀûÀ¸·Î, ÆÄÀÏÀ» ±¸ºÐÇϱâ À§ÇØ »ö»óÀº »ç¿ëÇÏÁö ¾Ê½À´Ï´Ù. À̰ÍÀº\n" +#~ "--color=noneÀ» »ç¿ëÇÏ´Â °Í°ú °°½À´Ï´Ù. --color¿É¼ÇÀ» ºÎ°¡ÀûÀÎ WHENÀμö¿Í\n" +#~ "°°ÀÌ »ç¿ëÇÏÁö ¾ÊÀ¸¸é --color=always¿Í °°½À´Ï´Ù. --color=auto¿¡¼­´Â\n" +#~ "»ö»ó ÄÚµå´Â Ç¥ÁØ Ãâ·ÂÀÌ Å͹̳Î(tty)¿¡ ¿¬°áµÇ¾úÀ» ¶§¸¸ Ãâ·ÂÇÕ´Ï´Ù\n" + +#, fuzzy +#~ msgid "" +#~ "Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +#~ "for even very expensive hardware probing to recover the data.\n" +#~ "\n" +#~ " -f, --force change permissions to allow writing if necessary\n" +#~ " -n, --iterations=N Overwrite N times instead of the default (%d)\n" +#~ " -s, --size=N shred this many bytes (suffixes like k, M, G accepted)\n" +#~ " -u, --remove truncate and remove file after overwriting\n" +#~ " -v, --verbose show progress\n" +#~ " -x, --exact do not round file sizes up to the next full block\n" +#~ " -z, --zero add a final overwrite with zeros to hide shredding\n" +#~ " - shred standard output\n" +#~ " --help display this help and exit\n" +#~ " --version print version information and exit\n" +#~ "\n" +#~ "Delete FILE(s) if --remove (-u) is specified. The default is not to " +#~ "remove\n" +#~ "the files because it is common to operate on device files like /dev/hda,\n" +#~ "and those files usually should not be removed. When operating on " +#~ "regular\n" +#~ "files, most people use the --remove option.\n" +#~ "\n" +#~ "CAUTION: Note that shred relies on a very important assumption:\n" +#~ "that the filesystem overwrites data in place. This is the traditional\n" +#~ "way to do things, but many modern filesystem designs do not satisfy this\n" +#~ "assumption. The following are examples of filesystems on which shred is\n" +#~ "not effective:\n" +#~ "\n" +#~ "* log-structured or journaled filesystems, such as those supplied with\n" +#~ " AIX and Solaris (and JFS, ReiserFS, XFS, etc.)\n" +#~ "\n" +#~ "* filesystems that write redundant data and carry on even if some writes\n" +#~ " fail, such as RAID-based filesystems\n" +#~ "\n" +#~ "* filesystems that make snapshots, such as Network Appliance's NFS " +#~ "server\n" +#~ "\n" +#~ "* filesystems that cache in temporary locations, such as NFS\n" +#~ " version 3 clients\n" +#~ "\n" +#~ "* compressed filesystems\n" +#~ "\n" +#~ "In addition, file system backups and remote mirrors may contain copies\n" +#~ "of the file that cannot be removed, and that will allow a shredded file\n" +#~ "to be recovered later.\n" +#~ msgstr "" +#~ "ÆÄÀÏÀ» ¾ÈÀüÇÏ°Ô Áö¿ì±â À§ÇØ, ¸ÕÀú ³»¿ëÀ» °¨Ãßµµ·Ï ±× ³»¿ëÀ» µ¤¾î ½á ¹ö¸³´Ï" +#~ "´Ù.\n" +#~ "\n" +#~ " -D, --device ÀåÄ¡¿¡ ´ëÇÑ ¿¬»êÀ» °¡´ÉÇÏ°Ô ÇÕ´Ï´Ù(ÀåÄ¡´Â Áö¿öÁöÁö ¾Ê½À´Ï" +#~ "´Ù)\n" +#~ " -f, --force ÇÊ¿äÇÏ´Ù¸é ¾²±â °¡´ÉÇϵµ·Ï ±ÇÇÑÀ» ¹Ù²ß´Ï´Ù\n" +#~ " -n, --iterations=N ±âº»°ª(%d)´ë½Å¿¡ N¹ø °ãÃÄ ¾¹´Ï´Ù\n" +#~ " -p, --preserve °ãÃÄ ¾´ ÈÄ ÆÄÀÏÀ» Áö¿ìÁö ¾Ê½À´Ï´Ù\n" +#~ " -s, --size=N ÁöÁ¤ÇÑ Å©±â¸¸Å­ µ¤¾î¾¹´Ï´Ù (k, M°ú °°Àº Á¢¹Ì»ç »ç¿ë °¡" +#~ "´É)\n" +#~ " -v, --verbose ÁøÇà»óȲ º¸±â (-vv¸¦ ÁÖ¸é È­¸é¿¡ ÁøÇà»óȲÀ» ³²±é´Ï´Ù)\n" +#~ " -x, --exact ´ÙÀ½ÀÇ ºí·° Å©±â¸¸Å­À» ä¿ìÁö ¾Ê°í Å©±â´ë·Î ÇÕ´Ï´Ù\n" +#~ " -z, --zero Áö¿î °ÍÀ» ¼û±â±â À§ÇØ ÃÖÁ¾ÀûÀ¸·Î 0À¸·Î °ãÃľ¹´Ï´Ù\n" +#~ " - Ç¥ÁØ Ãâ·ÂÀ» Áö¿ó´Ï´Ù (NOTE: -v¿Í Ãæµ¹ÇÕ´Ï´Ù)\n" +#~ " --help ÀÌ µµ¿ò¸»À» Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +#~ " --version ¹öÀü Á¤º¸¸¦ Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +#~ "\n" +#~ "¿©±â¼­ ´õ Ãß°¡ÇÒ °ÍÀÌ ÀÖ´Ù¸é *°íÃÄ ÁÖ¼¼¿ä*" + +#~ msgid "" +#~ "Update the access and modification times of each FILE to the current " +#~ "time.\n" +#~ "\n" +#~ " -a change only the access time\n" +#~ " -c, --no-create do not create any files\n" +#~ " -d, --date=STRING parse STRING and use it instead of current time\n" +#~ " -f (ignored)\n" +#~ " -m change only the modification time\n" +#~ " -r, --reference=FILE use this file's times instead of current time\n" +#~ " -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current " +#~ "time\n" +#~ " --time=WORD set time given by WORD: access atime use (same " +#~ "as -a)\n" +#~ " modify mtime (same as -m)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Note that the three time-date formats recognized for the -d and -t " +#~ "options\n" +#~ "and for the obsolescent argument are all different.\n" +#~ msgstr "" +#~ "°¢ ÆÄÀÏÀÇ Á¢±Ù/º¯°æ½Ã°£À» ÇöÀç½Ã°£À¸·Î ¹Ù²ß´Ï´Ù.\n" +#~ "\n" +#~ " -a Á¢±Ù½Ã°£¸¸À» ¹Ù²ß´Ï´Ù\n" +#~ " -c, --no-create ÆÄÀÏÀ» ¸¸µéÁö ¾Ê½À´Ï´Ù\n" +#~ " -d, --date=STRING STRINGÀ» ÇØ¼®Çؼ­ ÇöÀç½Ã°£ ´ë½Å »ç¿ëÇÕ´Ï´Ù\n" +#~ " -f (¹«½ÃÇÕ´Ï´Ù)\n" +#~ " -m º¯°æ½Ã°£¸¸À» ¹Ù²ß´Ï´Ù\n" +#~ " -r, --reference=FILE ÀÌ ÆÄÀÏÀÇ ½Ã°£À» ÇöÀç½Ã°£ ´ë½Å »ç¿ëÇÕ´Ï´Ù\n" +#~ " -t STAMP ÇöÀç½Ã°£ ´ë½Å [[CC]YY]MMDDhhmm[.ss]À» »ç¿ëÇÕ´Ï" +#~ "´Ù\n" +#~ " --time=WORD access -a, atime -a, mtime -m, modify -m, use -" +#~ "a\n" +#~ " --help ÀÌ µµ¿ò¸»À» Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +#~ " --version ¹öÀü Á¤º¸¸¦ Ç¥½ÃÇϰí Á¾·áÇÕ´Ï´Ù\n" +#~ "\n" +#~ "-d³ª -t ¿É¼Ç°ú ±¸½Ä Àμö·Î ÆÇº°µÇ´Â ¼¼°¡Áö ½Ã°£ Çü½ÄÀº ¸ðµÎ ´Ù¸¥ °ÍÀÓÀ»\n" +#~ "ÁÖÀÇÇϼ¼¿ä.\n" + +#, fuzzy +#~ msgid "Copyright (C) 2001 Free Software Foundation, Inc." +#~ msgstr "ÀúÀÛ±Ç (C) 2000 Free Software Foundation, Inc." + +#~ msgid "" +#~ "when creating character special files, major and minor device\n" +#~ "numbers must be specified" +#~ msgstr "" +#~ "ij¸¯ÅÍ Æ¯º° ÆÄÀÏÀ» ¸¸µé ¶§¿¡´Â, major¿Í minorÀåÄ¡ ¹øÈ£¸¦\n" +#~ "ÁöÁ¤ÇØ¾ß ÇÕ´Ï´Ù" + +#~ msgid "group of %s changed to %s\n" +#~ msgstr "%sÀÇ ±×·ìÀÌ %sÀ¸·Î ¹Ù²î¾ú½À´Ï´Ù\n" + +#, fuzzy +#~ msgid "ownership of %s changed to " +#~ msgstr "%sÀÇ ¼ÒÀ¯ÀÚ´Â ´ÙÀ½°ú °°ÀÌ º¯°æµÇ¾ú½À´Ï´Ù: " + +#, fuzzy +#~ msgid "you are not a member of group %s" +#~ msgstr "`%s' ±×·ìÀÇ ±¸¼º¿øÀÌ ¾Æ´Õ´Ï´Ù" + +#, fuzzy +#~ msgid "cannot make fifo %s" +#~ msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#, fuzzy +#~ msgid "cannot change permissions for %s" +#~ msgstr "%sÀÇ Çã°¡¸¦ ¹Ù²Ü ¼ö ¾ø½À´Ï´Ù" + +#, fuzzy +#~ msgid "cannot remove old link to %s" +#~ msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#, fuzzy +#~ msgid "virtual memory exhausted" +#~ msgstr "¸Þ¸ð¸®°¡ ¹Ù´Ú³²" + +#, fuzzy +#~ msgid "Memory exhausted" +#~ msgstr "¸Þ¸ð¸®°¡ ¹Ù´Ú³²" + +#, fuzzy +#~ msgid "cannot create directory `%s'" +#~ msgstr "%s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù" + +#, fuzzy +#~ msgid "cannot remove `%s'" +#~ msgstr "`%s'¿¡¼­ ioctlÀ» ÇÒ ¼ö ¾ø½À´Ï´Ù" + +#, fuzzy +#~ msgid "specified target, `%s' is not a directory" +#~ msgstr "%sÀÌ(°¡) Á¸ÀçÇÏÁö¸¸ µð·ºÅ丮°¡ ¾Æ´Õ´Ï´Ù" + +#~ msgid "`%s' and `%s' are the same file" +#~ msgstr "`%s'¿Í `%s'´Â °°Àº ÆÄÀÏÀÔ´Ï´Ù" + +#, fuzzy +#~ msgid "cannot backup `%s'" +#~ msgstr "`%s'¿¡¼­ ioctlÀ» ÇÒ ¼ö ¾ø½À´Ï´Ù" + +#~ msgid "cannot un-backup `%s'" +#~ msgstr "`%s'ÀÇ ¹é¾÷À» µÇµ¹¸± ¼ö ¾ø½À´Ï´Ù" + +#, fuzzy +#~ msgid "cannot chmod %s" +#~ msgstr "%s µð·ºÅ丮·Î chdirÇÒ ¼ö ¾ø½À´Ï´Ù" + +#, fuzzy +#~ msgid "`%s' exists but is not a directory" +#~ msgstr "%sÀÌ(°¡) Á¸ÀçÇÏÁö¸¸ µð·ºÅ丮°¡ ¾Æ´Õ´Ï´Ù" diff --git a/src/apps/bin/coreutils-5.0/po/lg.gmo b/src/apps/bin/coreutils-5.0/po/lg.gmo new file mode 100644 index 0000000000..0b88f1319b Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/lg.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/lg.po b/src/apps/bin/coreutils-5.0/po/lg.po new file mode 100644 index 0000000000..e018d069e4 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/lg.po @@ -0,0 +1,6594 @@ +# LUGANDA .PO FILE FOR FILEUTILS. +# Copyright (C) 2002 Free Software Foundation, Inc. +# This file is distributed under the same license as the fileutils package. +# K.Birabwa , 2002. +# +msgid "" +msgstr "" +"Project-Id-Version: fileutils 4.1.11\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2002-09-02 22:46GMT\n" +"Last-Translator: K.Birabwa \n" +"Language-Team: Luganda \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=EUC-KR\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 0.8\n" + +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "agumenti %s tekozesebwa ku %s" + +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "agumenti %s ku %s ebuzabuza" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "Augumenti z'oyinza okukozesa ziri:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "kiremya mu kuwandiikira" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "Kiremya atategeerese mu sisitemu" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "fayiro eyabulijjo enjereere" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "fayiro eya bulijjo" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "tterekero" + +#: lib/file-type.c:48 +msgid "block special file" +msgstr "" + +#: lib/file-type.c:51 +msgid "character special file" +msgstr "" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "fifo" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "kayunzi ka ndabirwamu" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "soketi" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "ntuumo ya bubaka" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "semafora" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "kisibe kya mu ggwanika ery'olukale" + +#: lib/file-type.c:71 +msgid "weird file" +msgstr "fayiro eye ggete" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: akawayiro '%s' kabuzabuza\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: akawayiro '--%s' tekateekebwa ko agumenti\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: akawayiro `%c%s' tekateekebwa ko agumenti\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: akawayiro '%s' k'etaaga agumenti\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: akawayiro '--%s' tekamanyidwa\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: akawayiro '%c%s' tekamanyidwa\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: akawayiro --%c tekakkirizibwa\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: akawayiro --%c tekakola\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: akawayiro k'etaaga agumenti --%c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: akawayiro '-W %s' kabuzabuza\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: akawayiro `-W %s' tekateekebwa ko agumenti\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "bunene obwa buloka" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "nnemedwa okukola wo tterekero %s" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%s gy'eri nayi ssi tterekero" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "nnemedwa okukyuusa obwanannyini ne/oba guluupu ku %s" + +#: lib/makepath.c:338 +#, c-format +msgid "cannot chdir to directory %s" +msgstr "chdir elemedwa okuyingira tterekero %s" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "nnemedwa okukyuusa buyinza ku %s" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "ggwanika lijjudde" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "`" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "'" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[yY]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[nN]" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "" + +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "akabonero tekali ku lukalala" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "nemedwa okukyuusa U+%04X okudda mu bubonero obukozesebwa wano" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "nemedwa okukyuusa U+%04X okudda mu bubonero obukozesebwa wano: %s" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "omukozesa ono takkirizibwa" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "guluupu eno tekkirizibwa" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "" +"UID bw'ogiwa nga omuwendo, mbeera sisobola okufuna guluupu yayo eya login" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "tekikkirizibwa obutawa byombi, mukozesa ate ne guluupu" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "Kiwandiikidwa %s.\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "okugerageranya nkolongo kugaanye" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "Okuvvuunuka obuzibu buno, teeka LC_ALL='C'." + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "Nkolongo ezigerageranyizidwa ze %s ne %s." + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Wandika '%s --help' oyongere okuwebwa amagezi.\n" + +#: src/basename.c:54 +#, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" + +#: src/basename.c:59 +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"Zizinga mubuulire <%s>.\n" + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "agumenti teziwera" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" + +#: src/cat.c:314 +#, fuzzy, c-format +msgid "cannot do ioctl on `%s'" +msgstr "chdir elemedwa okuyingira tterekero %s" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "" + +#: src/cat.c:858 +msgid "closing standard input" +msgstr "" + +#: src/cat.c:861 +msgid "closing standard output" +msgstr "" + +#: src/chgrp.c:93 +msgid "cannot change to null group" +msgstr "tekisoboka okukyusiza ku guluupu etaliwo" + +#: src/chgrp.c:102 +#, c-format +msgid "invalid group name %s" +msgstr "linnya erya guluupu terikkirizibwa %s" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "namba eya guluupu" + +#: src/chgrp.c:109 +#, c-format +msgid "invalid group number %s" +msgstr "tekola nga ennamba eya guluupu %s" + +#: src/chgrp.c:126 +#, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Enkozesa: %s [KAWAYIRO]... FAYIRO EYA GULUUPU...\n" +" oba: %s [KAWAYIRO]... --reference=RFAYIRO FAYIRO...\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Kyuusa obwa memba obwa guluupu obwa buli FAYIRO bubeere mu GULUUPU.\n" +"\n" +"-c, --changes nga verbose naye tezza bubaka bwe wataba " +"bikyusidwa\n" +"--dereference tokwata ku kayunzi ak'endabirwamu kennyinyi, " +"wabula kola\n" +" ku ekyo kye kasonga ko\n" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" +"-h, --no-dereference tokwata ku fayiro ezisongedwa ko, kyusa obuyunzi " +"obw'endabirwamu\n" +" (kino kisoboka ku sisitemu eziyinza okukyuusa " +"obwa nannyini\n" +" ku buyunzi obw'endabirwamu)\n" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet kweka obubaka obwogera ku kilemya obusinga " +"obungi\n" +" --reference=RFAYIRO kozesa mu guluupu eya RFAYIRO mu kifo ekya eyo\n" +" ekongojedwa mu GROUP\n" +" -R, --recursive kola ne ku fayiro n'amaterekero eziri munda mwa " +"zinazo\n" +" -v, --verbose wandika ebiva mu kukebera buli fayiro ekolebwa " +"ko\n" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, c-format +msgid "failed to get attributes of %s" +msgstr "nemedwa okufuna atiributo eza %s" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "nnona atiributo empya eza %s" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "nkola eya %s efuuse %04lo (%s)\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "nnemedwa okukyuusa nkola eya %s efuuke %04lo (%s)\n" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "nkola eya %s esigazidwa nga eri %04lo (%s)\n" + +#: src/chmod.c:179 +#, c-format +msgid "changing permissions of %s" +msgstr "nkyuusa obuyinza obwa ku %s" + +#: src/chmod.c:242 +#, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Nkozesa: %s [KAWAYIRO]... NKOLA[NKOLA]... FAYIRO...\n" +" oba. %s [KAWAYIRO]... NKOLA-OKITA FAYIRO...\n" +" oba. %s [KAWAYIRO]... --reference=RFAYIRO FAYIRO... \n" + +#: src/chmod.c:248 +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"Kyusa nkola eya buli FAYIRO ebeera NKOLA.\n" +"\n" +" -c, --changes nga verbose naye tezza bubaka bwe wataba " +"bikyusidwa\n" +" -f, silent, --quiet kweka obubaka obwogera ku kilemya obusinga " +"obungi\n" +" -v, --verbose wandika ebiva mu kukebera buli fayiro ekolebwa " +"ko\n" +" -R, --recursive kola ne ku fayiro n'amaterekero eziri munda " +"mwa zinazo\n" +" --reference=RFAYIRO kozesa mu nkola eya RFAYIRO mu kifo ekya eyo\n" +" ekongojedwa mu MODE\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" +"\n" +"Buli NKOLA elagibwa ne nukuta ezilodedwa mu ugoa, emu ku bubonero +-= ko ne\n" +"nukuta ezilondedwa mu rwxXstugo.\n" + +#: src/chmod.c:320 +#, c-format +msgid "invalid character %s in mode string %s" +msgstr "akabonero %s mu lukolongo olwa nkola %s tekakkirizibwa" + +#: src/chmod.c:361 +#, c-format +msgid "invalid mode string: %s" +msgstr "olukolongo olwa nkola: %s telukkirizibwa" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "ku kayunzi ak'endabirwamu %s ne kyekasonga ko tekuli kikyusidwa\n" + +#: src/chown-core.c:143 +#, c-format +msgid "changed ownership of %s to %s\n" +msgstr "obwananyini ku %s bukyusidwa ku %s\n" + +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "nkyusizza guluupu eya %s ebeere %s\n" + +#: src/chown-core.c:148 +#, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "nnemedwa okukyusa obwananyini ku %s okufuuka %s\n" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "nnemedwa okuykyusa guluupu eya %s ebeere %s\n" + +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "obwananyini ku %s busigazidwa nga %s\n" + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "guluupu eya %s esigazidwa nga %s\n" + +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "nkyusa obwananyini ku %s" + +#: src/chown-core.c:327 +#, c-format +msgid "changing group of %s" +msgstr "nkyusa guluupu eya %s" + +#: src/chown-core.c:345 +#, c-format +msgid "unable to restore permissions of %s" +msgstr "sisobla okuzzawo obuyinza ku %s" + +#: src/chown.c:99 +#, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Nkozesa: %s [KAWAYIRO]... NANYINI[:[GULUUPU] FAYIRO...\n" +" oba: %s [KAWAYIRO]... :GULUUPU FAYIRO...\n" +" oba: %s [KAWAYIRO]... --reference=RFAYIRO FAYIRO...\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Kyuusa obwa nanyini ne/oba guluupu eyaa buli FAYIRO bibeere NANYINI ne/oba " +"GULUUPU.\n" +"\n" +" -c, --changes nga verbose naye tezza bubaka bwe wataba " +"bikyusidwa\n" +" --dereference tokwata ku kayunzi ak'endabirwamu " +"kennyinyi, wabula kola\n" +" ku ekyo kye kasonga ko\n" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" +" --from=NANYINI_ALIWO:GULUUPU_ERIWO\n" +" kyusa nanyini ne/oba guluupu ku buli fayiro singa\n" +" nanyini yo ne/oba guluupu ya yo bye bimu n'ebyo " +"ebiteekedwa\n" +" wano. Kimu ku byo (NANYINI_ALIWO oba " +"GULUUPU_ERIWO)\n" +" osobola obutakiwa. Olwo atiributo eyo pulogulamu " +"teja okigifako.\n" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +"-f, silent, --quiet kweka obubaka obwogera ku kilemya obusinga obungi\n" +" --reference=RFAYIRO kozesa mu nanyini ne guluupu ebya RFAYIRO mu kifo " +"ekya ebyo\n" +" ebikongojedwa mu NANYINI:GULUUPU\n" +" -R, --recursive kola ne ku fayiro n'amaterekero ebiri munda " +"mwa zinazo\n" +"-v, --verbose wandika ebiva mu kukebera buli fayiro " +"ekolebwa ko\n" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" +"\n" +"Bw'otawa nanyini era takyusibwa. Bw'otawa guluupu nayo tekyusibwa. Kyokka\n" +"singa wabeera wo `:', pulogulamu etegeera mu nti guluupu erina okugikyusa " +"ebeere eya login.\n" +"NANYINI ne GULUUPU bisobola okuwebwa nga miwendo oba nga nukuta.\n" + +#: src/chroot.c:45 +#, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" + +#: src/chroot.c:84 +#, fuzzy, c-format +msgid "cannot change root directory to %s" +msgstr "chdir elemedwa okuyingira tterekero %s" + +#: src/chroot.c:87 +#, fuzzy +msgid "cannot chdir to root directory" +msgstr "chdir elemedwa okuyingira tterekero %s" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "" + +#: src/cksum.c:282 +#, fuzzy, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"Enkozesa: %s [KAWAYIRO]... FAYIRO EYA GULUUPU...\n" +" oba: %s [KAWAYIRO]... --reference=RFAYIRO FAYIRO...\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" + +#: src/copy.c:162 src/du.c:332 +#, c-format +msgid "cannot access %s" +msgstr "nnemedwa okubikkula %s" + +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "sisobodde okubikkula %s kugisoma" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, c-format +msgid "cannot fstat %s" +msgstr "nnemedwa okukola fstat ku %s" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "" +"fayiro %s ngibuuka kubanga eyo yawanyisidwa mu ndala bwe yabadde ekoppebwa" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, c-format +msgid "cannot remove %s" +msgstr "sisobola okugyawo %s" + +#: src/copy.c:277 +#, c-format +msgid "cannot create regular file %s" +msgstr "nnemedwa okukolawo fayiro eya bulijjo %s" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, c-format +msgid "reading %s" +msgstr "nsoma %s" + +#: src/copy.c:362 +#, c-format +msgid "cannot lseek %s" +msgstr "nnemedwa okukola lseek ku %s" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, c-format +msgid "writing %s" +msgstr "mpandikira mu %s" + +#: src/copy.c:409 src/copy.c:415 +#, c-format +msgid "closing %s" +msgstr "mbikka %s" + +#: src/copy.c:610 +#, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: %s ngiwandiike ko nga empya, nga sifa ku nkola %04lo? " + +#: src/copy.c:616 +#, c-format +msgid "%s: overwrite %s? " +msgstr "%s: %s ngiwandiike ko nga empya?" + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, c-format +msgid "cannot stat %s" +msgstr "nnemedwa okukola stat ku %s" + +#: src/copy.c:820 +#, c-format +msgid "omitting directory %s" +msgstr "tterekero %s ngibuuka" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "" + +#: src/copy.c:866 src/ln.c:237 +#, c-format +msgid "%s and %s are the same file" +msgstr "" + +#: src/copy.c:876 +#, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "" + +#: src/copy.c:893 +#, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "" + +#: src/copy.c:904 +#, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "" + +#: src/copy.c:965 +#, c-format +msgid "cannot overwrite directory %s" +msgstr "" + +#: src/copy.c:974 +#, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "" + +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "" + +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "" + +#: src/copy.c:1013 src/ln.c:273 +#, c-format +msgid "cannot backup %s" +msgstr "" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr "" + +#: src/copy.c:1099 +#, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "" + +#: src/copy.c:1106 +#, c-format +msgid "will not create hard link %s to directory %s" +msgstr "" + +#: src/copy.c:1132 +#, c-format +msgid "cannot create hard link %s to %s" +msgstr "" + +#: src/copy.c:1186 +#, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "" + +#: src/copy.c:1229 +#, c-format +msgid "cannot move %s to %s" +msgstr "" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "" + +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "" + +#: src/copy.c:1353 +#, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "" + +#: src/copy.c:1364 +#, c-format +msgid "cannot create link %s" +msgstr "" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, c-format +msgid "cannot create fifo %s" +msgstr "" + +#: src/copy.c:1403 +#, c-format +msgid "cannot create special file %s" +msgstr "" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, c-format +msgid "cannot read symbolic link %s" +msgstr "" + +#: src/copy.c:1440 +#, c-format +msgid "cannot create symbolic link %s" +msgstr "" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, c-format +msgid "failed to preserve ownership for %s" +msgstr "" + +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "" + +#: src/copy.c:1531 +#, c-format +msgid "failed to preserve authorship for %s" +msgstr "" + +#: src/copy.c:1549 +#, c-format +msgid "setting permissions for %s" +msgstr "" + +#: src/copy.c:1571 src/ln.c:326 +#, c-format +msgid "cannot un-backup %s" +msgstr "" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/cp.c:164 src/mv.c:311 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" + +#: src/cp.c:209 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" + +#: src/cp.c:221 +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" + +#: src/cp.c:230 +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" + +#: src/cp.c:239 +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" + +#: src/cp.c:325 +#, c-format +msgid "failed to preserve times for %s" +msgstr "" + +#: src/cp.c:349 +#, c-format +msgid "failed to preserve permissions for %s" +msgstr "" + +#: src/cp.c:434 +#, c-format +msgid "cannot make directory %s" +msgstr "" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +msgid "missing file argument" +msgstr "" + +#: src/cp.c:498 +msgid "missing destination file" +msgstr "" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "" + +#: src/cp.c:546 +#, c-format +msgid "%s: specified target is not a directory" +msgstr "" + +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" + +#: src/cp.c:972 src/ln.c:464 +msgid "symbolic links are not supported on this system" +msgstr "" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +#, fuzzy +msgid "read error" +msgstr "kiremya mu kuwandiikira" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "" + +#: src/csplit.c:705 src/csplit.c:716 +#, fuzzy, c-format +msgid "%s: line number out of range" +msgstr "akabonero tekali ku lukalala" + +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr "" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "" + +#: src/csplit.c:992 +#, fuzzy, c-format +msgid "write error for `%s'" +msgstr "kiremya mu kuwandiikira" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "" + +#: src/csplit.c:1141 +#, fuzzy, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: akawayiro --%c tekakola\n" + +#: src/csplit.c:1174 +#, fuzzy, c-format +msgid "%s: invalid pattern" +msgstr "%s: akawayiro --%c tekakola\n" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "" + +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "" + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "" + +#: src/csplit.c:1441 +#, fuzzy, c-format +msgid "%s: invalid number" +msgstr "omukozesa ono takkirizibwa" + +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "" + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "" + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "" + +#: src/cut.c:720 +msgid "an input delimiter may be specified only when operating on fields" +msgstr "" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" + +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "" + +#: src/date.c:268 src/date.c:460 +#, fuzzy, c-format +msgid "invalid date `%s'" +msgstr "linnya erya guluupu terikkirizibwa %s" + +#: src/date.c:364 +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "" + +#: src/date.c:377 +#, c-format +msgid "too many non-option arguments: %s%s" +msgstr "" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" + +#: src/date.c:397 +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "" + +#: src/date.c:433 +msgid "undefined" +msgstr "" + +#: src/date.c:435 +msgid "cannot get time of day" +msgstr "" + +#: src/date.c:468 +#, fuzzy +msgid "cannot set date" +msgstr "nnemedwa okukola stat ku %s" + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "" + +#: src/dd.c:382 +#, c-format +msgid "closing input file %s" +msgstr "" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "" + +#: src/dd.c:469 +#, c-format +msgid "writing to %s" +msgstr "" + +#: src/dd.c:501 +#, c-format +msgid "invalid conversion: %s" +msgstr "" + +#: src/dd.c:557 +#, c-format +msgid "unrecognized option %s" +msgstr "" + +#: src/dd.c:610 +#, c-format +msgid "unrecognized option %s=%s" +msgstr "" + +#: src/dd.c:616 +#, c-format +msgid "invalid number %s" +msgstr "" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" + +#: src/dd.c:1170 src/dd.c:1188 +#, c-format +msgid "opening %s" +msgstr "" + +#: src/dd.c:1196 +msgid "file offset out of range" +msgstr "" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "" + +#: src/df.c:49 +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "" + +#: src/df.c:153 +msgid "Filesystem Type" +msgstr "" + +#: src/df.c:155 +msgid "Filesystem " +msgstr "" + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr "" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr "" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr "" + +#: src/df.c:167 +#, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr "" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr "" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr "" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" + +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "" + +#: src/df.c:903 +msgid "Warning: " +msgstr "" + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "" + +#: src/dircolors.c:103 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "" + +#: src/dircolors.c:104 +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" + +#: src/dircolors.c:299 +#, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "" + +#: src/dircolors.c:371 +#, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "" + +#: src/dircolors.c:372 +msgid "" +msgstr "" + +#: src/dircolors.c:467 +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "" + +#: src/dirname.c:33 src/pathchk.c:59 +msgid "David MacKenzie and Jim Meyering" +msgstr "" + +#: src/dirname.c:46 +#, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" + +#: src/dirname.c:51 +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" + +#: src/du.c:49 +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" + +#: src/du.c:337 +#, fuzzy, c-format +msgid "cannot change to parent of directory %s" +msgstr "chdir elemedwa okuyingira tterekero %s" + +#: src/du.c:345 +#, fuzzy, c-format +msgid "cannot change to directory %s" +msgstr "chdir elemedwa okuyingira tterekero %s" + +#: src/du.c:352 +#, fuzzy, c-format +msgid "cannot read directory %s" +msgstr "nnemedwa okukola wo tterekero %s" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "" + +#: src/du.c:641 +#, c-format +msgid "invalid maximum depth %s" +msgstr "" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "" + +#: src/echo.c:77 +#, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/env.c:93 +msgid "Richard Mlynarik and David MacKenzie" +msgstr "" + +#: src/env.c:119 +#, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "" + +#: src/env.c:122 +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "" + +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "" + +#: src/expr.c:90 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +#, fuzzy +msgid "syntax error" +msgstr "kiremya mu kuwandiikira" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" + +#: src/expr.c:586 src/expr.c:625 +msgid "non-numeric argument" +msgstr "" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "" + +#: src/factor.c:74 +#, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" + +#: src/factor.c:85 +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "" + +#: src/false.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" + +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" + +#: src/fmt.c:345 +#, fuzzy, c-format +msgid "invalid width option: `%s'" +msgstr "olukolongo olwa nkola: %s telukkirizibwa" + +#: src/fmt.c:385 +#, fuzzy, c-format +msgid "invalid width: `%s'" +msgstr "olukolongo olwa nkola: %s telukkirizibwa" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" + +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "" + +#: src/fold.c:295 +#, fuzzy, c-format +msgid "invalid number of columns: `%s'" +msgstr "tekola nga ennamba eya guluupu %s" + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" + +#: src/head.c:190 +#, fuzzy, c-format +msgid "cannot reposition file pointer for %s" +msgstr "nnemedwa okukola wo tterekero %s" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "" + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "" + +#: src/head.c:264 src/tail.c:1478 +#, fuzzy +msgid "invalid number of lines" +msgstr "tekola nga ennamba eya guluupu %s" + +#: src/head.c:265 src/tail.c:1479 +#, fuzzy +msgid "invalid number of bytes" +msgstr "tekola nga ennamba eya guluupu %s" + +#: src/head.c:341 +#, fuzzy, c-format +msgid "unrecognized option `-%c'" +msgstr "%s: akawayiro '%c%s' tekamanyidwa\n" + +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "" + +#: src/hostid.c:48 +#, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" + +#: src/hostname.c:67 +#, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" + +#: src/hostname.c:104 +#, fuzzy, c-format +msgid "cannot set hostname to `%s'" +msgstr "nnemedwa okukola stat ku %s" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "" + +#: src/id.c:36 +msgid "Arnold Robbins and David MacKenzie" +msgstr "" + +#: src/id.c:87 +#, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "" + +#: src/id.c:88 +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" + +#: src/id.c:162 +#, fuzzy +msgid "cannot print only user and only group" +msgstr "tekikkirizibwa obutawa byombi, mukozesa ate ne guluupu" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "" + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "" + +#: src/id.c:235 +#, fuzzy, c-format +msgid "cannot find name for group ID %u" +msgstr "nnemedwa okukyuusa obwanannyini ne/oba guluupu ku %s" + +#: src/id.c:273 +#, fuzzy +msgid "cannot get supplemental group list" +msgstr "tekisoboka okukyusiza ku guluupu etaliwo" + +#: src/id.c:385 +msgid " groups=" +msgstr "" + +#: src/install.c:269 +msgid "the strip option may not be used when installing a directory" +msgstr "" + +#: src/install.c:292 src/mkdir.c:140 +#, c-format +msgid "invalid mode %s" +msgstr "" + +#: src/install.c:307 src/install.c:371 +#, c-format +msgid "creating directory %s" +msgstr "" + +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "" + +#: src/install.c:435 +#, c-format +msgid "%s is a directory" +msgstr "" + +#: src/install.c:495 +#, c-format +msgid "cannot obtain time stamps for %s" +msgstr "" + +#: src/install.c:507 +#, c-format +msgid "cannot set time stamps for %s" +msgstr "" + +#: src/install.c:528 +msgid "fork system call failed" +msgstr "" + +#: src/install.c:532 +msgid "cannot run strip" +msgstr "" + +#: src/install.c:539 +msgid "strip failed" +msgstr "" + +#: src/install.c:560 +#, c-format +msgid "invalid user %s" +msgstr "" + +#: src/install.c:578 +#, c-format +msgid "invalid group %s" +msgstr "" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "" + +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" + +#: src/join.c:165 +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" + +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" + +#: src/join.c:645 +#, fuzzy, c-format +msgid "invalid field specifier: `%s'" +msgstr "olukolongo olwa nkola: %s telukkirizibwa" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, fuzzy, c-format +msgid "invalid field number: `%s'" +msgstr "tekola nga ennamba eya guluupu %s" + +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "" + +#: src/join.c:792 +#, fuzzy, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "tekola nga ennamba eya guluupu %s" + +#: src/join.c:801 +#, fuzzy, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "tekola nga ennamba eya guluupu %s" + +#: src/join.c:833 +#, fuzzy +msgid "too many non-option arguments" +msgstr "agumenti teziwera" + +#: src/join.c:855 +#, fuzzy +msgid "too few non-option arguments" +msgstr "agumenti teziwera" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" + +#: src/kill.c:106 +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" + +#: src/kill.c:163 +#, fuzzy, c-format +msgid "%s: invalid signal" +msgstr "%s: akawayiro --%c tekakola\n" + +#: src/kill.c:262 +#, c-format +msgid "missing operand after `%s'" +msgstr "" + +#: src/kill.c:274 +#, fuzzy, c-format +msgid "%s: invalid process id" +msgstr "%s: akawayiro --%c tekakola\n" + +#: src/kill.c:327 +#, fuzzy, c-format +msgid "invalid option -- %c" +msgstr "%s: akawayiro --%c tekakola\n" + +#: src/kill.c:336 +#, c-format +msgid "%s: multiple signals specified" +msgstr "" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "" + +#: src/link.c:51 +#, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" + +#: src/link.c:98 +#, c-format +msgid "cannot create link %s to %s" +msgstr "" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "" + +#: src/ln.c:174 +#, c-format +msgid "%s: hard link not allowed for directory" +msgstr "" + +#: src/ln.c:246 +#, c-format +msgid "%s: cannot overwrite directory" +msgstr "" + +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "" + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "" + +#: src/ln.c:304 +#, c-format +msgid "create symbolic link %s to %s" +msgstr "" + +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "" + +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "" + +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "" + +#: src/ln.c:339 +#, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" + +#: src/ln.c:521 +#, c-format +msgid "%s: specified target directory is not a directory" +msgstr "" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" + +#: src/logname.c:99 +#, c-format +msgid "%s: no login name\n" +msgstr "" + +#: src/ls.c:673 +msgid "%b %e %Y" +msgstr "" + +#: src/ls.c:681 +msgid "%b %e %H:%M" +msgstr "" + +#: src/ls.c:1307 +#, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "" + +#: src/ls.c:1482 +#, c-format +msgid "invalid line width: %s" +msgstr "" + +#: src/ls.c:1556 +#, c-format +msgid "invalid tab size: %s" +msgstr "" + +#: src/ls.c:1722 +#, c-format +msgid "invalid time style format %s" +msgstr "" + +#: src/ls.c:2054 +#, c-format +msgid "unrecognized prefix: %s" +msgstr "" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "" + +#: src/ls.c:2145 +#, c-format +msgid "cannot determine device and inode of %s" +msgstr "" + +#: src/ls.c:2155 +#, c-format +msgid "not listing already-listed directory: %s" +msgstr "" + +#: src/ls.c:2208 src/remove.c:929 +#, fuzzy, c-format +msgid "reading directory %s" +msgstr "tterekero %s ngibuuka" + +#: src/ls.c:2603 +#, c-format +msgid "cannot compare file names %s and %s" +msgstr "" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" + +#: src/ls.c:3784 +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" + +#: src/ls.c:3799 +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" + +#: src/ls.c:3831 +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "" + +#: src/md5sum.c:444 +#, fuzzy, c-format +msgid "%s: read error" +msgstr "kiremya mu kuwandiikira" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "" + +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "" + +#: src/md5sum.c:473 +msgid "file" +msgstr "" + +#: src/md5sum.c:473 +msgid "files" +msgstr "" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "" + +#: src/mkdir.c:61 +#, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" + +#: src/mkdir.c:69 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" + +#: src/mkdir.c:113 +#, c-format +msgid "created directory %s" +msgstr "" + +#: src/mkdir.c:190 +#, c-format +msgid "cannot set permissions of directory %s" +msgstr "" + +#: src/mkfifo.c:55 +#, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" + +#: src/mkfifo.c:63 src/mknod.c:64 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "" + +#: src/mkfifo.c:123 src/mknod.c:127 +msgid "invalid mode" +msgstr "" + +#: src/mkfifo.c:142 +#, c-format +msgid "cannot set permissions of fifo %s" +msgstr "" + +#: src/mknod.c:55 +#, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" + +#: src/mknod.c:76 +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" + +#: src/mknod.c:141 +msgid "wrong number of arguments" +msgstr "" + +#: src/mknod.c:153 +msgid "block special files not supported" +msgstr "" + +#: src/mknod.c:162 +msgid "character special files not supported" +msgstr "" + +#: src/mknod.c:171 +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" + +#: src/mknod.c:186 +#, c-format +msgid "invalid major device number %s" +msgstr "" + +#: src/mknod.c:191 +#, c-format +msgid "invalid minor device number %s" +msgstr "" + +#: src/mknod.c:196 +#, c-format +msgid "invalid device %s %s" +msgstr "" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "" + +#: src/mknod.c:231 +#, c-format +msgid "cannot set permissions of %s" +msgstr "" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" + +#: src/mv.c:339 +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" + +#: src/mv.c:467 +#, c-format +msgid "specified target, %s is not a directory" +msgstr "" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "" + +#: src/nice.c:67 +#, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "" + +#: src/nice.c:68 +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" + +#: src/nice.c:109 src/nice.c:122 +#, fuzzy, c-format +msgid "invalid option `%s'" +msgstr "%s: akawayiro --%c tekakola\n" + +#: src/nice.c:147 +#, fuzzy, c-format +msgid "invalid priority `%s'" +msgstr "olukolongo olwa nkola: %s telukkirizibwa" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "" + +#: src/nice.c:178 src/nice.c:187 +#, fuzzy +msgid "cannot get priority" +msgstr "nnemedwa okukola wo tterekero %s" + +#: src/nice.c:192 +#, fuzzy +msgid "cannot set priority" +msgstr "nnemedwa okukola wo tterekero %s" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" + +#: src/nl.c:504 +#, fuzzy, c-format +msgid "invalid starting line number: `%s'" +msgstr "tekola nga ennamba eya guluupu %s" + +#: src/nl.c:514 +#, fuzzy, c-format +msgid "invalid line number increment: `%s'" +msgstr "tekola nga ennamba eya guluupu %s" + +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "" + +#: src/nl.c:541 +#, fuzzy, c-format +msgid "invalid line number field width: `%s'" +msgstr "tekola nga ennamba eya guluupu %s" + +#: src/od.c:287 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"Enkozesa: %s [KAWAYIRO]... FAYIRO EYA GULUUPU...\n" +" oba: %s [KAWAYIRO]... --reference=RFAYIRO FAYIRO...\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" + +#: src/od.c:722 src/od.c:844 +#, fuzzy, c-format +msgid "invalid type string `%s'" +msgstr "olukolongo olwa nkola: %s telukkirizibwa" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" + +#: src/od.c:917 +#, fuzzy, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "akabonero %s mu lukolongo olwa nkola %s tekakkirizibwa" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "" + +#: src/od.c:1717 +#, fuzzy +msgid "skip argument" +msgstr "Augumenti z'oyinza okukozesa ziri:" + +#: src/od.c:1725 +#, fuzzy +msgid "limit argument" +msgstr "Augumenti z'oyinza okukozesa ziri:" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "" + +#: src/od.c:1804 +msgid "width specification" +msgstr "" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "" + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" + +#: src/pathchk.c:146 +#, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "" + +#: src/pathchk.c:147 +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" + +#: src/pathchk.c:237 +#, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "" + +#: src/pathchk.c:257 +#, fuzzy, c-format +msgid "`%s' is not a directory" +msgstr "%s gy'eri nayi ssi tterekero" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "" + +#: src/pathchk.c:355 +#, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "" + +#: src/pathchk.c:381 +#, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "" + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "" + +#: src/pinky.c:298 +msgid "???\n" +msgstr "" + +#: src/pinky.c:318 +#, fuzzy +msgid "Directory: " +msgstr "tterekero" + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "" + +#: src/pinky.c:341 +msgid "Project: " +msgstr "" + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "" + +#: src/pinky.c:386 +msgid "Login" +msgstr "" + +#: src/pinky.c:388 +msgid "Name" +msgstr "" + +#: src/pinky.c:389 +msgid " TTY" +msgstr "" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "" + +#: src/pinky.c:392 +msgid "When" +msgstr "" + +#: src/pinky.c:395 +msgid "Where" +msgstr "" + +#: src/pinky.c:469 +#, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" + +#: src/pinky.c:574 +msgid "no username specified; at least one must be specified when using -l" +msgstr "" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "" + +#: src/pr.c:805 +#, fuzzy, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "tekola nga ennamba eya guluupu %s" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "" + +#: src/pr.c:829 +#, fuzzy, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "tekola nga ennamba eya guluupu %s" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "" + +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "" + +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "" + +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "" + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "" + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr "" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" + +#: src/printenv.c:43 +msgid "David MacKenzie and Richard Mlynarik" +msgstr "" + +#: src/printenv.c:63 +#, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "" + +#: src/printf.c:100 +#, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "" + +#: src/printf.c:292 +#, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "" + +#: src/printf.c:472 +#, fuzzy, c-format +msgid "invalid field width: %s" +msgstr "olukolongo olwa nkola: %s telukkirizibwa" + +#: src/printf.c:498 +#, fuzzy, c-format +msgid "invalid precision: %s" +msgstr "%s: akawayiro --%c tekakola\n" + +#: src/printf.c:519 +#, c-format +msgid "%%%c: invalid directive" +msgstr "" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "" + +#: src/printf.c:594 +#, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" + +#: src/pwd.c:74 +msgid "ignoring non-option arguments" +msgstr "" + +#: src/pwd.c:78 +#, fuzzy +msgid "cannot get current directory" +msgstr "nnemedwa okukola wo tterekero %s" + +#: src/readlink.c:69 +#, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" + +#: src/remove.c:394 +#, c-format +msgid "cannot chdir from %s to .." +msgstr "" + +#: src/remove.c:407 src/remove.c:488 +#, c-format +msgid "cannot lstat `.' in %s" +msgstr "" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, c-format +msgid "cannot lstat %s" +msgstr "" + +#: src/remove.c:603 +#, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "" + +#: src/remove.c:604 +#, c-format +msgid "%s: descend into directory %s? " +msgstr "" + +#: src/remove.c:614 +#, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "" + +#: src/remove.c:615 +#, c-format +msgid "%s: remove %s %s? " +msgstr "" + +#: src/remove.c:639 +#, c-format +msgid "removed %s\n" +msgstr "" + +#: src/remove.c:654 src/remove.c:1059 +#, c-format +msgid "removed directory: %s\n" +msgstr "" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, c-format +msgid "cannot remove directory %s" +msgstr "" + +#: src/remove.c:815 +#, c-format +msgid "cannot open directory %s" +msgstr "" + +#: src/remove.c:896 src/remove.c:1002 +#, c-format +msgid "cannot chdir from %s to %s" +msgstr "" + +#: src/remove.c:904 +#, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "" + +#: src/rm.c:60 +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "" + +#: src/rm.c:99 src/touch.c:244 +#, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "" + +#: src/rm.c:100 +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, c-format +msgid "removing directory, %s" +msgstr "" + +#: src/rmdir.c:146 +#, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" + +#: src/rmdir.c:154 +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" + +#: src/seq.c:82 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"Nkozesa: %s [KAWAYIRO]... NANYINI[:[GULUUPU] FAYIRO...\n" +" oba: %s [KAWAYIRO]... :GULUUPU FAYIRO...\n" +" oba: %s [KAWAYIRO]... --reference=RFAYIRO FAYIRO...\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" + +#: src/seq.c:96 +#, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" + +#: src/seq.c:119 +#, fuzzy, c-format +msgid "invalid floating point argument: %s" +msgstr "agumenti %s tekozesebwa ku %s" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" + +#: src/seq.c:423 +#, fuzzy, c-format +msgid "invalid format string: `%s'" +msgstr "olukolongo olwa nkola: %s telukkirizibwa" + +#: src/seq.c:445 +msgid "format string may not be specified when printing equal width strings" +msgstr "" + +#: src/shred.c:160 +#, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" + +#: src/shred.c:174 +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" + +#: src/shred.c:808 +#, c-format +msgid "%s: cannot rewind" +msgstr "" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "" + +#: src/shred.c:868 +#, c-format +msgid "%s: error writing at offset %s" +msgstr "" + +#: src/shred.c:897 +#, c-format +msgid "%s: file too large" +msgstr "" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "" + +#: src/shred.c:936 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "" + +#: src/shred.c:1195 +#, c-format +msgid "%s: invalid file type" +msgstr "" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "" + +#: src/shred.c:1265 +#, c-format +msgid "%s: error truncating" +msgstr "" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "" + +#: src/shred.c:1412 +#, c-format +msgid "%s: renamed to %s" +msgstr "" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "" + +#: src/shred.c:1551 +#, c-format +msgid "%s: invalid number of passes" +msgstr "" + +#: src/shred.c:1568 +#, c-format +msgid "%s: invalid file size" +msgstr "" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "" + +#: src/sleep.c:52 +#, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" + +#: src/sleep.c:155 +#, fuzzy, c-format +msgid "invalid time interval `%s'" +msgstr "olukolongo olwa nkola: %s telukkirizibwa" + +#: src/sleep.c:166 src/tail.c:1031 +#, fuzzy +msgid "cannot read realtime clock" +msgstr "nnemedwa okukolawo fayiro eya bulijjo %s" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" + +#: src/sort.c:444 +#, fuzzy +msgid "cannot create temporary file" +msgstr "nnemedwa okukolawo fayiro eya bulijjo %s" + +#: src/sort.c:467 +msgid "open failed" +msgstr "" + +#: src/sort.c:487 src/sort.c:2496 +msgid "close failed" +msgstr "" + +#: src/sort.c:495 +#, fuzzy +msgid "write failed" +msgstr "fayiro eye ggete" + +#: src/sort.c:641 +#, fuzzy +msgid "sort size" +msgstr "bunene obwa buloka" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "" + +#: src/sort.c:972 +#, fuzzy +msgid "read failed" +msgstr "fayiro eya bulijjo" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "" + +#: src/sort.c:1574 +msgid "standard error" +msgstr "" + +#: src/sort.c:2032 +#, fuzzy, c-format +msgid "%s: invalid field specification `%s'" +msgstr "%s: akawayiro --%c tekakola\n" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "" + +#: src/sort.c:2064 +#, fuzzy, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "agumenti %s tekozesebwa ku %s" + +#: src/sort.c:2298 +#, fuzzy +msgid "invalid number after `-'" +msgstr "tekola nga ennamba eya guluupu %s" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +#, fuzzy +msgid "invalid number after `.'" +msgstr "tekola nga ennamba eya guluupu %s" + +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "" + +#: src/sort.c:2338 +#, fuzzy +msgid "invalid number at field start" +msgstr "tekola nga ennamba eya guluupu %s" + +#: src/sort.c:2342 src/sort.c:2370 +msgid "field number is zero" +msgstr "" + +#: src/sort.c:2351 +#, fuzzy +msgid "character offset is zero" +msgstr "akabonero tekali ku lukalala" + +#: src/sort.c:2366 +#, fuzzy +msgid "invalid number after `,'" +msgstr "tekola nga ennamba eya guluupu %s" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "" + +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" + +#: src/split.c:108 +#, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "" + +#: src/split.c:189 +#, fuzzy, c-format +msgid "creating file `%s'\n" +msgstr "nsoma %s" + +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "" + +#: src/split.c:394 +#, c-format +msgid "%s: invalid suffix length" +msgstr "" + +#: src/split.c:408 src/split.c:434 +#, fuzzy, c-format +msgid "%s: invalid number of bytes" +msgstr "tekola nga ennamba eya guluupu %s" + +#: src/split.c:421 +#, fuzzy, c-format +msgid "%s: invalid number of lines" +msgstr "tekola nga ennamba eya guluupu %s" + +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "" + +#: src/split.c:483 +#, fuzzy +msgid "invalid number" +msgstr "omukozesa ono takkirizibwa" + +#: src/stat.c:326 +#, fuzzy +msgid "*** invalid date/time ***" +msgstr "linnya erya guluupu terikkirizibwa %s" + +#: src/stat.c:608 +#, c-format +msgid "cannot read file system information for %s" +msgstr "" + +#: src/stat.c:684 +#, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" + +#: src/stty.c:504 +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" + +#: src/stty.c:570 +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:608 +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" + +#: src/stty.c:787 +msgid "only one device may be specified" +msgstr "" + +#: src/stty.c:882 +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "" + +#: src/stty.c:957 src/stty.c:1064 +#, fuzzy, c-format +msgid "invalid argument `%s'" +msgstr "agumenti %s tekozesebwa ku %s" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, fuzzy, c-format +msgid "missing argument to `%s'" +msgstr "agumenti %s ku %s ebuzabuza" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "" + +#: src/stty.c:1944 +#, fuzzy, c-format +msgid "invalid integer argument `%s'" +msgstr "agumenti %s tekozesebwa ku %s" + +#: src/su.c:289 +msgid "Password:" +msgstr "" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "" + +#: src/su.c:350 +#, fuzzy +msgid "cannot set groups" +msgstr "nnemedwa okukola stat ku %s" + +#: src/su.c:354 +#, fuzzy +msgid "cannot set group id" +msgstr "tekisoboka okukyusiza ku guluupu etaliwo" + +#: src/su.c:356 +#, fuzzy +msgid "cannot set user id" +msgstr "nnemedwa okukola stat ku %s" + +#: src/su.c:437 +#, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "" + +#: src/su.c:438 +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "" + +#: src/su.c:580 +#, fuzzy, c-format +msgid "warning: cannot change directory to %s" +msgstr "nnemedwa okukola wo tterekero %s" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "" + +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" + +#: src/sync.c:70 src/tty.c:112 +msgid "ignoring all arguments" +msgstr "" + +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr "" + +#: src/sys2.h:494 +msgid " --version output version information and exit\n" +msgstr "" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tac.c:139 +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "" + +#: src/tail.c:49 +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" + +#: src/tail.c:331 +#, fuzzy, c-format +msgid "closing %s (fd=%d)" +msgstr "mbikka %s" + +#: src/tail.c:391 +#, fuzzy, c-format +msgid "%s: cannot seek to offset %s" +msgstr "nnemedwa okukola lseek ku %s" + +#: src/tail.c:395 +#, fuzzy, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "nnemedwa okukola lseek ku %s" + +#: src/tail.c:400 +#, fuzzy, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "nnemedwa okukola lseek ku %s" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "" + +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "" + +#: src/tail.c:1356 +#, fuzzy, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "akabonero %s mu lukolongo olwa nkola %s tekakkirizibwa" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" + +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "" + +#: src/tail.c:1534 +#, fuzzy, c-format +msgid "%s: invalid PID" +msgstr "%s: akawayiro --%c tekakola\n" + +#: src/tail.c:1549 +#, fuzzy, c-format +msgid "%s: invalid number of seconds" +msgstr "tekola nga ennamba eya guluupu %s" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "" + +#: src/tee.c:33 +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "" + +#: src/tee.c:64 +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "" + +#: src/test.c:424 +msgid "before -lt" +msgstr "" + +#: src/test.c:432 +msgid "after -lt" +msgstr "" + +#: src/test.c:446 +msgid "before -le" +msgstr "" + +#: src/test.c:453 +msgid "after -le" +msgstr "" + +#: src/test.c:469 +msgid "before -gt" +msgstr "" + +#: src/test.c:476 +msgid "after -gt" +msgstr "" + +#: src/test.c:490 +msgid "before -ge" +msgstr "" + +#: src/test.c:497 +msgid "after -ge" +msgstr "" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "" + +#: src/test.c:526 +msgid "before -ne" +msgstr "" + +#: src/test.c:533 +msgid "after -ne" +msgstr "" + +#: src/test.c:549 +msgid "before -eq" +msgstr "" + +#: src/test.c:556 +msgid "after -eq" +msgstr "" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "" + +#: src/test.c:586 +msgid "-ot does not accept -l\n" +msgstr "" + +#: src/test.c:593 +#, fuzzy +msgid "unknown binary operator" +msgstr "Kiremya atategeerese mu sisitemu" + +#: src/test.c:781 +msgid "after -t" +msgstr "" + +#: src/test.c:979 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" + +#: src/test.c:1009 +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "" + +#: src/test.c:1125 +#, fuzzy +msgid "too many arguments\n" +msgstr "agumenti teziwera" + +#: src/touch.c:39 +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "" + +#: src/touch.c:164 src/touch.c:179 +#, c-format +msgid "creating %s" +msgstr "" + +#: src/touch.c:222 +#, fuzzy, c-format +msgid "cannot touch %s" +msgstr "nnemedwa okukola stat ku %s" + +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" + +#: src/touch.c:311 src/touch.c:331 +#, c-format +msgid "invalid date format %s" +msgstr "" + +#: src/touch.c:355 +msgid "cannot specify times from more than one source" +msgstr "" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "" + +#: src/touch.c:399 +msgid "file arguments missing" +msgstr "" + +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "" + +#: src/tr.c:331 +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" + +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" + +#: src/tr.c:566 +#, fuzzy +msgid "invalid backslash escape at end of string" +msgstr "akabonero %s mu lukolongo olwa nkola %s tekakkirizibwa" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "" + +#: src/tr.c:1025 +#, fuzzy, c-format +msgid "invalid character class `%s'" +msgstr "akabonero %s mu lukolongo olwa nkola %s tekakkirizibwa" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" + +#: src/true.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "" + +#: src/tty.c:63 +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "" + +#: src/uname.c:111 +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" + +#: src/uname.c:226 +msgid "cannot get system name" +msgstr "" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" + +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "" + +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr "" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" + +#: src/uniq.c:381 +#, fuzzy, c-format +msgid "error reading %s" +msgstr "nsoma %s" + +#: src/uniq.c:386 +#, fuzzy, c-format +msgid "error writing %s" +msgstr "mpandikira mu %s" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "" + +#: src/uniq.c:473 src/uniq.c:498 +msgid "invalid number of fields to skip" +msgstr "" + +#: src/uniq.c:507 +msgid "invalid number of bytes to skip" +msgstr "" + +#: src/uniq.c:516 +msgid "invalid number of bytes to compare" +msgstr "" + +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "" + +#: src/unlink.c:51 +#, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" + +#: src/unlink.c:99 +#, c-format +msgid "cannot unlink %s" +msgstr "" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr "" + +#: src/uptime.c:140 +msgid "am" +msgstr "" + +#: src/uptime.c:140 +msgid "pm" +msgstr "" + +#: src/uptime.c:142 +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#: src/uptime.c:144 +#, fuzzy, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "omukozesa ono takkirizibwa" +msgstr[1] "omukozesa ono takkirizibwa" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr "" + +#: src/uptime.c:191 src/users.c:118 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "" + +#: src/uptime.c:192 +#, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" + +#: src/users.c:35 +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "" + +#: src/users.c:119 +#, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "" + +#: src/wc.c:129 +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "" + +#: src/who.c:223 +msgid " old " +msgstr "" + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "" + +#: src/who.c:446 +msgid "clock change" +msgstr "" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" + +#: src/who.c:498 +msgid "NAME" +msgstr "" + +#: src/who.c:498 +msgid "LINE" +msgstr "" + +#: src/who.c:498 +msgid "TIME" +msgstr "" + +#: src/who.c:498 +msgid "IDLE" +msgstr "" + +#: src/who.c:498 +msgid "PID" +msgstr "" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "" + +#: src/who.c:499 +msgid "EXIT" +msgstr "" + +#: src/who.c:574 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" + +#: src/whoami.c:53 +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "" + +#: src/yes.c:49 +#, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" + +#, fuzzy +#~ msgid "\\%c: invalid escape" +#~ msgstr "omukozesa ono takkirizibwa" + +#~ msgid "program error" +#~ msgstr "kiremya mu pulogulamu" + +#, fuzzy +#~ msgid "cannot convert time" +#~ msgstr "nnemedwa okukola stat ku %s" + +#, fuzzy +#~ msgid "cannot format time" +#~ msgstr "nnemedwa okukola stat ku %s" diff --git a/src/apps/bin/coreutils-5.0/po/ms.gmo b/src/apps/bin/coreutils-5.0/po/ms.gmo new file mode 100644 index 0000000000..297b50e167 Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/ms.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/ms.po b/src/apps/bin/coreutils-5.0/po/ms.po new file mode 100644 index 0000000000..5c5653ca77 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/ms.po @@ -0,0 +1,6752 @@ +# Terjemahan core untuk Bahasa Melayu. ( chgrp,chmod,chown,cp,dd,df,ln,ls,mkdir,mknod, mv,rm,rmdir,sync,touch,dir,dircolors,du,install,mkfifo,shred,vdir ) +# Copyright (C) 2001 Free Software Foundation, Inc. +# Hasbullah Bin Pit , 2002. +# +msgid "" +msgstr "" +"Project-Id-Version: coreutils 4.5.3\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2002-10-20 10:57+0800\n" +"Last-Translator: Hasbullah Bin Pit (sebol) \n" +"Language-Team: Malay \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "hujah tidak sah %s bagi %s" + +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "hujah ambiguous %s bagi %s" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "Hujah sah adalah:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "ralat menulis" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "Ralat sistem yang tidak diketahui" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "fail kosong biasa" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "fail biasa" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "direktori" + +#: lib/file-type.c:48 +msgid "block special file" +msgstr "fail istimewa blok" + +#: lib/file-type.c:51 +msgid "character special file" +msgstr "fail istimewa aksara" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "fifo" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "pautan simbolik" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "soket" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "giliran mesej" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "objek memori terkongsi" + +#: lib/file-type.c:71 +msgid "weird file" +msgstr "fail pelik" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: opsyen `%s' adalah ambiguous\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: opsyen `--%s' tidak mengizinkan hujah\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: opsyen `%c%s' tidak mengizinkan hujah\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: opsyen `%s' memerlukan hujah\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: opensyen tidak dikenali `--%s'\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: opensyen tidak dikenali `%c%s'\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: opsyen tidak dibenarkan -- %c\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: opsyen tidak sah -- %c\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: opsyen memerlukan hujah -- %c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: opsyen `-W %s' adalah ambiguous\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: opsyen `-W %s' tidak mengizinkan hujan\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "saiz blok" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "tak dapat mencipta direktori %s" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%s wujud tapi ianya bukan direktori" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "tak dapat menukar hakmilik dan/atau kumpulan %s" + +#: lib/makepath.c:338 +#, c-format +msgid "cannot chdir to directory %s" +msgstr "tak dapat chdir ke direktori %s" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "tak dapat menukar keizinan %s" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "memori keletihan" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "`" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "`" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[yY]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[tT]" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "fungsi iconv tak boleh digunakan" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "fungsi iconv tidak ada" + +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "aksara di luar julat" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "tak dapat menukar U+%04X ke set aksara lokal" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "tak dapat menukar U+%04X ke set aksara lokal: %s" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "pengguna tidak sah" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "kumpulan tidak sah" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "tak boleh mendapatkan kumpulan logmasuk untuk UID numerik" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "tak dapat omit kedua-dua pengguna dan kumpulan" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "Ditulis oleh %s.\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "perbandingan rentetan gagal" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "Tetapkan LC_ALL='C' untuk mengatasi masalah." + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "Rentetan dibandingkan adalah %s dan %s." + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Cuba `%s --help' untuk maklumat lanjut .\n" + +#: src/basename.c:54 +#, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"Pengunaan: %s NAMA [SUFFIKS]\n" +" atau: %s OPSYEN\n" + +#: src/basename.c:59 +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"Lapor pepijat ke <%s>.\n" + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "terlalu sedikit hujah" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "terlalu banyak hujah" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "Penggunaan: %s [OPSYEN] [FAIL]...\n" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" +"\n" +" -B, --binary menggunakan penulisan binari ke peranti okonsol.\n" +"\n" + +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "tak dapat ioctl pada `%s'" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "output standard" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s: fail input adalah fail output" + +#: src/cat.c:858 +msgid "closing standard input" +msgstr "menutup input piawai" + +#: src/cat.c:861 +#, fuzzy +msgid "closing standard output" +msgstr "output standard" + +#: src/chgrp.c:93 +msgid "cannot change to null group" +msgstr "tak dapat menukar ke kumpulan null" + +#: src/chgrp.c:102 +#, c-format +msgid "invalid group name %s" +msgstr "nama kumpulan tak dah %s" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "nombor kumpulan" + +#: src/chgrp.c:109 +#, c-format +msgid "invalid group number %s" +msgstr "nombor kumpulan tak sah %s" + +#: src/chgrp.c:126 +#, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Penggunaan: %s [OPTION]... GROUP FILE...\n" +" atau: %s [OPTION]... --reference=RFILE FILE...\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, c-format +msgid "failed to get attributes of %s" +msgstr "gagal mendapatkan atribut bagi %s" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "mendapatkan atribut baru untuk %s" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "mod %s berubah kepada %04lo (%s)\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "gagal menukar mod %s kepada %04lo (%s)\n" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "mod %s kekal sebagai %04lo (%s)\n" + +#: src/chmod.c:179 +#, c-format +msgid "changing permissions of %s" +msgstr "menukar keizinan %s" + +#: src/chmod.c:242 +#, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Penggunaan: %s [OPTION]... MODE[,MODE]... FILE...\n" +" atau: %s [OPTION]... OCTAL-MODE FILE...\n" +" atau: %s [OPTION]... --reference=RFILE FILE...\n" + +#: src/chmod.c:248 +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" + +#: src/chmod.c:320 +#, c-format +msgid "invalid character %s in mode string %s" +msgstr "aksara tidak sah pada %s pada rentetan mod %s" + +#: src/chmod.c:361 +#, c-format +msgid "invalid mode string: %s" +msgstr "rentetan mod tidak sah: %s" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "kedua-duanya pautan simbolik %s dan rujukan telah berubah\n" + +#: src/chown-core.c:143 +#, c-format +msgid "changed ownership of %s to %s\n" +msgstr "hakmilik %s telah bertukar ke %s\n" + +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "kumpulan %s telah bertukar ke %s\n" + +#: src/chown-core.c:148 +#, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "gagal menukar hakmilik %s ke %s\n" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "gagal menukar kumpulan %s ke %s\n" + +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "hakmilik %s kekal sebagai %s\n" + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "kumpulan %s kekal sebagai %s\n" + +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "penukaran hakmilik %s" + +#: src/chown-core.c:327 +#, c-format +msgid "changing group of %s" +msgstr "penukaran kumpulan %s" + +#: src/chown-core.c:345 +#, c-format +msgid "unable to restore permissions of %s" +msgstr "tak dapat memulihkan keizinan %s" + +#: src/chown.c:99 +#, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" + +#: src/chroot.c:45 +#, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"Pengunaan: %s ROOTBARU [ARAHAN...]\n" +" atau: %s OPSYEN\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" +"Laksana ARAHAN dengan direktori root ditetapkan ke ROOTBARU.\n" +"\n" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" + +#: src/chroot.c:84 +#, fuzzy, c-format +msgid "cannot change root directory to %s" +msgstr "Gagal menukar direktori %s " + +#: src/chroot.c:87 +#, fuzzy +msgid "cannot chdir to root directory" +msgstr "tak dapat chdir ke direktori %s" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "" + +#: src/cksum.c:282 +#, fuzzy, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"Pengunaan: %s FAIL\n" +" atau: %s OPSYEN\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "Richard Stallman dan David MacKenzie" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "Penggunaan: %s [OPSYEN]...FAIL_KIRI FAIL_KANAN\n" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" + +#: src/copy.c:162 src/du.c:332 +#, c-format +msgid "cannot access %s" +msgstr "Tak dapat mengakses %s" + +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "tak dapat buka %s untuk dibaca" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, c-format +msgid "cannot fstat %s" +msgstr "tak dapat fstat %s" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, c-format +msgid "cannot remove %s" +msgstr "tak dapat membuang %s" + +#: src/copy.c:277 +#, c-format +msgid "cannot create regular file %s" +msgstr "tak dapat memcipta fail biasa %s" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, c-format +msgid "reading %s" +msgstr "membaca %s" + +#: src/copy.c:362 +#, c-format +msgid "cannot lseek %s" +msgstr "tak dapat lseek %s" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, c-format +msgid "writing %s" +msgstr "menulis %s" + +#: src/copy.c:409 src/copy.c:415 +#, c-format +msgid "closing %s" +msgstr "menutup %s" + +#: src/copy.c:610 +#, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: menindih %s, menindih mod %04lo? " + +#: src/copy.c:616 +#, c-format +msgid "%s: overwrite %s? " +msgstr "%s: tindih %s? " + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, c-format +msgid "cannot stat %s" +msgstr "tak dapat stat %s" + +#: src/copy.c:820 +#, c-format +msgid "omitting directory %s" +msgstr "" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "Amaran: fail sumber %s dinyatakan lebih drpd sekali" + +#: src/copy.c:866 src/ln.c:237 +#, c-format +msgid "%s and %s are the same file" +msgstr "%s dan %s adalah fail yang sama" + +#: src/copy.c:876 +#, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "tak boleh menindih bukan-direktori %s dengan direktori %s" + +#: src/copy.c:893 +#, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "tak akan menindih baru-dicipta %s dengan %s" + +#: src/copy.c:904 +#, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "tak boleh menindih direktori %s dengan direktori" + +#: src/copy.c:965 +#, c-format +msgid "cannot overwrite directory %s" +msgstr "tak boleh menindih direktori %s" + +#: src/copy.c:974 +#, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "tak dapat pindah direktori ke bukan-direktori: %s -> %s" + +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "backup %s akan memusnahkan sumber; %s tidak dipindahkan" + +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "backup %s akan memusnahkan sumber; %s tidak disalin" + +#: src/copy.c:1013 src/ln.c:273 +#, c-format +msgid "cannot backup %s" +msgstr "tak dapat backup %s" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr " (backup: %s)" + +#: src/copy.c:1099 +#, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "tak dapat salin direktori, %s ke dirinya, %s" + +#: src/copy.c:1106 +#, c-format +msgid "will not create hard link %s to directory %s" +msgstr "tidak akan mencipta pautan keras %s ke direktori %s" + +#: src/copy.c:1132 +#, c-format +msgid "cannot create hard link %s to %s" +msgstr "tak dapat mencipta pautan keras %s ke %s" + +#: src/copy.c:1186 +#, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "tak dapat pindahkan %s ke subdirektori dirinya, %s" + +#: src/copy.c:1229 +#, c-format +msgid "cannot move %s to %s" +msgstr "tak dapat pindahkan %s ke %s" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "pindahan antara-peranti gagak: %s ke %s; tak dapat memindah sasaran" + +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "tak boleh salin pautan simbolik cyclic %s" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "%s: hanya boleh membuat pautan simbolik relatif pada direktori semasa" + +#: src/copy.c:1353 +#, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "tak dapat mencipta pautan simbolik %s ke %s" + +#: src/copy.c:1364 +#, c-format +msgid "cannot create link %s" +msgstr "tak boleh mencipta pautan %s" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, c-format +msgid "cannot create fifo %s" +msgstr "tak boleh mencipta fifo %s" + +#: src/copy.c:1403 +#, c-format +msgid "cannot create special file %s" +msgstr "tak boleh mencipta fail istimewa %s" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, c-format +msgid "cannot read symbolic link %s" +msgstr "tak dapat membaca pautan simbolik %s" + +#: src/copy.c:1440 +#, c-format +msgid "cannot create symbolic link %s" +msgstr "tak dapat mencipta pautan simbolik %s" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, c-format +msgid "failed to preserve ownership for %s" +msgstr "gagal mengekalkan hakmilik bagi %s" + +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "%s mempunyai jenis fail yang tidak diketahui" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "mengekalkan masa pada %s" + +#: src/copy.c:1531 +#, c-format +msgid "failed to preserve authorship for %s" +msgstr "gagal mengekalkan hakmilik bagi %s" + +#: src/copy.c:1549 +#, c-format +msgid "setting permissions for %s" +msgstr "menetapkan keizinan pada %s" + +#: src/copy.c:1571 src/ln.c:326 +#, c-format +msgid "cannot un-backup %s" +msgstr "tak dapat nyahbackup %s" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s -> %s (nyahbackup)\n" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "Torbjorn Granlund, David MacKenzie, dan Jim Meyering" + +#: src/cp.c:164 src/mv.c:311 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"Penggunaan: %s [OPSYEN]... SUMBER DEST\n" +" atau: %s [OPSYEN]... SUMBER... DIREKTORI\n" +" atau: %s [OPSYEN]... --target-directory=DIREKTORI SUMBER...\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Salin SUMBER ke DEST, atau banyak SUMBER ke DIREKTORI.\n" +"\n" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" +"Hujah mandatori kepada opsyen panjang andalah mandatori bagi opsyen pendek " +"juga.\n" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" + +#: src/cp.c:209 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" + +#: src/cp.c:221 +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" + +#: src/cp.c:230 +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" + +#: src/cp.c:239 +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" + +#: src/cp.c:325 +#, c-format +msgid "failed to preserve times for %s" +msgstr "gagal mengekalkan masa bagi %s" + +#: src/cp.c:349 +#, c-format +msgid "failed to preserve permissions for %s" +msgstr "gagal mengekalkan keizinan bagi %s" + +#: src/cp.c:434 +#, c-format +msgid "cannot make directory %s" +msgstr "tak dapat cipta direktori %s" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +msgid "missing file argument" +msgstr "kehilangan hujah fail" + +#: src/cp.c:498 +msgid "missing destination file" +msgstr "kehilangan fail destinasi" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "mengakses %s" + +#: src/cp.c:546 +#, c-format +msgid "%s: specified target is not a directory" +msgstr "%s: Sasaran yang dinyatakan adalah bukan direktori" + +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "menyalin banyak fail, tetapi hujah terakhir %s adalah bukan direktori" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "bila mengekalkan path, destinasi mestilah direktori" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" + +#: src/cp.c:972 src/ln.c:464 +msgid "symbolic links are not supported on this system" +msgstr "pautan simbolik tidak disokong pada sistem ini" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "tak dapat buat kecua-dua pautan simbolik dan keras" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "jenis backup" + +#: src/csplit.c:41 +#, fuzzy +msgid "Stuart Kemp and David MacKenzie" +msgstr "Mike Parker and David MacKenzie" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "ralat membaca" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "input menghilang" + +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s: bilangan baris di luar julat" + +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: `%s': bilangan baris di luar julat" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr " pada ulangan %d\n" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s: `%s': padanan tak dijumpai" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "ralat pada carian ungkapan biasa (regexp)" + +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "ralat menulis bagi `%s'" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "%s: `+' atau `-' dijangka selepas pemisah" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s: integer dijangka selepas `%c'" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "%s: `}' diperluka untuk kiraan ulangan" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "%s}: integer diperlukan diantara `{' dan `}'" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s: pemisah penutup `%c' hilang" + +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: ungkapan biasa (regexp) tidak sah: %s" + +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "%s: corak tidak sah" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s: bilangan baris mesti lebih besar drpd sifar" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "" + +#: src/csplit.c:1320 +#, fuzzy, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "penukaran tidak sah: %s" + +#: src/csplit.c:1323 +#, fuzzy, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "penukaran tidak sah: %s" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "" + +#: src/csplit.c:1441 +#, fuzzy, c-format +msgid "%s: invalid number" +msgstr "nombor tidak sah %s" + +#: src/csplit.c:1496 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "Penggunaan: %s [OPSYEN]... FAIL...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" + +#: src/cut.c:39 +#, fuzzy +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "Torbjorn Granlund, David MacKenzie, dan Jim Meyering" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "Penggunaan: %s [OPSYEN]...[FAIL]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +#, fuzzy +msgid "invalid byte or field list" +msgstr "format tarikh tidak sah %s" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "" + +#: src/cut.c:670 +#, fuzzy +msgid "missing list of positions" +msgstr "kehilangan fail destinasi" + +#: src/cut.c:679 +#, fuzzy +msgid "missing list of fields" +msgstr "kehilangan fail destinasi" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "" + +#: src/cut.c:720 +msgid "an input delimiter may be specified only when operating on fields" +msgstr "" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" + +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" +"Penggunaan: %s [OPSYEN]... [+FORMAT]\n" +" atau: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" +"Papar masa semasa dalam FORMAT diberi, atau tetapkan tarikh sistem.\n" +"\n" +" -d, --date=RENTETAN papar masa diterangkan oleh RENTETAN, bukan " +"`now'\n" +" -f, --file=DATEFILE seperti --date sekali bagi setiap baris " +"DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output tarikh/masa dalam format ISO " +"8601.\n" +" TIMESPEC=`date' untuk tarikh sahaja,\n" +" `hours', `minutes', atau `seconds' baru tarikh \n" +" dan masa untuk menunjukkan kejituan.\n" +" --iso-8601 tanpa TIMESPEC default kepada " +"`date'.\n" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" +" -r, --reference=FAIL papar tarikh ubahsuai bagi FAIL\n" +" -R, --rfc-822 output rentetan tarikh serasi RFC-822\n" +" -s, --set=RENTETAN tetapkan masa dihuraikan oleh RENTETAN\n" +" -u, --utc, --universal cetak atau tetapkan Coordinated Universal Time\n" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "input piawai" + +#: src/date.c:268 src/date.c:460 +#, fuzzy, c-format +msgid "invalid date `%s'" +msgstr "mod tak sah %s" + +#: src/date.c:364 +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "" + +#: src/date.c:377 +#, fuzzy, c-format +msgid "too many non-option arguments: %s%s" +msgstr "terlalu banyak hujah" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" + +#: src/date.c:397 +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "" + +#: src/date.c:433 +msgid "undefined" +msgstr "" + +#: src/date.c:435 +#, fuzzy +msgid "cannot get time of day" +msgstr "Tak dapat tetapkan setem masa bagi %s" + +#: src/date.c:468 +#, fuzzy +msgid "cannot set date" +msgstr "tak dapat stat %s" + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "Pengunaan: %s [OPSYEN]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "%s+%s rekod masuk\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "%s+%s rekod keluar\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "" + +#: src/dd.c:382 +#, c-format +msgid "closing input file %s" +msgstr "menutup fail input %s" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "" + +#: src/dd.c:469 +#, c-format +msgid "writing to %s" +msgstr "Menulis ke %s." + +#: src/dd.c:501 +#, c-format +msgid "invalid conversion: %s" +msgstr "penukaran tidak sah: %s" + +#: src/dd.c:557 +#, c-format +msgid "unrecognized option %s" +msgstr "opsyen tidak dikenali %s" + +#: src/dd.c:610 +#, c-format +msgid "unrecognized option %s=%s" +msgstr "opsyen tidak dikenali %s=%s" + +#: src/dd.c:616 +#, c-format +msgid "invalid number %s" +msgstr "nombor tidak sah %s" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" + +#: src/dd.c:1170 src/dd.c:1188 +#, c-format +msgid "opening %s" +msgstr "Membuka %s" + +#: src/dd.c:1196 +msgid "file offset out of range" +msgstr "" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "" + +#: src/df.c:49 +#, fuzzy +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "Torbjorn Granlund, David MacKenzie, dan Jim Meyering" + +#: src/df.c:153 +#, fuzzy +msgid "Filesystem Type" +msgstr "Sistem fail" + +#: src/df.c:155 +#, fuzzy +msgid "Filesystem " +msgstr "Sistem fail" + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr "" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr "" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr "" + +#: src/df.c:167 +#, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr "" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr "" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr "dilekapkan pada\n" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" +" -a, --all termasuk sistemfail yang mempunyai 0 blok\n" +" -B, --block-size=SIZE guna blok SIZE-byte\n" +" -h, --human-readable cetak saiz dalam format bolehdibaca manusia (e.g., " +"1K 234M 2G)\n" +" -H, --si sebaliknya, guna kuasa 1000 bukannya 1024\n" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" +" -i, --inodes senarai maklimat inod selain drpd penggunaan blok\n" +" -k seperti --block-size=1K\n" +" -l, --local hadkan penyenaraian ke sistem fail lokal\n" +" --no-sync jangan panggil sync sebelum mendapat maklumat " +"penggunaan (default)\n" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" +" -P, --portability menggunakan format output POSIX\n" +" --sync panggil sync sebelum mendapatkan maklumat " +"penggunaan\n" +" -t, --type=JENIS hadkan penyenaraian ke sistemfail jenis JENIS\n" +" -T, --print-type cetak jenis sistemfail\n" +" -x, --exclude-type=TYPE hadkan penyenaraian ke ke sistemfail bukan jenis " +"JENIS\n" +" -v (diabaikan)\n" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" +"\n" +"SAIZ boleh jadi (atau boleh jadi intege diikuti dengan berikut) satu drpd " +"berikut:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, dan lagi bagi G, T, P, E, Z, Y.\n" + +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "" + +#: src/df.c:903 +msgid "Warning: " +msgstr "Amaran: " + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "" + +#: src/dircolors.c:103 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "Penggunaan: %s [OPSYEN]...[FAIL]...\n" + +#: src/dircolors.c:104 +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"Arahan output untuk menetapkan persekitaran pembolehubah LS_COLORS.\n" +"\n" +"Tentukan format output:\n" +" -b, --sh, --bourne-shell kod output shell Bourne shell menetapkan " +"LS_COLORS\n" +" -c, --csh, --c-shell kod output shell C menetapkan LS_COLORS\n" +" -p, --print-database output default\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" + +#: src/dircolors.c:299 +#, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "" + +#: src/dircolors.c:371 +#, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s:%lu: katakunci tidak dikenali %s" + +#: src/dircolors.c:372 +msgid "" +msgstr "" + +#: src/dircolors.c:467 +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "" +"tiada pembolehubah persekitaran SHELL; dan tiada opsyen jenis shell diberi" + +#: src/dirname.c:33 src/pathchk.c:59 +#, fuzzy +msgid "David MacKenzie and Jim Meyering" +msgstr "Torbjorn Granlund, David MacKenzie, dan Jim Meyering" + +#: src/dirname.c:46 +#, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"Pengunaan: %s FAIL\n" +" atau: %s OPSYEN\n" + +#: src/dirname.c:51 +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" + +#: src/du.c:49 +#, fuzzy +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "Torbjorn Granlund, David MacKenzie, dan Jim Meyering" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" +"Ringkasan penggunaan cakera bagi setiap FAIL, rekursif bagi direktori.\n" +"\n" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" + +#: src/du.c:337 +#, fuzzy, c-format +msgid "cannot change to parent of directory %s" +msgstr "Gagal menukar direktori %s " + +#: src/du.c:345 +#, c-format +msgid "cannot change to directory %s" +msgstr "Gagal menukar direktori %s " + +#: src/du.c:352 +#, fuzzy, c-format +msgid "cannot read directory %s" +msgstr "tak dapat mencipta direktori %s" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "jumlah" + +#: src/du.c:641 +#, c-format +msgid "invalid maximum depth %s" +msgstr "Kedalaman maksimum %s" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "" + +#: src/echo.c:77 +#, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "Penggunaan: %s [OPSYEN]...[RENTETAN]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/env.c:93 +msgid "Richard Mlynarik and David MacKenzie" +msgstr "Richard Mlynarik dan David MacKenzie" + +#: src/env.c:119 +#, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "Penggunaan: %s [OPSYEN]... [-] [NAMA=NILAI]...[ARAHAN [HUJAH]...]\n" + +#: src/env.c:122 +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "" + +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "" + +#: src/expr.c:90 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"Pengunaan: %s UNGKAPAN\n" +" atau: %s OPSYEN\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +#, fuzzy +msgid "syntax error" +msgstr "ralat menulis" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" + +#: src/expr.c:586 src/expr.c:625 +msgid "non-numeric argument" +msgstr "hujah bukan-numerik" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "dibahagi dengan sifar" + +#: src/factor.c:74 +#, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"Pengunaan: %s [NOMBOR]...\n" +" atau: %s OPSYEN\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" +"Cetak faktor perdana bagi setiap NOMBOR.\n" +"\n" + +#: src/factor.c:85 +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" +"\n" +" Cetak faktor perdana bagi integer NOMBOR dinyatakan. Jika tiada hujah\n" +" dinyatakan pada arahan baris. ia ia akan dibaca drpd input piawai.\n" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "`%s' adalah bukan integer positif yang sah" + +#: src/false.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Penggunaan: %s [abaikan hujag arahan baris]\n" +" atau: %s OPSYEN\n" +"Keluar dengan kod status menunjukkan kegagalan.\n" +"\n" +"Nama opsyen ini tidak boleh menjadi satu singkatan.\n" +"\n" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "Penggunaan: %s [-DIGIT][OPSYEN]...[FAIL]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" + +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" + +#: src/fmt.c:345 +#, c-format +msgid "invalid width option: `%s'" +msgstr "opsyen lebar tidak sah: `%s'" + +#: src/fmt.c:385 +#, c-format +msgid "invalid width: `%s'" +msgstr "lebar tidak sah: `%s'" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" + +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "" + +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "bilangan kolum tidak sah: `%s'" + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" + +#: src/head.c:190 +#, fuzzy, c-format +msgid "cannot reposition file pointer for %s" +msgstr "tak memperolehi setem masa bagi %s" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "" + +#: src/head.c:257 src/tail.c:1390 +#, fuzzy +msgid "number of lines" +msgstr "nombor hujah yang salah" + +#: src/head.c:257 src/tail.c:1391 +#, fuzzy +msgid "number of bytes" +msgstr "nombor hujah yang salah" + +#: src/head.c:264 src/tail.c:1478 +#, fuzzy +msgid "invalid number of lines" +msgstr "nombor tidak sah %s" + +#: src/head.c:265 src/tail.c:1479 +#, fuzzy +msgid "invalid number of bytes" +msgstr "nombor tidak sah %s" + +#: src/head.c:341 +#, fuzzy, c-format +msgid "unrecognized option `-%c'" +msgstr "opsyen tidak dikenali %s" + +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "" + +#: src/hostid.c:48 +#, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" +"Penggunaan: %s\n" +" atau: %s OPSYEN\n" +"Cetak pengcam numerik (dalam heksadesimal) bagi hos semasa.\n" +"\n" + +#: src/hostname.c:67 +#, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" +"Penggunaan: %s [NAMA]\n" +" atau: %s OPSYEN\n" +"Cetak atau tetapkan namahos bagi sistem semasa.\n" +"\n" + +#: src/hostname.c:104 +#, c-format +msgid "cannot set hostname to `%s'" +msgstr "Tak dapat tetapkan namahos ke `%s'" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "tak dapat menetapkan namahos, sistem ini kekurangan fungsi" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "tak dapat menentukan namahos" + +#: src/id.c:36 +msgid "Arnold Robbins and David MacKenzie" +msgstr "Arnold Robbins dan David MacKenzie" + +#: src/id.c:87 +#, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "Penggunaan: %s [OPSYEN]...[NAMAPENGGUNA]\n" + +#: src/id.c:88 +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" + +#: src/id.c:162 +#, fuzzy +msgid "cannot print only user and only group" +msgstr "tak dapat omit kedua-dua pengguna dan kumpulan" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "" + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "" + +#: src/id.c:235 +#, fuzzy, c-format +msgid "cannot find name for group ID %u" +msgstr "tak dapat menukar hakmilik dan/atau kumpulan %s" + +#: src/id.c:273 +#, fuzzy +msgid "cannot get supplemental group list" +msgstr "tak dapat menukar ke kumpulan null" + +#: src/id.c:385 +msgid " groups=" +msgstr "" + +#: src/install.c:269 +msgid "the strip option may not be used when installing a directory" +msgstr "" + +#: src/install.c:292 src/mkdir.c:140 +#, c-format +msgid "invalid mode %s" +msgstr "mod tak sah %s" + +#: src/install.c:307 src/install.c:371 +#, c-format +msgid "creating directory %s" +msgstr "" + +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "" + +#: src/install.c:435 +#, c-format +msgid "%s is a directory" +msgstr "%s adalah satu direktori" + +#: src/install.c:495 +#, c-format +msgid "cannot obtain time stamps for %s" +msgstr "tak memperolehi setem masa bagi %s" + +#: src/install.c:507 +#, c-format +msgid "cannot set time stamps for %s" +msgstr "Tak dapat tetapkan setem masa bagi %s" + +#: src/install.c:528 +msgid "fork system call failed" +msgstr "panggilan sistem fork() gagal" + +#: src/install.c:532 +msgid "cannot run strip" +msgstr "" + +#: src/install.c:539 +msgid "strip failed" +msgstr "" + +#: src/install.c:560 +#, c-format +msgid "invalid user %s" +msgstr "pengguna tidak sah %s" + +#: src/install.c:578 +#, c-format +msgid "invalid group %s" +msgstr "kumpulan tidak sah %s" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"Penggunaan: %s [OPSYEN]... SUMBER DEST (format pertama)\n" +" atau: %s [OPSYEN]... SUMBER... DIREKTORI (format ke dua)\n" +" atau: %s -d [OPSYEN]... DIREKTORI... (format ke tiga)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "Penggunaan: %s [OPSYEN]...FAIL1 FAIL2\n" + +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" + +#: src/join.c:165 +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" + +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" + +#: src/join.c:645 +#, fuzzy, c-format +msgid "invalid field specifier: `%s'" +msgstr "saiz tab tidak sah: %s" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, fuzzy, c-format +msgid "invalid field number: `%s'" +msgstr "nombor tidak sah %s" + +#: src/join.c:672 +#, fuzzy, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "nombor tidak sah %s" + +#: src/join.c:792 +#, fuzzy, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "nombor tidak sah %s" + +#: src/join.c:801 +#, fuzzy, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "nombor tidak sah %s" + +#: src/join.c:833 +#, fuzzy +msgid "too many non-option arguments" +msgstr "terlalu banyak hujah" + +#: src/join.c:855 +#, fuzzy +msgid "too few non-option arguments" +msgstr "terlalu sedikit hujah" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" +"Penggunaan: %s [-s ISYARAT | -ISYARAT] PID...\n" +" atau: %s -l [ISYARAT]...\n" +" atau: %s -t [ISYARAT]...\n" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" +"Menghantar isyarat ke proses, atau senaraikan isyarat.\n" +"\n" + +#: src/kill.c:106 +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" + +#: src/kill.c:163 +#, fuzzy, c-format +msgid "%s: invalid signal" +msgstr "%s: fail saiz tidak sah" + +#: src/kill.c:262 +#, c-format +msgid "missing operand after `%s'" +msgstr "" + +#: src/kill.c:274 +#, fuzzy, c-format +msgid "%s: invalid process id" +msgstr "%s: fail saiz tidak sah" + +#: src/kill.c:327 +#, fuzzy, c-format +msgid "invalid option -- %c" +msgstr "%s: opsyen tidak sah -- %c\n" + +#: src/kill.c:336 +#, c-format +msgid "%s: multiple signals specified" +msgstr "" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "" + +#: src/link.c:51 +#, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"Penggunaan: %s FAIL1 FAIL2\n" +" atau: %s OPSYEN\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" +"Panggil fungsi pautan untuk mencipta pautan bernama FAIL2 ke FILE1 sedia " +"ada.\n" +"\n" + +#: src/link.c:98 +#, c-format +msgid "cannot create link %s to %s" +msgstr "tak dapat mencipta pautan %s ke %s" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "Mike Parker and David MacKenzie" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "" +"%s: amaran: membuat pautan keras ke pautan simbolik adalah tidak portable" + +#: src/ln.c:174 +#, c-format +msgid "%s: hard link not allowed for directory" +msgstr "%s: pautan keras tidak diizinkan bagi direktori" + +#: src/ln.c:246 +#, c-format +msgid "%s: cannot overwrite directory" +msgstr "%s: tak dapat menindih direktori" + +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "%s: mengganti %s? " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: Fail wujud" + +#: src/ln.c:304 +#, c-format +msgid "create symbolic link %s to %s" +msgstr "cipta pautan simbolik %s ke %s" + +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "cipta pautan keras %s ke %s" + +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "cipta pautan simbolik %s ke %s" + +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "mencipta pautan keras %s ke %s" + +#: src/ln.c:339 +#, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"Penggunaan: %s [OPSYEN]... SASARAN [NAMA_PAUTAN]\n" +" atau: %s [OPSYEN]... SASARAN... DIREKTORI\n" +" atau: %s [OPSYEN]... --target-directory=DIREKTORI SASARAN...\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" + +#: src/ln.c:521 +#, c-format +msgid "%s: specified target directory is not a directory" +msgstr "%s: Direktori sasaran yang dinyatakan adalah bukan direktori" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "bila membuat banyak pautan, hujah terkahir mestilah direktori" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "Pengunan: %s [OPSYEN]\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" +"Cetak nama bagi pengguna semasa.\n" +"\n" + +#: src/logname.c:99 +#, c-format +msgid "%s: no login name\n" +msgstr "%s: tiada nama logmasuk\n" + +#: src/ls.c:673 +msgid "%b %e %Y" +msgstr "%b %e %Y" + +#: src/ls.c:681 +msgid "%b %e %H:%M" +msgstr "%b %e %H:%M" + +#: src/ls.c:1307 +#, fuzzy, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "" +"mengabai nilai pembolehubah persekitaran QUOTING_STYLE yang tidak sah: %s" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "mengabai lebar yg. tak sah pada pembolehubah persekitaran COLUMNS: %s" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "" +"mengabai saiz tab yg. tak sah pada pembolehubah persekitaran TABSIZE: %s" + +#: src/ls.c:1482 +#, c-format +msgid "invalid line width: %s" +msgstr "lebar baris tidak sah: %s" + +#: src/ls.c:1556 +#, c-format +msgid "invalid tab size: %s" +msgstr "saiz tab tidak sah: %s" + +#: src/ls.c:1722 +#, c-format +msgid "invalid time style format %s" +msgstr "format gaya tarikh tidak sah %s" + +#: src/ls.c:2054 +#, c-format +msgid "unrecognized prefix: %s" +msgstr "prefix tidak dikenali: %s" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "nilai pembolehubah persekitaran LS_COLORS tidak boleh dihantar" + +#: src/ls.c:2145 +#, c-format +msgid "cannot determine device and inode of %s" +msgstr "tak dapat menentukan peranti dan inod bagi %s" + +#: src/ls.c:2155 +#, c-format +msgid "not listing already-listed directory: %s" +msgstr "tak dapat menyenaraikan direktori tersedia-tersenarai: %s" + +#: src/ls.c:2208 src/remove.c:929 +#, c-format +msgid "reading directory %s" +msgstr "membaca direktori %s" + +#: src/ls.c:2603 +#, c-format +msgid "cannot compare file names %s and %s" +msgstr "tak boleh banding nama fail %s dan %s" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" +"Senarai maklumat tentang FAIL (direktori semasa secara default).\n" +"Inih semasukan mengikut abjad jika tiada -cftuSUX atau --sort.\n" +"\n" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" +" -a, --all jangan sorok kemasukan bermula dengan .\n" +" -A, --almost-all jangan senarai . dan ..\n" +" --author cetak penulis bagi setiap fail\n" +" -b, --escape cetak escape oktal bagi aksara bukangrafik\n" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" +" --block-size=SAIZ guna blok SAIZ-byte\n" +" -B, --ignore-backups jangan senarai kemasukan berakhir dengan ~\n" +" -c dengan -lt: isih dengan, dan papar, ctime " +"(masa\n" +" terkahir diubahsuai drpd maklumat status " +"fail)\n" +" dengan -l: papar ctime dan isih mengikut " +"nama\n" +" sebaliknya: isih mengikut ctime\n" + +#: src/ls.c:3784 +#, fuzzy +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" +" -C senarai kemasukan mengikut kolum\n" +" --color[=BILA] kawal samada warna digunakan untuk membezakan \n" +" jenis fail . BILA boleh jadi `never', " +"`always', atau `auto'\n" +" -d, --directory senarai kemasukan direktori selain drpd " +"kandungannya\n" +" -D, --dired jana output direka untuk mod dired Emacs\n" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" +" -f jangan isih, hidupkan -aU, matikan -lst\n" +" -F, --classify tambah penunjuk (satu drpd */=@|) ke kemasukan\n" +" --format=PERKATAAN rentas -x, koma -m, mengufuk -x, panjang -l,\n" +" kolum-tunggal -1, verbose -l, menegak -C\n" +" --full-time seperti -l --time-style=full-iso\n" + +#: src/ls.c:3799 +#, fuzzy +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" +" -g seperti -l, tapi tak senaraikan pemilik\n" +" -G, --no-group tidak papar maklumat kumpulan\n" +" -h, --human-readable cetak saiz dlm format bolehdibaca manusia (e.g., 1K " +"234M 2G)\n" +" --si sebaliknya, guna kuasaf 1000 bukan 1024\n" +" -H, --dereference-command-line ikut pautan simbolik pada arahan baris\n" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" + +#: src/ls.c:3831 +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" +" -r, --reverse turutan menyongsang ketika mengisih\n" +" -R, --recursive senarai subdirektori secara rekursif\n" +" -s, --size cetak saiz bagi setiap fail, dalam blok\n" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "Ulrich Drepper dan Scott Miller" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "GAGAL" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "" + +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%s: ralat penulisan" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "" + +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "" + +#: src/md5sum.c:473 +msgid "file" +msgstr "fail" + +#: src/md5sum.c:473 +msgid "files" +msgstr "fail" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "" + +#: src/mkdir.c:61 +#, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "Penggunaan; %s [OPSYEN] DIREKTORI...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" + +#: src/mkdir.c:69 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" + +#: src/mkdir.c:113 +#, c-format +msgid "created directory %s" +msgstr "direktori %s dicipta" + +#: src/mkdir.c:190 +#, c-format +msgid "cannot set permissions of directory %s" +msgstr "tak dapat menetapkan keizinan direktori %s" + +#: src/mkfifo.c:55 +#, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "Penggunaan: %s [OPSYEN] NAMA...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" + +#: src/mkfifo.c:63 src/mknod.c:64 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "fail fifo tidak disokong" + +#: src/mkfifo.c:123 src/mknod.c:127 +msgid "invalid mode" +msgstr "mod tak sah" + +#: src/mkfifo.c:142 +#, c-format +msgid "cannot set permissions of fifo %s" +msgstr "tak dapat menetapkan keizinan bagi fifo %s" + +#: src/mknod.c:55 +#, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "Penggunaan: %s [OPSYEN]... NAMA JENIS [MAJOR MINOR]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" + +#: src/mknod.c:76 +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" + +#: src/mknod.c:141 +msgid "wrong number of arguments" +msgstr "nombor hujah yang salah" + +#: src/mknod.c:153 +msgid "block special files not supported" +msgstr "fail istimewa blok tidak disokong" + +#: src/mknod.c:162 +msgid "character special files not supported" +msgstr "fail istimewa aksara tidak disokong" + +#: src/mknod.c:171 +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" +"bila mencipta fail istimewa blok, nombor peranti major\n" +" dan minor mesti dinyatakan" + +#: src/mknod.c:186 +#, c-format +msgid "invalid major device number %s" +msgstr "nombor peranti major tidak sah %s" + +#: src/mknod.c:191 +#, c-format +msgid "invalid minor device number %s" +msgstr "nombor peranti minor tidak sah %s" + +#: src/mknod.c:196 +#, c-format +msgid "invalid device %s %s" +msgstr "peranti tidak sah %s %s" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "nombor peranti major dan minor tak boleh dinyatakan pada fail fifo" + +#: src/mknod.c:231 +#, c-format +msgid "cannot set permissions of %s" +msgstr "tak dapat menetapkan keizinan bagi %s" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Tukarnama SUMBER ke DEST, atau pindahkan SUMBER ke DIREKTORI.\n" +"\n" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" + +#: src/mv.c:339 +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" + +#: src/mv.c:467 +#, c-format +msgid "specified target, %s is not a directory" +msgstr "Sasaran yang dinyatakan, %s adalah bukan direktori" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "bila memindah banyak fail, hujah terakhir mestilah direktori" + +#: src/nice.c:67 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "Penggunaan: %s [OPSYEN] NAMA...\n" + +#: src/nice.c:68 +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" + +#: src/nice.c:109 src/nice.c:122 +#, c-format +msgid "invalid option `%s'" +msgstr "opsyen tidak sah `%s'" + +#: src/nice.c:147 +#, fuzzy, c-format +msgid "invalid priority `%s'" +msgstr "kumpulan tidak sah %s" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "arahan mesti diberi dengan satu penyesuaian" + +#: src/nice.c:178 src/nice.c:187 +#, fuzzy +msgid "cannot get priority" +msgstr "Gagal menukar direktori %s " + +#: src/nice.c:192 +#, fuzzy +msgid "cannot set priority" +msgstr "tak dapat menetapkan keizinan bagi %s" + +#: src/nl.c:39 +#, fuzzy +msgid "Scott Bartram and David MacKenzie" +msgstr "Mike Parker and David MacKenzie" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" + +#: src/nl.c:504 +#, fuzzy, c-format +msgid "invalid starting line number: `%s'" +msgstr "nombor peranti major tidak sah %s" + +#: src/nl.c:514 +#, fuzzy, c-format +msgid "invalid line number increment: `%s'" +msgstr "lebar baris tidak sah: %s" + +#: src/nl.c:527 +#, fuzzy, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "nombor tidak sah %s" + +#: src/nl.c:541 +#, fuzzy, c-format +msgid "invalid line number field width: `%s'" +msgstr "lebar baris tidak sah: %s" + +#: src/od.c:287 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"Penggunaan: %s [OPTION]... GROUP FILE...\n" +" atau: %s [OPTION]... --reference=RFILE FILE...\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/od.c:299 +#, fuzzy +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "" +"Hujah mandatori kepada opsyen panjang andalah mandatori bagi opsyen pendek " +"juga.\n" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" + +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "jenis rentetan m tidak sah `%s'" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" + +#: src/od.c:917 +#, fuzzy, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "aksara tidak sah pada %s pada rentetan mod %s" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "" + +#: src/od.c:1717 +msgid "skip argument" +msgstr "Langkah hujah" + +#: src/od.c:1725 +msgid "limit argument" +msgstr "Had hujah" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "%s adalah terlalu besar" + +#: src/od.c:1804 +msgid "width specification" +msgstr "" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "" + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "" + +#: src/paste.c:50 +#, fuzzy +msgid "David M. Ihnat and David MacKenzie" +msgstr "Mike Parker and David MacKenzie" + +#: src/paste.c:208 +#, fuzzy +msgid "standard input is closed" +msgstr "input piawai" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" + +#: src/pathchk.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "Penggunaan: %s [OPSYEN] NAMA...\n" + +#: src/pathchk.c:147 +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" + +#: src/pathchk.c:237 +#, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "" + +#: src/pathchk.c:257 +#, fuzzy, c-format +msgid "`%s' is not a directory" +msgstr "%s adalah satu direktori" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "" + +#: src/pathchk.c:355 +#, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "" + +#: src/pathchk.c:381 +#, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "" + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "" + +#: src/pinky.c:298 +msgid "???\n" +msgstr "" + +#: src/pinky.c:318 +#, fuzzy +msgid "Directory: " +msgstr "direktori" + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "" + +#: src/pinky.c:341 +msgid "Project: " +msgstr "" + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "" + +#: src/pinky.c:386 +msgid "Login" +msgstr "" + +#: src/pinky.c:388 +msgid "Name" +msgstr "" + +#: src/pinky.c:389 +msgid " TTY" +msgstr "" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "" + +#: src/pinky.c:392 +msgid "When" +msgstr "" + +#: src/pinky.c:395 +msgid "Where" +msgstr "" + +#: src/pinky.c:469 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "Penggunaan: %s [OPSYEN]...[FAIL]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" + +#: src/pinky.c:574 +msgid "no username specified; at least one must be specified when using -l" +msgstr "" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "" + +#: src/pr.c:805 +#, fuzzy, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "nombor kumpulan tak sah %s" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "" + +#: src/pr.c:829 +#, fuzzy, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "nombor kumpulan tak sah %s" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "" + +#: src/pr.c:1000 +#, fuzzy, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "nombor peranti minor tidak sah %s" + +#: src/pr.c:1012 +#, fuzzy, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "lebar baris tidak sah: %s" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "" + +#: src/pr.c:1079 +#, fuzzy +msgid "%b %e %H:%M %Y" +msgstr "%b %e %H:%M" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "" + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "" + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr "" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" + +#: src/printenv.c:43 +msgid "David MacKenzie and Richard Mlynarik" +msgstr "" + +#: src/printenv.c:63 +#, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "" + +#: src/printf.c:100 +#, fuzzy, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"Pengunaan: %s FAIL\n" +" atau: %s OPSYEN\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "" + +#: src/printf.c:292 +#, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "" + +#: src/printf.c:472 +#, fuzzy, c-format +msgid "invalid field width: %s" +msgstr "lebar baris tidak sah: %s" + +#: src/printf.c:498 +#, fuzzy, c-format +msgid "invalid precision: %s" +msgstr "penukaran tidak sah: %s" + +#: src/printf.c:519 +#, fuzzy, c-format +msgid "%%%c: invalid directive" +msgstr "%s: fail saiz tidak sah" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "" + +#: src/printf.c:594 +#, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" + +#: src/pwd.c:74 +#, fuzzy +msgid "ignoring non-option arguments" +msgstr "mengabaikan segala hujah" + +#: src/pwd.c:78 +#, fuzzy +msgid "cannot get current directory" +msgstr "tak dapat mencipta direktori %s" + +#: src/readlink.c:69 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "Penggunaan: %s [OPSYEN]...[FAIL]...\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" + +#: src/remove.c:394 +#, c-format +msgid "cannot chdir from %s to .." +msgstr "tak dapat chdir daripada %s ke ..." + +#: src/remove.c:407 src/remove.c:488 +#, c-format +msgid "cannot lstat `.' in %s" +msgstr "tak dapat lstat `.' pada %s" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, c-format +msgid "cannot lstat %s" +msgstr "tak dapat lstat %s" + +#: src/remove.c:603 +#, fuzzy, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "%s: buang direktori write-protected %s? " + +#: src/remove.c:604 +#, c-format +msgid "%s: descend into directory %s? " +msgstr "" + +#: src/remove.c:614 +#, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: buang write-protected %s %s? " + +#: src/remove.c:615 +#, c-format +msgid "%s: remove %s %s? " +msgstr "%s: buang %s %s? " + +#: src/remove.c:639 +#, c-format +msgid "removed %s\n" +msgstr "%s dibuang \n" + +#: src/remove.c:654 src/remove.c:1059 +#, c-format +msgid "removed directory: %s\n" +msgstr "direktori dibuang: %s\n" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, c-format +msgid "cannot remove directory %s" +msgstr "tak dapat membuang direktori %s" + +#: src/remove.c:815 +#, c-format +msgid "cannot open directory %s" +msgstr "tak dapat membuka direktori %s" + +#: src/remove.c:896 src/remove.c:1002 +#, c-format +msgid "cannot chdir from %s to %s" +msgstr "tak dapat chdir drpd. %s ke %s" + +#: src/remove.c:904 +#, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "tak dapat membuang `.' atau `..'" + +#: src/rm.c:60 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "Torbjorn Granlund, David MacKenzie, dan Jim Meyering" + +#: src/rm.c:99 src/touch.c:244 +#, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "Penggunaan: %s [OPSYEN]... FAIL...\n" + +#: src/rm.c:100 +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, c-format +msgid "removing directory, %s" +msgstr "membuang direktori, %s" + +#: src/rmdir.c:146 +#, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "Penggunaan: %s [OPSYEN]... DIREKTORI...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" +"Buang DIREKTORI, jika ianya kosong.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" abaikan setiap kegagalan yang hanya disebabkan oleh\n" +" direktori yang tidak kosong\n" + +#: src/rmdir.c:154 +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +" -p, --parents buang DIRECTORY, dan cuba buang setiap komponen direktori\n" +" bagi nama path itu. E.g., `rmdir -p a/b/c' adalah\n" +" sama dengan `rmdir a/b/c a/b a'.\n" +" -v, --verbose output diagnostik bagi setiap direktori yg diproses\n" + +#: src/seq.c:82 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"Penggunaan: %s [OPSYEN]... SUMBER DEST\n" +" atau: %s [OPSYEN]... SUMBER... DIREKTORI\n" +" atau: %s [OPSYEN]... --target-directory=DIREKTORI SUMBER...\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" + +#: src/seq.c:96 +#, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" + +#: src/seq.c:119 +#, fuzzy, c-format +msgid "invalid floating point argument: %s" +msgstr "format tarikh tidak sah %s" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" + +#: src/seq.c:423 +#, fuzzy, c-format +msgid "invalid format string: `%s'" +msgstr "rentetan mod tidak sah: %s" + +#: src/seq.c:445 +msgid "format string may not be specified when printing equal width strings" +msgstr "" + +#: src/shred.c:160 +#, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "Penggunaan: %s [OPSYEN] FAIL [...]\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" +" -f, --force tukar keizinan supaya membolehkan menulisan jika perlu\n" +" -n, --iterations=N Tindih sebanyak N kali selain drpd default (%d)\n" +" -s, --size=N lunyai ia berapa byte (suffiks seperti K, M, G diterima)\n" + +#: src/shred.c:174 +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" + +#: src/shred.c:808 +#, c-format +msgid "%s: cannot rewind" +msgstr "" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "" + +#: src/shred.c:868 +#, c-format +msgid "%s: error writing at offset %s" +msgstr "" + +#: src/shred.c:897 +#, c-format +msgid "%s: file too large" +msgstr "" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "" + +#: src/shred.c:936 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "" + +#: src/shred.c:1195 +#, c-format +msgid "%s: invalid file type" +msgstr "" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "" + +#: src/shred.c:1265 +#, c-format +msgid "%s: error truncating" +msgstr "" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "%s: membuang" + +#: src/shred.c:1412 +#, c-format +msgid "%s: renamed to %s" +msgstr "%s: ditukarnama ke %s" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s: dibuang" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "%s: tak dapat buang" + +#: src/shred.c:1551 +#, c-format +msgid "%s: invalid number of passes" +msgstr "" + +#: src/shred.c:1568 +#, c-format +msgid "%s: invalid file size" +msgstr "%s: fail saiz tidak sah" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "" + +#: src/sleep.c:52 +#, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" + +#: src/sleep.c:155 +#, fuzzy, c-format +msgid "invalid time interval `%s'" +msgstr "format gaya tarikh tidak sah %s" + +#: src/sleep.c:166 src/tail.c:1031 +#, fuzzy +msgid "cannot read realtime clock" +msgstr "tak boleh mencipta pautan %s" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" + +#: src/sort.c:444 +#, fuzzy +msgid "cannot create temporary file" +msgstr "tak dapat memcipta fail biasa %s" + +#: src/sort.c:467 +msgid "open failed" +msgstr "" + +#: src/sort.c:487 src/sort.c:2496 +#, fuzzy +msgid "close failed" +msgstr "fail istimewa blok" + +#: src/sort.c:495 +#, fuzzy +msgid "write failed" +msgstr "fail pelik" + +#: src/sort.c:641 +#, fuzzy +msgid "sort size" +msgstr "saiz blok" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "" + +#: src/sort.c:972 +#, fuzzy +msgid "read failed" +msgstr "fail biasa" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "" + +#: src/sort.c:1574 +#, fuzzy +msgid "standard error" +msgstr "output standard" + +#: src/sort.c:2032 +#, fuzzy, c-format +msgid "%s: invalid field specification `%s'" +msgstr "%s: fail saiz tidak sah" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "" + +#: src/sort.c:2064 +#, fuzzy, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "hujah tidak sah %s bagi %s" + +#: src/sort.c:2298 +#, fuzzy +msgid "invalid number after `-'" +msgstr "nombor tidak sah %s" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +#, fuzzy +msgid "invalid number after `.'" +msgstr "nombor tidak sah %s" + +#: src/sort.c:2304 src/sort.c:2383 +#, fuzzy +msgid "stray character in field spec" +msgstr "fail istimewa aksara" + +#: src/sort.c:2338 +#, fuzzy +msgid "invalid number at field start" +msgstr "nombor tidak sah %s" + +#: src/sort.c:2342 src/sort.c:2370 +#, fuzzy +msgid "field number is zero" +msgstr "nombor tidak sah %s" + +#: src/sort.c:2351 +#, fuzzy +msgid "character offset is zero" +msgstr "fail istimewa aksara" + +#: src/sort.c:2366 +#, fuzzy +msgid "invalid number after `,'" +msgstr "nombor tidak sah %s" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "" + +#: src/split.c:96 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "Penggunaan: %s [OPSYEN]...[FAIL]...\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" + +#: src/split.c:108 +#, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "" + +#: src/split.c:189 +#, fuzzy, c-format +msgid "creating file `%s'\n" +msgstr "mencipta %s" + +#: src/split.c:341 +#, fuzzy +msgid "cannot split in more than one way" +msgstr "tak boleh nyatakan masa lebih daripada satu sumber" + +#: src/split.c:394 +#, fuzzy, c-format +msgid "%s: invalid suffix length" +msgstr "%s: fail saiz tidak sah" + +#: src/split.c:408 src/split.c:434 +#, fuzzy, c-format +msgid "%s: invalid number of bytes" +msgstr "nombor tidak sah %s" + +#: src/split.c:421 +#, fuzzy, c-format +msgid "%s: invalid number of lines" +msgstr "nombor tidak sah %s" + +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "" + +#: src/split.c:483 +#, fuzzy +msgid "invalid number" +msgstr "nombor tidak sah %s" + +#: src/stat.c:326 +#, fuzzy +msgid "*** invalid date/time ***" +msgstr "mod tak sah %s" + +#: src/stat.c:608 +#, c-format +msgid "cannot read file system information for %s" +msgstr "tak dapat membaca maklumat sistem fail bagi %s" + +#: src/stat.c:684 +#, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "Penggunaan: %s [OPSYEN] FAIL...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" + +#: src/stty.c:504 +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" + +#: src/stty.c:570 +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:608 +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" + +#: src/stty.c:787 +msgid "only one device may be specified" +msgstr "" + +#: src/stty.c:882 +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "" + +#: src/stty.c:957 src/stty.c:1064 +#, fuzzy, c-format +msgid "invalid argument `%s'" +msgstr "hujah tidak sah %s bagi %s" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, fuzzy, c-format +msgid "missing argument to `%s'" +msgstr "kehilangan hujah fail" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "" + +#: src/stty.c:1944 +#, fuzzy, c-format +msgid "invalid integer argument `%s'" +msgstr "hujah tidak sah %s bagi %s" + +#: src/su.c:289 +msgid "Password:" +msgstr "" + +#: src/su.c:292 +#, fuzzy +msgid "getpass: cannot open /dev/tty" +msgstr "tak dapat membuka direktori %s" + +#: src/su.c:350 +#, fuzzy +msgid "cannot set groups" +msgstr "tak dapat stat %s" + +#: src/su.c:354 +#, fuzzy +msgid "cannot set group id" +msgstr "tak dapat menukar ke kumpulan null" + +#: src/su.c:356 +#, fuzzy +msgid "cannot set user id" +msgstr "tak dapat stat %s" + +#: src/su.c:437 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "Penggunaan: %s [OPSYEN]...[FAIL]...\n" + +#: src/su.c:438 +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "" + +#: src/su.c:580 +#, fuzzy, c-format +msgid "warning: cannot change directory to %s" +msgstr "Gagal menukar direktori %s " + +#: src/sum.c:36 +#, fuzzy +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "Mike Parker and David MacKenzie" + +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" + +#: src/sync.c:70 src/tty.c:112 +msgid "ignoring all arguments" +msgstr "mengabaikan segala hujah" + +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr "" + +#: src/sys2.h:494 +msgid " --version output version information and exit\n" +msgstr "" + +#: src/tac.c:54 +#, fuzzy +msgid "Jay Lepreau and David MacKenzie" +msgstr "Mike Parker and David MacKenzie" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tac.c:139 +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "" + +#: src/tail.c:49 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "Torbjorn Granlund, David MacKenzie, dan Jim Meyering" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" + +#: src/tail.c:331 +#, fuzzy, c-format +msgid "closing %s (fd=%d)" +msgstr "menutup %s" + +#: src/tail.c:391 +#, fuzzy, c-format +msgid "%s: cannot seek to offset %s" +msgstr "tak dapat lseek %s" + +#: src/tail.c:395 +#, fuzzy, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "tak boleh mencipta fifo %s" + +#: src/tail.c:400 +#, fuzzy, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "tak boleh mencipta fifo %s" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "" + +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "" + +#: src/tail.c:1020 +#, fuzzy +msgid "no files remaining" +msgstr "kehilangan hujah fail" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "" + +#: src/tail.c:1356 +#, fuzzy, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "aksara tidak sah pada %s pada rentetan mod %s" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" + +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "" + +#: src/tail.c:1534 +#, fuzzy, c-format +msgid "%s: invalid PID" +msgstr "%s: fail saiz tidak sah" + +#: src/tail.c:1549 +#, fuzzy, c-format +msgid "%s: invalid number of seconds" +msgstr "nombor tidak sah %s" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "" + +#: src/tail.c:1575 +#, fuzzy +msgid "warning: --pid=PID is not supported on this system" +msgstr "pautan simbolik tidak disokong pada sistem ini" + +#: src/tee.c:33 +#, fuzzy +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "Mike Parker and David MacKenzie" + +#: src/tee.c:64 +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "" + +#: src/test.c:424 +msgid "before -lt" +msgstr "" + +#: src/test.c:432 +msgid "after -lt" +msgstr "" + +#: src/test.c:446 +msgid "before -le" +msgstr "" + +#: src/test.c:453 +msgid "after -le" +msgstr "" + +#: src/test.c:469 +msgid "before -gt" +msgstr "" + +#: src/test.c:476 +msgid "after -gt" +msgstr "" + +#: src/test.c:490 +msgid "before -ge" +msgstr "" + +#: src/test.c:497 +msgid "after -ge" +msgstr "" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "" + +#: src/test.c:526 +msgid "before -ne" +msgstr "" + +#: src/test.c:533 +msgid "after -ne" +msgstr "" + +#: src/test.c:549 +msgid "before -eq" +msgstr "" + +#: src/test.c:556 +msgid "after -eq" +msgstr "" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "" + +#: src/test.c:586 +msgid "-ot does not accept -l\n" +msgstr "" + +#: src/test.c:593 +#, fuzzy +msgid "unknown binary operator" +msgstr "Ralat sistem yang tidak diketahui" + +#: src/test.c:781 +msgid "after -t" +msgstr "" + +#: src/test.c:979 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"Pengunaan: %s FAIL\n" +" atau: %s OPSYEN\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" + +#: src/test.c:1009 +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "" + +#: src/test.c:1125 +#, fuzzy +msgid "too many arguments\n" +msgstr "terlalu banyak hujah" + +#: src/touch.c:39 +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "" + +#: src/touch.c:164 src/touch.c:179 +#, c-format +msgid "creating %s" +msgstr "mencipta %s" + +#: src/touch.c:222 +#, fuzzy, c-format +msgid "cannot touch %s" +msgstr "tak dapat stat %s" + +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "menetapkan masa untuk %s" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" + +#: src/touch.c:311 src/touch.c:331 +#, c-format +msgid "invalid date format %s" +msgstr "format tarikh tidak sah %s" + +#: src/touch.c:355 +msgid "cannot specify times from more than one source" +msgstr "tak boleh nyatakan masa lebih daripada satu sumber" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "" + +#: src/touch.c:399 +msgid "file arguments missing" +msgstr "kehilangan hujah fail" + +#: src/tr.c:327 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "Penggunaan: %s [OPSYEN]...[FAIL]...\n" + +#: src/tr.c:331 +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" + +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" + +#: src/tr.c:566 +#, fuzzy +msgid "invalid backslash escape at end of string" +msgstr "aksara tidak sah pada %s pada rentetan mod %s" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "" + +#: src/tr.c:1025 +#, fuzzy, c-format +msgid "invalid character class `%s'" +msgstr "aksara tidak sah pada %s pada rentetan mod %s" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" + +#: src/true.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "" + +#: src/tty.c:63 +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "" + +#: src/uname.c:111 +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" + +#: src/uname.c:226 +msgid "cannot get system name" +msgstr "" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" + +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "" + +#: src/uniq.c:139 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "Penggunaan: %s [OPSYEN]...[FAIL]...\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr "" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" + +#: src/uniq.c:381 +#, fuzzy, c-format +msgid "error reading %s" +msgstr "membaca %s" + +#: src/uniq.c:386 +#, fuzzy, c-format +msgid "error writing %s" +msgstr "menulis %s" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "" + +#: src/uniq.c:473 src/uniq.c:498 +#, fuzzy +msgid "invalid number of fields to skip" +msgstr "nombor tidak sah %s" + +#: src/uniq.c:507 +#, fuzzy +msgid "invalid number of bytes to skip" +msgstr "nombor tidak sah %s" + +#: src/uniq.c:516 +#, fuzzy +msgid "invalid number of bytes to compare" +msgstr "nombor tidak sah %s" + +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "" + +#: src/unlink.c:51 +#, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"Pengunaan: %s FAIL\n" +" atau: %s OPSYEN\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" + +#: src/unlink.c:99 +#, c-format +msgid "cannot unlink %s" +msgstr "takboleh nyahpaut %s" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr "" + +#: src/uptime.c:140 +msgid "am" +msgstr "" + +#: src/uptime.c:140 +msgid "pm" +msgstr "" + +#: src/uptime.c:142 +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#: src/uptime.c:144 +#, fuzzy, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "pengguna tidak sah" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr "" + +#: src/uptime.c:191 src/users.c:118 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "Penggunaan: %s [OPSYEN]...[FAIL]...\n" + +#: src/uptime.c:192 +#, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" + +#: src/users.c:35 +#, fuzzy +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "Mike Parker and David MacKenzie" + +#: src/users.c:119 +#, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" + +#: src/wc.c:75 +#, fuzzy +msgid "Paul Rubin and David MacKenzie" +msgstr "Mike Parker and David MacKenzie" + +#: src/wc.c:129 +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "" + +#: src/who.c:223 +msgid " old " +msgstr "" + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "" + +#: src/who.c:446 +msgid "clock change" +msgstr "" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" + +#: src/who.c:498 +msgid "NAME" +msgstr "" + +#: src/who.c:498 +msgid "LINE" +msgstr "" + +#: src/who.c:498 +msgid "TIME" +msgstr "" + +#: src/who.c:498 +msgid "IDLE" +msgstr "" + +#: src/who.c:498 +msgid "PID" +msgstr "" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "" + +#: src/who.c:499 +msgid "EXIT" +msgstr "" + +#: src/who.c:574 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "Penggunaan: %s [OPSYEN]...[FAIL]...\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" + +#: src/whoami.c:53 +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "" + +#: src/yes.c:49 +#, fuzzy, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"Pengunaan: %s FAIL\n" +" atau: %s OPSYEN\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" + +#, fuzzy +#~ msgid "\\%c: invalid escape" +#~ msgstr "%s: fail saiz tidak sah" + +#~ msgid "program error" +#~ msgstr "ralat program" + +#~ msgid "stack overflow" +#~ msgstr "tindanan melimpah" + +#~ msgid " Type" +#~ msgstr " Jenis" + +#, fuzzy +#~ msgid "cannot convert time" +#~ msgstr "tak dapat stat %s" + +#, fuzzy +#~ msgid "cannot format time" +#~ msgstr "tak dapat stat %s" + +#~ msgid "cannot change to `..' from directory %s" +#~ msgstr "tak dapat menukar ke `..' drpd direktori %s" + +#~ msgid "missing file arguments" +#~ msgstr "kehilangan hujah fail" + +#, fuzzy +#~ msgid "environment variable, QUOTING_STYLE" +#~ msgstr "" +#~ "mengabai nilai pembolehubah persekitaran QUOTING_STYLE yang tidak sah: %s" diff --git a/src/apps/bin/coreutils-5.0/po/nb.gmo b/src/apps/bin/coreutils-5.0/po/nb.gmo new file mode 100644 index 0000000000..0feccf131d Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/nb.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/nb.po b/src/apps/bin/coreutils-5.0/po/nb.po new file mode 100644 index 0000000000..35a71362aa --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/nb.po @@ -0,0 +1,7288 @@ +# Norwegian messages for GNU textutils (bokmål dialect) +# Copyright (C) 1996 Free Software Foundation, Inc. +# Eivind Tagseth , 1996, 1997, 1999. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU textutils 2.0.20\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2002-01-27 21:35+0100\n" +"Last-Translator: Eivind Tagseth \n" +"Language-Team: Norwegian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8-bit\n" + +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "ugyldig argument %s for %s" + +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "flertydig argument %s for %s" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "Gyldige argument er:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "feil ved skriving" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "Ukjent systemfeil" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "" + +#: lib/file-type.c:42 +#, fuzzy +msgid "regular file" +msgstr "feil ved lesing" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "" + +#: lib/file-type.c:48 +#, fuzzy +msgid "block special file" +msgstr "blokkstørrelse" + +#: lib/file-type.c:51 +#, fuzzy +msgid "character special file" +msgstr "tegn-posisjon er null" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "" + +#: lib/file-type.c:71 +#, fuzzy +msgid "weird file" +msgstr "feil ved lesing" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: flagget «%s» er flertydig\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: flagget «--%s» trenger et argument\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: flagget «%c%s» trenger et argument\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: flagget «%s» trenger et argument\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: ukjent flagg «--%s»\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: ukjent flagg «%c%s»\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: ukjent flagg -- %c\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: ukjent flagg -- %c\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: flagget trenger et argument -- %c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: flagget «-W %s» er flertydig\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: flagget «-W %s» tillater ikke et argument\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "blokkstørrelse" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "kan ikke opprette katalog %s" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%s eksisterer men er ikke en katalog" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "kan ikke endre eier og/eller gruppe for %s" + +#: lib/makepath.c:338 +#, fuzzy, c-format +msgid "cannot chdir to directory %s" +msgstr "kan ikke skifte til katalog, %s" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "kan ikke endre rettigheter til %s" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "virtuelt minne oppbrukt" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "«" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "»" + +#: lib/rpmatch.c:78 +#, fuzzy +msgid "^[yY]" +msgstr "^[jJ]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[nN]" + +#: lib/unicodeio.c:155 +#, fuzzy +msgid "iconv function not usable" +msgstr "kan ikke skrive ut U+%04X: iconv-funksjonen er ikke brukbar" + +#: lib/unicodeio.c:157 +#, fuzzy +msgid "iconv function not available" +msgstr "kan ikke skrive ut U+%04X: iconv-funksjon er ikke tilgjengelig" + +#: lib/unicodeio.c:164 +#, fuzzy +msgid "character out of range" +msgstr "U+%04X: tegn utenfor tillatte verdier" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "kan ikke konvertere U+%04X til lokalt tegnsett" + +#: lib/unicodeio.c:229 +#, fuzzy, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "kan ikke konvertere U+%04X til lokalt tegnsett" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "ugyldig bruker" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "ugyldig gruppe" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "kan ikke finne login-gruppen til en numerisk bruker-ID" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "kan ikke utelate både bruker og gruppe" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "Skrevet av %s.\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +"Dette er fri programvare. Se kildekoden for kopieringsbetingelser.\n" +"Det er ingen garantier, ikke engang for SALGBARHET eller EGNETHET\n" +"TIL NOEN SPESIELL OPPGAVE.\n" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "strengsammenligning feilet" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "Sett LC_ALL='C' for å omgå problemet." + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "Strengene som ble sammenlignet var «%s» og «%s»." + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Prøv med «%s --help» for mer informasjon.\n" + +#: src/basename.c:54 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"Bruk: %s [FIL]...\n" +"eller: %s [FLAGG]\n" + +#: src/basename.c:59 +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, fuzzy, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"Rapportér feil til ." + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "for få argumenter" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "for mange argumenter" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "Torbjorn Granlund og Richard M. Stallman" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "Bruk: %s [FLAGG] [FIL]...\n" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" +"Føy sammen FIL(er) eller standard inn til standard ut.\n" +"\n" +" -A, --show-all samme som -vET\n" +" -b, --number-nonblank nummerer ikke-blanke ut-linjer\n" +" -e samme som -vE\n" +" -E, --show-ends skriv $ på slutten av hver linje\n" +" -n, --number nummerer alle ut-linjer\n" +" -s, --squeeze-blank aldri mer enn én blank linje\n" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" +" -t samme som -vT\n" +" -T, --show-tabs vis tabulatortegn som ^I\n" +" -u (ignorert)\n" +" -v, --show-nonprinting bruk ^ og M-notasjon, unntatt for LFD og TAB\n" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"Når ingen FIL eller når FIL er -, les fra standard inn.\n" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" +"\n" +" -B, --binary skriv binært til konsollenheten.\n" +"\n" + +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "standard ut" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s: innfil er utfil" + +#: src/cat.c:858 +#, fuzzy +msgid "closing standard input" +msgstr "standard inn" + +#: src/cat.c:861 +#, fuzzy +msgid "closing standard output" +msgstr "standard ut" + +#: src/chgrp.c:93 +#, fuzzy +msgid "cannot change to null group" +msgstr "kan ikke endre eier og/eller gruppe for %s" + +#: src/chgrp.c:102 +#, fuzzy, c-format +msgid "invalid group name %s" +msgstr "ugyldig gruppe" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "" + +#: src/chgrp.c:109 +#, fuzzy, c-format +msgid "invalid group number %s" +msgstr "ugyldig antall" + +#: src/chgrp.c:126 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Bruk: %s [FLAGG]... [FIL]...\n" +" eller: %s --traditional [FIL] [[+]POSISJON [[+]MERKE]]\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, c-format +msgid "failed to get attributes of %s" +msgstr "" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "" + +#: src/chmod.c:179 +#, fuzzy, c-format +msgid "changing permissions of %s" +msgstr "kan ikke endre rettigheter til %s" + +#: src/chmod.c:242 +#, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" + +#: src/chmod.c:248 +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" + +#: src/chmod.c:320 +#, fuzzy, c-format +msgid "invalid character %s in mode string %s" +msgstr "ugyldig tegn «%c» i type-streng «%s»" + +#: src/chmod.c:361 +#, fuzzy, c-format +msgid "invalid mode string: %s" +msgstr "ugyldig type-streng «%s»" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "" + +#: src/chown-core.c:143 +#, c-format +msgid "changed ownership of %s to %s\n" +msgstr "" + +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "" + +#: src/chown-core.c:148 +#, fuzzy, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "kan ikke endre rettigheter til %s" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "" + +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "" + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "" + +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "" + +#: src/chown-core.c:327 +#, fuzzy, c-format +msgid "changing group of %s" +msgstr "kan ikke endre eier og/eller gruppe for %s" + +#: src/chown-core.c:345 +#, fuzzy, c-format +msgid "unable to restore permissions of %s" +msgstr "kan ikke endre rettigheter til %s" + +#: src/chown.c:99 +#, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" + +#: src/chroot.c:45 +#, fuzzy, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"Bruk: %s [FIL]...\n" +"eller: %s [FLAGG]\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" + +#: src/chroot.c:84 +#, fuzzy, c-format +msgid "cannot change root directory to %s" +msgstr "kan ikke skifte til katalog, %s" + +#: src/chroot.c:87 +#, fuzzy +msgid "cannot chdir to root directory" +msgstr "kan ikke skifte til katalog, %s" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "%s: fil for lang" + +#: src/cksum.c:282 +#, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"Bruk: %s [FIL]...\n" +"eller: %s [FLAGG]\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" +"Skriv CRC-sjekksum og oktett-antall for hver FIL.\n" +"\n" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "Richard Stallman og David MacKenzie" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "Bruk: %s [FLAGG]... VENSTRE_FIL HØYRE_FIL\n" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" +"Sammenlign de sorterte filene VENSTREFIL og HØYREFIL linje for linje.\n" +"\n" +" -1 se bort fra linjer som bare finnes i den venstre filen\n" +" -2 se bort fra linjer som bare finnes i den høyre filen\n" +" -3 se bort fra linjer som finnes i begge filer\n" + +#: src/copy.c:162 src/du.c:332 +#, c-format +msgid "cannot access %s" +msgstr "" + +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, c-format +msgid "cannot fstat %s" +msgstr "" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, fuzzy, c-format +msgid "cannot remove %s" +msgstr "kan ikke opprette katalog %s" + +#: src/copy.c:277 +#, fuzzy, c-format +msgid "cannot create regular file %s" +msgstr "kan ikke opprette midlertidig fil" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, fuzzy, c-format +msgid "reading %s" +msgstr "feil ved lesing av %s" + +#: src/copy.c:362 +#, fuzzy, c-format +msgid "cannot lseek %s" +msgstr "%s: kan ikke søke til posisjon %s%s" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, fuzzy, c-format +msgid "writing %s" +msgstr "feil ved skriving til %s" + +#: src/copy.c:409 src/copy.c:415 +#, fuzzy, c-format +msgid "closing %s" +msgstr "lukker %s (fd=%d)" + +#: src/copy.c:610 +#, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "" + +#: src/copy.c:616 +#, c-format +msgid "%s: overwrite %s? " +msgstr "" + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, fuzzy, c-format +msgid "cannot stat %s" +msgstr "kan ikke opprette katalog %s" + +#: src/copy.c:820 +#, fuzzy, c-format +msgid "omitting directory %s" +msgstr "kan ikke opprette katalog %s" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "" + +#: src/copy.c:866 src/ln.c:237 +#, c-format +msgid "%s and %s are the same file" +msgstr "" + +#: src/copy.c:876 +#, fuzzy, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "kan ikke skifte til katalog, %s" + +#: src/copy.c:893 +#, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "" + +#: src/copy.c:904 +#, fuzzy, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "kan ikke opprette katalog %s" + +#: src/copy.c:965 +#, fuzzy, c-format +msgid "cannot overwrite directory %s" +msgstr "kan ikke opprette katalog %s" + +#: src/copy.c:974 +#, fuzzy, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "kan ikke skifte til katalog, %s" + +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "" + +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "" + +#: src/copy.c:1013 src/ln.c:273 +#, c-format +msgid "cannot backup %s" +msgstr "" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr "" + +#: src/copy.c:1099 +#, fuzzy, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "kan ikke opprette katalog %s" + +#: src/copy.c:1106 +#, fuzzy, c-format +msgid "will not create hard link %s to directory %s" +msgstr "kan ikke skifte til katalog, %s" + +#: src/copy.c:1132 +#, fuzzy, c-format +msgid "cannot create hard link %s to %s" +msgstr "kan ikke opprette katalog %s" + +#: src/copy.c:1186 +#, fuzzy, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "kan ikke skifte til katalog, %s" + +#: src/copy.c:1229 +#, fuzzy, c-format +msgid "cannot move %s to %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "" + +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "" + +#: src/copy.c:1353 +#, fuzzy, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "kan ikke opprette katalog %s" + +#: src/copy.c:1364 +#, fuzzy, c-format +msgid "cannot create link %s" +msgstr "kan ikke opprette katalog %s" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, fuzzy, c-format +msgid "cannot create fifo %s" +msgstr "kan ikke opprette katalog %s" + +#: src/copy.c:1403 +#, fuzzy, c-format +msgid "cannot create special file %s" +msgstr "tegn-posisjon er null" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, fuzzy, c-format +msgid "cannot read symbolic link %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:1440 +#, fuzzy, c-format +msgid "cannot create symbolic link %s" +msgstr "kan ikke opprette katalog %s" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, c-format +msgid "failed to preserve ownership for %s" +msgstr "" + +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "" + +#: src/copy.c:1531 +#, c-format +msgid "failed to preserve authorship for %s" +msgstr "" + +#: src/copy.c:1549 +#, fuzzy, c-format +msgid "setting permissions for %s" +msgstr "kan ikke endre rettigheter til %s" + +#: src/copy.c:1571 src/ln.c:326 +#, c-format +msgid "cannot un-backup %s" +msgstr "" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "" + +#: src/cp.c:53 +#, fuzzy +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie og Jim Meyering" + +#: src/cp.c:164 src/mv.c:311 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" +"Obligatoriske argmenter til lange flagg er obligatoriske også for korte.\n" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" + +#: src/cp.c:209 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" + +#: src/cp.c:221 +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" + +#: src/cp.c:230 +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" + +#: src/cp.c:239 +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" + +#: src/cp.c:325 +#, c-format +msgid "failed to preserve times for %s" +msgstr "" + +#: src/cp.c:349 +#, fuzzy, c-format +msgid "failed to preserve permissions for %s" +msgstr "kan ikke endre rettigheter til %s" + +#: src/cp.c:434 +#, fuzzy, c-format +msgid "cannot make directory %s" +msgstr "kan ikke opprette katalog %s" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +#, fuzzy +msgid "missing file argument" +msgstr "hopp over argument" + +#: src/cp.c:498 +#, fuzzy +msgid "missing destination file" +msgstr "feltliste mangler" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "" + +#: src/cp.c:546 +#, fuzzy, c-format +msgid "%s: specified target is not a directory" +msgstr "%s eksisterer men er ikke en katalog" + +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" + +#: src/cp.c:972 src/ln.c:464 +#, fuzzy +msgid "symbolic links are not supported on this system" +msgstr "advarsel: --pid=PID er ikke støttet på dette systemet" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "Stuart Kemp og David MacKenzie" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "lesefeil" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "input forsvant" + +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s: linjenummer utenfor tillatte verdier" + +#: src/csplit.c:743 +#, fuzzy, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: «%s»: linjenummer utenfor tillatte verdier" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr " ved %d. repetisjon\n" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s: «%s»: ingen treff funnet" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "feil i søk med regulært uttrykk" + +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "skrivefeil for «%s»" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "%s: «+» eller «-» ventet etter skilletegn" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s: heltall forventet etter «%c»" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "%s: «}» er nødvendig i gjentagelsesantall" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "%s}: heltall kreves mellom «{» og «}»" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s: avsluttende skilletegn «%c» mangler" + +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: ugyldig regulært uttrykk: %s" + +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "%s: ugyldig mønster" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s: linjenummeret må være større enn null" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "linjenummer «%s» er mindre enn foregående linjenummer, %s" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "advarsel: linjenummer «%s» er det samme som foregående" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "manglende konverteringsspesifikator i suffiks" + +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "ugyldig konvertingsspesifikator i suffiks: %c" + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "ugyldig konverteringsspesifikator i suffiks: \\%.3o" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "manglende %%-konverteringsspesifikasjon i suffiks" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "for mange %%-konverteringsspesifikasjoner i suffiks" + +#: src/csplit.c:1441 +#, c-format +msgid "%s: invalid number" +msgstr "%s: ugyldig nummer" + +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "Bruk: %s [FLAGG]... FIL MØNSTER...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" +"Skriv ut deler av FIL skilt av MØNSTER til filene «xx01», «xx02», ...\n" +"og skriv ut antall oktetter for hver del til standard ut.\n" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" +" -b, --suffix-format=FORMAT bruk sprintf-FORMAT isteden for %d\n" +" -f, --prefix=PREFIX bruk PREFIX isteden for «xx»\n" +" -k, --keep-files ikke fjern utfiler ved feil\n" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" +" -n, --digits=SIFFER bruk spesifisert antall siffer isteden for 2\n" +" -s, --quiet, --silent ikke skriv ut utfil-størrelser\n" +" -z, --elide-empty-files fjern tomme ut-filer\n" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" +"\n" +"Les standard inn hvis FIL er -. Hvert MØNSTER må være:\n" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" +"\n" +" HELTALL kopiér opp til, men ikke inkludert spesifisert " +"linjenummer\n" +" /REGEXP/[POSISJON] kopiér opp til, men ikke inkludert passende linje\n" +" %REGEXP%[POSISJON] hopp over fram til, men ikke inkludert passende linje\n" +" {HELTALL} gjenta forrige mønster spesifisert antall ganger\n" +" {*} gjenta forrige mønster så mange ganger som mulig\n" +"\n" +"En linje-POSISJON er en «+» eller «-» fulgt av et positivt heltall.\n" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie og Jim Meyering" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "Bruk: %s [FLAGG]... [FIL]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" +"Skriv ut valgte deler av linjer fra hver FIL til standard ut.\n" +"\n" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" +" -b, --bytes=LISTE skriv bare ut disse oktettene\n" +" -c, --characters=LISTE skriv bare ut disse tegnene\n" +" -d, --delimiter=SKILLE bruk SKILLE isteden for TAB som skilletegn\n" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" +" -f, --fields=LISTE skriv bare ut disse feltene. Skriv også ut\n" +" linjer som ikke inneholder noen skilletegn,\n" +" med mindre flagget -s er spesifisert\n" +" -n (ignorert)\n" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" +" -s, --only-delimited skriv ikke ut linjer som ikke inneholder " +"skilletegn\n" +" --output-delimiter=STRENG bruk STRENG som ut-skilletegn\n" +" forvalgt er å bruke inn-skilletegnet\n" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"Bruk en og bare en av -b, -c eller -f. Hver LISTE er bygd opp av\n" +"et område, eller flere områder skilt av komma. Hver område er en av:\n" +"\n" +" N N'te oktett, tegn eller felt, telt fra 1\n" +" N- fra N'te oktett, tegn eller felt, til slutten av linjen\n" +" N-M fra N'te til M'te (inklusive) oktett, tegn eller felt\n" +" -M fra første til M'te (inklusive) oktett, tegn eller felt\n" +"\n" +"Uten FIL, eller når FIL er -, leses fra standard inn.\n" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "ugyldig byte- eller felt-liste" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "bare en liste-type kan spesifiseres" + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "posisjonsliste mangler" + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "feltliste mangler" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "skilletegnet må være ett enkelt tegn" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "du må spesifisere en liste av bytes, tegn eller felt" + +#: src/cut.c:720 +#, fuzzy +msgid "an input delimiter may be specified only when operating on fields" +msgstr "et skilletegn kan bare spesifiseres når en opererer med felt" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" +"fjerning av linjer uten skilletegn er meningsløst dersom en ikke opererer\n" +"\tmed felt" + +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "standard inn" + +#: src/date.c:268 src/date.c:460 +#, fuzzy, c-format +msgid "invalid date `%s'" +msgstr "ugyldig bredde: «%s»" + +#: src/date.c:364 +#, fuzzy +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "flaggene --string og --check kan ikke brukes samtidig" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "" + +#: src/date.c:377 +#, fuzzy, c-format +msgid "too many non-option arguments: %s%s" +msgstr "for mange ikke-flagg-argumenter" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" + +#: src/date.c:397 +#, fuzzy +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "ingen filer kan spesifiseres når flagget --string brukes" + +#: src/date.c:433 +msgid "undefined" +msgstr "" + +#: src/date.c:435 +#, fuzzy +msgid "cannot get time of day" +msgstr "kan ikke dele opp på mer enn én måte" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "" + +#: src/dd.c:43 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "Paul Rubin og David MacKenzie" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "Bruk: %s [FLAGG] [FIL]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "" + +#: src/dd.c:382 +#, fuzzy, c-format +msgid "closing input file %s" +msgstr "lager filen «%s»\n" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "" + +#: src/dd.c:469 +#, fuzzy, c-format +msgid "writing to %s" +msgstr "feil ved skriving til %s" + +#: src/dd.c:501 +#, fuzzy, c-format +msgid "invalid conversion: %s" +msgstr "ugyldig breddespesifikasjon «%s»" + +#: src/dd.c:557 +#, fuzzy, c-format +msgid "unrecognized option %s" +msgstr "ukjent flagg «-%c»" + +#: src/dd.c:610 +#, fuzzy, c-format +msgid "unrecognized option %s=%s" +msgstr "ukjent flagg «-%c»" + +#: src/dd.c:616 +#, fuzzy, c-format +msgid "invalid number %s" +msgstr "ugyldig antall" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" + +#: src/dd.c:1170 src/dd.c:1188 +#, fuzzy, c-format +msgid "opening %s" +msgstr "feil ved lesing av %s" + +#: src/dd.c:1196 +#, fuzzy +msgid "file offset out of range" +msgstr "%s: linjenummer utenfor tillatte verdier" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "" + +#: src/df.c:49 +#, fuzzy +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "David Ihnat, David MacKenzie og Jim Meyering" + +#: src/df.c:153 +msgid "Filesystem Type" +msgstr "" + +#: src/df.c:155 +msgid "Filesystem " +msgstr "" + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr "" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr "" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr "" + +#: src/df.c:167 +#, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr "" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr "" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr "" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" + +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "" + +#: src/df.c:903 +msgid "Warning: " +msgstr "" + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "" + +#: src/dircolors.c:103 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "Bruk: %s [FLAGG]... [FIL]...\n" + +#: src/dircolors.c:104 +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" + +#: src/dircolors.c:299 +#, fuzzy, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s: ugyldig antall sekunder" + +#: src/dircolors.c:371 +#, fuzzy, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s: ukjent flagg «%c%s»\n" + +#: src/dircolors.c:372 +msgid "" +msgstr "" + +#: src/dircolors.c:467 +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "" + +#: src/dirname.c:33 src/pathchk.c:59 +#, fuzzy +msgid "David MacKenzie and Jim Meyering" +msgstr "David Ihnat, David MacKenzie og Jim Meyering" + +#: src/dirname.c:46 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"Bruk: %s [FIL]...\n" +"eller: %s [FLAGG]\n" + +#: src/dirname.c:51 +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" + +#: src/du.c:49 +#, fuzzy +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "David Ihnat, David MacKenzie og Jim Meyering" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" + +#: src/du.c:337 +#, fuzzy, c-format +msgid "cannot change to parent of directory %s" +msgstr "kan ikke skifte til katalog, %s" + +#: src/du.c:345 +#, fuzzy, c-format +msgid "cannot change to directory %s" +msgstr "kan ikke skifte til katalog, %s" + +#: src/du.c:352 +#, fuzzy, c-format +msgid "cannot read directory %s" +msgstr "kan ikke opprette katalog %s" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "totalt" + +#: src/du.c:641 +#, fuzzy, c-format +msgid "invalid maximum depth %s" +msgstr "ugyldig bredde: «%s»" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "" + +#: src/echo.c:77 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "Bruk: %s [FLAGG]... [FIL]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/env.c:93 +#, fuzzy +msgid "Richard Mlynarik and David MacKenzie" +msgstr "Richard Stallman og David MacKenzie" + +#: src/env.c:119 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "Bruk: %s [FLAGG]... [FIL]...\n" + +#: src/env.c:122 +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Konverter tabulatorer i hver FIL til mellomrom, skriv til standard ut.\n" +"Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +"inn.\n" +"\n" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" +" -i, --initial ikke konverter tabulatorer etter ikke-blanke tegn\n" +" -t, --tabs=TALL ha tabulatorer TALL tegn fra hverandre, ikke 8\n" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr " -t, --tabs=LISTE bruk komma-separert LISTE med tab-posisjoner\n" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "tabulatorstørrelse inneholder et ugyldig tegn" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "tabulatorstørrelse kan ikke være 0" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "tabulatorstørrelser må være stigende" + +#: src/expand.c:386 +#, fuzzy +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "advarsel: «sort %s» er avleggs; bruk «sort -k»" + +#: src/expr.c:90 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"Bruk: %s [FIL]...\n" +"eller: %s [FLAGG]\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +#, fuzzy +msgid "syntax error" +msgstr "standard feilkanal" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" + +#: src/expr.c:586 src/expr.c:625 +#, fuzzy +msgid "non-numeric argument" +msgstr "begrens argument" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "" + +#: src/factor.c:74 +#, fuzzy, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"Bruk: %s [FIL]...\n" +"eller: %s [FLAGG]\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" + +#: src/factor.c:85 +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "" + +#: src/false.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "Bruk: %s [-SIFFER] [FLAGG]... [FIL]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" +"Omformattér hvert avsnitt i FILEN(e), skriv til standard ut.\n" +"Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +"inn.\n" + +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" +" -c, --crown-margin behold innrykket til de første to linjene\n" +" -p, --prefix=STRENG sett kun sammen linjer som har STRENG som\n" +" forstavelse\n" +" -s, --split-only del opp lange linjer, men ikke fyll opp\n" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" +" -t, --tagged-paragraph innrykket til første linje er forskjellig fra " +"neste\n" +" -u, --uniform-spacing ett mellomrom mellom ord, to etter setninger\n" +" -w, --width=TALL maksimal linjelengde (ellers 75 kolonner)\n" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" +"\n" +"Ved -wTALL kan «w» utelates.\n" + +#: src/fmt.c:345 +#, c-format +msgid "invalid width option: `%s'" +msgstr "ugyldig breddespesifikasjon «%s»" + +#: src/fmt.c:385 +#, c-format +msgid "invalid width: `%s'" +msgstr "ugyldig bredde: «%s»" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" +"Brekk om linjene i hver FIL (standard inn), skriv til standard ut\n" +"\n" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" +" -b, --bytes tell bytes istedet for kolonner\n" +" -s, --spaces brekk om ved mellomrom\n" +" -w, --width=BREDDE bruk BREDDE kolonner istedet for 80\n" + +#: src/fold.c:267 +#, fuzzy, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "advarsel: «sort %s» er avleggs; bruk «sort -k»" + +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "ugyldig antall kolonner: «%s»" + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Skriv de første 10 linjene av hver FIL til standard ut.\n" +"Med mer enn en FIL er angitt, skriv ut filnavnet før hver FIL.\n" +"Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +"inn.\n" +"\n" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" +" -c, --bytes=STØRRELSE skriv ut første STØRRELSE bytes\n" +" -n, --lines=ANTALL skriv ut første ANTALL tegn istedet for 10\n" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" +" -q, --quiet, --silent ikke skriv ut filnavnene først\n" +" -v, --verbose skriv alltid filnavnene først\n" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" +"\n" +"STØRRELSE kan ha en multiplikatorendelse: b for 512, k for 1K eller\n" +" m for 1 Meg.\n" + +#: src/head.c:190 +#, fuzzy, c-format +msgid "cannot reposition file pointer for %s" +msgstr "kan ikke opprette katalog %s" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "%s: %s er så stor at den ikke kan representeres" + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "antall linjer" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "antall bytes" + +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "ugyldig antall linjer" + +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "ugyldig antall bytes" + +#: src/head.c:341 +#, c-format +msgid "unrecognized option `-%c'" +msgstr "ukjent flagg «-%c»" + +#: src/head.c:348 +#, fuzzy, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "advarsel: «sort %s» er avleggs; bruk «sort -k»" + +#: src/hostid.c:48 +#, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" + +#: src/hostname.c:67 +#, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" + +#: src/hostname.c:104 +#, fuzzy, c-format +msgid "cannot set hostname to `%s'" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "" + +#: src/id.c:36 +#, fuzzy +msgid "Arnold Robbins and David MacKenzie" +msgstr "Paul Rubin og David MacKenzie" + +#: src/id.c:87 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "Bruk: %s [FLAGG]... SETT1 [SETT2]\n" + +#: src/id.c:88 +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" + +#: src/id.c:162 +#, fuzzy +msgid "cannot print only user and only group" +msgstr "kan ikke utelate både bruker og gruppe" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "" + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "" + +#: src/id.c:235 +#, fuzzy, c-format +msgid "cannot find name for group ID %u" +msgstr "kan ikke endre eier og/eller gruppe for %s" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "" + +#: src/id.c:385 +msgid " groups=" +msgstr "" + +#: src/install.c:269 +msgid "the strip option may not be used when installing a directory" +msgstr "" + +#: src/install.c:292 src/mkdir.c:140 +#, fuzzy, c-format +msgid "invalid mode %s" +msgstr "ugyldig bredde: «%s»" + +#: src/install.c:307 src/install.c:371 +#, fuzzy, c-format +msgid "creating directory %s" +msgstr "kan ikke opprette katalog %s" + +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "" + +#: src/install.c:435 +#, fuzzy, c-format +msgid "%s is a directory" +msgstr "%s eksisterer men er ikke en katalog" + +#: src/install.c:495 +#, fuzzy, c-format +msgid "cannot obtain time stamps for %s" +msgstr "kan ikke opprette katalog %s" + +#: src/install.c:507 +#, fuzzy, c-format +msgid "cannot set time stamps for %s" +msgstr "kan ikke opprette katalog %s" + +#: src/install.c:528 +#, fuzzy +msgid "fork system call failed" +msgstr "blokkstørrelse" + +#: src/install.c:532 +msgid "cannot run strip" +msgstr "" + +#: src/install.c:539 +#, fuzzy +msgid "strip failed" +msgstr "stat feilet" + +#: src/install.c:560 +#, fuzzy, c-format +msgid "invalid user %s" +msgstr "ugyldig bruker" + +#: src/install.c:578 +#, fuzzy, c-format +msgid "invalid group %s" +msgstr "ugyldig gruppe" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "Bruk: %s [FLAGG]... FIL1 FIL2\n" + +#: src/join.c:148 +#, fuzzy +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" +"For hvert par av inn-linjer med like sammenføyningsfelt, skriv en linje til\n" +"standard ut. Det forvalgte sammenføyningsfeltet er det første\n" +"feltet, avgrenset av «blanke» tegn. Dersom FIL1 eller FIL2 (ikke begge)\n" +"er -, leses det fra standard inn.\n" +"\n" +" -a SIDE skriv ut linjer som ikke kan parres som fra fil SIDE\n" +" -e TOM erstatt manglende inn-felt med TOM\n" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" +" -i, --ignore-case ignorer forskjeller i store/små bokstaver ved\n" +" sammenligning av felt\n" +" -j FELT (avleggs) samme som «-1 FELT -2 FELT»\n" +" -j1 FELT (avleggs) samme som «-1 FELT»\n" +" -j2 FELT (avleggs) samme som «-2 FELT»\n" +" -o FORMAT følg FORMAT når utlinjen lages\n" +" -t TEGN bruk TEGN som feltseparator for inn og ut\n" + +#: src/join.c:165 +#, fuzzy +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" +" -v SIDE som -a SIDE, men dropp sammenføyde ut-linjer\n" +" -1 FELT sammenføy ved dette FELTet fra fil 1\n" +" -2 FELT sammenføy ved dette FELTet fra fil 2\n" + +#: src/join.c:172 +#, fuzzy +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" +"\n" +"Dersom -t TEGN ikke er angitt, er «ledende blanke» feltseparator, og " +"ignoreres,\n" +"ellers er felt skilt av TEGN. Hvert FELT er et feltnummer telt fra 1.\n" +"FORMAT er en eller flere komma- eller blank-separerte spesifikasjoner, der\n" +"hver er «SIDE.FELT» eller «0». Det forvalgte FORMATet skriver ut\n" +"sammenføyningsfeltet, resten av feltene fra FIL1 og resten av feltene fra\n" +"FIL2, alle skilt med TEGN.\n" + +#: src/join.c:645 +#, c-format +msgid "invalid field specifier: `%s'" +msgstr "ugyldig felt-spesifikator: «%s»" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, c-format +msgid "invalid field number: `%s'" +msgstr "ugyldig felt-nummer: «%s»" + +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "ugyldig filnummer i felt-spesifikator: «%s»" + +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "ugyldig feltnummer for fil 1: «%s»" + +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "ugyldig feltnummer for fil 2: «%s»" + +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "for mange ikke-flagg-argumenter" + +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "for få ikke-flagg-argumenter" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "begge filene kan ikke være standard inn" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" + +#: src/kill.c:106 +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" + +#: src/kill.c:163 +#, fuzzy, c-format +msgid "%s: invalid signal" +msgstr "%s: ugyldig prosess-id" + +#: src/kill.c:262 +#, fuzzy, c-format +msgid "missing operand after `%s'" +msgstr "%s: heltall forventet etter «%c»" + +#: src/kill.c:274 +#, fuzzy, c-format +msgid "%s: invalid process id" +msgstr "%s: ugyldig mønster" + +#: src/kill.c:327 +#, fuzzy, c-format +msgid "invalid option -- %c" +msgstr "%s: ukjent flagg -- %c\n" + +#: src/kill.c:336 +#, c-format +msgid "%s: multiple signals specified" +msgstr "" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "" + +#: src/link.c:51 +#, fuzzy, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"Bruk: %s [FIL]...\n" +"eller: %s [FLAGG]\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" + +#: src/link.c:98 +#, fuzzy, c-format +msgid "cannot create link %s to %s" +msgstr "kan ikke opprette katalog %s" + +#: src/ln.c:39 +#, fuzzy +msgid "Mike Parker and David MacKenzie" +msgstr "Scott Bartram og David MacKenzie" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "" + +#: src/ln.c:174 +#, c-format +msgid "%s: hard link not allowed for directory" +msgstr "" + +#: src/ln.c:246 +#, fuzzy, c-format +msgid "%s: cannot overwrite directory" +msgstr "kan ikke opprette katalog %s" + +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "" + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "" + +#: src/ln.c:304 +#, c-format +msgid "create symbolic link %s to %s" +msgstr "" + +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "" + +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "" + +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "" + +#: src/ln.c:339 +#, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" + +#: src/ln.c:521 +#, fuzzy, c-format +msgid "%s: specified target directory is not a directory" +msgstr "%s eksisterer men er ikke en katalog" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "Bruk: %s [FLAGG] [FIL]...\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" + +#: src/logname.c:99 +#, fuzzy, c-format +msgid "%s: no login name\n" +msgstr "%s: ugyldig nummer" + +#: src/ls.c:673 +#, fuzzy +msgid "%b %e %Y" +msgstr "%b %e %H:%M %Y" + +#: src/ls.c:681 +#, fuzzy +msgid "%b %e %H:%M" +msgstr "%b %e %H:%M %Y" + +#: src/ls.c:1307 +#, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "" + +#: src/ls.c:1482 +#, fuzzy, c-format +msgid "invalid line width: %s" +msgstr "ugyldig bredde: «%s»" + +#: src/ls.c:1556 +#, fuzzy, c-format +msgid "invalid tab size: %s" +msgstr "ugyldig type-streng «%s»" + +#: src/ls.c:1722 +#, fuzzy, c-format +msgid "invalid time style format %s" +msgstr "ugyldig argument %s for %s" + +#: src/ls.c:2054 +#, fuzzy, c-format +msgid "unrecognized prefix: %s" +msgstr "ukjent flagg «-%c»" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "" + +#: src/ls.c:2145 +#, fuzzy, c-format +msgid "cannot determine device and inode of %s" +msgstr "kan ikke opprette katalog %s" + +#: src/ls.c:2155 +#, fuzzy, c-format +msgid "not listing already-listed directory: %s" +msgstr "kan ikke opprette katalog %s" + +#: src/ls.c:2208 src/remove.c:929 +#, fuzzy, c-format +msgid "reading directory %s" +msgstr "kan ikke opprette katalog %s" + +#: src/ls.c:2603 +#, fuzzy, c-format +msgid "cannot compare file names %s and %s" +msgstr "Strengene som ble sammenlignet var «%s» og «%s»." + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" + +#: src/ls.c:3784 +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" + +#: src/ls.c:3799 +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" + +#: src/ls.c:3831 +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" + +#: src/ls.c:3871 +#, fuzzy +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" +" -f, --fields=LISTE skriv bare ut disse feltene. Skriv også ut\n" +" linjer som ikke inneholder noen skilletegn,\n" +" med mindre flagget -s er spesifisert\n" +" -n (ignorert)\n" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "Ulrich Drepper og Scott Miller" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"Bruk: %s [FLAGG] [FIL]...\n" +"eller: %s [FLAGG] --check [FIL]\n" +"Skriv eller sjekk %s-sjekksummer (%d-bit).\n" +"Dersom ingen FIL er spesifisert eller FIL er -, leses det fra standard inn.\n" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" +"\n" +" -b, --binary les filene i binærmodus (forvalg i DOS/Windows)\n" +" -c, --check sjekk %s-summene mot angitt liste\n" +" -t, --text les filene i tekstmodus (forvalgt)\n" +"\n" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" +"De følgende to flaggene brukes kun ved sjekking av sjekksummer:\n" +" --status ikke skriv ut noe, statuskode angir resultat\n" +" -w, --warn advar mot feilformatterte MD5-sjekksum-linjer\n" +"\n" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" +"\n" +"Summene blir beregnet som beskrevet i %s. Ved sjekking skal\n" +"inndata være tidligere utdata fra dette programmet. Forvalgt \n" +"modus er å skrive ut en linje med sjekksum, et tegn som indikerer\n" +"type («*» for binær, « » for tekst), og navnet til hver FIL\n" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "%s: %lu: ukorrekt formattert %s-sjekksumlinje" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "%s: FEIL ved åpning eller lesing\n" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "FEIL" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "OK" + +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%s: lesefeil" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "%s: ingen riktig formatterte %s-sjekksumlinjer funnet" + +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "ADVARSEL: %d av %d oppførte %s kunne ikke leses" + +#: src/md5sum.c:473 +msgid "file" +msgstr "fil" + +#: src/md5sum.c:473 +msgid "files" +msgstr "filer" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "ADVARSEL: %d av %d beregnede %s stemte IKKE overens" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "sjekksum" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "sjekksummer" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" +"flaggene --binary og --text er meningsløse ved verifisering av sjekksummer" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "flaggene --string og --check kan ikke brukes samtidig" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "flagget --status har bare betydning ved sjekking av sjekksummer" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "flagget --warn har bare betydning ved sjekking av sjekksummer" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "ingen filer kan spesifiseres når flagget --string brukes" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "kun ett argument kan spesifiseres ved bruk av --check" + +#: src/mkdir.c:61 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "Bruk: %s [FLAGG] [FIL]...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" + +#: src/mkdir.c:69 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" + +#: src/mkdir.c:113 +#, fuzzy, c-format +msgid "created directory %s" +msgstr "kan ikke opprette katalog %s" + +#: src/mkdir.c:190 +#, fuzzy, c-format +msgid "cannot set permissions of directory %s" +msgstr "kan ikke endre rettigheter til %s" + +#: src/mkfifo.c:55 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "Bruk: %s [FLAGG] [FIL]...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" + +#: src/mkfifo.c:63 src/mknod.c:64 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "" + +#: src/mkfifo.c:123 src/mknod.c:127 +#, fuzzy +msgid "invalid mode" +msgstr "ugyldig antall" + +#: src/mkfifo.c:142 +#, fuzzy, c-format +msgid "cannot set permissions of fifo %s" +msgstr "kan ikke endre rettigheter til %s" + +#: src/mknod.c:55 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "Bruk: %s [FLAGG]... SETT1 [SETT2]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" + +#: src/mknod.c:76 +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" + +#: src/mknod.c:141 +#, fuzzy +msgid "wrong number of arguments" +msgstr "for få argumenter" + +#: src/mknod.c:153 +#, fuzzy +msgid "block special files not supported" +msgstr "blokkstørrelse" + +#: src/mknod.c:162 +#, fuzzy +msgid "character special files not supported" +msgstr "tegn-posisjon er null" + +#: src/mknod.c:171 +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" + +#: src/mknod.c:186 +#, fuzzy, c-format +msgid "invalid major device number %s" +msgstr "ugyldig startlinjenummer: «%s»" + +#: src/mknod.c:191 +#, fuzzy, c-format +msgid "invalid minor device number %s" +msgstr "ugyldig startlinjenummer: «%s»" + +#: src/mknod.c:196 +#, fuzzy, c-format +msgid "invalid device %s %s" +msgstr "ugyldig argument %s for %s" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "" + +#: src/mknod.c:231 +#, fuzzy, c-format +msgid "cannot set permissions of %s" +msgstr "kan ikke endre rettigheter til %s" + +#: src/mv.c:44 +#, fuzzy +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie og Jim Meyering" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" + +#: src/mv.c:339 +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" + +#: src/mv.c:467 +#, fuzzy, c-format +msgid "specified target, %s is not a directory" +msgstr "%s eksisterer men er ikke en katalog" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "" + +#: src/nice.c:67 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "Bruk: %s [FLAGG] [FIL]...\n" + +#: src/nice.c:68 +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" + +#: src/nice.c:109 src/nice.c:122 +#, fuzzy, c-format +msgid "invalid option `%s'" +msgstr "ugyldig breddespesifikasjon «%s»" + +#: src/nice.c:147 +#, fuzzy, c-format +msgid "invalid priority `%s'" +msgstr "ugyldig bredde: «%s»" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "" + +#: src/nice.c:178 src/nice.c:187 +#, fuzzy +msgid "cannot get priority" +msgstr "kan ikke opprette katalog %s" + +#: src/nice.c:192 +#, fuzzy +msgid "cannot set priority" +msgstr "kan ikke opprette katalog %s" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "Scott Bartram og David MacKenzie" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Skriv hver fil til standard ut, med linjenummer lagt til.\n" +"Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +"inn.\n" +"\n" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" +" -b, --body-numbering=STIL bruk STIL for nummerering\n" +" -d, --section-delimiter=CC bruk CC for å skille logiske sider\n" +" -f, --footer-numbering=STIL bruk STIL for å nummerere bunntekst\n" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" +" -h, --header-numbering=STIL bruk STIL for å nummerere topptekst\n" +" -i, --page-increment=ANTALL linjenummerøkning for hver linje\n" +" -l, --join-blank-lines=ANTALL ANTALL tomme linjer som teller som en\n" +" -n, --number-format=FORMAT sett inn linjenummer etter FORMAT\n" +" -p, --no-renumber ikke begynn linjenumre på nytt ved " +"logiske\n" +" sider\n" +" -s, --number-separator=STRENG legg til STRENG etter (mulig) linjenummer\n" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" +" -v, --first-page=ANTALL første linjenummer på hver logiske side\n" +" -w, --number-width=ANTALL bruk ANTALL kolonner for linjenummerering\n" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" +"\n" +"Forvalgt er -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC er\n" +"to skilletegn for å skille logiske sider, et manglende andretegn\n" +"impliserer «:». Bruk \\\\ for \\. STIL er en av:\n" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" +"\n" +" a nummerer alle linjer\n" +" t nummerer bare ikke-tomme linjer\n" +" n nummerer ingen linjer\n" +" pREGEXP nummerer bare linjer som passer REGEXP\n" +"\n" +"FORMAT er et av følgende:\n" +"\n" +" ln venstrejustert, ingen ledende nuller\n" +" rn høyrejustert, ingen ledende nuller\n" +" rz høyrejustert, ledende nuller\n" +"\n" + +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "ugyldig startlinjenummer: «%s»" + +#: src/nl.c:514 +#, c-format +msgid "invalid line number increment: `%s'" +msgstr "ugyldig linjenummer-økning: «%s»" + +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "ugyldig antall blanke linjer: «%s»" + +#: src/nl.c:541 +#, c-format +msgid "invalid line number field width: `%s'" +msgstr "ugyldig linjenummer-feltbredde: «%s»" + +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"Bruk: %s [FLAGG]... [FIL]...\n" +" eller: %s --traditional [FIL] [[+]POSISJON [[+]MERKE]]\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"\n" +"Skriv en entydig representasjon, oktale bytes forvalgt, av FIL\n" +"til standard ut. Dersom ingen FIL er spesifisert, eller FIL er -,\n" +"leses det fra standard inn.\n" +"\n" + +#: src/od.c:299 +#, fuzzy +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "" +"Obligatoriske argmenter til lange flagg er obligatoriske også for korte.\n" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" +" -A, --address-radix=RADIX bestem hvordan filoffset'er skrives\n" +" -j, --skip-bytes=BYTES hopp over første BYTES fra hver fil\n" + +#: src/od.c:306 +#, fuzzy +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" +" -N, --read-bytes=BYTES begrens oppgaven til første BYTES fra hver " +"fil\n" +" -s, --strings[=BYTES] skriv ut strenger med minst BYTES grafiske " +"tegn\n" +" -t, --format=TYPE velg utformat(er)\n" +" -v, --output-duplicates ikke bruk * for å markere linjefjerning\n" +" -w, --width[=BYTES] skriv BYTES bytes per utlinje\n" + +#: src/od.c:316 +#, fuzzy +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" +"\n" +"Før-POSIX-argumenter kan blandes, de er:\n" +" -a samme som -t a, velg navngitte tegn\n" +" -b samme som -t oC, velg oktalbytes\n" +" -c samme som -t c, velg ASCII-tegn eller backslash-notasjon\n" +" -d samme som -t u2, velg korte desimaler uten fortegn\n" +"\n" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" +" -f samme som -t fF, velg flyttall\n" +" -h samme som -t x2, velg korte hexadesimale\n" +" -i samme som -t d2, velg korte desimaler\n" +" -l samme som -t d4, velg lange desimaler\n" +" -o samme som -t o2, velg korte oktaler\n" +" -x samme som -t x2, velg korte hexadesimaler\n" + +#: src/od.c:332 +#, fuzzy +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" +"\n" +"For eldre syntaks («second call format»), betyr POSISJON -j POSISJON. \n" +"MERKE er pseudoadressen til den første uskrevne byten, som økes mens\n" +"utskriften pågår. For POSISJON og MERKE, indikerer en 0x- eller \n" +"0X-forstavelse hexadesimalt tallformat. Endelser kan være . for oktal,\n" +"og b for blokker på 512 bytes.\n" +"\n" +"TYPE er laget av en eller flere av følgende:\n" +"\n" +" a et navngitt tegn\n" +" c ASCII-tegn eller backslash-notasjon\n" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" +" d[STØRRELSE] desimal med fortegn, STØRRELSE bytes per tall\n" +" f[STØRRELSE] flyttall, STØRRELSE bytes per tall\n" +" o[STØRRELSE] oktal, STØRRELSE bytes per tall\n" +" u[STØRRELSE] desimal uten fortegn, STØRRELSE bytes per tall\n" +" x[STØRRELSE] hexadesimal, STØRRELSE bytes per tall\n" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" +"\n" +"STØRRELSE er et tall. For TYPE lik d, o, u eller x, kan STØRRELSE også være\n" +"C for sizeof(char), S for sizeof(short), I for sizeof(int) eller L for \n" +"sizeof(long). Når TYPE er f, kan STØRRELSE være F for sizeof(float), \n" +"D for sizeof(double) eller L for sizeof(long double).\n" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" +"\n" +"RADIX er d for desimal, o for oktal, x for hexadesimal eller n for ingen.\n" +"BYTES er hexadesimal med 0x- eller 0X-prefix, multipliseres med 512\n" +"med endelse b, med 1024 med endelse k og med 1048576 med endelse m. \n" +"En z-endelse for en hvilken som helst type viser skrivbare tegn til slutten\n" +"av hver linje av utskriften. " + +#: src/od.c:366 +#, fuzzy +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" +"-s uten et tall impliserer 3. -w uten et tall impliserer 32.\n" +"Forvalgt er at od bruker -A o -t d2 -w 16.\n" + +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "ugyldig type-streng «%s»" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" +"ugyldig type-streng «%s»;\n" +"dette systemet støtter ikke en %lu-byte heltallstype" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" +"ugyldig type-streng «%s»;\n" +"dette systemet støtter ikke en %lu-byte flyttallstype" + +#: src/od.c:917 +#, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "ugyldig tegn «%c» i type-streng «%s»" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "kan ikke hoppe til bak slutten av kombinert inndata" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "posisjon på gammel stil" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "ugyldig ut-adresse radix «%c»; det må være ett av tegnene [doxn]" + +#: src/od.c:1717 +msgid "skip argument" +msgstr "hopp over argument" + +#: src/od.c:1725 +msgid "limit argument" +msgstr "begrens argument" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "minimal strenglengde" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "%s er for stor" + +#: src/od.c:1804 +msgid "width specification" +msgstr "breddespesifikasjon" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "ingen type kan spesifiseres ved dumping av strenger" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "ugyldig andre-operand i kompatibilitetsmodus «%s»" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "i kompatibilitetsmodus må de siste to argumentene være posisjoner" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "kompatibilitetsmodus støtter maksimum tre argumenter" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "advarsel: ugyldig bredde %lu; bruker %d istedet" + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "%d: fmt=\"%s\" bredde=%d\n" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "David M. Ihnat og David MacKenzie" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "standard inn er lukket" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Skriv linjer som består av de sekvensielt tilsvarende linjene fra hver\n" +"FIL separert med tabulatorer til standard ut.\n" +"Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +"inn.\n" +"\n" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" +" -d, --delimiters=LISTE bruk tegn fra LISTE istedet for tabulatorer\n" +" -s, --serial ta en fil om gangen i steder for i parallell\n" + +#: src/pathchk.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "Bruk: %s [FLAGG]... [FIL]...\n" + +#: src/pathchk.c:147 +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" + +#: src/pathchk.c:237 +#, fuzzy, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "tabulatorstørrelse inneholder et ugyldig tegn" + +#: src/pathchk.c:257 +#, fuzzy, c-format +msgid "`%s' is not a directory" +msgstr "%s eksisterer men er ikke en katalog" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "" + +#: src/pathchk.c:355 +#, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "" + +#: src/pathchk.c:381 +#, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "" + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "" + +#: src/pinky.c:298 +msgid "???\n" +msgstr "" + +#: src/pinky.c:318 +msgid "Directory: " +msgstr "" + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "" + +#: src/pinky.c:341 +msgid "Project: " +msgstr "" + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "" + +#: src/pinky.c:386 +msgid "Login" +msgstr "" + +#: src/pinky.c:388 +msgid "Name" +msgstr "" + +#: src/pinky.c:389 +msgid " TTY" +msgstr "" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "" + +#: src/pinky.c:392 +msgid "When" +msgstr "" + +#: src/pinky.c:395 +msgid "Where" +msgstr "" + +#: src/pinky.c:469 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "Bruk: %s [FLAGG]... [FIL]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" + +#: src/pinky.c:574 +#, fuzzy +msgid "no username specified; at least one must be specified when using -l" +msgstr "ingen filer kan spesifiseres når flagget --string brukes" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "Pete TerMaat og Roland Huebner" + +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "«--pages» ugyldig område med sidenummer: «%s»" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "«--pages» ugyldig start-sidenummer: «%s»" + +#: src/pr.c:829 +#, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "«--pages» ugyldig slutt-sidenummer: «%s»" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "«--pages» start-sidenummeret er større enn slutt-sidenummeret" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "«--pages=FØRSTE_SIZE[:SISTE_SIDE]» mangler argument" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "«--columns=SPALTER» ugyldig antall kolonner: «%s»" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "«-l SIDE_LENGDE» igyldig antall linjer: «%s»" + +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "«-N TALL» ugyldig start-linjenummer: «%s»" + +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "«-o MARG» ugyldig linje-offset: «%s»" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "«-w SIDE_BREDDE» igyldig antall tegn: «%s»" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "«-W SIDE_BREDDE» ugyldig antall tegn: «%s»" + +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "%b %e %H:%M %Y" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "Kan ikke spesifisere antall kolonner når det skrives i parallell." + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "Kan ikke spesifisere både skriving i kryss og skriving i parallell" + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "«-%c» ekstra tegn eller ugyldig tall i argumentet: «%s»" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "sidebredde for smal" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "start-sidenummeret er større enn totalt antall sider: «%d»" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "Side %d" + +#: src/pr.c:2759 +#, fuzzy +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" +"Paginér eller kolumnér FIL(er) for utskrift.\n" +"\n" + +#: src/pr.c:2766 +#, fuzzy +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" +" +FØRSTE_SIDE[:SISTE_SIDE], --pages=FØRSTE_SIDE[:SISTE_SIDE]\n" +" begynn [stopp] utskrift med side FØRSTE_[SISTE_]SIDE\n" +" -KOLONNE, --columns=COLONNE\n" +" lag KOLONNE-kolonners utskrift og skriv kolonner " +"nedover,\n" +" med mindre -a brukes. Balansér antall linjer i\n" +" kolonnene på hver side\n" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" +" -a, --across skriv kolonner på tvers isteden for nedover, brukes " +"sammen\n" +" med -KOLONNE\n" +" -c, --show-control-chars\n" +" bruk hatt-notasjon (^G) og oktal backslah-notasjon\n" +" -d, --double-space\n" +" bruk dobbel linjeavstand\n" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" +" -D, --date-format=FORMAT\n" +" bruk FORMAT for topptekst-dato\n" +" -e[TEGN[BREDDE]], --expand-tabs[=TEGN[BREDDE]]\n" +" ekspander inn-TEGN (TAB) til tabulator-BREDDE (8)\n" +" -F, -f, --form-feed\n" +" bruk sideskift isteden for linjeskift for å separere\n" +" sider. (ved en 3-linjers topptekst med -F eller en\n" +" 5-linjers topptekst og bunntekst uten -F)\n" + +#: src/pr.c:2792 +#, fuzzy +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" +" -h TOPPTEKST, --header=TOPPTEKST\n" +" bruk en sentrert TOPPTEKST isteden for filnavn i\n" +" toppteksten. -h \"\" skriver en blank linje, ikke bruk\n" +" -h\"\"\n" +" -i[TEGN[BREDDE], --output-tabs[=TEGN[BREDDE]]\n" +" erstatt mellomrom med TEGN (TAB) til tabulator-BREDDE" +"(8)\n" +" -J, --join-lines flett sammen hele linjer. Skrur av -W-linje-" +"trunkering,\n" +" ingen kolonnejustering, -S[STRENG] setter skilletegn\n" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" +" -l SIDE_LENDGE, --length=SIDE_LENDGE\n" +" setter sidelengden til SIDE_LENDGE (66) linjer\n" +" (forvalgt antall linjer med tekst er 56, og med -F 63)\n" +" -m, --merge skriv alle filer i parallell, en i hver kolonne,\n" +" trunker linjer, men flett sammen hele linjer med -J\n" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" +" -n[SKILL[SIFFER]], --number-linjes[=SKILL[SIFFER]]\n" +" antall linjer, bruk SIFFER (5) siffer, så SKILL (TAB),\n" +" forvalgt starter telling med første linje av innfil\n" +" -N NUMMER, --first-linje-number=NUMMER\n" +" start telling med NUMMER ved første linje av første\n" +" side skrevet ut (se +FØRSTE_SIDE)\n" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" +" -o MARG, --indent=MARG\n" +" posisjonér hver linje med MARG (0) mellomrom,\n" +" påvirker ikke -w eller -W. MARG vil adderes til " +"SIDE_BREDDE\n" +" -r, --no-file-warnings\n" +" ikke advar når fil ikke kan åpnes\n" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" +" -s[TEGN], --separator[=CHAR]\n" +" skill kolonner med et enkelt tegn, forvalgt TEGNS\n" +" er TAB-tegnet med -w og ingen tegn ved -W\n" +" -s[TEGN] skrur av linjetrunkering av alle 3 kolonne-\n" +" flaggene (-KOLONNE|-a -KOLONNE|-m) hvis ikke -w er satt\n" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr "" + +#: src/pr.c:2833 +#, fuzzy +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" +" -S[STRENG], --sep-string[=STRENG]\n" +" skill kolonner med en STRENG. Ikke bruk -S \"STRENG\".\n" +" Bare -S: Ikke noe skilletegn (samme som -S\"\").\n" +" Uten -S: Fovalgt skilletegn TAB med -J og SPACE\n" +" ellers (samme som -S\" \"), ingen effekt på kolonne-" +"flagg\n" +" -t, --omit-header ikke ta med topptekst og bunntekst\n" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" +" -T, --omit-pagination\n" +" ikke ta med topp- og bunntekst, eliminer evt. " +"paginering\n" +" av sideskift satt i inn-filer\n" +" -v, --show-non-printing\n" +" bruk backslash-notasjon\n" +" -w SIDEBREDDE, --with=SIDEBREDDE\n" +" sett sidebredde til SIDEBREDDE (72) tegn for\n" +" flerkolonners tekstutskrift. -s[tegn] skrur av (72)\n" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" +" -W SIDEBREDDE, --page-width=SIDEBREDDE\n" +" sett sidebredde til SIDEBREDDE (72) tegn\n" +" trunkér linjer hvis ikke -J er satt. Ingen påvirkning\n" +" med -S eller -s\n" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" +"\n" +"-T impliseres av -l nn når nn <= 10 eller <= 3 med -F. Dersom FIL ikke\n" +"er oppgitt, eller når FIL er -, leses det fra standard inn.\n" + +#: src/printenv.c:43 +#, fuzzy +msgid "David MacKenzie and Richard Mlynarik" +msgstr "David Ihnat, David MacKenzie og Jim Meyering" + +#: src/printenv.c:63 +#, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "" + +#: src/printf.c:100 +#, fuzzy, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"Bruk: %s [FIL]...\n" +"eller: %s [FLAGG]\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "" + +#: src/printf.c:292 +#, fuzzy, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "ugyldig tegn-klasse «%s»" + +#: src/printf.c:472 +#, fuzzy, c-format +msgid "invalid field width: %s" +msgstr "ugyldig bredde: «%s»" + +#: src/printf.c:498 +#, fuzzy, c-format +msgid "invalid precision: %s" +msgstr "ugyldig breddespesifikasjon «%s»" + +#: src/printf.c:519 +#, fuzzy, c-format +msgid "%%%c: invalid directive" +msgstr "%s: ugyldig mønster" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "" + +#: src/printf.c:594 +#, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "%s (for regexp «%s»)" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"Bruk : %s [FLAGG]... [INN]... (uten -G)\n" +"eller: %s -G [FLAGG]... [INN [UT]]\n" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" +"Skriv ut en permutert indeks, inkludert kontekst, av ordene i innfilene\n" +"\n" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" +" -A, --auto-reference skriv ut automatisk genererte referanser\n" +" -C, --copyright vis Copyright og kopieringsbetingelser\n" +" -G, --traditional vær mer som System Vs «ptx»\n" +" -F, --flag-truncation=STRENG bruk STRENG for å markere linjetrunkering\n" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" +" -M, --macro-name=STRENG makronavn å bruke istedenfor «xx»\n" +" -O, --format=roff generer utskrift som roff-direktiver\n" +" -R, --right-side-refs plassér referansene på høyre side, ikke\n" +" telt med i -w\n" +" -S, --sentence-regexp=REGEXP for slutten av linjer eller slutten av\n" +" setninger\n" +" -T, --format=tex generer utskrift som TeX-direktiver\n" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" +" -W, --word-regexp=REGEXP bruk REGEXP for å treffe hvert nøkkelord\n" +" -b, --break-file=FIL tegn for orddeling i denne FILen\n" +" -f, --ignore-case gjør om små bokstaver til store for " +"sortering\n" +" -g, --gap-size=TALL størrelse på mellomrom mellom spalter i " +"utfelt\n" +" -i, --ignore-file=FIL les liste over ord som skal ignoreres fra " +"FIL\n" +" -o, --only-file=FIL les liste over ord som *ikke* skal " +"ignoreres\n" +" fra FIL\n" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" +" -r, --references første felt av hver linje er en referanse\n" +" -t, --typeset-mode - ikke implementert -\n" +" -w, --width=BREDDE utskriftbredde for spalter, eksklusive\n" +" referanser\n" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" +"\n" +"Ved ingen FIL eller hvis FIL er -, leses det fra standard inn. «-F /» er\n" +"forvalgt.\n" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" +"Dette programmet er fri programvare. Du kan redistribueret det og/eller\n" +"modifisere det under betingelsene gitt av GNU General Public License som\n" +"distribuert av Free Software Foundation; enten versjon 2, eller (om du vil)\n" +"en hvilken som helst senere versjon.\n" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" +"Dette programmet er distribuert i ønsket om at det vil være nyttig,\n" +"men UTEN NOEN GARANTI, til og med uten noen implisert garanti om\n" +"SALGBARHET eller EGNETHET TIL NOEN SPESIELL BRUK. Se GNU General\n" +"Public License for mer detaljer.\n" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" +"Du skulle ha mottatt en kopi av GNU General Public License\n" +"sammen med dette programmet. Hvis ikke, skriv til Free Software " +"Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" + +#: src/pwd.c:74 +#, fuzzy +msgid "ignoring non-option arguments" +msgstr "for mange ikke-flagg-argumenter" + +#: src/pwd.c:78 +#, fuzzy +msgid "cannot get current directory" +msgstr "kan ikke opprette katalog %s" + +#: src/readlink.c:69 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "Bruk: %s [FLAGG]... [FIL]...\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" + +#: src/remove.c:394 +#, fuzzy, c-format +msgid "cannot chdir from %s to .." +msgstr "kan ikke skifte til katalog, %s" + +#: src/remove.c:407 src/remove.c:488 +#, c-format +msgid "cannot lstat `.' in %s" +msgstr "" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, c-format +msgid "cannot lstat %s" +msgstr "" + +#: src/remove.c:603 +#, fuzzy, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "kan ikke opprette katalog %s" + +#: src/remove.c:604 +#, fuzzy, c-format +msgid "%s: descend into directory %s? " +msgstr "kan ikke skifte til katalog, %s" + +#: src/remove.c:614 +#, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "" + +#: src/remove.c:615 +#, c-format +msgid "%s: remove %s %s? " +msgstr "" + +#: src/remove.c:639 +#, c-format +msgid "removed %s\n" +msgstr "" + +#: src/remove.c:654 src/remove.c:1059 +#, fuzzy, c-format +msgid "removed directory: %s\n" +msgstr "kan ikke opprette katalog %s" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, fuzzy, c-format +msgid "cannot remove directory %s" +msgstr "kan ikke opprette katalog %s" + +#: src/remove.c:815 +#, fuzzy, c-format +msgid "cannot open directory %s" +msgstr "kan ikke opprette katalog %s" + +#: src/remove.c:896 src/remove.c:1002 +#, fuzzy, c-format +msgid "cannot chdir from %s to %s" +msgstr "kan ikke skifte til katalog, %s" + +#: src/remove.c:904 +#, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "" + +#: src/rm.c:60 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie og Jim Meyering" + +#: src/rm.c:99 src/touch.c:244 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "Bruk: %s [FLAGG]... [FIL]...\n" + +#: src/rm.c:100 +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, fuzzy, c-format +msgid "removing directory, %s" +msgstr "kan ikke opprette katalog %s" + +#: src/rmdir.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "Bruk: %s [FLAGG]... [FIL]...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" + +#: src/rmdir.c:154 +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" + +#: src/seq.c:82 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"Bruk : %s [FLAGG]... [INN]... (uten -G)\n" +"eller: %s -G [FLAGG]... [INN [UT]]\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" + +#: src/seq.c:96 +#, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" + +#: src/seq.c:119 +#, fuzzy, c-format +msgid "invalid floating point argument: %s" +msgstr "ugyldig startlinjenummer: «%s»" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" + +#: src/seq.c:423 +#, fuzzy, c-format +msgid "invalid format string: `%s'" +msgstr "ugyldig type-streng «%s»" + +#: src/seq.c:445 +#, fuzzy +msgid "format string may not be specified when printing equal width strings" +msgstr "ingen type kan spesifiseres ved dumping av strenger" + +#: src/shred.c:160 +#, fuzzy, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "Bruk: %s [FLAGG] [FIL]...\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" + +#: src/shred.c:174 +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" + +#: src/shred.c:808 +#, c-format +msgid "%s: cannot rewind" +msgstr "" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "" + +#: src/shred.c:868 +#, fuzzy, c-format +msgid "%s: error writing at offset %s" +msgstr "feil ved skriving til %s" + +#: src/shred.c:897 +#, fuzzy, c-format +msgid "%s: file too large" +msgstr "%s: fil for lang" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "" + +#: src/shred.c:936 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "" + +#: src/shred.c:1195 +#, fuzzy, c-format +msgid "%s: invalid file type" +msgstr "%s: ugyldig antall linjer" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "" + +#: src/shred.c:1265 +#, fuzzy, c-format +msgid "%s: error truncating" +msgstr "%s: fil trunkert" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "" + +#: src/shred.c:1412 +#, fuzzy, c-format +msgid "%s: renamed to %s" +msgstr "%s: lesefeil" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "" + +#: src/shred.c:1551 +#, fuzzy, c-format +msgid "%s: invalid number of passes" +msgstr "%s: ugyldig antall sekunder" + +#: src/shred.c:1568 +#, fuzzy, c-format +msgid "%s: invalid file size" +msgstr "%s: ugyldig antall linjer" + +#: src/sleep.c:34 +#, fuzzy +msgid "Jim Meyering and Paul Eggert" +msgstr "Mike Haertel og Paul Eggert" + +#: src/sleep.c:52 +#, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" + +#: src/sleep.c:155 +#, fuzzy, c-format +msgid "invalid time interval `%s'" +msgstr "ugyldig felt-nummer: «%s»" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "Mike Haertel og Paul Eggert" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" +"Skriv en sortert konkatenering av alle FIL(er) til standard ut.\n" +"\n" +"Sorteringsflagg:\n" +"\n" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" +" -b, --ignore-leading-blanks ignorer ledende blanke\n" +" -d, --dictionary-order behandle bare blanke og alfanumeriske tegn\n" +" -f, --ignore-case konverter små bokstaver til store\n" + +#: src/sort.c:294 +#, fuzzy +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" +" -g, --general-numeric-sort sammenlign i henhold til vanlige nummériske\n" +" verdier\n" +" -i, --ignore-nonprinting behandle bare skrivbare tegn\n" +" -M, --month-sort sammenlign (ukjent) < 'JAN' < ... < 'DEC'\n" +" -n, --numeric-sort sammenlign i henhold til nummériske verdier\n" +" -r, --reverse reversér resultatet av sammenligningene\n" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" +"Andre flagg:\n" +"\n" +" -c, --check sjekk om inndata er sortert; ikke sortér\n" +" -k, --key=POS1[,POS2] start en nøkkel ved POS1, avslutt ved POS2 (fra " +"1)\n" +" -m, --merge flett sammen allerede sorterte filer; ikke " +"sortér\n" +" -o, --output=FIL skriv resultater til FIL isteden for standard " +"ut\n" +" -s, --stable stabiliser sortering ved å slå av siste-utvei-\n" +" sammenligning\n" +" -S, --buffer-size=STØRR bruk STØRRelse stort minne-buffer\n" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" +" -t, --field-separator=SKILL bruk SKILL isteden for ikke- til -tomrom-" +"overgang\n" +" -T, --temporary-directory=KAT bruk KATalog for midlertidige filer, ikke\n" +" $TMPDIR eller %s. Kan gjentas for å\n" +" spesifisere flere kataloger\n" +" -u, --unique med -c: sjekk for streng sortering\n" +" ellers, bare skriv ut det første av to like\n" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" +" -z, --zero-terminated avslutt linjer med en 0-oktett, ikke linjeskift\n" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" +"\n" +"POS er F[.C][OPTS], hvor F er feltnummeret og C er tegnposisjonen\n" +"i feltet. OPTS er en eller flere enbokstav-sorteringflagg, som\n" +"overstyrer globale sorteringsflagg for den nøkkelen. Hvis ingen nøkkel\n" +"er oppgitt, bruk hele linjen som nøkkel.\n" +"\n" +"STØRRELSE kan være fulgt av de følgende multiplikator-endelsene:\n" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" +"% 1% av minne, b 1, K 1024 (forvalgt) og så videre for M, G, T, P, E, Z, Y.\n" +"\n" +"Dersom ingen FIL er oppgitt eller FIL er -, leses det fra standard inn.\n" +"\n" +"*** ADVARSEL ***\n" +"Lokalet spesifisert av miljøet påvirker sorteringsrekkefølge.\n" +"Sett LC_ALL=C for å få den tradisjonelle sorteringsrekkefølgen som\n" +"bruker negative oktett-verdier.\n" + +#: src/sort.c:444 +msgid "cannot create temporary file" +msgstr "kan ikke opprette midlertidig fil" + +#: src/sort.c:467 +msgid "open failed" +msgstr "åpning av fil feilet" + +#: src/sort.c:487 src/sort.c:2496 +msgid "close failed" +msgstr "feil ved lukking av fil" + +#: src/sort.c:495 +msgid "write failed" +msgstr "feil ved skriving" + +#: src/sort.c:641 +msgid "sort size" +msgstr "sorteringsstørrelse" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "stat feilet" + +#: src/sort.c:972 +msgid "read failed" +msgstr "feil ved lesing" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "%s: %s:%s: uorden: " + +#: src/sort.c:1574 +msgid "standard error" +msgstr "standard feilkanal" + +#: src/sort.c:2032 +#, c-format +msgid "%s: invalid field specification `%s'" +msgstr "%s: ugyldig feltspesifikasjon «%s»" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "%s: tall «%.*s» for stort" + +#: src/sort.c:2064 +#, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "%s: ugyldig tall på starten av «%s»" + +#: src/sort.c:2298 +msgid "invalid number after `-'" +msgstr "ugyldig tall etter «-»" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +msgid "invalid number after `.'" +msgstr "ugyldig tall etter «.»" + +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "ugyldig tegn i feltspesifikasjon" + +#: src/sort.c:2338 +msgid "invalid number at field start" +msgstr "ugyldig tall i feltstart" + +#: src/sort.c:2342 src/sort.c:2370 +msgid "field number is zero" +msgstr "felt-nummer er null" + +#: src/sort.c:2351 +msgid "character offset is zero" +msgstr "tegn-posisjon er null" + +#: src/sort.c:2366 +msgid "invalid number after `,'" +msgstr "ugyldig tall etter «,»" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "flertegnstabulator «%s»" + +#: src/sort.c:2479 +#, fuzzy, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "ekstra operator «%s» ikke tillatt med -c" + +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "Bruk: %s [FLAGG] [INPUT [PREFIKS]]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" +"Skriv stykker av fast størrelse av INPUT til PREFIKSaa, PREFIKSab, ...;\n" +"Forvalgt PREFIKS er `x'. Dersom ingen INPUT er spesifisert, eller INPUT er " +"-,\n" +"leses det fra standard inn.\n" +"\n" + +#: src/split.c:108 +#, fuzzy, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" +" -ANTALL samme som -l ANTALL\n" +" -b, --bytes=STØRRELSE skriv STØRRELSE bytes i hver utfil\n" +" -C, --line-bytes=STØRRELSE skriv maksimum STØRRELSE bytes med linjer per\n" +" utfil\n" +" -l, --lines=ANTALL skriv ANTALL linjer i hver utfil\n" +" --verbose skriv en diagnostikk til standard error rett\n" +" før hver utfil åpnes\n" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "" + +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "lager filen «%s»\n" + +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "kan ikke dele opp på mer enn én måte" + +#: src/split.c:394 +#, fuzzy, c-format +msgid "%s: invalid suffix length" +msgstr "%s: ugyldig antall linjer" + +#: src/split.c:408 src/split.c:434 +#, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: ugyldig antall bytes" + +#: src/split.c:421 +#, c-format +msgid "%s: invalid number of lines" +msgstr "%s: ugyldig antall linjer" + +#: src/split.c:470 +#, fuzzy, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "advarsel: «sort %s» er avleggs; bruk «sort -k»" + +#: src/split.c:483 +msgid "invalid number" +msgstr "ugyldig antall" + +#: src/stat.c:326 +#, fuzzy +msgid "*** invalid date/time ***" +msgstr "ugyldig bredde: «%s»" + +#: src/stat.c:608 +#, fuzzy, c-format +msgid "cannot read file system information for %s" +msgstr "kan ikke opprette katalog %s" + +#: src/stat.c:684 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "Bruk: %s [FLAGG] [FIL]...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" + +#: src/stty.c:504 +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" + +#: src/stty.c:570 +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:608 +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" + +#: src/stty.c:787 +#, fuzzy +msgid "only one device may be specified" +msgstr "kun ett argument kan spesifiseres" + +#: src/stty.c:882 +#, fuzzy +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "flaggene --string og --check kan ikke brukes samtidig" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "" + +#: src/stty.c:957 src/stty.c:1064 +#, fuzzy, c-format +msgid "invalid argument `%s'" +msgstr "ugyldig argument %s for %s" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, fuzzy, c-format +msgid "missing argument to `%s'" +msgstr "flertydig argument %s for %s" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "" + +#: src/stty.c:1944 +#, fuzzy, c-format +msgid "invalid integer argument `%s'" +msgstr "ugyldig linjenummer-økning: «%s»" + +#: src/su.c:289 +msgid "Password:" +msgstr "" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "" + +#: src/su.c:350 +#, fuzzy +msgid "cannot set groups" +msgstr "kan ikke utelate både bruker og gruppe" + +#: src/su.c:354 +#, fuzzy +msgid "cannot set group id" +msgstr "kan ikke utelate både bruker og gruppe" + +#: src/su.c:356 +#, fuzzy +msgid "cannot set user id" +msgstr "kan ikke utelate både bruker og gruppe" + +#: src/su.c:437 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "Bruk: %s [FLAGG]... [FIL]...\n" + +#: src/su.c:438 +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "" + +#: src/su.c:580 +#, fuzzy, c-format +msgid "warning: cannot change directory to %s" +msgstr "kan ikke opprette katalog %s" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "Kayvan Aghaiepour og David MacKenzie" + +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" +"Skriv ut sjekksum og block-antall for hver FIL.\n" +"\n" +" -r bruk BSD-sum-algoritme, bruk 1K-blokker\n" +" -s, --sysv bruk SystemV-sum-algoritme, bruk 512 byte-blokker\n" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" + +#: src/sync.c:70 src/tty.c:112 +#, fuzzy +msgid "ignoring all arguments" +msgstr "for mange argumenter" + +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr " --help vis denne hjelpteksten og avslutt\n" + +#: src/sys2.h:494 +msgid " --version output version information and exit\n" +msgstr " --version vis programversjon og avslutt\n" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "Jay Lepreau og David MacKenzie" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Skriv hver FIL til standard ut, siste linje først.\n" +"Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +"inn.\n" +"\n" + +#: src/tac.c:139 +#, fuzzy +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" +" -b, --before føy til separator før istedet for etter\n" +" -r, --regex tolk separatoren som et regulært uttrykk\n" +" -s, --separator=STRENG bruk STRENG som separator istedet for linjeskift\n" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "stdin: lesefeil" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "separatoren kan ikke være tom" + +#: src/tail.c:49 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie og Jim Meyering" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Skriv de siste %d linjene av hver FIL til standard ut.\n" +"Med mer enn én FIL, innled hver med en topptekst med filnavnet.\n" +"Med ingen FILer eller hvis FIL er -, les fra standard inn.\n" +"\n" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" +" --retry fortsett å prøv å åpne en fil, selv om den\n" +" er utilgjengelig når tail starter eller hvis den\n" +" blir utilgjengelig senere -- bare nyttig med -f\n" +" -c, --bytes=N skriv ut de siste N oktettene\n" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" +" -f, --follow[={name|descriptor}]\n" +" skriv ut mer data etter hvert som filen vokser;\n" +" -f, --follow og --follow=descriptot er de samme\n" +" -F samme som --follow=name --retry\n" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" +" -n, --lines=N skriv ut de siste N linjene, isteden for de siste " +"%d\n" +" --max-unchanged-stats=N\n" +" med --follow=name, åpne en FIL på nytt hvis den\n" +" ikke har endret størrelse etter N (forvalgt %d)\n" +" runder for å se om den har blitt fjernet eller\n" +" skiftet navn\n" +" (dette er det vanlige tilfellet for roterte\n" +" logg-filer\n" + +#: src/tail.c:271 +#, fuzzy +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" +" --pid=PID med -f, terminer etter at prosess PID dør\n" +" -q, --quiet, --silent ikke skriv ut topptekster med filnavn\n" +" -s, --sleep-interval=S med -f, hver runde varer circa S (forvalgt 1) " +"sekunder\n" +" -v, --verbose skriv alltid topptekster med filnavn\n" + +#: src/tail.c:280 +#, fuzzy +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" +"\n" +"Hvis det første tegnet av N (antall oktetter eller linjer) er en «+»,\n" +"begynn å skriv ut med det Nte elementet fra starten av hver linje, ellers\n" +"skriv de siste N elementene i filen. N kan ha multiplikatorendelse:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg). " + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" +"Med --follow (-f), vil tail forvalgt følge fildeskriptoren, som betyr\n" +"at selv om den tail'ede filen skifter navn vil tail fortsatt følge den" + +#: src/tail.c:293 +#, fuzzy +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" +"Denne forvalgte oppførselen er ikke ønskelig når det du virkelige vil\n" +"gjøre er å følge selve filnavnet og ikke fildeskriptoren (f.eks. logg-\n" +"rotering). Bruk --follow=name i det tilfellet. Dette fører til at\n" +"tail følger den navngitte filen ved å gjenåpne filen periodisk for å se om\n" +"den har blitt fjernet og gjenopprettet av et annet program.\n" + +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "lukker %s (fd=%d)" + +#: src/tail.c:391 +#, fuzzy, c-format +msgid "%s: cannot seek to offset %s" +msgstr "%s: kan ikke søke til posisjon %s%s" + +#: src/tail.c:395 +#, fuzzy, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "%s: kan ikke søke til relativ posisjon %s%s" + +#: src/tail.c:400 +#, fuzzy, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "%s: kan ikke søke til posisjon %s%s relativ til slutten" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "«%s» har blitt utilgjengelig" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "" +"«%s» har blitt erstattet av en ikke-tailbar fil; gir opp dette filnavnet" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "«%s» har blitt utilgjengelig" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "«%s» har blitt opprettet. Følger etter slutten av ny fil" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "«%s» har blitt erstattet. Følger etter slutten av ny fil" + +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "%s: fil trunkert" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "ingen filer igjen" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "%s: kan ikke følge slutten av en fil av denne typen; gir opp denne" + +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "%c: ugyldig suffiks-tegn i avleggs flagg" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"for mange argumenter. Når tails gamle flagg-syntaks brukes (%s)\n" +"kan det ikke være mer enn ett filargument. Bruk det tilsvarende -n eller\n" +"-c-flagget isteden." + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"Advarsel: det er ikke portabelt å bruke to eller flere filargumenter med\n" +"tails gamle falggsyntaks (%s). Bruk det tilsvarende -n eller -c-\n" +"flagget isteden." + +#: src/tail.c:1423 +#, fuzzy, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "advarsel: «sort %s» er avleggs; bruk «sort -k»" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "%s er større enn den maksimale filstørrelsen på dette systemet" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "" +"%s: ugyldig maksimum antall av uendrete resultat av kall til stat() mellom " +"kall til open()" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "%s: ugyldig maksimum antall etterfølgende endringer i størrelse" + +#: src/tail.c:1534 +#, c-format +msgid "%s: invalid PID" +msgstr "%s: ugyldig prosess-id" + +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: ugyldig antall sekunder" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "advarsel: --retry er nyttig kun når en følger ved navn" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "advarsel: PID ignoreres; --pid=PID er bare nyttid når man følger" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "advarsel: --pid=PID er ikke støttet på dette systemet" + +#: src/tee.c:33 +#, fuzzy +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "Richard Stallman og David MacKenzie" + +#: src/tee.c:64 +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "" + +#: src/test.c:424 +msgid "before -lt" +msgstr "" + +#: src/test.c:432 +msgid "after -lt" +msgstr "" + +#: src/test.c:446 +msgid "before -le" +msgstr "" + +#: src/test.c:453 +msgid "after -le" +msgstr "" + +#: src/test.c:469 +msgid "before -gt" +msgstr "" + +#: src/test.c:476 +msgid "after -gt" +msgstr "" + +#: src/test.c:490 +msgid "before -ge" +msgstr "" + +#: src/test.c:497 +msgid "after -ge" +msgstr "" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "" + +#: src/test.c:526 +msgid "before -ne" +msgstr "" + +#: src/test.c:533 +msgid "after -ne" +msgstr "" + +#: src/test.c:549 +msgid "before -eq" +msgstr "" + +#: src/test.c:556 +msgid "after -eq" +msgstr "" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "" + +#: src/test.c:586 +msgid "-ot does not accept -l\n" +msgstr "" + +#: src/test.c:593 +#, fuzzy +msgid "unknown binary operator" +msgstr "Ukjent systemfeil" + +#: src/test.c:781 +msgid "after -t" +msgstr "" + +#: src/test.c:979 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"Bruk: %s [FIL]...\n" +"eller: %s [FLAGG]\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" + +#: src/test.c:1009 +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "" + +#: src/test.c:1125 +#, fuzzy +msgid "too many arguments\n" +msgstr "for mange argumenter" + +#: src/touch.c:39 +#, fuzzy +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "Paul Rubin og David MacKenzie" + +#: src/touch.c:164 src/touch.c:179 +#, fuzzy, c-format +msgid "creating %s" +msgstr "lager filen «%s»\n" + +#: src/touch.c:222 +#, fuzzy, c-format +msgid "cannot touch %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" + +#: src/touch.c:311 src/touch.c:331 +#, fuzzy, c-format +msgid "invalid date format %s" +msgstr "ugyldig argument %s for %s" + +#: src/touch.c:355 +#, fuzzy +msgid "cannot specify times from more than one source" +msgstr "kan ikke dele opp på mer enn én måte" + +#: src/touch.c:378 +#, fuzzy, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "advarsel: «sort %s» er avleggs; bruk «sort -k»" + +#: src/touch.c:399 +#, fuzzy +msgid "file arguments missing" +msgstr "for få argumenter" + +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "Bruk: %s [FLAGG]... SETT1 [SETT2]\n" + +#: src/tr.c:331 +#, fuzzy +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" +"Oversett, klem sammen og/eller fjern tegn fra standard inn,\n" +"skriv ut til standard ut.\n" +"\n" +" -c, --complement først komplementer SETT1\n" +" -d, --delete slett tegn i SETT1, ikke oversett\n" +" -s, --squeeze-repeats erstatt rekke av tegn med ett\n" +" -t, --truncate-set1 forkort først SETT1 til lengden til SETT2\n" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" +"\n" +"SETT er spesifisert med strenger av tegn. De fleste tegnene står for seg\n" +"selv. Følgende sekvenser tolkes spesielt:\n" +"\n" +" \\NNN tegn med oktalverdi NNN (1 til 3 oktale siffer)\n" +" \\\\ backslash\n" +" \\a beep\n" +" \\b backspace\n" +" \\f sideskift (FF)\n" +" \\n linjeskift (LF)\n" +" \\r vognretur (CR)\n" +" \\t horisontal tabulator\n" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" +" \\v vertikal tabulator\n" +" TEGN1-TEGN2 alle tegn fra TEGN1 til TEGN2, stigende\n" +" [TEGN1-TEGN2] samme som TEGN1-TEGN2, dersom begge sett bruker dette\n" +" [TEGN*] i SETT2, kopier av TEGN inntil samme lengde til SETT1\n" +" [TEGN*ANT] ANT kopier av TEGN, ANT er oktal, hvis det begynner med 0\n" +" [:alnum:] alle bokstaver og tall\n" +" [:alpha:] alle bokstaver\n" +" [:blank:] alle horisontale blanke tegn\n" +" [:cntrl:] alle kontrolltegn\n" +" [:digit:] alle siffer\n" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" +" [:graph:] alle skrivbare tegn, unntatt blanke tegn\n" +" [:lower:] alle små bokstaver\n" +" [:print:] alle skrivbare tegn, inkludert blanke tegn\n" +" [:punct:] alle tegnsettingstegn\n" +" [:space:] alle horisontale og vertikale blanke tegn\n" +" [:upper:] alle store bokstaver\n" +" [:xdigit:] alle hexadesimale siffer\n" +" [=TEGN=] alle tegn som er like TEGN\n" + +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" +"\n" +"Oversettelse skjer dersom -d ikke er gitt, og både SETT1 og SETT2 er der.\n" +"-t kan bare bli brukt ved oversetting. SETT2 blir utvidet til lengden av\n" +"SETT1 ved å repetere dets siste tegn som nødvendig. " + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" +"Tegn til overs i \n" +"SETT2 ignoreres. Bare [:lower:] og [:upper:] er garantert å ekspandere i\n" +"stigende rekkefølge; brukt i SETT2 ved oversetting kan de bare brukes i par\n" +"for å angi oversetting fra store/små til små/store bokstaver." + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" +" \n" +"-s bruker SETT1 hvis det ikke er oversetting eller sletting; ellers bruker \n" +"sammenklemming SETT2 og skjer etter oversetting eller sletting.\n" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" +"advarsel: den flertydige oktal-beskyttelsen \\%c%c%c blir tolket som \n" +"\t2-byte-sekvensen \\0%c%c, «%c»" + +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "ugyldig backslash-beskyttelse ved slutten av streng" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "ugyldig backslash-beskyttelse «\\%c»" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "rekke-sluttpunkt i «%s-%s» er i omvendt sorteringsrekkefølge" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "ugyldig gjentagelsesteller «%s» i [c*n]-konstruksjon" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "mangler tegn-klassenavn «[::]»" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "mangler ekvivalensklassetegn «[==]»" + +#: src/tr.c:1025 +#, c-format +msgid "invalid character class `%s'" +msgstr "ugyldig tegn-klasse «%s»" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "%s: ekvivalensklasseoperanden må være et enkelt tegn" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "gjentagelseskonstruktet [c*] kan ikke opptre i streng1" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "kun ett [c*] gjentagelseskonstrukt kan opptre i streng2" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "[=c=]-uttrykk kan ikke opptre i streng2 under oversetting" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "når sett1 ikke blir forkortet, kan ikke streng2 være tom" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" +"når det oversettes med komlementerte tegnklasser\n" +"må streng2 mappe alle tegn i domenet til én" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" +"ved oversetting er de eneste tegnklassene som kan være i streng2\n" +"«upper» og «lower»" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "[c*]-konstruktet kan bare opptre i streng2 ved oversetting" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "to strenger må være gitt ved oversetting" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "" +"to strenger må være gitt ved både sletting og sammenklemming av gjentagelser" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" +"kun én streng kan oppgis når det slettes uten sammenklemming av gjentagelser" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "minst en streng må være gitt ved sammenklemming av gjentagelser" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "feilplassert [:upper:]- og/eller [:lower:]-konstruksjon" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" +"ugyldig identidetsmapping; ved oversetting må evt. [:lower:]- eller\n" +"[:upper:]-konstruksjoner i streng1 være plassert i henhold til en\n" +"tilsvarende konstruksjon (henholdsvis [:upper:] eller [:lower:]) i\n" +"streng2" + +#: src/true.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Bruk: %s [FLAGG] [FIL]\n" +"Skriv en fullstendig sortert liste konsistent med den delvise sorteringen\n" +"i FIL. Hvis ingen FIL eller hvis FIL er -, leses fra standard inn.\n" +"\n" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "%s: inndata inneholder en løkke:" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "kun ett argument kan spesifiseres" + +#: src/tty.c:63 +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "" + +#: src/uname.c:111 +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" + +#: src/uname.c:226 +#, fuzzy +msgid "cannot get system name" +msgstr "kan ikke opprette midlertidig fil" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Konverter mellomrom i hver FIL til tabulatorer, skriv ut til standard ut.\n" +"Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +"inn.\n" +"\n" + +#: src/unexpand.c:387 +#, fuzzy +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" +" -a, --all konverter alle blanke tegn, istedet for bare " +"innledende\n" +" -t, --tabs=ANTALL ha tabulatorer ANTALL tegn fra hverandre istedet for " +"8\n" +" -t, --tabs=LISTE bruk komma-separert LISTE med tabulatorposisjoner.\n" + +#: src/unexpand.c:464 +#, fuzzy +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "advarsel: «sort %s» er avleggs; bruk «sort -k»" + +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "Bruk: %s [FLAGG]... [INN [UT]]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" +"Fjern alle bortsett fra én identiske linjer fra INN\n" +"(eller standard inn), og skriv til UT (eller standard ut).\n" +"\n" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" +" -c, --count begynn linjer med antall forekomster\n" +" -d, --repeated skriv bare ut linjer det er flere av\n" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" +" -D, --all-repeated[=delimit-method] skriv alle linjer det er flere av\n" +" delimit-method={none(forvalgt),prepend,separate}\n" +" -f, --skip-fields=N ikke sammenlign de første N feltene\n" +" -i, --ignore-case ignorer forskjeller med store/små bokstaver\n" +" -s, --skip-chars=N ikke sammenlign de første N tegnene\n" +" -u, --unique skriv bare ut unike linjer\n" + +#: src/uniq.c:164 +#, fuzzy +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr "" +" -w, --check-chars=N ikke sammenlign mer enn N tegn per linje\n" +" -N samme som -f N\n" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" +"\n" +"Et felt er en rekke blanke tegn, så andre tegn. Felt hoppes over før tegn.\n" + +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "feil ved lesing av %s" + +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "feil ved skriving til %s" + +#: src/uniq.c:433 src/uniq.c:450 +#, fuzzy, c-format +msgid "extra operand `%s'" +msgstr "ekstra operator «%s»" + +#: src/uniq.c:473 src/uniq.c:498 +msgid "invalid number of fields to skip" +msgstr "ugyldig antall felt å hoppe over" + +#: src/uniq.c:507 +msgid "invalid number of bytes to skip" +msgstr "ugyldig antall oktetter å hoppe over" + +#: src/uniq.c:516 +#, fuzzy +msgid "invalid number of bytes to compare" +msgstr "ugyldig antall oktetter å sammenligne" + +# c-format +#: src/uniq.c:530 +#, fuzzy, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "advarsel: «uniq %s» er avleggs; bruk «uniq -s %s» istedet" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "å skrive alle dupliserte linjer *og* gjentagelsesantall er meningsløst" + +#: src/unlink.c:51 +#, fuzzy, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"Bruk: %s [FIL]...\n" +"eller: %s [FLAGG]\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" + +#: src/unlink.c:99 +#, fuzzy, c-format +msgid "cannot unlink %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr "" + +#: src/uptime.c:140 +msgid "am" +msgstr "" + +#: src/uptime.c:140 +msgid "pm" +msgstr "" + +#: src/uptime.c:142 +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#: src/uptime.c:144 +#, fuzzy, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "ugyldig bruker" +msgstr[1] "ugyldig bruker" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr "" + +#: src/uptime.c:191 src/users.c:118 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "Bruk: %s [FLAGG]... [FIL]...\n" + +#: src/uptime.c:192 +#, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" + +#: src/users.c:35 +#, fuzzy +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "Jay Lepreau og David MacKenzie" + +#: src/users.c:119 +#, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "Paul Rubin og David MacKenzie" + +#: src/wc.c:129 +#, fuzzy +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" +"Skriv ut antall linjer, ord og bytes for hver FIL, og en total-linje\n" +"dersom mer enn én FIL er spesifisert. Dersom ingen FIL er spesifisert,\n" +"eller FIL er -, leses det fra standard inn.\n" +" -c, --bytes skriv ut antall oktetter\n" +" -m, --chars skriv ut antall tegn\n" +" -l, --lines skriv ut antall linjer.\n" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" +" -L, --max-line-length skriv ut lengden av den lengste linjen.\n" +" -w, --words skriv ut antall ord\n" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "" + +#: src/who.c:223 +msgid " old " +msgstr "" + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "" + +#: src/who.c:446 +msgid "clock change" +msgstr "" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" + +#: src/who.c:498 +msgid "NAME" +msgstr "" + +#: src/who.c:498 +msgid "LINE" +msgstr "" + +#: src/who.c:498 +msgid "TIME" +msgstr "" + +#: src/who.c:498 +#, fuzzy +msgid "IDLE" +msgstr "FEIL" + +#: src/who.c:498 +msgid "PID" +msgstr "" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "" + +#: src/who.c:499 +msgid "EXIT" +msgstr "" + +#: src/who.c:574 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "Bruk: %s [FLAGG]... FIL1 FIL2\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" + +#: src/whoami.c:53 +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "" + +#: src/yes.c:49 +#, fuzzy, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"Bruk: %s [FIL]...\n" +"eller: %s [FLAGG]\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" + +#, fuzzy +#~ msgid "\\%c: invalid escape" +#~ msgstr "%s: ugyldig mønster" + +#, fuzzy +#~ msgid "program error" +#~ msgstr "lesefeil" + +#, fuzzy +#~ msgid "cannot convert time" +#~ msgstr "kan ikke dele opp på mer enn én måte" + +#, fuzzy +#~ msgid "cannot format time" +#~ msgstr "kan ikke dele opp på mer enn én måte" + +#, fuzzy +#~ msgid "cannot change to `..' from directory %s" +#~ msgstr "kan ikke skifte til katalog, %s" + +#, fuzzy +#~ msgid "missing file arguments" +#~ msgstr "for få argumenter" + +#~ msgid "%s: is so large that it is not representable" +#~ msgstr "%s: er så stor at den ikke kan representeres" + +#, fuzzy +#~ msgid "cannot execute %s" +#~ msgstr "kan ikke opprette katalog %s" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "(obsolete) Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be " +#~ "used.\n" +#~ msgstr "" +#~ "\n" +#~ "Istedet for -t TALL eller -t LISTE kan -TALL eller -LISTE brukes.\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "(obsolete) If -VALUE is used as first OPTION, same as -c VALUE when one " +#~ "of\n" +#~ "multipliers bkm follows concatenated, else same as -n VALUE.\n" +#~ msgstr "" +#~ "\n" +#~ "STØRRELSE kan ha en multiplikator-endelse: b for 512, k for 1K, m for " +#~ "1Meg.\n" +#~ "Hvis -VERDI brukes som første FLAGG, leses det som -c VERDI hvis en av\n" +#~ "multiplikatorene bkm er bakerst, ellers leses -n VERDI.\n" + +#, fuzzy +#~ msgid "warning: `od -s' is obsolete; use `od --strings'" +#~ msgstr "advarsel: «sort %s» er avleggs; bruk «sort -k»" + +#, fuzzy +#~ msgid "warning: `od -w' is obsolete; use `od --width'" +#~ msgstr "advarsel: «sort %s» er avleggs; bruk «sort -k»" + +#, fuzzy +#~ msgid "warning: `pr -S' is obsolete; use `pr --sep-string'" +#~ msgstr "advarsel: «sort %s» er avleggs; bruk «sort -k»" + +#~ msgid "" +#~ " +POS1 [-POS2] start a key at POS1, end it before POS2 " +#~ "(origin 0)\n" +#~ " Warning: this option is obsolete\n" +#~ msgstr "" +#~ " +POS1 [-POS2] start en nøkkel ved POS1, avslutt før POS2 " +#~ "(fra 0)\n" +#~ " Advarsel: dette flagget er avleggs\n" + +#, fuzzy +#~ msgid "warning: `sort -y' is obsolete; omit `-y'" +#~ msgstr "advarsel: «sort %s» er avleggs; bruk «sort -k»" + +#~ msgid "" +#~ "A first OPTION of -VALUE\n" +#~ "is treated like -n VALUE unless VALUE has one of the [bkm] suffix\n" +#~ "multipliers, in which case it is treated like -c VALUE.\n" +#~ msgstr "" +#~ "Et første FLAGG som -VERDI\n" +#~ "behandles som -n VERDI med mindre VERDI har en av [bkm]-endingene,\n" +#~ "isåfall behandles det som -v VERDI.\n" + +#~ msgid "" +#~ "A first option of +VALUE is treated like -+VALUE, but this usage is " +#~ "obsolete\n" +#~ "and support for it will be withdrawn.\n" +#~ "\n" +#~ msgstr "" +#~ "Et første flagg som +VERDI behandles som -+VERDI, men denne anvendelsen " +#~ "er\n" +#~ "avleggs og støtte for den vil bli trukket tilbake.\n" + +#~ msgid "warning: `tail %s' is obsolete; use -n or -c instead" +#~ msgstr "advarsel: «tail %s» er avleggs; bruker -n eller -c istedet" + +#, fuzzy +#~ msgid "" +#~ " -N (obsolete) same as -f N\n" +#~ " +N (obsolete) same as -s N\n" +#~ msgstr "" +#~ " +N samme som -s N (avleggs, vil bli tilbaketrukket)\n" + +# c-format +#~ msgid "warning: `uniq %s' is obsolete; use `uniq -s %s' instead" +#~ msgstr "advarsel: «uniq %s» er avleggs; bruk «uniq -s %s» istedet" diff --git a/src/apps/bin/coreutils-5.0/po/nl.gmo b/src/apps/bin/coreutils-5.0/po/nl.gmo new file mode 100644 index 0000000000..73f2217fe2 Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/nl.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/nl.po b/src/apps/bin/coreutils-5.0/po/nl.po new file mode 100644 index 0000000000..6bda429ee2 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/nl.po @@ -0,0 +1,10864 @@ +# Dutch messages for GNU textutils +# Copyright (C) 1996, 2000 Free Software Foundation, Inc. +# Ivo Timmermans , 2000. +# Erick Branderhorst , 1996. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU textutils 2.0d\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2000-03-17 17:45+01:00\n" +"Last-Translator: Ivo Timmermans \n" +"Language-Team: Dutch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8-bit\n" + +#: lib/argmatch.c:135 +#, fuzzy, c-format +msgid "invalid argument %s for %s" +msgstr "ongeldig argument %s voor `%s'" + +#: lib/argmatch.c:136 +#, fuzzy, c-format +msgid "ambiguous argument %s for %s" +msgstr "dubbelzinnig argument %s voor `%s'" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "Geldige argumenten zijn:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "fout bij schrijven" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "Onbekende systeemfout" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "" + +#: lib/file-type.c:48 +#, fuzzy +msgid "block special file" +msgstr "blokgrootte" + +#: lib/file-type.c:51 +msgid "character special file" +msgstr "" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "" + +#: lib/file-type.c:71 +#, fuzzy +msgid "weird file" +msgstr "fout bij schrijven" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: optie `%s' is dubbelzinnig\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: optie `--%s' staat geen argumenten toe\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: optie `%c%s' staat geen argumenten toe\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: optie `%s' vereist een argument\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: onbekende optie `--%s'\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: onbekende optie `%c%s'\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: ongeldige optie -- %c\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: ongeldige optie -- %c\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: optie vereist een argument -- %c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: optie `-W %s' is dubbelzinnig\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: optie `-W %s' staat geen argumenten toe\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "blokgrootte" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, fuzzy, c-format +msgid "cannot create directory %s" +msgstr "kan map `%s' niet aanmaken" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, fuzzy, c-format +msgid "%s exists but is not a directory" +msgstr "`%s' bestaat maar is geen map" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, fuzzy, c-format +msgid "cannot change owner and/or group of %s" +msgstr "u kunt niet zowel de gebruiker als de groep weglaten" + +#: lib/makepath.c:338 +#, fuzzy, c-format +msgid "cannot chdir to directory %s" +msgstr "kan niet naar map gaan, %s" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, fuzzy, c-format +msgid "cannot change permissions of %s" +msgstr "kan de eigenaar van %s niet veranderen" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +#, fuzzy +msgid "memory exhausted" +msgstr "geen geheugen meer beschikbaar\n" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "`" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "'" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[yYjJ]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[nN]" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "" + +#: lib/unicodeio.c:164 +#, fuzzy +msgid "character out of range" +msgstr "%s: regelnummer buiten bereik" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "ongeldige gebruiker" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "ongeldige groep" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "kan de logingroep van een numerieke gebruiker niet opvragen" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "u kunt niet zowel de gebruiker als de groep weglaten" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "Geschreven door %s.\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +"Dit is vrije programmatuur; zie de broncode voor de voorwaarden van\n" +"distributie. Er is GEEN garantie; zelfs niet voor VERKOOPBAARHEID of\n" +"GESCHIKTHEID VOOR EEN BEPAALD DOEL.\n" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "" + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "" + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Probeer `%s --help' voor meer informatie.\n" + +#: src/basename.c:54 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "Aanroep: %s [OPTIE]... [INVOER [UITVOER]]\n" + +#: src/basename.c:59 +#, fuzzy +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" +"Toon NAAM zonder de voorafgaande directory componenten. Indien\n" +"gespecificeerd, verwijder het achtervoegsel ACHTERVOEGSEL.\n" +"\n" +" --help toon hulp-tekst en bekindig programma\n" +" --version toon versie-informatie en bekindig programma\n" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, fuzzy, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"Schrijf foutrapportages aan ;\n" +"Meld fouten in de vertaling aan ." + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "te weinig argumenten" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "teveel argumenten" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "Gebruik: %s [OPTIE] [BESTAND]...\n" + +#: src/cat.c:96 +#, fuzzy +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" +"Stuur BESTAND(en) of standaard invoer, naar standaard uitvoer.\n" +"\n" +" -A, --show-all zelfde als -vET\n" +" -b, --number-nonblank nummer niet-lege uitvoerregels\n" +" -e zelfde als -vE\n" +" -E, --show-ends geef een $ aan het einde van alle regels\n" +" -n, --number nummer alle uitvoerregels\n" +" -s, --squeeze-blank nooit meer dan één lege regel\n" +" -t zelfde als -vT\n" +" -T, --show-tabs geef TAB-tekens weer met ^I\n" +" -u (wordt genegeerd)\n" +" -v, --show-nonprinting gebruik ^ en M- notatie, behalve voor LFD en TAB\n" +" --help toon deze hulptekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" +"\n" +"Indien geen BESTAND wordt gegeven, of BESTAND is -, wordt de\n" +"standaard-invoer gelezen.\n" + +#: src/cat.c:106 +#, fuzzy +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" +"Stuur BESTAND(en) of standaard invoer, naar standaard uitvoer.\n" +"\n" +" -A, --show-all zelfde als -vET\n" +" -b, --number-nonblank nummer niet-lege uitvoerregels\n" +" -e zelfde als -vE\n" +" -E, --show-ends geef een $ aan het einde van alle regels\n" +" -n, --number nummer alle uitvoerregels\n" +" -s, --squeeze-blank nooit meer dan één lege regel\n" +" -t zelfde als -vT\n" +" -T, --show-tabs geef TAB-tekens weer met ^I\n" +" -u (wordt genegeerd)\n" +" -v, --show-nonprinting gebruik ^ en M- notatie, behalve voor LFD en TAB\n" +" --help toon deze hulptekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" +"\n" +"Indien geen BESTAND wordt gegeven, of BESTAND is -, wordt de\n" +"standaard-invoer gelezen.\n" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" +"\n" +" -B, --binary schrijf binair naar het console-apparaat.\n" +"\n" + +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "kan geen ioctl doen op `%s'" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "standaarduitvoer" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s: invoerbestand is uitvoerbestand" + +#: src/cat.c:858 +#, fuzzy +msgid "closing standard input" +msgstr "standaard invoer" + +#: src/cat.c:861 +#, fuzzy +msgid "closing standard output" +msgstr "standaarduitvoer" + +#: src/chgrp.c:93 +#, fuzzy +msgid "cannot change to null group" +msgstr "u kunt niet zowel de gebruiker als de groep weglaten" + +#: src/chgrp.c:102 +#, fuzzy, c-format +msgid "invalid group name %s" +msgstr "ongeldige groep" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "groepnummer" + +#: src/chgrp.c:109 +#, fuzzy, c-format +msgid "invalid group number %s" +msgstr "ongeldig nummer" + +#: src/chgrp.c:126 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Aanroep: %s [OPTIE]... [BESTAND]...\n" +" of: %s --traditional [BESTAND] [[+]OFFSET [[+]LABEL]]\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, fuzzy, c-format +msgid "failed to get attributes of %s" +msgstr "bezig met kopiëren van de tijden van %s" + +#: src/chmod.c:102 +#, fuzzy, c-format +msgid "getting new attributes of %s" +msgstr "bezig met kopiëren van de tijden van %s" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "mode van %s veranderd in %04lo (%s)\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "kan mode van %s niet in %04lo (%s) veranderen\n" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "mode van %s blijft %04lo (%s)\n" + +#: src/chmod.c:179 +#, fuzzy, c-format +msgid "changing permissions of %s" +msgstr "kan de eigenaar van %s niet veranderen" + +#: src/chmod.c:242 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Aanroep: %s [OPTIE]... LAATSTE\n" +" of: %s [OPTIE]... EERSTE LAATSTE\n" +" of: %s [OPTIE]... EERSTE STAP LAATSTE\n" + +#: src/chmod.c:248 +#, fuzzy +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"Verander de attributen van elk BESTAND naar MODE.\n" +"\n" +" -c, --changes zoals --verbose maar alleen als er iets verandert\n" +" -f, --silent, --quiet onderdruk vrijwel alle foutmeldingen\n" +" -v, --verbose toon informatie voor elk bestand (processed?)\n" +" --reference=RBESTAND gebruik de mode van RBESTAND in plaats van een\n" +" MODE waarde\n" +" -R, --recursive verander bestanden en directory's recursief\n" +" --help toon hulp-tekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" +"\n" +"Elke MODE is een of meer letters `ugoa', een van de symbolen `+-=' en\n" +"een of meer letters `rwxXstugo'.\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" + +#: src/chmod.c:320 +#, fuzzy, c-format +msgid "invalid character %s in mode string %s" +msgstr "ongeldig teken `%c' in teksttype `%s'" + +#: src/chmod.c:361 +#, fuzzy, c-format +msgid "invalid mode string: %s" +msgstr "ongeldig teksttype `%s'" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "noch de symbolische koppeling %s noch de referent is veranderd\n" + +#: src/chown-core.c:143 +#, fuzzy, c-format +msgid "changed ownership of %s to %s\n" +msgstr "kon de eigenaar van %s niet veranderen naar " + +#: src/chown-core.c:144 +#, fuzzy, c-format +msgid "changed group of %s to %s\n" +msgstr "kon de groep van %s niet naar %s veranderen\n" + +#: src/chown-core.c:148 +#, fuzzy, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "kan de eigenaar van %s niet veranderen" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "kon de groep van %s niet naar %s veranderen\n" + +#: src/chown-core.c:153 +#, fuzzy, c-format +msgid "ownership of %s retained as %s\n" +msgstr "eigenaar van %s blijft " + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "groep van %s blijft %s\n" + +#: src/chown-core.c:326 +#, fuzzy, c-format +msgid "changing ownership of %s" +msgstr "bezig met kopiëren van de eigenaar van %s" + +#: src/chown-core.c:327 +#, fuzzy, c-format +msgid "changing group of %s" +msgstr "u kunt niet zowel de gebruiker als de groep weglaten" + +#: src/chown-core.c:345 +#, fuzzy, c-format +msgid "unable to restore permissions of %s" +msgstr "kan de eigenaar van %s niet veranderen" + +#: src/chown.c:99 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Aanroep: %s [OPTIE]... LAATSTE\n" +" of: %s [OPTIE]... EERSTE LAATSTE\n" +" of: %s [OPTIE]... EERSTE STAP LAATSTE\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" + +#: src/chroot.c:45 +#, fuzzy, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "Aanroep: %s [OPTIE]... [INVOER [UITVOER]]\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" + +#: src/chroot.c:84 +#, fuzzy, c-format +msgid "cannot change root directory to %s" +msgstr "kan niet naar map gaan, %s" + +#: src/chroot.c:87 +#, fuzzy +msgid "cannot chdir to root directory" +msgstr "kan niet naar map gaan, %s" + +#: src/cksum.c:234 +#, fuzzy, c-format +msgid "%s: file too long" +msgstr "bestand ingekort" + +#: src/cksum.c:282 +#, fuzzy, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "Aanroep: %s [OPTIE]... [INVOER [UITVOER]]\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "Aanroep: %s [OPTIE]... BESTAND1 BESTAND2\n" + +#: src/comm.c:77 +#, fuzzy +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" +"Vergelijk gesorteerde bestanden BESTAND1 en BESTAND2 regel voor regel.\n" +"\n" +" -1 onderdruk regels die alleen in BESTAND1 voorkomen\n" +" -2 onderdruk regels die alleen in BESTAND2 voorkomen\n" +" -3 onderdruk regels die slechts in één van beide bestanden\n" +" voorkomen\n" +" --help toon deze hulptekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" + +#: src/copy.c:162 src/du.c:332 +#, fuzzy, c-format +msgid "cannot access %s" +msgstr "kan de rechten van %s niet veranderen" + +#: src/copy.c:226 +#, fuzzy, c-format +msgid "cannot open %s for reading" +msgstr "kan `%s' niet verplaatsen naar `%s'" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, fuzzy, c-format +msgid "cannot fstat %s" +msgstr "kan de rechten van %s niet veranderen" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, fuzzy, c-format +msgid "cannot remove %s" +msgstr "kan de rechten van %s niet veranderen" + +#: src/copy.c:277 +#, fuzzy, c-format +msgid "cannot create regular file %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, fuzzy, c-format +msgid "reading %s" +msgstr "fout bij lezen %s" + +#: src/copy.c:362 +#, fuzzy, c-format +msgid "cannot lseek %s" +msgstr "kan de rechten van %s niet veranderen" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, fuzzy, c-format +msgid "writing %s" +msgstr "fout bij schrijven %s" + +#: src/copy.c:409 src/copy.c:415 +#, fuzzy, c-format +msgid "closing %s" +msgstr "%s wordt gesloten (fd=%d)" + +#: src/copy.c:610 +#, fuzzy, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: `%s' overschrijven, ondanks mode %04lo? " + +#: src/copy.c:616 +#, fuzzy, c-format +msgid "%s: overwrite %s? " +msgstr "%s: fout bij schrijven" + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, fuzzy, c-format +msgid "cannot stat %s" +msgstr "kan de rechten van %s niet veranderen" + +#: src/copy.c:820 +#, fuzzy, c-format +msgid "omitting directory %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "" + +#: src/copy.c:866 src/ln.c:237 +#, fuzzy, c-format +msgid "%s and %s are the same file" +msgstr "`%s' en `%s' zijn het zelfde bestand" + +#: src/copy.c:876 +#, fuzzy, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "kan niet naar map gaan, %s" + +#: src/copy.c:893 +#, fuzzy, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "%s: kan map niet overschrijven" + +#: src/copy.c:904 +#, fuzzy, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "kan map `%s' niet aanmaken" + +#: src/copy.c:965 +#, fuzzy, c-format +msgid "cannot overwrite directory %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/copy.c:974 +#, fuzzy, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "kan niet naar map gaan, %s" + +#: src/copy.c:997 +#, fuzzy, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "" +"een reservekopie van `%s' zou de bron vernietigen; `%s' niet verplaatst" + +#: src/copy.c:998 +#, fuzzy, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "" +"een reservekopie van `%s' zou de bron vernietigen; `%s' niet gekopieerd" + +#: src/copy.c:1013 src/ln.c:273 +#, fuzzy, c-format +msgid "cannot backup %s" +msgstr "kan de rechten van %s niet veranderen" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr " (reservekopie: %s)" + +#: src/copy.c:1099 +#, fuzzy, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/copy.c:1106 +#, fuzzy, c-format +msgid "will not create hard link %s to directory %s" +msgstr "kan niet naar map gaan, %s" + +#: src/copy.c:1132 +#, fuzzy, c-format +msgid "cannot create hard link %s to %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/copy.c:1186 +#, fuzzy, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "kan niet naar map gaan, %s" + +#: src/copy.c:1229 +#, fuzzy, c-format +msgid "cannot move %s to %s" +msgstr "kan de rechten van %s niet veranderen" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "" + +#: src/copy.c:1269 +#, fuzzy, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "%s: kan cyclische symbolische koppeling niet kopiëren" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "%s: kan relatieve symbolische koppelingen alleen in huidige map maken" + +#: src/copy.c:1353 +#, fuzzy, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/copy.c:1364 +#, fuzzy, c-format +msgid "cannot create link %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, fuzzy, c-format +msgid "cannot create fifo %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/copy.c:1403 +#, fuzzy, c-format +msgid "cannot create special file %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, fuzzy, c-format +msgid "cannot read symbolic link %s" +msgstr "kan geen ioctl doen op `%s'" + +#: src/copy.c:1440 +#, fuzzy, c-format +msgid "cannot create symbolic link %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, fuzzy, c-format +msgid "failed to preserve ownership for %s" +msgstr "bezig met kopiëren van de eigenaar van %s" + +#: src/copy.c:1471 +#, fuzzy, c-format +msgid "%s has unknown file type" +msgstr "%s: onbekend bestandstype" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "bezig met kopiëren van de tijden van %s" + +#: src/copy.c:1531 +#, fuzzy, c-format +msgid "failed to preserve authorship for %s" +msgstr "bezig met kopiëren van de eigenaar van %s" + +#: src/copy.c:1549 +#, fuzzy, c-format +msgid "setting permissions for %s" +msgstr "kan de eigenaar van %s niet veranderen" + +#: src/copy.c:1571 src/ln.c:326 +#, fuzzy, c-format +msgid "cannot un-backup %s" +msgstr "kan de rechten van %s niet veranderen" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s -> %s (reservekopie verwijderd)\n" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/cp.c:164 src/mv.c:311 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"Aanroep: %s [OPTIE]... LAATSTE\n" +" of: %s [OPTIE]... EERSTE LAATSTE\n" +" of: %s [OPTIE]... EERSTE STAP LAATSTE\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" + +#: src/cp.c:209 +#, fuzzy +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +"Kopieer BRON naar BESTEMMING, of (meerdere) BRON(nen) naar MAP.\n" +"\n" +" -a, --archive zelfde als -dpR\n" +" --backup[=METHODE] maak reservekopie van ieder bestaand bestand\n" +" -b zoals --backup, maar accepeert geen argument\n" +" -d, --no-dereference behoud verwijzingen\n" +" -f, --force verwijder bestaande bestemmingen, vraag " +"nooit\n" +" -i, --interactive vraag bevestiging voordat overschreven wordt\n" +" -l, --link maak koppelingen naar bestanden in plaats " +"van\n" +" kopieën\n" +" -p, --preserve behoud bestandsattributen indien mogelijk\n" +" -P, --parents voeg bronpad toe aan MAP\n" +" -r kopieer recursief, niet-mappen als bestanden\n" +" LET OP: gebruik -R als u speciale\n" +" bestanden zoals FIFOs of /dev/zero\n" +" kopieert\n" +" --sparse=WHEN bestuur aanmaak van schaarse bestanden\n" +" -R, --recursive kopieer mappen recursief\n" +" --strig-trailing-slashes verwijder nakomende schuine strepen van\n" +" ieder BRON argument\n" +" -s, --symbolic-link maak symbolische koppelingen in plaats van\n" +" kopieën\n" +" -S, --suffix=SUFFIX vervang het gebruikelijke achtervoegsel voor\n" +" reservekopieen\n" +" --target-directory=MAP verplaats alle BRON argumenten naar MAP\n" +" -u, --update kopieer alleen als BRON nieuwer is dan de\n" +" bestemming of als de bestemming niet " +"bestaat\n" +" -v, --verbose toon wat gedaan wordt\n" +" -x, --one-file-system blijf op dit bestandssysteem\n" +" --help toon hulp-tekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" +"\n" +"Standaard worden schaarse BRON bestanden gevonden door een brute heuristiek\n" +"en de corresponderende BESTEMMING wordt dan ook schaars. Dat is het gedrag\n" +"bij --sparse=auto. Geef --sparse=always om een BESTEMMING te creëren als\n" +"het BRON bestand genoeg achtereenvolgende nultekens bevat. Gebruik\n" +"--sparse=never om creatie van schaarse bestanden tegen te gaan.\n" +"\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" + +#: src/cp.c:221 +#, fuzzy +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +"Hernoem BRON tot BESTEMMING, of verplaats BRON(nen) naar MAP.\n" +"\n" +" --backup[=METHODE] maak een reservekopie voor verwijdering\n" +" -b zoals --backup, maar accepteert geen " +"argumenten\n" +" -f, --force verwijder bestaande bestemmingen, vraag niet\n" +" om bevestiging\n" +" -i, --interactive vraag om bevestiging alvorens te " +"overschrijven\n" +" --strip-trailing-slashes verwijder eventuele nakomende schuine\n" +" strepen van iedere BRON\n" +" -S, --suffix=SUFFIX gebruik SUFFIX ipv. het gebruikelijke\n" +" achtervoegsel voor reservekopieën\n" +" --target-directory=MAP verplaats alle BRON argumenten naar MAP\n" +" -u, --update verplaats alleen oudere of hele nieuwe " +"bestanden\n" +" -v, --verbose laat zien wat er gedaan wordt\n" +" --help toon hulp-tekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" +"\n" + +#: src/cp.c:230 +#, fuzzy +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +"Kopieer BRON naar BESTEMMING, of (meerdere) BRON(nen) naar MAP.\n" +"\n" +" -a, --archive zelfde als -dpR\n" +" --backup[=METHODE] maak reservekopie van ieder bestaand bestand\n" +" -b zoals --backup, maar accepeert geen argument\n" +" -d, --no-dereference behoud verwijzingen\n" +" -f, --force verwijder bestaande bestemmingen, vraag " +"nooit\n" +" -i, --interactive vraag bevestiging voordat overschreven wordt\n" +" -l, --link maak koppelingen naar bestanden in plaats " +"van\n" +" kopieën\n" +" -p, --preserve behoud bestandsattributen indien mogelijk\n" +" -P, --parents voeg bronpad toe aan MAP\n" +" -r kopieer recursief, niet-mappen als bestanden\n" +" LET OP: gebruik -R als u speciale\n" +" bestanden zoals FIFOs of /dev/zero\n" +" kopieert\n" +" --sparse=WHEN bestuur aanmaak van schaarse bestanden\n" +" -R, --recursive kopieer mappen recursief\n" +" --strig-trailing-slashes verwijder nakomende schuine strepen van\n" +" ieder BRON argument\n" +" -s, --symbolic-link maak symbolische koppelingen in plaats van\n" +" kopieën\n" +" -S, --suffix=SUFFIX vervang het gebruikelijke achtervoegsel voor\n" +" reservekopieen\n" +" --target-directory=MAP verplaats alle BRON argumenten naar MAP\n" +" -u, --update kopieer alleen als BRON nieuwer is dan de\n" +" bestemming of als de bestemming niet " +"bestaat\n" +" -v, --verbose toon wat gedaan wordt\n" +" -x, --one-file-system blijf op dit bestandssysteem\n" +" --help toon hulp-tekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" +"\n" +"Standaard worden schaarse BRON bestanden gevonden door een brute heuristiek\n" +"en de corresponderende BESTEMMING wordt dan ook schaars. Dat is het gedrag\n" +"bij --sparse=auto. Geef --sparse=always om een BESTEMMING te creëren als\n" +"het BRON bestand genoeg achtereenvolgende nultekens bevat. Gebruik\n" +"--sparse=never om creatie van schaarse bestanden tegen te gaan.\n" +"\n" + +#: src/cp.c:239 +#, fuzzy +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"Het reservekopie-achtervoegsel is ~, tenzij ingesteld met\n" +"SIMPLE_BACKUP_SUFFIX. De versie controle mag worden ingesteld met\n" +"VERSION_CONTROL, mogelijke waarden zijn:\n" +"\n" +" none, off maak nooit reservekopieën (zelfs niet met --backup)\n" +" numbered, t maak genummerde reservekopieën\n" +" existing, nil maak genummerde reservekopieën als er reeds genummerde \n" +" reserve-kopiekn bestaan, anders simpel\n" +" simple, never maak altijd simpele reservekopieën\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +#, fuzzy +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +"Het reservekopie-achtervoegsel is ~, tenzij ingesteld met\n" +"SIMPLE_BACKUP_SUFFIX. De versie controle mag worden ingesteld met\n" +"VERSION_CONTROL, mogelijke waarden zijn:\n" +"\n" +" none, off maak nooit reservekopieën (zelfs niet met --backup)\n" +" numbered, t maak genummerde reservekopieën\n" +" existing, nil maak genummerde reservekopieën als er reeds genummerde \n" +" reserve-kopiekn bestaan, anders simpel\n" +" simple, never maak altijd simpele reservekopieën\n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +"Als een speciaal geval, kan cp een reservekopie maken van BRON als de\n" +"opties `force' en `backup' gegeven zijn en BRON en BESTEMMING dezelfde\n" +"zijn voor een bestaand gewoon bestand.\n" + +#: src/cp.c:325 +#, fuzzy, c-format +msgid "failed to preserve times for %s" +msgstr "bezig met kopiëren van de tijden van %s" + +#: src/cp.c:349 +#, fuzzy, c-format +msgid "failed to preserve permissions for %s" +msgstr "kan de eigenaar van %s niet veranderen" + +#: src/cp.c:434 +#, fuzzy, c-format +msgid "cannot make directory %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +#, fuzzy +msgid "missing file argument" +msgstr "sla argument over" + +#: src/cp.c:498 +#, fuzzy +msgid "missing destination file" +msgstr "ontbrekende lijst van velden" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, fuzzy, c-format +msgid "accessing %s" +msgstr "verwijder %s\n" + +#: src/cp.c:546 +#, fuzzy, c-format +msgid "%s: specified target is not a directory" +msgstr "`%s' bestaat maar is geen map" + +#: src/cp.c:554 +#, fuzzy, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "" +"meerdere bestanden kopiëren, maar het laatste argument (%s) is geen map" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "" +"indien het pad behouden moet worden, moet het laatste argument een map zijn" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"waarschuwing: --version-control (-V) is verouderd; ondersteuning\n" +"ervoor zal in de toekomst verwijderd worden. Gebruik --backup=%s in\n" +"plaats daarvan." + +#: src/cp.c:972 src/ln.c:464 +#, fuzzy +msgid "symbolic links are not supported on this system" +msgstr "let op: --pid=PROCES wordt niet ondersteund op dit systeem" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "kan geen harde èn symbolische koppelingen maken" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "reservekopie type" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "fout bij lezen" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "invoer verdween" + +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s: regelnummer buiten bereik" + +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: `%s': regelnummer buiten bereik" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr " tijdens herhaling %d\n" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s: `%s': geen overeenkomst gevonden" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "fout in zoeken met reguliere expressie" + +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "fout bij schrijven naar `%s'" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "%s: na een scheidingsteken werd een `+' of `-' verwacht" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s: geheel getal verwacht na `%c'" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "%s: `}' is verplicht bij een herhalingsaantal" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "%s}: geheel getal verplicht tussen `{' en `}'" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s: afsluitend scheidinsteken `%c' ontbreekt" + +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: ongeldige reguliere expressie: %s" + +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "%s: ongeldig patroon" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s: regelnummer moet groter zijn dan nul" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "regelnummer `%s' is kleiner dan het voorgaande regelnummer, %s" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "let op: regelnummer `%s' is het zelfde als het voorgaande regelnummer" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "specificatie voor conversie ontbreekt in achtervoegsel" + +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "specificatie voor conversie in het achtervoegsel is ongeldig: %c" + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "specificatie voor conversie in het achtervoegsel is ongeldig: \\%.3o" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "ontbrekende specificatie voor %%-conversie in achtervoegsel" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "te veel specificaties voor %%-conversie in achtervoegsel" + +#: src/csplit.c:1441 +#, c-format +msgid "%s: invalid number" +msgstr "%s: ongeldig getal" + +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "Aanroep: %s [OPTIE]... BESTAND PATROON...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "Aanroep: %s [OPTIE]... [BESTAND]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" + +#: src/cut.c:185 +#, fuzzy +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" +"Vul invoer regels uit van elk BESTAND (standaard is de standaard invoer),\n" +"de uitvoer gaat naar de standaard uitvoer.\n" +"\n" +" -b, --bytes tel bytes in plaats van kolommen\n" +" -s, --spaces breek af op spaties\n" +" -w, --width=BREEDTE gebruik BREEDTE kolommen in plaats van 80\n" +" --help toon deze hulptekst en beëindig\n" +" --version toon versie-informatie en beëindig\n" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "ongeldige lijst van bytes of velden" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "slechts één soort lijst mag worden opgegeven" + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "ontbrekende lijst van posities" + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "ontbrekende lijst van velden" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "de scheiding moet een enkel teken zijn" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "u moet een lijst van bytes, tekens, of velden geven" + +#: src/cut.c:720 +#, fuzzy +msgid "an input delimiter may be specified only when operating on fields" +msgstr "" +"een scheidingsteken mag alleen gespecificeerd zijn indien met velden gewerkt " +"wordt" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" +"het onderdrukken van onbegrensde regels heeft\n" +" alleen zin indien met velden gewerkt wordt" + +#: src/date.c:117 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" +"Aanroep: %s [OPTIE]... [+FORMAAT]\n" +" of: %s [OPTIE] [MMDDhhmm[[CC]YY][.ss]]\n" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "standaard invoer" + +#: src/date.c:268 src/date.c:460 +#, fuzzy, c-format +msgid "invalid date `%s'" +msgstr "ongeldig veldnummer: `%s'" + +#: src/date.c:364 +#, fuzzy +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "de --string and --check opties sluiten elkaar uit" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "" +"de opties om te printen en de tijd in te stellen kunnen niet\n" +"tegelijkertijd gebruikt worden" + +#: src/date.c:377 +#, fuzzy, c-format +msgid "too many non-option arguments: %s%s" +msgstr "te veel argumenten die geen optie zijn" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" +"het argument `%s' mist een `+';\n" +"Bij gebruik van een opite om data te specificeren, moet elk niet-optie\n" +"argument een format string zijn beginnende met `+'." + +#: src/date.c:397 +#, fuzzy +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "bij het gebruik van --string mogen geen bestanden opgegeven worden" + +#: src/date.c:433 +msgid "undefined" +msgstr "ongedefinieerd" + +#: src/date.c:435 +#, fuzzy +msgid "cannot get time of day" +msgstr "kan niet op meer dan één manier splitsen" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "kan datum niet instellen" + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "Gebruik: %s [OPTIE] [BESTAND]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "%s+%s records in\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "%s+%s records uit\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "afgebroken record" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "afgebroken records" + +#: src/dd.c:382 +#, fuzzy, c-format +msgid "closing input file %s" +msgstr "bestand `%s' wordt aangemaakt\n" + +#: src/dd.c:385 +#, fuzzy, c-format +msgid "closing output file %s" +msgstr "verwijder %s\n" + +#: src/dd.c:469 +#, fuzzy, c-format +msgid "writing to %s" +msgstr "fout bij schrijven %s" + +#: src/dd.c:501 +#, fuzzy, c-format +msgid "invalid conversion: %s" +msgstr "ongeldig teksttype `%s'" + +#: src/dd.c:557 +#, fuzzy, c-format +msgid "unrecognized option %s" +msgstr "onbekende optie `-%c'" + +#: src/dd.c:610 +#, fuzzy, c-format +msgid "unrecognized option %s=%s" +msgstr "onbekende optie `-%c'" + +#: src/dd.c:616 +#, fuzzy, c-format +msgid "invalid number %s" +msgstr "ongeldig nummer" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"slechts een conversie in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" + +#: src/dd.c:1170 src/dd.c:1188 +#, fuzzy, c-format +msgid "opening %s" +msgstr "fout bij lezen %s" + +#: src/dd.c:1196 +#, fuzzy +msgid "file offset out of range" +msgstr "%s: regelnummer buiten bereik" + +#: src/dd.c:1214 +#, fuzzy, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "verwijder %s\n" + +#: src/df.c:49 +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "" + +#: src/df.c:153 +msgid "Filesystem Type" +msgstr "" + +#: src/df.c:155 +msgid "Filesystem " +msgstr "" + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr "" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr "" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr "" + +#: src/df.c:167 +#, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr "" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr "" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr "" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" + +#: src/df.c:859 +#, fuzzy, c-format +msgid "file system type %s both selected and excluded" +msgstr "bestandssysteem type `%s' beide geselecteerd en buitengesloten" + +#: src/df.c:903 +msgid "Warning: " +msgstr "Waarschuwing: " + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "%skan tabel van aangehechte bestandssystemen niet lezen" + +#: src/dircolors.c:103 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "Aanroep: %s [OPTIE]... [BESTAND]...\n" + +#: src/dircolors.c:104 +#, fuzzy +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"Geef commando's voor instellen van de LS_COLOR omgevingsvariabele.\n" +"\n" +"Bepaal formaat van de uitvoer:\n" +" -b, --sh, --bourne-shell toon Bourne shell code voor instellen " +"LS_COLOR\n" +" -c, --csh, --c-shell toon C shell code voor instellen LS_COLOR\n" +" -p, --print-data-base toon standaard-instellingen\n" +" --help toon hulp-tekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" +"\n" +"Indien BESTAND gegeven is, wordt dat gelezen om te bepalen welke kleuren " +"voor\n" +"bestanden en extensies gebruikt moeten worden. Anders wordt een standaard\n" +"database gebruikt. Geef `dircolors --print-database' voor details over het\n" +"formaat van deze bestanden.\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" + +#: src/dircolors.c:299 +#, fuzzy, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s: ongeldig aantal seconden" + +#: src/dircolors.c:371 +#, fuzzy, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s: onbekende optie `%c%s'\n" + +#: src/dircolors.c:372 +msgid "" +msgstr "" + +#: src/dircolors.c:467 +#, fuzzy +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" +"de opties voor verbose en stty-leesbare uitvoer stijlen zijn onderling\n" +"excluderend" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" +"BESTAND argumenten mogen niet gebruikt worden tezamen met een optie\n" +"voor het tonen van dircolors' interne database" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "geen SHELL variabele en geen mode optie gespecificeerd" + +#: src/dirname.c:33 src/pathchk.c:59 +msgid "David MacKenzie and Jim Meyering" +msgstr "" + +#: src/dirname.c:46 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "Aanroep: %s [OPTIE]... [INVOER [UITVOER]]\n" + +#: src/dirname.c:51 +#, fuzzy +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" +"Toon NAAM zonder de trailing /component removed; als NAAM geen /'s\n" +"bevat toon dan `.' (bedoelende de huidige directory).\n" +"\n" +" --help toon hulp-tekst en bekindig programma\n" +" --version toon versie-informatie en bekindig programma\n" + +#: src/du.c:49 +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" + +#: src/du.c:337 +#, fuzzy, c-format +msgid "cannot change to parent of directory %s" +msgstr "kan niet naar map gaan, %s" + +#: src/du.c:345 +#, fuzzy, c-format +msgid "cannot change to directory %s" +msgstr "kan niet naar map gaan, %s" + +#: src/du.c:352 +#, fuzzy, c-format +msgid "cannot read directory %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "totaal" + +#: src/du.c:641 +#, fuzzy, c-format +msgid "invalid maximum depth %s" +msgstr "ongeldig veldnummer: `%s'" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "" +"totalen berekenen kan niet gelijktijdig met het tonen van alle ingangen" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "waarschuwing: totalen geven is het zelfde als --max-depth=0 gebruiken" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "waarschuwing: het geven van totalen is in conflict met --max-depth=%d" + +#: src/echo.c:77 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "Aanroep: %s [OPTIE]... [BESTAND]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/env.c:93 +msgid "Richard Mlynarik and David MacKenzie" +msgstr "" + +#: src/env.c:119 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "Aanroep: %s [OPTIE]... [BESTAND]...\n" + +#: src/env.c:122 +#, fuzzy +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" +"Stel NAAM op WAARDE als omgevingsvariabele en voer COMMANDO uit.\n" +"\n" +" -i, --ignore-environment start zonder omgevingsvariabelen\n" +" -u, --unset=NAAM verwijder deze omgevingsvariabele\n" +" --help toon hulp-tekst en bekindig programma\n" +" --version toon versie-informatie en bekindig programma\n" +"\n" +"Een - impliceert -i. Als geen COMMANDO gegeven is, toon dan de\n" +"omgevingsvariabelen.\n" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "TAB-grootte bevat een ongeldig karakter" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "TAB-grootte mag geen nul zijn" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "TAB-grootte moet toenemen" + +#: src/expand.c:386 +#, fuzzy +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "let op: ongeldige breedte %lu; zal %d gebruiken" + +#: src/expr.c:90 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "Aanroep: %s [OPTIE]... [INVOER [UITVOER]]\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" +"\n" +"Let er op dat veel operatoren geescaped of gekwoot gebruikt moeten\n" +"worden bij shells. Vergelijking zijn arithmetisch als beide ARGs\n" +"nummers zijn, anders lexicographisch. Patroon overeenkomsten geven de\n" +"gevonden string tussen \\( en \\) of null; als \\( en \\) niet zijn\n" +"gebruikt, geven ze het aantal overeenkomstige karkaters of 0.\n" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +#, fuzzy +msgid "syntax error" +msgstr "standaard fout-uitvoer" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" +"let op: niet portable BRE: `%s': gebruik `^' als het eerrste karakter\n" +"van de basic reguliere expressie is niet portable; het wordt genegeerd" + +#: src/expr.c:586 src/expr.c:625 +#, fuzzy +msgid "non-numeric argument" +msgstr "beperk argument" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "" + +#: src/factor.c:74 +#, fuzzy, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "Aanroep: %s [OPTIE]... [INVOER [UITVOER]]\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" + +#: src/factor.c:85 +#, fuzzy +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" +"Toon factor van elk NUMMER; lees standaard invoer indien geen argumenten.\n" +"\n" +" --help toon hulp-tekst en bekindig programma\n" +" --version toon versie-informatie en bekindig programma\n" +"\n" +"Toon de priem factoren van alle gespecificeerde integer NUMMERs. Als\n" +"geen argumenten gespecificeerd zijn op de commando-regel, worden ze\n" +"gelezen vanuit standaard invoer.\n" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "`%s' is niet een juiste positieve integer" + +#: src/false.c:34 +#, fuzzy, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Aanroep: %s [NAAM]\n" +" of: %s OPTIE\n" +"Toon de hostnaam van het huidige systeem\n" +"\n" +" --help toon hulp-tekst en bekindig programma\n" +" --version toon versie-informatie en bekindig programma\n" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "Aanroep: %s [-NUMMERS] [OPTIE]... [BESTAND]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" + +#: src/fmt.c:280 +#, fuzzy +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" +"Herschrijf elke paragraaf in de BESTAND(en), de uitvoer gaat naar de\n" +"standaard uitvoer. Indien geen BESTAND is gegeven, of BESTAND is -,\n" +"wordt er gelezen uit de standaard invoer.\n" +"\n" +"De verplichte argumenten voor lange opties zijn ook verplicht voor een-" +"letter opties.\n" +" -c, --crown-margin behoud inspringing van eerste twee regels\n" +" -p, --prefix=TEKST combineer regels met TEKST als voorvoegsel\n" +" -s, --split-only lange regels splitsen, maar niet opnieuw " +"uitvullen\n" +" -t, --tagged-paragraph inspringing eerste regel verschilt van tweede\n" +" -u, --uniform-spacing één spatie tussen woorden, twee na een " +"zinseinde\n" +" -w, --width=NUMMER maximale regelbreedte (standaard is 75 tekens)\n" +" --help toon deze hulptekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" +"\n" +"Bij -wNUMMER, mag de `w' worden weggelaten.\n" + +#: src/fmt.c:286 +#, fuzzy +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" +"Herschrijf elke paragraaf in de BESTAND(en), de uitvoer gaat naar de\n" +"standaard uitvoer. Indien geen BESTAND is gegeven, of BESTAND is -,\n" +"wordt er gelezen uit de standaard invoer.\n" +"\n" +"De verplichte argumenten voor lange opties zijn ook verplicht voor een-" +"letter opties.\n" +" -c, --crown-margin behoud inspringing van eerste twee regels\n" +" -p, --prefix=TEKST combineer regels met TEKST als voorvoegsel\n" +" -s, --split-only lange regels splitsen, maar niet opnieuw " +"uitvullen\n" +" -t, --tagged-paragraph inspringing eerste regel verschilt van tweede\n" +" -u, --uniform-spacing één spatie tussen woorden, twee na een " +"zinseinde\n" +" -w, --width=NUMMER maximale regelbreedte (standaard is 75 tekens)\n" +" --help toon deze hulptekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" +"\n" +"Bij -wNUMMER, mag de `w' worden weggelaten.\n" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" + +#: src/fmt.c:345 +#, fuzzy, c-format +msgid "invalid width option: `%s'" +msgstr "ongeldig teksttype `%s'" + +#: src/fmt.c:385 +#, fuzzy, c-format +msgid "invalid width: `%s'" +msgstr "ongeldig veldnummer: `%s'" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" + +#: src/fold.c:267 +#, fuzzy, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "let op: ongeldige breedte %lu; zal %d gebruiken" + +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "ongeldig aantal kolommen: `%s'" + +#: src/head.c:92 +#, fuzzy +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Kopieer de eerste 10 regels van elk BESTAND naar standaard-uitvoer.\n" +"Indien meerdere bestanden gegeven zijn, wordt de uitvoer van ieder\n" +"bestand voorafgegaan door de bestandsnaam. Indien geen BESTAND\n" +"gegeven is, of BESTAND is -, wordt de standaard invoer gelezen.\n" +"\n" +" -c, --bytes=GROOTTE print eerste GROOTTE bytes\n" +" -n, --lines=AANTAL print eerste AANTAL regels in plaats van eerste " +"10\n" +" -q, --quiet, --silent print nooit bestandsnamen als headers\n" +" -v, --verbose print altijd bestandsnamen als headers\n" +" --help toon deze hulptekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" +"\n" +"GROOTTE mag een achtervoegsel hebben om aan te geven waarmee het\n" +"vermenigvuldigd moet worden: b voor 512, k voor 1 Kilobyte, m voor 1\n" +"Megabyte. Als -GROOTTE de eerste OPTIE is, lees -c GROOTTE wanneer\n" +"een van de vermunigvuldigingsachtervoegsels bkm volgt, ander lees -n\n" +"GROOTTE.\n" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" + +#: src/head.c:190 +#, fuzzy, c-format +msgid "cannot reposition file pointer for %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "%s: %s is zo groot dat het niet weergegeven kan worden" + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "aantal regels" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "aantal bytes" + +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "ongeldig aantal regels" + +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "ongeldig aantal bytes" + +#: src/head.c:341 +#, c-format +msgid "unrecognized option `-%c'" +msgstr "onbekende optie `-%c'" + +#: src/head.c:348 +#, fuzzy, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "let op: ongeldige breedte %lu; zal %d gebruiken" + +#: src/hostid.c:48 +#, fuzzy, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" +"Toon de naam van de huidige gebruiker.\n" +"\n" +" --help toon hulp-tekst en bekindig programma\n" +" --version toon versie-informatie en bekindig programma\n" + +#: src/hostname.c:67 +#, fuzzy, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" +"Aanroep: %s [NAAM]\n" +" of: %s OPTIE\n" +"Toon de hostnaam van het huidige systeem\n" +"\n" +" --help toon hulp-tekst en bekindig programma\n" +" --version toon versie-informatie en bekindig programma\n" + +#: src/hostname.c:104 +#, fuzzy, c-format +msgid "cannot set hostname to `%s'" +msgstr "kan geen ioctl doen op `%s'" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "" +"kan hostnaam niet instellen; dit systeem biedt deze functionaliteit niet" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "kan hostname niet achterhalen" + +#: src/id.c:36 +msgid "Arnold Robbins and David MacKenzie" +msgstr "" + +#: src/id.c:87 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "Aanroep: %s [OPTIE]... SET1 [SET2]\n" + +#: src/id.c:88 +#, fuzzy +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" +"Toon informatie voor GEBRUIKERSNAAM, of van de huidige gebruiker.\n" +"\n" +" -a negeer, voor compatibiliteit met andere versies\n" +" -g, --group toon alleen de groep ID\n" +" -G, --groups toon alleen de suplmentaire groepen\n" +" -n, --name toon een naam in plaats van een nummer, voor -ugG\n" +" -r, --real toon het echte ID in plaats van het effectieve ID, voor -" +"ugG\n" +" -u, --user toon alleen de gebruikers ID\n" +" --help toon hulp-tekst en bekindig programma\n" +" --version toon versie-informatie en bekindig programma\n" +"\n" +"Zonder OPITE, toon een bruikbaar deel van de ge-identificeerde informatie.\n" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" + +#: src/id.c:162 +#, fuzzy +msgid "cannot print only user and only group" +msgstr "u kunt niet zowel de gebruiker als de groep weglaten" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "kan niet alleen namen of echte IDs in standaard formaat tonen" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "%s: Onbekende gebruiker" + +#: src/id.c:212 +#, fuzzy, c-format +msgid "cannot find name for user ID %u" +msgstr "%s: kan geen gebruikersnaam vinden voor UID %u\n" + +#: src/id.c:235 +#, fuzzy, c-format +msgid "cannot find name for group ID %u" +msgstr "u kunt niet zowel de gebruiker als de groep weglaten" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "kan geen suplementaire groep lijst verkrijgen" + +#: src/id.c:385 +msgid " groups=" +msgstr " groepen=" + +#: src/install.c:269 +#, fuzzy +msgid "the strip option may not be used when installing a directory" +msgstr "" +"formaat string mag niet worden gespecificeerd bij tonen van string van\n" +"gelijke breedte" + +#: src/install.c:292 src/mkdir.c:140 +#, fuzzy, c-format +msgid "invalid mode %s" +msgstr "ongeldig veldnummer: `%s'" + +#: src/install.c:307 src/install.c:371 +#, fuzzy, c-format +msgid "creating directory %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/install.c:332 +#, fuzzy, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "" +"meerdere bestanden installeren, maar het laatste argument (%s) is geen map" + +#: src/install.c:435 +#, fuzzy, c-format +msgid "%s is a directory" +msgstr "`%s' bestaat maar is geen map" + +#: src/install.c:495 +#, fuzzy, c-format +msgid "cannot obtain time stamps for %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/install.c:507 +#, fuzzy, c-format +msgid "cannot set time stamps for %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/install.c:528 +#, fuzzy +msgid "fork system call failed" +msgstr "blokgrootte" + +#: src/install.c:532 +#, fuzzy +msgid "cannot run strip" +msgstr "kan %s niet uitvoeren" + +#: src/install.c:539 +#, fuzzy +msgid "strip failed" +msgstr "fout bij schrijven" + +#: src/install.c:560 +#, fuzzy, c-format +msgid "invalid user %s" +msgstr "ongeldige gebruiker" + +#: src/install.c:578 +#, fuzzy, c-format +msgid "invalid group %s" +msgstr "ongeldige groep" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"Gebruik: %s [OPTIE]... BRON BESTEMMING (1ste methode)\n" +" of: %s [OPTIE]... BRON... MAP (2de methode)\n" +" of: %s -d [OPTIE]... MAP... (3de methode)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +#, fuzzy +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"Het reservekopie-achtervoegsel is ~, tenzij ingesteld met\n" +"SIMPLE_BACKUP_SUFFIX. De versie controle mag worden ingesteld met\n" +"VERSION_CONTROL, mogelijke waarden zijn:\n" +"\n" +" none, off maak nooit reservekopieën (zelfs niet met --backup)\n" +" numbered, t maak genummerde reservekopieën\n" +" existing, nil maak genummerde reservekopieën als er reeds genummerde \n" +" reserve-kopiekn bestaan, anders simpel\n" +" simple, never maak altijd simpele reservekopieën\n" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "Aanroep: %s [OPTIE]... BESTAND1 BESTAND2\n" + +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" + +#: src/join.c:165 +#, fuzzy +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" +"Vergelijk gesorteerde bestanden BESTAND1 en BESTAND2 regel voor regel.\n" +"\n" +" -1 onderdruk regels die alleen in BESTAND1 voorkomen\n" +" -2 onderdruk regels die alleen in BESTAND2 voorkomen\n" +" -3 onderdruk regels die slechts in één van beide bestanden\n" +" voorkomen\n" +" --help toon deze hulptekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" + +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" + +#: src/join.c:645 +#, c-format +msgid "invalid field specifier: `%s'" +msgstr "ongeldige veld specificatie: `%s'" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, c-format +msgid "invalid field number: `%s'" +msgstr "ongeldig veldnummer: `%s'" + +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "ongeldig bestandsnummer in veld specificatie: `%s'" + +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "ongeldig veldnummer bij bestand 1: `%s'" + +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "ongeldig veldnummer bij bestand 2: `%s'" + +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "te veel argumenten die geen optie zijn" + +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "te weinig argumenten die geen optie zijn" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "niet beide bestanden mogen de standaard invoer zijn" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" + +#: src/kill.c:106 +#, fuzzy +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" +"Kopieer standaardinvoer naar elk BESTAND, en ook naar standaarduitvoer.\n" +"\n" +" -a, --append toevoegen aan opgegeven BESTAND, overschrijf " +"niets\n" +" -i, --ignore-interrupts negeer interrupt signalen\n" +" --help toon hulptekst en bekindig programma\n" +" --version toon versie-informatie en bekindig programma\n" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" + +#: src/kill.c:163 +#, fuzzy, c-format +msgid "%s: invalid signal" +msgstr "%s: ongeldig procesnummer" + +#: src/kill.c:262 +#, fuzzy, c-format +msgid "missing operand after `%s'" +msgstr "%s: geheel getal verwacht na `%c'" + +#: src/kill.c:274 +#, fuzzy, c-format +msgid "%s: invalid process id" +msgstr "%s: ongeldig patroon" + +#: src/kill.c:327 +#, fuzzy, c-format +msgid "invalid option -- %c" +msgstr "%s: ongeldige optie -- %c\n" + +#: src/kill.c:336 +#, fuzzy, c-format +msgid "%s: multiple signals specified" +msgstr "\\%c: ongeldige escape" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "" + +#: src/link.c:51 +#, fuzzy, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "Aanroep: %s [OPTIE]... [INVOER [UITVOER]]\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" + +#: src/link.c:98 +#, fuzzy, c-format +msgid "cannot create link %s to %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "" +"%s: waarschuwing: een harde koppeling naar een symbolische koppeling is niet " +"overdraagbaar" + +#: src/ln.c:174 +#, fuzzy, c-format +msgid "%s: hard link not allowed for directory" +msgstr "`%s' is geen directory" + +#: src/ln.c:246 +#, fuzzy, c-format +msgid "%s: cannot overwrite directory" +msgstr "kan map `%s' niet aanmaken" + +#: src/ln.c:251 +#, fuzzy, c-format +msgid "%s: replace %s? " +msgstr "%s: `%s' vervangen? " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: Bestand bestaat" + +#: src/ln.c:304 +#, fuzzy, c-format +msgid "create symbolic link %s to %s" +msgstr "kan symbolische koppeling `%s' naar `%s' niet aanmaken" + +#: src/ln.c:305 +#, fuzzy, c-format +msgid "create hard link %s to %s" +msgstr "maken harde koppeling `%s' naar `%s'" + +#: src/ln.c:319 +#, fuzzy, c-format +msgid "creating symbolic link %s to %s" +msgstr "kan symbolische koppeling `%s' naar `%s' niet aanmaken" + +#: src/ln.c:320 +#, fuzzy, c-format +msgid "creating hard link %s to %s" +msgstr "maken harde koppeling `%s' naar `%s'" + +#: src/ln.c:339 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"Aanroep: %s [OPTIE]... LAATSTE\n" +" of: %s [OPTIE]... EERSTE LAATSTE\n" +" of: %s [OPTIE]... EERSTE STAP LAATSTE\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" + +#: src/ln.c:521 +#, fuzzy, c-format +msgid "%s: specified target directory is not a directory" +msgstr "`%s' bestaat maar is geen map" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "" +"bij het maken van meerdere verwijzingen moet het laatste argument een map " +"zijn" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "Gebruik: %s [OPTIE] [BESTAND]...\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" + +#: src/logname.c:99 +#, fuzzy, c-format +msgid "%s: no login name\n" +msgstr "%s: ongeldig getal" + +#: src/ls.c:673 +msgid "%b %e %Y" +msgstr "" + +#: src/ls.c:681 +msgid "%b %e %H:%M" +msgstr "" + +#: src/ls.c:1307 +#, fuzzy, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "negeer ongeldige breedte in omgevingsvariabele COLUMNS: %s" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "negeer ongeldige breedte in omgevingsvariabele COLUMNS: %s" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "negeer ongeldige tablengte in omgevingsvariabele TABSIZE: %s" + +#: src/ls.c:1482 +#, fuzzy, c-format +msgid "invalid line width: %s" +msgstr "ongeldig veldnummer: `%s'" + +#: src/ls.c:1556 +#, fuzzy, c-format +msgid "invalid tab size: %s" +msgstr "ongeldig teksttype `%s'" + +#: src/ls.c:1722 +#, fuzzy, c-format +msgid "invalid time style format %s" +msgstr "ongeldig argument %s voor `%s'" + +#: src/ls.c:2054 +#, fuzzy, c-format +msgid "unrecognized prefix: %s" +msgstr "onbekende optie `-%c'" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "on-ontleedbare waarde voor LS_COLORS omgevingsvariabele" + +#: src/ls.c:2145 +#, fuzzy, c-format +msgid "cannot determine device and inode of %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/ls.c:2155 +#, fuzzy, c-format +msgid "not listing already-listed directory: %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/ls.c:2208 src/remove.c:929 +#, fuzzy, c-format +msgid "reading directory %s" +msgstr "kan map `%s' niet aanmaken" + +# idem +#: src/ls.c:2603 +#, fuzzy, c-format +msgid "cannot compare file names %s and %s" +msgstr "kan %s `%s' naar `%s' niet aanmaken" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" + +#: src/ls.c:3784 +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" + +#: src/ls.c:3799 +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" + +#: src/ls.c:3831 +#, fuzzy +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -g (wordt genegeerd)\n" +" -G, --no-group voorkom weergave van groep info\n" +" -h, --human-readable geef groottes in leesbaar formaat\n" +" (bijv. 1K 234M 2G)\n" +" -H, --si zelfde, maar gebruik machten van 1000 ipv. " +"1024\n" +" --indicator-style=WOORD voeg een bestandstype-indicator toe van " +"WOORD:\n" +" none (standaard), classify (-F), file-type (-" +"p)\n" +" -i, --inode geef index nummer van ieder bestand\n" +" -I, --ignore=PATROON negeer ingangen die met overeenkomen met het\n" +" gegeven PATROON\n" +" -k, --kilobytes zelfde als --block-size=1024\n" +" -l gebruik een uitgebreid formaat\n" +" -L, --dereference gebruik de referenten van symbolische " +"koppelingen\n" +" -m vul schermbreedte met een lijst ingangen,\n" +" gescheiden door komma's\n" +" -n, --numeric-uid-gid geef UIDs en GIDs numeriek ipv. met namen weer\n" +" -N, --literal geef de echte namen van ingangen (behandel " +"bijv.\n" +" stuurtekens niet speciaal)\n" +" -o uitgebreide formaat zonder groep info\n" +" -p, --file-type voeg een teken toe om het type weer te geven\n" +" -q, --hide-control-chars geef een ? ipv. niet-grafische karakters\n" +" --show-control-chars geef niet-grafische karakters weer (standaard)\n" +" -Q, --quote-name vat ingangen in dubbele aanhalingstekens\n" +" --quoting-style=WOORD gebruik aanhaal-stijl WOORD: literal, shell,\n" +" shell-always, c, escape\n" +" -r, --reverse sorteer in omgekeerde volgorde\n" +" -R, --recursive geef mappen recursief weer\n" +" -s, --size geef grootte van elk bestand, in blokken\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" + +#: src/md5sum.c:385 +#, fuzzy, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "%s: %lu: foutief opgemaakte regel met MD5 controlesom" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "%s: openen of lezen MISLUKT\n" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "MISLUKT" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "OK" + +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%s: fout bij lezen" + +#: src/md5sum.c:457 +#, fuzzy, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "%s: geen correct opgemaakte regels met MD5 controlesom" + +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "LET OP: %d van %d getoonde %s kunnen niet gelezen worden" + +#: src/md5sum.c:473 +msgid "file" +msgstr "bestand" + +#: src/md5sum.c:473 +msgid "files" +msgstr "bestanden" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "LET OP: %d van %d berekende %s zijn NIET overeenkomstig" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "controlesom" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "controlesommen" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" +"de --binary en --text opties werken niet bij het verifiëren van " +"controlesommen" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "de --string and --check opties sluiten elkaar uit" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "de --status optie werkt alleen bij het verifiëren van controlesommen" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "de --warn optie werkt alleen bij het verifiëren van controlesommen" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "bij het gebruik van --string mogen geen bestanden opgegeven worden" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "bij het gebruik van --check mag slechts een argument gegeven worden" + +#: src/mkdir.c:61 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "Gebruik: %s [OPTIE] [BESTAND]...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" + +#: src/mkdir.c:69 +#, fuzzy +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +"Maak de MAP(pen) aan, als ze nog niet bestaan.\n" +"\n" +" -m, --mode=MODE stel permissie in (als met `chmod'), niet rwxrwxrwx - " +"umask\n" +" -p, --parents maak indien nodig de tussenliggende mappen aan\n" +" -v, --verbose geef een melding voor elke aangemaakte map\n" +" --help toon deze hulp-tekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" + +#: src/mkdir.c:113 +#, fuzzy, c-format +msgid "created directory %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/mkdir.c:190 +#, fuzzy, c-format +msgid "cannot set permissions of directory %s" +msgstr "kan de eigenaar van %s niet veranderen" + +#: src/mkfifo.c:55 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "Gebruik: %s [OPTIE] [BESTAND]...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" + +#: src/mkfifo.c:63 src/mknod.c:64 +#, fuzzy +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" +"Maak pijpen (FIFOs) aan met de gegeven NAAM (namen).\n" +"\n" +" -m, --mode=MODE zet permissie mode (als in chmod), niet 0666 - umask\n" +" --help toon hulp-tekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "fifo bestanden worden niet ondersteund" + +#: src/mkfifo.c:123 src/mknod.c:127 +#, fuzzy +msgid "invalid mode" +msgstr "ongeldig nummer" + +#: src/mkfifo.c:142 +#, fuzzy, c-format +msgid "cannot set permissions of fifo %s" +msgstr "kan de eigenaar van %s niet veranderen" + +#: src/mknod.c:55 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "Aanroep: %s [OPTIE]... SET1 [SET2]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" + +#: src/mknod.c:76 +#, fuzzy +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"Maak het apparaatbestand NAAM van het gegeven TYPE aan.\n" +"\n" +" -m, --mode=MODE zet permissie (als met `chmod'), niet 0666 - umask\n" +" --help toon hulp-tekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" +"\n" +"HOOFDNR en SUBNR zijn niet toegestaan voor TYPE p, anders zijn ze " +"verplicht.\n" +"TYPE mag het volgende zijn:\n" +"\n" +" b maak een (gebufferd) blokapparaatbestand\n" +" c, u maak een (niet gebufferd) byteapparaatbestand\n" +" p maak een FIFO\n" + +#: src/mknod.c:141 +#, fuzzy +msgid "wrong number of arguments" +msgstr "te weinig argumenten" + +#: src/mknod.c:153 +#, fuzzy +msgid "block special files not supported" +msgstr "blokgrootte" + +#: src/mknod.c:162 +msgid "character special files not supported" +msgstr "byteapparaatbestanden worden niet ondersteund" + +#: src/mknod.c:171 +#, fuzzy +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" +"bij het aanmaken van blokapparaatbestanden, moeten hoofd- en subnummers\n" +"gespecificeerd worden" + +#: src/mknod.c:186 +#, fuzzy, c-format +msgid "invalid major device number %s" +msgstr "ongeldig regelnummer voor begin: `%s'" + +#: src/mknod.c:191 +#, fuzzy, c-format +msgid "invalid minor device number %s" +msgstr "ongeldig regelnummer voor begin: `%s'" + +#: src/mknod.c:196 +#, fuzzy, c-format +msgid "invalid device %s %s" +msgstr "ongeldig argument %s voor `%s'" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "hoofd- en subnummers zijn niet toegestaan bij fifo bestanden" + +#: src/mknod.c:231 +#, fuzzy, c-format +msgid "cannot set permissions of %s" +msgstr "kan de eigenaar van %s niet veranderen" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" + +#: src/mv.c:339 +#, fuzzy +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Hernoem BRON tot BESTEMMING, of verplaats BRON(nen) naar MAP.\n" +"\n" +" --backup[=METHODE] maak een reservekopie voor verwijdering\n" +" -b zoals --backup, maar accepteert geen " +"argumenten\n" +" -f, --force verwijder bestaande bestemmingen, vraag niet\n" +" om bevestiging\n" +" -i, --interactive vraag om bevestiging alvorens te " +"overschrijven\n" +" --strip-trailing-slashes verwijder eventuele nakomende schuine\n" +" strepen van iedere BRON\n" +" -S, --suffix=SUFFIX gebruik SUFFIX ipv. het gebruikelijke\n" +" achtervoegsel voor reservekopieën\n" +" --target-directory=MAP verplaats alle BRON argumenten naar MAP\n" +" -u, --update verplaats alleen oudere of hele nieuwe " +"bestanden\n" +" -v, --verbose laat zien wat er gedaan wordt\n" +" --help toon hulp-tekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" +"\n" + +#: src/mv.c:467 +#, fuzzy, c-format +msgid "specified target, %s is not a directory" +msgstr "`%s' bestaat maar is geen map" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "" +"bij het verplaatsen van meerdere bestanden moet het laatste argument een map " +"zijn" + +#: src/nice.c:67 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "Gebruik: %s [OPTIE] [BESTAND]...\n" + +#: src/nice.c:68 +#, fuzzy +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" +"Voer COMMANDO uit met een aangepaste `scheduling' prioriteit. Bij geen \n" +"COMMANDO, toon de huidge `scheduling' prioriteit. WIJZIG is standaard 10. \n" +"Domein gaat van -20 (hoogste prioriteit) tot 19 (laagste).\n" +"\n" +" -WIJZIG verhoog de prioriteit eerst met WIJZIG\n" +" -n, --adjustment=WIJZIG zelfde als -WIJZIG\n" +" --help toon hulp-tekst en bekindig programma\n" +" --version toon versie-informatie en bekindig programma\n" +"\n" + +#: src/nice.c:109 src/nice.c:122 +#, fuzzy, c-format +msgid "invalid option `%s'" +msgstr "ongeldig teksttype `%s'" + +#: src/nice.c:147 +#, fuzzy, c-format +msgid "invalid priority `%s'" +msgstr "ongeldig veldnummer: `%s'" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "er moet een commando gegeven worden met een aanpassing" + +#: src/nice.c:178 src/nice.c:187 +#, fuzzy +msgid "cannot get priority" +msgstr "kan map `%s' niet aanmaken" + +#: src/nice.c:192 +#, fuzzy +msgid "cannot set priority" +msgstr "kan map `%s' niet aanmaken" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/nl.c:188 +#, fuzzy +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" +"Print elk BESTAND naar standaard uitvoer, de laatste regel als eerste.\n" +"Bij geen BESTAND of BESTAND is -, lees standaard-invoer.\n" +"\n" +" -b, --before plaats scheider voor i.p.v. achter de regel\n" +" -r, --regex interpreteer de scheider als reguliere expressie\n" +" -s, --separator=STRING gebruik STRING als scheider (nieuwe regel)\n" +" --help toon hulptekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" + +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "ongeldig regelnummer voor begin: `%s'" + +#: src/nl.c:514 +#, c-format +msgid "invalid line number increment: `%s'" +msgstr "ongeldige ophoging voor regelnummers: `%s'" + +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "ongeldig aantal lege regels: `%s'" + +#: src/nl.c:541 +#, c-format +msgid "invalid line number field width: `%s'" +msgstr "ongeldige veldbreedte voor regelnummer: `%s'" + +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"Aanroep: %s [OPTIE]... [BESTAND]...\n" +" of: %s --traditional [BESTAND] [[+]OFFSET [[+]LABEL]]\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" + +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "ongeldig teksttype `%s'" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" +"ongeldig string-type `%s';\n" +"dit systeem biedt geen integraal %lu-byte type" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" +"ongeldig string-type `%s';\n" +"dit system biedt geen %lu-byte drijvende komma type" + +#: src/od.c:917 +#, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "ongeldig teken `%c' in teksttype `%s'" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "kan niet verder dan het einde van de gecombineerde invoer" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "oude stijl offset" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "" +"ongeldig grondtal voor uitvoeradres `%c'; dit moet een teken zijn uit [doxn]" + +#: src/od.c:1717 +msgid "skip argument" +msgstr "sla argument over" + +#: src/od.c:1725 +msgid "limit argument" +msgstr "beperk argument" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "minimale lengte van de tekst" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "" + +#: src/od.c:1804 +msgid "width specification" +msgstr "specificatie voor de breedte" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "er mag geen type gegeven zijn indien met tekst gedumpt wordt" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "ongeldige tweede operand in compatibilteits mode `%s'" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "in compatibiliteits mode moeten de laatste 2 argumenten offsets zijn" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "in compatibiliteits mode mogen er niet meer dan 3 argumenten zijn" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "let op: ongeldige breedte %lu; zal %d gebruiken" + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "%d: fmt=\"%s\" breedte=%d\n" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "standaard invoer is gesloten" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" + +#: src/pathchk.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "Aanroep: %s [OPTIE]... [BESTAND]...\n" + +#: src/pathchk.c:147 +#, fuzzy +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" +"Diagnostiseer niet portabel constructies in NAAM.\n" +"\n" +" -p, --portability kontroleer voor alle POSIX systemen, niet alleen deze\n" +" --help toon hulp-tekst en bekindig programma\n" +" --version toon versie-informatie en bekindig programma\n" + +#: src/pathchk.c:237 +#, fuzzy, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "TAB-grootte bevat een ongeldig karakter" + +#: src/pathchk.c:257 +#, fuzzy, c-format +msgid "`%s' is not a directory" +msgstr "`%s' bestaat maar is geen map" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "directory `%s' is niet doorzoekbaar" + +#: src/pathchk.c:355 +#, fuzzy, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "naam `%s' is %d lang; overschrijdt limiet van %d" + +#: src/pathchk.c:381 +#, fuzzy, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "pad `%s' is %d lang; overschrijdt limiet van %d" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "" + +#: src/pinky.c:292 +#, fuzzy +msgid "Login name: " +msgstr "%s: geen login naam\n" + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "" + +#: src/pinky.c:298 +msgid "???\n" +msgstr "" + +#: src/pinky.c:318 +msgid "Directory: " +msgstr "" + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "" + +#: src/pinky.c:341 +msgid "Project: " +msgstr "" + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "" + +#: src/pinky.c:386 +msgid "Login" +msgstr "" + +#: src/pinky.c:388 +#, fuzzy +msgid "Name" +msgstr "am" + +#: src/pinky.c:389 +msgid " TTY" +msgstr "" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "" + +#: src/pinky.c:392 +msgid "When" +msgstr "" + +#: src/pinky.c:395 +msgid "Where" +msgstr "" + +#: src/pinky.c:469 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "Aanroep: %s [OPTIE]... [BESTAND]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" + +#: src/pinky.c:574 +#, fuzzy +msgid "no username specified; at least one must be specified when using -l" +msgstr "bij het gebruik van --string mogen geen bestanden opgegeven worden" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "" + +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "`--pages' ongeldige reeks van paginanummers: `%s'" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "`--pages' ongeldig startpaginanummer: `%s'" + +#: src/pr.c:829 +#, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "`--pages' ongeldig laatste paginanummer: `%s'" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "" +"`--pages' paginanummer van de eerste pagina is groter dan van de laatste" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "`--pages=EERSTE[:LAATSTE]' ontbrekend argument" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "`--columns=KOLOM' ongeldig aantal kolommon: `%s'" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "`-l PAGINALENGTE' ongeldig aantal regels: `%s'" + +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "`-N AANTAL' ongeldig beginregelnummer: `%s'" + +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "`-o MARGE' ongeldige regeloffset: `%s'" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "`-w PAGINABREEDTE' ongeldig aantal tekens: `%s'" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "`-W PAGINABREEDTE' ongeldig aantal tekens: `%s'" + +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "" +"Bij parallel afdrukken kan het aantal kolommen niet worden gespecificeerd." + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "Kan niet zowel parallel als dwars afdrukken." + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "`-%c' extra tekens of ongeldig nummer in het argument: `%s'" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "te smalle pagina-breedte" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "beginpaginanummer is groter dan het totaal aantal pagina's: `%d'" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr "" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" + +#: src/pr.c:2849 +#, fuzzy +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" +"Vergelijk gesorteerde bestanden BESTAND1 en BESTAND2 regel voor regel.\n" +"\n" +" -1 onderdruk regels die alleen in BESTAND1 voorkomen\n" +" -2 onderdruk regels die alleen in BESTAND2 voorkomen\n" +" -3 onderdruk regels die slechts in één van beide bestanden\n" +" voorkomen\n" +" --help toon deze hulptekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" + +#: src/printenv.c:43 +msgid "David MacKenzie and Richard Mlynarik" +msgstr "" + +#: src/printenv.c:63 +#, fuzzy, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" +"Als geen omgevings VARIABELE is gespecificeerd, toon ze dan allemaal.\n" +"\n" +" --help toon hulp-tekst en bekindig programma\n" +" --version toon versie-informatie en bekindig programma\n" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "let op: %s: karakter(s) volgend op karakter constante worden genegeerd" + +#: src/printf.c:100 +#, fuzzy, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "Aanroep: %s [OPTIE]... [INVOER [UITVOER]]\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "%s: verwacht een numerieke waarde" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "%s: waarde niet helemaal geconverteerd" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "ontbrekend hexadecimaal nummer in escape" + +#: src/printf.c:292 +#, fuzzy, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "ongeldige tekenklasse `%s'" + +#: src/printf.c:472 +#, fuzzy, c-format +msgid "invalid field width: %s" +msgstr "ongeldig veldnummer: `%s'" + +#: src/printf.c:498 +#, fuzzy, c-format +msgid "invalid precision: %s" +msgstr "ongeldig teksttype `%s'" + +#: src/printf.c:519 +#, fuzzy, c-format +msgid "%%%c: invalid directive" +msgstr "%s: ongeldig patroon" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "Aanroep: %s formaat [argument...]\n" + +#: src/printf.c:594 +#, fuzzy, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "let op: excess argumenten worden genegeerd" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "%s (voor reguliere expressie `%s')" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"Aanroep: %s [OPTIE]... [INVOER]... (zonder -G)\n" +" of: %s -G [OPTIE]... [INVOER [UITVOER]]\n" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" + +#: src/ptx.c:1978 +#, fuzzy +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" +"Dit programma is vrije programmatuur; het kan gedistribueerd en/of\n" +"gewijzigd worden zolang de voorwaarden aangehouden worden die\n" +"beschreven staan in de GNU General Public License, zoals gepubliceerd\n" +"door de Free Software Foundation; ofwel versie 2, ofwel (als u daar\n" +"voor kiest) een latere versie.\n" +"\n" +"Dit programma wordt uitgegeven in de hoop dat het bruikbaar is, maar\n" +"ZONDER ENIGE GARANTIE; zelfs zonder de impliciete garantie van\n" +"VERKOOPBAARHEID of GESCHIKTHEID VOOR EEN BEPAALD DOEL. In de GNU\n" +"General Public License staan meer details.\n" +"\n" +"U zou een kopie van de GNU General Public License ontvangen moeten\n" +"hebben bij dit programma; zo niet, schrijf dan naar de Free Software\n" +"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,\n" +"USA.\n" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" + +#: src/ptx.c:1992 +#, fuzzy +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" +"Dit programma is vrije programmatuur; het kan gedistribueerd en/of\n" +"gewijzigd worden zolang de voorwaarden aangehouden worden die\n" +"beschreven staan in de GNU General Public License, zoals gepubliceerd\n" +"door de Free Software Foundation; ofwel versie 2, ofwel (als u daar\n" +"voor kiest) een latere versie.\n" +"\n" +"Dit programma wordt uitgegeven in de hoop dat het bruikbaar is, maar\n" +"ZONDER ENIGE GARANTIE; zelfs zonder de impliciete garantie van\n" +"VERKOOPBAARHEID of GESCHIKTHEID VOOR EEN BEPAALD DOEL. In de GNU\n" +"General Public License staan meer details.\n" +"\n" +"U zou een kopie van de GNU General Public License ontvangen moeten\n" +"hebben bij dit programma; zo niet, schrijf dan naar de Free Software\n" +"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,\n" +"USA.\n" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" + +#: src/pwd.c:74 +#, fuzzy +msgid "ignoring non-option arguments" +msgstr "te veel argumenten die geen optie zijn" + +#: src/pwd.c:78 +#, fuzzy +msgid "cannot get current directory" +msgstr "kan map `%s' niet aanmaken" + +#: src/readlink.c:69 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "Aanroep: %s [OPTIE]... [BESTAND]...\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" + +#: src/remove.c:394 +#, fuzzy, c-format +msgid "cannot chdir from %s to .." +msgstr "kan niet naar map gaan, %s" + +#: src/remove.c:407 src/remove.c:488 +#, fuzzy, c-format +msgid "cannot lstat `.' in %s" +msgstr "kan %s niet uitvoeren" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, fuzzy, c-format +msgid "cannot lstat %s" +msgstr "kan de rechten van %s niet veranderen" + +#: src/remove.c:603 +#, fuzzy, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "kan map `%s' niet aanmaken" + +#: src/remove.c:604 +#, fuzzy, c-format +msgid "%s: descend into directory %s? " +msgstr "kan niet naar map gaan, %s" + +#: src/remove.c:614 +#, fuzzy, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: bestand `%s' is tegen schrijven beveiligd; toch verwijderen? " + +#: src/remove.c:615 +#, fuzzy, c-format +msgid "%s: remove %s %s? " +msgstr "%s: `%s' verwijderen? " + +#: src/remove.c:639 +#, fuzzy, c-format +msgid "removed %s\n" +msgstr "verwijder %s\n" + +#: src/remove.c:654 src/remove.c:1059 +#, fuzzy, c-format +msgid "removed directory: %s\n" +msgstr "kan map `%s' niet aanmaken" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, fuzzy, c-format +msgid "cannot remove directory %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/remove.c:815 +#, fuzzy, c-format +msgid "cannot open directory %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/remove.c:896 src/remove.c:1002 +#, fuzzy, c-format +msgid "cannot chdir from %s to %s" +msgstr "kan niet naar map gaan, %s" + +#: src/remove.c:904 +#, fuzzy, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +"LET OP: Circulaire mapstructuur.\n" +"Dit betekent vrijwel zeker dat het bestandssysteem corrupt is.\n" +"WAARSCHUW UW SYSTEEM BEHEERDER.\n" +"De volgende twee mappen hebben het zelfde inode nummer:\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "kan `.' of `..' niet verwijderen" + +#: src/rm.c:60 +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "" + +#: src/rm.c:99 src/touch.c:244 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "Aanroep: %s [OPTIE]... [BESTAND]...\n" + +#: src/rm.c:100 +#, fuzzy +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Verwijder of ontkoppel BESTAND(en).\n" +"\n" +" -d, --directory verwijder map, zelfs indien niet leeg\n" +" (alleen voor systeembeheerder)\n" +" -f, --force negeer niet bestaande bestanden, vraag nooit om een\n" +" bevestiging\n" +" -i, --interactive vraag om bevestiging alvorens iets te verwijderen\n" +" -r, -R, --recursive verwijder de inhoud van alle onderliggende mappen\n" +" -v, --verbose laat zien wat er gedaan wordt\n" +" --help toon hulp-tekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" +"\n" +"Om een bestand te verwijderen met een naam die begint met een `-',\n" +"bijv. `-foo', gebruik een van deze commando's:\n" +" %s -- -foo\n" +" %s ./-foo\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, fuzzy, c-format +msgid "removing directory, %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/rmdir.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "Aanroep: %s [OPTIE]... [BESTAND]...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" + +#: src/rmdir.c:154 +#, fuzzy +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +"Verwijder de MAP(pen), mits ze leeg zijn.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" negeer een fout die voortkomt uit een niet-lege map\n" +" -p, --parents verwijder MAP, en probeer ieder onderdeel van het\n" +" pad te verwijderen. Bijv. `rmdir -p a/b/c' is\n" +" gelijk aan `rmdir a/b/c a/b a'.\n" +" -v, --verbose geef info voor iedere behandelde map\n" +" --help toon hulp-tekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" + +#: src/seq.c:82 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"Aanroep: %s [OPTIE]... [INVOER]... (zonder -G)\n" +" of: %s -G [OPTIE]... [INVOER [UITVOER]]\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" + +#: src/seq.c:96 +#, fuzzy, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" +"Toon nummers van EERSTE tot LAATSTE, stapgrootte STAP.\n" +"\n" +" -f, --format FORMAAT gebruik printf(3) stijl FORMAAT (standaard: %%g)\n" +" -s, --separator STRING gebruik STRING voor scheiden nummers (standaard: " +"\\n)\n" +" -w, --equal-width gelijk houden breedte door toevoegen nullen\n" +" --help toon hulp-tekst en bekindig programma\n" +" --version toon versie-informatie en bekindig programma\n" +"\n" +"Als EERSTE of STAP zijn weggelaten, dan worden ze gelijk aan 1.\n" +"EERSTE, STAP en LAATSTE worden geonterpreteerd als drijvende komma\n" +"waarden. STAP moet positief zijn als EERSTE kleiner is dan LAATSTE,\n" +"en negatief in het omgekeerde geval. Als een FORMAAT gegeven is dan\n" +"moet dit precies een van de printf-stijl, drijvende komma uitvoer\n" +"formaten %%e, %%f, of %%g bevatten.\n" + +#: src/seq.c:119 +#, fuzzy, c-format +msgid "invalid floating point argument: %s" +msgstr "ongeldig regelnummer voor begin: `%s'" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" +"als de begin waarde groter is dan de limiet, dan moet de stap negatief zijn" + +#: src/seq.c:213 +#, fuzzy +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "het eerste veldnummer argument bij de `-k' optie moet positief zijn" + +#: src/seq.c:423 +#, fuzzy, c-format +msgid "invalid format string: `%s'" +msgstr "ongeldig teksttype `%s'" + +#: src/seq.c:445 +#, fuzzy +msgid "format string may not be specified when printing equal width strings" +msgstr "er mag geen type gegeven zijn indien met tekst gedumpt wordt" + +#: src/shred.c:160 +#, fuzzy, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "Gebruik: %s [OPTIE] [BESTAND]...\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" + +#: src/shred.c:174 +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" + +#: src/shred.c:808 +#, fuzzy, c-format +msgid "%s: cannot rewind" +msgstr "kan %s niet uitvoeren" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "%s: sessie %lu/%lu (%s)..." + +#: src/shred.c:868 +#, fuzzy, c-format +msgid "%s: error writing at offset %s" +msgstr "fout bij schrijven %s" + +#: src/shred.c:897 +#, fuzzy, c-format +msgid "%s: file too large" +msgstr "bestand ingekort" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "%s: sessie %lu/%lu (%s)...%s" + +#: src/shred.c:936 +#, fuzzy, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "%s: sessie %lu/%lu (%s)...%s/%s" + +#: src/shred.c:1195 +#, fuzzy, c-format +msgid "%s: invalid file type" +msgstr "%s: ongeldig aantal regels" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s: bestand heeft een negatieve grootte" + +#: src/shred.c:1265 +#, fuzzy, c-format +msgid "%s: error truncating" +msgstr "bestand ingekort" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "%s: kan een alleen-toevoegen beschrijver niet vernietigen" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "verwijder %s" + +#: src/shred.c:1412 +#, fuzzy, c-format +msgid "%s: renamed to %s" +msgstr "%s: fout bij lezen" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s: verwijderd" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "kan `%s' niet verwijderen" + +#: src/shred.c:1551 +#, fuzzy, c-format +msgid "%s: invalid number of passes" +msgstr "%s: ongeldig aantal seconden" + +#: src/shred.c:1568 +#, fuzzy, c-format +msgid "%s: invalid file size" +msgstr "%s: ongeldig aantal regels" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "" + +#: src/sleep.c:52 +#, fuzzy, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" +"Pauseer voor NUMMER seconden. ACHTERVOEGSEL mag respectievelijk s (voor \n" +"seconden), m (voor minuten), h (voor uren) en d (voor dagen) zijn.\n" +"\n" +" --help toon hulp-tekst en bekindig programma\n" +" --version toon versie-informatie en bekindig programma\n" + +#: src/sleep.c:155 +#, fuzzy, c-format +msgid "invalid time interval `%s'" +msgstr "ongeldig veldnummer: `%s'" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" + +#: src/sort.c:324 +#, fuzzy +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" +"POS is F[.C][OPTS], waarin F een veldnummer is en C de tekenpositie in\n" +"het veld, beide genummerd vanaf 1 indien met -k, vanaf 0 in de\n" +"verouderde vorm. OPTS bestaat uit één of meer van Mbdfinr; effectief\n" +"zet dit de instellingen voor de globale -Mbdfinr uit. Indien geen\n" +"sleutel gegeven is, wordt de hele regel gebruikt als sleutel. Zonder\n" +"BESTAND, of indien BESTAND is -, wordt de standaard invoer gelezen.\n" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" + +#: src/sort.c:444 +#, fuzzy +msgid "cannot create temporary file" +msgstr "kan map `%s' niet aanmaken" + +#: src/sort.c:467 +msgid "open failed" +msgstr "" + +#: src/sort.c:487 src/sort.c:2496 +#, fuzzy +msgid "close failed" +msgstr "fout bij sluiten bestand" + +#: src/sort.c:495 +#, fuzzy +msgid "write failed" +msgstr "fout bij schrijven" + +#: src/sort.c:641 +#, fuzzy +msgid "sort size" +msgstr "blokgrootte" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "" + +#: src/sort.c:972 +msgid "read failed" +msgstr "" + +#: src/sort.c:1570 +#, fuzzy, c-format +msgid "%s: %s:%s: disorder: " +msgstr "%s: %s:%d: storing: " + +#: src/sort.c:1574 +msgid "standard error" +msgstr "standaard fout-uitvoer" + +#: src/sort.c:2032 +#, fuzzy, c-format +msgid "%s: invalid field specification `%s'" +msgstr "ongeldige veldspecificatie `%s'" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "" + +#: src/sort.c:2064 +#, fuzzy, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "ongeldig argument %s voor `%s'" + +#: src/sort.c:2298 +#, fuzzy +msgid "invalid number after `-'" +msgstr "ongeldig aantal bytes" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +#, fuzzy +msgid "invalid number after `.'" +msgstr "ongeldig aantal bytes" + +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "" + +#: src/sort.c:2338 +#, fuzzy +msgid "invalid number at field start" +msgstr "ongeldig aantal regels" + +#: src/sort.c:2342 src/sort.c:2370 +#, fuzzy +msgid "field number is zero" +msgstr "ongeldig veldnummer: `%s'" + +#: src/sort.c:2351 +msgid "character offset is zero" +msgstr "" + +#: src/sort.c:2366 +#, fuzzy +msgid "invalid number after `,'" +msgstr "ongeldig aantal bytes" + +#: src/sort.c:2411 +#, fuzzy, c-format +msgid "multi-character tab `%s'" +msgstr "ongeldige tekenklasse `%s'" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "" + +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "Aanroep: %s [OPTIE] [INVOER] [VOORVOEGSEL]]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" + +#: src/split.c:108 +#, fuzzy, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" +"Bewaar stukjes van de INVOER van een vaste grootte naar VOORVOEGSELaa,\n" +"VOORVOEGSELab, ...; standaard VOORVOEGSEL is `x'. Indien geen INVOER\n" +"is gegeven, of INVOER is -, wordt de standaard invoer gelezen.\n" +"\n" +" -b, --bytes=N uitvoerbestanden zijn maximaal N bytes groot\n" +" -C, --line-bytes=N uitvoerbestanden zijn maximaal N bytes aan\n" +" hele regels groot\n" +" -l, --lines=N uitvoerbestand bevat maximaal N regels\n" +" -GROOTTE zelfde als -l GROOTTE\n" +" --verbose geef een diagnose op de standaard\n" +" fout-uitvoer vlak voor een uitvoerbestand\n" +" geopend wordt\n" +" --help toon deze hulptekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" +"\n" +"N mag worden gevolgd door: b voor 512, k voor 1K, m voor 1 Meg.\n" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "" + +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "bestand `%s' wordt aangemaakt\n" + +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "kan niet op meer dan één manier splitsen" + +#: src/split.c:394 +#, fuzzy, c-format +msgid "%s: invalid suffix length" +msgstr "%s: ongeldig aantal regels" + +#: src/split.c:408 src/split.c:434 +#, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: ongeldig aantal bytes" + +#: src/split.c:421 +#, c-format +msgid "%s: invalid number of lines" +msgstr "%s: ongeldig aantal regels" + +#: src/split.c:470 +#, fuzzy, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "let op: ongeldige breedte %lu; zal %d gebruiken" + +#: src/split.c:483 +msgid "invalid number" +msgstr "ongeldig nummer" + +#: src/stat.c:326 +#, fuzzy +msgid "*** invalid date/time ***" +msgstr "ongeldig veldnummer: `%s'" + +#: src/stat.c:608 +#, fuzzy, c-format +msgid "cannot read file system information for %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/stat.c:684 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "Gebruik: %s [OPTIE] [BESTAND]...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" + +#: src/stty.c:504 +#, fuzzy +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" +"Toon of verander terminal karakteristieken.\n" +"\n" +" -a, --all toon alle huidige instellingen in voor een mens leesbare " +"vorm\n" +" -g, --save toon alle huidige instellingen in voor een stty leesbare " +"vorm\n" +" --help toon hulp-tekst en bekindig programma\n" +" --version toon versie-informatie en bekindig programma\n" +"\n" +"Optioneel - voor INSTELLING indicatie `negation'. Een * markeert\n" +"niet-POSIX instellingen. Het onderliggende systeem definieert welke\n" +"instellingen beschikbaar zijn.\n" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" + +#: src/stty.c:570 +#, fuzzy +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" +"\n" +"Controle instellingen:\n" +" [-]clocal geen modem controle signalen\n" +" [-]cread invoer mag ontvangen worden\n" +"* [-]crtscts zet RTS/CTS handjeschudden aan\n" +" csN zet karaktergrootte op N bits, N ligt in [5..8]\n" +" [-]cstopb gebruik twee stop bits per karakter (een met `-')\n" +" [-]hup stuur een `hang op' signaal wanneer het laatste proces \n" +" de tty sluit\n" +" [-]hupcl zelfde als [-]hup\n" +" [-]parenb genereer pariteitsbit in uitvoer en \n" +" verwacht pariteitsbit in invoer\n" +" [-]parodd zet oneven pariteit aan (even met `-')\n" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:608 +#, fuzzy +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" +"\n" +"Uitvoer instellingen:\n" +"* bsN backspace vertragingsstijl, N in [0..1]\n" +"* crN carriage return vertragingsstijl, N in [0..3]\n" +"* ffN form feed vertragingsstijl, N in [0..1]\n" +"* nlN newline vertragingsstijl, N in [0..1]\n" +"* [-]ocrnl zet carriage return om in newline\n" +"* [-]ofdel gebruik delete karakters voor fill in plaats van null " +"karakters\n" +"* [-]ofill gebruik fill (padding) karakters in plaats van timing voor \n" +" vertragingen\n" +"* [-]olcuc zet kleine letters om in hoofdletters\n" +"* [-]onlcr zet newline om in carriage return-newline\n" +"* [-]onlret newline voert een carriage return uit\n" +"* [-]onocr toon geen carriage returns in de eerste kolom\n" +" [-]opost na proces uitvoer\n" +"* tabN horizontale tab vertragingsstijl, N in [0..3]\n" +"* tabs zelfde als tab0\n" +"* -tabs zelfde als tab3\n" +"* vtN verticale tab vertragingsstijl, N in [0..1]\n" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" +"\n" +"Gebruik de tty lijn verbonden met standaardinvoer. Zonder argumenten,\n" +"toon baud rate, regel discipline en afleidingen van stty sane. Bij\n" +"instellingen, CHAR wordt letterlijk gebruikt, of gecodeerd als in ^c,\n" +"0x37, 0177 of 127; speciale waarden ^- of undef gebruik om speciale\n" +"karakters inactief te maken.\n" + +#: src/stty.c:787 +#, fuzzy +msgid "only one device may be specified" +msgstr "slechts één argument mag gegeven worden" + +#: src/stty.c:882 +#, fuzzy +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "de --string and --check opties sluiten elkaar uit" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "bij specificeren van een uitvoer stijl, worden modi niet ingesteld" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "" + +#: src/stty.c:957 src/stty.c:1064 +#, fuzzy, c-format +msgid "invalid argument `%s'" +msgstr "ongeldig argument %s voor `%s'" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, fuzzy, c-format +msgid "missing argument to `%s'" +msgstr "dubbelzinnig argument %s voor `%s'" + +#: src/stty.c:1117 +#, fuzzy, c-format +msgid "%s: unable to perform all requested operations" +msgstr "standaard invoer: kan niet alle gevraagde operaties uitvoeren" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "new_mode: mode\n" + +#: src/stty.c:1462 +#, fuzzy, c-format +msgid "%s: no size information for this device" +msgstr "geen grootte informatie voor dit apparaat" + +#: src/stty.c:1944 +#, fuzzy, c-format +msgid "invalid integer argument `%s'" +msgstr "ongeldige ophoging voor regelnummers: `%s'" + +#: src/su.c:289 +msgid "Password:" +msgstr "Wachtwoord:" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "getpass: kan /dev/tty niet openen" + +#: src/su.c:350 +#, fuzzy +msgid "cannot set groups" +msgstr "u kunt niet zowel de gebruiker als de groep weglaten" + +#: src/su.c:354 +#, fuzzy +msgid "cannot set group id" +msgstr "u kunt niet zowel de gebruiker als de groep weglaten" + +#: src/su.c:356 +#, fuzzy +msgid "cannot set user id" +msgstr "u kunt niet zowel de gebruiker als de groep weglaten" + +#: src/su.c:437 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "Aanroep: %s [OPTIE]... [BESTAND]...\n" + +#: src/su.c:438 +#, fuzzy +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" +"Verander de effectieve gebruikers id en groep id in die van GEBRUIKER.\n" +"\n" +" -, -l, --login maak van de shell een login shell\n" +" -c, --commmand=COMMANDO stuur een enkel COMMANDO naar de shell met -" +"c\n" +" -f, --fast stuur -f naar de shell (voor csh of tcsh)\n" +" -m, --preserve-environment reset de omgevingsvariabelen niet\n" +" -p zelfde als -m\n" +" -s, --shell=SHELL voer SHELL uit als /etc/shells dit toestaat\n" +" --help toon hulptekst en bekindig programma\n" +" --version toon versie-informatie en bekindig programma\n" +"\n" +"Een simple - betekent -l. Als GEBRUIKER niet gegeven is, veronderstel " +"root.\n" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "gebruiker %s bestaat niet" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "onjuist wachtwoord" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "gebruik restricted shell %s" + +#: src/su.c:580 +#, fuzzy, c-format +msgid "warning: cannot change directory to %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "" + +#: src/sum.c:64 +#, fuzzy +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" +"Print kontrolesom en aantal blokken voor elk BESTAND.\n" +"\n" +" -r defeat -s, gebruik BSD somatie algoritme, gebruik 1K " +"blokken\n" +" -s, --sysv gebruik System V somatie algoritme, gebruik 512 bytes " +"blokken\n" +" --help toon hulptekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" +"\n" +"Bij geen BESTAND of BESTAND is -, lees standaard-invoer.\n" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" + +#: src/sync.c:70 src/tty.c:112 +#, fuzzy +msgid "ignoring all arguments" +msgstr "teveel argumenten" + +#: src/sys2.h:492 +#, fuzzy +msgid " --help display this help and exit\n" +msgstr "" +"Toon CRC-controlesom en het aantal bytes voor ieder BESTAND.\n" +"\n" +" --help toon deze hulptekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" + +#: src/sys2.h:494 +#, fuzzy +msgid " --version output version information and exit\n" +msgstr "" +"Toon CRC-controlesom en het aantal bytes voor ieder BESTAND.\n" +"\n" +" --help toon deze hulptekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tac.c:139 +#, fuzzy +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" +"Print elk BESTAND naar standaard uitvoer, de laatste regel als eerste.\n" +"Bij geen BESTAND of BESTAND is -, lees standaard-invoer.\n" +"\n" +" -b, --before plaats scheider voor i.p.v. achter de regel\n" +" -r, --regex interpreteer de scheider als reguliere expressie\n" +" -s, --separator=STRING gebruik STRING als scheider (nieuwe regel)\n" +" --help toon hulptekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "standaard invoer: fout bij lezen" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "scheidingsteken kan niet leeg zijn" + +#: src/tail.c:49 +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "" + +#: src/tail.c:238 +#, fuzzy, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Kopieer de eerste 10 regels van elk BESTAND naar standaard-uitvoer.\n" +"Indien meerdere bestanden gegeven zijn, wordt de uitvoer van ieder\n" +"bestand voorafgegaan door de bestandsnaam. Indien geen BESTAND\n" +"gegeven is, of BESTAND is -, wordt de standaard invoer gelezen.\n" +"\n" +" -c, --bytes=GROOTTE print eerste GROOTTE bytes\n" +" -n, --lines=AANTAL print eerste AANTAL regels in plaats van eerste " +"10\n" +" -q, --quiet, --silent print nooit bestandsnamen als headers\n" +" -v, --verbose print altijd bestandsnamen als headers\n" +" --help toon deze hulptekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" +"\n" +"GROOTTE mag een achtervoegsel hebben om aan te geven waarmee het\n" +"vermenigvuldigd moet worden: b voor 512, k voor 1 Kilobyte, m voor 1\n" +"Megabyte. Als -GROOTTE de eerste OPTIE is, lees -c GROOTTE wanneer\n" +"een van de vermunigvuldigingsachtervoegsels bkm volgt, ander lees -n\n" +"GROOTTE.\n" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" + +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "%s wordt gesloten (fd=%d)" + +#: src/tail.c:391 +#, fuzzy, c-format +msgid "%s: cannot seek to offset %s" +msgstr "kan geen ioctl doen op `%s'" + +#: src/tail.c:395 +#, fuzzy, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "kan map `%s' niet aanmaken" + +#: src/tail.c:400 +#, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "`%s' is ontoegankelijk geworden" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "" +"`%s' is vervangen door een bestand dat niet gevolgd kan worden; ik geef deze " +"naam op" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "`%s' is toegankelijk geworden" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "" +"`%s' is tevoorschijn gekomen; ik ga het einde van het nieuwe bestand volgen" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "`%s' is vervangen; ik ga het einde van het nieuwe bestand volgen" + +#: src/tail.c:1000 +#, fuzzy, c-format +msgid "%s: file truncated" +msgstr "bestand ingekort" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "geen bestanden meer over" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "" +"%s: kan het einde van dit type bestand niet volgen; ik geef deze naam op" + +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "%c: ongeldig achtervoegsel in verouderde optie" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"te veel argumenten; Indien de verouderde syntax van tail (%s) wordt\n" +"gebruikt, mag er niet meer dan een bestandsargument zijn. Gebruik in\n" +"plaats daarvan de equivalente optie -n of -c." + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"Let op: het gebruik van twee of meer bestandsargumenten met de\n" +"verouderde syntax van tail (%s) is niet overdraagbaar. Gebruik in\n" +"plaats daarvan de equivalente optie -n of -c" + +#: src/tail.c:1423 +#, fuzzy, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "let op: ongeldige breedte %lu; zal %d gebruiken" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "%s: ongeldig maximaal aantal onveranderde statussen tussen openen" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "%s: ongeldig maximum aantal opeenvolgende veranderingen in grootte" + +#: src/tail.c:1534 +#, c-format +msgid "%s: invalid PID" +msgstr "%s: ongeldig procesnummer" + +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: ongeldig aantal seconden" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "let op: --retry is alleen zinvol als het gevolgd wordt door een naam" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "" +"let op: PROCES genegeerd; --pid=PROCES is alleen zinvol wanneer gevolgd wordt" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "let op: --pid=PROCES wordt niet ondersteund op dit systeem" + +#: src/tee.c:33 +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "" + +#: src/tee.c:64 +#, fuzzy +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" +"Kopieer standaardinvoer naar elk BESTAND, en ook naar standaarduitvoer.\n" +"\n" +" -a, --append toevoegen aan opgegeven BESTAND, overschrijf " +"niets\n" +" -i, --ignore-interrupts negeer interrupt signalen\n" +" --help toon hulptekst en bekindig programma\n" +" --version toon versie-informatie en bekindig programma\n" + +#: src/test.c:216 +#, fuzzy +msgid "argument expected\n" +msgstr "argument" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "verwacht een integer expressie %s\n" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "verwacht ')'\n" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "verwacht ')', vond %s\n" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "%s: verwacht unaire operator\n" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "%s: verwacht binaire operator\n" + +#: src/test.c:424 +msgid "before -lt" +msgstr "voor -lt" + +#: src/test.c:432 +msgid "after -lt" +msgstr "na -lt" + +#: src/test.c:446 +msgid "before -le" +msgstr "voor -le" + +#: src/test.c:453 +msgid "after -le" +msgstr "na -le" + +#: src/test.c:469 +msgid "before -gt" +msgstr "voor -gt" + +#: src/test.c:476 +msgid "after -gt" +msgstr "na -gt" + +#: src/test.c:490 +msgid "before -ge" +msgstr "voor -ge" + +#: src/test.c:497 +msgid "after -ge" +msgstr "na -ge" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "-nt accepteert geen -l\n" + +#: src/test.c:526 +msgid "before -ne" +msgstr "voor -ne" + +#: src/test.c:533 +msgid "after -ne" +msgstr "na -ne" + +#: src/test.c:549 +msgid "before -eq" +msgstr "voor -eq" + +#: src/test.c:556 +msgid "after -eq" +msgstr "na -eq" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "-ef accepteert geen -l\n" + +#: src/test.c:586 +#, fuzzy +msgid "-ot does not accept -l\n" +msgstr "-nt accepteert geen -l\n" + +#: src/test.c:593 +#, fuzzy +msgid "unknown binary operator" +msgstr "Onbekende systeemfout" + +#: src/test.c:781 +#, fuzzy +msgid "after -t" +msgstr "na -lt" + +#: src/test.c:979 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "Aanroep: %s [OPTIE]... [INVOER [UITVOER]]\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" + +#: src/test.c:1009 +#, fuzzy +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" +"\n" +" ( EXPRESSIE ) EXPRESSIE is waar\n" +" ! EXPRESSIE EXPRESSIE is onwaar\n" +" EXPRESSIE1 -a EXPRESSIE2 zowel EXPRESSIE1 als EXPRESSIE2 zijn waar\n" +" EXPRESSIE1 -o EXPRESSIE2 of EXPRESSIE1 of EXPRESSIE2 is waar\n" +"\n" +" [-n] STRING de lengte van STRING is niet nul\n" +" -z STRING de lengte van STRING is nul\n" +" STRING1 = STRING2 de strings zijn gelijk\n" +" STRING1 != STRING2 de strings zijn niet gelijk\n" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is gelijk aan INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is groter dan of gelijk aan INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is groter dan INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is kleiner dan of gelijk aan INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is kleiner dan INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is niet gelijk aan INTEGER2\n" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" +"\n" +"Let op dat parentheses moet worden geescaped (b.v., door backslashes)\n" +"bij shells. INTEGER mag ook -l STRING zijn, wat resulteert in de\n" +"lengte van STRING.\n" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "ontbrekend `]'\n" + +#: src/test.c:1125 +#, fuzzy +msgid "too many arguments\n" +msgstr "teveel argumenten" + +#: src/touch.c:39 +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "" + +#: src/touch.c:164 src/touch.c:179 +#, fuzzy, c-format +msgid "creating %s" +msgstr "bestand `%s' wordt aangemaakt\n" + +#: src/touch.c:222 +#, fuzzy, c-format +msgid "cannot touch %s" +msgstr "kan de rechten van %s niet veranderen" + +#: src/touch.c:228 +#, fuzzy, c-format +msgid "setting times of %s" +msgstr "bezig met kopiëren van de tijden van %s" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" + +#: src/touch.c:311 src/touch.c:331 +#, fuzzy, c-format +msgid "invalid date format %s" +msgstr "ongeldig argument %s voor `%s'" + +#: src/touch.c:355 +#, fuzzy +msgid "cannot specify times from more than one source" +msgstr "kan niet op meer dan één manier splitsen" + +#: src/touch.c:378 +#, fuzzy, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "let op: ongeldige breedte %lu; zal %d gebruiken" + +#: src/touch.c:399 +#, fuzzy +msgid "file arguments missing" +msgstr "te weinig argumenten" + +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "Aanroep: %s [OPTIE]... SET1 [SET2]\n" + +#: src/tr.c:331 +#, fuzzy +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" +"Vertaal, squeeze, en/of verwijder karakters vanuit standaard-invoer,\n" +"uitvoer naar standaard-uitvoer.\n" +"\n" +" -c, --complement eerste complementaire SET1\n" +" -d, --delete verwijder karakters in SET1, niet vertalen\n" +" -s, --squeeze-repeats vervang herhaling van karakters met een\n" +" -t, --truncate-set1 verkort SET1 tot de lengte van SET2\n" +" --help toon hulptekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" + +#: src/tr.c:379 +#, fuzzy +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" +"\n" +"Vertaling treedt op als -d niet gegeven is en SET1 en SET2 beide voorkomen.\n" +"-t mag alleen gebruikt worden bij vertaling. SET2 zal, indien nodig, " +"verlengd\n" +" worden tot de lengte van SET1 door herhaling van het laatste karakater.\n" +"Excess karakters van SET2 worden genegeerd. Alleen [:lower:] en [:upper:]\n" +"worden zeker geexpandeerd in oplopende volgorde; gebruikt in SET2 bij\n" +"vertaling, alleen gebruikt worden in paren om case conversie te " +"specificeren.\n" +"-s gebruikt SET1 als niet vertaald noch verwijderd wordt; anders gebruikt\n" +"squeezing SET2 en treedt op na vertaling of verwijdering.\n" + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" + +#: src/tr.c:391 +#, fuzzy +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" +"\n" +"Vertaling treedt op als -d niet gegeven is en SET1 en SET2 beide voorkomen.\n" +"-t mag alleen gebruikt worden bij vertaling. SET2 zal, indien nodig, " +"verlengd\n" +" worden tot de lengte van SET1 door herhaling van het laatste karakater.\n" +"Excess karakters van SET2 worden genegeerd. Alleen [:lower:] en [:upper:]\n" +"worden zeker geexpandeerd in oplopende volgorde; gebruikt in SET2 bij\n" +"vertaling, alleen gebruikt worden in paren om case conversie te " +"specificeren.\n" +"-s gebruikt SET1 als niet vertaald noch verwijderd wordt; anders gebruikt\n" +"squeezing SET2 en treedt op na vertaling of verwijdering.\n" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" +"let op: het ongeldige octale teken \\%c%c%c wordt geïnterpreteerd als\n" +"de de twee bytes \\0%c%c, `%c'" + +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "ongeldige backslash escape aan einde van string" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "ongeldige backslash escape `\\%c'" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "de eindpunten van het bereik `%s-%s' zijn in tegengestelde volgorde" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "ongeldig herhalingsaantal `%s' in [c*n] konstruktie" + +#: src/tr.c:999 +#, fuzzy +msgid "missing character class name `[::]'" +msgstr "ongeldige tekenklasse `%s'" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "" + +#: src/tr.c:1025 +#, c-format +msgid "invalid character class `%s'" +msgstr "ongeldige tekenklasse `%s'" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "%s: equivalente klasse operator moet een enkel teken zijn" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "de [c*] herhalingsconstructie mag niet voorkomen in tekst1" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "enkel een [c*] herhalings konstruktie mag voorkomen in tekst2" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "[=c=] expressies mogen niet voorkomen in tekst2 tijdens vertalen" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "indien set1 niet ingekort wordt, mag tekst2 niet leeg zijn" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" +"bij vertalen met complementaire tekenklassen,\n" +"moet tekst2 alle tekens in het domein naar één afbeelden" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" +"indien vertaald wordt, zijn alleen `upper' en `lower' toegestaan in\n" +"tekst2" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "de [c*] mag alleen in tekst2 voorkomen tijdens vertaling" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "twee tekst-en nodig voor vertalen" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "" +"twee tekst-en moeten gegeven zijn indien herhalingen naast verwijderd ook " +"ingekort worden" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" +"een tekst mag gegeven worden bij verwijderen zonder inkorting van herhalingen" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "minstens één tekst nodig voor het inkorten van herhalingen" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "verkeerd uitgelijnde constructie met [:upper:] en/of [:lower:]" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" +"ongeldige identiteitsafbeelding; wanneer er vertaald wordt, moeten\n" +"[:lower:] of [:upper:] constructies in tekst1 op de zelfde plek staan\n" +"als een overeenkomstige constructie (respectievelijk [:upper:] of\n" +"[:lower:]) in tekst2" + +#: src/true.c:34 +#, fuzzy, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Aanroep: %s [NAAM]\n" +" of: %s OPTIE\n" +"Toon de hostnaam van het huidige systeem\n" +"\n" +" --help toon hulp-tekst en bekindig programma\n" +" --version toon versie-informatie en bekindig programma\n" + +#: src/tsort.c:97 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Gebruik: %s [OPTIE] [BESTAND] Geef een totaal gesorteerde lijst,\n" +"overeenkomstig de gedeeltelijke volgorde in BESTAND. Indien geen\n" +"BESTAND gegeven is, of BESTAND is -, wordt de standaard invoer\n" +"gelezen.\n" +"\n" +" --help toon hulptekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "%s: invoer bevat een terugkoppeling:" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "slechts één argument mag gegeven worden" + +#: src/tty.c:63 +#, fuzzy +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" +"Toon de bestandsnaam van de terminal verbonden met standaard invoer.\n" +"\n" +" -s, --silent, --quiet toon niets, retourneer alleen de exit status\n" +" --help toon hulp-tekst en bekindig programma\n" +" --version toon versie-informatie en bekindig programma\n" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "geen tty" + +#: src/uname.c:111 +#, fuzzy +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" +"Toon bepaalde systeem informatie. Met geen OPTIE, zelfde als -s.\n" +"\n" +" -a, --all toon alle informatie\n" +" -m, --machine toon het machine (hardware) type\n" +" -n, --nodename toon de machine's netwerk node hostname\n" +" -r, --release toon de release van het besturingssysteem\n" +" -s, --sysname toon de naam van het besturingssysteem\n" +" -p, --processor toon het processor type\n" +" -v toon de versie van het besturingssysteem\n" +" --help toon de hulptekst en bekindig programma\n" +" --version toon de versie-informatie en bekindig programma\n" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" + +#: src/uname.c:226 +#, fuzzy +msgid "cannot get system name" +msgstr "kan map `%s' niet aanmaken" + +#: src/unexpand.c:379 +#, fuzzy +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Vervang spaties in elk BESTAND door tabs, uitvoer naar standaard-uitvoer.\n" +"Bij geen BESTAND of BESTAND is -, lees standaard-invoer.\n" +"\n" +" -a, --all vervang alle, in plaats van alleen de initiele, " +"witruimte\n" +" -t, --tabs=NUMMER maak tabs NUMMER character breed in plaats van 8\n" +" -t, --tabs=LIJST gebruik komma gesepereerde lijst van tab posities\n" +" --help toon hulptekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" +"\n" +"In plaats van -t NUMMER of -t LIJST, kan -NUMMER of -LIJST gebruikt worden.\n" + +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" + +#: src/unexpand.c:464 +#, fuzzy +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "let op: ongeldige breedte %lu; zal %d gebruiken" + +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "Aanroep: %s [OPTIE]... [INVOER [UITVOER]]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr "" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" + +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "fout bij lezen %s" + +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "fout bij schrijven %s" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "" + +#: src/uniq.c:473 src/uniq.c:498 +#, fuzzy +msgid "invalid number of fields to skip" +msgstr "ongeldig aantal velden om over te slaan: `%s'" + +#: src/uniq.c:507 +#, fuzzy +msgid "invalid number of bytes to skip" +msgstr "ongeldig aantal bytes om over te slaan: `%s'" + +#: src/uniq.c:516 +#, fuzzy +msgid "invalid number of bytes to compare" +msgstr "ongeldig aantal bytes te vergelijken: `%s'" + +#: src/uniq.c:530 +#, fuzzy, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "let op: ongeldige breedte %lu; zal %d gebruiken" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "" +"het afdrukken van alle dubbele regels en het aantal keren dat een regel " +"voorkomt is onzin" + +#: src/unlink.c:51 +#, fuzzy, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "Aanroep: %s [OPTIE]... [INVOER [UITVOER]]\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" + +#: src/unlink.c:99 +#, fuzzy, c-format +msgid "cannot unlink %s" +msgstr "kan de rechten van %s niet veranderen" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "kan geen boot tijd vinden" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr " %2d:%02d%s levend " + +#: src/uptime.c:140 +msgid "am" +msgstr "am" + +#: src/uptime.c:140 +msgid "pm" +msgstr "pm" + +#: src/uptime.c:142 +#, fuzzy, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "dag" +msgstr[1] "dag" + +#: src/uptime.c:144 +#, fuzzy, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "ongeldige gebruiker" +msgstr[1] "ongeldige gebruiker" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr ", belastingsgemiddelde: %.2f" + +#: src/uptime.c:191 src/users.c:118 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "Aanroep: %s [OPTIE]... [BESTAND]...\n" + +#: src/uptime.c:192 +#, fuzzy, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Uitvoer who wordt op dit moment bijgehouden volgens BESTAND. Als\n" +"BESTAND niet gegeven is, gebruik %s. %s als BESTAND common is.\n" +"\n" +" --help toon hulp-tekst en bekindig programma\n" +" --version toon versie-informatie en bekindig programma\n" + +#: src/users.c:35 +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "" + +#: src/users.c:119 +#, fuzzy, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Uitvoer who wordt op dit moment bijgehouden volgens BESTAND. Als\n" +"BESTAND niet gegeven is, gebruik %s. %s als BESTAND common is.\n" +"\n" +" --help toon hulp-tekst en bekindig programma\n" +" --version toon versie-informatie en bekindig programma\n" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "" + +#: src/wc.c:129 +#, fuzzy +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" +"Print aantal regels, woorden en bytes voor elk BESTAND, en een\n" +"totaalregel als meer dan een BESTAND is gegeven. Indien geen BESTAND\n" +"is gegeven, of BESTAND is -, wordt de standaard invoer gegeven.\n" +" -c, --bytes, --chars geef het aantal bytes\n" +" -l, --lines geef het aantal nieuwe regels\n" +" -L, --max-line-length geef de lengte van de langste regel\n" +" -w, --words geef het aantal woorden\n" +" --help toon deze hulptekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" + +#: src/wc.c:137 +#, fuzzy +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" +"Toon CRC-controlesom en het aantal bytes voor ieder BESTAND.\n" +"\n" +" --help toon deze hulptekst en beëindig programma\n" +" --version toon versie-informatie en beëindig programma\n" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "" + +#: src/who.c:223 +msgid " old " +msgstr " oud " + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "" + +#: src/who.c:446 +msgid "clock change" +msgstr "" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" +"\n" +"# gebruikers=%u\n" + +#: src/who.c:498 +msgid "NAME" +msgstr "" + +#: src/who.c:498 +msgid "LINE" +msgstr "REGEL" + +#: src/who.c:498 +msgid "TIME" +msgstr "" + +#: src/who.c:498 +#, fuzzy +msgid "IDLE" +msgstr "MISLUKT" + +#: src/who.c:498 +msgid "PID" +msgstr "" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "" + +#: src/who.c:499 +msgid "EXIT" +msgstr "" + +#: src/who.c:574 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "Aanroep: %s [OPTIE]... BESTAND1 BESTAND2\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" + +#: src/whoami.c:53 +#, fuzzy +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" +"Toon de gebruikersnaam gedssocieerd met de huidige effectieve gebruikers " +"id.\n" +"Zelfde als id -un.\n" +"\n" +" --help toon hulp-tekst en bekindig programma\n" +" --version toon versie-informate en bekindig programma\n" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "%s: kan geen gebruikersnaam vinden voor UID %u\n" + +#: src/yes.c:49 +#, fuzzy, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "Aanroep: %s [OPTIE]... [INVOER [UITVOER]]\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" + +#, fuzzy +#~ msgid "\\%c: invalid escape" +#~ msgstr "%s: ongeldig patroon" + +#, fuzzy +#~ msgid "program error" +#~ msgstr "fout bij lezen" + +#, fuzzy +#~ msgid "cannot convert time" +#~ msgstr "kan datum niet instellen" + +#, fuzzy +#~ msgid "cannot format time" +#~ msgstr "kan de rechten van %s niet veranderen" + +#, fuzzy +#~ msgid "cannot change to `..' from directory %s" +#~ msgstr "kan niet naar map gaan, %s" + +#, fuzzy +#~ msgid "missing file arguments" +#~ msgstr "te weinig argumenten" + +#, fuzzy +#~ msgid "environment variable, QUOTING_STYLE" +#~ msgstr "negeer ongeldige breedte in omgevingsvariabele COLUMNS: %s" + +#, fuzzy +#~ msgid "%s: is so large that it is not representable" +#~ msgstr "%s: %s is zo groot dat het niet weergegeven kan worden" + +#, fuzzy +#~ msgid "cannot execute %s" +#~ msgstr "kan de rechten van %s niet veranderen" + +#, fuzzy +#~ msgid "cannot run %s" +#~ msgstr "kan de rechten van %s niet veranderen" + +#, fuzzy +#~ msgid "Try %s --help' for more information.\n" +#~ msgstr "Probeer `%s --help' voor meer informatie.\n" + +#, fuzzy +#~ msgid "preserving permissions for %s" +#~ msgstr "kan de eigenaar van %s niet veranderen" + +#, fuzzy +#~ msgid "cannot lstat `.'" +#~ msgstr "kan datum niet instellen" + +#, fuzzy +#~ msgid "closing directory %s" +#~ msgstr "kan niet naar map gaan, %s" + +#, fuzzy +#~ msgid "%s: remove directory %s? " +#~ msgstr "kan map `%s' niet aanmaken" + +#, fuzzy +#~ msgid "%s: directory %s is write protected; descend into it anyway? " +#~ msgstr "%s: map `%s' is beveiligd tegen schrijven; toch afdalen? " + +#~ msgid "removing all entries of directory %s\n" +#~ msgstr "weghalen alle ingangen van map %s\n" + +#~ msgid "continue? " +#~ msgstr "doorgaan? " + +#, fuzzy +#~ msgid "cannot change back to directory %s via `..'" +#~ msgstr "kan niet naar map gaan, %s" + +#, fuzzy +#~ msgid "%s: remove directory %s%s? " +#~ msgstr "kan map `%s' niet aanmaken" + +#~ msgid " (might be nonempty)" +#~ msgstr " (is mogelijk niet leeg)" + +#, fuzzy +#~ msgid "removing the directory itself: %s\n" +#~ msgstr "let op: kan niet naar directory %s veranderen" + +#, fuzzy +#~ msgid "cannot remove current directory %s" +#~ msgstr "kan map `%s' niet aanmaken" + +#, fuzzy +#~ msgid "" +#~ "ERROR: the source file %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after opening it), the numbers\n" +#~ "are %lu/%lu. That means that while this program was running,\n" +#~ "the file was replaced with another one. Skipping this file." +#~ msgstr "" +#~ "FOUT: De map `%s' had eerst apparaat/inode nummers %lu/%lu, maar nu\n" +#~ "(na een chdir ernaar toe), de nummers voor `.' zijn %lu/%lu. Dat\n" +#~ "betekent dat terwijl rm bezig was, de map vervangen is met ofwel een\n" +#~ "andere map, of een koppeling naar een andere map." + +#, fuzzy +#~ msgid "" +#~ "ERROR: the directory %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after a chdir into it), the numbers for `.'\n" +#~ "are %lu/%lu. That means that while rm was running, the directory\n" +#~ "was replaced with either another directory or a link to another directory." +#~ msgstr "" +#~ "FOUT: De map `%s' had eerst apparaat/inode nummers %lu/%lu, maar nu\n" +#~ "(na een chdir ernaar toe), de nummers voor `.' zijn %lu/%lu. Dat\n" +#~ "betekent dat terwijl rm bezig was, de map vervangen is met ofwel een\n" +#~ "andere map, of een koppeling naar een andere map." + +#, fuzzy +#~ msgid "" +#~ "ERROR: the directory %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after changing into at least one subdirectory\n" +#~ "and changing back via `..'), the numbers for `.' are %lu/%lu.\n" +#~ "That means that while rm was running, a partially-removed subdirectory\n" +#~ "was moved to a different position in the file system hierarchy." +#~ msgstr "" +#~ "FOUT: De map `%s' had eerst apparaat/inode nummers %lu/%lu, maar nu\n" +#~ "(na een chdir ernaar toe), de nummers voor `.' zijn %lu/%lu. Dat\n" +#~ "betekent dat terwijl rm bezig was, de map vervangen is met ofwel een\n" +#~ "andere map, of een koppeling naar een andere map." + +#, fuzzy +#~ msgid " or: %s [-acm] MMDDhhmm[YY] FILE... (obsolete)\n" +#~ msgstr " of : %s [-acm] MMDDhhmm[YY] BESTAND... (verouderend)\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Toon CRC-controlesom en het aantal bytes voor ieder BESTAND.\n" +#~ "\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Toon CRC-controlesom en het aantal bytes voor ieder BESTAND.\n" +#~ "\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Toon CRC-controlesom en het aantal bytes voor ieder BESTAND.\n" +#~ "\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Toon CRC-controlesom en het aantal bytes voor ieder BESTAND.\n" +#~ "\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Toon CRC-controlesom en het aantal bytes voor ieder BESTAND.\n" +#~ "\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Toon CRC-controlesom en het aantal bytes voor ieder BESTAND.\n" +#~ "\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Toon CRC-controlesom en het aantal bytes voor ieder BESTAND.\n" +#~ "\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Toon CRC-controlesom en het aantal bytes voor ieder BESTAND.\n" +#~ "\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Toon CRC-controlesom en het aantal bytes voor ieder BESTAND.\n" +#~ "\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Toon CRC-controlesom en het aantal bytes voor ieder BESTAND.\n" +#~ "\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Toon CRC-controlesom en het aantal bytes voor ieder BESTAND.\n" +#~ "\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#~ msgid "" +#~ "Change the group membership of each FILE to GROUP.\n" +#~ "\n" +#~ " -c, --changes like verbose but report only when a change is " +#~ "made\n" +#~ " --dereference affect the referent of each symbolic link, " +#~ "rather\n" +#~ " than the symbolic link itself\n" +#~ " -h, --no-dereference affect symbolic links instead of any referenced " +#~ "file\n" +#~ " (available only on systems that can change the\n" +#~ " ownership of a symlink)\n" +#~ " -f, --silent, --quiet suppress most error messages\n" +#~ " --reference=RFILE use RFILE's group rather than the specified\n" +#~ " GROUP value\n" +#~ " -R, --recursive operate on files and directories recursively\n" +#~ " -v, --verbose output a diagnostic for every file processed\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Verander de groep van elk BESTAND in GROEP.\n" +#~ "\n" +#~ " -c, --changes zoals --verbose maar alleen als er iets " +#~ "verandert\n" +#~ " --dereference heeft effect op det doel van de symbolische\n" +#~ " koppeling, in plaats van de koppeling zelf.\n" +#~ " -h, --no-dereference heeft effect op de koppeling ipv. het doel\n" +#~ " (alleen beschikbaar op systemen met de lchown\n" +#~ " systeemfunctie)\n" +#~ " -f, --silent, --quiet onderdruk vrijwel alle foutmeldingen\n" +#~ " --reference=RBESTAND gebruik de groep van RBESTAND in plaats van " +#~ "een\n" +#~ " GROEP waarde\n" +#~ " -R, --recursive verander bestand en mappen recursief\n" +#~ " -v, --verbose toon informatie voor elk bestand\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#, fuzzy +#~ msgid "" +#~ "Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +#~ "\n" +#~ " -c, --changes like verbose but report only when a change is " +#~ "made\n" +#~ " --dereference affect the referent of each symbolic link, " +#~ "rather\n" +#~ " than the symbolic link itself\n" +#~ " -h, --no-dereference affect symbolic links instead of any referenced " +#~ "file\n" +#~ " (available only on systems that can change the\n" +#~ " ownership of a symlink)\n" +#~ " --from=CURRENT_OWNER:CURRENT_GROUP\n" +#~ " change the owner and/or group of each file only " +#~ "if\n" +#~ " its current owner and/or group match those " +#~ "specified\n" +#~ " here. Either may be omitted, in which case a " +#~ "match\n" +#~ " is not required for the omitted attribute.\n" +#~ " -f, --silent, --quiet suppress most error messages\n" +#~ " --reference=RFILE use RFILE's owner and group rather than\n" +#~ " the specified OWNER:GROUP values\n" +#~ " -R, --recursive operate on files and directories recursively\n" +#~ " -v, --verbose output a diagnostic for every file processed\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Verander de eigenaar en/of groep van elk BESTAND in EIGENAAR en/of " +#~ "GROEP.\n" +#~ "\n" +#~ " -c, --changes toon veranderingen\n" +#~ " --dereference heeft effect op het doel van de symbolische\n" +#~ " koppeling, in plaats van de koppeling zelf\n" +#~ " -h, --no-dereference heeft effect op de symbolische koppeling zelf,\n" +#~ " in plaats van op het doel. (alleen " +#~ "beschikbaar\n" +#~ " op systemen die de eigenaar van een koppeling\n" +#~ " kunnen veranderen)\n" +#~ " --from=HUIDIGE_EIGENAAR:HUIDIGE_GROEP\n" +#~ " verander de eigenaar/groep van ieder bestand\n" +#~ " alleen als de huidige groep en eigenaar\n" +#~ " overeenkomen met deze. Een van beide mag\n" +#~ " worden weggelaten, in dat geval hoeft de\n" +#~ " eigenschap niet overeen te komen.\n" +#~ " -f, --silent, --quiet onderdruk vrijwel alle foutmeldingen\n" +#~ " --reference=RBESTAND gebruik de eigenaar en groep van RBESTAND in\n" +#~ " plaats van expliciete EIGENAAR.GROEP waarden\n" +#~ " -R, --recursive verander bestanden en mappen recursief\n" +#~ " -v, --verbose toon wat er gedaan wordt\n" +#~ " --help toon hulp-tekst en beëindig programm\n" +#~ " --version toon versie-informatie en beëindig programma\n" +#~ "\n" +#~ "Als EIGENAAR ontbreekt wordt deze niet gewijzigd. De groep blijft\n" +#~ "onveranderd, maar wordt veranderd in de login groep als een `:'\n" +#~ "gegeven is. EIGENAAR en GROEP mogen numeriek en symbolisch zijn.\n" + +#, fuzzy +#~ msgid "" +#~ " -l, --link link files instead of copying\n" +#~ " -L, --dereference always follow symbolic links\n" +#~ " -p same as --preserve=mode,ownership," +#~ "timestamps\n" +#~ " --preserve[=ATTR_LIST] preserve the specified attributes " +#~ "(default:\n" +#~ " mode,ownership,timestamps), if possible\n" +#~ " additional attributes: links, all\n" +#~ " --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +#~ " --parents append source path to DIRECTORY\n" +#~ " -P same as `--no-dereference'\n" +#~ " -r copy recursively, non-directories as " +#~ "files\n" +#~ " WARNING: use -R instead when you might " +#~ "copy\n" +#~ " special files like FIFOs or /dev/zero\n" +#~ " --remove-destination remove each existing destination file " +#~ "before\n" +#~ " attempting to open it (contrast with --" +#~ "force)\n" +#~ msgstr "" +#~ "Kopieer BRON naar BESTEMMING, of (meerdere) BRON(nen) naar MAP.\n" +#~ "\n" +#~ " -a, --archive zelfde als -dpR\n" +#~ " --backup[=METHODE] maak reservekopie van ieder bestaand " +#~ "bestand\n" +#~ " -b zoals --backup, maar accepeert geen " +#~ "argument\n" +#~ " -d, --no-dereference behoud verwijzingen\n" +#~ " -f, --force verwijder bestaande bestemmingen, vraag " +#~ "nooit\n" +#~ " -i, --interactive vraag bevestiging voordat overschreven " +#~ "wordt\n" +#~ " -l, --link maak koppelingen naar bestanden in plaats " +#~ "van\n" +#~ " kopieën\n" +#~ " -p, --preserve behoud bestandsattributen indien mogelijk\n" +#~ " -P, --parents voeg bronpad toe aan MAP\n" +#~ " -r kopieer recursief, niet-mappen als " +#~ "bestanden\n" +#~ " LET OP: gebruik -R als u speciale\n" +#~ " bestanden zoals FIFOs of /dev/zero\n" +#~ " kopieert\n" +#~ " --sparse=WHEN bestuur aanmaak van schaarse bestanden\n" +#~ " -R, --recursive kopieer mappen recursief\n" +#~ " --strig-trailing-slashes verwijder nakomende schuine strepen van\n" +#~ " ieder BRON argument\n" +#~ " -s, --symbolic-link maak symbolische koppelingen in plaats " +#~ "van\n" +#~ " kopieën\n" +#~ " -S, --suffix=SUFFIX vervang het gebruikelijke achtervoegsel " +#~ "voor\n" +#~ " reservekopieen\n" +#~ " --target-directory=MAP verplaats alle BRON argumenten naar MAP\n" +#~ " -u, --update kopieer alleen als BRON nieuwer is dan de\n" +#~ " bestemming of als de bestemming niet " +#~ "bestaat\n" +#~ " -v, --verbose toon wat gedaan wordt\n" +#~ " -x, --one-file-system blijf op dit bestandssysteem\n" +#~ " --help toon hulp-tekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig " +#~ "programma\n" +#~ "\n" +#~ "Standaard worden schaarse BRON bestanden gevonden door een brute " +#~ "heuristiek\n" +#~ "en de corresponderende BESTEMMING wordt dan ook schaars. Dat is het " +#~ "gedrag\n" +#~ "bij --sparse=auto. Geef --sparse=always om een BESTEMMING te creëren " +#~ "als\n" +#~ "het BRON bestand genoeg achtereenvolgende nultekens bevat. Gebruik\n" +#~ "--sparse=never om creatie van schaarse bestanden tegen te gaan.\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "Copy a file, converting and formatting according to the options.\n" +#~ "\n" +#~ " bs=BYTES force ibs=BYTES and obs=BYTES\n" +#~ " cbs=BYTES convert BYTES bytes at a time\n" +#~ " conv=KEYWORDS convert the file as per the comma separated keyword " +#~ "list\n" +#~ " count=BLOCKS copy only BLOCKS input blocks\n" +#~ " ibs=BYTES read BYTES bytes at a time\n" +#~ " if=FILE read from FILE instead of stdin\n" +#~ " obs=BYTES write BYTES bytes at a time\n" +#~ " of=FILE write to FILE instead of stdout\n" +#~ " seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +#~ " skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "BLOCKS and BYTES may be followed by the following multiplicative " +#~ "suffixes:\n" +#~ "xM M, c 1, w 2, b 512, kD 1000, k 1024, MD 1,000,000, M 1,048,576,\n" +#~ "GD 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +#~ "Each KEYWORD may be:\n" +#~ "\n" +#~ " ascii from EBCDIC to ASCII\n" +#~ " ebcdic from ASCII to EBCDIC\n" +#~ " ibm from ASCII to alternated EBCDIC\n" +#~ " block pad newline-terminated records with spaces to cbs-size\n" +#~ " unblock replace trailing spaces in cbs-size records with newline\n" +#~ " lcase change upper case to lower case\n" +#~ " notrunc do not truncate the output file\n" +#~ " ucase change lower case to upper case\n" +#~ " swab swap every pair of input bytes\n" +#~ " noerror continue after read errors\n" +#~ " sync pad every input block with NULs to ibs-size; when used\n" +#~ " with block or unblock, pad with spaces rather than NULs\n" +#~ msgstr "" +#~ "Kopieer een bestand terwijl het geconverteerd en opgemaakt wordt aan\n" +#~ "de hand van de gegeven opties.\n" +#~ "\n" +#~ " bs=BYTES forceer ibs=BYTES en obs=BYTES\n" +#~ " cbs=BYTES converteer BYTES bytes per keer\n" +#~ " conv=WOORDEN converteer het bestand volgens de WOORDEN\n" +#~ " count=BLOKKEN kopieer slechts BLOKKEN invoer\n" +#~ " ibs=BYTES lees BYTES bytes per keer\n" +#~ " if=BESTAND lees uit BESTAND in plaats van de standaard invoer\n" +#~ " obs=BYTES schrijf BYTES bytes per keer\n" +#~ " of=BESTAND schrijf naar BESTAND in plaats van de standaard " +#~ "uitvoer\n" +#~ " seek=BLOKKEN sla BLOKKEN blokken van grootte obs over aan het begin\n" +#~ " van de uitvoer\n" +#~ " skip=BLOKKEN sla BLOKKEN blokken van grootte ibs over aan het begin\n" +#~ " van de invoer\n" +#~ " --help toon deze hulp-tekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" +#~ "\n" +#~ "Aan BYTES mag een letter toegevoegd worden:\n" +#~ "xM M, c 1, w 2, b 512, kD 1000, k 1024, MD 1,000,000, M 1,048,576,\n" +#~ "GD 1,000,000,000, G 1,073,741,824, etc voor T, P, E, Z, Y.\n" +#~ "Een WOORD mag zijn:\n" +#~ "\n" +#~ " ascii van EBCDIC naar ASCII\n" +#~ " ebcdic van ASCII naar EBCDIC\n" +#~ " ibm van ASCII naar alternerend EBCDIC\n" +#~ " block vul records met een regeleinde op met spaties tot ze cbs " +#~ "groot zijn\n" +#~ " unblock verwijder achterafkomende spaties in records met grootte\n" +#~ " cbs met een regeleinde\n" +#~ " lcase verander hoofdletters in kleine letters\n" +#~ " ucase verander kleine letters in hoofdletters\n" +#~ " swab verwissel iedere twee bytes van de invoer\n" +#~ " noerror ga door bij een leesfout\n" +#~ " sync vul ieder invoerblok met nultekens op tot de grootte van ibs\n" + +#~ msgid "" +#~ "Show information about the filesystem on which each FILE resides,\n" +#~ "or all filesystems by default.\n" +#~ "\n" +#~ " -a, --all include filesystems having 0 blocks\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " -H, --si likewise, but use powers of 1000 not 1024\n" +#~ " -i, --inodes list inode information instead of block usage\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l, --local limit listing to local filesystems\n" +#~ " -m, --megabytes like --block-size=1048576\n" +#~ " --no-sync do not invoke sync before getting usage info " +#~ "(default)\n" +#~ " -P, --portability use the POSIX output format\n" +#~ " --sync invoke sync before getting usage info\n" +#~ " -t, --type=TYPE limit listing to filesystems of type TYPE\n" +#~ " -T, --print-type print filesystem type\n" +#~ " -x, --exclude-type=TYPE limit listing to filesystems not of type " +#~ "TYPE\n" +#~ " -v (ignored)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Toon informatie over het bestandssyteem waar ieder BESTAND staat. " +#~ "Standaard\n" +#~ "wordt informatie over alle bestandssystemen getoond.\n" +#~ "\n" +#~ " -a, --all ook bestandssystemen met 0 blokken\n" +#~ " --block-size=GROOTTE gebruik blokken van GROOTTE bytes\n" +#~ " -h, --human-readable toon groottes op leesbare wijze (vb. 1K 234M " +#~ "2G)\n" +#~ " -H, --si zelfde, maar gebruik machten van 1000 ipv. " +#~ "1024\n" +#~ " -i, --inodes toon `inode' informatie in plaats van " +#~ "blokgebruik\n" +#~ " -k, --kilobytes zelfde als --block-size=1024\n" +#~ " -l, --local beperk gegevens tot lokale bestandssystemen\n" +#~ " -m, --megabytes zelfde als --block-size=1048576\n" +#~ " --no-sync synchroniseer niet eerst (standaard)\n" +#~ " -P, --portability gebruik de POSIX uitvoer opmaak\n" +#~ " --sync synchroniseer eerst voor het opvragen van de\n" +#~ " gegevenns\n" +#~ " -t, --type=TYPE beperk tot bestandssystemen van type TYPE\n" +#~ " -T, --print-type druk ook het type bestandssysteem af\n" +#~ " -x, --exclude-type=TYPE beperk tot bestandssystemen niet van type " +#~ "TYPE\n" +#~ " -v (wordt genegeerd)\n" +#~ " --help toon hulp-tekst en beëindig programma\n" +#~ " --version toon hulp-tekst en beëindig programma\n" + +#~ msgid "" +#~ "Summarize disk usage of each FILE, recursively for directories.\n" +#~ "\n" +#~ " -a, --all write counts for all files, not just directories\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -b, --bytes print size in bytes\n" +#~ " -c, --total produce a grand total\n" +#~ " -D, --dereference-args dereference PATHs when symbolic link\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " -H, --si likewise, but use powers of 1000 not 1024\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l, --count-links count sizes many times if hard linked\n" +#~ " -L, --dereference dereference all symbolic links\n" +#~ " -m, --megabytes like --block-size=1048576\n" +#~ " -S, --separate-dirs do not include size of subdirectories\n" +#~ " -s, --summarize display only a total for each argument\n" +#~ " -x, --one-file-system skip directories on different filesystems\n" +#~ " -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +#~ "FILE.\n" +#~ " --exclude=PAT Exclude files that match PAT.\n" +#~ " --max-depth=N print the total for a directory (or file, with --" +#~ "all)\n" +#~ " only if it is N or fewer levels below the " +#~ "command\n" +#~ " line argument; --max-depth=0 is the same as\n" +#~ " --summarize\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vat schijfgebruik van elk BESTAND samen, recursief voor mappen.\n" +#~ "\n" +#~ " -a, --all toon aantallen voor alle bestanden, niet alleen\n" +#~ " voor mappen\n" +#~ " --block-size=GROOTTE gebruik blokken van GROOTTE bytes\n" +#~ " -b, --bytes toon grootte in bytes\n" +#~ " -c, --total geef ook het totaal\n" +#~ " -D, --dereference-args gebruik de referent indien PAD een symbolische\n" +#~ " koppeling is\n" +#~ " -h, --human-readable toon groottes op leesbare wijze (vb. 1K 234M 2G)\n" +#~ " -H, --si zelfde, maar gebruik machten van 1000 ipv. 1024\n" +#~ " -k, --kilobytes zelfde als --block-size=1024\n" +#~ " -l, --count-links tel meerdere keren indien harde koppeling\n" +#~ " -L, --dereference gebruik de referenten van symbolische " +#~ "koppelingen\n" +#~ " -m, --megabytes zelfde als --block-size=1048576\n" +#~ " -S, --separate-dirs toon niet de grootte van subdirectories\n" +#~ " -s, --summarize toon alleen een totaal voor elk argument\n" +#~ " -x, --one-file-system sla mappen op andere bestandssystemen over\n" +#~ " -X BEST, --exclude-from=BEST Sluit bestanden uit BESTAND uit\n" +#~ " --exclude=PATROON Sluit bestanden uit die overeenkomen met PATROON\n" +#~ " --max-depth=N geef totalen voor een map (of bestand, met --" +#~ "all)\n" +#~ " alleen als het N of minder niveaus onder het\n" +#~ " argument zit; --max-depth=0 is het zelfde als\n" +#~ " --summarize\n" +#~ " --help toon hulp-tekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#~ msgid "" +#~ "In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +#~ "the existing DIRECTORY, while setting permission modes and owner/group.\n" +#~ "In the third format, create all components of the given DIRECTORY(ies).\n" +#~ "\n" +#~ " --backup[=CONTROL] make a backup of each existing destination file\n" +#~ " -b like --backup but does not accept an argument\n" +#~ " -c (ignored)\n" +#~ " -d, --directory treat all arguments as directory names; create all\n" +#~ " components of the specified directories\n" +#~ " -D create all leading components of DEST except the " +#~ "last,\n" +#~ " then copy SOURCE to DEST; useful in the 1st " +#~ "format\n" +#~ " -g, --group=GROUP set group ownership, instead of process' current " +#~ "group\n" +#~ " -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-" +#~ "xr-x\n" +#~ " -o, --owner=OWNER set ownership (super-user only)\n" +#~ " -p, --preserve-timestamps apply access/modification times of SOURCE " +#~ "files\n" +#~ " to corresponding destination files\n" +#~ " -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +#~ " -S, --suffix=SUFFIX override the usual backup suffix\n" +#~ " -v, --verbose print the name of each directory as it is created\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Bij de eerste twee methoden, kopieer BRON naar BESTEMMING of meerdere " +#~ "BRONNEN\n" +#~ "naar MAP, onderwijl de permissies mode en eigenaar/groep instellende.\n" +#~ "Bij de derde methode, maak alle componenten van de gegeven MAP(pen).\n" +#~ "\n" +#~ " --backup[=METHODE] maak reserve-kopie voor verwijdering\n" +#~ " -b zoals --backup maar accepteert geen argumenten\n" +#~ " -c (wordt genegeerd)\n" +#~ " -d, --directory beschouw alle argumenten als namen van mappen; " +#~ "creëer\n" +#~ " alle tussenliggende mappen\n" +#~ " -D maak alle voorgaande mappen van BESTEMMING aan " +#~ "behalve de\n" +#~ " laatste, kopieer vervolgens BRON naar BESTEMMING; " +#~ "dit\n" +#~ " is vooral nuttig bij methode 1\n" +#~ " -g, --group=GROEP stel groep in, in plaats van huidige proces groep\n" +#~ " -m, --mode=MODE stel permissie in (als `chmod'), in plaats van rwxr-" +#~ "xr-x\n" +#~ " -o, --owner=EIGENAAR stel eigenaar in (alleen voor systeembeheerder)\n" +#~ " -p, --preserve-timestamps kopieer ook de toegangs/verander tijden\n" +#~ " -s, --strip verwijder symbooltabellen, alleen bij methode 1 en " +#~ "2\n" +#~ " -S, --suffix=SUFFIX gebruik SUFFIX ipv. gebruikelijk achtervoegsel " +#~ "voor\n" +#~ " reservekopieën\n" +#~ " --verbose geef de naam van iedere map die aangemaakt wordt\n" +#~ " --help toon hulp-tekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" +#~ "\n" + +#~ msgid "" +#~ "Create a link to the specified TARGET with optional LINK_NAME.\n" +#~ "If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +#~ "created in the current directory. When using the second form with more\n" +#~ "than one TARGET, the last argument must be a directory; create links\n" +#~ "in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +#~ "links with --symbolic. When creating hard links, each TARGET must " +#~ "exist.\n" +#~ "\n" +#~ " --backup[=CONTROL] make a backup of each existing destination " +#~ "file\n" +#~ " -b like --backup but does not accept an " +#~ "argument\n" +#~ " -d, -F, --directory hard link directories (super-user only)\n" +#~ " -f, --force remove existing destination files\n" +#~ " -n, --no-dereference treat destination that is a symlink to a\n" +#~ " directory as if it were a normal file\n" +#~ " -i, --interactive prompt whether to remove destinations\n" +#~ " -s, --symbolic make symbolic links instead of hard links\n" +#~ " -S, --suffix=SUFFIX override the usual backup suffix\n" +#~ " --target-directory=DIRECTORY specify the DIRECTORY in which to " +#~ "create\n" +#~ " the links\n" +#~ " -v, --verbose print name of each file before linking\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Maak een koppeling naar opgegeven BESTEMMING, eventueel KOPPELING\n" +#~ "genoemd. Indied KOPPELING ontbreekt, wordt een koppeling gemaakt met\n" +#~ "de zelfde naam als BESTEMMING in de huidige map. Bij de tweede vorm\n" +#~ "met meerdere BESTEMMINGen, moet het laatste argument een map zijn;\n" +#~ "maak koppelingen in MAP naar iedere BESTEMMING. Standaard worde harde\n" +#~ "koppelingen gemaakt, symbolische met --symbolic. Als harde\n" +#~ "koppelingen worden gemaakt moet BESTEMMING bestaan.\n" +#~ "\n" +#~ " --backup[=METHODE] maak reserve-kopieën van bestemmingen die al " +#~ "bestonden\n" +#~ " -b zoals --backup, maar accepteert geen argumenten\n" +#~ " -d, -F, --directory harde koppeling van mappen (alleen voor " +#~ "systeembeheerder)\n" +#~ " -f, --force verwijder bestaande bestemming\n" +#~ " -n, --no-dereference behandel bestemming (een symbolische koppeling " +#~ "naar\n" +#~ " een map) als een gewoon bestand\n" +#~ " -i, --interactive vraag bevestiging voor het verwijderen van " +#~ "bestemmingen\n" +#~ " -s, --symbolic maak symbolische koppelingen in plaats van harde\n" +#~ " -S, --suffix=SUFFIX gebruik SUFFIX ipv. het gebruikelijke " +#~ "achtervoegsel\n" +#~ " voor reservekopieën\n" +#~ " --target-directory=MAP geef de MAP op waarin de koppelingen\n" +#~ " gemaakt worden\n" +#~ " -v, --verbose toon voor aanmaken van de koppeling de " +#~ "bestandsnaam\n" +#~ " --help toon hulp-tekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "List information about the FILEs (the current directory by default).\n" +#~ "Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +#~ "\n" +#~ " -a, --all do not hide entries starting with .\n" +#~ " -A, --almost-all do not list implied . and ..\n" +#~ " -b, --escape print octal escapes for nongraphic " +#~ "characters\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -B, --ignore-backups do not list implied entries ending with ~\n" +#~ " -c with -lt: sort by, and show, ctime (time of " +#~ "last\n" +#~ " modification of file status information)\n" +#~ " with -l: show ctime and sort by name\n" +#~ " otherwise: sort by ctime\n" +#~ " -C list entries by columns\n" +#~ " --color[=WHEN] control whether color is used to distinguish " +#~ "file\n" +#~ " types. WHEN may be `never', `always', or " +#~ "`auto'\n" +#~ " -d, --directory list directory entries instead of contents\n" +#~ " -D, --dired generate output designed for Emacs' dired " +#~ "mode\n" +#~ " -f do not sort, enable -aU, disable -lst\n" +#~ " -F, --classify append indicator (one of */=@|) to entries\n" +#~ " --format=WORD across -x, commas -m, horizontal -x, long -" +#~ "l,\n" +#~ " single-column -1, verbose -l, vertical -C\n" +#~ " --full-time like -l --time-style=full-iso\n" +#~ msgstr "" +#~ "Toon informatie over BESTAND(en) (de huidige map is standaard).\n" +#~ "Sorteer ingangen alfabetisch als de opties -cftuSUX of --sort ontbreken.\n" +#~ "\n" +#~ " -a, --all toon ingangen beginnende met .\n" +#~ " -A, --almost-all toon . en .. niet\n" +#~ " -b, --escape toon octale escapes voor niet-grafische " +#~ "karakters\n" +#~ " --block-size=GROOTTE gebruik blokken van GROOTTE bytes\n" +#~ " -B, --ignore-backups toon ingangen eindigend op ~ niet\n" +#~ " -c sorteer volgens bestands-aanpassings-tijd;\n" +#~ " met -l: toon deze aanpassings-tijd\n" +#~ " -C toon ingangen in kolommen\n" +#~ " --color=WANNEER bestuur het gebruik van kleur. WANNEER mag\n" +#~ " een van `never', `always' of `auto' zijn\n" +#~ " -d, --directory geef de mappen zelf ipv. hun inhoud\n" +#~ " -D, --dired genereer uitvoer die geschikt is voor de " +#~ "dired\n" +#~ " mode van Emacs\n" +#~ " -f sorteer niet, sta -aU toe, en -lst niet\n" +#~ " -F, --classify voeg een teken (een van */=@|) toe om het " +#~ "type\n" +#~ " weer te geven (bestandstype-indicator)\n" +#~ " --format=WOORD kolommen -x, met komma's -m, horizontaal -" +#~ "x,\n" +#~ " uitgebreid -l, één-koloms -1, verticaal -" +#~ "C\n" +#~ " --full-time geef uitgebreide tijd en datum\n" + +#, fuzzy +#~ msgid "" +#~ " -g like -l, but do not list owner\n" +#~ " -G, --no-group inhibit display of group information\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " --si likewise, but use powers of 1000 not 1024\n" +#~ " -H, --dereference-command-line follow symbolic links on the command " +#~ "line\n" +#~ " --indicator-style=WORD append indicator with style WORD to entry " +#~ "names:\n" +#~ " none (default), classify (-F), file-type (-" +#~ "p)\n" +#~ " -i, --inode print index number of each file\n" +#~ " -I, --ignore=PATTERN do not list implied entries matching shell " +#~ "PATTERN\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l use a long listing format\n" +#~ " -L, --dereference when showing file information for a " +#~ "symbolic\n" +#~ " link, show information for the file the " +#~ "link\n" +#~ " references rather than for the link " +#~ "itself\n" +#~ " -m fill width with a comma separated list of " +#~ "entries\n" +#~ msgstr "" +#~ " -g (wordt genegeerd)\n" +#~ " -G, --no-group voorkom weergave van groep info\n" +#~ " -h, --human-readable geef groottes in leesbaar formaat\n" +#~ " (bijv. 1K 234M 2G)\n" +#~ " -H, --si zelfde, maar gebruik machten van 1000 ipv. " +#~ "1024\n" +#~ " --indicator-style=WOORD voeg een bestandstype-indicator toe van " +#~ "WOORD:\n" +#~ " none (standaard), classify (-F), file-type " +#~ "(-p)\n" +#~ " -i, --inode geef index nummer van ieder bestand\n" +#~ " -I, --ignore=PATROON negeer ingangen die met overeenkomen met " +#~ "het\n" +#~ " gegeven PATROON\n" +#~ " -k, --kilobytes zelfde als --block-size=1024\n" +#~ " -l gebruik een uitgebreid formaat\n" +#~ " -L, --dereference gebruik de referenten van symbolische " +#~ "koppelingen\n" +#~ " -m vul schermbreedte met een lijst ingangen,\n" +#~ " gescheiden door komma's\n" +#~ " -n, --numeric-uid-gid geef UIDs en GIDs numeriek ipv. met namen " +#~ "weer\n" +#~ " -N, --literal geef de echte namen van ingangen (behandel " +#~ "bijv.\n" +#~ " stuurtekens niet speciaal)\n" +#~ " -o uitgebreide formaat zonder groep info\n" +#~ " -p, --file-type voeg een teken toe om het type weer te " +#~ "geven\n" +#~ " -q, --hide-control-chars geef een ? ipv. niet-grafische karakters\n" +#~ " --show-control-chars geef niet-grafische karakters weer " +#~ "(standaard)\n" +#~ " -Q, --quote-name vat ingangen in dubbele aanhalingstekens\n" +#~ " --quoting-style=WOORD gebruik aanhaal-stijl WOORD: literal, " +#~ "shell,\n" +#~ " shell-always, c, escape\n" +#~ " -r, --reverse sorteer in omgekeerde volgorde\n" +#~ " -R, --recursive geef mappen recursief weer\n" +#~ " -s, --size geef grootte van elk bestand, in blokken\n" + +#, fuzzy +#~ msgid "" +#~ " -S sort by file size\n" +#~ " --sort=WORD extension -X, none -U, size -S, time -t,\n" +#~ " version -v\n" +#~ " status -c, time -t, atime -u, access -u, use " +#~ "-u\n" +#~ " --time=WORD show time as WORD instead of modification " +#~ "time:\n" +#~ " atime, access, use, ctime or status; use\n" +#~ " specified time as sort key if --sort=time\n" +#~ " --time-style=WORD show times using style WORD:\n" +#~ " full-iso, iso, locale, posix-iso\n" +#~ " -t sort by modification time\n" +#~ " -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +#~ " -u with -lt: sort by, and show, access time\n" +#~ " with -l: show access time and sort by " +#~ "name\n" +#~ " otherwise: sort by access time\n" +#~ " -U do not sort; list entries in directory " +#~ "order\n" +#~ " -v sort by version\n" +#~ " -w, --width=COLS assume screen width instead of current " +#~ "value\n" +#~ " -x list entries by lines instead of by columns\n" +#~ " -X sort alphabetically by entry extension\n" +#~ " -1 list one file per line\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "By default, color is not used to distinguish types of files. That is\n" +#~ "equivalent to using --color=none. Using the --color option without the\n" +#~ "optional WHEN argument is equivalent to using --color=always. With\n" +#~ "--color=auto, color codes are output only if standard output is " +#~ "connected\n" +#~ "to a terminal (tty).\n" +#~ msgstr "" +#~ " -S sorteer op bestandsgrootte\n" +#~ " --sort-WOORD Sorteer op WOORD ipv. de bestandsnaam:\n" +#~ " extension (extensie) -X, none (niet) -U,\n" +#~ " size (grootte) -S, time (tijd) -t,\n" +#~ " version (versie) -v, status -c,\n" +#~ " atime/use (toegangstijd) -u\n" +#~ " --time=WOORD Laat tijd als WOORD zien ipv. verandertijd:\n" +#~ " atime/access/use (toegangstijd) of\n" +#~ " ctime/status (aanmaaktijd); gebruik " +#~ "gegeven\n" +#~ " tijd als sorteersleutel indien --" +#~ "sort=time\n" +#~ " -t sorteer op verandertijd\n" +#~ " -T, --tabsize=KOL neem aan dat er een tabstop staat op iedere " +#~ "KOL\n" +#~ " kolommen ipv. 8\n" +#~ " -u sorteer op toegangstijd; in combinatie met -" +#~ "l:\n" +#~ " geef toegangstijd\n" +#~ " -U ongesorteerd; geef ingangen zoals ze in de " +#~ "map\n" +#~ " voorkomen\n" +#~ " -v sorteer op versie\n" +#~ " -w, --width=KOL neem een schermbreedte van KOL kolommen aan " +#~ "ipv.\n" +#~ " de huidige waarde\n" +#~ " -x toon ingangen per regel ipv. per kolom\n" +#~ " -X sorteer alfabetisch op extensie\n" +#~ " -1 toon één ingang per regel\n" +#~ " --help toon deze hulp-tekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig " +#~ "programma\n" +#~ "\n" +#~ "Standaard wordt geen kleur gebruikt om onderscheid te maken tussen\n" +#~ "bestandstypen. Dat is equivalent met het gebruik van --color=none.\n" +#~ "Gebruik van de --color optie zonder het optionele WANNEER argument is\n" +#~ "equivalent met het gebruik van --color=always.\n" +#~ "Met --color=auto worden de kleurcodes alleen gebruikt als de uitvoer met " +#~ "een\n" +#~ "terminal (tty) verbonden is.\n" + +#, fuzzy +#~ msgid "" +#~ "Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +#~ "for even very expensive hardware probing to recover the data.\n" +#~ "\n" +#~ " -f, --force change permissions to allow writing if necessary\n" +#~ " -n, --iterations=N Overwrite N times instead of the default (%d)\n" +#~ " -s, --size=N shred this many bytes (suffixes like k, M, G accepted)\n" +#~ " -u, --remove truncate and remove file after overwriting\n" +#~ " -v, --verbose show progress\n" +#~ " -x, --exact do not round file sizes up to the next full block\n" +#~ " -z, --zero add a final overwrite with zeros to hide shredding\n" +#~ " - shred standard output\n" +#~ " --help display this help and exit\n" +#~ " --version print version information and exit\n" +#~ "\n" +#~ "Delete FILE(s) if --remove (-u) is specified. The default is not to " +#~ "remove\n" +#~ "the files because it is common to operate on device files like /dev/hda,\n" +#~ "and those files usually should not be removed. When operating on " +#~ "regular\n" +#~ "files, most people use the --remove option.\n" +#~ "\n" +#~ "CAUTION: Note that shred relies on a very important assumption:\n" +#~ "that the filesystem overwrites data in place. This is the traditional\n" +#~ "way to do things, but many modern filesystem designs do not satisfy this\n" +#~ "assumption. The following are examples of filesystems on which shred is\n" +#~ "not effective:\n" +#~ "\n" +#~ "* log-structured or journaled filesystems, such as those supplied with\n" +#~ " AIX and Solaris (and JFS, ReiserFS, XFS, etc.)\n" +#~ "\n" +#~ "* filesystems that write redundant data and carry on even if some writes\n" +#~ " fail, such as RAID-based filesystems\n" +#~ "\n" +#~ "* filesystems that make snapshots, such as Network Appliance's NFS " +#~ "server\n" +#~ "\n" +#~ "* filesystems that cache in temporary locations, such as NFS\n" +#~ " version 3 clients\n" +#~ "\n" +#~ "* compressed filesystems\n" +#~ "\n" +#~ "In addition, file system backups and remote mirrors may contain copies\n" +#~ "of the file that cannot be removed, and that will allow a shredded file\n" +#~ "to be recovered later.\n" +#~ msgstr "" +#~ "Verwijder een bestand op een veilige manier, door de inhoud eerst te\n" +#~ "overschrijven.\n" +#~ "\n" +#~ " -f, --force verander de rechten om te kunnen schrijven indien nodig\n" +#~ " -n, --iterations=N overschrijf N keer ipv het standaard aantal (%d)\n" +#~ " -s, --size=N overschrijf N bytes (k, M, of G als achtervoegsel " +#~ "geldig)\n" +#~ " -u, --remove kap het bestand af en verwijder het na overschrijven\n" +#~ " -v, --verbose laat de voortgang zien (-vv om de voortgang te laten " +#~ "staan)\n" +#~ " -x, --exact rond de groottes niet af op het volgende volle blok\n" +#~ " -z, --zero overschijf nog een keer met nullen om de vernietiging " +#~ "te\n" +#~ " verbergen\n" +#~ " - vernietig de standaard invoer\n" +#~ " --help toon deze hulp en beëindig\n" +#~ " --version toon versie informatie en beëindig\n" +#~ "\n" +#~ "FIXME." + +#, fuzzy +#~ msgid "" +#~ "Force changed blocks to disk, update the super block.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Toon CRC-controlesom en het aantal bytes voor ieder BESTAND.\n" +#~ "\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#~ msgid "" +#~ "Update the access and modification times of each FILE to the current " +#~ "time.\n" +#~ "\n" +#~ " -a change only the access time\n" +#~ " -c, --no-create do not create any files\n" +#~ " -d, --date=STRING parse STRING and use it instead of current time\n" +#~ " -f (ignored)\n" +#~ " -m change only the modification time\n" +#~ " -r, --reference=FILE use this file's times instead of current time\n" +#~ " -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current " +#~ "time\n" +#~ " --time=WORD set time given by WORD: access atime use (same " +#~ "as -a)\n" +#~ " modify mtime (same as -m)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Note that the three time-date formats recognized for the -d and -t " +#~ "options\n" +#~ "and for the obsolescent argument are all different.\n" +#~ msgstr "" +#~ "Verander de toegangs- en aanpassingstijd van elk BESTAND in de huidige " +#~ "tijd.\n" +#~ "\n" +#~ " -a verander alleen de toegangstijd\n" +#~ " -c, --no-create maak geen bestanden aan\n" +#~ " -d, --date=STRING gebruik STRING in plaats van huidige tijd\n" +#~ " -f (wordt genegeerd)\n" +#~ " -m verander alleen de aanpassingstijd\n" +#~ " -r, --reference=BESTAND gebruik de tijden van BESTAND ipv. de huidige " +#~ "tijd\n" +#~ " -t TIJD gebruik [[CC]YY]MMDDhhmm[.ss] ipv. de huidige " +#~ "tijd\n" +#~ " --time=WORD access/atime/use (toegang) -a, mtime/modify\n" +#~ " (aanpassing) -m\n" +#~ " --help toon hulp-tekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" +#~ "\n" +#~ "Merk op dat de drie tijd/datum formaten voor de -d en -t opties en voor\n" +#~ "het verouderende argument allemaal anders zijn.\n" + +#, fuzzy +#~ msgid "Copyright (C) 2001 Free Software Foundation, Inc." +#~ msgstr "Copyright (C) 1999 Free Software Foundation, Inc." + +#~ msgid "" +#~ "when creating character special files, major and minor device\n" +#~ "numbers must be specified" +#~ msgstr "" +#~ "bij het aanmaken van byteapparaatbestanden moeten hoofd- en subnummers\n" +#~ "gespecificeerd worden" + +#~ msgid "group of %s changed to %s\n" +#~ msgstr "groep van %s veranderd in %s\n" + +#, fuzzy +#~ msgid "ownership of %s changed to " +#~ msgstr "eigenaar van %s veranderd in " + +#, fuzzy +#~ msgid "you are not a member of group %s" +#~ msgstr "u bent geen lid van groep `%s'" + +#, fuzzy +#~ msgid "cannot make fifo %s" +#~ msgstr "kan de rechten van %s niet veranderen" + +#, fuzzy +#~ msgid "cannot change permissions for %s" +#~ msgstr "kan de eigenaar van %s niet veranderen" + +#, fuzzy +#~ msgid "cannot remove old link to %s" +#~ msgstr "kan map `%s' niet aanmaken" + +#~ msgid "virtual memory exhausted" +#~ msgstr "geen geheugen meer beschikbaar" + +#~ msgid "Memory exhausted" +#~ msgstr "Geen geheugen meer beschikbaar" + +#, fuzzy +#~ msgid "cannot create directory `%s'" +#~ msgstr "kan map `%s' niet aanmaken" + +#, fuzzy +#~ msgid "cannot remove `%s'" +#~ msgstr "kan de rechten van %s niet veranderen" + +#, fuzzy +#~ msgid "specified target, `%s' is not a directory" +#~ msgstr "`%s' bestaat maar is geen map" + +#~ msgid "`%s' and `%s' are the same file" +#~ msgstr "`%s' en `%s' zijn het zelfde bestand" + +#, fuzzy +#~ msgid "cannot backup `%s'" +#~ msgstr "kan de rechten van %s niet veranderen" + +#, fuzzy +#~ msgid "cannot un-backup `%s'" +#~ msgstr "kan de rechten van %s niet veranderen" + +#~ msgid "cannot chmod %s" +#~ msgstr "kan de rechten van %s niet veranderen" + +#, fuzzy +#~ msgid "`%s' exists but is not a directory" +#~ msgstr "`%s' bestaat maar is geen map" + +#~ msgid "--version-control" +#~ msgstr "--version-control" + +# urrk programmeerfout: dit soort ongein is niet te vertalen... +#~ msgid "create %s %s to %s" +#~ msgstr "maak %s %s naar %s" + +#~ msgid "hard link" +#~ msgstr "harde koppeling" + +#~ msgid "link" +#~ msgstr "koppeling" + +#~ msgid "%s -> %s (backup)\n" +#~ msgstr "%s -> %s (reservekopie)\n" + +#, fuzzy +#~ msgid "starting directory" +#~ msgstr "`%s' bestaat maar is geen map" + +#, fuzzy +#~ msgid "Usage: %s [OPTION]... EXISTING_DIR NEW_DIR\n" +#~ msgstr "Aanroep: %s [OPTIE]... SET1 [SET2]\n" + +#, fuzzy +#~ msgid "cannot rename `.' or `..'" +#~ msgstr "kan hostname niet achterhalen" + +#, fuzzy +#~ msgid "%s is closed" +#~ msgstr "standaard invoer is gesloten" + +#, fuzzy +#~ msgid "Error seeking `%s'" +#~ msgstr "fout bij lezen %s" + +#~ msgid "(Did you remember to open stdin read/write with \"<>file\"?)\n" +#~ msgstr "" +#~ "(Heeft u er aan gedacht om stdin voor lezen en schrijven te openen met " +#~ "\"<>bestand\"?)\n" + +#~ msgid "%s: pass %lu/%lu (%s)...%lu/%lu K" +#~ msgstr "%s: sessie %lu/%lu (%s)...%lu/%lu K" + +#, fuzzy +#~ msgid "Error syncing `%s'" +#~ msgstr "fout bij lezen %s" + +#, fuzzy +#~ msgid "Can't fstat file `%s'" +#~ msgstr "bestand `%s' wordt aangemaakt\n" + +#~ msgid "`%s' is not a regular file: use -d to enable operations on devices" +#~ msgstr "" +#~ "`%s' is geen gewoon bestand: gebruik -d om operaties op apparaten toe te " +#~ "staan" + +#~ msgid "unable to allocate storage for %lu passes" +#~ msgstr "kan geen ruimte maken voor %lu sessies" + +#, fuzzy +#~ msgid "%s: deleting" +#~ msgstr "bestand ingekort" + +#, fuzzy +#~ msgid "%s: deleted" +#~ msgstr "bestand ingekort" + +#~ msgid "Unable to delete file `%s'" +#~ msgstr "Kon bestand `%s' niet verwijderen" + +#~ msgid "sparse type" +#~ msgstr "schaars type" + +#~ msgid "time type" +#~ msgstr "tijd type" + +#~ msgid "format type" +#~ msgstr "formaat type" + +#~ msgid "colorization criterion" +#~ msgstr "voorwaarde voor kleurgebruik" + +#~ msgid "indicator style" +#~ msgstr "stijl van bestandstype-indicatie" + +#~ msgid "quoting style" +#~ msgstr "aanhaalstijl" + +#~ msgid "time selector" +#~ msgstr "tijdmarkering" + +#~ msgid "days" +#~ msgstr "dagen" + +#~ msgid "users" +#~ msgstr "gebruikers" + +#, fuzzy +#~ msgid "" +#~ "Display the current time in the given FORMAT, or set the system date.\n" +#~ "\n" +#~ " -d, --date=STRING display time described by STRING, not `now'\n" +#~ " -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +#~ msgstr "" +#~ "Toon de huidige tijd in het gegeven FORMAAT, of stel de systeemdatum in.\n" +#~ "\n" +#~ " -d, --date=STRING toon tijd zoals beschreven door STRING, niet " +#~ "`now'\n" +#~ " -f, --file=DATUMBESTAND zoals --date voor iedere regel van " +#~ "DATUMBESTAND\n" +#~ " -r, --reference=BESTAND toon de laastste wijzinging tijd van BESTAND\n" +#~ " -R, --rfc-822 toon RFC-822 compliant datum string\n" +#~ " -s, --set=STRING stel tijd in zoals beschreven door STRING\n" +#~ " -u, --utc, --universal toon of stel in volgens Coordinated Universal " +#~ "Time\n" +#~ " --help toon hulp-tekst en bekindig programma\n" +#~ " --version toon versie-informatie en bekindig programma\n" + +#, fuzzy +#~ msgid "" +#~ "Run COMMAND with root directory set to NEWROOT.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +#~ msgstr "" +#~ "Toon CRC-controlesom en het aantal bytes voor ieder BESTAND.\n" +#~ "\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "FORMAT controls the output. The only valid option for the second form\n" +#~ "specifies Coordinated Universal Time. Interpreted sequences are:\n" +#~ "\n" +#~ " %%%% a literal %%\n" +#~ " %%a locale's abbreviated weekday name (Sun..Sat)\n" +#~ " %%A locale's full weekday name, variable length (Sunday..Saturday)\n" +#~ " %%b locale's abbreviated month name (Jan..Dec)\n" +#~ " %%B locale's full month name, variable length (January..December)\n" +#~ " %%c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +#~ " %%C century (year divided by 100 and truncated to an integer) [00-" +#~ "99]\n" +#~ " %%d day of month (01..31)\n" +#~ " %%D date (mm/dd/yy)\n" +#~ " %%e day of month, blank padded ( 1..31)\n" +#~ " %%h same as %%b\n" +#~ " %%H hour (00..23)\n" +#~ " %%I hour (01..12)\n" +#~ " %%j day of year (001..366)\n" +#~ " %%k hour ( 0..23)\n" +#~ " %%l hour ( 1..12)\n" +#~ " %%m month (01..12)\n" +#~ " %%M minute (00..59)\n" +#~ " %%n a newline\n" +#~ " %%p locale's AM or PM\n" +#~ " %%r time, 12-hour (hh:mm:ss [AP]M)\n" +#~ " %%s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +#~ " %%S second (00..60)\n" +#~ " %%t a horizontal tab\n" +#~ " %%T time, 24-hour (hh:mm:ss)\n" +#~ " %%u day of week (1..7); 1 represents Monday\n" +#~ " %%U week number of year with Sunday as first day of week (00..53)\n" +#~ " %%V week number of year with Monday as first day of week (01..53)\n" +#~ " %%w day of week (0..6); 0 represents Sunday\n" +#~ " %%W week number of year with Monday as first day of week (00..53)\n" +#~ " %%x locale's date representation (mm/dd/yy)\n" +#~ " %%X locale's time representation (%%H:%%M:%%S)\n" +#~ " %%y last two digits of year (00..99)\n" +#~ " %%Y year (1970...)\n" +#~ " %%z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +#~ " %%Z time zone (e.g., EDT), or nothing if no time zone is " +#~ "determinable\n" +#~ "\n" +#~ "By default, date pads numeric fields with zeroes. GNU date recognizes\n" +#~ "the following modifiers between `%%' and a numeric directive.\n" +#~ "\n" +#~ " `-' (hyphen) do not pad the field\n" +#~ " `_' (underscore) pad the field with spaces\n" +#~ msgstr "" +#~ "\n" +#~ "FORMAAT bepaalt de uitvoer. De enige juiste voor de tweede vorm\n" +#~ "specificeert Coordinated Universal Time. Mogelijke reeksen zijn:\n" +#~ "\n" +#~ " %%%% een letterlijk %%\n" +#~ " %%a locale's afgekorte weekdagnaam (zon..zat)\n" +#~ " %%A locale's volledige weekdagnaam, variabele lengte (zondag.." +#~ "zaterdag)\n" +#~ " %%b locale's afgekorte maandnaam (jan..dec)\n" +#~ " %%B locale's volledige maandnaam, variabele lengte (januari.." +#~ "december)\n" +#~ " %%c locale's datum en tijd (zat nov 04 12:02:33 EST 1989)\n" +#~ " %%d dag van de maand (01..31)\n" +#~ " %%D datum (mm/dd/yy)\n" +#~ " %%e dag van de maand, met voorvoegspatie ( 1..31)\n" +#~ " %%h zelfde als %%b\n" +#~ " %%H uur (00..23)\n" +#~ " %%I uur (01..12)\n" +#~ " %%j dag van het jaar (001..366)\n" +#~ " %%k uur ( 0..23)\n" +#~ " %%l uur ( 1..12)\n" +#~ " %%m maand (01..12)\n" +#~ " %%M minuut (00..59)\n" +#~ " %%n een nieuwe regel\n" +#~ " %%p locale's AM of PM\n" +#~ " %%r tijd, 12-uurs (hh:mm:ss [AP]M)\n" +#~ " %%s seconden sedert 00:00:00, Jan 1, 1970 (een GNU extra'tje)\n" +#~ " %%S seconden (00..61)\n" +#~ " %%t een horizontale tab\n" +#~ " %%T tijd, 24-uurs (hh:mm:ss)\n" +#~ " %%U weeknummer van het jaar met zondag als eerste dag van de week " +#~ "(00..53)\n" +#~ " %%V weeknummer van het jaar met maandag als eerste dag van de week " +#~ "(01..52)\n" +#~ " %%w dag van de week (0..6); 0 representeert zondag\n" +#~ " %%W weeknummer van het jaar met maandag als eerste dag van de week " +#~ "(00..53)\n" +#~ " %%x locale's datum representatie (mm/dd/yy) (FIXME)\n" +#~ " %%X locale's tijd representatie (%%H:%%M:%%S) (FIXME)\n" +#~ " %%y laatste twee cijfers van jaartal (00..99)\n" +#~ " %%Y jaartal (1970...)\n" +#~ " %%z RFC-822 stijl numerieke tijdzone (-0500) (een niet standaard " +#~ "extra)\n" +#~ " %%Z tijdzone (b.v., EDT), of niets als tijdzone niet te achterhalen " +#~ "is\n" +#~ "\n" +#~ "Standaard, worden numerieke velden voorafgegaan door nullen. GNU date\n" +#~ "herkent de volgende wijzigers tussen `%%' en een numeriek directief.\n" +#~ "\n" +#~ " `-' (afbreekstreepje) geen voorafgaande nullen of spaties\n" +#~ " `_' (underscore) vooraf laten gaan door spaties\n" + +#, fuzzy +#~ msgid "" +#~ "Echo the STRING(s) to standard output.\n" +#~ "\n" +#~ " -n do not output the trailing newline\n" +#~ " -e enable interpretation of the backslash-escaped " +#~ "characters\n" +#~ " listed below\n" +#~ " -E disable interpretation of those sequences in STRINGs\n" +#~ " --help display this help and exit (should be alone)\n" +#~ " --version output version information and exit (should be alone)\n" +#~ "\n" +#~ "Without -E, the following sequences are recognized and interpolated:\n" +#~ "\n" +#~ " \\NNN the character whose ASCII code is NNN (octal)\n" +#~ " \\\\ backslash\n" +#~ " \\a alert (BEL)\n" +#~ " \\b backspace\n" +#~ " \\c suppress trailing newline\n" +#~ " \\f form feed\n" +#~ " \\n new line\n" +#~ " \\r carriage return\n" +#~ " \\t horizontal tab\n" +#~ " \\v vertical tab\n" +#~ msgstr "" +#~ "Toon de STRING(s) via standaard uitvoer.\n" +#~ "\n" +#~ " -n laat de bekindigende nieuwe regel achterwege\n" +#~ " -e (niet gebruikt)\n" +#~ " -E disable interpolation of some sequences in STRINGs\n" +#~ " --help toon hulp-tekst en bekindig programma (enige optie)\n" +#~ " --version toon versie-informatie en bekindig programma (enige " +#~ "optie)\n" +#~ "\n" +#~ "Zonder -E, worden de volgende reeksen herkent en geonterpoleerd:\n" +#~ "\n" +#~ " \\NNN het karakter waarvan de ASCII code NNN (octal) is\n" +#~ " \\\\ backslash\n" +#~ " \\a alarm (BEL)\n" +#~ " \\b backspace\n" +#~ " \\c onderdruk bekindigende nieuwe regel\n" +#~ " \\f form feed\n" +#~ " \\n nieuwe regel\n" +#~ " \\r carriage return\n" +#~ " \\t horizontale tab\n" +#~ " \\v verticale tab\n" + +#, fuzzy +#~ msgid "" +#~ "Print the value of EXPRESSION to standard output. A blank line below\n" +#~ "separates increasing precedence groups. EXPRESSION may be:\n" +#~ "\n" +#~ " ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +#~ "\n" +#~ " ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +#~ "\n" +#~ " ARG1 < ARG2 ARG1 is less than ARG2\n" +#~ " ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +#~ " ARG1 = ARG2 ARG1 is equal to ARG2\n" +#~ " ARG1 != ARG2 ARG1 is unequal to ARG2\n" +#~ " ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +#~ " ARG1 > ARG2 ARG1 is greater than ARG2\n" +#~ "\n" +#~ " ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +#~ " ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +#~ "\n" +#~ " ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +#~ " ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +#~ " ARG1 %% ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +#~ "\n" +#~ " STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +#~ "\n" +#~ " match STRING REGEXP same as STRING : REGEXP\n" +#~ " substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +#~ " index STRING CHARS index in STRING where any CHARS is found, or " +#~ "0\n" +#~ " length STRING length of STRING\n" +#~ " + TOKEN interpret TOKEN as a string, even if it is " +#~ "a\n" +#~ " keyword like `match' or an operator like " +#~ "`/'\n" +#~ "\n" +#~ " ( EXPRESSION ) value of EXPRESSION\n" +#~ msgstr "" +#~ "Toon de waarde van EXPRESSIE via standaard uitvoer. Een lege regel\n" +#~ "scheidt de toenemende `precedence' groepen. EXPRESSIE mag zijn:\n" +#~ "\n" +#~ " ARG1 | ARG2 ARG1 als het nog null nog 0 is, anders ARG2\n" +#~ "\n" +#~ " ARG1 & ARG2 ARG1 als beide argument null of 0 zijn, anders 0\n" +#~ "\n" +#~ " ARG1 < ARG2 ARG1 is kleiner dan ARG2\n" +#~ " ARG1 <= ARG2 ARG1 is kleiner dan of gelijk aan ARG2\n" +#~ " ARG1 = ARG2 ARG1 is gelijk aan ARG2\n" +#~ " ARG1 != ARG2 ARG1 is ongelijk aan ARG2\n" +#~ " ARG1 >= ARG2 ARG1 is groter dan of gelijk aan ARG2\n" +#~ " ARG1 > ARG2 ARG1 is groter dan ARG2\n" +#~ "\n" +#~ " ARG1 + ARG2 arithmetische som van ARG1 en ARG2\n" +#~ " ARG1 - ARG2 arithmetisch verschil tussen ARG1 en ARG2\n" +#~ "\n" +#~ " ARG1 * ARG2 arithmetisch product van ARG1 en ARG2\n" +#~ " ARG1 / ARG2 arithmetisch quotient van ARG1 gedeeld door ARG2\n" +#~ " ARG1 %% ARG2 arithmetisch rest van ARG1 gedeeld door ARG2\n" +#~ "\n" +#~ " STRING : REGEXP anchored pattroon overeenkomst van REGEXP in STRING\n" +#~ "\n" +#~ " match STRING REGEXP zelfde als STRING : REGEXP\n" +#~ " substr STRING POS LENGTH substring van STRING, POS geteld vanaf 1\n" +#~ " index STRING CHARS index in STRING waar CHARS zijn gevonden, of " +#~ "0\n" +#~ " length STRING lengte van STRING\n" +#~ " quote TEKEN interpreteer TEKEN als string, zelfs als het " +#~ "een\n" +#~ " sleutelwoord is zoals `match' of een " +#~ "operator is\n" +#~ " zoals `/'\n" +#~ "\n" +#~ " ( EXPRESSIE ) waarde van EXPRESSIE\n" + +#, fuzzy +#~ msgid "" +#~ "Print ARGUMENT(s) according to FORMAT.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "FORMAT controls the output as in C printf. Interpreted sequences are:\n" +#~ "\n" +#~ " \\\" double quote\n" +#~ " \\0NNN character with octal value NNN (0 to 3 digits)\n" +#~ " \\\\ backslash\n" +#~ " \\a alert (BEL)\n" +#~ " \\b backspace\n" +#~ " \\c produce no further output\n" +#~ " \\f form feed\n" +#~ " \\n new line\n" +#~ " \\r carriage return\n" +#~ " \\t horizontal tab\n" +#~ " \\v vertical tab\n" +#~ " \\xNNN byte with hexadecimal value NNN (1 to 3 digits)\n" +#~ "\n" +#~ " \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +#~ " \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +#~ " %%%% a single %%\n" +#~ " %%b ARGUMENT as a string with `\\' escapes interpreted\n" +#~ "\n" +#~ "and all C format specifications ending with one of diouxXfeEgGcs, with\n" +#~ "ARGUMENTs converted to proper type first. Variable widths are handled.\n" +#~ msgstr "" +#~ "Toon ARGUMENT(en) volgens het FORMAAT.\n" +#~ "\n" +#~ " --help toon hulp-tekst en bekindig programma\n" +#~ " --version toon versie-informatie en bekindig programma\n" +#~ "\n" +#~ "FORMAAT bepaalt de uitvoer als in C printf. Geonterpreteerde reeksen " +#~ "zijn:\n" +#~ "\n" +#~ " \\\" dubbele kwoot\n" +#~ " \\0NNN karakter met octale waarde NNN (0 tot 3 cijfers)\n" +#~ " \\\\ backslash\n" +#~ " \\a alarm (BEL)\n" +#~ " \\b backspace\n" +#~ " \\c produce no further output\n" +#~ " \\f form feed\n" +#~ " \\n nieuwe regel\n" +#~ " \\r carriage return\n" +#~ " \\t horizontale tab\n" +#~ " \\v verticale tab\n" +#~ " \\xNNN character net hexadecimale waarde NNN (1 tot 3 cijfers)\n" +#~ "\n" +#~ " %%%% een enkel %%\n" +#~ " %%b ARGUMENT als een string met geonterpreteerde `\\' escapes\n" +#~ "\n" +#~ "en alle C formaat specificaties eindigend met een van `diouxXfeEgGcs',\n" +#~ "met ARGUMENT(en) converterend naar `proper type first'. Er wordt\n" +#~ "rekening gehouden met variabele breedte.\n" + +#, fuzzy +#~ msgid "" +#~ "Print the full filename of the current working directory.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Toon CRC-controlesom en het aantal bytes voor ieder BESTAND.\n" +#~ "\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Special characters:\n" +#~ " * dsusp CHAR CHAR will send a terminal stop signal once input " +#~ "flushed\n" +#~ " eof CHAR CHAR will send an end of file (terminate the input)\n" +#~ " eol CHAR CHAR will end the line\n" +#~ " * eol2 CHAR alternate CHAR for ending the line\n" +#~ " erase CHAR CHAR will erase the last character typed\n" +#~ " intr CHAR CHAR will send an interrupt signal\n" +#~ " kill CHAR CHAR will erase the current line\n" +#~ " * lnext CHAR CHAR will enter the next character quoted\n" +#~ " quit CHAR CHAR will send a quit signal\n" +#~ " * rprnt CHAR CHAR will redraw the current line\n" +#~ " start CHAR CHAR will restart the output after stopping it\n" +#~ " stop CHAR CHAR will stop the output\n" +#~ " susp CHAR CHAR will send a terminal stop signal\n" +#~ " * swtch CHAR CHAR will switch to a different shell layer\n" +#~ " * werase CHAR CHAR will erase the last word typed\n" +#~ msgstr "" +#~ "\n" +#~ "Speciale karakters:\n" +#~ "* dsusp CHAR CHAR zal een terminal stop signaal zenden na flushen " +#~ "invoer\n" +#~ " eof CHAR CHAR zal een einde bestand teken zenden (afsluiten " +#~ "invoer)\n" +#~ " eol CHAR CHAR zal een einde regel teken zenden\n" +#~ "* eol2 CHAR alternate CHAR for ending the line\n" +#~ " erase CHAR CHAR zal het laatst getypte karakter wissen\n" +#~ " intr CHAR CHAR zal een interrupt signaal zenden\n" +#~ " kill CHAR CHAR zal de huidige regel wissen\n" +#~ "* lnext CHAR CHAR zal het volgende karakter kwoteren\n" +#~ " quit CHAR CHAR zal een stop signaal zenden\n" +#~ "* rprnt CHAR CHAR zal de huidige regel open laten zien\n" +#~ " start CHAR CHAR zal de uitvoeren herstarten na stoppen\n" +#~ " stop CHAR CHAR zal de uitvoer stoppen\n" +#~ " susp CHAR CHAR zal een terminal stop signaal zenden\n" +#~ "* swtch CHAR CHAR zal veranderen naar een andere shell layer\n" +#~ "* werase CHAR CHAR zal het laatst getypte woorde wissen\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Special settings:\n" +#~ " N set the input and output speeds to N bauds\n" +#~ " * cols N tell the kernel that the terminal has N columns\n" +#~ " * columns N same as cols N\n" +#~ " ispeed N set the input speed to N\n" +#~ " * line N use line discipline N\n" +#~ " min N with -icanon, set N characters minimum for a completed " +#~ "read\n" +#~ " ospeed N set the output speed to N\n" +#~ " * rows N tell the kernel that the terminal has N rows\n" +#~ " * size print the number of rows and columns according to the " +#~ "kernel\n" +#~ " speed print the terminal speed\n" +#~ " time N with -icanon, set read timeout of N tenths of a second\n" +#~ msgstr "" +#~ "\n" +#~ "Special instellingen:\n" +#~ " N zet de invoer- en uitvoersnelheid op N bauds\n" +#~ "* cols N vertel de kernel dat de terminal N kolomen heeft\n" +#~ "* columns N zelfde als cols N\n" +#~ " ispeed N zet de invoersnelheid op N\n" +#~ "* line N gebruik regel discipline N\n" +#~ " min N met -icanon, zet N karakterminimum voor complete read\n" +#~ " ospeed N zet de uitvoersnelheid op N\n" +#~ "* rows N vertel de kernel dat de terminal N rijen heeft\n" +#~ "* size toon het aantal rijen en kolomen volgens de kernel\n" +#~ " speed toon de terminalsnelheid\n" +#~ " time N met -icanon, zet lees timeout op N tienden van een " +#~ "seconde\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Input settings:\n" +#~ " [-]brkint breaks cause an interrupt signal\n" +#~ " [-]icrnl translate carriage return to newline\n" +#~ " [-]ignbrk ignore break characters\n" +#~ " [-]igncr ignore carriage return\n" +#~ " [-]ignpar ignore characters with parity errors\n" +#~ " * [-]imaxbel beep and do not flush a full input buffer on a " +#~ "character\n" +#~ " [-]inlcr translate newline to carriage return\n" +#~ " [-]inpck enable input parity checking\n" +#~ " [-]istrip clear high (8th) bit of input characters\n" +#~ " * [-]iuclc translate uppercase characters to lowercase\n" +#~ " * [-]ixany let any character restart output, not only start " +#~ "character\n" +#~ " [-]ixoff enable sending of start/stop characters\n" +#~ " [-]ixon enable XON/XOFF flow control\n" +#~ " [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +#~ " [-]tandem same as [-]ixoff\n" +#~ msgstr "" +#~ "\n" +#~ "Invoer instellingen:\n" +#~ " [-]brkint breaks veroorzaken een interrupt signaal\n" +#~ " [-]icrnl zet carriage return om in newline\n" +#~ " [-]ignbrk negeer break karakters\n" +#~ " [-]igncr negeer carriage return\n" +#~ " [-]ignpar negeer karakters met pariteitsfouten\n" +#~ "* [-]imaxbel bel en flush een volle invoerbuffer niet op een " +#~ "karakter??\n" +#~ " [-]inlcr zet newline om in carriage return\n" +#~ " [-]inpck zet invoer pariteits kontrolle aan\n" +#~ " [-]istrip maak hoge (8e) bit schoon van de invoer karakters\n" +#~ "* [-]iuclc zet hoofdletters om in kleine letters\n" +#~ "* [-]ixany laat elk karakter de uitvoer herstarten, niet alleen " +#~ "het \n" +#~ " start karakter\n" +#~ " [-]ixoff zet zenden van start/stop karakters aan\n" +#~ " [-]ixon zet XON/XOFF flow kontrolle aan\n" +#~ " [-]parmrk markeer pariteitsfouten (met een 255-0-karakter reeks)\n" +#~ " [-]tandem zelfde als [-]ixoff\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Local settings:\n" +#~ " [-]crterase echo erase characters as backspace-space-backspace\n" +#~ " * crtkill kill all line by obeying the echoprt and echoe settings\n" +#~ " * -crtkill kill all line by obeying the echoctl and echok settings\n" +#~ " * [-]ctlecho echo control characters in hat notation (`^c')\n" +#~ " [-]echo echo input characters\n" +#~ " * [-]echoctl same as [-]ctlecho\n" +#~ " [-]echoe same as [-]crterase\n" +#~ " [-]echok echo a newline after a kill character\n" +#~ " * [-]echoke same as [-]crtkill\n" +#~ " [-]echonl echo newline even if not echoing other characters\n" +#~ " * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +#~ " [-]icanon enable erase, kill, werase, and rprnt special " +#~ "characters\n" +#~ " [-]iexten enable non-POSIX special characters\n" +#~ " [-]isig enable interrupt, quit, and suspend special characters\n" +#~ " [-]noflsh disable flushing after interrupt and quit special " +#~ "characters\n" +#~ " * [-]prterase same as [-]echoprt\n" +#~ " * [-]tostop stop background jobs that try to write to the terminal\n" +#~ " * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +#~ msgstr "" +#~ "\n" +#~ "Lokale instellingen:\n" +#~ " [-]crterase toon wis karakters als backspace-space-backspace\n" +#~ "* crtkill dood alle regels door obeying the echoprt and echoe " +#~ "settings\n" +#~ "* -crtkill kill all line by obeying the echoctl and echok settings\n" +#~ "* [-]ctlecho toon kontolle karakters in dakje notatie (`^c')\n" +#~ " [-]echo toon invoer karakters\n" +#~ "* [-]echoctl zelfde als [-]ctlecho\n" +#~ " [-]echoe zelfde als [-]crterase\n" +#~ " [-]echok toon een newline na een kill karakter\n" +#~ "* [-]echoke zelfde als [-]crtkill\n" +#~ " [-]echonl toon newline zelfs als andere karakters niet getoond " +#~ "worden\n" +#~ "* [-]echoprt toon gewiste karakers achterwaards, tussen `\\' en '/'\n" +#~ " [-]icanon zet wissen aan, kill, werase, en rprnt speciale " +#~ "karakters\n" +#~ " [-]iexten zet niet-POSIX speciale karakters aan\n" +#~ " [-]isig zet interrupt aan, stop, en suspend speciale karakters\n" +#~ " [-]noflsh zet flushing uit na interrupt en quit speciale karakters\n" +#~ "* [-]prterase zelfde als [-]echoprt\n" +#~ "* [-]tostop stop achtergrond jobs die naar de terminal schrijven\n" +#~ "* [-]xcase met icanon, escape met `\\' voor hoofdletters\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Combination settings:\n" +#~ " * [-]LCASE same as [-]lcase\n" +#~ " cbreak same as -icanon\n" +#~ " -cbreak same as icanon\n" +#~ " cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +#~ " icanon, eof and eol characters to their default values\n" +#~ " -cooked same as raw\n" +#~ " crt same as echoe echoctl echoke\n" +#~ " dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +#~ " kill ^u\n" +#~ " * [-]decctlq same as [-]ixany\n" +#~ " ek erase and kill characters to their default values\n" +#~ " evenp same as parenb -parodd cs7\n" +#~ " -evenp same as -parenb cs8\n" +#~ " * [-]lcase same as xcase iuclc olcuc\n" +#~ " litout same as -parenb -istrip -opost cs8\n" +#~ " -litout same as parenb istrip opost cs7\n" +#~ " nl same as -icrnl -onlcr\n" +#~ " -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +#~ " oddp same as parenb parodd cs7\n" +#~ " -oddp same as -parenb cs8\n" +#~ " [-]parity same as [-]evenp\n" +#~ " pass8 same as -parenb -istrip cs8\n" +#~ " -pass8 same as parenb istrip cs7\n" +#~ " raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +#~ " -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +#~ " -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +#~ " -raw same as cooked\n" +#~ " sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +#~ " -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +#~ " -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +#~ " isig icanon iexten echo echoe echok -echonl -noflsh\n" +#~ " -xcase -tostop -echoprt echoctl echoke, all special\n" +#~ " characters to their default values.\n" +#~ msgstr "" +#~ "\n" +#~ "Gecombineerde instellingen:\n" +#~ "* [-]LCASE zelfde als [-]lcase\n" +#~ " cbreak zelfde als -icanon\n" +#~ " -cbreak zelfde als icanon\n" +#~ " cooked zelfde als brkint ignpar istrip icrnl ixon opost isig\n" +#~ " icanon, eof en eol karakters en hun standaard waarden\n" +#~ " -cooked zelfde als raw\n" +#~ " crt zelfde als echoe echoctl echoke\n" +#~ " dec zelfde als echoe echoctl echoke -ixany intr ^c erase " +#~ "0177\n" +#~ " kill ^u\n" +#~ "* [-]decctlq zelfde als [-]ixany\n" +#~ " ek erase and kill karakters en hun standaard waarden\n" +#~ " evenp zelfde als parenb -parodd cs7\n" +#~ " -evenp zelfde als -parenb cs8\n" +#~ "* [-]lcase zelfde als xcase iuclc olcuc\n" +#~ " litout zelfde als -parenb -istrip -opost cs8\n" +#~ " -litout zelfde als parenb istrip opost cs7\n" +#~ " nl zelfde als -icrnl -onlcr\n" +#~ " -nl zelfde als icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +#~ " oddp zelfde als parenb parodd cs7\n" +#~ " -oddp zelfde als -parenb cs8\n" +#~ " [-]parity zelfde als [-]evenp\n" +#~ " pass8 zelfde als -parenb -istrip cs8\n" +#~ " -pass8 zelfde als parenb istrip cs7\n" +#~ " raw zelfde als -ignbrk -brkint -ignpar -parmrk -inpck -" +#~ "istrip\n" +#~ " -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +#~ " -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +#~ " -raw zelfde als cooked\n" +#~ " sane zelfde als cread -ignbrk brkint -inlcr -igncr icrnl\n" +#~ " -ixoff -iucl -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +#~ " -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +#~ " isig icanon iexten echo echoe echok -echonl -noflsh\n" +#~ " -xcase -tostop -echoprt echoctl echoke, alle speciale\n" +#~ " karakters en hun standaard waarden\n" + +#, fuzzy +#~ msgid "" +#~ "Exit with the status determined by EXPRESSION.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "EXPRESSION is true or false and sets exit status. It is one of:\n" +#~ msgstr "" +#~ "Toon CRC-controlesom en het aantal bytes voor ieder BESTAND.\n" +#~ "\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode " +#~ "numbers\n" +#~ " FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +#~ " FILE1 -ot FILE2 FILE1 is older than FILE2\n" +#~ "\n" +#~ " -b FILE FILE exists and is block special\n" +#~ " -c FILE FILE exists and is character special\n" +#~ " -d FILE FILE exists and is a directory\n" +#~ " -e FILE FILE exists\n" +#~ " -f FILE FILE exists and is a regular file\n" +#~ " -g FILE FILE exists and is set-group-ID\n" +#~ " -h FILE FILE exists and is a symbolic link (same as -L)\n" +#~ " -G FILE FILE exists and is owned by the effective group ID\n" +#~ " -k FILE FILE exists and has its sticky bit set\n" +#~ " -L FILE FILE exists and is a symbolic link (same as -h)\n" +#~ " -O FILE FILE exists and is owned by the effective user ID\n" +#~ " -p FILE FILE exists and is a named pipe\n" +#~ " -r FILE FILE exists and is readable\n" +#~ " -s FILE FILE exists and has a size greater than zero\n" +#~ " -S FILE FILE exists and is a socket\n" +#~ " -t [FD] file descriptor FD (stdout by default) is opened on a " +#~ "terminal\n" +#~ " -u FILE FILE exists and its set-user-ID bit is set\n" +#~ " -w FILE FILE exists and is writable\n" +#~ " -x FILE FILE exists and is executable\n" +#~ msgstr "" +#~ "\n" +#~ " BESTAND1 -ef BESTAND2 BESTAND1 en BESTAND2 hebben het zelfde device\n" +#~ " en inode nummer\n" +#~ " BESTAND1 -nt BESTAND2 BESTAND1 is nieuwer (wijzigingsdatum) dan " +#~ "BESTAND2\n" +#~ " BESTAND1 -ot BESTAND2 BESTAND1 is ouder dan BESTAND2\n" +#~ "\n" +#~ " -b BESTAND BESTAND bestaat en is speciaal blokbestand\n" +#~ " -c BESTAND BESTAND bestaat en is karakter speciaal\n" +#~ " -d BESTAND BESTAND bestaat en is een directory\n" +#~ " -e BESTAND BESTAND bestaat\n" +#~ " -f BESTAND BESTAND bestaat en is een gewoon BESTAND\n" +#~ " -g BESTAND BESTAND bestaat en is set-group-ID\n" +#~ " -G BESTAND BESTAND bestaat en is eigendom van de effectieve group " +#~ "ID\n" +#~ " -k BESTAND BESTAND bestaat en het sticky bit staat aan\n" +#~ " -L BESTAND BESTAND bestaat en is a symbolische koppeling\n" +#~ " -O BESTAND BESTAND bestaat en is eigendom van de effectieve " +#~ "gebruiker ID\n" +#~ " -p BESTAND BESTAND bestaat en is a named pipe\n" +#~ " -r BESTAND BESTAND bestaat en is leesbaar\n" +#~ " -s BESTAND BESTAND bestaat en is groter dan nul bytes\n" +#~ " -S BESTAND BESTAND bestaat en is een socket\n" +#~ " -t [FD] BESTAND beschrijver FD (standaard stdout) is geopend via \n" +#~ " een terminal\n" +#~ " -u BESTAND BESTAND bestaat en its set-user-ID bit is set\n" +#~ " -w BESTAND BESTAND bestaat en is beschrijfbaar\n" +#~ " -x BESTAND BESTAND bestaat en is uitvoerbaar\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " -a, --all same as -b -d --login -p -r -t -T -u\n" +#~ " -b, --boot time of last system boot\n" +#~ " -d, --dead print dead processes\n" +#~ " -H, --heading print line of column headings\n" +#~ " -i, --idle add idle time as HOURS:MINUTES, . or old\n" +#~ " (deprecated, use -u)\n" +#~ " --login print system login processes\n" +#~ " (equivalent to SUS -l)\n" +#~ " -l, --lookup attempt to canonicalize hostnames via DNS\n" +#~ " (-l is deprecated, use --lookup)\n" +#~ " -m only hostname and user associated with stdin\n" +#~ " -p, --process print active processes spawned by init\n" +#~ " -q, --count all login names and number of users logged on\n" +#~ " -r, --runlevel print current runlevel\n" +#~ " -s, --short print only name, line, and time (default)\n" +#~ " -t, --time print last system clock change\n" +#~ " -T, -w, --mesg add user's message status as +, - or ?\n" +#~ " -u, --users lists users logged in\n" +#~ " --message same as -T\n" +#~ " --writable same as -T\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "If FILE is not specified, use %s. %s as FILE is common.\n" +#~ "If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +#~ msgstr "" +#~ "\n" +#~ " -H, --heading toon regel van kolom kop\n" +#~ " -i, -u, --idle voeg gebruikers `idle' tijd toe als UREN:MINUTEN, . " +#~ "of oud\n" +#~ " -m alleen hostname en gebruiker geassocieerd met stdin\n" +#~ " -q, --count alle login namen en nummer van ingelogde gebruikers\n" +#~ " -s (genegeerd)\n" +#~ " -T, -w, --mesg voeg gebruikers melding status toe als +, - or ?\n" +#~ " --message zelfde als -T\n" +#~ " --writable zelfde als -T\n" +#~ " --help toon hulp-tekst en bekindig programma\n" +#~ " --version toon versie-informatie en bekindig programma\n" +#~ "\n" +#~ "\n" +#~ "Als BESTAND niet gegeven is, gebruik uses %s. %s als BESTAND common is.\n" +#~ "Indien ARG1 ARG2 gegeven zijn, veronderstel -m: `am i' of `mom likes'\n" +#~ "zijn gebruikelijk.\n" + +#, fuzzy +#~ msgid "" +#~ "Repeatedly output a line with all specified STRING(s), or `y'.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Toon CRC-controlesom en het aantal bytes voor ieder BESTAND.\n" +#~ "\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#~ msgid "cannot get processor type" +#~ msgstr "kan geen processor type vinden" + +#~ msgid "USER" +#~ msgstr "GEBRUIKER" + +#~ msgid "MESG " +#~ msgstr "MELDING " + +#~ msgid "LOGIN-TIME " +#~ msgstr "LOGIN-TIJD " + +#~ msgid "FROM\n" +#~ msgstr "UIT\n" + +#~ msgid "" +#~ msgstr "" + +#, fuzzy +#~ msgid "Usage: %s [-v]\n" +#~ msgstr "Aanroep: %s [OPTIE]\n" + +#, fuzzy +#~ msgid "Usage: %s [OPTION]... [VARIABLE]...\n" +#~ msgstr "Aanroep: %s [OPTIE]... [BESTAND]...\n" + +#, fuzzy +#~ msgid "Usage: %s [OPTION]... NUMBER[SUFFIX]\n" +#~ msgstr "Aanroep: %s [OPTIE]... [BESTAND]...\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "(obsolete) If -VALUE is used as first OPTION, same as -c VALUE when one " +#~ "of\n" +#~ "multipliers bkm follows concatenated, else same as -n VALUE.\n" +#~ msgstr "" +#~ "Kopieer de eerste 10 regels van elk BESTAND naar standaard-uitvoer.\n" +#~ "Indien meerdere bestanden gegeven zijn, wordt de uitvoer van ieder\n" +#~ "bestand voorafgegaan door de bestandsnaam. Indien geen BESTAND\n" +#~ "gegeven is, of BESTAND is -, wordt de standaard invoer gelezen.\n" +#~ "\n" +#~ " -c, --bytes=GROOTTE print eerste GROOTTE bytes\n" +#~ " -n, --lines=AANTAL print eerste AANTAL regels in plaats van " +#~ "eerste 10\n" +#~ " -q, --quiet, --silent print nooit bestandsnamen als headers\n" +#~ " -v, --verbose print altijd bestandsnamen als headers\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" +#~ "\n" +#~ "GROOTTE mag een achtervoegsel hebben om aan te geven waarmee het\n" +#~ "vermenigvuldigd moet worden: b voor 512, k voor 1 Kilobyte, m voor 1\n" +#~ "Megabyte. Als -GROOTTE de eerste OPTIE is, lees -c GROOTTE wanneer\n" +#~ "een van de vermunigvuldigingsachtervoegsels bkm volgt, ander lees -n\n" +#~ "GROOTTE.\n" + +#, fuzzy +#~ msgid "warning: `od -w' is obsolete; use `od --width'" +#~ msgstr "let op: ongeldige breedte %lu; zal %d gebruiken" + +#, fuzzy +#~ msgid "warning: `pr -S' is obsolete; use `pr --sep-string'" +#~ msgstr "let op: ongeldige breedte %lu; zal %d gebruiken" + +#, fuzzy +#~ msgid "" +#~ " +POS1 [-POS2] start a key at POS1, end it before POS2 " +#~ "(origin 0)\n" +#~ " Warning: this option is obsolete\n" +#~ msgstr "" +#~ "Vergelijk gesorteerde bestanden BESTAND1 en BESTAND2 regel voor regel.\n" +#~ "\n" +#~ " -1 onderdruk regels die alleen in BESTAND1 voorkomen\n" +#~ " -2 onderdruk regels die alleen in BESTAND2 voorkomen\n" +#~ " -3 onderdruk regels die slechts in één van beide " +#~ "bestanden\n" +#~ " voorkomen\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#, fuzzy +#~ msgid "warning: `sort -y' is obsolete; omit `-y'" +#~ msgstr "let op: ongeldige breedte %lu; zal %d gebruiken" + +#, fuzzy +#~ msgid "warning: `tail %s' is obsolete; use -n or -c instead" +#~ msgstr "let op: ongeldige breedte %lu; zal %d gebruiken" + +#, fuzzy +#~ msgid "warning: `uniq %s' is obsolete; use `uniq -s %s' instead" +#~ msgstr "let op: ongeldige breedte %lu; zal %d gebruiken" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Toon CRC-controlesom en het aantal bytes voor ieder BESTAND.\n" +#~ "\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Toon CRC-controlesom en het aantal bytes voor ieder BESTAND.\n" +#~ "\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Toon CRC-controlesom en het aantal bytes voor ieder BESTAND.\n" +#~ "\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Toon CRC-controlesom en het aantal bytes voor ieder BESTAND.\n" +#~ "\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Toon CRC-controlesom en het aantal bytes voor ieder BESTAND.\n" +#~ "\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#, fuzzy +#~ msgid "" +#~ "Convert tabs in each FILE to spaces, writing to standard output.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -i, --initial do not convert TABs after non whitespace\n" +#~ " -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +#~ msgstr "" +#~ "Verander tabs in elk BESTAND naar spaties, de uitvoer gaat naar de\n" +#~ "standaard uitvoer. Indien geen BESTAND is gegeven, of BESTAND is -,\n" +#~ "wordt de standaard invoer gelezen.\n" +#~ "\n" +#~ " -i, --initial converteer TABs alleen na een witte ruimte\n" +#~ " -t, --tabs=NUMMER gebruik TABs van NUMMER posities, niet 8\n" +#~ " -t, --tabs=LIJST gebruik TAB-posities uit LIJST, door\n" +#~ " komma's gescheiden\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" +#~ "\n" +#~ "In plaats van -t NUMMER of -t LIJST, kan -NUMMER of -LIJST worden\n" +#~ "gebruikt.\n" + +#, fuzzy +#~ msgid "" +#~ " -t, --tabs=LIST use comma separated list of explicit tab positions\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n" +#~ msgstr "" +#~ "Verander tabs in elk BESTAND naar spaties, de uitvoer gaat naar de\n" +#~ "standaard uitvoer. Indien geen BESTAND is gegeven, of BESTAND is -,\n" +#~ "wordt de standaard invoer gelezen.\n" +#~ "\n" +#~ " -i, --initial converteer TABs alleen na een witte ruimte\n" +#~ " -t, --tabs=NUMMER gebruik TABs van NUMMER posities, niet 8\n" +#~ " -t, --tabs=LIJST gebruik TAB-posities uit LIJST, door\n" +#~ " komma's gescheiden\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" +#~ "\n" +#~ "In plaats van -t NUMMER of -t LIJST, kan -NUMMER of -LIJST worden\n" +#~ "gebruikt.\n" + +#, fuzzy +#~ msgid "" +#~ "Wrap input lines in each FILE (standard input by default), writing to\n" +#~ "standard output.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --bytes count bytes rather than columns\n" +#~ " -s, --spaces break at spaces\n" +#~ " -w, --width=WIDTH use WIDTH columns instead of 80\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vul invoer regels uit van elk BESTAND (standaard is de standaard " +#~ "invoer),\n" +#~ "de uitvoer gaat naar de standaard uitvoer.\n" +#~ "\n" +#~ " -b, --bytes tel bytes in plaats van kolommen\n" +#~ " -s, --spaces breek af op spaties\n" +#~ " -w, --width=BREEDTE gebruik BREEDTE kolommen in plaats van 80\n" +#~ " --help toon deze hulptekst en beëindig\n" +#~ " --version toon versie-informatie en beëindig\n" + +#, fuzzy +#~ msgid "" +#~ "Write lines consisting of the sequentially corresponding lines from\n" +#~ "each FILE, separated by TABs, to standard output.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +#~ " -s, --serial paste one file at a time instead of in " +#~ "parallel\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Schrijf regels welke sequentieel corresponderende regels bevatten vanuit\n" +#~ "BESTAND, gescheiden door TABs, naar standaard-uitvoer.\n" +#~ "Bij geen BESTAND of BESTAND is -, lees standaard-invoer.\n" +#~ "\n" +#~ " -d, --delimiters=LIJST hergebruik karakters uit LIJST in plaats van " +#~ "TABs\n" +#~ " -s, --serial paste one file at a time instead of in " +#~ "parallel\n" +#~ " --help toon hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ " -NUMBER same as -l NUMBER\n" +#~ " --verbose print a diagnostic to standard error just\n" +#~ " before each output file is opened\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +#~ msgstr "" +#~ "Bewaar stukjes van de INVOER van een vaste grootte naar VOORVOEGSELaa,\n" +#~ "VOORVOEGSELab, ...; standaard VOORVOEGSEL is `x'. Indien geen INVOER\n" +#~ "is gegeven, of INVOER is -, wordt de standaard invoer gelezen.\n" +#~ "\n" +#~ " -b, --bytes=N uitvoerbestanden zijn maximaal N bytes groot\n" +#~ " -C, --line-bytes=N uitvoerbestanden zijn maximaal N bytes aan\n" +#~ " hele regels groot\n" +#~ " -l, --lines=N uitvoerbestand bevat maximaal N regels\n" +#~ " -GROOTTE zelfde als -l GROOTTE\n" +#~ " --verbose geef een diagnose op de standaard\n" +#~ " fout-uitvoer vlak voor een uitvoerbestand\n" +#~ " geopend wordt\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" +#~ "\n" +#~ "N mag worden gevolgd door: b voor 512, k voor 1K, m voor 1 Meg.\n" + +#, fuzzy +#~ msgid "" +#~ "Write each FILE to standard output, last line first.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --before attach the separator before instead of after\n" +#~ msgstr "" +#~ "Print elk BESTAND naar standaard uitvoer, de laatste regel als eerste.\n" +#~ "Bij geen BESTAND of BESTAND is -, lees standaard-invoer.\n" +#~ "\n" +#~ " -b, --before plaats scheider voor i.p.v. achter de regel\n" +#~ " -r, --regex interpreteer de scheider als reguliere " +#~ "expressie\n" +#~ " -s, --separator=STRING gebruik STRING als scheider (nieuwe regel)\n" +#~ " --help toon hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" + +#, fuzzy +#~ msgid "" +#~ "Print the last %d lines of each FILE to standard output.\n" +#~ "With more than one FILE, precede each with a header giving the file " +#~ "name.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " --retry keep trying to open a file even if it is\n" +#~ " inaccessible when tail starts or if it " +#~ "becomes\n" +#~ " inaccessible later -- useful only with -f\n" +#~ msgstr "" +#~ "Kopieer de eerste 10 regels van elk BESTAND naar standaard-uitvoer.\n" +#~ "Indien meerdere bestanden gegeven zijn, wordt de uitvoer van ieder\n" +#~ "bestand voorafgegaan door de bestandsnaam. Indien geen BESTAND\n" +#~ "gegeven is, of BESTAND is -, wordt de standaard invoer gelezen.\n" +#~ "\n" +#~ " -c, --bytes=GROOTTE print eerste GROOTTE bytes\n" +#~ " -n, --lines=AANTAL print eerste AANTAL regels in plaats van " +#~ "eerste 10\n" +#~ " -q, --quiet, --silent print nooit bestandsnamen als headers\n" +#~ " -v, --verbose print altijd bestandsnamen als headers\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" +#~ "\n" +#~ "GROOTTE mag een achtervoegsel hebben om aan te geven waarmee het\n" +#~ "vermenigvuldigd moet worden: b voor 512, k voor 1 Kilobyte, m voor 1\n" +#~ "Megabyte. Als -GROOTTE de eerste OPTIE is, lees -c GROOTTE wanneer\n" +#~ "een van de vermunigvuldigingsachtervoegsels bkm volgt, ander lees -n\n" +#~ "GROOTTE.\n" + +#, fuzzy +#~ msgid "" +#~ " -t, --tabs=NUMBER have tabs NUMBER characters apart instead of 8\n" +#~ " -t, --tabs=LIST use comma separated list of explicit tab positions\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n" +#~ msgstr "" +#~ "Vervang spaties in elk BESTAND door tabs, uitvoer naar standaard-" +#~ "uitvoer.\n" +#~ "Bij geen BESTAND of BESTAND is -, lees standaard-invoer.\n" +#~ "\n" +#~ " -a, --all vervang alle, in plaats van alleen de initiele, " +#~ "witruimte\n" +#~ " -t, --tabs=NUMMER maak tabs NUMMER character breed in plaats van 8\n" +#~ " -t, --tabs=LIJST gebruik komma gesepereerde lijst van tab posities\n" +#~ " --help toon hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" +#~ "\n" +#~ "In plaats van -t NUMMER of -t LIJST, kan -NUMMER of -LIJST gebruikt " +#~ "worden.\n" + +#, fuzzy +#~ msgid "" +#~ "Output pieces of FILE separated by PATTERN(s) to files `xx01', " +#~ "`xx02', ...,\n" +#~ "and output byte counts of each piece to standard output.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --suffix-format=FORMAT use sprintf FORMAT instead of %%d\n" +#~ " -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +#~ " -k, --keep-files do not remove output files on errors\n" +#~ " -n, --digits=DIGITS use specified number of digits instead of 2\n" +#~ " -s, --quiet, --silent do not print counts of output file sizes\n" +#~ " -z, --elide-empty-files remove empty output files\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Read standard input if FILE is -. Each PATTERN may be:\n" +#~ "\n" +#~ " INTEGER copy up to but not including specified line number\n" +#~ " /REGEXP/[OFFSET] copy up to but not including a matching line\n" +#~ " %%REGEXP%%[OFFSET] skip to, but not including a matching line\n" +#~ " {INTEGER} repeat the previous pattern specified number of " +#~ "times\n" +#~ " {*} repeat the previous pattern as many times as " +#~ "possible\n" +#~ "\n" +#~ "A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +#~ msgstr "" +#~ "Maak deelbestanden `xx01', `xx02', ... van BESTAND, gescheiden op\n" +#~ "basis van PATROON, en geef het aantal bytes voor ieder deel weer naar\n" +#~ "de standaard-uitvoer.\n" +#~ "\n" +#~ " -b, --suffix-format=FORMAAT gebruik sprintf-FORMAAT in plaats van %%d\n" +#~ " -f, --prefix=VOORVOEGSEL gebruik VOORVOEGSEL in plaats van `xx'\n" +#~ " -k, --keep-files bewaar uitvoerbestanden bij fouten\n" +#~ " -n, --digits=N gebruik N cijfers in plaats van 2\n" +#~ " -s, --quiet, --silent geen informatie over de grootte van de\n" +#~ " uitvoer-bestanden\n" +#~ " -z, --elide-empty-files verwijder lege uitvoer-bestanden\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig " +#~ "programma\n" +#~ "\n" +#~ "Indien BESTAND een - is, wordt de standaard-invoer gelezen. Patronen\n" +#~ "mogen het volgende zijn:\n" +#~ "\n" +#~ " GEHEEL GETAL kopieer tot regelnummer GEHEEL GETAL\n" +#~ " /REGEXP/[OFFSET] kopieer tot de regel die overeenkomt met REGEXP\n" +#~ " %%REGEXP%%[OFFSET] negeer alles tot aan de regel die overeenkomt\n" +#~ " {GEHEEL GETAL} herhaal het voorgaande patroon GEHEEL GETAL maal\n" +#~ " {*} herhaal het voorgaande patroon zo vaak mogelijk\n" +#~ "\n" +#~ "Een regel-OFFSET is een verplichte `+' of `-' gevolgd door een\n" +#~ "positief geheel getal.\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "Print selected parts of lines from each FILE to standard output.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --bytes=LIST output only these bytes\n" +#~ " -c, --characters=LIST output only these characters\n" +#~ " -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +#~ " -f, --fields=LIST output only these fields; also print any line\n" +#~ " that contains no delimiter character, unless\n" +#~ " the -s option is specified\n" +#~ " -n (ignored)\n" +#~ " -s, --only-delimited do not print lines not containing delimiters\n" +#~ " --output-delimiter=STRING use STRING as the output delimiter\n" +#~ " the default is to use the input delimiter\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +#~ "range, or many ranges separated by commas. Each range is one of:\n" +#~ "\n" +#~ " N N'th byte, character or field, counted from 1\n" +#~ " N- from N'th byte, character or field, to end of line\n" +#~ " N-M from N'th to M'th (included) byte, character or field\n" +#~ " -M from first to M'th (included) byte, character or field\n" +#~ "\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ msgstr "" +#~ "Stuur de geselecteerde delen van regels uit elk BESTAND naar\n" +#~ "standaard-uitvoer.\n" +#~ "\n" +#~ " -b, --bytes=LIJST laat alleen deze bytes zien\n" +#~ " -c, --characters=LIJST toon alleen deze tekens\n" +#~ " -d, --delimiter=SCHEID gebruik SCHEID in plaats van TAB als " +#~ "veldscheiding\n" +#~ " -f, --fields=LIJST toon alleen deze velden\n" +#~ " -n (wordt genegeerd)\n" +#~ " -s, --only-delimited negeer de regels zonder scheidingstekens\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" +#~ "\n" +#~ "Gebruik precies één van -b, -c of -f. Elke LIJST is opgebouwd uit één\n" +#~ "of meerdere bereiken, gescheiden door komma's. Elk bereik is als\n" +#~ "volgt:\n" +#~ "\n" +#~ " N Nde byte, teken of veld, geteld vanaf 1\n" +#~ " N- vanaf de Nde byte, teken of veld, tot aan het einde van de regel\n" +#~ " N-M vanaf Nde tot en met de Mde byte, teken of veld\n" +#~ " -M vanaf de eerste tot en met de Mde byte, teken of veld\n" +#~ "\n" +#~ "Indien geen BESTAND is gegeven, of BESTAND is -, wordt de standaard\n" +#~ "invoer gelezen.\n" + +#~ msgid "" +#~ "For each pair of input lines with identical join fields, write a line to\n" +#~ "standard output. The default join field is the first, delimited\n" +#~ "by whitespace. When FILE1 or FILE2 (not both) is -, read standard " +#~ "input.\n" +#~ "\n" +#~ " -a SIDE print unpairable lines coming from file SIDE\n" +#~ " -e EMPTY replace missing input fields with EMPTY\n" +#~ " -i, --ignore-case ignore differences in case when comparing fields\n" +#~ " -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +#~ " -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +#~ " -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +#~ " -o FORMAT obey FORMAT while constructing output line\n" +#~ " -t CHAR use CHAR as input and output field separator\n" +#~ " -v SIDE like -a SIDE, but suppress joined output lines\n" +#~ " -1 FIELD join on this FIELD of file 1\n" +#~ " -2 FIELD join on this FIELD of file 2\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +#~ "else fields are separated by CHAR. Any FIELD is a field number counted\n" +#~ "from 1. FORMAT is one or more comma or blank separated specifications,\n" +#~ "each being `SIDE.FIELD' or `0'. Default FORMAT outputs the join field,\n" +#~ "the remaining fields from FILE1, the remaining fields from FILE2, all\n" +#~ "separated by CHAR.\n" +#~ msgstr "" +#~ "Geef een regel uitvoer voor ieder paar invoerregels met identieke\n" +#~ "samenvoegregels naar de standaard uitvoer. Het standaard\n" +#~ "samenvoegveld is het eerste, afgesloten door een ruimteteken. Indien\n" +#~ "BESTAND1 of BESTAND2 (nooit allebei) - is, wordt de standaard invoer\n" +#~ "gelezen.\n" +#~ "\n" +#~ " -a ZIJDE geef de niet samenvoegbare regels uit bestand ZIJDE\n" +#~ " -e LEEG vervang de ontbrekende invoervelden met LEEG\n" +#~ " -i, --ignore-case negeer verschillen tussen hoofd- en kleine letters\n" +#~ " -j VELD (verouderd) equivalent met `-1 VELD -2 VELD'\n" +#~ " -j1 VELD (verouderd) equivalent met `-1 VELD'\n" +#~ " -j2 VELD (verouderd) equivalent met `-2 VELD'\n" +#~ " -o FORMAAT gebruik FORMAAT bij het samenstellen van de\n" +#~ " uitvoerregels\n" +#~ " -t TEKEN gebruik TEKEN als scheidingsteken in invoer en\n" +#~ " uitvoer\n" +#~ " -v VIJDE zelfde als -a ZIJDE, maar onderdruk gecombineerde\n" +#~ " uitvoerregels\n" +#~ " -1 VELD combineer op dit VELD uit bestand 1\n" +#~ " -2 VELD combineer op dit VELD uit bestand 2\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" +#~ "\n" +#~ "Tenzij -t TEKEN gegeven is, worden voorgaande ruimtes en losstaande\n" +#~ "velden genegeerd, anders worden de velden gescheiden door TEKEN.\n" +#~ "Ieder VELD is een veldnummer geteld vanaf 1. FORMAAT is een of\n" +#~ "meerdere specificaties gescheiden door een komma of ruimteteken, een\n" +#~ "specificatie is `ZIJDE.VELD' of `0'. Standaard FORMAAT geeft het\n" +#~ "samenvoegveld, de overgebleven velden uit BESTAND1, de overgebleven\n" +#~ "velden uit BESTAND2, allemaal gescheiden door TEKEN.\n" + +#, fuzzy +#~ msgid "" +#~ "Usage: %s [OPTION] [FILE]...\n" +#~ " or: %s [OPTION] --check [FILE]\n" +#~ "Print or check %s (%d-bit) checksums.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ " -b, --binary read files in binary mode (default on DOS/" +#~ "Windows)\n" +#~ " -c, --check check %s sums against given list\n" +#~ " -t, --text read files in text mode (default)\n" +#~ "\n" +#~ "The following two options are useful only when verifying checksums:\n" +#~ " --status don't output anything, status code shows " +#~ "success\n" +#~ " -w, --warn warn about improperly formated checksum lines\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "The sums are computed as described in %s. When checking, the input\n" +#~ "should be a former output of this program. The default mode is to print\n" +#~ "a line with checksum, a character indicating type (`*' for binary, ` ' " +#~ "for\n" +#~ "text), and name for each FILE.\n" +#~ msgstr "" +#~ "Aanroep: %s [OPTIE] [BESTAND]...\n" +#~ " of: %s [OPTIE] --check [BESTAND]\n" +#~ "Toon of controleer MD5 controlegetallen.\n" +#~ "Indien geen BESTAND is gegeven, of BESTAND is -, wordt de standaard\n" +#~ "invoer gelezen.\n" +#~ "\n" +#~ " -b, --binary lees bestanden in binaire mode (standaard in\n" +#~ " DOS/Windows)\n" +#~ " -c, --check controleer MD5 sommen a.d.h. een lijst\n" +#~ " -t, --text lees bestanden in tekst mode (standaard)\n" +#~ "\n" +#~ "De volgende twee opties zijn van nut bij het verifiëren van\n" +#~ "controlesommen:\n" +#~ " --status geen uitvoer, de statuscode geeft succes aan\n" +#~ " -w, --warn waarschuw in geval van onjuist opgemaakte\n" +#~ " regels met MD5 controlegetallen\n" +#~ "\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" +#~ "\n" +#~ "De sommen worden berekend zoals beschreven in RFC 1321. Bij controle\n" +#~ "moet de invoer de uitvoer zijn van dit programma. Standaard wordt een\n" +#~ "regel gegeven met de kontrolesom, een karakter representatief voor het\n" +#~ "bestandstype (`*' is binair, ` ' is tekst) en de naam van elk BESTAND.\n" + +#, fuzzy +#~ msgid "" +#~ "Write each FILE to standard output, with line numbers added.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +#~ " -d, --section-delimiter=CC use CC for separating logical pages\n" +#~ " -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +#~ " -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +#~ " -i, --page-increment=NUMBER line number increment at each line\n" +#~ " -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +#~ "one\n" +#~ " -n, --number-format=FORMAT insert line numbers according to " +#~ "FORMAT\n" +#~ " -p, --no-renumber do not reset line numbers at logical " +#~ "pages\n" +#~ " -s, --number-separator=STRING add STRING after (possible) line " +#~ "number\n" +#~ " -v, --first-page=NUMBER first line number on each logical page\n" +#~ " -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +#~ "two delimiter characters for separating logical pages, a missing\n" +#~ "second character implies :. Type \\\\ for \\. STYLE is one of:\n" +#~ "\n" +#~ " a number all lines\n" +#~ " t number only nonempty lines\n" +#~ " n number no lines\n" +#~ " pREGEXP number only lines that contain a match for REGEXP\n" +#~ "\n" +#~ "FORMAT is one of:\n" +#~ "\n" +#~ " ln left justified, no leading zeros\n" +#~ " rn right justified, no leading zeros\n" +#~ " rz right justified, leading zeros\n" +#~ "\n" +#~ msgstr "" +#~ "Stuur elk BESTAND naar standaard-uitvoer, regels voorafgegaan door\n" +#~ "regelnummers. Bij geen BESTAND of BESTAND is -, lees standaard-invoer.\n" +#~ "\n" +#~ " -b, --body-numbering=STIJL gebruik STIJL voor nummering " +#~ "bodyregels\n" +#~ " -d, --section-delimiter=CC gebruik CC voor seperatie logische " +#~ "pagina's\n" +#~ " -f, --footer-numbering=STIJL gebruik STIJL voor nummering " +#~ "voetregels\n" +#~ " -h, --header-numbering=STIJL gebruik STIJL voor nummering " +#~ "hoofdregels\n" +#~ " -i, --page-increment=NUMMER regelnummer toename bij elke regel\n" +#~ " -l, --join-blank-lines=NUMMER groep van NUMMER lege regels telt voor " +#~ "een\n" +#~ " -n, --number-format=FORMAAT voeg regelnummers in volgens FORMAAT\n" +#~ " -p, --no-renumber geen hernummering bij logische " +#~ "pagina's\n" +#~ " -s, --number-separator=STRING voeg STRING toe na (mogelijk) " +#~ "regelnummer\n" +#~ " -v, --first-page=NUMMER eerste regelnummer op elke logische " +#~ "pagina\n" +#~ " -w, --number-width=NUMMER gebruik NUMMER kolommen voor " +#~ "regelnummers\n" +#~ " --help toon hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" +#~ "\n" +#~ "Standaard opties: -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC zijn\n" +#~ "twee begrenzingskarakters voor onderscheiden logisch pagina's, een " +#~ "missend\n" +#~ "tweede karakter impliceert:. Gebruik \\\\ voor \\. STIJL is een van:\n" +#~ "\n" +#~ " a nummer alle regels\n" +#~ " t nummer alle niet lege regels\n" +#~ " n number geen enkele regel\n" +#~ " pREGEXP nummer de regels welke een REGEXP bevatten\n" +#~ "\n" +#~ "FORMAAT is een van:\n" +#~ "\n" +#~ " ln links uitgelijnd, geen voorloopnullen\n" +#~ " rn rechts uitgelijnd, geen voorloopnullen\n" +#~ " rz rechts uitgelijnd, voorloopnullen\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Write an unambiguous representation, octal bytes by default,\n" +#~ "of FILE to standard output. With more than one FILE argument,\n" +#~ "concatenate them in the listed order to form the input.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -A, --address-radix=RADIX decide how file offsets are printed\n" +#~ " -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +#~ " -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +#~ " -s, --strings[=BYTES] output strings of at least BYTES graphic " +#~ "chars\n" +#~ " -t, --format=TYPE select output format or formats\n" +#~ " -v, --output-duplicates do not use * to mark line suppression\n" +#~ " -w, --width[=BYTES] output BYTES bytes per output line\n" +#~ " --traditional accept arguments in pre-POSIX form\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Pre-POSIX format specifications may be intermixed, they accumulate:\n" +#~ " -a same as -t a, select named characters\n" +#~ " -b same as -t oC, select octal bytes\n" +#~ " -c same as -t c, select ASCII characters or backslash escapes\n" +#~ " -d same as -t u2, select unsigned decimal shorts\n" +#~ " -f same as -t fF, select floats\n" +#~ " -h same as -t x2, select hexadecimal shorts\n" +#~ " -i same as -t d2, select decimal shorts\n" +#~ " -l same as -t d4, select decimal longs\n" +#~ " -o same as -t o2, select octal shorts\n" +#~ " -x same as -t x2, select hexadecimal shorts\n" +#~ msgstr "" +#~ "Geef een ondubbelzinnige representatie van BESTAND naar de standaard\n" +#~ "uitvoer. Standaard is dit met octale bytes. Indien geen BESTAND is\n" +#~ "gegeven, of BESTAND is -, wordt de standaard invoer gelezen.\n" +#~ "\n" +#~ " -A, --address-radix=GETAL beslis over hoe de offset in het bestand\n" +#~ " gegeven wordt\n" +#~ " -j, --skip-bytes=BYTES sla BYTES invoer bytes over bij elk\n" +#~ " bestand\n" +#~ " -N, --read-bytes=BYTES beperk de dump tot BYTES invoer bytes\n" +#~ " per bestand\n" +#~ " -s, --strings[=N] geef tekst van ten minste N afdrukbare\n" +#~ " tekens\n" +#~ " -t, --format=TYPE selekteer uitvoerformaat of -formaten\n" +#~ " -v, --output-duplicates gebruik geen * om regelonderdrukking te\n" +#~ " markeren\n" +#~ " -w, --width[=BYTES] geef maximaal BYTES bytes per\n" +#~ " uitvoerregel\n" +#~ " --traditional accepteer argumenten in pre-POSIX vorm\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig " +#~ "programma\n" +#~ "\n" +#~ "Pre-POSIX specificaties voor de opmaak mogen door elkaar gebruikt worden, " +#~ "ze \n" +#~ " -a zelfde als -t a, selecteer genoemde tekens\n" +#~ " -b zelfde als -t oC, selecteer octale bytes\n" +#~ " -c zelfde als -t c, selecteer ASCII tekens of aangahaald met " +#~ "backslash\n" +#~ " -d zelfde als -t u2, selecteer positief decimaal kort\n" +#~ " -f zelfde als -t fF, selecteer drijvende komma\n" +#~ " -h zelfde als -t x2, selecteer hexadecimaal kort\n" +#~ " -i zelfde als -t d2, selecteer decimaal kort\n" +#~ " -l zelfde als -t d4, selecteer decimaal lang\n" +#~ " -o zelfde als -t o2, selecteer octaal kort\n" +#~ " -x zelfde als -t x2, selecteer hexadecimaal kort\n" + +#~ msgid "" +#~ "\n" +#~ "For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +#~ "is the pseudo-address at first byte printed, incremented when dump is\n" +#~ "progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +#~ "hexadecimal, suffixes maybe . for octal and b multiply by 512.\n" +#~ "\n" +#~ "TYPE is made up of one or more of these specifications:\n" +#~ "\n" +#~ " a named character\n" +#~ " c ASCII character or backslash escape\n" +#~ " d[SIZE] signed decimal, SIZE bytes per integer\n" +#~ " f[SIZE] floating point, SIZE bytes per integer\n" +#~ " o[SIZE] octal, SIZE bytes per integer\n" +#~ " u[SIZE] unsigned decimal, SIZE bytes per integer\n" +#~ " x[SIZE] hexadecimal, SIZE bytes per integer\n" +#~ "\n" +#~ "SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +#~ "sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +#~ "sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +#~ "for sizeof(double) or L for sizeof(long double).\n" +#~ "\n" +#~ "RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +#~ "BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +#~ "with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix " +#~ "to\n" +#~ "any type adds a display of printable characters to the end of each line\n" +#~ "of output. -s without a number implies 3. -w without a number implies " +#~ "32.\n" +#~ "By default, od uses -A o -t d2 -w 16.\n" +#~ msgstr "" +#~ "\n" +#~ "Voor de oudere syntax (formaat van de tweede ronde), betekent OFFSET\n" +#~ "-j OFFSET. LABEL is het pseudo-addres vanaf eerste gegeven byte,\n" +#~ "oplopend naarmate de dump vordert. Voor OFFSET en LABEL geeft een 0x\n" +#~ "of 0X voorvoegsel aan dat het in hexadecimaal is, met misschien een\n" +#~ "achtervoegsel. Vermenigvuldig met 512 voor octaal en b.\n" +#~ "\n" +#~ "TYPE is samengesteld uit een of meer van de volgende specificaties:\n" +#~ "\n" +#~ " a teken met naam\n" +#~ " c ASCII teken of aangehaald met backslash\n" +#~ " d[GROOTTE] decimaal met teken, GROOTTE bytes per getal\n" +#~ " f[GROOTTE] drijvende komma, GROOTTE bytes per getal\n" +#~ " o[GROOTTE] octaal, GROOTTE bytes per getal\n" +#~ " u[GROOTTE] positief decimaal, GROOTTE bytes per getal\n" +#~ " x[GROOTTE] hexadecimaal, GROOTTE bytes per getal\n" +#~ "\n" +#~ "GROOTTE is een nummer. Als TYPE één van [doux] is, mag GROOTTE C zijn\n" +#~ "voor grootte(teken), S voor grootte(kort), I voor grootte(getal) of L\n" +#~ "voor grootte(lang). Als TYPE f is, mag GROOTTE F zijn voor\n" +#~ "groote(drijvend), D voor grootte(dubbel drijvend) of L voor\n" +#~ "grootte(lang drijvend).\n" +#~ "\n" +#~ "GROND is d voor decimaal, o voor octaal, x voor hexadecimaal of n voor\n" +#~ "niets. BYTES is hexadecimaal met 0x of 0X voorvoegsel,\n" +#~ "vermenigvuldigd met 512 als b het achtervoegsel is, 1024 met k en\n" +#~ "1048576 bij m. Toevoeging van z achtervoegsel bij een soort zorgt\n" +#~ "voor de toevoeging van de afdrukbare tekens achteraan een regel\n" +#~ "invoer. -s zonder een nummer betekent 3. -w zonder nummer is\n" +#~ "hetzelfde als 32. Standaard gebruik od -A o -t d2 -w 16.\n" + +#, fuzzy +#~ msgid "" +#~ "Paginate or columnate FILE(s) for printing.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +#~ " begin [stop] printing with page FIRST_[LAST_]PAGE\n" +#~ " -COLUMN, --columns=COLUMN\n" +#~ " produce COLUMN-column output and print columns down,\n" +#~ " unless -a is used. Balance number of lines in the\n" +#~ " columns on each page.\n" +#~ " -a, --across print columns across rather than down, used together\n" +#~ " with -COLUMN\n" +#~ " -c, --show-control-chars\n" +#~ " use hat notation (^G) and octal backslash notation\n" +#~ " -d, --double-space\n" +#~ " double space the output\n" +#~ " -D, --date-format=FORMAT\n" +#~ " use FORMAT for the header date\n" +#~ " -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +#~ " expand input CHARs (TABs) to tab WIDTH (8)\n" +#~ " -F, -f, --form-feed\n" +#~ " use form feeds instead of newlines to separate pages\n" +#~ " (by a 3-line page header with -F or a 5-line header\n" +#~ " and trailer without -F)\n" +#~ msgstr "" +#~ "Maak BESTAND(en) op voor afdrukken.\n" +#~ "\n" +#~ " +EERSTE_PAGINA[:LAATSTE_PAGINA], --pages=EERSTE_PAGINA[:" +#~ "LAATSTE_PAGINA]\n" +#~ " begin [beëindig] printen bij pagina EERSTE_[LAATSTE_]" +#~ "PAGINA\n" +#~ " -KOLOM, --columns=KOLOM\n" +#~ " maak een uitvoer die KOLOM kolommen breed is, en\n" +#~ " druk de kolommen naar beneden af, tenzij -a\n" +#~ " gebruikt wordt. Balanceer het aantal regels in een\n" +#~ " kolom op alle pagina's.\n" +#~ " -a, --across druk de kolommen overdwars af in plaats van naar\n" +#~ " beneden, gebruik samen met -KOLOM\n" +#~ " -c, --show-control-chars\n" +#~ " gebruik dakjes (^G) en octale notatie met\n" +#~ " backslashes\n" +#~ " -d, --double-space\n" +#~ " verdubbel de ruimte in de uitvoer\n" +#~ " -e[TEKEN[BREEDTE]], --expand-tabs[=TEKEN[BREEDTE]]\n" +#~ " verander TEKENs in de invoer (TABs) naar tab\n" +#~ " BREEDTE (8)\n" +#~ " -F, -f, --form-feed\n" +#~ " gebruik paginadoorvoer in plaats van nieuwe regels\n" +#~ " om twee pagina's te scheiden (met een kop van 3\n" +#~ " regels met -F of een kop- en voettekst van 5\n" +#~ " regels zonder -F)\n" + +#, fuzzy +#~ msgid "" +#~ " -h HEADER, --header=HEADER\n" +#~ " use a centered HEADER instead of filename in page " +#~ "header,\n" +#~ " -h \"\" prints a blank line, don't use -h\"\"\n" +#~ " -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +#~ " replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +#~ " -J, --join-lines merge full lines, turns off -W line truncation, no " +#~ "column\n" +#~ " alignment, -S[STRING] sets separators\n" +#~ " -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +#~ " set the page length to PAGE_LENGTH (66) lines\n" +#~ " (default number of lines of text 56, and with -F 63)\n" +#~ " -m, --merge print all files in parallel, one in each column,\n" +#~ " truncate lines, but join lines of full length with -" +#~ "J\n" +#~ " -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +#~ " number lines, use DIGITS (5) digits, then SEP (TAB),\n" +#~ " default counting starts with 1st line of input file\n" +#~ " -N NUMBER, --first-line-number=NUMBER\n" +#~ " start counting with NUMBER at 1st line of first\n" +#~ " page printed (see +FIRST_PAGE)\n" +#~ " -o MARGIN, --indent=MARGIN\n" +#~ " offset each line with MARGIN (zero) spaces, do not\n" +#~ " affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +#~ " -r, --no-file-warnings\n" +#~ " omit warning when a file cannot be opened\n" +#~ msgstr "" +#~ " -h KOP, --header=KOP\n" +#~ " gebruik een gecentreerde KOP inplaats van\n" +#~ " bestandsnaam in de koptekst op een pagina, lange\n" +#~ " kopteksten kunnen aan de linker kant afgekapt\n" +#~ " worden, -h \"\" geeft een lege regel, gebruik -h " +#~ "\"\"\n" +#~ " niet.\n" +#~ " -i[TEKEN[BREEDTE]], --output-tabs[=TEKEN[BREEDTE]]\n" +#~ " vervang spaties door TEKENs (TABs) tot aan de\n" +#~ " tabbreedte (8)\n" +#~ " -J, --join-lines voeg volle regels samen, zet de -W regelafbreking\n" +#~ " uit, geen kolomuitlijning, -S[TEKST] geeft de\n" +#~ " scheiding\n" +#~ " -l PAGINALENGTE, --length=PAGINALENGTE\n" +#~ " stelt de paginalengte in op PAGINALENGTE (66)\n" +#~ " regels (standaard aantal regels is 56, en met -F\n" +#~ " 63)\n" +#~ " -m, --merge druk alle bestanden parallel af, een in iedere\n" +#~ " kolom, kap regels af, maar voeg volle regels samen\n" +#~ " met -J\n" +#~ " -n[SCHEID[CIJFERS]], --number-lines[=SCHEID[CIJFERS]]\n" +#~ " nummer regels, met CIJFERS (5) cijfers, dan een\n" +#~ " SCHEID (TAB), standaard begint het tellen bij de\n" +#~ " eerste regel van de invoer\n" +#~ " -N NUMMER, --first-line-number=NUMMER\n" +#~ " begin met tellen bij NUMMER op de eerste regel van\n" +#~ " de eerste pagina (zie +EERSTE_PAGINA)\n" +#~ " -o MARGE, --indent=MARGE\n" +#~ " begin iedere regel met MARGE (0) spaties, geen\n" +#~ " effect op -w of -W, MARGE wordt toegevoegd aan\n" +#~ " PAGINABREEDTE\n" +#~ " -r, --no-file-warnings\n" +#~ " geef geen waarschuwing als een bestand niet\n" +#~ " gelezen kan worden\n" + +#~ msgid "" +#~ " -s[CHAR],--separator[=CHAR]\n" +#~ " separate columns by a single character, default for " +#~ "CHAR\n" +#~ " is the character without -w and 'no char' with -" +#~ "w\n" +#~ " -s[CHAR] turns off line truncation of all 3 column\n" +#~ " options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +#~ " -S[STRING], --sep-string[=STRING]\n" +#~ " separate columns by an optional STRING, don't use\n" +#~ " -S \"STRING\", -S only: No separator used (same as -S" +#~ "\"\"),\n" +#~ " without -S: Default separator with -J and " +#~ "\n" +#~ " otherwise (same as -S\" \"), no effect on column " +#~ "options\n" +#~ " -t, --omit-header omit page headers and trailers\n" +#~ " -T, --omit-pagination\n" +#~ " omit page headers and trailers, eliminate any " +#~ "pagination\n" +#~ " by form feeds set in input files\n" +#~ " -v, --show-nonprinting\n" +#~ " use octal backslash notation\n" +#~ " -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +#~ " set page width to PAGE_WIDTH (72) characters for\n" +#~ " multiple text-column output only, -s[char] turns off " +#~ "(72)\n" +#~ " -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +#~ " set page width to PAGE_WIDTH (72) characters always,\n" +#~ " truncate lines, except -J option is set, no " +#~ "interference\n" +#~ " with -S or -s\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +#~ "FILE is -, read standard input.\n" +#~ msgstr "" +#~ " -s[TEKEN], --separator[=TEKEN]\n" +#~ " scheid kolommen door een enkel teken, stardaard\n" +#~ " TEKEN is het teken zonder -w en `geen' met\n" +#~ " -w. -s[TEKEN] zet de regelafkapping uit voor alle\n" +#~ " drie de kolomopties (-KOLOM|-a KOLOM|-m) tenzij -w\n" +#~ " gegeven is\n" +#~ " -t, --omit-header geen kop- en voetteksten\n" +#~ " -T, --omit-pagination\n" +#~ " geen kop- en voetteksten, en geen paginadoorvoer\n" +#~ " door pagina-eindes in de invoerbestanden\n" +#~ " -v, --show-nonprinting\n" +#~ " gebruik octale nummers met backslashes\n" +#~ " -w PAGINABREEDTE, --width=PAGINABREEDTE\n" +#~ " stel de paginabreedte in op PAGINABREEDTE (72)\n" +#~ " tekens alleen voor meerkolomse uitvoer, -s[teken]\n" +#~ " zet het uit (72)\n" +#~ " -W PAGINABREEDTE, --page-width=PAGINABREEDTE\n" +#~ " stel de paginabreedte altijd in op PAGINABREEDTE\n" +#~ " (72) tekens, tenzij -J gegeven, dit heeft geen\n" +#~ " invloed op -S of -s\n" +#~ " --help toon deze hulptekst en beëindig\n" +#~ " --version toon versie-informatie en beëindig\n" +#~ "\n" +#~ "-l nn betekent -T indien nn <= 10 of <= 3 met -F. Indien geen BESTAND\n" +#~ "is gegeven, of BESTAND is -, wordt de standaard invoer gelezen.\n" + +#, fuzzy +#~ msgid "" +#~ "Output a permuted index, including context, of the words in the input " +#~ "files.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -A, --auto-reference output automatically generated " +#~ "references\n" +#~ " -C, --copyright display Copyright and copying " +#~ "conditions\n" +#~ " -G, --traditional behave more like System V `ptx'\n" +#~ " -F, --flag-truncation=STRING use STRING for flagging line " +#~ "truncations\n" +#~ " -M, --macro-name=STRING macro name to use instead of `xx'\n" +#~ " -O, --format=roff generate output as roff directives\n" +#~ " -R, --right-side-refs put references at right, not counted in -" +#~ "w\n" +#~ " -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +#~ " -T, --format=tex generate output as TeX directives\n" +#~ " -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +#~ " -b, --break-file=FILE word break characters in this FILE\n" +#~ " -f, --ignore-case fold lower case to upper case for " +#~ "sorting\n" +#~ " -g, --gap-size=NUMBER gap size in columns between output " +#~ "fields\n" +#~ " -i, --ignore-file=FILE read ignore word list from FILE\n" +#~ " -o, --only-file=FILE read only word list from this FILE\n" +#~ " -r, --references first field of each line is a reference\n" +#~ " -t, --typeset-mode - not implemented -\n" +#~ " -w, --width=NUMBER output width in columns, reference " +#~ "excluded\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +#~ msgstr "" +#~ "Verplichte argumenten voor lange opties zijn ook verplicht voor korte\n" +#~ "opties.\n" +#~ "\n" +#~ "\n" +#~ " -A, --auto-reference automatisch gegerereerde referenties\n" +#~ " -C, --copyright geef Copyright en " +#~ "distributievoorwaarden\n" +#~ " -G, --traditional gedrag volgens System V `ptx'\n" +#~ " -F, --flag-truncation=TEKST gebruik TEKST om regelafkappingen te\n" +#~ " markeren\n" +#~ " -M, --macro-name=TEKST macro om te gebruiken in plaats van " +#~ "`xx'\n" +#~ " -O, --format=roff genereer uitvoer als roff opdrachten\n" +#~ " -R, --right-side-refs zet referenties aan de rechter kant,\n" +#~ " niet geteld met -w\n" +#~ " -S, --sentence-regexp=REGEXP voor het einde van regels of zinnen\n" +#~ " -T, --format=tex genereer uitvoer als TeX opgrachten\n" +#~ " -W, --word-regexp=REGEXP gebruik REGEXP om sleutelwoorden te\n" +#~ " vinden\n" +#~ " -b, --break-file=BESTAND woordafbreektekens in dit BESTAND\n" +#~ " -f, --ignore-case maak hoofdletters van kleine letters\n" +#~ " voor sorteren\n" +#~ " -g, --gap-size=AANTAL gatgrootte in kolommen tussen\n" +#~ " uitvoervelden\n" +#~ " -i, --ignore-file=BESTAND lees een lijst met te negeren woorden\n" +#~ " uit BESTAND\n" +#~ " -o, --only-file=BESTAND lees een lijst met woorden die alleen\n" +#~ " gebruikt mogen worden uit BESTAND\n" +#~ " -r, --references eerste veld van iedere regel is een\n" +#~ " verwijzing\n" +#~ " -t, --typeset-mode - niet geïmplementeerd -\n" +#~ " -w, --width=AANTAL uitvoerbreedte in kolommen, exclusief\n" +#~ " de verwijzingen\n" +#~ " --help toon deze hulptekst en beëindig\n" +#~ " --version toon versie-informatie en beëindig\n" +#~ "\n" +#~ "Indien geen BESTAND is gegeven, of BESTAND is -, wordt de standaard\n" +#~ "invoer gelezen. `-F /' is standaard.\n" + +#, fuzzy +#~ msgid "" +#~ "Other options:\n" +#~ "\n" +#~ " -c, --check check whether input is sorted; do not sort\n" +#~ " -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin " +#~ "1)\n" +#~ " -m, --merge merge already sorted files; do not sort\n" +#~ " -o, --output=FILE write result to FILE instead of standard " +#~ "output\n" +#~ " -s, --stable stabilize sort by disabling last-resort " +#~ "comparison\n" +#~ " -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +#~ " -t, --field-separator=SEP use SEP instead of non- to whitespace " +#~ "transition\n" +#~ " -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %" +#~ "s\n" +#~ " multiple options specify multiple " +#~ "directories\n" +#~ " -u, --unique with -c: check for strict ordering\n" +#~ " otherwise: output only the first of an " +#~ "equal run\n" +#~ " -z, --zero-terminated end lines with 0 byte, not newline\n" +#~ " +POS1 [-POS2] start a key at POS1, end it before POS2 " +#~ "(origin 0)\n" +#~ " Warning: this option is obsolescent\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Schrijf gesorteerde samenvoeging van BESTAND(en) naar standaard\n" +#~ "uitvoer.\n" +#~ "\n" +#~ " +POS1 [-POS2] begin een sorteersleutel bij POS1 en eindig *voor*\n" +#~ " POS2(verouderd). Veldnummers en tekenoffsets\n" +#~ " worden geteld vanaf nul (tegengesteld aan -k)\n" +#~ " -b negeer voorafgaande spaties in gesorteerde velden\n" +#~ " of sleutels\n" +#~ " -c controleer of bestanden gesorteerd zijn, sorteer ze\n" +#~ " niet\n" +#~ " -d verwacht enkel de tekens [a-zA-Z0-9 ] in sleutels\n" +#~ " -f verander kleine letters in hoofdletter in sleutels\n" +#~ " -g vergelijk volgens numerieke waarde, impliceert -b\n" +#~ " -i verwacht enkel de tekens [\\040-\\0176] in sleutels\n" +#~ " -k POS1[,POS2] begin een sleutel op POS1, en eindig *op* POS2.\n" +#~ " Veldnummers en tekenoffsets worden geteld vanaf één\n" +#~ " (+POS-vorm telt vanaf nul)\n" +#~ " -m voeg reeds gesorteerde bestanden samen, sorteer niet\n" +#~ " -M vergelijk (onbekend) < `JAN' < ... < `DEC',\n" +#~ " betekent -b\n" +#~ " -n vergelijk volgens de numerieke waarde van de tekst,\n" +#~ " betekent -b\n" +#~ " -o BESTAND schrijf resultaat naar BESTAND i.p.v. de standaard\n" +#~ " uitvoer\n" +#~ " -r draai het resultaat van de vergelijking om\n" +#~ " -s stabiliseer de sortering door het uitschakelen van\n" +#~ " de `last resort' vergelijking\n" +#~ " -t SCHEID gebruik SCHEIDing i.p.v. de overgang van tekens\n" +#~ " naar lege ruimte\n" +#~ " -T MAP gebruik MAP voor tijdelijke bestanden, niet $TMPDIR\n" +#~ " of %s\n" +#~ " -u met -c, controleer voor strikte volgorde;\n" +#~ " met -m, geef alleen de eerste van een opeenvolging\n" +#~ " van gelijken\n" +#~ " -z eindig regels met een nulteken, i.v.m find -print0\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "Print the last %d lines of each FILE to standard output.\n" +#~ "With more than one FILE, precede each with a header giving the file " +#~ "name.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " --retry keep trying to open a file even if it is\n" +#~ " inaccessible when tail starts or if it " +#~ "becomes\n" +#~ " inaccessible later -- useful only with -f\n" +#~ " -c, --bytes=N output the last N bytes\n" +#~ " -f, --follow[={name|descriptor}]\n" +#~ " output appended data as the file grows;\n" +#~ " -f, --follow, and --follow=descriptor are\n" +#~ " equivalent\n" +#~ " -F same as --follow=name --retry\n" +#~ " -n, --lines=N output the last N lines, instead of the last %" +#~ "d\n" +#~ " --max-unchanged-stats=N\n" +#~ " with --follow=name, reopen a FILE which has " +#~ "not\n" +#~ " changed size after N (default %d) iterations\n" +#~ " to see if it has been unlinked or renamed\n" +#~ " (this is the usual case of rotated log files)\n" +#~ " --pid=PID with -f, terminate after process ID, PID dies\n" +#~ " -q, --quiet, --silent never output headers giving file names\n" +#~ " -s, --sleep-interval=S with -f, each iteration lasts approximately S\n" +#~ " (default 1) seconds\n" +#~ " -v, --verbose always output headers giving file names\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Geef de laatste %d regels van ieder BESTAND weer op de standaard\n" +#~ "uitvoer. Indien meer dan een BESTAND is gegeven, wordt iedere uitvoer\n" +#~ "voorafgegaan door de bestandsnaam. Indien geen BESTAND is gegeven, of\n" +#~ "BESTAND is -, wordt de standaard invoer gelezen.\n" +#~ "\n" +#~ " --retry blijf proberen het bestand te openen, zelfs\n" +#~ " als het ontoegankelijk is als tail opstart,\n" +#~ " of als het later ontoegankelijk wordt --\n" +#~ " alleen nuttig met -f\n" +#~ " -c, --bytes=N geef de laatste N bytes\n" +#~ " -f, --follow[={name|descriptor}] geef toegevoegde gegevens naarmate\n" +#~ " het bestand groter wordt; -f, --follow, en\n" +#~ " --follow=descriptor zijn equivalent\n" +#~ " -n, --lines=N geef de laatste N regels in plaats van de\n" +#~ " laatste %d\n" +#~ " --max-unchanged-stats=N zie de texinfo documentatie\n" +#~ " (standaard %d)\n" +#~ " --max-consecutive-size-changes=N zie de texinfo documentatie\n" +#~ " (standaard %d)\n" +#~ " --pid=PID met -f, stop indien proces PID verdwijnt\n" +#~ " -q, --quiet, --silent geef nooit de bestandsnaam weer\n" +#~ " -s, --sleep-interval=S met -f, wacht S seconden tussen herhalingen\n" +#~ " -v, --verbose geef altijd een kopregel met de bestandsnaam\n" +#~ " --help toon deze hulptekst en beëindig\n" +#~ " --version toon versie-informatie en beëindig\n" +#~ "\n" +#~ "Indien het eerste teken van N (het aantal bytes of regels) een `+' is,\n" +#~ "begint het afdrukken bij de Nde byte of regel vanaf het begin van het\n" +#~ "bestand, anders vanaf het einde. N mag een achtervoegsel hebben om\n" +#~ "aan te geven waarmee het vermenigvuldigd moet worden: b voor 512, k\n" +#~ "voor 1024, m voor 1048576 (1 Meg). Een eerste optie +WAARDE of\n" +#~ "-WAARDE wordt gezien als -n +WAARDE of -n WAARDE tenzij WAARDE een van\n" +#~ "de vermenigvuldigingsachtervoegsels [bkm] heeft, want dan wordt het\n" +#~ "beschouwd als -c +WAARDE of -c WAARDE.\n" +#~ "\n" +#~ "Met --follow (-f) wordt de bestandsbeschrijver in de gaten gehouden,\n" +#~ "wat inhoudt dat tail het einde van een bestand kan volgen, zelfs als\n" +#~ "het hernoemd wordt. Dit gedrag is niet gewenst als u echt de naam van\n" +#~ "het bestand bedoelt (bijv. met logwisseling). Gebruik in dat geval\n" +#~ "--follow=name. Dat zorgt ervoor dat tail het bestand in de gaten\n" +#~ "houdt door het periodiek te openen om te zien of het verwijderd en\n" +#~ "opnieuw aangemaakt is door iemand.\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "SETs are specified as strings of characters. Most represent themselves.\n" +#~ "Interpreted sequences are:\n" +#~ "\n" +#~ " \\NNN character with octal value NNN (1 to 3 octal digits)\n" +#~ " \\\\ backslash\n" +#~ " \\a audible BEL\n" +#~ " \\b backspace\n" +#~ " \\f form feed\n" +#~ " \\n new line\n" +#~ " \\r return\n" +#~ " \\t horizontal tab\n" +#~ " \\v vertical tab\n" +#~ " CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +#~ " [CHAR*] in SET2, copies of CHAR until length of SET1\n" +#~ " [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +#~ " [:alnum:] all letters and digits\n" +#~ " [:alpha:] all letters\n" +#~ " [:blank:] all horizontal whitespace\n" +#~ " [:cntrl:] all control characters\n" +#~ " [:digit:] all digits\n" +#~ " [:graph:] all printable characters, not including space\n" +#~ " [:lower:] all lower case letters\n" +#~ " [:print:] all printable characters, including space\n" +#~ " [:punct:] all punctuation characters\n" +#~ " [:space:] all horizontal or vertical whitespace\n" +#~ " [:upper:] all upper case letters\n" +#~ " [:xdigit:] all hexadecimal digits\n" +#~ " [=CHAR=] all characters which are equivalent to CHAR\n" +#~ msgstr "" +#~ "\n" +#~ "SETs zijn gespecificeerd als strings van karakters. De meeste stellen\n" +#~ "zichzelf voor. De volgende wijken daarvan af en worden geinterpreteerd:\n" +#~ "\n" +#~ " \\NNN karakter met octaal nummer NNN (1 tot 3 octale " +#~ "getallen)\n" +#~ " \\\\ backslash\n" +#~ " \\a hoorbare BEL\n" +#~ " \\b backspace\n" +#~ " \\f form feed\n" +#~ " \\n nieuwe regel\n" +#~ " \\r return\n" +#~ " \\t horizontale tab\n" +#~ " \\v verticale tab\n" +#~ " CHAR1-CHAR2 alle karakters van CHAR1 tot CHAR2 in oplopende " +#~ "volgorde\n" +#~ " [CHAR1-CHAR2] zelfde als CHAR1-CHAR2, als SET1 en SET2 dit gebruiken\n" +#~ " [CHAR*] in SET2, kopieer CHAR tot lengte van SET1\n" +#~ " [CHAR*HERHAAL] HERHAAL kopieen van CHAR, HERHAAL octaal als gestart " +#~ "met 0\n" +#~ " [:alnum:] alle letters en cijfers\n" +#~ " [:alpha:] alle letters\n" +#~ " [:blank:] alle horizontal witruimte\n" +#~ " [:cntrl:] alle controle karakters\n" +#~ " [:digit:] alle cijfers\n" +#~ " [:graph:] alle printbare karakters, uitgezonderd spatie\n" +#~ " [:lower:] alle kleine letters\n" +#~ " [:print:] alle printbare karakters, inklusief spatie\n" +#~ " [:punct:] alle interpunctie karakters\n" +#~ " [:space:] alle horizontale of verticale witruimte\n" +#~ " [:upper:] alle hoofdletters\n" +#~ " [:xdigit:] alle hexadecimale cijfers\n" +#~ " [=CHAR=] alle karakters equivalent aan CHAR\n" + +#, fuzzy +#~ msgid "" +#~ "Discard all but one of successive identical lines from INPUT (or\n" +#~ "standard input), writing to OUTPUT (or standard output).\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -c, --count prefix lines by the number of occurrences\n" +#~ " -d, --repeated only print duplicate lines\n" +#~ " -D, --all-repeated[=delimit-method] print all duplicate lines\n" +#~ " delimit-method={none(default),prepend,separate)}\n" +#~ " Delimiting is done with blank lines.\n" +#~ " -f, --skip-fields=N avoid comparing the first N fields\n" +#~ " -i, --ignore-case ignore differences in case when comparing\n" +#~ " -s, --skip-chars=N avoid comparing the first N characters\n" +#~ " -u, --unique only print unique lines\n" +#~ " -w, --check-chars=N compare no more than N characters in lines\n" +#~ " -N same as -f N\n" +#~ " +N same as -s N (obsolescent; will be withdrawn)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "A field is a run of whitespace, then non-whitespace characters.\n" +#~ "Fields are skipped before chars.\n" +#~ msgstr "" +#~ "Negeer alle opeenvolgende zelfde regels op één na uit de INVOER (of\n" +#~ "standaard invoer), en schrijf dat naar UITVOER (of standaard uitvoer).\n" +#~ "\n" +#~ " -c, --count zet voor de regel het aantal keren dat die\n" +#~ " voorkomt\n" +#~ " -d, --repeated geef alleen de vaker voorkomende regels\n" +#~ " -D, --all-repeated geef alle vaker voorkomende regels\n" +#~ " -f, --skip-fields=N voorkom vergelijking van de eerste N velden\n" +#~ " -i, --ignore-case beschouw hoofd- en kleine letters als dezelfde\n" +#~ " -s, --skip-chars=N voorkom vergelijking van de eerste N tekens\n" +#~ " -u, --unique toon alleen de unieke regels\n" +#~ " -w, --check-chars=N vergelijk niet meer dan N tekens per regel\n" +#~ " -N zelfde als -f N\n" +#~ " +N zelfde als -s N\n" +#~ " --help toon deze hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" +#~ "\n" +#~ "Een veld is een of meerdere lege ruimtes gevolgd door niet-ruimte\n" +#~ "tekens. Velden worden overgeslagen voor tekens.\n" + +#~ msgid "" +#~ "when using the old-style +POS and -POS key specifiers,\n" +#~ "the +POS specifier must come first" +#~ msgstr "" +#~ "bij gebruik van oude-stijl +POS en -POS zoeksleutel,\n" +#~ "dient de +POS sleutel als eerste gegeven te worden" + +#~ msgid "option `-k' requires an argument" +#~ msgstr "optie `-k' vereist een argument" + +#~ msgid "starting field spec has `.' but lacks following character offset" +#~ msgstr "" +#~ "de eerste veld specificatie bevat een `.' maar mist een teken-offset" + +#, fuzzy +#~ msgid "" +#~ "starting field character offset argument to the `-k' option must be " +#~ "positive" +#~ msgstr "" +#~ "de teken-offset voor het beginveld als argument van de `-k' optie moet\n" +#~ "positief zijn" + +#~ msgid "field specification has `,' but lacks following field spec" +#~ msgstr "" +#~ "de veldspecificatie bevat een `,' maar een volgende specificatie ontbreekt" + +#~ msgid "ending field number argument to the `-k' option must be positive" +#~ msgstr "" +#~ "het nummer van het laatste veld als argument van de `-k' optie moet " +#~ "positief zijn" + +#~ msgid "ending field spec has `.' but lacks following character offset" +#~ msgstr "einde veld specifikatie heeft `.' maar mist karakter offset" + +#~ msgid "option `-o' requires an argument" +#~ msgstr "optie `-o' heeft een argument nodig" + +#, fuzzy +#~ msgid "option `-S' requires an argument" +#~ msgstr "optie `-k' vereist een argument" + +#~ msgid "option `-t' requires an argument" +#~ msgstr "optie `-t' heeft een argument nodig" + +#~ msgid "option `-T' requires an argument" +#~ msgstr "optie `-T' heeft een argument nodig" + +#~ msgid "%s: unrecognized option `-%c'\n" +#~ msgstr "%s: onbekende optie `-%c'\n" + +#~ msgid "%s%*s%s%*sPage" +#~ msgstr "%s%*s%s%*sPagina" + +#~ msgid "flushing file" +#~ msgstr "bestand doorspoelen" + +#~ msgid "" +#~ "specified number of bytes `%s' is larger than the maximum\n" +#~ "representable value of type `long'" +#~ msgstr "" +#~ "opgegeven aantal bytes `%s' is groter dan de maximale waarde van een\n" +#~ "type `long'" + +#~ msgid "%s: cannot follow end of non-regular file" +#~ msgstr "%s: kan het einde van niet-regulier bestand niet volgen" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Report bugs to ." +#~ msgstr "" +#~ "\n" +#~ "Meld fouten via bug-gnu-utils@gnu.ai.mit.edu" + +#~ msgid "`+' requires a numeric argument" +#~ msgstr "`+' benodigd een numeriek argument" + +#~ msgid "%s: extra characters in the argument to the `-%c' option: `%s'\n" +#~ msgstr "%s: extra argument karakters bij de `-%c' optie: `%s'\n" + +#~ msgid "" +#~ "Paginate or columnate FILE(s) for printing.\n" +#~ "\n" +#~ " +PAGE begin printing with page PAGE\n" +#~ " -COLUMN produce COLUMN-column output and print columns down\n" +#~ " -F, -f simulate formfeed with newlines on output\n" +#~ " -a print columns across rather than down\n" +#~ " -b balance columns on the last page\n" +#~ " -c use hat notation (^G) and octal backslash notation\n" +#~ " -d double space the output\n" +#~ " -e[CHAR[WIDTH]] expand input CHARs (TABs) to tab WIDTH (8)\n" +#~ " -h HEADER use HEADER instead of filename in page headers\n" +#~ " -i[CHAR[WIDTH]] replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +#~ " -l PAGE_LENGTH set the page length to PAGE_LENGTH (66) lines\n" +#~ " -m print all files in parallel, one in each column\n" +#~ " -n[SEP[DIGITS]] number lines, use DIGITS (5) digits, then SEP (TAB)\n" +#~ " -o MARGIN offset each line with MARGIN spaces (do not affect -" +#~ "w)\n" +#~ " -r inhibit warning when a file cannot be opened\n" +#~ " -s[SEP] separate columns by character SEP (TAB)\n" +#~ " -t inhibit 5-line page headers and trailers\n" +#~ " -v use octal backslash notation\n" +#~ " -w PAGE_WIDTH set page width to PAGE_WIDTH (72) columns\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "-t implied by -l N when N < 10. Without -s, columns are separated by\n" +#~ "spaces. With no FILE, or when FILE is -, read standard input.\n" +#~ msgstr "" +#~ "Pagineer of kolomneer BESTAND(en) voor printen.\n" +#~ "\n" +#~ " +PAGINA begin met pagina PAGINA\n" +#~ " -KOLOM produce COLUMN-column output and print columns down\n" +#~ " -F, -f simuleer formfeed met nieuwe regels in uitvoer\n" +#~ " -a print columns across rather than down\n" +#~ " -b balance columns on the last page\n" +#~ " -c gebruik dakje notatie (^G) en octale backslash " +#~ "notatie\n" +#~ " -d dubbele regelafstand in uitvoer\n" +#~ " -e[CHAR[BREEDTE]] expandeer invoer CHARs (TABs) naar tab BREEDTE (8)\n" +#~ " -h HOOFD gebruik HOOFD i.p.v.\\ bestandsnaam in pagina hoofd\n" +#~ " -i[CHAR[BREEDTE]] vervang spaties met CHARs (TABs) naar tab BREEDTE " +#~ "(8)\n" +#~ " -l PAGINALENGTE stel paginalengte in op PAGINALENGTE (66) regels\n" +#~ " -m print alle bestanden tegelijkertijd, een in elke " +#~ "kolom\n" +#~ " -n[SEP[DIGITS]] nummer regels, gebruik DIGITS (5) digits, dan SEP " +#~ "(TAB)\n" +#~ " -o MARGE offset elke regel met MARGE spaties (geen invloed op -" +#~ "w)\n" +#~ " -r inhibit waarschuwing wanneer een bestand niet kan\n" +#~ " worden geopend\n" +#~ " -s[SEP] scheid kolomen door karakter SEP (TAB)\n" +#~ " -t inhibit 5-regel pagina hoofden en voeten\n" +#~ " -v gebruik octale backslash notatie\n" +#~ " -w PAGINABREEDTE stel paginabreedte in op PAGINABREEDTE (72) kolomen\n" +#~ " --help toon hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" +#~ "\n" +#~ "-t implied door -l N wanneer N < 10. Zonder -s, worden kolomen " +#~ "gescheiden\n" +#~ "door spaties. Bij geen BESTAND of BESTAND is -, lees standaard-invoer.\n" + +#~ msgid "" +#~ "Print last 10 lines of each FILE to standard output.\n" +#~ "With more than one FILE, precede each with a header giving the file " +#~ "name.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ " -c, --bytes=N output the last N bytes\n" +#~ " -f, --follow output appended data as the file grows\n" +#~ " -n, --lines=N output the last N lines, instead of last 10\n" +#~ " -q, --quiet, --silent never output headers giving file names\n" +#~ " -v, --verbose always output headers giving file names\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "If the first character of N (the number of bytes or lines) is a `+',\n" +#~ "print beginning with the Nth item from the start of each file, " +#~ "otherwise,\n" +#~ "print the last N items in the file. N may have a multiplier suffix:\n" +#~ "b for 512, k for 1024, m for 1048576 (1 Meg). A first OPTION of -VALUE\n" +#~ "or +VALUE is treated like -n VALUE or -n +VALUE unless VALUE has one of\n" +#~ "the [bkm] suffix multipliers, in which case it is treated like -c VALUE\n" +#~ "or -c +VALUE.\n" +#~ msgstr "" +#~ "Print laatste 10 regels van elk BESTAND naar standaard-uitvoer.\n" +#~ "Bij meer dan een BESTAND, uitvoer vooraf laten gaan door bestandsnaam.\n" +#~ "Bij geen BESTAND of BESTAND is -, lees standaard-invoer.\n" +#~ "\n" +#~ " -c, --bytes=N print eerste N bytes\n" +#~ " -f, --follow print toegevoegde data als bestand groeit\n" +#~ " -n, --lines=N print eerste N regels i.p.v. eerste 10\n" +#~ " -q, --quiet, --silent print nooit bestandsnamen als hoofd\n" +#~ " -v, --verbose print altijd bestandsnamen als hoofd\n" +#~ " --help toon hulptekst en beëindig programma\n" +#~ " --version toon versie-informatie en beëindig programma\n" +#~ "\n" +#~ "Als het eerste karakter van N (het aantal bytes of regels) een `+' is,\n" +#~ "begin printen bij het N'de item vanaf het begin van elk bestand, anders,\n" +#~ "print de laatste N items van het bestand. N mag gevolgd wordten door:\n" +#~ "b voor 512, k voor 1024, m voor 1048576 (1 Meg). Een eerste OPTIE als\n" +#~ "+WAARDE is equivalent met -n WAARDE of -n +WAARDE tenzij WAARDE gevolgd\n" +#~ "wordt door [bkm], in welke geval het gelijk is aan -c WAARDE of -c " +#~ "+WAARDE.\n" diff --git a/src/apps/bin/coreutils-5.0/po/no.gmo b/src/apps/bin/coreutils-5.0/po/no.gmo new file mode 100644 index 0000000000..9329f12ffe Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/no.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/no.po b/src/apps/bin/coreutils-5.0/po/no.po new file mode 100644 index 0000000000..4da85fea53 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/no.po @@ -0,0 +1,10383 @@ +# Norwegian messages for GNU textutils (bokmål dialect) +# Copyright (C) 1996 Free Software Foundation, Inc. +# Eivind Tagseth , 1996, 1997, 1999. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU textutils 1.22i\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 1999-04-16 12:02 +02:00\n" +"Last-Translator: Eivind Tagseth \n" +"Language-Team: Norwegian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8-bit\n" + +#: lib/argmatch.c:135 +#, fuzzy, c-format +msgid "invalid argument %s for %s" +msgstr "ugyldig type-streng «%s»" + +#: lib/argmatch.c:136 +#, fuzzy, c-format +msgid "ambiguous argument %s for %s" +msgstr "ugyldig type-streng «%s»" + +#: lib/argmatch.c:155 +#, fuzzy +msgid "Valid arguments are:" +msgstr "begrens argument" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "feil ved skriving" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "" + +#: lib/file-type.c:48 +#, fuzzy +msgid "block special file" +msgstr "feil ved lukking av filen" + +#: lib/file-type.c:51 +msgid "character special file" +msgstr "" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "" + +#: lib/file-type.c:71 +#, fuzzy +msgid "weird file" +msgstr "feil ved skriving" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, fuzzy, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "flagget «-k» trenger et argument" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, fuzzy, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "flagget «-k» trenger et argument" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, fuzzy, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "flagget «-k» trenger et argument" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, fuzzy, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: ukjent flagg «-%c»\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, fuzzy, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: ukjent flagg «-%c»\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, fuzzy, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: ukjent flagg «-%c»\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, fuzzy, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: ukjent flagg «-%c»\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, fuzzy, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "flagget «-k» trenger et argument" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, fuzzy, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "flagget «-k» trenger et argument" + +#: lib/human.c:519 +msgid "block size" +msgstr "" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, fuzzy, c-format +msgid "cannot create directory %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "" + +#: lib/makepath.c:338 +#, fuzzy, c-format +msgid "cannot chdir to directory %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, fuzzy, c-format +msgid "cannot change permissions of %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "" + +#: lib/unicodeio.c:164 +#, fuzzy +msgid "character out of range" +msgstr "%s: linjenummer utenfor tillatte verdier" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "" + +#: lib/userspec.c:174 +#, fuzzy +msgid "invalid user" +msgstr "ugyldig antall" + +#: lib/userspec.c:175 +#, fuzzy +msgid "invalid group" +msgstr "ugyldig antall" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "" + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "" + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Prøv med «%s --help» for mer informasjon.\n" + +#: src/basename.c:54 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "Bruk: %s [FLAGG]... [INN [UT]]\n" + +#: src/basename.c:59 +#, fuzzy +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" +"Skriv ut NAVN med eventuelle innledende katalog-komponenter fjernet.\n" +"Hvis spesifisert, fjern også avsluttende SUFFIKS.\n" +"\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis versjonsinformasjon og avslutt\n" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, fuzzy, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"Rapportér feil til ." + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "for få argumenter" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "for mange argumenter" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "Bruk: %s [FLAGG] [FIL]...\n" + +#: src/cat.c:96 +#, fuzzy +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" +"Føy sammen FIL(er) eller standard inn til standard ut.\n" +"\n" +" -A, --show-all samme som -vET\n" +" -b, --number-nonblank nummerer ikke-blanke ut-linjer\n" +" -e samme som -vE\n" +" -E, --show-ends skriv $ på slutten av hver linje\n" +" -n, --number nummerer alle ut-linjer\n" +" -s, --squeeze-blank aldri mer enn én blank linje\n" +" -t samme som -vT\n" +" -T, --show-tabs vis tabulatorer som ^I\n" +" -u (ignorert)\n" +" -v, --show-nonprinting bruk ^ og M- notasjon, unntatt for LFD og TAB\n" +" --help vis denne hjelpteksten, og avslutt\n" +" --version vis programversjon, og avslutt\n" +"\n" +"Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +"inn.\n" + +#: src/cat.c:106 +#, fuzzy +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" +"Føy sammen FIL(er) eller standard inn til standard ut.\n" +"\n" +" -A, --show-all samme som -vET\n" +" -b, --number-nonblank nummerer ikke-blanke ut-linjer\n" +" -e samme som -vE\n" +" -E, --show-ends skriv $ på slutten av hver linje\n" +" -n, --number nummerer alle ut-linjer\n" +" -s, --squeeze-blank aldri mer enn én blank linje\n" +" -t samme som -vT\n" +" -T, --show-tabs vis tabulatorer som ^I\n" +" -u (ignorert)\n" +" -v, --show-nonprinting bruk ^ og M- notasjon, unntatt for LFD og TAB\n" +" --help vis denne hjelpteksten, og avslutt\n" +" --version vis programversjon, og avslutt\n" +"\n" +"Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +"inn.\n" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" +"\n" +" -B, --binary skriv binært til konsollenheten.\n" +"\n" + +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "standard ut" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s: innfil er utfil" + +#: src/cat.c:858 +#, fuzzy +msgid "closing standard input" +msgstr "standard inn" + +#: src/cat.c:861 +#, fuzzy +msgid "closing standard output" +msgstr "standard ut" + +#: src/chgrp.c:93 +#, fuzzy +msgid "cannot change to null group" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/chgrp.c:102 +#, fuzzy, c-format +msgid "invalid group name %s" +msgstr "ugyldig antall" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "gruppenummer" + +#: src/chgrp.c:109 +#, fuzzy, c-format +msgid "invalid group number %s" +msgstr "ugyldig antall" + +#: src/chgrp.c:126 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Bruk: %s [FLAGG]... [FIL]...\n" +" eller: %s --traditional [FIL] [[+]POSISJON [[+]MERKE]]\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, fuzzy, c-format +msgid "failed to get attributes of %s" +msgstr "bevarer tider for %s" + +#: src/chmod.c:102 +#, fuzzy, c-format +msgid "getting new attributes of %s" +msgstr "bevarer tider for %s" + +#: src/chmod.c:124 +#, fuzzy, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "beskyttelse for %s endret til %04o (%s)\n" + +#: src/chmod.c:127 +#, fuzzy, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "klarte ikke å endre beskyttelse for %s til %04o (%s)\n" + +#: src/chmod.c:130 +#, fuzzy, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "beskyttelse for %s beholdt som %04o (%s)\n" + +#: src/chmod.c:179 +#, fuzzy, c-format +msgid "changing permissions of %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/chmod.c:242 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Bruk: %s [FLAGG]... SISTE\n" +" eller: %s [FLAGG]... FØRSTE SISTE\n" +" eller: %s [FLAGG]... FØRSTE ØKNING SISTE\n" + +#: src/chmod.c:248 +#, fuzzy +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"\n" +" -c, --changes som verbose, men rapporter bare ved endringer\n" +" -f, --silent, --quiet undertrykk de fleste feilmeldingene\n" +" -v, --verbose gi en diagnostikk for hver fil som behandles\n" +" --reference=RFIL bruk RFIL sin beskyttelse istedenfor BESKYTTELSE-\n" +" verdier\n" +" -R, --recursive endre filer og filkataloger rekursivt\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis programversjon og avslutt\n" +"\n" +"Hver BESKYTTELSE er en eller flere av bokstavene ugoa, ett av symbolene\n" +"+-=, og en eller flere av bokstavene rwxXstugo.\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" + +#: src/chmod.c:320 +#, fuzzy, c-format +msgid "invalid character %s in mode string %s" +msgstr "ugyldig tegn «%c» i type-streng «%s»" + +#: src/chmod.c:361 +#, fuzzy, c-format +msgid "invalid mode string: %s" +msgstr "ugyldig type-streng «%s»" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "verken symbolsk link %s eller referant har blitt endret\n" + +#: src/chown-core.c:143 +#, fuzzy, c-format +msgid "changed ownership of %s to %s\n" +msgstr "klarte ikke å endre eier av %s til " + +#: src/chown-core.c:144 +#, fuzzy, c-format +msgid "changed group of %s to %s\n" +msgstr "klarte ikke å endre gruppen til %s til %s\n" + +#: src/chown-core.c:148 +#, fuzzy, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "klarte ikke å endre gruppen til %s til %s\n" + +#: src/chown-core.c:153 +#, fuzzy, c-format +msgid "ownership of %s retained as %s\n" +msgstr "eier av %s beholdt som " + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "gruppe til %s beholdt som %s\n" + +#: src/chown-core.c:326 +#, fuzzy, c-format +msgid "changing ownership of %s" +msgstr "bevarer eierrettigheter for %s" + +#: src/chown-core.c:327 +#, fuzzy, c-format +msgid "changing group of %s" +msgstr "kan ikke endre rot-katalogen til %s" + +#: src/chown-core.c:345 +#, fuzzy, c-format +msgid "unable to restore permissions of %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/chown.c:99 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Bruk: %s [FLAGG]... SISTE\n" +" eller: %s [FLAGG]... FØRSTE SISTE\n" +" eller: %s [FLAGG]... FØRSTE ØKNING SISTE\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" + +#: src/chroot.c:45 +#, fuzzy, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "Bruk: %s [FLAGG]... [INN [UT]]\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" + +#: src/chroot.c:84 +#, fuzzy, c-format +msgid "cannot change root directory to %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/chroot.c:87 +#, fuzzy +msgid "cannot chdir to root directory" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/cksum.c:234 +#, fuzzy, c-format +msgid "%s: file too long" +msgstr "fil trunkert" + +#: src/cksum.c:282 +#, fuzzy, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "Bruk: %s [FLAGG]... [INN [UT]]\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "Bruk: %s [FLAGG]... VENSTRE_FIL HØYRE_FIL\n" + +#: src/comm.c:77 +#, fuzzy +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" +"Sammenlign de sorterte filene VENSTRE_FIL og HØYRE_FIL linje for linje.\n" +"\n" +" -1 se bort fra linjer som bare finnes i den venstre filen\n" +" -2 se bort fra linjer som bare finnes i den høyre filen\n" +" -3 se bort fra linjer som finnes i begge filer\n" +" --help vis denne hjelpteksten og avslutt\n" +" --version vis programversjon og avslutt\n" + +#: src/copy.c:162 src/du.c:332 +#, fuzzy, c-format +msgid "cannot access %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:226 +#, fuzzy, c-format +msgid "cannot open %s for reading" +msgstr "kan ikke linke «%s» til «%s»" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, fuzzy, c-format +msgid "cannot fstat %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, fuzzy, c-format +msgid "cannot remove %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:277 +#, fuzzy, c-format +msgid "cannot create regular file %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, fuzzy, c-format +msgid "reading %s" +msgstr "feil ved lesing av %s" + +#: src/copy.c:362 +#, fuzzy, c-format +msgid "cannot lseek %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, fuzzy, c-format +msgid "writing %s" +msgstr "feil ved skriving til %s" + +#: src/copy.c:409 src/copy.c:415 +#, fuzzy, c-format +msgid "closing %s" +msgstr "lukker %s (fd=%d)" + +#: src/copy.c:610 +#, fuzzy, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: overskrive «%s», uten hensyn til beskyttelse %04o?" + +#: src/copy.c:616 +#, fuzzy, c-format +msgid "%s: overwrite %s? " +msgstr "%s: skrivefeil" + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, fuzzy, c-format +msgid "cannot stat %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:820 +#, fuzzy, c-format +msgid "omitting directory %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "" + +#: src/copy.c:866 src/ln.c:237 +#, fuzzy, c-format +msgid "%s and %s are the same file" +msgstr "«%s» og «%s» er samme fil" + +#: src/copy.c:876 +#, fuzzy, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:893 +#, fuzzy, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "%s: kan ikke overskrive filkatalog med annet enn filkatalog" + +#: src/copy.c:904 +#, fuzzy, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:965 +#, fuzzy, c-format +msgid "cannot overwrite directory %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:974 +#, fuzzy, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:997 +#, fuzzy, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "" +"sikkerhetskopiering av «%s» vil overskrive kildefil. «%s» er ikke flyttet" + +#: src/copy.c:998 +#, fuzzy, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "" +"sikkerhetskopiering av «%s» vil overskrive kildefil. «%s» er ikke kopiert" + +#: src/copy.c:1013 src/ln.c:273 +#, fuzzy, c-format +msgid "cannot backup %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:1049 src/ln.c:308 +#, fuzzy, c-format +msgid " (backup: %s)" +msgstr "kan ikke gjøre sikkerhetskopi av «%s»" + +#: src/copy.c:1099 +#, fuzzy, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:1106 +#, fuzzy, c-format +msgid "will not create hard link %s to directory %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:1132 +#, fuzzy, c-format +msgid "cannot create hard link %s to %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:1186 +#, fuzzy, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:1229 +#, fuzzy, c-format +msgid "cannot move %s to %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "" + +#: src/copy.c:1269 +#, fuzzy, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "%s: kan ikke kopiere syklisk symbolsk link" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "%s: kan bare lage relative symbolske linker i aktiv filkatalog" + +#: src/copy.c:1353 +#, fuzzy, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:1364 +#, fuzzy, c-format +msgid "cannot create link %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, fuzzy, c-format +msgid "cannot create fifo %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:1403 +#, fuzzy, c-format +msgid "cannot create special file %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, fuzzy, c-format +msgid "cannot read symbolic link %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:1440 +#, fuzzy, c-format +msgid "cannot create symbolic link %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, fuzzy, c-format +msgid "failed to preserve ownership for %s" +msgstr "bevarer eierrettigheter for %s" + +#: src/copy.c:1471 +#, fuzzy, c-format +msgid "%s has unknown file type" +msgstr "%s: ukjent filtype" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "bevarer tider for %s" + +#: src/copy.c:1531 +#, fuzzy, c-format +msgid "failed to preserve authorship for %s" +msgstr "bevarer eierrettigheter for %s" + +#: src/copy.c:1549 +#, fuzzy, c-format +msgid "setting permissions for %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:1571 src/ln.c:326 +#, fuzzy, c-format +msgid "cannot un-backup %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/cp.c:164 src/mv.c:311 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"Bruk: %s [FLAGG]... SISTE\n" +" eller: %s [FLAGG]... FØRSTE SISTE\n" +" eller: %s [FLAGG]... FØRSTE ØKNING SISTE\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" + +#: src/cp.c:209 +#, fuzzy +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +"Kopier KILDE til MÅL, eller en eller flere KILDE(r) til FILKATALOG.\n" +"\n" +" -a, --archive samme som -dpR\n" +" -b, --backup lag sikkerhetskopi før sletting\n" +" -d, --no-dereference bevar linker\n" +" -f, --force slett eksisterende filer uten bekreftelse\n" +" -i, --interactive be om bekreftelse før overskriving av filer\n" +" -l, --link lag linker istedet for å kopiere\n" +" -p, --preserve forsøk å beholde filattributter\n" +" -P, --parents legg kildens søkesti til FILKATALOG\n" +" -r kopier rekursivt, alt utenom filkataloger\n" +" kopieres som filer\n" +" --sparse=NÅR kontroller oppretting av filer med hull\n" +" -R, --recursive kopier filkataloger rekursivt\n" +" -s, --symbolic-link lag symbolske linker istedet for å kopiere\n" +" -S, --suffix=SUFFIKS overstyr det vanlige sikkerhetskopi-" +"suffikset\n" +" -u, --update kopier bare eldre eller helt nye filer\n" +" -v, --verbose forklar hva som skjer\n" +" -V, --version-control=ORD overstyr den vanlige versjonskontrollen\n" +" -x, --one-file-system kopier bare filer fra dette filsystemet\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis programversjon og avslutt\n" +"\n" +"Normalt blir kildefiler med hull oppdaget ved hjelp av en enkel heuristikk,\n" +"og målfilen blir også laget med hull. Dette er oppførselen som er gitt med\n" +"--sparse=auto. Spesifiser --sparse=always for å opprette en målfil med\n" +"hull i, dersom kildefilen inneholder en tilstrekkelig lang sekvens med\n" +"null-tegn. Bruk --sparse=never for å hindre oppretting av filer med hull.\n" +"\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" + +#: src/cp.c:221 +#, fuzzy +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +"Endre navn på KILDE til MÅL, eller flytt KILDE(r) til FILKATALOG.\n" +"\n" +" -b, --backup gjør sikkerhetskopi før sletting\n" +" -f, --force slett eksisterende filer uten bekreftelse\n" +" -i, --interactive be om bekreftelse før overskriving av filer\n" +" -S, --suffix=SUFFIKS overstyr det vanlige sikkerhetskopi-" +"suffikset\n" +" -u, --update flytt bare eldre eller helt nye filer\n" +" -v, --verbose forklar hva som skjer\n" +" -V, --version-control=ORD overstyr den vanlige versjonskontrollen\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis programversjon og avslutt\n" +"\n" + +#: src/cp.c:230 +#, fuzzy +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +"Kopier KILDE til MÅL, eller en eller flere KILDE(r) til FILKATALOG.\n" +"\n" +" -a, --archive samme som -dpR\n" +" -b, --backup lag sikkerhetskopi før sletting\n" +" -d, --no-dereference bevar linker\n" +" -f, --force slett eksisterende filer uten bekreftelse\n" +" -i, --interactive be om bekreftelse før overskriving av filer\n" +" -l, --link lag linker istedet for å kopiere\n" +" -p, --preserve forsøk å beholde filattributter\n" +" -P, --parents legg kildens søkesti til FILKATALOG\n" +" -r kopier rekursivt, alt utenom filkataloger\n" +" kopieres som filer\n" +" --sparse=NÅR kontroller oppretting av filer med hull\n" +" -R, --recursive kopier filkataloger rekursivt\n" +" -s, --symbolic-link lag symbolske linker istedet for å kopiere\n" +" -S, --suffix=SUFFIKS overstyr det vanlige sikkerhetskopi-" +"suffikset\n" +" -u, --update kopier bare eldre eller helt nye filer\n" +" -v, --verbose forklar hva som skjer\n" +" -V, --version-control=ORD overstyr den vanlige versjonskontrollen\n" +" -x, --one-file-system kopier bare filer fra dette filsystemet\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis programversjon og avslutt\n" +"\n" +"Normalt blir kildefiler med hull oppdaget ved hjelp av en enkel heuristikk,\n" +"og målfilen blir også laget med hull. Dette er oppførselen som er gitt med\n" +"--sparse=auto. Spesifiser --sparse=always for å opprette en målfil med\n" +"hull i, dersom kildefilen inneholder en tilstrekkelig lang sekvens med\n" +"null-tegn. Bruk --sparse=never for å hindre oppretting av filer med hull.\n" +"\n" + +#: src/cp.c:239 +#, fuzzy +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"Suffikset for sikkerhetskopiering er ~, med mindre det er spesifisert via\n" +"SIMPLE_BACKUP_SUFFIX. Versjonskontroll kan settes med VERSION_CONTROL.\n" +"Gyldige verdier er:\n" +"\n" +" t, numbered lag nummererte sikkerhetskopier\n" +" nil, existing nummererte, dersom nummererte sikkerhetskopier " +"eksisterer,\n" +" ellers enkle\n" +" never, simple lag enkle sikkerhetskopier\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +#, fuzzy +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +"Suffikset for sikkerhetskopiering er ~, med mindre det er spesifisert via\n" +"SIMPLE_BACKUP_SUFFIX. Versjonskontroll kan settes med VERSION_CONTROL.\n" +"Gyldige verdier er:\n" +"\n" +" t, numbered lag nummererte sikkerhetskopier\n" +" nil, existing nummererte, dersom nummererte sikkerhetskopier " +"eksisterer,\n" +" ellers enkle\n" +" never, simple lag enkle sikkerhetskopier\n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +"Som et spesialtilfelle, gjør cp en sikkerhetskopi av KILDE når flaggene for\n" +"force og backup er gitt, og KILDE og MÅL er samme navn for en eksisterende,\n" +"vanlig fil.\n" + +#: src/cp.c:325 +#, fuzzy, c-format +msgid "failed to preserve times for %s" +msgstr "bevarer tider for %s" + +#: src/cp.c:349 +#, fuzzy, c-format +msgid "failed to preserve permissions for %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/cp.c:434 +#, fuzzy, c-format +msgid "cannot make directory %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +#, fuzzy +msgid "missing file argument" +msgstr "hopp over argument" + +#: src/cp.c:498 +#, fuzzy +msgid "missing destination file" +msgstr "feltliste mangler" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, fuzzy, c-format +msgid "accessing %s" +msgstr "sletter %s\n" + +#: src/cp.c:546 +#, fuzzy, c-format +msgid "%s: specified target is not a directory" +msgstr "«%s» er ikke en katalog" + +#: src/cp.c:554 +#, fuzzy, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "kopierer flere filer, men siste argument (%s) er ikke en filkatalog" + +#: src/cp.c:652 +#, fuzzy +msgid "when preserving paths, the destination must be a directory" +msgstr "når søkestien skal beholdes, må siste argument være en filkatalog" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" + +#: src/cp.c:972 src/ln.c:464 +msgid "symbolic links are not supported on this system" +msgstr "symbolske linker er ikke støttet på dette systemet" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "kan ikke lage både harde og symbolske linker" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "lesefeil" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "input forsvant" + +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s: linjenummer utenfor tillatte verdier" + +#: src/csplit.c:743 +#, fuzzy, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: «%d»: linjenummer utenfor tillatte verdier" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr " ved %d. repetisjon\n" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s: «%s»: ingen treff funnet" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "feil i søk med regulært uttrykk" + +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "skrivefeil for «%s»" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "%s: «+» eller «-» ventet etter skilletegn" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s: heltall forventet etter «%c»" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "%s: «}» er nødvendig i gjentagelsesantall" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "%s}: heltall kreves mellom «{» og «}»" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s: avsluttende skilletegn «%c» mangler" + +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: ugyldig regulært uttrykk: %s" + +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "%s: ugyldig mønster" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s: linjenummeret må være større enn null" + +#: src/csplit.c:1183 +#, fuzzy, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "linjenummer «%s» er mindre enn foregående linjenummer, %lu" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "advarsel: linjenummer «%s» er det samme som foregående" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "manglende konverteringsspesifikator i suffiks" + +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "ugyldig konvertingsspesifikator i suffiks: %c" + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "ugyldig konverteringsspesifikator i suffiks: \\%.3o" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "manglende %%-konverteringsspesifikasjon i suffiks" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "for mange %%-konverteringsspesifikasjoner i suffiks" + +#: src/csplit.c:1441 +#, c-format +msgid "%s: invalid number" +msgstr "%s: ugyldig nummer" + +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "Bruk: %s [FLAGG]... FIL MØNSTER...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "Bruk: %s [FLAGG]... [FIL]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" + +#: src/cut.c:185 +#, fuzzy +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" +"Brekk om linjene i hver FIL (standard inn), skriv til standard ut\n" +"\n" +" -b, --bytes tell bytes istedet for kolonner\n" +" -s, --spaces brekk om ved mellomrom\n" +" -w, --width=BREDDE bruk BREDDE kolonner istedet for 80\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis versjonsinformasjon og avslutt\n" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "ugyldig byte- eller felt-liste" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "bare en liste-type kan spesifiseres" + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "posisjonsliste mangler" + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "feltliste mangler" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "skilletegnet må være ett enkelt tegn" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "du må spesifisere en liste av bytes, tegn eller felt" + +#: src/cut.c:720 +#, fuzzy +msgid "an input delimiter may be specified only when operating on fields" +msgstr "et skilletegn kan bare spesifiseres når en opererer med felt" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" +"fjerning av linjer uten skilletegn er meningsløst dersom en ikke opererer\n" +"\tmed felt" + +#: src/date.c:117 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" +"Bruk: %s [FLAGG]... [+FORMAT]\n" +" eller: %s [FLAGG] [MMDDhhmm[[CC]YY][.ss]]\n" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "standard inn" + +#: src/date.c:268 src/date.c:460 +#, fuzzy, c-format +msgid "invalid date `%s'" +msgstr "ugyldig felt-nummer: «%s»" + +#: src/date.c:364 +#, fuzzy +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "flaggene --string og --check kan ikke brukes samtidig" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "flaggene for å skrive ut og sette tiden kan ikke brukes sammen" + +#: src/date.c:377 +#, fuzzy, c-format +msgid "too many non-option arguments: %s%s" +msgstr "for mange ikke-flagg-argumenter" + +#: src/date.c:385 +#, fuzzy, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" +"argumentet «%s» mangler en innledende «+»;\n" +"når man bruker et flagg for å spesifisere dato(er) må eventuelle\n" +"andre typer argumenter bestå av en format-streng som begynner med «+»" + +#: src/date.c:397 +#, fuzzy +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "ingen filer kan spesifiseres når flagget --string brukes" + +#: src/date.c:433 +msgid "undefined" +msgstr "udefinert" + +#: src/date.c:435 +#, fuzzy +msgid "cannot get time of day" +msgstr "kan ikke dele opp på mer enn én måte" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "kan ikke sette dato" + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "Bruk: %s [FLAGG] [FIL]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "%s+%s blokker inn\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "%s+%s blokker ut\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "forkortet blokk" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "forkortede blokker" + +#: src/dd.c:382 +#, fuzzy, c-format +msgid "closing input file %s" +msgstr "lager filen «%s»\n" + +#: src/dd.c:385 +#, fuzzy, c-format +msgid "closing output file %s" +msgstr "sletter %s\n" + +#: src/dd.c:469 +#, fuzzy, c-format +msgid "writing to %s" +msgstr "feil ved skriving til %s" + +#: src/dd.c:501 +#, fuzzy, c-format +msgid "invalid conversion: %s" +msgstr "ugyldig type-streng «%s»" + +#: src/dd.c:557 +#, fuzzy, c-format +msgid "unrecognized option %s" +msgstr "ukjent flagg «-%c»" + +#: src/dd.c:610 +#, fuzzy, c-format +msgid "unrecognized option %s=%s" +msgstr "ukjent flagg «-%c»" + +#: src/dd.c:616 +#, fuzzy, c-format +msgid "invalid number %s" +msgstr "ugyldig antall" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"kun én konvertering fra {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" + +#: src/dd.c:1170 src/dd.c:1188 +#, fuzzy, c-format +msgid "opening %s" +msgstr "feil ved lesing av %s" + +#: src/dd.c:1196 +#, fuzzy +msgid "file offset out of range" +msgstr "%s: linjenummer utenfor tillatte verdier" + +#: src/dd.c:1214 +#, fuzzy, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "sletter %s\n" + +#: src/df.c:49 +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "" + +#: src/df.c:153 +msgid "Filesystem Type" +msgstr "" + +#: src/df.c:155 +msgid "Filesystem " +msgstr "" + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr "" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr "" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr "" + +#: src/df.c:167 +#, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr "" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr "" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr "" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" + +#: src/df.c:859 +#, fuzzy, c-format +msgid "file system type %s both selected and excluded" +msgstr "filsystem av type «%s» er både valgt og ekskludert" + +#: src/df.c:903 +msgid "Warning: " +msgstr "" + +#: src/df.c:906 +#, fuzzy, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "kan ikke lese tabellen over monterte filsystemer" + +#: src/dircolors.c:103 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "Bruk: %s [FLAGG]... [FIL]...\n" + +#: src/dircolors.c:104 +#, fuzzy +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"Skriv ut kommandoer for å sette miljøvariabelen LS_COLORS.\n" +"\n" +"Bestem ut-format:\n" +" -b, --sh, --bourne-shell skriv ut Bourne shell-kode for å sette " +"LS_COLORS\n" +" -c, --csh, --c-shell skriv ut C shell-kode for å sette LS_COLORS\n" +" -p, --print-data-base skriv ut den interne databasen\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis programversjon og avslutt\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" + +#: src/dircolors.c:299 +#, fuzzy, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s: ugyldig antall sekunder" + +#: src/dircolors.c:371 +#, fuzzy, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s: ukjent flagg «-%c»\n" + +#: src/dircolors.c:372 +msgid "" +msgstr "" + +#: src/dircolors.c:467 +#, fuzzy +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "flaggene for fyldig og stty-lesbar utskrift utelukker hverandre" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" +"flagget for å skrive ut den interne databasen til dircolor tar\n" +"ikke argumenter" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "ingen SHELL-miljøvariabel, og ingen shell-type spesifisert med flagg" + +#: src/dirname.c:33 src/pathchk.c:59 +msgid "David MacKenzie and Jim Meyering" +msgstr "" + +#: src/dirname.c:46 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "Bruk: %s [FLAGG]... [INN [UT]]\n" + +#: src/dirname.c:51 +#, fuzzy +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" +"Skriv ut NAVN med alt fra siste «/» fjernet, eller alt fra nest siste «/»\n" +"dersom NAVN ender på «/». Hvis NAVN ikke inneholder «/», skriv ut «.»\n" +"(for nåværende katalog).\n" +"\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis versjonsinformasjon og avslutt\n" + +#: src/du.c:49 +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" + +#: src/du.c:337 +#, fuzzy, c-format +msgid "cannot change to parent of directory %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/du.c:345 +#, fuzzy, c-format +msgid "cannot change to directory %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/du.c:352 +#, fuzzy, c-format +msgid "cannot read directory %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "totalt" + +#: src/du.c:641 +#, fuzzy, c-format +msgid "invalid maximum depth %s" +msgstr "ugyldig felt-nummer: «%s»" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "kan ikke vise alle størrelser og bare vise summer samtidig." + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "advarsel: summering er det samme som å bruke --max-depth=0" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "advarsel: summering er i konflikt med --max-depth=%d" + +#: src/echo.c:77 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "Bruk: %s [FLAGG]... [FIL]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/env.c:93 +msgid "Richard Mlynarik and David MacKenzie" +msgstr "" + +#: src/env.c:119 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "Bruk: %s [FLAGG]... [FIL]...\n" + +#: src/env.c:122 +#, fuzzy +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" +"Sett hvert NAVN til VERDI som miljøvariabler og utfør KOMMANDO.\n" +" -i, --ignore-environment start uten miljøvariabler\n" +" -u, --unset=NAVN fjern miljøvariabelen NAVN\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis versjonsinformasjon og avslutt\n" +"\n" +"En - for seg selv impliserer -i. Hvis ingen KOMMANDO er angitt, skriv ut\n" +"det resulterende miljøet.\n" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "tabulatorstørrelse inneholder et ugyldig tegn" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "tabulatorstørrelse kan ikke være 0" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "tabulatorstørrelser må være stigende" + +#: src/expand.c:386 +#, fuzzy +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "advarsel: ugyldig bredde %lu; bruker %d istedet" + +#: src/expr.c:90 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "Bruk: %s [FLAGG]... [INN [UT]]\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" +"\n" +"Vær oppmerksom på at mange operatorer må beskyttes mot kommandotolken,\n" +"f.eks. med gåseøyne. Sammenligninger er aritmetiske dersom begge\n" +"ARGumentene er tall, ellers leksiografiske. Mønster-sammenligninger\n" +"returnerer strengen som passet mønstret mellom \\( og \\) eller null.\n" +"Hvis \\( og \\) ikke brukes returneres antall tegn som passet eller 0.\n" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +#, fuzzy +msgid "syntax error" +msgstr "stdin: lesefeil" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" +"advarsel: ikke-portabel BRE(Basic Regular Expression): «%s»: \n" +"bruk av «^» som første tegn av et vanlig regulært uttrykk er ikke\n" +"portabelt; «^» ignoreres" + +#: src/expr.c:586 src/expr.c:625 +#, fuzzy +msgid "non-numeric argument" +msgstr "begrens argument" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "" + +#: src/factor.c:74 +#, fuzzy, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "Bruk: %s [FLAGG]... [INN [UT]]\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" + +#: src/factor.c:85 +#, fuzzy +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" +"Skriv ut faktorene til hvert TALL; les fra standard inn dersom ingen\n" +"argumenter er gitt.\n" +"\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis versjonsinformasjon og avslutt\n" +"\n" +" Skriv ut primtalls-faktorene til alle spesifiserte heltall TALL. Hvis \n" +" ingen argumenter er angitt på kommandolinjen leses de fra standard inn.\n" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "«%s» er ikke et gyldig positivt heltall" + +#: src/false.c:34 +#, fuzzy, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Bruk: %s [NAVN]\n" +" eller: %s FLAGG\n" +"Skriv vertsnavnet til dette systemet.\n" +"\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis versjonsinformasjon og avslutt\n" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "Bruk: %s [-SIFFER] [FLAGG]... [FIL]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" + +#: src/fmt.c:280 +#, fuzzy +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" +"Omformattér hvert avsnitt i FILEN(e), skriv til standard ut.\n" +"Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +"inn.\n" +"\n" +"Obligatoriske argumenter til lange flagg er også obligatoriske for de " +"korte.\n" +" -c, --crown-margin behold innrykket til de første to linjene\n" +" -p, --prefix=STRENG sett kun sammen linjer som har STRENG som\n" +" forstavelse\n" +" -s, --split-only del opp lange linjer, men ikke fyll opp\n" +" -t, --tagged-paragraph innrykket til første linje er forskjellig fra " +"neste\n" +" -u, --uniform-spacing ett mellomrom mellom ord, to etter setninger\n" +" -w, --width=TALL maksimal linjelengde (ellers 75 kolonner)\n" +" --help vis denne hjelpteksten og avslutt\n" +" --version vis programversjon og avslutt\n" +"\n" +"Ved -wTALL kan «w» utelates.\n" + +#: src/fmt.c:286 +#, fuzzy +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" +"Omformattér hvert avsnitt i FILEN(e), skriv til standard ut.\n" +"Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +"inn.\n" +"\n" +"Obligatoriske argumenter til lange flagg er også obligatoriske for de " +"korte.\n" +" -c, --crown-margin behold innrykket til de første to linjene\n" +" -p, --prefix=STRENG sett kun sammen linjer som har STRENG som\n" +" forstavelse\n" +" -s, --split-only del opp lange linjer, men ikke fyll opp\n" +" -t, --tagged-paragraph innrykket til første linje er forskjellig fra " +"neste\n" +" -u, --uniform-spacing ett mellomrom mellom ord, to etter setninger\n" +" -w, --width=TALL maksimal linjelengde (ellers 75 kolonner)\n" +" --help vis denne hjelpteksten og avslutt\n" +" --version vis programversjon og avslutt\n" +"\n" +"Ved -wTALL kan «w» utelates.\n" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" + +#: src/fmt.c:345 +#, fuzzy, c-format +msgid "invalid width option: `%s'" +msgstr "ugyldig type-streng «%s»" + +#: src/fmt.c:385 +#, fuzzy, c-format +msgid "invalid width: `%s'" +msgstr "ugyldig felt-nummer: «%s»" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" + +#: src/fold.c:267 +#, fuzzy, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "advarsel: ugyldig bredde %lu; bruker %d istedet" + +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "ugyldig antall kolonner: «%s»" + +#: src/head.c:92 +#, fuzzy +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Skriv de første 10 linjene av hver FIL til standard ut.\n" +"Med mer enn en FIL er angitt, skriv ut filnavnet før hver FIL.\n" +"Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +"inn.\n" +"\n" +" -c, --bytes=STØRRELSE skriv ut første STØRRELSE bytes\n" +" -n, --lines=ANTALL skriv ut første ANTALL tegn istedet for 10\n" +" -q, --quiet, --silent ikke skriv ut filnavnene først\n" +" -v, --verbose skriv alltid filnavnene først\n" +" --help vis denne hjelpteksten, og avslutt\n" +" --version vis programversjon og avslutt\n" +"\n" +"STØRRELSE kan ha en multiplikator-endelse: b for 512, k for 1K, m for 1Meg.\n" +"Hvis -VERDI brukes som første FLAGG, leses det som -c VERDI hvis en av\n" +"multiplikatorene bkm er bakerst, ellers leses -n VERDI.\n" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" + +#: src/head.c:190 +#, fuzzy, c-format +msgid "cannot reposition file pointer for %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "%s: %s er så stor at den ikke kan representeres" + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "antall linjer" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "antall bytes" + +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "ugyldig antall linjer" + +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "ugyldig antall bytes" + +#: src/head.c:341 +#, c-format +msgid "unrecognized option `-%c'" +msgstr "ukjent flagg «-%c»" + +#: src/head.c:348 +#, fuzzy, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "advarsel: ugyldig bredde %lu; bruker %d istedet" + +#: src/hostid.c:48 +#, fuzzy, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" +"Skriv ut navnet til den nåværende brukeren.\n" +"\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis versjonsinformasjon og avslutt\n" + +#: src/hostname.c:67 +#, fuzzy, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" +"Bruk: %s [NAVN]\n" +" eller: %s FLAGG\n" +"Skriv vertsnavnet til dette systemet.\n" +"\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis versjonsinformasjon og avslutt\n" + +#: src/hostname.c:104 +#, fuzzy, c-format +msgid "cannot set hostname to `%s'" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "kan ikke sette vertsnavnet; dette systemet mangler funksjonaliteten" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "kan ikke bestemme vertsnavnet" + +#: src/id.c:36 +msgid "Arnold Robbins and David MacKenzie" +msgstr "" + +#: src/id.c:87 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "Bruk: %s [FLAGG]... SETT1 [SETT2]\n" + +#: src/id.c:88 +#, fuzzy +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" +"Skriv ut informasjon for BRUKERNAVN eller nåværende bruker.\n" +"\n" +" -a ignoreres, for kompatibilitet med andre versjoner\n" +" -g, --group skriv bare ut gruppe-ID\n" +" -G, --groups skriv bare ut supplerende grupper\n" +" -n, --name skriv et navn i stedet for et nummer, for -ugG\n" +" -r, --real skriv ut den virkelige ID-en istedet for den effektive,\n" +" for -ugG\n" +" -u, --user skriv bare ut brukeridentiteten\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis versjonsinformasjon og avslutt\n" +"\n" +"Uten noen FLAGG, skriv ut et nyttig utvalg av identifisert informasjon.\n" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" + +#: src/id.c:162 +#, fuzzy +msgid "cannot print only user and only group" +msgstr "kan ikke dele opp på mer enn én måte" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "kan ikke skrive ut bare navn eller virkelige IDer i forvalgt format" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "%s: Ingen slik bruker" + +#: src/id.c:212 +#, fuzzy, c-format +msgid "cannot find name for user ID %u" +msgstr "%s: kan ikke finne brukernavnet til UID %u\n" + +#: src/id.c:235 +#, fuzzy, c-format +msgid "cannot find name for group ID %u" +msgstr "%s: kan ikke finne brukernavnet til UID %u\n" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "kan ikke hente supplerende gruppeliste" + +#: src/id.c:385 +msgid " groups=" +msgstr " grupper=" + +#: src/install.c:269 +#, fuzzy +msgid "the strip option may not be used when installing a directory" +msgstr "" +"format-strengen kan ikke spesifiseres når det skrives ut strenger\n" +"med lik bredde" + +#: src/install.c:292 src/mkdir.c:140 +#, fuzzy, c-format +msgid "invalid mode %s" +msgstr "ugyldig felt-nummer: «%s»" + +#: src/install.c:307 src/install.c:371 +#, fuzzy, c-format +msgid "creating directory %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/install.c:332 +#, fuzzy, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "installerer flere filer, men siste argument (%s) er ikke en filkatalog" + +#: src/install.c:435 +#, fuzzy, c-format +msgid "%s is a directory" +msgstr "«%s» er ikke en katalog" + +#: src/install.c:495 +#, fuzzy, c-format +msgid "cannot obtain time stamps for %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/install.c:507 +#, fuzzy, c-format +msgid "cannot set time stamps for %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/install.c:528 +#, fuzzy +msgid "fork system call failed" +msgstr "feil ved lukking av filen" + +#: src/install.c:532 +#, fuzzy +msgid "cannot run strip" +msgstr "kan ikke kjøre %s" + +#: src/install.c:539 +#, fuzzy +msgid "strip failed" +msgstr "feil ved skriving" + +#: src/install.c:560 +#, fuzzy, c-format +msgid "invalid user %s" +msgstr "ugyldig antall" + +#: src/install.c:578 +#, fuzzy, c-format +msgid "invalid group %s" +msgstr "ugyldig antall" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"Bruk: %s [FLAGG]... KILDE MÅL (1. format)\n" +" eller: %s [FLAGG]... KILDE... FILKATALOG (2. format)\n" +" eller: %s -d [FLAGG]... FILKATALOG... (3. format)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +#, fuzzy +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"Suffikset for sikkerhetskopiering er ~, med mindre det er spesifisert via\n" +"SIMPLE_BACKUP_SUFFIX. Versjonskontroll kan settes med VERSION_CONTROL.\n" +"Gyldige verdier er:\n" +"\n" +" t, numbered lag nummererte sikkerhetskopier\n" +" nil, existing nummererte, dersom nummererte sikkerhetskopier " +"eksisterer,\n" +" ellers enkle\n" +" never, simple lag enkle sikkerhetskopier\n" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "Bruk: %s [FLAGG]... FIL1 FIL2\n" + +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" + +#: src/join.c:165 +#, fuzzy +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" +"Sammenlign de sorterte filene VENSTRE_FIL og HØYRE_FIL linje for linje.\n" +"\n" +" -1 se bort fra linjer som bare finnes i den venstre filen\n" +" -2 se bort fra linjer som bare finnes i den høyre filen\n" +" -3 se bort fra linjer som finnes i begge filer\n" +" --help vis denne hjelpteksten og avslutt\n" +" --version vis programversjon og avslutt\n" + +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" + +#: src/join.c:645 +#, c-format +msgid "invalid field specifier: `%s'" +msgstr "ugyldig felt-spesifikator: «%s»" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, c-format +msgid "invalid field number: `%s'" +msgstr "ugyldig felt-nummer: «%s»" + +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "ugyldig filnummer i felt-spesifikator: «%s»" + +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "ugyldig feltnummer for fil 1: «%s»" + +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "ugyldig feltnummer for fil 2: «%s»" + +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "for mange ikke-flagg-argumenter" + +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "for få ikke-flagg-argumenter" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "begge filene kan ikke være standard inn" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" + +#: src/kill.c:106 +#, fuzzy +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" +"Kopier standard inn til hver FIL og til standard ut.\n" +"\n" +" -a, --append legg til til de angitte FILene, ikke overskriv\n" +" -i, --ignore-interrrupts ignorer avbruddssignaler\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis versjonsinformasjon og avslutt\n" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" + +#: src/kill.c:163 +#, fuzzy, c-format +msgid "%s: invalid signal" +msgstr "%s: ugyldig nummer" + +#: src/kill.c:262 +#, fuzzy, c-format +msgid "missing operand after `%s'" +msgstr "%s: heltall forventet etter «%c»" + +#: src/kill.c:274 +#, fuzzy, c-format +msgid "%s: invalid process id" +msgstr "%s: ugyldig mønster" + +#: src/kill.c:327 +#, fuzzy, c-format +msgid "invalid option -- %c" +msgstr "%s: ukjent flagg «-%c»\n" + +#: src/kill.c:336 +#, fuzzy, c-format +msgid "%s: multiple signals specified" +msgstr "\\%c: ugyldig beskyttelse" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "" + +#: src/link.c:51 +#, fuzzy, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "Bruk: %s [FLAGG]... [INN [UT]]\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" + +#: src/link.c:98 +#, fuzzy, c-format +msgid "cannot create link %s to %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "" + +#: src/ln.c:174 +#, fuzzy, c-format +msgid "%s: hard link not allowed for directory" +msgstr "«%s» er ikke en katalog" + +#: src/ln.c:246 +#, fuzzy, c-format +msgid "%s: cannot overwrite directory" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/ln.c:251 +#, fuzzy, c-format +msgid "%s: replace %s? " +msgstr "%s: overskrive «%s»? " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: Fil eksisterer" + +#: src/ln.c:304 +#, fuzzy, c-format +msgid "create symbolic link %s to %s" +msgstr "kan ikke opprette symbolsk link «%s»" + +#: src/ln.c:305 +#, fuzzy, c-format +msgid "create hard link %s to %s" +msgstr "%s: vil ikke lage hard link «%s» til katalog «%s»" + +#: src/ln.c:319 +#, fuzzy, c-format +msgid "creating symbolic link %s to %s" +msgstr "kan ikke opprette symbolsk link «%s»" + +#: src/ln.c:320 +#, fuzzy, c-format +msgid "creating hard link %s to %s" +msgstr "%s: vil ikke lage hard link «%s» til katalog «%s»" + +#: src/ln.c:339 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"Bruk: %s [FLAGG]... SISTE\n" +" eller: %s [FLAGG]... FØRSTE SISTE\n" +" eller: %s [FLAGG]... FØRSTE ØKNING SISTE\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" + +#: src/ln.c:521 +#, fuzzy, c-format +msgid "%s: specified target directory is not a directory" +msgstr "«%s» er ikke en katalog" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "ved oppretting av flere linker, må siste argument være en filkatalog" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "Bruk: %s [FLAGG] [FIL]...\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" + +#: src/logname.c:99 +#, fuzzy, c-format +msgid "%s: no login name\n" +msgstr "%s: ugyldig nummer" + +#: src/ls.c:673 +msgid "%b %e %Y" +msgstr "" + +#: src/ls.c:681 +msgid "%b %e %H:%M" +msgstr "" + +#: src/ls.c:1307 +#, fuzzy, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "ignorerer ugyldig lengde i miljøvariabelen COLUMNS: %s" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "ignorerer ugyldig lengde i miljøvariabelen COLUMNS: %s" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "ignorerer ugyldig tab-størrelse i miljøvariabelen TABSIZE: %s" + +#: src/ls.c:1482 +#, fuzzy, c-format +msgid "invalid line width: %s" +msgstr "ugyldig felt-nummer: «%s»" + +#: src/ls.c:1556 +#, fuzzy, c-format +msgid "invalid tab size: %s" +msgstr "ugyldig type-streng «%s»" + +#: src/ls.c:1722 +#, fuzzy, c-format +msgid "invalid time style format %s" +msgstr "ugyldig type-streng «%s»" + +#: src/ls.c:2054 +#, fuzzy, c-format +msgid "unrecognized prefix: %s" +msgstr "ukjent flagg «-%c»" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "ubegripelig verdi i miljøvariabelen LS_COLORS" + +#: src/ls.c:2145 +#, fuzzy, c-format +msgid "cannot determine device and inode of %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/ls.c:2155 +#, fuzzy, c-format +msgid "not listing already-listed directory: %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/ls.c:2208 src/remove.c:929 +#, fuzzy, c-format +msgid "reading directory %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/ls.c:2603 +#, fuzzy, c-format +msgid "cannot compare file names %s and %s" +msgstr "kan ikke opprette %s «%s» til «%s»" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" + +#: src/ls.c:3784 +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" + +#: src/ls.c:3799 +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" + +#: src/ls.c:3831 +#, fuzzy +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -g (ignorert)\n" +" -G, --no-group ta ikke med gruppe i listingen\n" +" -h, --human-readable skriv størrelser i et format lesbart av " +"mennesker\n" +" (f.eks. 1K 234M 2G)\n" +" -H, --si det sammen, men bruk 1000 som base, ikke 1024\n" +" --indicator-style=ORD legg til indikator med stil ORD til elementer:\n" +" none (forvalgt), classify (-F), file-type (-p)\n" +" -i, --inode list indeksnummeret for hver fil\n" +" -I, --ignore=MØNSTER vis ikke filer som stemmer overens med\n" +" shell-MØNSTERet\n" +" -k, --kilobytes bruk 1024 blokker, på tross av POSIXLY_CORRECT\n" +" -l bruk langt listeformat\n" +" -L, --dereference vis filer som pekes på av symbolske linker\n" +" -m skriv full skjermbredde med kommaseparering\n" +" -n, --numeric-uid-gid skriv UID og GID med tall istedet for navn\n" +" -N, --literal skriv ut alle tegn (inklusive kontrolltegn)\n" +" -o bruk langt listeformat uten gruppeinformasjon\n" +" -p legg til en bokstav for filtypen\n" +" -q, --hide-control-chars skriv ? istedet for ikke-grafiske tegn\n" +" --show-control-chars vis kontrolltegn som de er (forvalgt)\n" +" -Q, --quote-name sett filnavn i gåseøyne\n" +" --quoting-style=ORD bruk beskyttelsesstil ORD for filnavn:\n" +" literal, shell, shell-always, c eller escape\n" +" -r, --reverse sorter baklengs\n" +" -R, --recursive list underkataloger rekursivt\n" +" -s, --size skriv blokkstørrelse for hver fil\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" + +#: src/md5sum.c:385 +#, fuzzy, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "%s: %lu: ukorrekt formattert MD5 sjekksumlinje" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "%s: FEIL ved åpning eller lesing\n" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "FEIL" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "OK" + +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%s: lesefeil" + +#: src/md5sum.c:457 +#, fuzzy, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "%s: ingen riktig formatterte MD5-sjekksumlinjer funnet" + +#: src/md5sum.c:470 +#, fuzzy, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "ADVARSEL: %d av %d oppførte %s kunne ikke leses\n" + +#: src/md5sum.c:473 +msgid "file" +msgstr "fil" + +#: src/md5sum.c:473 +msgid "files" +msgstr "filer" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "ADVARSEL: %d av %d beregnede %s stemte IKKE overens" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "sjekksum" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "sjekksummer" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" +"flaggene --binary og --text er meningsløse ved verifisering av sjekksummer" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "flaggene --string og --check kan ikke brukes samtidig" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "flagget --status har bare betydning ved sjekking av sjekksummer" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "flagget --warn har bare betydning ved sjekking av sjekksummer" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "ingen filer kan spesifiseres når flagget --string brukes" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "kun ett argument kan spesifiseres ved bruk av --check" + +#: src/mkdir.c:61 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "Bruk: %s [FLAGG] [FIL]...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" + +#: src/mkdir.c:69 +#, fuzzy +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +"Opprett FILKATALOG(ene), dersom de ikke allerede eksisterer.\n" +"\n" +" -m, --mode=BESKYTTELSE sett beskyttelse (som chmod), ikke rwxrwxrwx - " +"umask\n" +" -p, --parents opprett foreldrekataloger som nødvendig\n" +" --verbose skriv en melding for hver filkatalog som opprettes\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis programversjon og avslutt\n" + +#: src/mkdir.c:113 +#, fuzzy, c-format +msgid "created directory %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/mkdir.c:190 +#, fuzzy, c-format +msgid "cannot set permissions of directory %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/mkfifo.c:55 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "Bruk: %s [FLAGG] [FIL]...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" + +#: src/mkfifo.c:63 src/mknod.c:64 +#, fuzzy +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" +"Opprett navngitte pipes (FIFOs) med angitte NAVN.\n" +"\n" +" -m, --mode=BESKYTTELSE sett beskyttelse (som chmod), 0666 - ikke umask\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis programversjon og avslutt\n" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "fifo-filer er ikke støttet" + +#: src/mkfifo.c:123 src/mknod.c:127 +#, fuzzy +msgid "invalid mode" +msgstr "ugyldig antall" + +#: src/mkfifo.c:142 +#, fuzzy, c-format +msgid "cannot set permissions of fifo %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/mknod.c:55 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "Bruk: %s [FLAGG]... SETT1 [SETT2]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" + +#: src/mknod.c:76 +#, fuzzy +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"Opprett den spesielle filen NAVN med gitt TYPE.\n" +"\n" +" -m, --mode=BESKYTTELSE sett beskyttelse (som chmod), 0666 - ikke umask\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis programversjon og avslutt\n" +"\n" +"MAJOR MINOR er ikke tillatt for TYPE p, men er nødvendig ellers. TYPE kan\n" +"være:\n" +"\n" +" b opprett en blokk spesiell fil (bufret) \n" +" c, u opprett en tegn spesiell fil (ubufret) \n" +" p opprett en FIFO\n" + +#: src/mknod.c:141 +#, fuzzy +msgid "wrong number of arguments" +msgstr "for få argumenter" + +#: src/mknod.c:153 +#, fuzzy +msgid "block special files not supported" +msgstr "feil ved lukking av filen" + +#: src/mknod.c:162 +msgid "character special files not supported" +msgstr "tegn-spesielle filer er ikke støttet" + +#: src/mknod.c:171 +#, fuzzy +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" +"ved oppretting av blokk-spesielle filer, må major og minor enhetsnummer\n" +"spesifiseres" + +#: src/mknod.c:186 +#, fuzzy, c-format +msgid "invalid major device number %s" +msgstr "ugyldig startlinjenummer: «%s»" + +#: src/mknod.c:191 +#, fuzzy, c-format +msgid "invalid minor device number %s" +msgstr "ugyldig startlinjenummer: «%s»" + +#: src/mknod.c:196 +#, fuzzy, c-format +msgid "invalid device %s %s" +msgstr "ugyldig type-streng «%s»" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "major- og minor-nummer kan ikke angis for fifo-filer" + +#: src/mknod.c:231 +#, fuzzy, c-format +msgid "cannot set permissions of %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" + +#: src/mv.c:339 +#, fuzzy +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Endre navn på KILDE til MÅL, eller flytt KILDE(r) til FILKATALOG.\n" +"\n" +" -b, --backup gjør sikkerhetskopi før sletting\n" +" -f, --force slett eksisterende filer uten bekreftelse\n" +" -i, --interactive be om bekreftelse før overskriving av filer\n" +" -S, --suffix=SUFFIKS overstyr det vanlige sikkerhetskopi-" +"suffikset\n" +" -u, --update flytt bare eldre eller helt nye filer\n" +" -v, --verbose forklar hva som skjer\n" +" -V, --version-control=ORD overstyr den vanlige versjonskontrollen\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis programversjon og avslutt\n" +"\n" + +#: src/mv.c:467 +#, fuzzy, c-format +msgid "specified target, %s is not a directory" +msgstr "«%s» er ikke en katalog" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "ved flytting av flere filer, må siste argument være en filkatalog" + +#: src/nice.c:67 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "Bruk: %s [FLAGG] [FIL]...\n" + +#: src/nice.c:68 +#, fuzzy +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" +"Kjør KOMMANDO med en justert behandlingsprioritet.\n" +"Uten noen KOMMANDO, skriv ut nåværende behandlingsprioritet. JUSTERING\n" +"er forvalgt til 10. Skalaen går fra -20 (høyest prioritet) til 19 " +"(lavest).\n" +"\n" +" -JUSTERING øk prioriteten med JUSTERING først\n" +" -n, --adjustment=JUSTERING samme som -JUSTERING\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis versjonsinformasjon og avslutt\n" + +#: src/nice.c:109 src/nice.c:122 +#, fuzzy, c-format +msgid "invalid option `%s'" +msgstr "ugyldig type-streng «%s»" + +#: src/nice.c:147 +#, fuzzy, c-format +msgid "invalid priority `%s'" +msgstr "ugyldig felt-nummer: «%s»" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "en kommando må bli gitt med en justering" + +#: src/nice.c:178 src/nice.c:187 +#, fuzzy +msgid "cannot get priority" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/nice.c:192 +#, fuzzy +msgid "cannot set priority" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/nl.c:188 +#, fuzzy +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" +"Skriv hver FIL til standard ut, siste linje først.\n" +"Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +"inn.\n" +"\n" +" -b, --before føy til separator før istedet for etter\n" +" -r, --regex tolk separatoren som et regulært uttrykk\n" +" -s, --separator=STRENG bruk STRENG som separator istedet for linjeskift\n" +" --help vis denne hjelpteksten og avslutt\n" +" --version vis programversjon og avslutt\n" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" + +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "ugyldig startlinjenummer: «%s»" + +#: src/nl.c:514 +#, c-format +msgid "invalid line number increment: `%s'" +msgstr "ugyldig linjenummer-økning: «%s»" + +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "ugyldig antall blanke linjer: «%s»" + +#: src/nl.c:541 +#, c-format +msgid "invalid line number field width: `%s'" +msgstr "ugyldig linjenummer-feltbredde: «%s»" + +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"Bruk: %s [FLAGG]... [FIL]...\n" +" eller: %s --traditional [FIL] [[+]POSISJON [[+]MERKE]]\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" + +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "ugyldig type-streng «%s»" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" +"ugyldig type-streng «%s»;\n" +"dette systemet støtter ikke en %lu-byte heltallstype" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" +"ugyldig type-streng «%s»;\n" +"dette systemet støtter ikke en %lu-byte flyttallstype" + +#: src/od.c:917 +#, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "ugyldig tegn «%c» i type-streng «%s»" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "kan ikke hoppe til bak slutten av kombinert inndata" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "posisjon på gammel stil" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "ugyldig ut-adresse radix «%c»; det må være ett av tegnene [doxn]" + +#: src/od.c:1717 +msgid "skip argument" +msgstr "hopp over argument" + +#: src/od.c:1725 +msgid "limit argument" +msgstr "begrens argument" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "minimal strenglengde" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "" + +#: src/od.c:1804 +msgid "width specification" +msgstr "breddespesifikasjon" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "ingen type kan spesifiseres ved dumping av strenger" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "ugyldig andre-operand i kompatibilitetsmodus «%s»" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "i kompatibilitetsmodus må de siste to argumentene være posisjoner" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "kompatibilitetsmodus støtter maksimum tre argumenter" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "advarsel: ugyldig bredde %lu; bruker %d istedet" + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "%d: fmt=\"%s\" bredde=%d\n" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "standard inn er lukket" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" + +#: src/pathchk.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "Bruk: %s [FLAGG]... [FIL]...\n" + +#: src/pathchk.c:147 +#, fuzzy +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" +"Sjekker om filNAVN er portable.\n" +"\n" +" -p, --portability sjekk for alle POSIX-systemer, ikke bare dette\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis versjonsinformasjon og avslutt\n" + +#: src/pathchk.c:237 +#, fuzzy, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "tabulatorstørrelse inneholder et ugyldig tegn" + +#: src/pathchk.c:257 +#, fuzzy, c-format +msgid "`%s' is not a directory" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "katalogen «%s» er ikke søkbar" + +#: src/pathchk.c:355 +#, fuzzy, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "navnet «%s» har lengde %d; overstiger grensen på %d" + +#: src/pathchk.c:381 +#, fuzzy, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "stien «%s» har lengde %d; overstiger grensen på %d" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "" + +#: src/pinky.c:292 +#, fuzzy +msgid "Login name: " +msgstr "%s: ikke noe login-navn\n" + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "" + +#: src/pinky.c:298 +msgid "???\n" +msgstr "" + +#: src/pinky.c:318 +msgid "Directory: " +msgstr "" + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "" + +#: src/pinky.c:341 +msgid "Project: " +msgstr "" + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "" + +#: src/pinky.c:386 +msgid "Login" +msgstr "" + +#: src/pinky.c:388 +#, fuzzy +msgid "Name" +msgstr "am" + +#: src/pinky.c:389 +msgid " TTY" +msgstr "" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "" + +#: src/pinky.c:392 +msgid "When" +msgstr "" + +#: src/pinky.c:395 +msgid "Where" +msgstr "" + +#: src/pinky.c:469 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "Bruk: %s [FLAGG]... [FIL]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" + +#: src/pinky.c:574 +#, fuzzy +msgid "no username specified; at least one must be specified when using -l" +msgstr "ingen filer kan spesifiseres når flagget --string brukes" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "" + +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "«--pages» ugyldig område med sidenummer: «%s»" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "«--pages» ugyldig start-sidenummer: «%s»" + +#: src/pr.c:829 +#, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "«--pages» ugyldig slutt-sidenummer: «%s»" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "«--pages» start-sidenummeret er større enn slutt-sidenummeret" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "«--pages=FØRSTE_SIZE[:SISTE_SIDE]» mangler argument" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "«--columns=SPALTER» ugyldig antall kolonner: «%s»" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "«-l SIDE_LENGDE» igyldig antall linjer: «%s»" + +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "«-N TALL» ugyldig start-linjenummer: «%s»" + +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "«-o MARG» ugyldig linje-offset: «%s»" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "«-w SIDE_BREDDE» igyldig antall tegn: «%s»" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "«-W SIDE_BREDDE» ugyldig antall tegn: «%s»" + +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "Kan ikke spesifisere antall kolonner når det skrives i parallell." + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "Kan ikke spesifisere både skriving i kryss og skriving i parallell" + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "«-%c» ekstra tegn eller ugyldig tall i argumentet: «%s»" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "sidebredde for smal" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "start-sidenummeret er større enn totalt antall sider: «%d»" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr "" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" + +#: src/pr.c:2849 +#, fuzzy +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" +"Sammenlign de sorterte filene VENSTRE_FIL og HØYRE_FIL linje for linje.\n" +"\n" +" -1 se bort fra linjer som bare finnes i den venstre filen\n" +" -2 se bort fra linjer som bare finnes i den høyre filen\n" +" -3 se bort fra linjer som finnes i begge filer\n" +" --help vis denne hjelpteksten og avslutt\n" +" --version vis programversjon og avslutt\n" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" + +#: src/printenv.c:43 +msgid "David MacKenzie and Richard Mlynarik" +msgstr "" + +#: src/printenv.c:63 +#, fuzzy, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" +"Dersom ingen miljø-VARIABEL er spesifisert, skriv ut alle.\n" +"\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis versjonsinformasjon og avslutt\n" + +#: src/printf.c:87 +#, fuzzy, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "advarsel: overflødige argumenter har blitt ignorert" + +#: src/printf.c:100 +#, fuzzy, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "Bruk: %s [FLAGG]... [INN [UT]]\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "%s: ventet en numerisk verdi" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "%s: verdi ikke fullstendig konvertert" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "manglende heksadesimal-tall i beskyttet tegnsekvens" + +#: src/printf.c:292 +#, fuzzy, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "ugyldig tegn-klasse «%s»" + +#: src/printf.c:472 +#, fuzzy, c-format +msgid "invalid field width: %s" +msgstr "ugyldig felt-nummer: «%s»" + +#: src/printf.c:498 +#, fuzzy, c-format +msgid "invalid precision: %s" +msgstr "ugyldig type-streng «%s»" + +#: src/printf.c:519 +#, fuzzy, c-format +msgid "%%%c: invalid directive" +msgstr "%s: ugyldig mønster" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "Bruk: %s format [argument...]\n" + +#: src/printf.c:594 +#, fuzzy, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "advarsel: overflødige argumenter har blitt ignorert" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "%s (for regexp «%s»)" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"Bruk : %s [FLAGG]... [INN]... (uten -G)\n" +"eller: %s -G [FLAGG]... [INN [UT]]\n" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" + +#: src/ptx.c:1978 +#, fuzzy +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" +"Dette programmet er fri programvare. Du kan redistribuerer det og/eller\n" +"endre det under betingelsene gitt i «GNU General Public License» som\n" +"utgitt av «Free Software Foundation» -- enten versjon 2, eller (ved ditt\n" +"valg) en hvilken som helst senere versjon.\n" +"\n" +"Dette programmet er distribuert under håp om at det vil være nyttig,\n" +"men UTEN NOEN GARANTIER, heller ikke impliserte om SALGBARHET eller\n" +"EGNETHET FOR NOEN SPESIELL ANVENDELSE. Se «GNU General Public License»\n" +"for flere detaljer.\n" +"\n" +"Du skal ha mottatt en kopi av «GNU General Public License» sammen med\n" +"dette programmet -- hvis ikke, skriv til Free Software Foundation Inc.,\n" +"59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" + +#: src/ptx.c:1992 +#, fuzzy +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" +"Dette programmet er fri programvare. Du kan redistribuerer det og/eller\n" +"endre det under betingelsene gitt i «GNU General Public License» som\n" +"utgitt av «Free Software Foundation» -- enten versjon 2, eller (ved ditt\n" +"valg) en hvilken som helst senere versjon.\n" +"\n" +"Dette programmet er distribuert under håp om at det vil være nyttig,\n" +"men UTEN NOEN GARANTIER, heller ikke impliserte om SALGBARHET eller\n" +"EGNETHET FOR NOEN SPESIELL ANVENDELSE. Se «GNU General Public License»\n" +"for flere detaljer.\n" +"\n" +"Du skal ha mottatt en kopi av «GNU General Public License» sammen med\n" +"dette programmet -- hvis ikke, skriv til Free Software Foundation Inc.,\n" +"59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" + +#: src/pwd.c:74 +#, fuzzy +msgid "ignoring non-option arguments" +msgstr "for mange ikke-flagg-argumenter" + +#: src/pwd.c:78 +#, fuzzy +msgid "cannot get current directory" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/readlink.c:69 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "Bruk: %s [FLAGG]... [FIL]...\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" + +#: src/remove.c:394 +#, fuzzy, c-format +msgid "cannot chdir from %s to .." +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/remove.c:407 src/remove.c:488 +#, fuzzy, c-format +msgid "cannot lstat `.' in %s" +msgstr "kan ikke kjøre %s" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, fuzzy, c-format +msgid "cannot lstat %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/remove.c:603 +#, fuzzy, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/remove.c:604 +#, fuzzy, c-format +msgid "%s: descend into directory %s? " +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/remove.c:614 +#, fuzzy, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: slette skrive-beskyttet fil «%s»? " + +#: src/remove.c:615 +#, fuzzy, c-format +msgid "%s: remove %s %s? " +msgstr "%s: slette «%s»? " + +#: src/remove.c:639 +#, fuzzy, c-format +msgid "removed %s\n" +msgstr "sletter %s\n" + +#: src/remove.c:654 src/remove.c:1059 +#, fuzzy, c-format +msgid "removed directory: %s\n" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, fuzzy, c-format +msgid "cannot remove directory %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/remove.c:815 +#, fuzzy, c-format +msgid "cannot open directory %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/remove.c:896 src/remove.c:1002 +#, fuzzy, c-format +msgid "cannot chdir from %s to %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/remove.c:904 +#, fuzzy, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +"ADVARSEL: Sirkulær katalogstruktur.\n" +"Dette betyr nesten helt sikkert at du har et skadet filsystem.\n" +"MELD IFRA TIL DIN SYSTEMADMININISTRATOR.\n" +"Følgende to kataloger har samme inode-nummer:\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "kan ikke slette «.» eller «..»" + +#: src/rm.c:60 +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "" + +#: src/rm.c:99 src/touch.c:244 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "Bruk: %s [FLAGG]... [FIL]...\n" + +#: src/rm.c:100 +#, fuzzy +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Slett FIL(er).\n" +"\n" +" -d, --directory slett filkataloger, selv om de ikke er tomme\n" +" (kun super-user)\n" +" -f, --force ignorer filer som ikke eksisterer, ingen " +"bekreftelse\n" +" -i, --interactive be om bekreftelse før sletting av filer\n" +" -r, -R, --recursive slett innholdet av filkataloger rekursivt\n" +" -v, --verbose forklar hva som skjer\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis programversjon og avslutt\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, fuzzy, c-format +msgid "removing directory, %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/rmdir.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "Bruk: %s [FLAGG]... [FIL]...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" + +#: src/rmdir.c:154 +#, fuzzy +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +"Slett FILKATALOG(er), dersom de er tomme.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignorer alle feil som enbart skyldes at katalogen ikke\n" +" er tom\n" +" -p, --parents slett gitte foreldrekataloger dersom de blir tomme\n" +" --verbose skriv ut diagnostikk for hver katalog som behandles\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis programversjon og avslutt\n" + +#: src/seq.c:82 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"Bruk : %s [FLAGG]... [INN]... (uten -G)\n" +"eller: %s -G [FLAGG]... [INN [UT]]\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" + +#: src/seq.c:96 +#, fuzzy, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" +"Skriv ut tallene fra FØRSTE til SISTE, med steg på ØKNING.\n" +"\n" +" -f, --format FORMAT bruk printf(3)-FORMAT (forvalgt: %%g)\n" +" -s, --separator STRENG bruk STRENG for å separere tallene (forvalgt: " +"\\n)\n" +" -w, --equal-width gjør bredden lik ved å fylle inn med nuller " +"foran\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis versjonsinformasjon og avslutt\n" +"\n" +"Hvis FØRSTE eller ØKNING ikke er oppgitt, er forvalgt verdi 1.\n" +"FØRSTE, ØKNING og SISTE tolkes som desimalverdier. ØKNING skal være\n" +"positiv hvis FØRSTE er mindre enn SISTE, og negativ ellers. Når FORMAT\n" +"er oppgitt, må det inneholde nøyaktig ett av printf-direktivene for\n" +"desimaltall: %%e, %%f eller %%g.\n" + +#: src/seq.c:119 +#, fuzzy, c-format +msgid "invalid floating point argument: %s" +msgstr "ugyldig startlinjenummer: «%s»" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "når startverdien er større enn grensen må økningen være negativ" + +#: src/seq.c:213 +#, fuzzy +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "startfeltnummer-argumentet til «-k»-flagget må være positivt" + +#: src/seq.c:423 +#, fuzzy, c-format +msgid "invalid format string: `%s'" +msgstr "ugyldig type-streng «%s»" + +#: src/seq.c:445 +#, fuzzy +msgid "format string may not be specified when printing equal width strings" +msgstr "ingen type kan spesifiseres ved dumping av strenger" + +#: src/shred.c:160 +#, fuzzy, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "Bruk: %s [FLAGG] [FIL]...\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" + +#: src/shred.c:174 +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" + +#: src/shred.c:808 +#, fuzzy, c-format +msgid "%s: cannot rewind" +msgstr "kan ikke kjøre %s" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "" + +#: src/shred.c:868 +#, fuzzy, c-format +msgid "%s: error writing at offset %s" +msgstr "feil ved skriving til %s" + +#: src/shred.c:897 +#, fuzzy, c-format +msgid "%s: file too large" +msgstr "fil trunkert" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "" + +#: src/shred.c:936 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "" + +#: src/shred.c:1195 +#, fuzzy, c-format +msgid "%s: invalid file type" +msgstr "%s: ugyldig antall linjer" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "" + +#: src/shred.c:1265 +#, fuzzy, c-format +msgid "%s: error truncating" +msgstr "fil trunkert" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "" + +#: src/shred.c:1371 +#, fuzzy, c-format +msgid "%s: removing" +msgstr "sletter %s\n" + +#: src/shred.c:1412 +#, fuzzy, c-format +msgid "%s: renamed to %s" +msgstr "%s: lesefeil" + +#: src/shred.c:1438 +#, fuzzy, c-format +msgid "%s: removed" +msgstr "%s: slette «%s»? " + +#: src/shred.c:1503 +#, fuzzy, c-format +msgid "%s: cannot remove" +msgstr "%s: kan ikke overskrive filkatalog" + +#: src/shred.c:1551 +#, fuzzy, c-format +msgid "%s: invalid number of passes" +msgstr "%s: ugyldig antall sekunder" + +#: src/shred.c:1568 +#, fuzzy, c-format +msgid "%s: invalid file size" +msgstr "%s: ugyldig antall linjer" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "" + +#: src/sleep.c:52 +#, fuzzy, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" +"Sov i ANTALL sekund.\n" +"SUFFIKS kan være s for å angi sekunder, m for minutter, h for \n" +"timer (hours) og d for dager.\n" +"\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis versjonsinformasjon og avslutt\n" + +#: src/sleep.c:155 +#, fuzzy, c-format +msgid "invalid time interval `%s'" +msgstr "ugyldig felt-nummer: «%s»" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" + +#: src/sort.c:444 +#, fuzzy +msgid "cannot create temporary file" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/sort.c:467 +msgid "open failed" +msgstr "" + +#: src/sort.c:487 src/sort.c:2496 +#, fuzzy +msgid "close failed" +msgstr "feil ved lukking av filen" + +#: src/sort.c:495 +#, fuzzy +msgid "write failed" +msgstr "feil ved skriving" + +#: src/sort.c:641 +msgid "sort size" +msgstr "" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "" + +#: src/sort.c:972 +msgid "read failed" +msgstr "" + +#: src/sort.c:1570 +#, fuzzy, c-format +msgid "%s: %s:%s: disorder: " +msgstr "%s: %s:%d: uorden: " + +#: src/sort.c:1574 +#, fuzzy +msgid "standard error" +msgstr "stdin: lesefeil" + +#: src/sort.c:2032 +#, fuzzy, c-format +msgid "%s: invalid field specification `%s'" +msgstr "ugyldig feltspesifikasjon «%s»" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "" + +#: src/sort.c:2064 +#, fuzzy, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "ugyldig type-streng «%s»" + +#: src/sort.c:2298 +#, fuzzy +msgid "invalid number after `-'" +msgstr "ugyldig antall bytes" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +#, fuzzy +msgid "invalid number after `.'" +msgstr "ugyldig antall bytes" + +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "" + +#: src/sort.c:2338 +#, fuzzy +msgid "invalid number at field start" +msgstr "ugyldig antall linjer" + +#: src/sort.c:2342 src/sort.c:2370 +#, fuzzy +msgid "field number is zero" +msgstr "ugyldig felt-nummer: «%s»" + +#: src/sort.c:2351 +msgid "character offset is zero" +msgstr "" + +#: src/sort.c:2366 +#, fuzzy +msgid "invalid number after `,'" +msgstr "ugyldig antall bytes" + +#: src/sort.c:2411 +#, fuzzy, c-format +msgid "multi-character tab `%s'" +msgstr "ugyldig tegn-klasse «%s»" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "" + +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "Bruk: %s [FLAGG] [INPUT [PREFIKS]]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" + +#: src/split.c:108 +#, fuzzy, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" +"Skriv stykker av fast størrelse av INPUT til PREFIKSaa, PREFIKSab, ...;\n" +"Forvalgt PREFIKS er `x'. Dersom ingen INPUT er spesifisert, eller INPUT er " +"-,\n" +"leses det fra standard inn.\n" +"\n" +" -ANTALL samme som -l ANTALL\n" +" -b, --bytes=STØRRELSE skriv STØRRELSE bytes i hver utfil\n" +" -C, --line-bytes=STØRRELSE skriv maksimum STØRRELSE bytes med linjer per\n" +" utfil\n" +" -l, --lines=ANTALL skriv ANTALL linjer i hver utfil\n" +" --verbose skriv en diagnostikk til standard error rett\n" +" før hver utfil åpnes\n" +" --help vis denne hjelpteksten og avslutt\n" +" --version vis programversjon og avslutt\n" +"\n" +"STØRRELSE kan ha en multiplikatorendelse: b for 512, k for 1K eller\n" +" m for 1 Meg.\n" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "" + +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "lager filen «%s»\n" + +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "kan ikke dele opp på mer enn én måte" + +#: src/split.c:394 +#, fuzzy, c-format +msgid "%s: invalid suffix length" +msgstr "%s: ugyldig antall linjer" + +#: src/split.c:408 src/split.c:434 +#, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: ugyldig antall bytes" + +#: src/split.c:421 +#, c-format +msgid "%s: invalid number of lines" +msgstr "%s: ugyldig antall linjer" + +#: src/split.c:470 +#, fuzzy, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "advarsel: ugyldig bredde %lu; bruker %d istedet" + +#: src/split.c:483 +msgid "invalid number" +msgstr "ugyldig antall" + +#: src/stat.c:326 +#, fuzzy +msgid "*** invalid date/time ***" +msgstr "ugyldig felt-nummer: «%s»" + +#: src/stat.c:608 +#, fuzzy, c-format +msgid "cannot read file system information for %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/stat.c:684 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "Bruk: %s [FLAGG] [FIL]...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" + +#: src/stty.c:504 +#, fuzzy +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" +"Skriv ut eller endre terminal-karakteristikk.\n" +"\n" +" -a, --all skriv ut alle nåværende innstillinger i menneske-lesbar " +"form\n" +" -g, --save skriv ut alle nåværende innstillinger i stty-lesbar form\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis versjonsinformasjon og avslutt\n" +"\n" +"«-» før INNSTILLING indikerer en motsatt innstilling. «*» markerer\n" +"innstillinger som ikke følger POSIX-standarden. Det underliggende systemet\n" +"definerer hvilke innstillinger som er tilgjengelige.\n" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" + +#: src/stty.c:570 +#, fuzzy +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" +"\n" +"Kontrollinnstillinger:\n" +" [-]clocal slå av signaler for modem-kontroll\n" +" [-]cread la inndata bli mottatt\n" +"* [-]crtscts slå på RTC/CTS-forhandling («handshaking»)\n" +" csN sett tegnstørrelse til N bits, N i [5..8]\n" +" [-]cstopb bruk to stop-bits per tegn (én med «-»)\n" +" [-]hup send et hangup-signal når den siste prosessen lukker ttyen\n" +" [-]hupcl samme som [-]hup\n" +" [-]parenb generer paritetsbit ved skriving og forvent paritetsbit ved\n" +" lesing\n" +" [-]parodd sett ulik paritet (lik med «-»)\n" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:608 +#, fuzzy +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" +"\n" +"Innstillinger for utdata:\n" +"* bsN backspace-forsinkelsesstil, N i [0..1]\n" +"* crN vognretur-forsinkelsesstil, N i [0..3]\n" +"* ffN sideskift-forsinkelsesstil, N i [0..1]\n" +"* nlN linjeskift-forsinkelsesstil, N i [0..1]\n" +"* [-]ocrnl oversett vognretur til linjeskift\n" +"* [-]ofdel bruk slettetegn til fyll istedet for null-tegn\n" +"* [-]ofill bruk fyll-tegn (padding) istedet for forsinkelses-timing\n" +"* [-]olcuc oversett små bokstaver til store\n" +"* [-]onlcr oversett linjeskift til vognretur-linjeskift\n" +"* [-]onlret linjeskift foretar vognretur\n" +"* [-]onocr ikke skriv vognreturer i første kolonne\n" +" [-]opost etterprossesser output\n" +"* tabN horisontal tab-forsinkelsesstil, N i [0..3]\n" +"* tabs samme som tab0\n" +"* -tabs samme som tab3\n" +"* vtN vertikal tab-forsinkelsesstil, N i [0..1]\n" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" +"\n" +"Håndter tty-linjen koblet til standard inn. Uten argumenter, skriv ut\n" +"bitrate, linjedisiplin og avvik fra «stty sane». I innstillinger tas\n" +"TEGN bokstavelig eller kodet som i ^c, 0x37, 0177 eller 127; spesielle\n" +"verdier, ^- eller undef brukes for å slå av spesielle tegn\n" + +#: src/stty.c:787 +#, fuzzy +msgid "only one device may be specified" +msgstr "kun ett argument kan spesifiseres" + +#: src/stty.c:882 +#, fuzzy +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "flaggene --string og --check kan ikke brukes samtidig" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "når en stil for utdata spesifiseres kan ikke modi settes" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "" + +#: src/stty.c:957 src/stty.c:1064 +#, fuzzy, c-format +msgid "invalid argument `%s'" +msgstr "ugyldig type-streng «%s»" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, fuzzy, c-format +msgid "missing argument to `%s'" +msgstr "ugyldig type-streng «%s»" + +#: src/stty.c:1117 +#, fuzzy, c-format +msgid "%s: unable to perform all requested operations" +msgstr "standard inn: ikke i stand til å utføre alle forespurte operasjoner" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "new_mode: modus\n" + +#: src/stty.c:1462 +#, fuzzy, c-format +msgid "%s: no size information for this device" +msgstr "ingen informasjon om størrelse for denne enheten" + +#: src/stty.c:1944 +#, fuzzy, c-format +msgid "invalid integer argument `%s'" +msgstr "ugyldig linjenummer-økning: «%s»" + +#: src/su.c:289 +msgid "Password:" +msgstr "Passord:" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "getpass: kan ikke åpne /dev/tty" + +#: src/su.c:350 +#, fuzzy +msgid "cannot set groups" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/su.c:354 +msgid "cannot set group id" +msgstr "kan ikke sette gruppe-id" + +#: src/su.c:356 +#, fuzzy +msgid "cannot set user id" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/su.c:437 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "Bruk: %s [FLAGG]... [FIL]...\n" + +#: src/su.c:438 +#, fuzzy +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" +"Endre den effektive bruker-id'en og gruppe-id'en til BRUKER.\n" +"\n" +" -, -l, --login gjør shellet til et login-shell\n" +" -c, --command=KOMMANDO send en enkel kommando til shellet med -c\n" +" -f, --fast send -f til shellet (for csh eller tcsh)\n" +" -m, --preserve-environment ikke nullstill miljøvariabler\n" +" -s, --shell=SHELL kjør SHELL hvis /etc/shells tillater det\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis versjonsinformasjon og avslutt\n" +"\n" +"En enkel - impliserer -l. Hvis BRUKER ikke er angitt, anta root.\n" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "bruker %s eksisterer ikke" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "feil passord" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "bruker begrenset shell %s" + +#: src/su.c:580 +#, fuzzy, c-format +msgid "warning: cannot change directory to %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "" + +#: src/sum.c:64 +#, fuzzy +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" +"Skriv ut sjekksum og block-antall for hver FIL.\n" +"\n" +" -r bruk BSD-sum-algoritme, bruk 1K-blokker\n" +" -s, --sysv bruk SystemV-sum-algoritme, bruk 512 byte-blokker\n" +" --help vis denne hjelpteksten og avslutt\n" +" --version vis programversjon og avslutt\n" +"\n" +"Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +"inn.\n" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" + +#: src/sync.c:70 src/tty.c:112 +#, fuzzy +msgid "ignoring all arguments" +msgstr "for mange argumenter" + +#: src/sys2.h:492 +#, fuzzy +msgid " --help display this help and exit\n" +msgstr "" +"Vis CRC-sjekksummer og byteantall for hver FIL.\n" +"\n" +" --help vis denne hjelpteksten og avslutt\n" +" --version vis programversjon og avslutt\n" + +#: src/sys2.h:494 +#, fuzzy +msgid " --version output version information and exit\n" +msgstr "" +"Vis CRC-sjekksummer og byteantall for hver FIL.\n" +"\n" +" --help vis denne hjelpteksten og avslutt\n" +" --version vis programversjon og avslutt\n" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tac.c:139 +#, fuzzy +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" +"Skriv hver FIL til standard ut, siste linje først.\n" +"Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +"inn.\n" +"\n" +" -b, --before føy til separator før istedet for etter\n" +" -r, --regex tolk separatoren som et regulært uttrykk\n" +" -s, --separator=STRENG bruk STRENG som separator istedet for linjeskift\n" +" --help vis denne hjelpteksten og avslutt\n" +" --version vis programversjon og avslutt\n" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "stdin: lesefeil" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "separatoren kan ikke være tom" + +#: src/tail.c:49 +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "" + +#: src/tail.c:238 +#, fuzzy, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Skriv de første 10 linjene av hver FIL til standard ut.\n" +"Med mer enn en FIL er angitt, skriv ut filnavnet før hver FIL.\n" +"Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +"inn.\n" +"\n" +" -c, --bytes=STØRRELSE skriv ut første STØRRELSE bytes\n" +" -n, --lines=ANTALL skriv ut første ANTALL tegn istedet for 10\n" +" -q, --quiet, --silent ikke skriv ut filnavnene først\n" +" -v, --verbose skriv alltid filnavnene først\n" +" --help vis denne hjelpteksten, og avslutt\n" +" --version vis programversjon og avslutt\n" +"\n" +"STØRRELSE kan ha en multiplikator-endelse: b for 512, k for 1K, m for 1Meg.\n" +"Hvis -VERDI brukes som første FLAGG, leses det som -c VERDI hvis en av\n" +"multiplikatorene bkm er bakerst, ellers leses -n VERDI.\n" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" + +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "lukker %s (fd=%d)" + +#: src/tail.c:391 +#, fuzzy, c-format +msgid "%s: cannot seek to offset %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/tail.c:395 +#, fuzzy, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/tail.c:400 +#, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "" + +#: src/tail.c:835 +#, fuzzy, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "" +"«%s» har blitt erstattet av en ikke-vanlig fil. Kan ikke følge etter " +"slutten av ikke-vanlig fil" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "«%s» har blitt opprettet. Følger etter slutten av ny fil" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "«%s» har blitt erstattet. Følger etter slutten av ny fil" + +#: src/tail.c:1000 +#, fuzzy, c-format +msgid "%s: file truncated" +msgstr "fil trunkert" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "ingen filer igjen" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "" + +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "%c: ugyldig suffiks-tegn i avleggs flagg" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"for mange argumenter. Når tails gamle flagg-syntaks brukes (%s)\n" +"kan det ikke være mer enn ett filargument. Bruk det tilsvarende -n eller\n" +"-c-flagget isteden." + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"Advarsel: det er ikke portabelt å bruke to eller flere filargumenter med\n" +"tails gamle falggsyntaks (%s). Bruk det tilsvarende -n eller -c-\n" +"flagget isteden." + +#: src/tail.c:1423 +#, fuzzy, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "advarsel: ugyldig bredde %lu; bruker %d istedet" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "" +"%s: ugyldig maksimum antall av uendrete resultat av kall til stat() mellom " +"kall til open()" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "%s: ugyldig maksimum antall etterfølgende endringer i størrelse" + +#: src/tail.c:1534 +#, fuzzy, c-format +msgid "%s: invalid PID" +msgstr "%s: ugyldig nummer" + +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: ugyldig antall sekunder" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "" + +#: src/tee.c:33 +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "" + +#: src/tee.c:64 +#, fuzzy +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" +"Kopier standard inn til hver FIL og til standard ut.\n" +"\n" +" -a, --append legg til til de angitte FILene, ikke overskriv\n" +" -i, --ignore-interrrupts ignorer avbruddssignaler\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis versjonsinformasjon og avslutt\n" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "argument forventet\n" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "forventet heltallsuttrykk %s\n" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "«)» forventet\n" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "«)» forventet, fant %s\n" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "%s: unær operator forventet\n" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "%s: binær operator forventet\n" + +#: src/test.c:424 +msgid "before -lt" +msgstr "før -lt" + +#: src/test.c:432 +msgid "after -lt" +msgstr "etter -lt" + +#: src/test.c:446 +msgid "before -le" +msgstr "før -le" + +#: src/test.c:453 +msgid "after -le" +msgstr "etter -le" + +#: src/test.c:469 +msgid "before -gt" +msgstr "før -gt" + +#: src/test.c:476 +msgid "after -gt" +msgstr "etter -gt" + +#: src/test.c:490 +msgid "before -ge" +msgstr "før -ge" + +#: src/test.c:497 +msgid "after -ge" +msgstr "etter -ge" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "-nt aksepterer ikke -l\n" + +#: src/test.c:526 +msgid "before -ne" +msgstr "før -ne" + +#: src/test.c:533 +msgid "after -ne" +msgstr "etter -ne" + +#: src/test.c:549 +msgid "before -eq" +msgstr "før -eq" + +#: src/test.c:556 +msgid "after -eq" +msgstr "etter -eq" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "-ef aksepterer ikke -l\n" + +#: src/test.c:586 +#, fuzzy +msgid "-ot does not accept -l\n" +msgstr "-nt aksepterer ikke -l\n" + +#: src/test.c:593 +msgid "unknown binary operator" +msgstr "ukjent binær operator" + +#: src/test.c:781 +#, fuzzy +msgid "after -t" +msgstr "etter -lt" + +#: src/test.c:979 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "Bruk: %s [FLAGG]... [INN [UT]]\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" + +#: src/test.c:1009 +#, fuzzy +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" +"\n" +" ( UTTRYKK ) UTTRYKK er sant\n" +" ! UTTRYKK UTTRYKK er usant\n" +" UTTRYKK1 -a UTTRYKK2 både UTTRYKK1 og UTTRYKK2 er sanne\n" +" UTTRYKK1 -o UTTRYKK2 minst ett av uttrykkene er sanne\n" +"\n" +" [-n ] STRENG lengden av STRENG er ikke-null\n" +" -z STRENG lengden av STRENG er null\n" +" STRENG1 = STRENG2 strengene er like\n" +" STRENG1 != STRENG2 strengene er ulike\n" +"\n" +" HELTALL1 -eq HELTALL2 HELTALL1 er lik HELTALL2\n" +" HELTALL1 -ge HELTALL2 HELTALL1 er større enn eller lik HELTALL2\n" +" HELTALL1 -gt HELTALL2 HELTALL1 er større enn HELTALL2\n" +" HELTALL1 -le HELTALL2 HELTALL1 er mindre enn eller lik HELTALL2\n" +" HELTALL1 -lt HELTALL2 HELTALL1 er mindre enn HELTALL2\n" +" HELTALL1 -ne HELTALL2 HELTALL1 er ulikt HELTALL2\n" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" +"\n" +"Vær oppmerksom på at paranteser må være beskyttet (f.eks. med backslasher)\n" +"for shell. HELTALL kan også være -l STRENG, som evalueres til lengden\n" +"av STRENGen.\n" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "manglende «]»\n" + +#: src/test.c:1125 +#, fuzzy +msgid "too many arguments\n" +msgstr "for mange argumenter" + +#: src/touch.c:39 +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "" + +#: src/touch.c:164 src/touch.c:179 +#, fuzzy, c-format +msgid "creating %s" +msgstr "lager filen «%s»\n" + +#: src/touch.c:222 +#, fuzzy, c-format +msgid "cannot touch %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/touch.c:228 +#, fuzzy, c-format +msgid "setting times of %s" +msgstr "bevarer tider for %s" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" + +#: src/touch.c:311 src/touch.c:331 +#, fuzzy, c-format +msgid "invalid date format %s" +msgstr "ugyldig type-streng «%s»" + +#: src/touch.c:355 +#, fuzzy +msgid "cannot specify times from more than one source" +msgstr "kan ikke dele opp på mer enn én måte" + +#: src/touch.c:378 +#, fuzzy, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "advarsel: ugyldig bredde %lu; bruker %d istedet" + +#: src/touch.c:399 +#, fuzzy +msgid "file arguments missing" +msgstr "for få argumenter" + +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "Bruk: %s [FLAGG]... SETT1 [SETT2]\n" + +#: src/tr.c:331 +#, fuzzy +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" +"Oversett, klem sammen og/eller fjern tegn fra standard inn,\n" +"skriv ut til standard ut.\n" +"\n" +" -c, --complement først komplementer SETT1\n" +" -d, --delete slett tegn i SETT1, ikke oversett\n" +" -s, --squeeze-repeats erstatt rekke av tegn med ett\n" +" -t, --truncate-set1 forkort først SETT1 til lengden til SETT2\n" +" --help vis denne hjelpteksten og avslutt\n" +" --version vis programversjon og avslutt\n" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" + +#: src/tr.c:379 +#, fuzzy +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" +"\n" +"Oversettelse skjer dersom -d ikke er gitt, og både SETT1 og SETT2 er der.\n" +"-t kan bare bli brukt ved oversetting. SETT2 blir utvidet til lengden av\n" +"SETT1 ved å repetere dets siste tegn som nødvendig. Tegn til overs i \n" +"SETT2 ignoreres. Bare [:lower:] og [:upper:] er garantert å ekspandere i\n" +"stigende rekkefølge; brukt i SETT2 ved oversetting kan de bare brukes i par\n" +"for å angi oversetting fra store/små til små/store bokstaver. \n" +"-s bruker SETT1 hvis det ikke er oversetting eller sletting; ellers bruker \n" +"sammenklemming SETT2 og skjer etter oversetting eller sletting.\n" + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" + +#: src/tr.c:391 +#, fuzzy +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" +"\n" +"Oversettelse skjer dersom -d ikke er gitt, og både SETT1 og SETT2 er der.\n" +"-t kan bare bli brukt ved oversetting. SETT2 blir utvidet til lengden av\n" +"SETT1 ved å repetere dets siste tegn som nødvendig. Tegn til overs i \n" +"SETT2 ignoreres. Bare [:lower:] og [:upper:] er garantert å ekspandere i\n" +"stigende rekkefølge; brukt i SETT2 ved oversetting kan de bare brukes i par\n" +"for å angi oversetting fra store/små til små/store bokstaver. \n" +"-s bruker SETT1 hvis det ikke er oversetting eller sletting; ellers bruker \n" +"sammenklemming SETT2 og skjer etter oversetting eller sletting.\n" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" +"advarsel: den flertydige oktal-beskyttelsen \\%c%c%c blir tolket som \n" +"\t2-byte-sekvensen \\0%c%c, «%c»" + +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "ugyldig backslash-beskyttelse ved slutten av streng" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "ugyldig backslash-beskyttelse «\\%c»" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "rekke-sluttpunkt i «%s-%s» er i omvendt sorteringsrekkefølge" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "ugyldig gjentagelsesteller «%s» i [c*n]-konstruksjon" + +#: src/tr.c:999 +#, fuzzy +msgid "missing character class name `[::]'" +msgstr "ugyldig tegn-klasse «%s»" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "" + +#: src/tr.c:1025 +#, c-format +msgid "invalid character class `%s'" +msgstr "ugyldig tegn-klasse «%s»" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "%s: ekvivalensklasseoperanden må være et enkelt tegn" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "gjentagelseskonstruktet [c*] kan ikke opptre i streng1" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "kun ett [c*] gjentagelseskonstrukt kan opptre i streng2" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "[=c=]-uttrykk kan ikke opptre i streng2 under oversetting" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "når sett1 ikke blir forkortet, kan ikke streng2 være tom" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" +"når det oversettes med komlementerte tegnklasser\n" +"må streng2 mappe alle tegn i domenet til én" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" +"ved oversetting er de eneste tegnklassene som kan være i streng2\n" +"«upper» og «lower»" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "[c*]-konstruktet kan bare opptre i streng2 ved oversetting" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "to strenger må være gitt ved oversetting" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "" +"to strenger må være gitt ved både sletting og sammenklemming av gjentagelser" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" +"kun én streng kan oppgis når det slettes uten sammenklemming av gjentagelser" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "minst en streng må være gitt ved sammenklemming av gjentagelser" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "feilplassert [:upper:]- og/eller [:lower:]-konstruksjon" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" +"ugyldig identidetsmapping; ved oversetting må evt. [:lower:]- eller\n" +"[:upper:]-konstruksjoner i streng1 være plassert i henhold til en\n" +"tilsvarende konstruksjon (henholdsvis [:upper:] eller [:lower:]) i\n" +"streng2" + +#: src/true.c:34 +#, fuzzy, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Bruk: %s [NAVN]\n" +" eller: %s FLAGG\n" +"Skriv vertsnavnet til dette systemet.\n" +"\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis versjonsinformasjon og avslutt\n" + +#: src/tsort.c:97 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Bruk: %s [FLAGG] [FIL]\n" +"Skriv en fullstendig sortert liste konsistent med den delvise sorteringen\n" +"i FIL. Hvis ingen FIL eller hvis FIL er -, leses fra standard inn.\n" +"\n" +" --help vis denne hjelpteksten og avslutt\n" +" --version vis programversjon og avslutt\n" + +#: src/tsort.c:533 +#, fuzzy, c-format +msgid "%s: input contains a loop:" +msgstr "%s: inndata inneholder en løkke:\n" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "kun ett argument kan spesifiseres" + +#: src/tty.c:63 +#, fuzzy +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" +"Skriv ut filnavnet til terminalen som er koblet til standard inn.\n" +"\n" +" -s, --silent, --quiet ikke skriv ut noe, bare returner en " +"avslutningsstatus\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis versjonsinformasjon og avslutt\n" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "ikke en tty" + +#: src/uname.c:111 +#, fuzzy +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" +"Skriv ut visse systemdata. Uten FLAGG, samme som -s.\n" +"\n" +" -a, --all skriv ut all informasjon\n" +" -m, --machine skriv ut maskin-typen (hardwaretypen)\n" +" -n, --nodename skriv ut maskinens vertsnavn\n" +" -r, --release skriv ut operativsystemets versjonnummer\n" +" -s, --sysname skriv ut navnet til operativsystemet\n" +" -p, --processor skriv ut maskinens prosessortype\n" +" -v skriv ut versjonen til operativsystemet\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis versjonsinformasjon og avslutt\n" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" + +#: src/uname.c:226 +#, fuzzy +msgid "cannot get system name" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/unexpand.c:379 +#, fuzzy +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Konverter mellomrom i hver FIL til tabulatorer, skriv ut til standard ut.\n" +"Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +"inn.\n" +"\n" +" -a, --all konverter alle blanke tegn, istedet for bare " +"innledende\n" +" -t, --tabs=ANTALL ha tabulatorer ANTALL tegn fra hverandre istedet for " +"8\n" +" -t, --tabs=LISTE bruk komma-separert LISTE med tabulatorposisjoner.\n" +" --help vis denne hjelpteksten og avslutt\n" +" --version vis programversjon og avslutt\n" +"\n" +"Istedet for -t ANTALL eller -t LISTE, kan -ANTALL eller -LISTE brukes\n" + +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" + +#: src/unexpand.c:464 +#, fuzzy +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "advarsel: ugyldig bredde %lu; bruker %d istedet" + +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "Bruk: %s [FLAGG]... [INN [UT]]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr "" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" + +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "feil ved lesing av %s" + +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "feil ved skriving til %s" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "" + +#: src/uniq.c:473 src/uniq.c:498 +#, fuzzy +msgid "invalid number of fields to skip" +msgstr "ugyldig antall felt å hoppe over: «%s»" + +#: src/uniq.c:507 +#, fuzzy +msgid "invalid number of bytes to skip" +msgstr "ugyldig antall bytes å hoppe over: «%s»" + +#: src/uniq.c:516 +#, fuzzy +msgid "invalid number of bytes to compare" +msgstr "ugyldig antall bytes å sammenligne: «%s»" + +#: src/uniq.c:530 +#, fuzzy, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "advarsel: ugyldig bredde %lu; bruker %d istedet" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "å skrive alle dupliserte linjer *og* gjentagelsesantall er meningsløst" + +#: src/unlink.c:51 +#, fuzzy, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "Bruk: %s [FLAGG]... [INN [UT]]\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" + +#: src/unlink.c:99 +#, fuzzy, c-format +msgid "cannot unlink %s" +msgstr "kan ikke utføre ioctl på «%s»" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "kunne ikke finne ut boot-tid" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr " %2d:%02d%s oppe " + +#: src/uptime.c:140 +msgid "am" +msgstr "am" + +#: src/uptime.c:140 +msgid "pm" +msgstr "pm" + +#: src/uptime.c:142 +#, fuzzy, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "dag" +msgstr[1] "dag" + +#: src/uptime.c:144 +#, fuzzy, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "ugyldig antall" +msgstr[1] "ugyldig antall" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr ", snittlast: %.2f" + +#: src/uptime.c:191 src/users.c:118 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "Bruk: %s [FLAGG]... [FIL]...\n" + +#: src/uptime.c:192 +#, fuzzy, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Skriv ut hvem som for øyeblikket er pålogget i følge FIL.\n" +"Hvis FIL ikke er spesifisert brukes %s. %s som FIL er vanlig.\n" +"\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis versjonsinformasjon og avslutt\n" + +#: src/users.c:35 +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "" + +#: src/users.c:119 +#, fuzzy, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Skriv ut hvem som for øyeblikket er pålogget i følge FIL.\n" +"Hvis FIL ikke er spesifisert brukes %s. %s som FIL er vanlig.\n" +"\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis versjonsinformasjon og avslutt\n" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "" + +#: src/wc.c:129 +#, fuzzy +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" +"Skriv ut antall linjer, ord og bytes for hver FIL, og en total-linje\n" +"dersom mer enn én FIL er spesifisert. Dersom ingen FIL er spesifisert,\n" +"eller FIL er -, leses det fra standard inn.\n" +" -c, --bytes, --chars skriv ut antall bytes\n" +" -l, --lines skriv ut antall linjer.\n" +" -L, --max-line-length skriv ut lengden av den lengste linjen.\n" +" -w, --words skriv ut antall ord\n" +" --help vis denne hjelpteksten og avslutt\n" +" --version vid programversjon og avslutt\n" + +#: src/wc.c:137 +#, fuzzy +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" +"Vis CRC-sjekksummer og byteantall for hver FIL.\n" +"\n" +" --help vis denne hjelpteksten og avslutt\n" +" --version vis programversjon og avslutt\n" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "" + +#: src/who.c:223 +msgid " old " +msgstr " gammel " + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "" + +#: src/who.c:446 +msgid "clock change" +msgstr "" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" +"\n" +"# brukere=%u\n" + +#: src/who.c:498 +msgid "NAME" +msgstr "" + +#: src/who.c:498 +msgid "LINE" +msgstr "LINJE" + +#: src/who.c:498 +msgid "TIME" +msgstr "" + +#: src/who.c:498 +#, fuzzy +msgid "IDLE" +msgstr "FEIL" + +#: src/who.c:498 +msgid "PID" +msgstr "" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "" + +#: src/who.c:499 +msgid "EXIT" +msgstr "" + +#: src/who.c:574 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "Bruk: %s [FLAGG]... FIL1 FIL2\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" + +#: src/whoami.c:53 +#, fuzzy +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" +"Skriv ut brukernavnet bundet til den nåværende effektive brukeridentiteten.\n" +"Samme som id -un.\n" +"\n" +" --help vis denne hjelpeteksten og avslutt\n" +" --version vis versjonsinformasjon og avslutt\n" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "%s: kan ikke finne brukernavnet til UID %u\n" + +#: src/yes.c:49 +#, fuzzy, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "Bruk: %s [FLAGG]... [INN [UT]]\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" + +#, fuzzy +#~ msgid "\\%c: invalid escape" +#~ msgstr "%s: ugyldig mønster" + +#, fuzzy +#~ msgid "program error" +#~ msgstr "lesefeil" + +#, fuzzy +#~ msgid "cannot convert time" +#~ msgstr "kan ikke sette dato" + +#, fuzzy +#~ msgid "cannot format time" +#~ msgstr "kan ikke utføre ioctl på «%s»" + +#, fuzzy +#~ msgid "cannot change to `..' from directory %s" +#~ msgstr "kan ikke utføre ioctl på «%s»" + +#, fuzzy +#~ msgid "missing file arguments" +#~ msgstr "for få argumenter" + +#, fuzzy +#~ msgid "environment variable, QUOTING_STYLE" +#~ msgstr "ignorerer ugyldig lengde i miljøvariabelen COLUMNS: %s" + +#, fuzzy +#~ msgid "%s: is so large that it is not representable" +#~ msgstr "%s: %s er så stor at den ikke kan representeres" + +#, fuzzy +#~ msgid "cannot execute %s" +#~ msgstr "kan ikke utføre ioctl på «%s»" + +#, fuzzy +#~ msgid "cannot run %s" +#~ msgstr "kan ikke utføre ioctl på «%s»" + +#, fuzzy +#~ msgid "Try %s --help' for more information.\n" +#~ msgstr "Prøv med «%s --help» for mer informasjon.\n" + +#, fuzzy +#~ msgid "preserving permissions for %s" +#~ msgstr "kan ikke utføre ioctl på «%s»" + +#, fuzzy +#~ msgid "cannot lstat `.'" +#~ msgstr "kan ikke sette dato" + +#, fuzzy +#~ msgid "closing directory %s" +#~ msgstr "kan ikke utføre ioctl på «%s»" + +#, fuzzy +#~ msgid "%s: remove directory %s? " +#~ msgstr "kan ikke utføre ioctl på «%s»" + +#, fuzzy +#~ msgid "%s: directory %s is write protected; descend into it anyway? " +#~ msgstr "%s: katalog «%s» er skrivebskyttet; gå inn i den likevel? " + +#~ msgid "removing all entries of directory %s\n" +#~ msgstr "fjerner alt i filkatalog «%s»\n" + +#~ msgid "continue? " +#~ msgstr "fortsette? " + +#, fuzzy +#~ msgid "cannot change back to directory %s via `..'" +#~ msgstr "kan ikke utføre ioctl på «%s»" + +#, fuzzy +#~ msgid "%s: remove directory %s%s? " +#~ msgstr "kan ikke utføre ioctl på «%s»" + +#~ msgid " (might be nonempty)" +#~ msgstr " (er kanskje ikke tom)" + +#, fuzzy +#~ msgid "removing the directory itself: %s\n" +#~ msgstr "advarsel: kan ikke skifte katalog til %s" + +#, fuzzy +#~ msgid "cannot remove current directory %s" +#~ msgstr "kan ikke utføre ioctl på «%s»" + +#, fuzzy +#~ msgid " or: %s [-acm] MMDDhhmm[YY] FILE... (obsolete)\n" +#~ msgstr " eller: %s [-acm] MMDDttmm[ÅÅ] FIL... (avleggs)\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vis CRC-sjekksummer og byteantall for hver FIL.\n" +#~ "\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vis CRC-sjekksummer og byteantall for hver FIL.\n" +#~ "\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vis CRC-sjekksummer og byteantall for hver FIL.\n" +#~ "\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vis CRC-sjekksummer og byteantall for hver FIL.\n" +#~ "\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vis CRC-sjekksummer og byteantall for hver FIL.\n" +#~ "\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vis CRC-sjekksummer og byteantall for hver FIL.\n" +#~ "\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vis CRC-sjekksummer og byteantall for hver FIL.\n" +#~ "\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vis CRC-sjekksummer og byteantall for hver FIL.\n" +#~ "\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vis CRC-sjekksummer og byteantall for hver FIL.\n" +#~ "\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Vis CRC-sjekksummer og byteantall for hver FIL.\n" +#~ "\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vis CRC-sjekksummer og byteantall for hver FIL.\n" +#~ "\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ "Change the group membership of each FILE to GROUP.\n" +#~ "\n" +#~ " -c, --changes like verbose but report only when a change is " +#~ "made\n" +#~ " --dereference affect the referent of each symbolic link, " +#~ "rather\n" +#~ " than the symbolic link itself\n" +#~ " -h, --no-dereference affect symbolic links instead of any referenced " +#~ "file\n" +#~ " (available only on systems that can change the\n" +#~ " ownership of a symlink)\n" +#~ " -f, --silent, --quiet suppress most error messages\n" +#~ " --reference=RFILE use RFILE's group rather than the specified\n" +#~ " GROUP value\n" +#~ " -R, --recursive operate on files and directories recursively\n" +#~ " -v, --verbose output a diagnostic for every file processed\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Endre gruppen til hver FIL til GRUPPE.\n" +#~ "\n" +#~ " -c, --changes som verbose, men rapporter bare ved endringer\n" +#~ " -h, --no-dereference endre symbolske linker istedet for refererte " +#~ "filer\n" +#~ " (kun for systemer med systemkallet «lchown»)\n" +#~ " -f, --silent, --quiet undertrykk de fleste feilmeldingene\n" +#~ " --reference=RFIL bruke RFIL sin gruppe istedenfor å bruke en\n" +#~ " GRUPPE-verdi\n" +#~ " -R, --recursive endre filer og filkataloger rekursivt\n" +#~ " -v, --verbose gi en diagnostikk for hver fil som behandles\n" +#~ " --help vis denne hjelpeteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ "Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +#~ "\n" +#~ " -c, --changes like verbose but report only when a change is " +#~ "made\n" +#~ " --dereference affect the referent of each symbolic link, " +#~ "rather\n" +#~ " than the symbolic link itself\n" +#~ " -h, --no-dereference affect symbolic links instead of any referenced " +#~ "file\n" +#~ " (available only on systems that can change the\n" +#~ " ownership of a symlink)\n" +#~ " --from=CURRENT_OWNER:CURRENT_GROUP\n" +#~ " change the owner and/or group of each file only " +#~ "if\n" +#~ " its current owner and/or group match those " +#~ "specified\n" +#~ " here. Either may be omitted, in which case a " +#~ "match\n" +#~ " is not required for the omitted attribute.\n" +#~ " -f, --silent, --quiet suppress most error messages\n" +#~ " --reference=RFILE use RFILE's owner and group rather than\n" +#~ " the specified OWNER:GROUP values\n" +#~ " -R, --recursive operate on files and directories recursively\n" +#~ " -v, --verbose output a diagnostic for every file processed\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Endre eier og/eller gruppe til hver FIL til EIER og/eller GRUPPE.\n" +#~ "\n" +#~ " -c, --changes rapporter alle endringer\n" +#~ " --dereference foreta endringene på referenten av hver " +#~ "symbolsk\n" +#~ " link isteden for den sombolske linken selv\n" +#~ " -h, --no-dereference endre symbolske linker istedet for refererte " +#~ "filer\n" +#~ " (kun for systemer med systemkallet «lchown»)\n" +#~ " -f, --silent, --quiet undertrykk de fleste feilmeldingene\n" +#~ " --reference=RFIL bruk eier og gruppe til RFIL isteden for å " +#~ "bruke\n" +#~ " eksplisitte EIER.GRUPPE-verdier\n" +#~ " -R, --recursive endre filer og filkataloger rekursivt\n" +#~ " -v, --verbose fortell hva som skjer\n" +#~ " --help vis denne hjelpeteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" +#~ "Eier forblir uendret dersom utelatt. Gruppen forblir uendret dersom den\n" +#~ "ikke er spesifiert, men blir satt til login-gruppen dersom den er " +#~ "implisert\n" +#~ "med et punktum. Punktumet kan byttes ut med et kolon.\n" + +#, fuzzy +#~ msgid "" +#~ " -l, --link link files instead of copying\n" +#~ " -L, --dereference always follow symbolic links\n" +#~ " -p same as --preserve=mode,ownership," +#~ "timestamps\n" +#~ " --preserve[=ATTR_LIST] preserve the specified attributes " +#~ "(default:\n" +#~ " mode,ownership,timestamps), if possible\n" +#~ " additional attributes: links, all\n" +#~ " --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +#~ " --parents append source path to DIRECTORY\n" +#~ " -P same as `--no-dereference'\n" +#~ " -r copy recursively, non-directories as " +#~ "files\n" +#~ " WARNING: use -R instead when you might " +#~ "copy\n" +#~ " special files like FIFOs or /dev/zero\n" +#~ " --remove-destination remove each existing destination file " +#~ "before\n" +#~ " attempting to open it (contrast with --" +#~ "force)\n" +#~ msgstr "" +#~ "Kopier KILDE til MÅL, eller en eller flere KILDE(r) til FILKATALOG.\n" +#~ "\n" +#~ " -a, --archive samme som -dpR\n" +#~ " -b, --backup lag sikkerhetskopi før sletting\n" +#~ " -d, --no-dereference bevar linker\n" +#~ " -f, --force slett eksisterende filer uten bekreftelse\n" +#~ " -i, --interactive be om bekreftelse før overskriving av " +#~ "filer\n" +#~ " -l, --link lag linker istedet for å kopiere\n" +#~ " -p, --preserve forsøk å beholde filattributter\n" +#~ " -P, --parents legg kildens søkesti til FILKATALOG\n" +#~ " -r kopier rekursivt, alt utenom filkataloger\n" +#~ " kopieres som filer\n" +#~ " --sparse=NÅR kontroller oppretting av filer med hull\n" +#~ " -R, --recursive kopier filkataloger rekursivt\n" +#~ " -s, --symbolic-link lag symbolske linker istedet for å " +#~ "kopiere\n" +#~ " -S, --suffix=SUFFIKS overstyr det vanlige sikkerhetskopi-" +#~ "suffikset\n" +#~ " -u, --update kopier bare eldre eller helt nye filer\n" +#~ " -v, --verbose forklar hva som skjer\n" +#~ " -V, --version-control=ORD overstyr den vanlige versjonskontrollen\n" +#~ " -x, --one-file-system kopier bare filer fra dette filsystemet\n" +#~ " --help vis denne hjelpeteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" +#~ "Normalt blir kildefiler med hull oppdaget ved hjelp av en enkel " +#~ "heuristikk,\n" +#~ "og målfilen blir også laget med hull. Dette er oppførselen som er gitt " +#~ "med\n" +#~ "--sparse=auto. Spesifiser --sparse=always for å opprette en målfil med\n" +#~ "hull i, dersom kildefilen inneholder en tilstrekkelig lang sekvens med\n" +#~ "null-tegn. Bruk --sparse=never for å hindre oppretting av filer med " +#~ "hull.\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "Copy a file, converting and formatting according to the options.\n" +#~ "\n" +#~ " bs=BYTES force ibs=BYTES and obs=BYTES\n" +#~ " cbs=BYTES convert BYTES bytes at a time\n" +#~ " conv=KEYWORDS convert the file as per the comma separated keyword " +#~ "list\n" +#~ " count=BLOCKS copy only BLOCKS input blocks\n" +#~ " ibs=BYTES read BYTES bytes at a time\n" +#~ " if=FILE read from FILE instead of stdin\n" +#~ " obs=BYTES write BYTES bytes at a time\n" +#~ " of=FILE write to FILE instead of stdout\n" +#~ " seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +#~ " skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "BLOCKS and BYTES may be followed by the following multiplicative " +#~ "suffixes:\n" +#~ "xM M, c 1, w 2, b 512, kD 1000, k 1024, MD 1,000,000, M 1,048,576,\n" +#~ "GD 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +#~ "Each KEYWORD may be:\n" +#~ "\n" +#~ " ascii from EBCDIC to ASCII\n" +#~ " ebcdic from ASCII to EBCDIC\n" +#~ " ibm from ASCII to alternated EBCDIC\n" +#~ " block pad newline-terminated records with spaces to cbs-size\n" +#~ " unblock replace trailing spaces in cbs-size records with newline\n" +#~ " lcase change upper case to lower case\n" +#~ " notrunc do not truncate the output file\n" +#~ " ucase change lower case to upper case\n" +#~ " swab swap every pair of input bytes\n" +#~ " noerror continue after read errors\n" +#~ " sync pad every input block with NULs to ibs-size; when used\n" +#~ " with block or unblock, pad with spaces rather than NULs\n" +#~ msgstr "" +#~ "Kopier en fil, med konvertering og formattering som spesifisert.\n" +#~ "\n" +#~ " bs=BYTES tving ibs=BYTES og obs=BYTES\n" +#~ " cbs=BYTES konverter BYTES bytes om gangen\n" +#~ " conv=NØKKELORD konverter filen vha. en liste med kommaseparerte " +#~ "nøkkelord\n" +#~ " count=BLOKKER kopier bare BLOKKER innblokker\n" +#~ " ibs=BYTES les BYTES bytes om gangen\n" +#~ " if=FIL les fra FIL istedet for stdin\n" +#~ " obs=BYTES skriv BYTES bytes om gangen\n" +#~ " of=FIL skriv til FIL istedet for stdout, ikke kutt filen\n" +#~ " seek=BLOKKER hopp over BLOKKER blokker med størrelse obs fra\n" +#~ " begynnelsen av utdata\n" +#~ " skip=BLOKKER hopp over BLOKKER blokkermed størrelse ibs fra\n" +#~ " begynnelsen av inndata\n" +#~ " --help vis denne hjelpeteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" +#~ "BYTES kan ha suffiks: xM M, c 1, w 2, b 512, kD 1000, k 1024, MD " +#~ "1.000.000,\n" +#~ "M 1.048.576, GD 1.000.000.000, G 1.073.741.824, og så videre for T, P, " +#~ "E,\n" +#~ "Z og Y.\n" +#~ "Hvert NØKKELORD kan være:\n" +#~ " ascii fra EBCDIC til ASCII\n" +#~ " ebcdic fra ASCII til EBCDIC\n" +#~ " ibm fra ASCII til alternert EBCDIC\n" +#~ " block fyll ut felter terminert med linjeskift med mellomrom til\n" +#~ " størrelse gitt i cbs\n" +#~ " unblock bytt ut mellomrom med linjeskift i blokker med størrelse\n" +#~ " som gitt i cbs\n" +#~ " lcase gjør om store bokstaver til små\n" +#~ " notrunc ikke forkort utfilen\n" +#~ " ucase gjør om små bokstaver til store\n" +#~ " swab bytt om hvert par av bytes i inndata\n" +#~ " noerror forsett etter lesefeil\n" +#~ " sync fyll ut hver inndata-blokk med null-tegn til størrelse gitt i " +#~ "ibs\n" + +#~ msgid "" +#~ "Show information about the filesystem on which each FILE resides,\n" +#~ "or all filesystems by default.\n" +#~ "\n" +#~ " -a, --all include filesystems having 0 blocks\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " -H, --si likewise, but use powers of 1000 not 1024\n" +#~ " -i, --inodes list inode information instead of block usage\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l, --local limit listing to local filesystems\n" +#~ " -m, --megabytes like --block-size=1048576\n" +#~ " --no-sync do not invoke sync before getting usage info " +#~ "(default)\n" +#~ " -P, --portability use the POSIX output format\n" +#~ " --sync invoke sync before getting usage info\n" +#~ " -t, --type=TYPE limit listing to filesystems of type TYPE\n" +#~ " -T, --print-type print filesystem type\n" +#~ " -x, --exclude-type=TYPE limit listing to filesystems not of type " +#~ "TYPE\n" +#~ " -v (ignored)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vis informasjon om filsystemet som FIL ligger på, eller alle " +#~ "filsystemer.\n" +#~ "\n" +#~ " -a, --all ta med filsystemer med 0 blokker\n" +#~ " --block-size=STØR bruke blokker på STØR bytes\n" +#~ " -h, --human-readable skriv størrelser på en form lesbar for mennesker\n" +#~ " (f.eks. 1K 234M 2G)\n" +#~ " -H, --si det samme, men bruk 1000 som base, ikke 1024\n" +#~ " -i, --inodes skriv inodeinformasjon istedet for blokk-forbruk\n" +#~ " -k, --kilobytes bruk 1024-byte blokker\n" +#~ " -m, --megabytes bruk 1024K-byte blokker\n" +#~ " --no-sync ikke kjør sync før henting av informasjon " +#~ "(forvalgt)\n" +#~ " -P, --portability bruk POSIX-format på utdata\n" +#~ " --sync kjør sync før henting av informasjon\n" +#~ " -t, --type=TYPE list filsystemer av type TYPE\n" +#~ " -T, --print-type skriv ut typen på filsystemet\n" +#~ " -x, --exclude-type=TYPE list filsystemer som ikke er av type TYPE\n" +#~ " -v (ignorert)\n" +#~ " --help vis denne hjelpeteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#~ msgid "" +#~ "Summarize disk usage of each FILE, recursively for directories.\n" +#~ "\n" +#~ " -a, --all write counts for all files, not just directories\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -b, --bytes print size in bytes\n" +#~ " -c, --total produce a grand total\n" +#~ " -D, --dereference-args dereference PATHs when symbolic link\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " -H, --si likewise, but use powers of 1000 not 1024\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l, --count-links count sizes many times if hard linked\n" +#~ " -L, --dereference dereference all symbolic links\n" +#~ " -m, --megabytes like --block-size=1048576\n" +#~ " -S, --separate-dirs do not include size of subdirectories\n" +#~ " -s, --summarize display only a total for each argument\n" +#~ " -x, --one-file-system skip directories on different filesystems\n" +#~ " -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +#~ "FILE.\n" +#~ " --exclude=PAT Exclude files that match PAT.\n" +#~ " --max-depth=N print the total for a directory (or file, with --" +#~ "all)\n" +#~ " only if it is N or fewer levels below the " +#~ "command\n" +#~ " line argument; --max-depth=0 is the same as\n" +#~ " --summarize\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Summer diskforbruk for hver FIL, rekursivt for filkataloger.\n" +#~ "\n" +#~ " -a, --all ta med filer, ikke bare filkataloger\n" +#~ " --block-size=STØR bruk blokker på STØR bytes\n" +#~ " -b, --bytes skriv størrelse i bytes\n" +#~ " -c, --total skriv ut totalsum\n" +#~ " -D, --dereference-args følg søkestier når de er symbolske linker\n" +#~ " -h, --human-readable skriv størrelser på en form lesbar for mennesker\n" +#~ " (f.eks. 1K 234M 2G)\n" +#~ " -H, --si det samme, men bruk 1000 som base, ikke 1024\n" +#~ " -k, --kilobytes bruk 1024-byte blokker\n" +#~ " -l, --count-links regn med størrelsen flere ganger for harde " +#~ "linker\n" +#~ " -L, --dereference følg symbolske linker\n" +#~ " -m, --megabytes bruk 1024K-byte blokker\n" +#~ " -S, --separate-dirs ta ikke med størrelsen på underkataloger\n" +#~ " -s, --summarize vis bare sum for hvert argument\n" +#~ " -x, --one-file-system ta ikke med filkataloger på andre filsystem\n" +#~ " -X FIL, --exclude-from=FIL Eksluder filer som svarer til et hvilket " +#~ "som\n" +#~ " helst mønster i FIL.\n" +#~ " --exclude=MØN eksluder filer som svarer til MØN.\n" +#~ " --max-depth=N skriv totalen for en katalog (eller fil med --" +#~ "all)\n" +#~ " bare hvis det er N eller færre nivå under " +#~ "kommandoen.\n" +#~ " --help vis denne hjelpeteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ "In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +#~ "the existing DIRECTORY, while setting permission modes and owner/group.\n" +#~ "In the third format, create all components of the given DIRECTORY(ies).\n" +#~ "\n" +#~ " --backup[=CONTROL] make a backup of each existing destination file\n" +#~ " -b like --backup but does not accept an argument\n" +#~ " -c (ignored)\n" +#~ " -d, --directory treat all arguments as directory names; create all\n" +#~ " components of the specified directories\n" +#~ " -D create all leading components of DEST except the " +#~ "last,\n" +#~ " then copy SOURCE to DEST; useful in the 1st " +#~ "format\n" +#~ " -g, --group=GROUP set group ownership, instead of process' current " +#~ "group\n" +#~ " -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-" +#~ "xr-x\n" +#~ " -o, --owner=OWNER set ownership (super-user only)\n" +#~ " -p, --preserve-timestamps apply access/modification times of SOURCE " +#~ "files\n" +#~ " to corresponding destination files\n" +#~ " -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +#~ " -S, --suffix=SUFFIX override the usual backup suffix\n" +#~ " -v, --verbose print the name of each directory as it is created\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "De to første formatene kopierer KILDE til MÅL eller en eller flere KILDE" +#~ "(r)\n" +#~ "til FILKATALOG, samtidig som beskyttelser og eier/gruppe settes. Det\n" +#~ "tredje formatet oppretter FILKATALOG(er) samt eventuelle " +#~ "foreldrekataloger.\n" +#~ "\n" +#~ " -b, --backup gjør sikkerhetskopi før sletting\n" +#~ " -c (ignorert)\n" +#~ " -d, --directory opprett filkataloger, inklusive " +#~ "foreldrekataloger.\n" +#~ " -D opprett alle ledende komponentene av MÅL utenom " +#~ "den\n" +#~ " siste, kopier deretter KILDE til MÅL; nyttig for " +#~ "det\n" +#~ " første formatet.\n" +#~ " -g, --group=GRUPPE sett gruppe, istedet for prosessens nåværende " +#~ "gruppe\n" +#~ " -m, --mode=BESKYTTELSE sett beskyttelse (som chmod), istedet for 0644\n" +#~ " -o, --owner=EIER sett eier (kun super-user)\n" +#~ " -p, --preserve-timestamps sett aksess/endringstider på mål-filene " +#~ "som\n" +#~ " tilsvarer KILDE-filene.\n" +#~ " -s, --strip ta bort symboltabeller, kun format 1 og 2\n" +#~ " -S, --suffix=SUFFIKS overstyr det vanlige sikkerhetskopi-suffikset\n" +#~ " --verbose skriv navnet på hver katalog når det blir " +#~ "opprettet\n" +#~ " -V, --version-control=ORD overstyr den vanlige versjonskontrollen\n" +#~ " --help vis denne hjelpeteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "Create a link to the specified TARGET with optional LINK_NAME.\n" +#~ "If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +#~ "created in the current directory. When using the second form with more\n" +#~ "than one TARGET, the last argument must be a directory; create links\n" +#~ "in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +#~ "links with --symbolic. When creating hard links, each TARGET must " +#~ "exist.\n" +#~ "\n" +#~ " --backup[=CONTROL] make a backup of each existing destination " +#~ "file\n" +#~ " -b like --backup but does not accept an " +#~ "argument\n" +#~ " -d, -F, --directory hard link directories (super-user only)\n" +#~ " -f, --force remove existing destination files\n" +#~ " -n, --no-dereference treat destination that is a symlink to a\n" +#~ " directory as if it were a normal file\n" +#~ " -i, --interactive prompt whether to remove destinations\n" +#~ " -s, --symbolic make symbolic links instead of hard links\n" +#~ " -S, --suffix=SUFFIX override the usual backup suffix\n" +#~ " --target-directory=DIRECTORY specify the DIRECTORY in which to " +#~ "create\n" +#~ " the links\n" +#~ " -v, --verbose print name of each file before linking\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Opprett en link til det spesifiserte MÅLer med eventuelt LINKNAVN. Hvis " +#~ "det\n" +#~ "er mer enn ett MÅL, må det siste argumentet være en katalog; lag linker\n" +#~ "i KATALOG til hvert MÅL. Forvalgt er å lage harde linker, symbolske " +#~ "linker\n" +#~ "med --symbolic. Når det opprettes harde linker må hvert MÅL eksistere.\n" +#~ "\n" +#~ " -b, --backup gjør sikkerhetskopi av slettede filer\n" +#~ " -d, -F, --directory lag harde linker for filkataloger\n" +#~ " (kun super-user)\n" +#~ " -f, --force slett eksisterende mål\n" +#~ " -n, --no-dereference behandle mål som er en symbolsk link som " +#~ "om\n" +#~ " det skulle være en normal fil\n" +#~ " -i, --interactive be om bekreftelse før sletting av filer\n" +#~ " -s, --symbolic lag symbolske linker istedet for harde " +#~ "linker\n" +#~ " -S, --suffix=SUFFIKS overstyr det vanlige sikkerhetskopi-" +#~ "suffikset\n" +#~ " -v, --verbose skriv navnet på hver fil før linking\n" +#~ " -V, --version-control=ORD overstyr den vanlige versjonskontrollen\n" +#~ " --help vis denne hjelpeteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "List information about the FILEs (the current directory by default).\n" +#~ "Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +#~ "\n" +#~ " -a, --all do not hide entries starting with .\n" +#~ " -A, --almost-all do not list implied . and ..\n" +#~ " -b, --escape print octal escapes for nongraphic " +#~ "characters\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -B, --ignore-backups do not list implied entries ending with ~\n" +#~ " -c with -lt: sort by, and show, ctime (time of " +#~ "last\n" +#~ " modification of file status information)\n" +#~ " with -l: show ctime and sort by name\n" +#~ " otherwise: sort by ctime\n" +#~ " -C list entries by columns\n" +#~ " --color[=WHEN] control whether color is used to distinguish " +#~ "file\n" +#~ " types. WHEN may be `never', `always', or " +#~ "`auto'\n" +#~ " -d, --directory list directory entries instead of contents\n" +#~ " -D, --dired generate output designed for Emacs' dired " +#~ "mode\n" +#~ " -f do not sort, enable -aU, disable -lst\n" +#~ " -F, --classify append indicator (one of */=@|) to entries\n" +#~ " --format=WORD across -x, commas -m, horizontal -x, long -" +#~ "l,\n" +#~ " single-column -1, verbose -l, vertical -C\n" +#~ " --full-time like -l --time-style=full-iso\n" +#~ msgstr "" +#~ "List informasjon om FILer (aktiv filkatalog om ikke annet spesifiseres).\n" +#~ "Sorter filene alfabetisk om ingen av flaggene -cftuSUX eller --sort gis.\n" +#~ "\n" +#~ " -a, --all ikke gjem filer som starter med .\n" +#~ " -A, --almost-all ikke vis . og ..\n" +#~ " -b, --escape skriv oktale koder for ikke-grafiske tegn\n" +#~ " --block-size=STØRRELSE use blokker på STØRRELSE bytes\n" +#~ " -B, --ignore-backups ikke vis filer som slutter med ~\n" +#~ " -c sorter på endringsdato; med -l: vis " +#~ "endringsdato\n" +#~ " -C list filer i kolonner\n" +#~ " --color[=NÅR] kontroller om farge skal brukes for å " +#~ "skille\n" +#~ " filtyper. NÅR kan være «never», " +#~ "«always»,\n" +#~ " eller «auto».\n" +#~ " -d, --directory list filkataloger istedet for innholdet\n" +#~ " -D, --dired generer utdata for Emacs' dired-modus\n" +#~ " -f ikke sorter, slå på -aU, slå av -lst\n" +#~ " -F, --classify legg til en bokstav (en av */=@|) for " +#~ "filtypen\n" +#~ " --format=ORD across -x, commas -m, horizontal -x, long -" +#~ "l,\n" +#~ " single-column -1, verbose -l, vertical -C\n" +#~ " --full-time list full dato og klokkeslett\n" + +#, fuzzy +#~ msgid "" +#~ " -g like -l, but do not list owner\n" +#~ " -G, --no-group inhibit display of group information\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " --si likewise, but use powers of 1000 not 1024\n" +#~ " -H, --dereference-command-line follow symbolic links on the command " +#~ "line\n" +#~ " --indicator-style=WORD append indicator with style WORD to entry " +#~ "names:\n" +#~ " none (default), classify (-F), file-type (-" +#~ "p)\n" +#~ " -i, --inode print index number of each file\n" +#~ " -I, --ignore=PATTERN do not list implied entries matching shell " +#~ "PATTERN\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l use a long listing format\n" +#~ " -L, --dereference when showing file information for a " +#~ "symbolic\n" +#~ " link, show information for the file the " +#~ "link\n" +#~ " references rather than for the link " +#~ "itself\n" +#~ " -m fill width with a comma separated list of " +#~ "entries\n" +#~ msgstr "" +#~ " -g (ignorert)\n" +#~ " -G, --no-group ta ikke med gruppe i listingen\n" +#~ " -h, --human-readable skriv størrelser i et format lesbart av " +#~ "mennesker\n" +#~ " (f.eks. 1K 234M 2G)\n" +#~ " -H, --si det sammen, men bruk 1000 som base, ikke " +#~ "1024\n" +#~ " --indicator-style=ORD legg til indikator med stil ORD til " +#~ "elementer:\n" +#~ " none (forvalgt), classify (-F), file-type (-" +#~ "p)\n" +#~ " -i, --inode list indeksnummeret for hver fil\n" +#~ " -I, --ignore=MØNSTER vis ikke filer som stemmer overens med\n" +#~ " shell-MØNSTERet\n" +#~ " -k, --kilobytes bruk 1024 blokker, på tross av " +#~ "POSIXLY_CORRECT\n" +#~ " -l bruk langt listeformat\n" +#~ " -L, --dereference vis filer som pekes på av symbolske linker\n" +#~ " -m skriv full skjermbredde med kommaseparering\n" +#~ " -n, --numeric-uid-gid skriv UID og GID med tall istedet for navn\n" +#~ " -N, --literal skriv ut alle tegn (inklusive kontrolltegn)\n" +#~ " -o bruk langt listeformat uten " +#~ "gruppeinformasjon\n" +#~ " -p legg til en bokstav for filtypen\n" +#~ " -q, --hide-control-chars skriv ? istedet for ikke-grafiske tegn\n" +#~ " --show-control-chars vis kontrolltegn som de er (forvalgt)\n" +#~ " -Q, --quote-name sett filnavn i gåseøyne\n" +#~ " --quoting-style=ORD bruk beskyttelsesstil ORD for filnavn:\n" +#~ " literal, shell, shell-always, c eller " +#~ "escape\n" +#~ " -r, --reverse sorter baklengs\n" +#~ " -R, --recursive list underkataloger rekursivt\n" +#~ " -s, --size skriv blokkstørrelse for hver fil\n" + +#, fuzzy +#~ msgid "" +#~ " -S sort by file size\n" +#~ " --sort=WORD extension -X, none -U, size -S, time -t,\n" +#~ " version -v\n" +#~ " status -c, time -t, atime -u, access -u, use " +#~ "-u\n" +#~ " --time=WORD show time as WORD instead of modification " +#~ "time:\n" +#~ " atime, access, use, ctime or status; use\n" +#~ " specified time as sort key if --sort=time\n" +#~ " --time-style=WORD show times using style WORD:\n" +#~ " full-iso, iso, locale, posix-iso\n" +#~ " -t sort by modification time\n" +#~ " -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +#~ " -u with -lt: sort by, and show, access time\n" +#~ " with -l: show access time and sort by " +#~ "name\n" +#~ " otherwise: sort by access time\n" +#~ " -U do not sort; list entries in directory " +#~ "order\n" +#~ " -v sort by version\n" +#~ " -w, --width=COLS assume screen width instead of current " +#~ "value\n" +#~ " -x list entries by lines instead of by columns\n" +#~ " -X sort alphabetically by entry extension\n" +#~ " -1 list one file per line\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "By default, color is not used to distinguish types of files. That is\n" +#~ "equivalent to using --color=none. Using the --color option without the\n" +#~ "optional WHEN argument is equivalent to using --color=always. With\n" +#~ "--color=auto, color codes are output only if standard output is " +#~ "connected\n" +#~ "to a terminal (tty).\n" +#~ msgstr "" +#~ " -S sorter etter filstørrelse\n" +#~ " --sort=ORD ctime -c, extension -X, none -U, size -S,\n" +#~ " status -c, time -t\n" +#~ " --time=ORD atime -u, access -u, use -u\n" +#~ " -t sorter på modifiseringstid, med -l: vis\n" +#~ " modifiseringstid\n" +#~ " -T, --tabsize=KOLONNER sett tabulatorstørrelse til KOLONNER\n" +#~ " (8 er forvalgt)\n" +#~ " -u sorter på tilgangstid, med -l: vis " +#~ "tilgangstid\n" +#~ " -U ikke sorter, list filer slik de ligger i " +#~ "katalogen\n" +#~ " -v sorter på versjon\n" +#~ " -w, --width=KOLONNER sett skjermbredde til KOLONNER\n" +#~ " -x list filer i rader istedet for kolonner\n" +#~ " -X sorter alfabetisk på fil-ekstensjon\n" +#~ " -1 list én fil per linje\n" +#~ " --help vis denne hjelpeteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" +#~ "Normalt brukes ikke farge for å skille mellom filtyper. Det er " +#~ "ekvivalent\n" +#~ "med å bruke --color=none. Flagget --color uten argumenter er ekvivalent\n" +#~ "med --color=always. Med --color=auto blir fargekoder skrevet ut kun " +#~ "dersom\n" +#~ "standard utkanal er koblet til en terminal (tty).\n" + +#, fuzzy +#~ msgid "" +#~ "Force changed blocks to disk, update the super block.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vis CRC-sjekksummer og byteantall for hver FIL.\n" +#~ "\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ "Update the access and modification times of each FILE to the current " +#~ "time.\n" +#~ "\n" +#~ " -a change only the access time\n" +#~ " -c, --no-create do not create any files\n" +#~ " -d, --date=STRING parse STRING and use it instead of current time\n" +#~ " -f (ignored)\n" +#~ " -m change only the modification time\n" +#~ " -r, --reference=FILE use this file's times instead of current time\n" +#~ " -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current " +#~ "time\n" +#~ " --time=WORD set time given by WORD: access atime use (same " +#~ "as -a)\n" +#~ " modify mtime (same as -m)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Note that the three time-date formats recognized for the -d and -t " +#~ "options\n" +#~ "and for the obsolescent argument are all different.\n" +#~ msgstr "" +#~ "Sett tilgangs- og modifiseringstidene for FIL(er) til nåværende\n" +#~ "klokkeslett.\n" +#~ "\n" +#~ " -a endre bare tilgangstiden\n" +#~ " -c ikke opprett filer\n" +#~ " -d, --date=STRENG les STRENG og bruk det som nåværende " +#~ "klokkeslett\n" +#~ " -f (ignorert)\n" +#~ " -m endre bare modifiseringstiden\n" +#~ " -r, --reference=FILE bruk denne filens tider istedet for nåværende\n" +#~ " klokkeslett\n" +#~ " -t STAMP bruk MMDDttmm[[HH]ÅÅ][.ss] istedet for " +#~ "nåværende\n" +#~ " klokkeslett\n" +#~ " --time=WORD access -a, atime -a, mtime -m, modify -m, use -" +#~ "a\n" +#~ " --help vis denne hjelpeteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" +#~ "STAMP kan bli brukt uten -t hvis ingen av -drt eller -- er brukt.\n" +#~ "Merk at de tre tid-dato-formatene som gjenkjennes for flaggene -d og -t\n" +#~ "og for det gamle argumentet er alle forskjellige.\n" + +#, fuzzy +#~ msgid "cannot create fifo `%s'" +#~ msgstr "kan ikke utføre ioctl på «%s»" + +#~ msgid "" +#~ "when creating character special files, major and minor device\n" +#~ "numbers must be specified" +#~ msgstr "" +#~ "ved oppretting av tegn spesielle filer, må major og minor enhetsnummer\n" +#~ "spesifiseres" + +#~ msgid "group of %s changed to %s\n" +#~ msgstr "gruppe til %s endret til %s\n" + +#, fuzzy +#~ msgid "ownership of %s changed to " +#~ msgstr "eier av %s endret til " + +#, fuzzy +#~ msgid "you are not a member of group %s" +#~ msgstr "du er ikke medlem av gruppen «%s»" + +#, fuzzy +#~ msgid "cannot make fifo %s" +#~ msgstr "kan ikke utføre ioctl på «%s»" + +#, fuzzy +#~ msgid "cannot change permissions for %s" +#~ msgstr "kan ikke utføre ioctl på «%s»" + +#, fuzzy +#~ msgid "cannot remove old link to %s" +#~ msgstr "kan ikke utføre ioctl på «%s»" + +#~ msgid "virtual memory exhausted" +#~ msgstr "virtuelt minne oppbrukt" + +#, fuzzy +#~ msgid "Memory exhausted" +#~ msgstr "virtuelt minne oppbrukt" + +#, fuzzy +#~ msgid "cannot create directory `%s'" +#~ msgstr "kan ikke utføre ioctl på «%s»" + +#, fuzzy +#~ msgid "cannot remove `%s'" +#~ msgstr "kan ikke utføre ioctl på «%s»" + +#, fuzzy +#~ msgid "specified target, `%s' is not a directory" +#~ msgstr "«%s» er ikke en katalog" + +#~ msgid "`%s' and `%s' are the same file" +#~ msgstr "«%s» og «%s» er samme fil" + +#, fuzzy +#~ msgid "cannot backup `%s'" +#~ msgstr "kan ikke utføre ioctl på «%s»" + +#, fuzzy +#~ msgid "cannot un-backup `%s'" +#~ msgstr "kan ikke utføre ioctl på «%s»" + +#, fuzzy +#~ msgid "cannot chmod %s" +#~ msgstr "kan ikke utføre ioctl på «%s»" + +#, fuzzy +#~ msgid "`%s' exists but is not a directory" +#~ msgstr "«%s» er ikke en katalog" + +#, fuzzy +#~ msgid "create %s %s to %s" +#~ msgstr "opprette %s %s til %s\n" + +#~ msgid "hard link" +#~ msgstr "hard link" + +#~ msgid "link" +#~ msgstr "link" + +#, fuzzy +#~ msgid "starting directory" +#~ msgstr "«%s» er ikke en katalog" + +#, fuzzy +#~ msgid "" +#~ "Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +#~ " or: %s [OPTION]... TARGET... DIRECTORY\n" +#~ msgstr "" +#~ "Bruk : %s [FLAGG]... [INN]... (uten -G)\n" +#~ "eller: %s -G [FLAGG]... [INN [UT]]\n" + +#, fuzzy +#~ msgid "Usage: %s [OPTION]... EXISTING_DIR NEW_DIR\n" +#~ msgstr "Bruk: %s [FLAGG]... SETT1 [SETT2]\n" + +#, fuzzy +#~ msgid "cannot rename `.' or `..'" +#~ msgstr "kan ikke bestemme vertsnavnet" + +#, fuzzy +#~ msgid "%s is closed" +#~ msgstr "standard inn er lukket" + +#, fuzzy +#~ msgid "%s: cannot shred read-only file descriptor" +#~ msgstr "%s: kan ikke overskrive filkatalog" + +#, fuzzy +#~ msgid "Can't fstat file `%s'" +#~ msgstr "lager filen «%s»\n" + +#, fuzzy +#~ msgid "sparse type" +#~ msgstr "type for filer med hull" + +#~ msgid "time type" +#~ msgstr "tidstype" + +#~ msgid "format type" +#~ msgstr "formattype" + +#~ msgid "colorization criterion" +#~ msgstr "fargeleggingskriterie" + +#~ msgid "indicator style" +#~ msgstr "indikatorstil" + +#~ msgid "quoting style" +#~ msgstr "beskyttelsesstil (quoting style)" + +#~ msgid "time selector" +#~ msgstr "tidsvalg" + +#~ msgid "days" +#~ msgstr "dager" + +#~ msgid "users" +#~ msgstr "brukere" + +#, fuzzy +#~ msgid "" +#~ "Display the current time in the given FORMAT, or set the system date.\n" +#~ "\n" +#~ " -d, --date=STRING display time described by STRING, not `now'\n" +#~ " -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +#~ msgstr "" +#~ "Vis den nåværende tiden i det gitte FORMATet eller sett systemdatoen.\n" +#~ "\n" +#~ " -d, --date=STRENG vis tiden beskrevet av STRENG, ikke «nå»\n" +#~ " -f, --file=DATOFIL som --date en gang for hver linje av DATOFIL\n" +#~ " -r, --reference=FIL vis siste endringsdato for FIL\n" +#~ " -R, --rfc-822 skriv ut en datostreng i henhold til RFC-822\n" +#~ " -s, --set=STRENG sett tiden som er beskrevet av STRENG\n" +#~ " -u, --utc, --universal skriv ut eller sett «Coordinated Universal " +#~ "Time»\n" +#~ " --help vis denne hjelpeteksten og avslutt\n" +#~ " --version vis versjonsinformasjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ "Run COMMAND with root directory set to NEWROOT.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +#~ msgstr "" +#~ "Vis CRC-sjekksummer og byteantall for hver FIL.\n" +#~ "\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "FORMAT controls the output. The only valid option for the second form\n" +#~ "specifies Coordinated Universal Time. Interpreted sequences are:\n" +#~ "\n" +#~ " %%%% a literal %%\n" +#~ " %%a locale's abbreviated weekday name (Sun..Sat)\n" +#~ " %%A locale's full weekday name, variable length (Sunday..Saturday)\n" +#~ " %%b locale's abbreviated month name (Jan..Dec)\n" +#~ " %%B locale's full month name, variable length (January..December)\n" +#~ " %%c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +#~ " %%C century (year divided by 100 and truncated to an integer) [00-" +#~ "99]\n" +#~ " %%d day of month (01..31)\n" +#~ " %%D date (mm/dd/yy)\n" +#~ " %%e day of month, blank padded ( 1..31)\n" +#~ " %%h same as %%b\n" +#~ " %%H hour (00..23)\n" +#~ " %%I hour (01..12)\n" +#~ " %%j day of year (001..366)\n" +#~ " %%k hour ( 0..23)\n" +#~ " %%l hour ( 1..12)\n" +#~ " %%m month (01..12)\n" +#~ " %%M minute (00..59)\n" +#~ " %%n a newline\n" +#~ " %%p locale's AM or PM\n" +#~ " %%r time, 12-hour (hh:mm:ss [AP]M)\n" +#~ " %%s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +#~ " %%S second (00..60)\n" +#~ " %%t a horizontal tab\n" +#~ " %%T time, 24-hour (hh:mm:ss)\n" +#~ " %%u day of week (1..7); 1 represents Monday\n" +#~ " %%U week number of year with Sunday as first day of week (00..53)\n" +#~ " %%V week number of year with Monday as first day of week (01..53)\n" +#~ " %%w day of week (0..6); 0 represents Sunday\n" +#~ " %%W week number of year with Monday as first day of week (00..53)\n" +#~ " %%x locale's date representation (mm/dd/yy)\n" +#~ " %%X locale's time representation (%%H:%%M:%%S)\n" +#~ " %%y last two digits of year (00..99)\n" +#~ " %%Y year (1970...)\n" +#~ " %%z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +#~ " %%Z time zone (e.g., EDT), or nothing if no time zone is " +#~ "determinable\n" +#~ "\n" +#~ "By default, date pads numeric fields with zeroes. GNU date recognizes\n" +#~ "the following modifiers between `%%' and a numeric directive.\n" +#~ "\n" +#~ " `-' (hyphen) do not pad the field\n" +#~ " `_' (underscore) pad the field with spaces\n" +#~ msgstr "" +#~ "\n" +#~ "FORMAT kontrollerer utskriften. Det eneste gyldige flagget for den " +#~ "andre\n" +#~ "formen spesifiserer «Coordinated Universal Time». Tolkede sekvenser er:\n" +#~ "\n" +#~ " %%%% en vanlig %%\n" +#~ " %%a locale's forkortede ukedagsnavn (søn..lør)\n" +#~ " %%A locale's fulle ukedagsnavn, variabel lengde (søndag..lørdag)\n" +#~ " %%b locale's forkortede månedsnavn (jan..des)\n" +#~ " %%B locale's fulle månedsnavn, variabel lengde (januar..desember)\n" +#~ " %%c locale's dato og tid (lør nov 04 12:02:33 MET 1989)\n" +#~ " %%d dag i måneden (01..31)\n" +#~ " %%D dato (mm/dd/åå)\n" +#~ " %%e dag i måneden, fylt ut med blanke ( 1..31)\n" +#~ " %%h samme som %%b\n" +#~ " %%H time (00..23)\n" +#~ " %%I time (01..12)\n" +#~ " %%j dag i året (001..366)\n" +#~ " %%k time ( 0..23)\n" +#~ " %%l time ( 1..12)\n" +#~ " %%m måned (01..12)\n" +#~ " %%M minutt (00..59)\n" +#~ " %%n linjeskift\n" +#~ " %%p locale's AM eller PM\n" +#~ " %%r tid, 12-timers (tt:mm:ss [AP]M)\n" +#~ " %%s sekunder siden 00:00:00, jan 1, 1970 (en GNU-utvidelse)\n" +#~ " %%S sekunder (00..61)\n" +#~ " %%t en horisontal tab\n" +#~ " %%T tid, 24-timers (tt:mm:ss)\n" +#~ " %%U ukenummer med søndag som første dag i uken (00..53)\n" +#~ " %%V ukenummer med mandag som første dag i uken (01..52)\n" +#~ " %%w dag i uken (0..6); 0 representerer søndag\n" +#~ " %%W ukenummer med mandag som første dag i uken (00..53)\n" +#~ " %%x locale's datorepresentasjon (mm/dd/åå)\n" +#~ " %%X locale's tidsrepresentasjon (%%T:%%M:%%S)\n" +#~ " %%y siste 2 siffer av årstallet (00..99)\n" +#~ " %%Y årstallet (1970...)\n" +#~ " %%z numerisk tidssone på RFC-822-format (-0500) (en GNU-utvidelse)\n" +#~ " %%Z tidssone (f.eks, EDT) eller ingenting dersom tidssonen er ukjent\n" +#~ "\n" +#~ "Forvalgt er at date fyller numeriske felter med nuller. GNU date " +#~ "gjenkjenner\n" +#~ "følgende modifikatorer mellom «%%» og et numerisk direktiv.\n" +#~ "\n" +#~ " «-» (bindestrek) ikke fyll ut feltet\n" +#~ " «_» (understrek) fyll ut feltet med mellomrom\n" + +#, fuzzy +#~ msgid "" +#~ "Echo the STRING(s) to standard output.\n" +#~ "\n" +#~ " -n do not output the trailing newline\n" +#~ " -e enable interpretation of the backslash-escaped " +#~ "characters\n" +#~ " listed below\n" +#~ " -E disable interpretation of those sequences in STRINGs\n" +#~ " --help display this help and exit (should be alone)\n" +#~ " --version output version information and exit (should be alone)\n" +#~ "\n" +#~ "Without -E, the following sequences are recognized and interpolated:\n" +#~ "\n" +#~ " \\NNN the character whose ASCII code is NNN (octal)\n" +#~ " \\\\ backslash\n" +#~ " \\a alert (BEL)\n" +#~ " \\b backspace\n" +#~ " \\c suppress trailing newline\n" +#~ " \\f form feed\n" +#~ " \\n new line\n" +#~ " \\r carriage return\n" +#~ " \\t horizontal tab\n" +#~ " \\v vertical tab\n" +#~ msgstr "" +#~ "Gjengi STRENGen(e) til standard ut.\n" +#~ "\n" +#~ " -n ikke skriv ut etterfølgende linjeskift\n" +#~ " -e (ubrukt)\n" +#~ " -E skru av erstatning av enkelte sekvenser i STRENGer\n" +#~ " --help vis denne hjelpeteksten og avslutt\n" +#~ " --version vis versjonsinformasjon og avslutt\n" +#~ "\n" +#~ "Uten -E blir de følgende sekvensene gjenkjent og erstattet:\n" +#~ "\n" +#~ " \\NNN tegnet som har ASCII-kode NNN (oktalt)\n" +#~ " \\\\ backslash\n" +#~ " \\a «alert», dvs. et pip (BEL)\n" +#~ " \\b backspace\n" +#~ " \\c utelat etterfølgende linjeskift\n" +#~ " \\f sideskift («form feed»)\n" +#~ " \\n linjeskift («new line»)\n" +#~ " \\r vognretur («carriage return»)\n" +#~ " \\t horisontal tabulator\n" +#~ " \\v vertikal tabulator\n" + +#, fuzzy +#~ msgid "" +#~ "Print the value of EXPRESSION to standard output. A blank line below\n" +#~ "separates increasing precedence groups. EXPRESSION may be:\n" +#~ "\n" +#~ " ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +#~ "\n" +#~ " ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +#~ "\n" +#~ " ARG1 < ARG2 ARG1 is less than ARG2\n" +#~ " ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +#~ " ARG1 = ARG2 ARG1 is equal to ARG2\n" +#~ " ARG1 != ARG2 ARG1 is unequal to ARG2\n" +#~ " ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +#~ " ARG1 > ARG2 ARG1 is greater than ARG2\n" +#~ "\n" +#~ " ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +#~ " ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +#~ "\n" +#~ " ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +#~ " ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +#~ " ARG1 %% ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +#~ "\n" +#~ " STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +#~ "\n" +#~ " match STRING REGEXP same as STRING : REGEXP\n" +#~ " substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +#~ " index STRING CHARS index in STRING where any CHARS is found, or " +#~ "0\n" +#~ " length STRING length of STRING\n" +#~ " + TOKEN interpret TOKEN as a string, even if it is " +#~ "a\n" +#~ " keyword like `match' or an operator like " +#~ "`/'\n" +#~ "\n" +#~ " ( EXPRESSION ) value of EXPRESSION\n" +#~ msgstr "" +#~ "Skriv verdien av UTTRYKKet til standard ut. En blank linje under " +#~ "skiller\n" +#~ "grupper av økende presedens. UTTRYKK kan være:\n" +#~ "\n" +#~ " ARG1 | ARG2 ARG1 dersom det hverken er null eller 0, ellers ARG2\n" +#~ "\n" +#~ " ARG1 & ARG2 ARG1 dersom ingen av argumentene er null eller 0, " +#~ "ellers 0\n" +#~ "\n" +#~ " ARG1 < ARG2 ARG1 er mindre enn ARG2\n" +#~ " ARG1 <= ARG2 ARG1 er mindre enn eller lik ARG2\n" +#~ " ARG1 = ARG2 ARG1 er lik ARG2\n" +#~ " ARG1 != ARG2 ARG1 er ulik ARG2\n" +#~ " ARG1 >= ARG2 ARG1 er større enn eller lik ARG2\n" +#~ " ARG1 > ARG2 ARG1 er større enn ARG2\n" +#~ "\n" +#~ " ARG1 + ARG2 aritmetisk sum av ARG1 og ARG2\n" +#~ " ARG1 - ARG2 artimetisk differanse mellom ARG1 og ARG2\n" +#~ "\n" +#~ " ARG1 * ARG2 aritmetisk produkt av ARG1 og ARG2\n" +#~ " ARG1 / ARG2 aritmetisk kvotient av ARG1 delt på ARG2\n" +#~ " ARG1 %% ARG2 aritmetisk rest av ARG1 delt på ARG2\n" +#~ "\n" +#~ " STRENG : REGEXP forankret uttrykkssøk etter REGEXP i STRENG\n" +#~ "\n" +#~ " match STRENG REGEXP samme som STRENG : REGEXP\n" +#~ " substr STRENG POS LENGDE substreng av STRENG, POS telt fra 1\n" +#~ " index STRENG TEGN indeks i STRENG hvor evt. TEGN er funnet " +#~ "eller 0\n" +#~ " length STRENG lengde av STRENG\n" +#~ "\n" +#~ " ( UTTRYKK ) verdi av UTTRYKK\n" + +#, fuzzy +#~ msgid "" +#~ "Print ARGUMENT(s) according to FORMAT.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "FORMAT controls the output as in C printf. Interpreted sequences are:\n" +#~ "\n" +#~ " \\\" double quote\n" +#~ " \\0NNN character with octal value NNN (0 to 3 digits)\n" +#~ " \\\\ backslash\n" +#~ " \\a alert (BEL)\n" +#~ " \\b backspace\n" +#~ " \\c produce no further output\n" +#~ " \\f form feed\n" +#~ " \\n new line\n" +#~ " \\r carriage return\n" +#~ " \\t horizontal tab\n" +#~ " \\v vertical tab\n" +#~ " \\xNNN byte with hexadecimal value NNN (1 to 3 digits)\n" +#~ "\n" +#~ " \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +#~ " \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +#~ " %%%% a single %%\n" +#~ " %%b ARGUMENT as a string with `\\' escapes interpreted\n" +#~ "\n" +#~ "and all C format specifications ending with one of diouxXfeEgGcs, with\n" +#~ "ARGUMENTs converted to proper type first. Variable widths are handled.\n" +#~ msgstr "" +#~ "Skriv ut ARGUMENT(er) i henhold til FORMAT.\n" +#~ "\n" +#~ " --help vis denne hjelpeteksten og avslutt\n" +#~ " --version vis versjonsinformasjon og avslutt\n" +#~ "\n" +#~ "FORMAT kontrollerer utskriften som i C sin printf. Tolkede sekvenser " +#~ "er:\n" +#~ "\n" +#~ " \\\" gåseøyne\n" +#~ " \\0NNN tegn med oktal verdi NNN (0 til 3 siffer)\n" +#~ " \\\\ backslash\n" +#~ " \\a «alert», dvs. et pip (BEL)\n" +#~ " \\b backspace\n" +#~ " \\c ikke produser mer utskrift\n" +#~ " \\f sideskift («form feed»)\n" +#~ " \\n linjeskift («new line»)\n" +#~ " \\r vognretur («carriage return»)\n" +#~ " \\t horisontal tabulator\n" +#~ " \\v vertikal tabulator\n" +#~ " \\xNNN tegn med heksadesimal verdi NNN (1 til 3 siffer)\n" +#~ "\n" +#~ " %%%% en enkel %%\n" +#~ " %%b ARGUMENT som en streng med «\\»-beskyttelser fortolket\n" +#~ "\n" +#~ "og alle C-format-spesifikasjoner som ender med en av diouxXfeEgGcs, med\n" +#~ "ARGUMENTer konvertert til passende type først. Variable bredder " +#~ "håndteres.\n" + +#, fuzzy +#~ msgid "" +#~ "Print the full filename of the current working directory.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vis CRC-sjekksummer og byteantall for hver FIL.\n" +#~ "\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Special characters:\n" +#~ " * dsusp CHAR CHAR will send a terminal stop signal once input " +#~ "flushed\n" +#~ " eof CHAR CHAR will send an end of file (terminate the input)\n" +#~ " eol CHAR CHAR will end the line\n" +#~ " * eol2 CHAR alternate CHAR for ending the line\n" +#~ " erase CHAR CHAR will erase the last character typed\n" +#~ " intr CHAR CHAR will send an interrupt signal\n" +#~ " kill CHAR CHAR will erase the current line\n" +#~ " * lnext CHAR CHAR will enter the next character quoted\n" +#~ " quit CHAR CHAR will send a quit signal\n" +#~ " * rprnt CHAR CHAR will redraw the current line\n" +#~ " start CHAR CHAR will restart the output after stopping it\n" +#~ " stop CHAR CHAR will stop the output\n" +#~ " susp CHAR CHAR will send a terminal stop signal\n" +#~ " * swtch CHAR CHAR will switch to a different shell layer\n" +#~ " * werase CHAR CHAR will erase the last word typed\n" +#~ msgstr "" +#~ "\n" +#~ "Spesielle tegn:\n" +#~ "* dsusp TEGN TEGN vil sende et «terminal stop»-signal når input " +#~ "tømmes\n" +#~ " eof TEGN TEGN vil sende en «end of file» (avslutt input)\n" +#~ " eol TEGN TEGN vil avslutte linjen\n" +#~ "* eol2 TEGN alternativt TEGN for å avslutte linjen\n" +#~ " erase TEGN TEGN vil slette siste skrevne tegn\n" +#~ " intr TEGN TEGN vil sende et interrupt-signal\n" +#~ " kill TEGN TEGN vil slette nåværende linje\n" +#~ "* lnext TEGN TEGN vil skrive neste tegn sitert («quoted»)\n" +#~ " quit TEGN TEGN vil sende et quit-signal\n" +#~ "* rprnt TEGN TEGN vil tegne nåværende linje på nytt\n" +#~ " start TEGN TEGN vil starte opp utskrift etter å ha stoppet det\n" +#~ " stop TEGN TEGN vil stoppe utskriften\n" +#~ " susp TEGN TEGN vil sende et «terminal stop»-signal\n" +#~ "* swtch TEGN TEGN vil skifte til et annet shell-lag\n" +#~ "* werase TEGN TEGN vil slette det sist skrevne ordet\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Special settings:\n" +#~ " N set the input and output speeds to N bauds\n" +#~ " * cols N tell the kernel that the terminal has N columns\n" +#~ " * columns N same as cols N\n" +#~ " ispeed N set the input speed to N\n" +#~ " * line N use line discipline N\n" +#~ " min N with -icanon, set N characters minimum for a completed " +#~ "read\n" +#~ " ospeed N set the output speed to N\n" +#~ " * rows N tell the kernel that the terminal has N rows\n" +#~ " * size print the number of rows and columns according to the " +#~ "kernel\n" +#~ " speed print the terminal speed\n" +#~ " time N with -icanon, set read timeout of N tenths of a second\n" +#~ msgstr "" +#~ "\n" +#~ "Spesielle innstillinger:\n" +#~ " N sett lese- og skrivehastiget til N bps\n" +#~ "* cols N fortell kjernen at terminalen har N kolonner\n" +#~ "* columns N samme som cols\n" +#~ " ispeed N sett lesehastigeten til N\n" +#~ "* line N bruk linjedisiplin N\n" +#~ " min N med -icanon, sett N tegn minimum for en komplett lesning\n" +#~ " ospeed N sett skrivehastigheten til N\n" +#~ "* rows N fortell kjernen at terminalen har N rader/linjer\n" +#~ "* size skriv ut antall rader og kolonner ifølge kjernen\n" +#~ " speed skriv ut terminalhastigeten\n" +#~ " time N med -iconon, sett lese-timeout til N tidels sekunder\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Input settings:\n" +#~ " [-]brkint breaks cause an interrupt signal\n" +#~ " [-]icrnl translate carriage return to newline\n" +#~ " [-]ignbrk ignore break characters\n" +#~ " [-]igncr ignore carriage return\n" +#~ " [-]ignpar ignore characters with parity errors\n" +#~ " * [-]imaxbel beep and do not flush a full input buffer on a " +#~ "character\n" +#~ " [-]inlcr translate newline to carriage return\n" +#~ " [-]inpck enable input parity checking\n" +#~ " [-]istrip clear high (8th) bit of input characters\n" +#~ " * [-]iuclc translate uppercase characters to lowercase\n" +#~ " * [-]ixany let any character restart output, not only start " +#~ "character\n" +#~ " [-]ixoff enable sending of start/stop characters\n" +#~ " [-]ixon enable XON/XOFF flow control\n" +#~ " [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +#~ " [-]tandem same as [-]ixoff\n" +#~ msgstr "" +#~ "\n" +#~ "Innstillinger for inndata:\n" +#~ " [-]brkint sett avbryt («break») til å forårsake et avbruddssignal\n" +#~ " [-]icrnl oversett vognretur til linjeskift\n" +#~ " [-]ignbrk ignorer «break»-tegn\n" +#~ " [-]igncr ignorer vognretur\n" +#~ " [-]ignpar ignorer tegn med paritetsfeil\n" +#~ "* [-]imaxbel pip og ikke tøm et fullt inn-buffer ved et tegn\n" +#~ " [-]inlcr oversett linjeskift til vognretur\n" +#~ " [-]inpck slå på paritetsjekking på inndata\n" +#~ " [-]istrip blank øverste (8.) bit på inndata\n" +#~ "* [-]iuclc oversett store bokstaver til små\n" +#~ "* [-]ixany la alle tegn omstarte utdata, ikke bare start-tegnet\n" +#~ " [-]ixoff slå på sending av start/stop-tegn\n" +#~ " [-]ixon slå på XON/XOFF flytkontroll\n" +#~ " [-]parmrk marker paritetsfeil (med en 255-0-tegns sekvens)\n" +#~ " [-]tandem samme som [-]ixoff\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Local settings:\n" +#~ " [-]crterase echo erase characters as backspace-space-backspace\n" +#~ " * crtkill kill all line by obeying the echoprt and echoe settings\n" +#~ " * -crtkill kill all line by obeying the echoctl and echok settings\n" +#~ " * [-]ctlecho echo control characters in hat notation (`^c')\n" +#~ " [-]echo echo input characters\n" +#~ " * [-]echoctl same as [-]ctlecho\n" +#~ " [-]echoe same as [-]crterase\n" +#~ " [-]echok echo a newline after a kill character\n" +#~ " * [-]echoke same as [-]crtkill\n" +#~ " [-]echonl echo newline even if not echoing other characters\n" +#~ " * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +#~ " [-]icanon enable erase, kill, werase, and rprnt special " +#~ "characters\n" +#~ " [-]iexten enable non-POSIX special characters\n" +#~ " [-]isig enable interrupt, quit, and suspend special characters\n" +#~ " [-]noflsh disable flushing after interrupt and quit special " +#~ "characters\n" +#~ " * [-]prterase same as [-]echoprt\n" +#~ " * [-]tostop stop background jobs that try to write to the terminal\n" +#~ " * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +#~ msgstr "" +#~ "\n" +#~ "Lokale innstillinger:\n" +#~ " [-]crterase gjengi slettetegn som backspace-space-backspace\n" +#~ "* crtkill slett hele linjen ved å overholde echoprt- og echoe-\n" +#~ " innstillingene\n" +#~ "* -crtkill slett hele linjen ved å overholde echoctl- og echok-\n" +#~ " innstillingene\n" +#~ "* [-]ctlecho gjengi kontrolltegn i hattnotasjon («^c»)\n" +#~ " [-]echo gjengi input-tegn\n" +#~ "* [-]echoctl samme som [-]ctlecho\n" +#~ " [-]echoe samme som [-]crterase\n" +#~ " [-]echok gjengi et linjeskift etter et kill-tegn\n" +#~ "* [-]echoke samme som [-]crtkill\n" +#~ " [-]echonl gjengi linjeskift selv om andre tegn ikke gjengis\n" +#~ "* [-]echoprt gjengi slettede tegn baklengs mellom «\\» og «/»\n" +#~ " [-]icanon slå på erase-, kill-, werase- og rprnt-spesielle tegn\n" +#~ " [-]iexten slå på spesielle tegn utenfor POSIX \n" +#~ " [-]isig slå på avbrudds-, quit- og suspend-spesielle tegn\n" +#~ " [-]noflsh slå av tømming (flushing) etter avbrudds- og quit-" +#~ "spesialtegn\n" +#~ "* [-]prterase samme som [-]echoprt\n" +#~ "* [-]tostop stopp bakgrunnsjobber som prøver å skrive til terminalen\n" +#~ "* [-]xcase med icanon, beskytt med «\\» for store bokstaver\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Combination settings:\n" +#~ " * [-]LCASE same as [-]lcase\n" +#~ " cbreak same as -icanon\n" +#~ " -cbreak same as icanon\n" +#~ " cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +#~ " icanon, eof and eol characters to their default values\n" +#~ " -cooked same as raw\n" +#~ " crt same as echoe echoctl echoke\n" +#~ " dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +#~ " kill ^u\n" +#~ " * [-]decctlq same as [-]ixany\n" +#~ " ek erase and kill characters to their default values\n" +#~ " evenp same as parenb -parodd cs7\n" +#~ " -evenp same as -parenb cs8\n" +#~ " * [-]lcase same as xcase iuclc olcuc\n" +#~ " litout same as -parenb -istrip -opost cs8\n" +#~ " -litout same as parenb istrip opost cs7\n" +#~ " nl same as -icrnl -onlcr\n" +#~ " -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +#~ " oddp same as parenb parodd cs7\n" +#~ " -oddp same as -parenb cs8\n" +#~ " [-]parity same as [-]evenp\n" +#~ " pass8 same as -parenb -istrip cs8\n" +#~ " -pass8 same as parenb istrip cs7\n" +#~ " raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +#~ " -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +#~ " -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +#~ " -raw same as cooked\n" +#~ " sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +#~ " -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +#~ " -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +#~ " isig icanon iexten echo echoe echok -echonl -noflsh\n" +#~ " -xcase -tostop -echoprt echoctl echoke, all special\n" +#~ " characters to their default values.\n" +#~ msgstr "" +#~ "\n" +#~ "Kombinasjonsinnstillinger:\n" +#~ "* [-]LCASE samme som [-]lcase\n" +#~ " cbreak samme som -icanon\n" +#~ " -cbreak samme som icanon\n" +#~ " cooked samme som å sette brkint ignpar istrip icrnl ixon opost " +#~ "isig\n" +#~ " icanon, eof og eol til deres forvalgte verdier\n" +#~ " -cooked samme som raw\n" +#~ " crt samme som echoe echoctl echoke\n" +#~ " dec samme som echoe echoctl echoke -ixany intr ^c erase 0177\n" +#~ " kill ^u\n" +#~ "* [-]decctlq samme som [-]ixany\n" +#~ " ek erase- og kill-tegn til deres forvalgte verdier\n" +#~ " evenp samme som parenb -parodd cs7\n" +#~ " -evenp samme som -parenb cs8\n" +#~ "* [-]lcase samme som xcase iuclc olcuc\n" +#~ " litout samme som -parenb -istrip -opost cs8\n" +#~ " -litout samme som parenb istrip opost cs7\n" +#~ " nl samme som -icrnl -onlcr\n" +#~ " -nl samme som icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +#~ " oddp samme som parenb parodd cs7\n" +#~ " -oddp samme som -parenb cs8\n" +#~ " [-]parity samme som [-]evenp\n" +#~ " pass8 samme som -parenb -istrip cs8\n" +#~ " -pass8 samme som parenb istrip cs7\n" +#~ " raw samme som -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +#~ " -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +#~ " -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +#~ " -raw samme som cooked\n" +#~ " sane samme som cread -ignbrk brkint -inlcr -igncr icrnl\n" +#~ " -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +#~ " -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +#~ " isig icanon iexten echo echoe echok -echonl -noflsh\n" +#~ " -xcase -tostop -echoprt echoctl echoke, alle spesial-\n" +#~ " tegn til deres forvalgte verdier.\n" + +#, fuzzy +#~ msgid "" +#~ "Exit with the status determined by EXPRESSION.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "EXPRESSION is true or false and sets exit status. It is one of:\n" +#~ msgstr "" +#~ "Vis CRC-sjekksummer og byteantall for hver FIL.\n" +#~ "\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode " +#~ "numbers\n" +#~ " FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +#~ " FILE1 -ot FILE2 FILE1 is older than FILE2\n" +#~ "\n" +#~ " -b FILE FILE exists and is block special\n" +#~ " -c FILE FILE exists and is character special\n" +#~ " -d FILE FILE exists and is a directory\n" +#~ " -e FILE FILE exists\n" +#~ " -f FILE FILE exists and is a regular file\n" +#~ " -g FILE FILE exists and is set-group-ID\n" +#~ " -h FILE FILE exists and is a symbolic link (same as -L)\n" +#~ " -G FILE FILE exists and is owned by the effective group ID\n" +#~ " -k FILE FILE exists and has its sticky bit set\n" +#~ " -L FILE FILE exists and is a symbolic link (same as -h)\n" +#~ " -O FILE FILE exists and is owned by the effective user ID\n" +#~ " -p FILE FILE exists and is a named pipe\n" +#~ " -r FILE FILE exists and is readable\n" +#~ " -s FILE FILE exists and has a size greater than zero\n" +#~ " -S FILE FILE exists and is a socket\n" +#~ " -t [FD] file descriptor FD (stdout by default) is opened on a " +#~ "terminal\n" +#~ " -u FILE FILE exists and its set-user-ID bit is set\n" +#~ " -w FILE FILE exists and is writable\n" +#~ " -x FILE FILE exists and is executable\n" +#~ msgstr "" +#~ "\n" +#~ " FIL1 -ef FIL2 FIL1 og FIL2 har samme enhet og inodenummer\n" +#~ " FIL1 -nt FIL2 FIL1 er nyere (endringsdato) enn FIL2\n" +#~ " FIL1 -ot FIL2 FIL1 er eldre enn FIL2\n" +#~ "\n" +#~ " -b FIL FIL eksisterer og er en blokkenhet\n" +#~ " -c FIL FIL eksisterer og er en tegn-enhet\n" +#~ " -d FIL FIL eksisterer og er en filkatalog\n" +#~ " -e FIL FIL eksisterer\n" +#~ " -f FIL FIL eksisterer og er en vanlig fil\n" +#~ " -g FIL FIL eksisterer og er «set-group-ID»\n" +#~ " -G FIL FIL eksisterer og er eid av den effektive gruppe-IDen\n" +#~ " -k FIL FIL eksisterer og har sin «sticky bit» satt\n" +#~ " -L FIL FIL eksisterer og er en symbolsk lenke\n" +#~ " -O FIL FIL eksisterer og er eid av den effektive bruker-ID\n" +#~ " -p FIL FIL eksisterer og er en «named pipe»\n" +#~ " -r FIL FIL eksisterer og er lesbar\n" +#~ " -s FIL FIL eksisterer og har en størrelse større enn null\n" +#~ " -S FIL FIL eksisterer og er en socket\n" +#~ " -t [FD] fil-deskriptor FD (stdout er forvalgt) er åpnet på en " +#~ "terminal\n" +#~ " -u FIL FIL eksisterer og dens «set-user-ID»-bit er satt\n" +#~ " -w FIL FIL eksisterer og er skrivbar\n" +#~ " -x FIL FIL eksisterer og er kjørbar\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " -a, --all same as -b -d --login -p -r -t -T -u\n" +#~ " -b, --boot time of last system boot\n" +#~ " -d, --dead print dead processes\n" +#~ " -H, --heading print line of column headings\n" +#~ " -i, --idle add idle time as HOURS:MINUTES, . or old\n" +#~ " (deprecated, use -u)\n" +#~ " --login print system login processes\n" +#~ " (equivalent to SUS -l)\n" +#~ " -l, --lookup attempt to canonicalize hostnames via DNS\n" +#~ " (-l is deprecated, use --lookup)\n" +#~ " -m only hostname and user associated with stdin\n" +#~ " -p, --process print active processes spawned by init\n" +#~ " -q, --count all login names and number of users logged on\n" +#~ " -r, --runlevel print current runlevel\n" +#~ " -s, --short print only name, line, and time (default)\n" +#~ " -t, --time print last system clock change\n" +#~ " -T, -w, --mesg add user's message status as +, - or ?\n" +#~ " -u, --users lists users logged in\n" +#~ " --message same as -T\n" +#~ " --writable same as -T\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "If FILE is not specified, use %s. %s as FILE is common.\n" +#~ "If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +#~ msgstr "" +#~ "\n" +#~ " -H, --heading skriv ut en linje med kolonneoverskrifter\n" +#~ " -i, -u, --idle legg til brukers borte-tid som TIMER:MINUTTER, . " +#~ "eller\n" +#~ " gammel\n" +#~ " -m, bare vertsnavn og bruker assosiert med standard inn\n" +#~ " -q, --count alle brukernavn og antall brukere pålogget\n" +#~ " -s (ignorert)\n" +#~ " -T, -w, --mesg legg til brukers meldingsstatus som +, - eller ?\n" +#~ " --message samme som -T\n" +#~ " --writeable samme som -T\n" +#~ " --help vis denne hjelpeteksten og avslutt\n" +#~ " --version vis versjonsinformasjon og avslutt\n" +#~ "\n" +#~ "Hvis FIL ikke er spesifisert, bruk %s. %s som FIL er vanlig.\n" +#~ "Hvis ARG1 ARG2 er oppgitt antas -m: «am i» eller «mom likes» er vanlig.\n" + +#, fuzzy +#~ msgid "" +#~ "Repeatedly output a line with all specified STRING(s), or `y'.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vis CRC-sjekksummer og byteantall for hver FIL.\n" +#~ "\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#~ msgid "cannot get processor type" +#~ msgstr "kan ikke finne ut prosessortypen" + +#~ msgid "USER" +#~ msgstr "BRUKER" + +#~ msgid "MESG " +#~ msgstr "MELD " + +#~ msgid "LOGIN-TIME " +#~ msgstr "LOGIN-TID " + +#~ msgid "FROM\n" +#~ msgstr "FRA\n" + +#~ msgid "" +#~ msgstr "" + +#, fuzzy +#~ msgid "Usage: %s [-v]\n" +#~ msgstr "Bruk: %s [FLAGG]\n" + +#, fuzzy +#~ msgid "Usage: %s [OPTION]... [VARIABLE]...\n" +#~ msgstr "Bruk: %s [FLAGG]... [FIL]...\n" + +#, fuzzy +#~ msgid "Usage: %s [OPTION]... NUMBER[SUFFIX]\n" +#~ msgstr "Bruk: %s [FLAGG]... [FIL]...\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "(obsolete) If -VALUE is used as first OPTION, same as -c VALUE when one " +#~ "of\n" +#~ "multipliers bkm follows concatenated, else same as -n VALUE.\n" +#~ msgstr "" +#~ "Skriv de første 10 linjene av hver FIL til standard ut.\n" +#~ "Med mer enn en FIL er angitt, skriv ut filnavnet før hver FIL.\n" +#~ "Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +#~ "inn.\n" +#~ "\n" +#~ " -c, --bytes=STØRRELSE skriv ut første STØRRELSE bytes\n" +#~ " -n, --lines=ANTALL skriv ut første ANTALL tegn istedet for 10\n" +#~ " -q, --quiet, --silent ikke skriv ut filnavnene først\n" +#~ " -v, --verbose skriv alltid filnavnene først\n" +#~ " --help vis denne hjelpteksten, og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" +#~ "STØRRELSE kan ha en multiplikator-endelse: b for 512, k for 1K, m for " +#~ "1Meg.\n" +#~ "Hvis -VERDI brukes som første FLAGG, leses det som -c VERDI hvis en av\n" +#~ "multiplikatorene bkm er bakerst, ellers leses -n VERDI.\n" + +#, fuzzy +#~ msgid "warning: `od -w' is obsolete; use `od --width'" +#~ msgstr "advarsel: ugyldig bredde %lu; bruker %d istedet" + +#, fuzzy +#~ msgid "warning: `pr -S' is obsolete; use `pr --sep-string'" +#~ msgstr "advarsel: ugyldig bredde %lu; bruker %d istedet" + +#, fuzzy +#~ msgid "" +#~ " +POS1 [-POS2] start a key at POS1, end it before POS2 " +#~ "(origin 0)\n" +#~ " Warning: this option is obsolete\n" +#~ msgstr "" +#~ "Sammenlign de sorterte filene VENSTRE_FIL og HØYRE_FIL linje for linje.\n" +#~ "\n" +#~ " -1 se bort fra linjer som bare finnes i den venstre filen\n" +#~ " -2 se bort fra linjer som bare finnes i den høyre filen\n" +#~ " -3 se bort fra linjer som finnes i begge filer\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#, fuzzy +#~ msgid "warning: `sort -y' is obsolete; omit `-y'" +#~ msgstr "advarsel: ugyldig bredde %lu; bruker %d istedet" + +#, fuzzy +#~ msgid "warning: `tail %s' is obsolete; use -n or -c instead" +#~ msgstr "advarsel: ugyldig bredde %lu; bruker %d istedet" + +#, fuzzy +#~ msgid "warning: `uniq %s' is obsolete; use `uniq -s %s' instead" +#~ msgstr "advarsel: ugyldig bredde %lu; bruker %d istedet" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vis CRC-sjekksummer og byteantall for hver FIL.\n" +#~ "\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vis CRC-sjekksummer og byteantall for hver FIL.\n" +#~ "\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vis CRC-sjekksummer og byteantall for hver FIL.\n" +#~ "\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vis CRC-sjekksummer og byteantall for hver FIL.\n" +#~ "\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vis CRC-sjekksummer og byteantall for hver FIL.\n" +#~ "\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ "Convert tabs in each FILE to spaces, writing to standard output.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -i, --initial do not convert TABs after non whitespace\n" +#~ " -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +#~ msgstr "" +#~ "Konverter tabulatorer i hver FIL til mellomrom, skriv til standard ut.\n" +#~ "Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +#~ "inn.\n" +#~ "\n" +#~ " -i, --initial ikke konverter tabulatorer etter ikke-blanke tegn\n" +#~ " -t, --tabs=TALL ha tabulatorer TALL tegn fra hverandre, ikke 8\n" +#~ " -t, --tabs=LISTE bruk komma-separert LISTE med tab-posisjoner\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" +#~ "Istedet for -t TALL eller -t LISTE kan -TALL eller -LISTE brukes.\n" + +#, fuzzy +#~ msgid "" +#~ " -t, --tabs=LIST use comma separated list of explicit tab positions\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n" +#~ msgstr "" +#~ "Konverter tabulatorer i hver FIL til mellomrom, skriv til standard ut.\n" +#~ "Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +#~ "inn.\n" +#~ "\n" +#~ " -i, --initial ikke konverter tabulatorer etter ikke-blanke tegn\n" +#~ " -t, --tabs=TALL ha tabulatorer TALL tegn fra hverandre, ikke 8\n" +#~ " -t, --tabs=LISTE bruk komma-separert LISTE med tab-posisjoner\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" +#~ "Istedet for -t TALL eller -t LISTE kan -TALL eller -LISTE brukes.\n" + +#, fuzzy +#~ msgid "" +#~ "Wrap input lines in each FILE (standard input by default), writing to\n" +#~ "standard output.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --bytes count bytes rather than columns\n" +#~ " -s, --spaces break at spaces\n" +#~ " -w, --width=WIDTH use WIDTH columns instead of 80\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Brekk om linjene i hver FIL (standard inn), skriv til standard ut\n" +#~ "\n" +#~ " -b, --bytes tell bytes istedet for kolonner\n" +#~ " -s, --spaces brekk om ved mellomrom\n" +#~ " -w, --width=BREDDE bruk BREDDE kolonner istedet for 80\n" +#~ " --help vis denne hjelpeteksten og avslutt\n" +#~ " --version vis versjonsinformasjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ "Write lines consisting of the sequentially corresponding lines from\n" +#~ "each FILE, separated by TABs, to standard output.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +#~ " -s, --serial paste one file at a time instead of in " +#~ "parallel\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Skriv linjer som består av de sekvensielt tilsvarende linjene fra hver\n" +#~ "FIL separert med tabulatorer til standard ut.\n" +#~ "Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +#~ "inn.\n" +#~ "\n" +#~ " -d, --delimiters=LISTE bruk tegn fra LISTE istedet for tabulatorer\n" +#~ " -s, --serial ta en fil om gangen i steder for i parallell\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ " -NUMBER same as -l NUMBER\n" +#~ " --verbose print a diagnostic to standard error just\n" +#~ " before each output file is opened\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +#~ msgstr "" +#~ "Skriv stykker av fast størrelse av INPUT til PREFIKSaa, PREFIKSab, ...;\n" +#~ "Forvalgt PREFIKS er `x'. Dersom ingen INPUT er spesifisert, eller INPUT " +#~ "er -,\n" +#~ "leses det fra standard inn.\n" +#~ "\n" +#~ " -ANTALL samme som -l ANTALL\n" +#~ " -b, --bytes=STØRRELSE skriv STØRRELSE bytes i hver utfil\n" +#~ " -C, --line-bytes=STØRRELSE skriv maksimum STØRRELSE bytes med linjer " +#~ "per\n" +#~ " utfil\n" +#~ " -l, --lines=ANTALL skriv ANTALL linjer i hver utfil\n" +#~ " --verbose skriv en diagnostikk til standard error " +#~ "rett\n" +#~ " før hver utfil åpnes\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" +#~ "STØRRELSE kan ha en multiplikatorendelse: b for 512, k for 1K eller\n" +#~ " m for 1 Meg.\n" + +#, fuzzy +#~ msgid "" +#~ "Write each FILE to standard output, last line first.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --before attach the separator before instead of after\n" +#~ msgstr "" +#~ "Skriv hver FIL til standard ut, siste linje først.\n" +#~ "Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +#~ "inn.\n" +#~ "\n" +#~ " -b, --before føy til separator før istedet for etter\n" +#~ " -r, --regex tolk separatoren som et regulært uttrykk\n" +#~ " -s, --separator=STRENG bruk STRENG som separator istedet for " +#~ "linjeskift\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" + +#, fuzzy +#~ msgid "" +#~ "Print the last %d lines of each FILE to standard output.\n" +#~ "With more than one FILE, precede each with a header giving the file " +#~ "name.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " --retry keep trying to open a file even if it is\n" +#~ " inaccessible when tail starts or if it " +#~ "becomes\n" +#~ " inaccessible later -- useful only with -f\n" +#~ msgstr "" +#~ "Skriv de første 10 linjene av hver FIL til standard ut.\n" +#~ "Med mer enn en FIL er angitt, skriv ut filnavnet før hver FIL.\n" +#~ "Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +#~ "inn.\n" +#~ "\n" +#~ " -c, --bytes=STØRRELSE skriv ut første STØRRELSE bytes\n" +#~ " -n, --lines=ANTALL skriv ut første ANTALL tegn istedet for 10\n" +#~ " -q, --quiet, --silent ikke skriv ut filnavnene først\n" +#~ " -v, --verbose skriv alltid filnavnene først\n" +#~ " --help vis denne hjelpteksten, og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" +#~ "STØRRELSE kan ha en multiplikator-endelse: b for 512, k for 1K, m for " +#~ "1Meg.\n" +#~ "Hvis -VERDI brukes som første FLAGG, leses det som -c VERDI hvis en av\n" +#~ "multiplikatorene bkm er bakerst, ellers leses -n VERDI.\n" + +#, fuzzy +#~ msgid "" +#~ " -t, --tabs=NUMBER have tabs NUMBER characters apart instead of 8\n" +#~ " -t, --tabs=LIST use comma separated list of explicit tab positions\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n" +#~ msgstr "" +#~ "Konverter mellomrom i hver FIL til tabulatorer, skriv ut til standard " +#~ "ut.\n" +#~ "Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +#~ "inn.\n" +#~ "\n" +#~ " -a, --all konverter alle blanke tegn, istedet for bare " +#~ "innledende\n" +#~ " -t, --tabs=ANTALL ha tabulatorer ANTALL tegn fra hverandre istedet " +#~ "for 8\n" +#~ " -t, --tabs=LISTE bruk komma-separert LISTE med tabulatorposisjoner.\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" +#~ "Istedet for -t ANTALL eller -t LISTE, kan -ANTALL eller -LISTE brukes\n" + +#, fuzzy +#~ msgid "" +#~ "Output pieces of FILE separated by PATTERN(s) to files `xx01', " +#~ "`xx02', ...,\n" +#~ "and output byte counts of each piece to standard output.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --suffix-format=FORMAT use sprintf FORMAT instead of %%d\n" +#~ " -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +#~ " -k, --keep-files do not remove output files on errors\n" +#~ " -n, --digits=DIGITS use specified number of digits instead of 2\n" +#~ " -s, --quiet, --silent do not print counts of output file sizes\n" +#~ " -z, --elide-empty-files remove empty output files\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Read standard input if FILE is -. Each PATTERN may be:\n" +#~ "\n" +#~ " INTEGER copy up to but not including specified line number\n" +#~ " /REGEXP/[OFFSET] copy up to but not including a matching line\n" +#~ " %%REGEXP%%[OFFSET] skip to, but not including a matching line\n" +#~ " {INTEGER} repeat the previous pattern specified number of " +#~ "times\n" +#~ " {*} repeat the previous pattern as many times as " +#~ "possible\n" +#~ "\n" +#~ "A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +#~ msgstr "" +#~ "Skriv ut deler av FIL separert av MØNSTER til filene «xx01», «xx02»,...,\n" +#~ "og vis antall bytes for hver del på standard ut.\n" +#~ "\n" +#~ " -b, --suffix-format=FORMAT bruk sprintf-FORMAT istedet for %%d\n" +#~ " -f, --prefix=PREFIKS bruk PREFIKS istedet for «xx»\n" +#~ " -k, --keep-files ikke fjern utfiler ved feil\n" +#~ " -n, --digits=SIFFER bruk angitt antall siffer istedet for 2\n" +#~ " -s, --quiet, --silent ikke vis størrelsen på utfilene\n" +#~ " -z, --elide-empty-files fjern tomme utfiler\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" +#~ "Les standard inn når FIL er «-». Hvert MØNSTER kan være:\n" +#~ "\n" +#~ " HELTALL kopier fram til, men ikke med, spesifisert " +#~ "linjenummer\n" +#~ " /REGEXP/[POSISJON] kopier fram til, men ikke med, en «passende» linje\n" +#~ " %%REGEXP%%[POSISJON] hopp fram til, men ikke med, en «passende» linje\n" +#~ " {HELTALL} gjenta forrige mønster så mange ganger som " +#~ "spesifisert\n" +#~ " {*} gjenta forrige mønster så mange ganger som mulig\n" +#~ "\n" +#~ "En linje-POSISJON må være «+» eller «-» fulgt av et positivt heltall\n" + +#, fuzzy +#~ msgid "" +#~ "Print selected parts of lines from each FILE to standard output.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --bytes=LIST output only these bytes\n" +#~ " -c, --characters=LIST output only these characters\n" +#~ " -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +#~ " -f, --fields=LIST output only these fields; also print any line\n" +#~ " that contains no delimiter character, unless\n" +#~ " the -s option is specified\n" +#~ " -n (ignored)\n" +#~ " -s, --only-delimited do not print lines not containing delimiters\n" +#~ " --output-delimiter=STRING use STRING as the output delimiter\n" +#~ " the default is to use the input delimiter\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +#~ "range, or many ranges separated by commas. Each range is one of:\n" +#~ "\n" +#~ " N N'th byte, character or field, counted from 1\n" +#~ " N- from N'th byte, character or field, to end of line\n" +#~ " N-M from N'th to M'th (included) byte, character or field\n" +#~ " -M from first to M'th (included) byte, character or field\n" +#~ "\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ msgstr "" +#~ "Skriv ut valgte deler av linjene fra hver FIL til standard ut.\n" +#~ "\n" +#~ " -b, --bytes=LISTE skriv bare ut disse byte'ene\n" +#~ " -c, --characters=LISTE skriv bare ut disse tegnene\n" +#~ " -d, --delimiter=SKILLE bruk SKILLE istedet for TAB som skilletegn\n" +#~ " -f, --fields=LISTE skriv bare ut disse feltene\n" +#~ " -n (ignorert)\n" +#~ " -s, --only-delimited ikke skriv ut linjer som ikke inneholder " +#~ "skilletegn\n" +#~ " --output-delimiter=STRENG bruk STRENG som forvalgt ut-skilletegn.\n" +#~ " forvalgt er å bruke inn-skilletegnet\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" +#~ "Bruk én, og bare én av -b, -c og -f. Hver LISTE er laget av en\n" +#~ "«serie», eller mange serier separert av komma. Hver serie er en av:\n" +#~ "\n" +#~ " N N'te byte, tegn eller felt, telt fra 1\n" +#~ " N- fra N'te byte, tegn eller felt, til slutten av linjen\n" +#~ " N-M fra N'te til M'te (til og med) byte, tegn eller felt\n" +#~ " -M fra første til M'te (til og med) byte, tegn eller felt\n" +#~ "\n" +#~ "Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +#~ "inn.\n" + +#~ msgid "" +#~ "For each pair of input lines with identical join fields, write a line to\n" +#~ "standard output. The default join field is the first, delimited\n" +#~ "by whitespace. When FILE1 or FILE2 (not both) is -, read standard " +#~ "input.\n" +#~ "\n" +#~ " -a SIDE print unpairable lines coming from file SIDE\n" +#~ " -e EMPTY replace missing input fields with EMPTY\n" +#~ " -i, --ignore-case ignore differences in case when comparing fields\n" +#~ " -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +#~ " -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +#~ " -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +#~ " -o FORMAT obey FORMAT while constructing output line\n" +#~ " -t CHAR use CHAR as input and output field separator\n" +#~ " -v SIDE like -a SIDE, but suppress joined output lines\n" +#~ " -1 FIELD join on this FIELD of file 1\n" +#~ " -2 FIELD join on this FIELD of file 2\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +#~ "else fields are separated by CHAR. Any FIELD is a field number counted\n" +#~ "from 1. FORMAT is one or more comma or blank separated specifications,\n" +#~ "each being `SIDE.FIELD' or `0'. Default FORMAT outputs the join field,\n" +#~ "the remaining fields from FILE1, the remaining fields from FILE2, all\n" +#~ "separated by CHAR.\n" +#~ msgstr "" +#~ "For hvert par av inn-linjer med like sammenføyningsfelt, skriv en linje " +#~ "til\n" +#~ "standard ut. Det forvalgte sammenføyningsfeltet er det første\n" +#~ "feltet, begrenset av «blanke» tegn. Dersom FIL1 eller FIL2 (ikke begge)\n" +#~ "er -, leses det fra standard inn.\n" +#~ "\n" +#~ " -a SIDE skriv ut linjer som ikke kan parres som fra fil SIDE\n" +#~ " -e TOM erstatt manglende inn-felt med TOM\n" +#~ " -i, --ignore-case ignorer forskjeller i store/små bokstaver ved\n" +#~ " sammenligning av felt\n" +#~ " -j FELT (avleggs) samme som «-1 FELT -2 FELT»\n" +#~ " -j1 FELT (avleggs) samme som «-1 FELT»\n" +#~ " -j2 FELT (avleggs) samme som «-2 FELT»\n" +#~ " -o FORMAT følg FORMAT når utlinjen lages\n" +#~ " -t TEGN bruk TEGN som feltseparator for inn og ut\n" +#~ " -v SIDE som -a SIDE, men dropp sammenføyde ut-linjer\n" +#~ " -1 FELT sammenføy ved dette FELTet fra fil 1\n" +#~ " -2 FELT sammenføy ved dette FELTet fra fil 2\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" +#~ "Dersom -t TEGN ikke er angitt, er «ledende blanke» feltseparator, og " +#~ "ignoreres,\n" +#~ "ellers er felt skilt av TEGN. Hvert FELT er et feltnummer telt fra 1.\n" +#~ "FORMAT er en eller flere komma- eller blank-separerte spesifikasjoner, " +#~ "der\n" +#~ "hver er «SIDE.FELT» eller «0». Det forvalgte FORMATet skriver ut\n" +#~ "sammenføyningsfeltet, resten av feltene fra FIL1 og resten av feltene " +#~ "fra\n" +#~ "FIL2, alle skilt med TEGN.\n" + +#, fuzzy +#~ msgid "" +#~ "Usage: %s [OPTION] [FILE]...\n" +#~ " or: %s [OPTION] --check [FILE]\n" +#~ "Print or check %s (%d-bit) checksums.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ " -b, --binary read files in binary mode (default on DOS/" +#~ "Windows)\n" +#~ " -c, --check check %s sums against given list\n" +#~ " -t, --text read files in text mode (default)\n" +#~ "\n" +#~ "The following two options are useful only when verifying checksums:\n" +#~ " --status don't output anything, status code shows " +#~ "success\n" +#~ " -w, --warn warn about improperly formated checksum lines\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "The sums are computed as described in %s. When checking, the input\n" +#~ "should be a former output of this program. The default mode is to print\n" +#~ "a line with checksum, a character indicating type (`*' for binary, ` ' " +#~ "for\n" +#~ "text), and name for each FILE.\n" +#~ msgstr "" +#~ "Bruk: %s [FLAGG] [FIL]...\n" +#~ " eller: %s [FLAGG] --check [FIL]\n" +#~ "Skriv eller sjekk MD5-sjekksummer.\n" +#~ "Dersom ingen FIL er spesifisert eller FIL er -, leses det fra standard " +#~ "inn.\n" +#~ "\n" +#~ " -b, --binary les filene i binærmodus (forvalg i DOS/Windows)\n" +#~ " -c, --check sjekk MD5-summene mot angitt liste\n" +#~ " -t, --text les filene i tekstmodus (forvalgt)\n" +#~ "\n" +#~ "De følgende to flaggene brukes kun ved sjekking av sjekksummer:\n" +#~ " --status ikke skriv ut noe, statuskode angir resultat\n" +#~ " -w, --warn advar mot feilformatterte MD5-sjekksum-linjer\n" +#~ "\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" +#~ "Summene blir beregnet som beskrevet i RFC 1321. Ved sjekking skal\n" +#~ "inndata være tidligere utdata fra dette programmet. Forvalgt \n" +#~ "modus er å skrive ut en linje med sjekksum, et tegn som indikerer\n" +#~ "type («*» for binær, « » for tekst), og navnet til hver FIL\n" + +#, fuzzy +#~ msgid "" +#~ "Write each FILE to standard output, with line numbers added.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +#~ " -d, --section-delimiter=CC use CC for separating logical pages\n" +#~ " -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +#~ " -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +#~ " -i, --page-increment=NUMBER line number increment at each line\n" +#~ " -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +#~ "one\n" +#~ " -n, --number-format=FORMAT insert line numbers according to " +#~ "FORMAT\n" +#~ " -p, --no-renumber do not reset line numbers at logical " +#~ "pages\n" +#~ " -s, --number-separator=STRING add STRING after (possible) line " +#~ "number\n" +#~ " -v, --first-page=NUMBER first line number on each logical page\n" +#~ " -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +#~ "two delimiter characters for separating logical pages, a missing\n" +#~ "second character implies :. Type \\\\ for \\. STYLE is one of:\n" +#~ "\n" +#~ " a number all lines\n" +#~ " t number only nonempty lines\n" +#~ " n number no lines\n" +#~ " pREGEXP number only lines that contain a match for REGEXP\n" +#~ "\n" +#~ "FORMAT is one of:\n" +#~ "\n" +#~ " ln left justified, no leading zeros\n" +#~ " rn right justified, no leading zeros\n" +#~ " rz right justified, leading zeros\n" +#~ "\n" +#~ msgstr "" +#~ "Skriv hver fil til standard ut, med linjenummer lagt til.\n" +#~ "Dersom ingen FIL er spesifisert, eller FIL er -, leses det fra standard " +#~ "inn.\n" +#~ "\n" +#~ " -b, --body-numbering=STIL bruk STIL for nummerering\n" +#~ " -d, --section-delimiter=CC bruk CC for å skille logiske sider\n" +#~ " -f, --footer-numbering=STIL bruk STIL for å nummerere bunntekst\n" +#~ " -h, --header-numbering=STIL bruk STIL for å nummerere topptekst\n" +#~ " -i, --page-increment=ANTALL linjenummerøkning for hver linje\n" +#~ " -l, --join-blank-lines=ANTALL ANTALL tomme linjer som teller som en\n" +#~ " -n, --number-format=FORMAT sett inn linjenummer etter FORMAT\n" +#~ " -p, --no-renumber ikke begynn linjenumre på nytt ved " +#~ "logiske\n" +#~ " sider\n" +#~ " -s, --number-separator=STRENG legg til STRENG etter (mulig) " +#~ "linjenummer\n" +#~ " -v, --first-page=ANTALL første linjenummer på hver logiske " +#~ "side\n" +#~ " -w, --number-width=ANTALL bruk ANTALL kolonner for " +#~ "linjenummerering\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" +#~ "Forvalgt er -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC er\n" +#~ "to skilletegn for å skille logiske sider, et manglende andretegn\n" +#~ "impliserer «:». Bruk \\\\ for \\. STIL er en av:\n" +#~ "\n" +#~ " a nummerer alle linjer\n" +#~ " t nummerer bare ikke-tomme linjer\n" +#~ " n nummerer ingen linjer\n" +#~ " pREGEXP nummerer bare linjer som passer REGEXP\n" +#~ "\n" +#~ "FORMAT er et av følgende:\n" +#~ "\n" +#~ " ln venstrejustert, ingen ledende nuller\n" +#~ " rn høyrejustert, ingen ledende nuller\n" +#~ " rz høyrejustert, ledende nuller\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Write an unambiguous representation, octal bytes by default,\n" +#~ "of FILE to standard output. With more than one FILE argument,\n" +#~ "concatenate them in the listed order to form the input.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -A, --address-radix=RADIX decide how file offsets are printed\n" +#~ " -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +#~ " -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +#~ " -s, --strings[=BYTES] output strings of at least BYTES graphic " +#~ "chars\n" +#~ " -t, --format=TYPE select output format or formats\n" +#~ " -v, --output-duplicates do not use * to mark line suppression\n" +#~ " -w, --width[=BYTES] output BYTES bytes per output line\n" +#~ " --traditional accept arguments in pre-POSIX form\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Pre-POSIX format specifications may be intermixed, they accumulate:\n" +#~ " -a same as -t a, select named characters\n" +#~ " -b same as -t oC, select octal bytes\n" +#~ " -c same as -t c, select ASCII characters or backslash escapes\n" +#~ " -d same as -t u2, select unsigned decimal shorts\n" +#~ " -f same as -t fF, select floats\n" +#~ " -h same as -t x2, select hexadecimal shorts\n" +#~ " -i same as -t d2, select decimal shorts\n" +#~ " -l same as -t d4, select decimal longs\n" +#~ " -o same as -t o2, select octal shorts\n" +#~ " -x same as -t x2, select hexadecimal shorts\n" +#~ msgstr "" +#~ "Skriv en entydig representasjon, oktale bytes forvalgt, av FIL\n" +#~ "til standard ut. Dersom ingen FIL er spesifisert, eller FIL er -,\n" +#~ "leses det fra standard inn.\n" +#~ "\n" +#~ " -A, --address-radix=RADIX bestem hvordan filoffset'er skrives\n" +#~ " -j, --skip-bytes=BYTES hopp over første BYTES fra hver fil\n" +#~ " -N, --read-bytes=BYTES begrens oppgaven til første BYTES fra hver " +#~ "fil\n" +#~ " -s, --strings[=BYTES] skriv ut strenger med minst BYTES grafiske " +#~ "tegn\n" +#~ " -t, --format=TYPE velg utformat(er)\n" +#~ " -v, --output-duplicates ikke bruk * for å markere linjefjerning\n" +#~ " -w, --width[=BYTES] skriv BYTES bytes per utlinje\n" +#~ " --traditional aksepter argumenter i pre-POSIX form\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" +#~ "Pre-POSIX-argumenter kan blandes, de er:\n" +#~ " -a samme som -t a, velg navngitte tegn\n" +#~ " -b samme som -t oC, velg oktalbytes\n" +#~ " -c samme som -t c, velg ASCII-tegn eller backslash-notasjon\n" +#~ " -d samme som -t u2, velg korte desimaler uten fortegn\n" +#~ " -f samme som -t fF, velg flyttall\n" +#~ " -h samme som -t x2, velg korte hexadesimale\n" +#~ " -i samme som -t d2, velg korte desimaler\n" +#~ " -l samme som -t d4, velg lange desimaler\n" +#~ " -o samme som -t o2, velg korte oktaler\n" +#~ " -x samme som -t x2, velg korte hexadesimaler\n" + +#~ msgid "" +#~ "\n" +#~ "For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +#~ "is the pseudo-address at first byte printed, incremented when dump is\n" +#~ "progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +#~ "hexadecimal, suffixes maybe . for octal and b multiply by 512.\n" +#~ "\n" +#~ "TYPE is made up of one or more of these specifications:\n" +#~ "\n" +#~ " a named character\n" +#~ " c ASCII character or backslash escape\n" +#~ " d[SIZE] signed decimal, SIZE bytes per integer\n" +#~ " f[SIZE] floating point, SIZE bytes per integer\n" +#~ " o[SIZE] octal, SIZE bytes per integer\n" +#~ " u[SIZE] unsigned decimal, SIZE bytes per integer\n" +#~ " x[SIZE] hexadecimal, SIZE bytes per integer\n" +#~ "\n" +#~ "SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +#~ "sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +#~ "sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +#~ "for sizeof(double) or L for sizeof(long double).\n" +#~ "\n" +#~ "RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +#~ "BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +#~ "with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix " +#~ "to\n" +#~ "any type adds a display of printable characters to the end of each line\n" +#~ "of output. -s without a number implies 3. -w without a number implies " +#~ "32.\n" +#~ "By default, od uses -A o -t d2 -w 16.\n" +#~ msgstr "" +#~ "\n" +#~ "For eldre syntaks («second call format»), betyr POSISJON -j POSISJON. \n" +#~ "MERKE er pseudoadressen til den første uskrevne byten, som økes mens\n" +#~ "utskriften pågår. For POSISJON og MERKE, indikerer en 0x- eller \n" +#~ "0X-forstavelse hexadesimalt tallformat. Endelser kan være . for oktal,\n" +#~ "og b for blokker på 512 bytes.\n" +#~ "\n" +#~ "TYPE er laget av en eller flere av følgende:\n" +#~ "\n" +#~ " a et navngitt tegn\n" +#~ " c ASCII-tegn eller backslash-notasjon\n" +#~ " d[STØRRELSE] desimal med fortegn, STØRRELSE bytes per tall\n" +#~ " f[STØRRELSE] flyttall, STØRRELSE bytes per tall\n" +#~ " o[STØRRELSE] oktal, STØRRELSE bytes per tall\n" +#~ " u[STØRRELSE] desimal uten fortegn, STØRRELSE bytes per tall\n" +#~ " x[STØRRELSE] hexadesimal, STØRRELSE bytes per tall\n" +#~ "\n" +#~ "STØRRELSE er et tall. For TYPE lik d, o, u eller x, kan STØRRELSE også " +#~ "være\n" +#~ "C for sizeof(char), S for sizeof(short), I for sizeof(int) eller L for \n" +#~ "sizeof(long). Når TYPE er f, kan STØRRELSE være F for sizeof(float), \n" +#~ "D for sizeof(double) eller L for sizeof(long double).\n" +#~ "\n" +#~ "RADIX er d for desimal, o for oktal, x for hexadesimal eller n for " +#~ "ingen.\n" +#~ "BYTES er hexadesimal med 0x- eller 0X-prefix, multipliseres med 512\n" +#~ "med endelse b, med 1024 med endelse k og med 1048576 med endelse m. \n" +#~ "En z-endelse for en hvilken som helst type viser skrivbare tegn til " +#~ "slutten\n" +#~ "av hver linje av utskriften. -s uten et tall impliserer 3. -w uten et " +#~ "tall\n" +#~ "impliserer 32. Forvalgt er at od bruker -A o -t d2 -w 16.\n" + +#, fuzzy +#~ msgid "" +#~ "Paginate or columnate FILE(s) for printing.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +#~ " begin [stop] printing with page FIRST_[LAST_]PAGE\n" +#~ " -COLUMN, --columns=COLUMN\n" +#~ " produce COLUMN-column output and print columns down,\n" +#~ " unless -a is used. Balance number of lines in the\n" +#~ " columns on each page.\n" +#~ " -a, --across print columns across rather than down, used together\n" +#~ " with -COLUMN\n" +#~ " -c, --show-control-chars\n" +#~ " use hat notation (^G) and octal backslash notation\n" +#~ " -d, --double-space\n" +#~ " double space the output\n" +#~ " -D, --date-format=FORMAT\n" +#~ " use FORMAT for the header date\n" +#~ " -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +#~ " expand input CHARs (TABs) to tab WIDTH (8)\n" +#~ " -F, -f, --form-feed\n" +#~ " use form feeds instead of newlines to separate pages\n" +#~ " (by a 3-line page header with -F or a 5-line header\n" +#~ " and trailer without -F)\n" +#~ msgstr "" +#~ "Formater FIL(er) i sider og spalter for utskriving.\n" +#~ "\n" +#~ "Fra versjon 1.22i: Redefinering av noen av flaggene med små bokstaver " +#~ "(bedre\n" +#~ "POSIZ-støtte og tilpassing til andre UNIXer i noen tilfeller) som fører " +#~ "til\n" +#~ "brudd i bakover-kompatibilitet. Noen nye flagg med store bokstaver er\n" +#~ "definert for å unngå uventede forstyrrelser av flagg. Flagg med store\n" +#~ "bokstaver dominierer flagg med små bokstaver.\n" +#~ "Sideskift i inndata fører til sideskift i utdata. Flere sideskift\n" +#~ "fører til tomme sider\n" +#~ "\n" +#~ " +FØRSTE_SIDE[:SISTE_SIDE], --pages=FØRSTE_SIZE[:SISTE_SIDE]\n" +#~ " start [slutt] utskrift med FØRSTE_[SISTE_]SIDE\n" +#~ " -SPALTER, --columns=SPALTER\n" +#~ " lag SPALTER-spalters utskrift og skriv spalter " +#~ "nedover\n" +#~ " med mindre «-a» er spesifisert: balansér antall " +#~ "linjer\n" +#~ " i spaltene på hver side.\n" +#~ " -a, --across skriv spalter bortover isteden for nedover. Brukes\n" +#~ " sammen med -SPALTER\n" +#~ " -c, --show-control-chars\n" +#~ " bruk hatt-notasjon (^G) og oktal backslashnotasjon\n" +#~ " -d, --double-space\n" +#~ " dobbel avstand i utskriften\n" +#~ " -e[TEGN[BREDDE]], --expand-tabs[=TEGN[BREDDE]]\n" +#~ " utvid inn-TEGN (TABs) til BREDDE blanktegn (8)\n" +#~ " -F, -f, --form-feed\n" +#~ " bruk sideforskyvning(FF) istedenfor linjeskift for å\n" +#~ " separere sider. (Med et 3-linjers sidehode med -F " +#~ "eller\n" +#~ " et 5-linjers hode og bunn uten -F).\n" +#~ " -h HODE, --header=HODE\n" +#~ " bruk HODE isteden for filnavn i sidetopptekstene\n" +#~ " med lange hoder kan venstre-trunkering forekomme.\n" +#~ " -h \"\" skriver en blank linje. Ikke bruk -h\"\".\n" +#~ " -i[TEGN[BREDDE]], --output-tabs=[TEGN[BREDDE]]\n" +#~ " erstatt BREDDE (8) mellomrom til TEGN (TABs) \n" +#~ " -J, --join-lines føy sammen fulle linjer. Skrur av -W " +#~ "linjetrunkering,\n" +#~ " ingen kolonnejustering, -S[STRENG] setter " +#~ "separatorer\n" +#~ " -l SIDELENGDE, --length=SIDELENGDE\n" +#~ " sett sidelendge til SIDELENGDE (66) linjer\n" +#~ " (forvalgt antall linjer med tekst er 56 med -f 63)\n" + +#, fuzzy +#~ msgid "" +#~ " -s[CHAR],--separator[=CHAR]\n" +#~ " separate columns by a single character, default for " +#~ "CHAR\n" +#~ " is the character without -w and 'no char' with -" +#~ "w\n" +#~ " -s[CHAR] turns off line truncation of all 3 column\n" +#~ " options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +#~ " -S[STRING], --sep-string[=STRING]\n" +#~ " separate columns by an optional STRING, don't use\n" +#~ " -S \"STRING\", -S only: No separator used (same as -S" +#~ "\"\"),\n" +#~ " without -S: Default separator with -J and " +#~ "\n" +#~ " otherwise (same as -S\" \"), no effect on column " +#~ "options\n" +#~ " -t, --omit-header omit page headers and trailers\n" +#~ " -T, --omit-pagination\n" +#~ " omit page headers and trailers, eliminate any " +#~ "pagination\n" +#~ " by form feeds set in input files\n" +#~ " -v, --show-nonprinting\n" +#~ " use octal backslash notation\n" +#~ " -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +#~ " set page width to PAGE_WIDTH (72) characters for\n" +#~ " multiple text-column output only, -s[char] turns off " +#~ "(72)\n" +#~ " -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +#~ " set page width to PAGE_WIDTH (72) characters always,\n" +#~ " truncate lines, except -J option is set, no " +#~ "interference\n" +#~ " with -S or -s\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +#~ "FILE is -, read standard input.\n" +#~ msgstr "" +#~ " -m, --merge skriv ut alle filer parallelt, en i hver spalte\n" +#~ " trunkér linjer, men føy sammen linjer av full lengde " +#~ "med -j\n" +#~ " -n[SEP[SIFFER]], --number-lines[=SEP[SIFFER]\n" +#~ " nummerér linjer, bruk SIFFER (5) siffer, så SEP " +#~ "(TAB)\n" +#~ " forvalgt telling starter med første linje av innfil\n" +#~ " -N NUMMER, --first-line-number=NUMMER\n" +#~ " start telling med NUMMER på første linje på første " +#~ "side\n" +#~ " som skrives (se +FØRSTE_SIDE)\n" +#~ " -o MARG, --indent=MARG\n" +#~ " rykk inn linjer MARG mellomrom (påvirker ikke -w)\n" +#~ " -r, --no-file-warnings\n" +#~ " ikke advar når en fil ikke kan åpnes\n" +#~ " -s[TEGN], --separator[=TEGN]\n" +#~ " skill spalter med et enkelt TEGN. Forvalgt TEGN er\n" +#~ " TAB uten -w og «ingen tegn» med -w.\n" +#~ " -s[TEGN] slår av linjetrunkering for alle 3 spalte-\n" +#~ " flaggene (-SPALTER|-a -SPALTER|-m) bortsett fra -w\n" +#~ " -s[STRENG], --sep-string[=STRENG]\n" +#~ " skill spalter med en evt. STRENG, ikke bruk\n" +#~ " -S \"STRENG\". Med bare -S brukes ingen skilletegn\n" +#~ " (samme som -S\"\").\n" +#~ " uten -S: forvalgt skilletegn er TAB med -J og " +#~ "mellomrom\n" +#~ " ellers (samme som -S\" \"), ingen effekt på " +#~ "spalteflagg\n" +#~ " -t, --omit-header ikke bruk topp- og bunntekst\n" +#~ " -T, --omit-pagination\n" +#~ " ikke bruk topp- og bunntekst, eliminer evt. side-" +#~ "layout\n" +#~ " ved sideforskyvning(FF) satt i innfiler\n" +#~ " -v, --show-nonprinting\n" +#~ " bruk oktal backslashnotasjon\n" +#~ " -w SIDEBREDDE, --width=SIDEBREDDE\n" +#~ " sett sidebredde til SIDEBREDDE (72) kolonner, kun " +#~ "for\n" +#~ " flerspalteutskrift. -s[tegn] slår av (72)\n" +#~ " -W SIDEBREDDE, --page-width=SIDEBREDDE\n" +#~ " sett sidebredde til SIDEBREDDE (72) kolonner, " +#~ "alltid.\n" +#~ " Trunkér linjer hvis -J ikke er satt. Har ingen\n" +#~ " innblanding med -S eller -s\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" +#~ "-T impliseres av -l nn, når nn <= 10 eller <= 3 ved -F. Dersom ingen FIL\n" +#~ "er spesifisert eller FIL er -, leses det fra standard inn.\n" + +#, fuzzy +#~ msgid "" +#~ "Output a permuted index, including context, of the words in the input " +#~ "files.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -A, --auto-reference output automatically generated " +#~ "references\n" +#~ " -C, --copyright display Copyright and copying " +#~ "conditions\n" +#~ " -G, --traditional behave more like System V `ptx'\n" +#~ " -F, --flag-truncation=STRING use STRING for flagging line " +#~ "truncations\n" +#~ " -M, --macro-name=STRING macro name to use instead of `xx'\n" +#~ " -O, --format=roff generate output as roff directives\n" +#~ " -R, --right-side-refs put references at right, not counted in -" +#~ "w\n" +#~ " -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +#~ " -T, --format=tex generate output as TeX directives\n" +#~ " -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +#~ " -b, --break-file=FILE word break characters in this FILE\n" +#~ " -f, --ignore-case fold lower case to upper case for " +#~ "sorting\n" +#~ " -g, --gap-size=NUMBER gap size in columns between output " +#~ "fields\n" +#~ " -i, --ignore-file=FILE read ignore word list from FILE\n" +#~ " -o, --only-file=FILE read only word list from this FILE\n" +#~ " -r, --references first field of each line is a reference\n" +#~ " -t, --typeset-mode - not implemented -\n" +#~ " -w, --width=NUMBER output width in columns, reference " +#~ "excluded\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +#~ msgstr "" +#~ "Obligatoriske argumenter til lange flagg er også obligatoriske for korte " +#~ "flagg.\n" +#~ "\n" +#~ " -A, --auto-reference skriv ut automatisk genererte " +#~ "referanser\n" +#~ " -C, --copyright vis Copyright og kopieringsbetingelser\n" +#~ " -G, --traditional vær mer som System Vs «ptx»\n" +#~ " -F, --flag-truncation=STRENG bruk STRENG for å markere " +#~ "linjetrunkering\n" +#~ " -M, --macro-name=STRENG makronavn å bruke istedenfor «xx»\n" +#~ " -O, --format=roff generer utskrift som roff-direktiver\n" +#~ " -R, --right-side-refs plassér referansene på høyre side, ikke\n" +#~ " telt med i -w\n" +#~ " -S, --sentence-regexp=REGEXP for slutten av linjer eller slutten av\n" +#~ " setninger\n" +#~ " -T, --format=tex generer utskrift som TeX-direktiver\n" +#~ " -W, --word-regexp=REGEXP bruk REGEXP for å treffe hvert " +#~ "nøkkelord\n" +#~ " -b, --break-file=FIL tegn for orddeling i denne FILen\n" +#~ " -f, --ignore-case gjør om små bokstaver til store for " +#~ "sortering\n" +#~ " -g, --gap-size=TALL størrelse på mellomrom mellom spalter i " +#~ "utfelt\n" +#~ " -i, --ignore-file=FIL les liste over ord som skal ignoreres " +#~ "fra\n" +#~ " denne FILen\n" +#~ " -o, --only-file=FIL les liste over ord som *ikke* skal " +#~ "ignoreres\n" +#~ " fra denne FILen\n" +#~ " -r, --references første felt av hver linje er en " +#~ "referanse\n" +#~ " -t, --typeset-mode - ikke implementert -\n" +#~ " -w, --width=BREDDE utskriftbredde for spalter, eksklusive\n" +#~ " referanser\n" +#~ " --help vis denne hjelpeteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" +#~ "Ved ingen FIL eller hvis FIL er -, leses det fra standard inn. «-F /» " +#~ "er\n" +#~ "forvalgt.\n" + +#, fuzzy +#~ msgid "" +#~ "Other options:\n" +#~ "\n" +#~ " -c, --check check whether input is sorted; do not sort\n" +#~ " -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin " +#~ "1)\n" +#~ " -m, --merge merge already sorted files; do not sort\n" +#~ " -o, --output=FILE write result to FILE instead of standard " +#~ "output\n" +#~ " -s, --stable stabilize sort by disabling last-resort " +#~ "comparison\n" +#~ " -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +#~ " -t, --field-separator=SEP use SEP instead of non- to whitespace " +#~ "transition\n" +#~ " -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %" +#~ "s\n" +#~ " multiple options specify multiple " +#~ "directories\n" +#~ " -u, --unique with -c: check for strict ordering\n" +#~ " otherwise: output only the first of an " +#~ "equal run\n" +#~ " -z, --zero-terminated end lines with 0 byte, not newline\n" +#~ " +POS1 [-POS2] start a key at POS1, end it before POS2 " +#~ "(origin 0)\n" +#~ " Warning: this option is obsolescent\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Skriv en sortert sammenføyning av alle FIL(er) til standard ut.\n" +#~ "\n" +#~ " +POS1 [-POS2] start en nøkkel ved POS1, avslutt den ved POS2\n" +#~ " -b ignorer ledende mellomrom i sorterings-felt og -" +#~ "nøkler\n" +#~ " -c sjekk om filene allerede er sorterte, ikke sortér\n" +#~ " -d bruk bare [a-zA-Z0-9 ]-tegnene i nøkler\n" +#~ " -f gjør om små bokstaver til store i nøkler\n" +#~ " -g sammenlign i henhold til generell numerisk verdi, " +#~ "impl. -b\n" +#~ " -i betrakt kun [\\040-\\0176]-tegnene i nøkler\n" +#~ " -k POS1[,POS2] samme som +POS1 [-POS2], alle posisjoner telles fra 1\n" +#~ " -m legg sammen allerede sorterte filer, ikke sortér\n" +#~ " -M sammenlign (ukjent) < `JAN' < ... < `DEC', impliserer -" +#~ "b\n" +#~ " -n sammenlign i henhold til streng-numerisk verdi, impl. -" +#~ "b\n" +#~ " -o FIL skriv resultat til FIL istedet for til standard ut\n" +#~ " -r gi resultatet i motsatt rekkefølge\n" +#~ " -s stabiliser sortering ved å slå av \n" +#~ " «last resort comparison»\n" +#~ " -t SEP bruk SEP som skilletegn istedet for mellomrom.\n" +#~ " -T HENVIS bruk HENVIS for temporære filer, ikke $TMPDIR eller %" +#~ "s\n" +#~ " -u med -c, sjekk om «strict ordering» brukes\n" +#~ " med -m, skriv kun ut den første av to like setninger\n" +#~ " -z avslutt linjer med en 0-byte, ikke linjeskift,\n" +#~ " for «find -print0»\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" +#~ "POS er F[.T][FLAGG], hvor F er et feltnummer og T en tegnposisjon\n" +#~ "i feltet, begge starter fra null. FLAGG er satt sammen av en eller\n" +#~ "flere av Mbdfinr, dette forhindrer effektivt globale settinger\n" +#~ "av -Mbdfinr for denne nøkkelen. Når ingen nøkkel er angitt,\n" +#~ "brukes hele linjen som nøkkel. Dersom ingen FIL er spesifisert, eller \n" +#~ "FIL er -, leses det fra standard inn.\n" + +#, fuzzy +#~ msgid "" +#~ "Print the last %d lines of each FILE to standard output.\n" +#~ "With more than one FILE, precede each with a header giving the file " +#~ "name.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " --retry keep trying to open a file even if it is\n" +#~ " inaccessible when tail starts or if it " +#~ "becomes\n" +#~ " inaccessible later -- useful only with -f\n" +#~ " -c, --bytes=N output the last N bytes\n" +#~ " -f, --follow[={name|descriptor}]\n" +#~ " output appended data as the file grows;\n" +#~ " -f, --follow, and --follow=descriptor are\n" +#~ " equivalent\n" +#~ " -F same as --follow=name --retry\n" +#~ " -n, --lines=N output the last N lines, instead of the last %" +#~ "d\n" +#~ " --max-unchanged-stats=N\n" +#~ " with --follow=name, reopen a FILE which has " +#~ "not\n" +#~ " changed size after N (default %d) iterations\n" +#~ " to see if it has been unlinked or renamed\n" +#~ " (this is the usual case of rotated log files)\n" +#~ " --pid=PID with -f, terminate after process ID, PID dies\n" +#~ " -q, --quiet, --silent never output headers giving file names\n" +#~ " -s, --sleep-interval=S with -f, each iteration lasts approximately S\n" +#~ " (default 1) seconds\n" +#~ " -v, --verbose always output headers giving file names\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Skriv de siste 10 linjene av hver FIL til standard ut.\n" +#~ "Dersom mer enn én FIL er spesifisert, skriv ut filnavnet foran hver fil.\n" +#~ "Dersom ingen FIL er spesifisert eller FIL er -, leses det fra standard " +#~ "inn.\n" +#~ "\n" +#~ " --allow-missing FIXME\n" +#~ " -c, --bytes=N skriv ut de siste N bytes\n" +#~ " -f, --follow[={navn|deskriptor}] skriv ut tillagte data etterhvert som " +#~ "filen vokser\n" +#~ " -n, --lines=N skriv ut de siste N linjene istedet for de " +#~ "siste 10\n" +#~ " --max-unchanged-stats=N FIXME\n" +#~ " --max-consecutive-size-changes=N FIXME\n" +#~ " -q, --quiet, --silent ikke skriv ut filnavn\n" +#~ " -s, --sleep-interval=S med -f, sov S sekunder mellom hver iterasjon\n" +#~ " -v, --verbose skriv alltid ut filnavnet\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" +#~ "Hvis det første tegnet i N (antall bytes eller linjer) er en «+»,\n" +#~ "skriv ut fra N'te element fra starten av hver fil, ellers skriv ut de\n" +#~ "siste N elementene i filen. N kan ha en multiplikatorending:\n" +#~ "b for 512, k for 1024, m for 1048576 (1 Meg). Dersom første FLAGG er \n" +#~ "-VERDI, eller +VERDI, tolkes det som -n VERDI, eller -n +VERDI dersom " +#~ "VERDI\n" +#~ "ikke har en av [bmk]-endingsmultiplikatorene, ellers tolkes det som -c\n" +#~ "VERDI eller -c +VERDI.\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "SETs are specified as strings of characters. Most represent themselves.\n" +#~ "Interpreted sequences are:\n" +#~ "\n" +#~ " \\NNN character with octal value NNN (1 to 3 octal digits)\n" +#~ " \\\\ backslash\n" +#~ " \\a audible BEL\n" +#~ " \\b backspace\n" +#~ " \\f form feed\n" +#~ " \\n new line\n" +#~ " \\r return\n" +#~ " \\t horizontal tab\n" +#~ " \\v vertical tab\n" +#~ " CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +#~ " [CHAR*] in SET2, copies of CHAR until length of SET1\n" +#~ " [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +#~ " [:alnum:] all letters and digits\n" +#~ " [:alpha:] all letters\n" +#~ " [:blank:] all horizontal whitespace\n" +#~ " [:cntrl:] all control characters\n" +#~ " [:digit:] all digits\n" +#~ " [:graph:] all printable characters, not including space\n" +#~ " [:lower:] all lower case letters\n" +#~ " [:print:] all printable characters, including space\n" +#~ " [:punct:] all punctuation characters\n" +#~ " [:space:] all horizontal or vertical whitespace\n" +#~ " [:upper:] all upper case letters\n" +#~ " [:xdigit:] all hexadecimal digits\n" +#~ " [=CHAR=] all characters which are equivalent to CHAR\n" +#~ msgstr "" +#~ "\n" +#~ "SETT er spesifisert med strenger av tegn. De fleste tegnene står for " +#~ "seg\n" +#~ "selv. Følgende sekvenser tolkes spesielt:\n" +#~ "\n" +#~ " \\NNN tegn med oktalverdi NNN (1 til 3 oktale siffer)\n" +#~ " \\\\ backslash\n" +#~ " \\a beep\n" +#~ " \\b backspace\n" +#~ " \\f sideskift (FF)\n" +#~ " \\n linjeskift (LF)\n" +#~ " \\r vognretur (CR)\n" +#~ " \\t horisontal tabulator\n" +#~ " \\v vertikal tabulator\n" +#~ " TEGN1-TEGN2 alle tegn fra TEGN1 til TEGN2, stigende\n" +#~ " [TEGN1-TEGN2] samme som TEGN1-TEGN2, dersom begge sett bruker dette\n" +#~ " [TEGN*] i SETT2, kopier av TEGN inntil samme lengde til SETT1\n" +#~ " [TEGN*ANT] ANT kopier av TEGN, ANT er oktal, hvis det begynner med " +#~ "0\n" +#~ " [:alnum:] alle bokstaver og tall\n" +#~ " [:alpha:] alle bokstaver\n" +#~ " [:blank:] alle horisontale blanke tegn\n" +#~ " [:cntrl:] alle kontrolltegn\n" +#~ " [:digit:] alle siffer\n" +#~ " [:graph:] alle skrivbare tegn, unntatt blanke tegn\n" +#~ " [:lower:] alle små bokstaver\n" +#~ " [:print:] alle skrivbare tegn, inkludert blanke tegn\n" +#~ " [:punct:] alle tegnsettingstegn\n" +#~ " [:space:] alle horisontale og vertikale blanke tegn\n" +#~ " [:upper:] alle store bokstaver\n" +#~ " [:xdigit:] alle hexadesimale siffer\n" +#~ " [=TEGN=] alle tegn som er like TEGN\n" + +#, fuzzy +#~ msgid "" +#~ "Discard all but one of successive identical lines from INPUT (or\n" +#~ "standard input), writing to OUTPUT (or standard output).\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -c, --count prefix lines by the number of occurrences\n" +#~ " -d, --repeated only print duplicate lines\n" +#~ " -D, --all-repeated[=delimit-method] print all duplicate lines\n" +#~ " delimit-method={none(default),prepend,separate)}\n" +#~ " Delimiting is done with blank lines.\n" +#~ " -f, --skip-fields=N avoid comparing the first N fields\n" +#~ " -i, --ignore-case ignore differences in case when comparing\n" +#~ " -s, --skip-chars=N avoid comparing the first N characters\n" +#~ " -u, --unique only print unique lines\n" +#~ " -w, --check-chars=N compare no more than N characters in lines\n" +#~ " -N same as -f N\n" +#~ " +N same as -s N (obsolescent; will be withdrawn)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "A field is a run of whitespace, then non-whitespace characters.\n" +#~ "Fields are skipped before chars.\n" +#~ msgstr "" +#~ "Fjern alle bortsett fra én identiske linjer fra INN\n" +#~ "(eller standard inn), og skriv til UT (eller standard ut).\n" +#~ "\n" +#~ " -c, --count begynn linjer med antall forekomster\n" +#~ " -d, --repeated skriv bare ut linjer det er flere av\n" +#~ " -D, --all-repeated skriv alle linjer det er flere av\n" +#~ " -f, --skip-fields=N ikke sammenlign de første N feltene\n" +#~ " -i, --ignore-case ignorer forskjeller med store/små bokstaver\n" +#~ " -s, --skip-chars=N ikke sammenlign de første N tegnene\n" +#~ " -u, --unique skriv bare ut unike linjer\n" +#~ " -w, --check-chars=N ikke sammenlign mer enn N tegn per linje\n" +#~ " -N samme som -f N\n" +#~ " +N samme som -s N\n" +#~ " --help vis denne hjelpteksten og avslutt\n" +#~ " --version vis programversjon og avslutt\n" +#~ "\n" +#~ "Et felt er en rekke blanke tegn, så andre tegn. Felt hoppes over før " +#~ "tegn.\n" + +#~ msgid "" +#~ "when using the old-style +POS and -POS key specifiers,\n" +#~ "the +POS specifier must come first" +#~ msgstr "" +#~ "når den gamle nøkkelspesifikasjonsstilen +POS og -POS blir brukt,\n" +#~ "må +POS komme først" + +#~ msgid "option `-k' requires an argument" +#~ msgstr "flagget «-k» trenger et argument" + +#~ msgid "starting field spec has `.' but lacks following character offset" +#~ msgstr "" +#~ "startfeltspesifikasjonen har et «.» men mangler følgende tegnposisjon" + +#, fuzzy +#~ msgid "" +#~ "starting field character offset argument to the `-k' option must be " +#~ "positive" +#~ msgstr "" +#~ "startfeltets tegnposisjonsargument til «-k»-flagget må være positivt" + +#~ msgid "field specification has `,' but lacks following field spec" +#~ msgstr "" +#~ "feltspesifikasjonen har et «,» men mangler følgende feltspesifikasjon" + +#~ msgid "ending field number argument to the `-k' option must be positive" +#~ msgstr "avsluttende feltnummer-argument til «-k»-flagget må være positivt" + +#~ msgid "ending field spec has `.' but lacks following character offset" +#~ msgstr "" +#~ "avsluttende feltspesifikasjon har «.» men mangler følgende tegnposisjon" + +#~ msgid "option `-o' requires an argument" +#~ msgstr "flagget «-o» trenger et argument" + +#, fuzzy +#~ msgid "option `-S' requires an argument" +#~ msgstr "flagget «-k» trenger et argument" + +#~ msgid "option `-t' requires an argument" +#~ msgstr "flagget «-t» trenger et argument" + +#~ msgid "option `-T' requires an argument" +#~ msgstr "flagget «-T» trenger et argument" + +#~ msgid "%s: unrecognized option `-%c'\n" +#~ msgstr "%s: ukjent flagg «-%c»\n" + +#~ msgid "%s%*s%s%*sPage" +#~ msgstr "%s%*s%s%*sSide" + +#~ msgid "flushing file" +#~ msgstr "oppdaterer filen" + +#~ msgid "" +#~ "specified number of bytes `%s' is larger than the maximum\n" +#~ "representable value of type `long'" +#~ msgstr "" +#~ "angitt antall bytes «%s» er større enn den maksimale representérbare\n" +#~ "verdien av type «long»" + +#~ msgid "could not find loop" +#~ msgstr "kunne ikke finne løkke" + +#~ msgid "%s: cannot follow end of non-regular file" +#~ msgstr "%s: kan ikke følge etter slutten av ikke-vanlig fil" + +#~ msgid "" +#~ "\n" +#~ "Report bugs to ." +#~ msgstr "" +#~ "\n" +#~ "Rapportér feil til ." + +#~ msgid "`%s' has reappeared" +#~ msgstr "«%s» har blitt gjenopprettet" + +#~ msgid "`-w PAGE_WIDTH' invalid column number: `%s'" +#~ msgstr "«-w SIDE_BREDDE» ugyldig kolonnenummer: «%s»" + +#~ msgid "" +#~ "\n" +#~ "Report bugs to textutils-bugs@gnu.org" +#~ msgstr "" +#~ "\n" +#~ "Rapportér feil til textutils-bugs@gnu.org" diff --git a/src/apps/bin/coreutils-5.0/po/pl.gmo b/src/apps/bin/coreutils-5.0/po/pl.gmo new file mode 100644 index 0000000000..bdb4a44235 Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/pl.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/pl.po b/src/apps/bin/coreutils-5.0/po/pl.po new file mode 100644 index 0000000000..63ee29c09f --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/pl.po @@ -0,0 +1,8446 @@ +# Polish translation of GNU coreutils messages +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. +# Rafa³ Maszkowski , 1996-2001, 2003. +# ptx: Pawe³ Krawczyk , 1996. +# sh-utils: Pawe³ Krawczyk , 1997, 1998, 1999. +# fileutils: Thanks for help to Marta Bartnicka, 1999. +# fileutils: Andrzej Krzysztofowicz , 2002. +# Thanks for help and 246+ remarks to Jakub Bogusz, 2003 +# +msgid "" +msgstr "" +"Project-Id-Version: coreutils 4.5.11\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2003-03-19 22:30+0100\n" +"Last-Translator: Rafa³ Maszkowski \n" +"Language-Team: Polish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8-bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "b³êdny argument %s opcji %s" + +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "niejednoznaczny argument %s opcji %s" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "Prawid³owe argumenty to:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "b³±d zapisu" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "Nieznany b³±d systemu" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "pusty zwyk³y plik" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "zwyk³y plik" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "katalog" + +#: lib/file-type.c:48 +msgid "block special file" +msgstr "blokowy plik specjalny" + +#: lib/file-type.c:51 +msgid "character special file" +msgstr "znakowy plik specjalny" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "potok" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "dowi±zanie symboliczne" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "gniazdo" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "kolejka komunikatów" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "semafor" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "obiekt w pamiêci wspó³dzielonej" + +#: lib/file-type.c:71 +msgid "weird file" +msgstr "dziwny plik" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: opcja `%s' jest niejednoznaczna\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: opcja `--%s' nie mo¿e mieæ argumentu\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: opcja `%c%s' nie mo¿e mieæ argumentu\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: opcja `%s' wymaga argumentu\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: nierozpoznana opcja `--%s'\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: nierozpoznana opcja `%c%s'\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: nielegalna opcja -- %c\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: b³êdna opcja -- %c\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: opcja wymaga argumentu -- %c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: opcja `-W %s' jest niejednoznaczna\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: opcja `-W %s' nie mo¿e mieæ argumentu\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "rozmiar bloku" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "nie uda³o siê wróciæ do pocz±tkowego katalogu roboczego" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "nie mo¿na utworzyæ katalogu %s" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%s istnieje, ale nie jest katalogiem" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "nie mo¿na zmieniæ u¿ytkownika i/lub grupy %s" + +#: lib/makepath.c:338 +#, c-format +msgid "cannot chdir to directory %s" +msgstr "nie mo¿na przej¶æ do katalogu %s" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "nie mo¿na zmieniæ uprawnieñ do %s" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "brak pamiêci" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "`" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "'" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[yYtT]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[nN]" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "nie mo¿na u¿yæ funkcji iconv" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "funkcja iconv nie jest dostêpna" + +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "znak spoza zakresu" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "nie mo¿na przekszta³ciæ U+%04X do lokalnego zestawu znaków" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "nie mo¿na przekszta³ciæ U+%04X do lokalnego zestawu znaków: %s" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "b³êdny u¿ytkownik" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "b³êdna grupa" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "Nie mo¿na ustaliæ grupy identyfikatora numerycznego UID" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "nie mo¿na pomin±æ u¿ytkownika i grupy równocze¶nie" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "Napisany przez %s.\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +"Ten program jest darmowy; warunki kopiowania s± opisane w ¼ród³ach.\n" +"Autorzy nie daj± ¯ADNYCH gwarancji, w tym równie¿ gwarancji PRZYDATNO¦CI\n" +"DO SPRZEDA¯Y LUB DO KONKRETNYCH CELÓW.\n" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "nie uda³o siê porównanie ³añcuchów znaków" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "Ustaw LC_ALL='C' ¿eby obej¶æ problem" + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "Porównywane ³añcuchy znaków do %s i %s." + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Spróbuj `%s --help' dla uzyskania informacji.\n" + +#: src/basename.c:54 +#, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"Sk³adnia: %s NAZWA [ROZSZERZENIE]\n" +" albo: %s [OPCJA]\n" + +#: src/basename.c:59 +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" +"Wy¶wietla NAZWÊ, usuwaj±c wszystkie poprzedzaj±ce sk³adniki ¶cie¿ki.\n" +"Je¶li jest podany, usuwa równie¿ PRZYROSTEK.\n" +"\n" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"Raporty o b³êdach wysy³aj do %s .\n" + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "za ma³o argumentów" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "za du¿o argumentów" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "Torbjorn Granlund i Richard M. Stallman" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "Sk³adnia: %s [OPCJA] [PLIK]...\n" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" +"Po³±czenie PLIKU(ÓW) albo przekazanie ze standardowego wej¶cia na wyj¶cie.\n" +"\n" +" -A, --show-all równowa¿ne -vET\n" +" -b, --number-nonblank numerowanie niepustych linii na wyj¶ciu\n" +" -e równowa¿ne -vE\n" +" -E, --show-ends wypisanie $ na koñcu ka¿dej linii\n" +" -n, --number numerowanie wszystkich linii na wyj¶ciu\n" +" -s, --squeeze-blank nigdy wiêcej ni¿ jedna pusta linia\n" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" +" -t równowa¿ne -vT\n" +" -T, --show-tabs wypisanie znaków TAB jako ^I\n" +" -u (ignorowane)\n" +" -v, --show-nonprinting u¿ycie zapisu ^ i M-, oprócz LFD i TAB\n" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"Je¿eli nie zosta³ podany PLIK albo PLIK to -, czytane jest standardowe " +"wej¶cie.\n" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" +"\n" +" -B, --binary pisanie na konsolê w trybie binarnym.\n" +"\n" + +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "nie mo¿na wykonaæ ioctl na `%s'" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "standardowe wyj¶cie" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s: plik wej¶ciowy jest plikiem wyj¶ciowym" + +#: src/cat.c:858 +msgid "closing standard input" +msgstr "zamkniêcie standardowego wej¶cia" + +#: src/cat.c:861 +msgid "closing standard output" +msgstr "zamkniêcie standardowego wyj¶cia" + +#: src/chgrp.c:93 +msgid "cannot change to null group" +msgstr "nie mo¿na zmieniæ grupy na pust±" + +#: src/chgrp.c:102 +#, c-format +msgid "invalid group name %s" +msgstr "b³êdna nazwa grupy %s" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "numer grupy" + +#: src/chgrp.c:109 +#, c-format +msgid "invalid group number %s" +msgstr "b³êdny numer grupy %s" + +#: src/chgrp.c:126 +#, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Sk³adnia: %s [OPCJA]... GRUPA PLIK...\n" +" albo: %s [OPCJA]... --reference=PLIK_WZ PLIK...\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Zmiana grupy ka¿dego PLIKU na GRUPÊ.\n" +"\n" +" -c, --changes jak -v, ale podanie tylko kiedy zasz³a zmiana\n" +" --dereference zmiany maj± dotyczyæ plików wskazywanych przez\n" +" dowi±zania symboliczne, a nie samych dowi±zañ\n" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" +" -h, --no-dereference operowanie na dowi±zaniach symbolicznych zamiast " +"na\n" +" wskazywanych plikach (tylko dla systemów, które\n" +" umiej± zmieniæ w³a¶ciciela dowi±zania " +"symbolicznego)\n" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet wy³±czenie wiêkszo¶ci komunikatów o b³êdach\n" +" --reference=PLIK_WZ u¿ycie grupy pliku PLIK_WZR zamiast podanej\n" +" warto¶ci GRUPA\n" +" -R, --recursive zmiany rekursywne\n" +" -v, --verbose wypisanie informacji o ka¿dym przetwarzanym pliku\n" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, c-format +msgid "failed to get attributes of %s" +msgstr "nie uda³o siê odczytaæ atrybutów %s" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "pobranie nowych atrybutów %s" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "uprawnienia do %s zmienione na %04lo (%s)\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "nie uda³o siê zmieniæ uprawnieñ do %s na %04lo (%s)\n" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "uprawnienia do %s zachowane jako %04lo (%s)\n" + +#: src/chmod.c:179 +#, c-format +msgid "changing permissions of %s" +msgstr "nie mo¿na zmieniæ uprawnieñ do %s" + +#: src/chmod.c:242 +#, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Sk³adnia: %s [OPCJA]... UPRAWN[,UPRAWN]... PLIK...\n" +" albo: %s [OPCJA]... UPRAWN_ÓS PLIK...\n" +" albo: %s [OPCJA]... --reference=PLIK_WZ PLIK...\n" + +#: src/chmod.c:248 +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"Zmienia uprawnienia do ka¿dego PLIKU do UPRAWN.\n" +" -c, --changes jak verbose, ale informowanie tylko gdy zasz³a " +"zmiana\n" +" -f, --silent, --quiet wy³±czenie wiêkszo¶ci komunikatów o b³êdach\n" +" -v, --verbose wypisanie informacji o ka¿dym przetwarzanym pliku\n" +" --reference=PLIK_WZ u¿ycie uprawnieñ pliku PLIK_WZ zamiast warto¶ci " +"UPRAWN\n" +" -R, --recursive zmiany rekursywne\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" +"\n" +"Ka¿de uprawnienie jest oznaczane jedn± z liter ugoa, jednym z symboli +-=\n" +"i jedn± lub wiêcej z liter rwxXstugo.\n" + +#: src/chmod.c:320 +#, c-format +msgid "invalid character %s in mode string %s" +msgstr "b³êdny znak %s w specyfikacji uprawnieñ %s" + +#: src/chmod.c:361 +#, c-format +msgid "invalid mode string: %s" +msgstr "b³êdna specyfikacja uprawnieñ: %s" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "" +"nie zosta³o zmienione ani dowi±zanie symboliczne %s ani wskazywany plik\n" + +#: src/chown-core.c:143 +#, c-format +msgid "changed ownership of %s to %s\n" +msgstr "w³a¶ciciel %s zmieniony na %s\n" + +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "grupa %s zmieniona na %s\n" + +#: src/chown-core.c:148 +#, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "nie mo¿na zmieniæ w³a¶ciciela %s na %s\n" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "nie uda³o siê zmieniæ grupy z %s na %s\n" + +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "w³a¶ciciel %s zachowany jako %s\n" + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "grupa %s zachowana jako %s\n" + +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "zmiana w³a¶ciciela %s" + +#: src/chown-core.c:327 +#, c-format +msgid "changing group of %s" +msgstr "nie mo¿na zmieniæ grupy %s" + +#: src/chown-core.c:345 +#, c-format +msgid "unable to restore permissions of %s" +msgstr "nie mo¿na odtworzyæ uprawnieñ %s" + +#: src/chown.c:99 +#, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Sk³adnia: %s [OPCJA]... W£A¦CICIEL[:[GRUPA]] PLIK...\n" +" albo: %s [OPCJA]... :GRUPA PLIK...\n" +" albo: %s [OPCJA]... --reference=PLIK_WZ PLIK...\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Zmiana w³a¶ciciela i/lub grupy ka¿dego PLIKU na W£A¦CICIELA i/lub GRUPÊ.\n" +"\n" +" -c, --changes jak -v, ale podanie tylko kiedy zasz³a zmiana\n" +" --dereference zmiany maj± dotyczyæ plików wskazywanych przez\n" +" dowi±zania symboliczne, a nie samych dowi±zañ\n" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" +" --from=BIE¯¡CY_W£A¦CICIEL:BIE¯¡CA_GRUPA\n" +" zmiana w³a¶ciciela i/lub grupy ka¿dego pliku, " +"je¿eli\n" +" bie¿±cy w³a¶ciciel i /lub grupa s± takie jak " +"podane.\n" +" Atrybut nie jest porównywany je¿eli zosta³ " +"pominiêty\n" +" w opcji.\n" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet wy³±czenie wiêkszo¶ci komunikatów o b³êdach\n" +" --reference=PLIK_WZ u¿ycie w³a¶ciciela i grupy PLIK_WZ zamiast " +"podanych\n" +" warto¶ci W£A¦CICIEL:GRUPA\n" +" -R, --recursive zmiany rekursywne\n" +" -v, --verbose wypisanie informacji o ka¿dym przetwarzanym pliku\n" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" +"\n" +"W³a¶ciciel nie bêdzie zmieniony, je¿eli nie zosta³ podany. Grupa nie bêdzie\n" +"zmieniona, je¿eli nie zosta³a podana; bêdzie zmieniona na grupê g³ówn±, " +"je¿eli\n" +"zosta³ u¿yty `:'. W£A¦CICIEL i GRUPA mog± byæ podane zarówno numerycznie " +"jak\n" +"symbolicznie.\n" + +#: src/chroot.c:45 +#, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"Sk³adnia: %s NOWY_ROOT [POLECENIE...]\n" +" albo: %s OPCJA\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" +"Uruchomienie polecenia w katalogiem root ustawionym na NOWY_ROOT.\n" +"\n" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" +"\n" +"Je¿eli nie jest podane ¿adne polecenie, uruchamiany jest ``${SHELL} -i''\n" +"(domy¶lnie: /bin/sh).\n" + +#: src/chroot.c:84 +#, c-format +msgid "cannot change root directory to %s" +msgstr "nie mo¿na zmieniæ katalogu root na %s" + +#: src/chroot.c:87 +msgid "cannot chdir to root directory" +msgstr "nie mo¿na przej¶æ do katalogu root" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "%s: za d³ugi plik" + +#: src/cksum.c:282 +#, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"Sk³adnia: %s [PLIK]...\n" +" albo: %s [OPCJA]\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "Wypisanie sumy CRC i liczby bajtów ka¿dego PLIKU.\n" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "Richard Stallman i David MacKenzie" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "Sk³adnia: %s [OPCJA]... LEWY_PLIK PRAWY_PLIK\n" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" +"Porównanie posortowanych plików LEWY_PLIK i PRAWY_PLIK linia po linii.\n" +"\n" +" -1 bez pokazania linii, które s± tylko w lewym pliku\n" +" -2 bez pokazania linii, które s± tylko w prawym pliku\n" +" -3 bez pokazania linii, które s± w obu plikach\n" + +#: src/copy.c:162 src/du.c:332 +#, c-format +msgid "cannot access %s" +msgstr "nie ma dostêpu do %s" + +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "nie mo¿na otworzyæ %s do czytania" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, c-format +msgid "cannot fstat %s" +msgstr "nie mo¿na wykonaæ fstat na %s" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "plik %s zosta³ ominiêty, bo zosta³ zmieniony w trakcie kopiowania" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, c-format +msgid "cannot remove %s" +msgstr "nie mo¿na usun±æ %s" + +#: src/copy.c:277 +#, c-format +msgid "cannot create regular file %s" +msgstr "nie mo¿na utworzyæ zwyk³ego pliku %s" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, c-format +msgid "reading %s" +msgstr "czytanie %s" + +#: src/copy.c:362 +#, c-format +msgid "cannot lseek %s" +msgstr "nie mo¿na wykonaæ lseek na %s" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, c-format +msgid "writing %s" +msgstr "zapis %s" + +#: src/copy.c:409 src/copy.c:415 +#, c-format +msgid "closing %s" +msgstr "zamykanie %s" + +#: src/copy.c:610 +#, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: zamazanie %s, obej¶æ uprawnienia %04lo? " + +#: src/copy.c:616 +#, c-format +msgid "%s: overwrite %s? " +msgstr "%s: zamazaæ %s? " + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, c-format +msgid "cannot stat %s" +msgstr "nie mo¿na wykonaæ stat na %s" + +#: src/copy.c:820 +#, c-format +msgid "omitting directory %s" +msgstr "katalog %s zosta³ pominiêty" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "uwaga: plik ¼ród³owy %s pojawi³ siê wiêcej ni¿ raz" + +#: src/copy.c:866 src/ln.c:237 +#, c-format +msgid "%s and %s are the same file" +msgstr "%s i %s to ten sam plik" + +#: src/copy.c:876 +#, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "nie mo¿na zamazaæ nie-katalogu %s katalogiem %s" + +#: src/copy.c:893 +#, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "nie mo¿na zamazaæ w³a¶nie utworzonego %s plikiem %s" + +#: src/copy.c:904 +#, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "nie mo¿na zamazaæ katalogu %s nie-katalogiem" + +#: src/copy.c:965 +#, c-format +msgid "cannot overwrite directory %s" +msgstr "nie mo¿na zamazaæ katalogu %s" + +#: src/copy.c:974 +#, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "nie mo¿na przenie¶æ katalogu do nie-katalogu: %s -> %s" + +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "" +"utworzenie kopii zapasowej %s zniszczy³oby ¿ród³o; %s nie zosta³ " +"przeniesiony" + +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "" +"utworzenie kopii zapasowej %s zniszczy³oby ¿ród³o; %s nie zosta³ skopiowany" + +#: src/copy.c:1013 src/ln.c:273 +#, c-format +msgid "cannot backup %s" +msgstr "nie mo¿na utworzyæ kopii zapasowej %s" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr " (kopia zapasowa: %s)" + +#: src/copy.c:1099 +#, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "nie mo¿na skopiowaæ katalogu %s do siebie samego %s" + +#: src/copy.c:1106 +#, c-format +msgid "will not create hard link %s to directory %s" +msgstr "nie mo¿na utworzyæ dowi±zania zwyk³ego %s do katalogu %s" + +#: src/copy.c:1132 +#, c-format +msgid "cannot create hard link %s to %s" +msgstr "nie mo¿na utworzyæ dowi±zania zwyk³ego %s do %s" + +#: src/copy.c:1186 +#, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "nie mo¿na przenie¶æ %s do w³asnego podkatalogu %s" + +#: src/copy.c:1229 +#, c-format +msgid "cannot move %s to %s" +msgstr "nie mo¿na przenie¶æ %s do %s" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "" +"nie uda³o siê przeniesienie miêdzy urz±dzeniami: %s do %s; nie uda³o siê " +"usunaæ pliku docelowego" + +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "nie mo¿na skopiowaæ cyklicznego dowi±zania symbolicznego %s" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "" +"%s: mo¿na zrobiæ tylko wzglêdne dowi±zanie symboliczne w bie¿±cym katalogu" + +#: src/copy.c:1353 +#, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "nie mo¿na utworzyæ dowi±zania symbolicznego %s do %s" + +#: src/copy.c:1364 +#, c-format +msgid "cannot create link %s" +msgstr "nie mo¿na utworzyæ dowi±zania %s" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, c-format +msgid "cannot create fifo %s" +msgstr "nie mo¿na utworzyæ potoku %s" + +#: src/copy.c:1403 +#, c-format +msgid "cannot create special file %s" +msgstr "nie mo¿na utworzyæ pliku specjalnego %s" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, c-format +msgid "cannot read symbolic link %s" +msgstr "nie mo¿na przeczytaæ dowi±zania symbolicznego %s" + +#: src/copy.c:1440 +#, c-format +msgid "cannot create symbolic link %s" +msgstr "nie mo¿na utworzyæ dowi±zania symbolicznego %s" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, c-format +msgid "failed to preserve ownership for %s" +msgstr "nie uda³o siê zachowaæ w³asno¶ci %s" + +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "%s to nieznany typ pliku" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "zachowanie czasu %s" + +#: src/copy.c:1531 +#, c-format +msgid "failed to preserve authorship for %s" +msgstr "nie uda³o siê zachowaæ autorstwa %s" + +#: src/copy.c:1549 +#, c-format +msgid "setting permissions for %s" +msgstr "nie mo¿na ustawiæ uprawnieñ do %s" + +#: src/copy.c:1571 src/ln.c:326 +#, c-format +msgid "cannot un-backup %s" +msgstr "nie mo¿na przywróciæ kopii zapasowej %s" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s -> %s (przywrócenie kopii zapasowej)\n" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "Torbjorn Granlund, David MacKenzie i Jim Meyering" + +#: src/cp.c:164 src/mv.c:311 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"Sk³adnia: %s [OPCJA]... ¬RÓD£O CEL\n" +" albo: %s [OPCJA]... ¬RÓD£O... KATALOG\n" +" albo: %s [OPCJA]... --target-directory=KATALOG ¬RÓD£O...\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Skopiowanie ¬RÓD£A do CELU lub ¬RÓD£A/¬RÓDE£ do KATALOGU.\n" +"\n" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" +"Argumenty obowi±zkowe dla opcji d³ugich obowi±zuj± równie¿ dla krótkich.\n" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" +" -a, --archive to samo co -dpR\n" +" --backup[=TRYB] robienie kopii zapasowej ka¿dego " +"istniej±cego\n" +" pliku docelowego\n" +" -b jak --backup, ale bez podawania argumentu\n" +" --copy-contents kopiowanie zawarto¶ci pliku specjalnego w\n" +" przypadku rekursji\n" +" -d to samo co --no-dereference --preserve=link\n" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" +" --no-dereference bez rozwi±zywania dowi±zañ symbolicznych\n" +" -f, --force kasowanie istniej±cych plików docelowych " +"je¿eli\n" +" nie daj± siê otworzyæ\n" +" -i, --interactive pytanie przed zamazaniem\n" +" -H rozwi±zywanie argumentów - dowi±zañ symb.\n" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" +" -l, --link dowi±zywanie plików zamiast kopiowania\n" +" -L, --dereference rozwi±zywanie wszystkich dowi±zañ " +"symbolicznych\n" +" -p to samo co --preserve=mode,ownership," +"timestamps\n" +" --preserve[=LISTA_ATR] zachowanie podanych atrybutów, je¿eli to\n" +" mo¿liwe (domy¶lnie: mode (uprawnienia),\n" +" ownership (w³a¶ciciel, grupa), timestamps\n" +" (czasy); je¿eli mo¿liwe, to dodatkowych\n" +" atrybutów: links (dowi±zania), all " +"(wszystkie))\n" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" +" --no-preserve=LISTA_ATR bez zachowania podanych atrybutów\n" +" --parents dodanie ¶cie¿ki ¼ród³owej do KATALOGU\n" +" -P to samo co `--no-dereference'\n" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" +" -R, -r, --recursive kopiowanie rekursywnie podkatalogów\n" +" --remove-destination usuniêcie ka¿dego istniej±cego pliku " +"docelowego\n" +" przed prób± jego otwarcia (por. z --force)\n" + +#: src/cp.c:209 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +" --reply={yes,no,query} odpowied¼ na pytania o istniej±cy plik " +"docelowy\n" +" --sparse=GDY sterowanie tworzeniem plików rzadkich\n" +" --strip-trailing-slashes skasowanie ewentualnych koñcowych uko¶ników " +"z\n" +" nazw argumentów ¬RÓD£OWYCH\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" +" -s, --symbolic-link dowi±zywanie symboliczne zamiast kopiowania\n" +" -S, --suffix=ROZSZERZENIE zmiana domy¶lnego rozszerz. kopii zapasowej\n" +" --target-directory=KATALOG przeniesienie wszystkich ¬RÓDE£ do " +"KATALOGU\n" + +#: src/cp.c:221 +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +" -u, --update kopiowanie tylko plików, dla których ¬RÓD£O\n" +" jest nowsze ni¿ CEL albo brakuje CELU\n" +" -v, --verbose wyja¶nianie co siê dzieje\n" +" -x, --one-file-system pozostanie w jednym systemie plików\n" +"\n" + +#: src/cp.c:230 +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +"\n" +"Domy¶lnie pliki rzadkie s± wykrywane prost± heurystyk± i odpowiedni\n" +"plik CEL jest tworzony te¿ jako rzadki. Takie zachowanie jest wybierane\n" +"przez --sparse=auto. Podaj --sparse=always (zawsze) ¿eby utworzyæ rzadki\n" +"plik CEL zawsze gdy plik ¬RÓD£OWY zawiera wystarczaj±co d³ug± sekwencjê " +"zer.\n" +"U¿yj --sparse=never (nigdy) ¿eby zakazaæ tworzenia plików rzadkich.\n" +"\n" + +#: src/cp.c:239 +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"Rozszerzenie nazwy kopii zapasowej to `~', je¿eli nie jest ustawione\n" +"inaczej przez --suffix albo SIMPLE_BACKUP_SUFFIX. Sterowanie wersjami mo¿e " +"byæ\n" +"ustawione przez opcjê --backup albo przez zmienn± ¶rodowiska " +"VERSION_CONTROL.\n" +"Mo¿liwe warto¶ci:\n" +"\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +" none, off nigdy nie s± tworzone kopie zapasowe (nawet gdy jest " +"podana\n" +" opcja --backup)\n" +" numbered, t tworzenie numerowanych kopii zapasowych\n" +" existing, nil numerowane je¿eli takie ju¿ istniej±, je¿eli nie - proste\n" +" simple, never tworzenie zawsze prostych kopii zapasowych\n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +"W przypadku specjalnym cp robi kopiê zapasow± ¬RÓD£A je¿eli s± podane\n" +"opcje force i backup, a ¬RÓD£O i CEL s± t± sam± nazw± istniej±cego pliku\n" +"zwyk³ego\n" + +#: src/cp.c:325 +#, c-format +msgid "failed to preserve times for %s" +msgstr "nie uda³o siê zachowaæ czasu %s" + +#: src/cp.c:349 +#, c-format +msgid "failed to preserve permissions for %s" +msgstr "nie uda³o siê zachowaæ uprawnieñ do %s" + +#: src/cp.c:434 +#, c-format +msgid "cannot make directory %s" +msgstr "nie mo¿na utworzyæ katalogu %s" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +msgid "missing file argument" +msgstr "brakuj±cy argument plikowy" + +#: src/cp.c:498 +msgid "missing destination file" +msgstr "brakuj±cy plik docelowy" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "dostêp do %s" + +#: src/cp.c:546 +#, c-format +msgid "%s: specified target is not a directory" +msgstr "%s: podany CEL nie jest katalogiem" + +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "kopiowanie wielu plików, ostatni argument %s nie jest katalogiem" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "je¿eli s± zachowane ¶cie¿ki, ostatni argument musi byæ katalogiem" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"uwaga: opcja --version-control (-V) jest przestarza³a i zostanie usuniêta\n" +"w jednej z nastêpnych wersji. U¿ywaj --backup=%s ." + +#: src/cp.c:972 src/ln.c:464 +msgid "symbolic links are not supported on this system" +msgstr "ten system nie ma dowi±zañ symbolicznych" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "nie mo¿na zrobiæ dowi±zania symbolicznego i zwyk³ego równocze¶nie" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "rodzaj kopii zapasowej" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "Stuart Kemp i David MacKenzie" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "b³±d czytania" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "dane wej¶ciowe zniknê³y" + +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s: numer linii spoza zakresu" + +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: `%s': numer linii spoza zakresu" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr " przy powtórzeniu %d\n" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s: `%s': nie pasuje" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "b³±d szukania wyra¿enia regularnego" + +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "b³±d pisania dla `%s'" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "%s: po ograniczniku oczekiwano `+' albo `-'" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s: po `%c' oczekiwano liczby ca³kowitej" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "%s: '}' jest wymagany w liczniku powtórzeñ" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "%s}: miêdzy `{' a `}' musi byæ liczba ca³kowita" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s: brak zamykaj±cego ogranicznika `%c'" + +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: b³êdne wyra¿enie regularne: %s" + +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "%s: b³êdny wzorzec" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s: numer linii musi byæ wiêkszy od zera" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "numer linii `%s' jest mniejszy ni¿ numer linii poprzedzaj±cej, %s" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "uwaga: numer linii `%s' jest taki sam jak numer linii poprzedzaj±cej" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "brak okre¶lenia konwersji w rozszerzeniu" + +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "b³êdne okre¶lenie konwersji w rozszerzeniu: %c" + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "b³êdne okre¶lenie konwersji w rozszerzeniu: \\%.3o" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "brak okre¶lenia konwersji %% w rozszerzeniu" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "za du¿o okre¶leñ konwersji %% w rozszerzeniu" + +#: src/csplit.c:1441 +#, c-format +msgid "%s: invalid number" +msgstr "%s: b³êdna liczba" + +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "Sk³adnia: %s [OPCJA]... PLIK WZORZEC...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" +"Zapisanie kawa³ków PLIKU oddzielonych przez WZORCE do plików `xx01', " +"`xx02',\n" +"..., i podanie liczby bajtów w ka¿dym kawa³ku na standardowym wyj¶ciu.\n" +"\n" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" +" -b, --suffix-format=FORMAT u¿ycie FORMATU sprintf zamiast %d\n" +" -f, --prefix=PRZEDROSTEK u¿ycie PRZEDROSTKA zamiast `xx'\n" +" -k, --keep-files bez kasowania plików wyj¶ciowych w razie " +"b³êdów\n" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" +" -n, --digits=CYFRY u¿ycie podanej liczby CYFR zamiast dwóch\n" +" -s, --quiet, --silent bez podawania liczby bajtów w plikach " +"wyj¶ciowych\n" +" -z, --elide-empty-files usuniêcie pustych plików wyj¶ciowych\n" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" +"\n" +"Je¿eli PLIK to -, czytane jest standardowe wej¶cie. Mo¿liwe WZORCE:\n" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" +"\n" +" LICZBA_CA£KOWITA kopiowanie do podanej linii o numerze " +"LICZBA_CA£KOWITA,\n" +" oprócz tej linii\n" +" /REGEXP/[PRZESUNIÊCIE] kopiowanie do pasuj±cej linii, oprócz tej linii\n" +" %REGEXP%[PRZESUNIÊCIE] przeskoczenie do pasuj±cej linii, ale bez niej " +"samej\n" +" {LICZBA_CA£KOWITA} powtórzenie poprzedniego wzorca podan± liczbê " +"razy\n" +" {*} powtórzenie poprzedniego wzorca tyle razy ile siê " +"da\n" +"\n" +"PRZESUNIÊCIE linii musi siê sk³adaæ z `+' albo `-' oraz liczby ca³kowitej.\n" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie i Jim Meyering" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "Sk³adnia: %s [OPCJA]... [PLIK]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" +"Wypisywanie wybranych czê¶ci linii z ka¿dego PLIKU na standardowe wyj¶cie.\n" +"\n" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" +" -b, --bytes=LISTA wypisanie tylko tych bajtów\n" +" -c, --characters=LISTA wypisanie tylko tych znaków\n" +" -d, --delimiter=OGRANICZNIK u¿ycie OGRANICZNIKA zamiast TABa jako " +"separatora\n" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" +" -f, --fields=LISTA wypisanie tylko tych pól oraz linii, które nie\n" +" zawieraj± znaku ogranicznika, chyba ¿e podana " +"jest\n" +" opcja -s\n" +" -n (ignorowane)\n" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" +" -s, --only-delimited bez wypisywania linii nie zawieraj±cych " +"ogranicznika\n" +" --output-delimiter=£AÑCUCH u¿ycie £AÑCUCHA jako separatora danych\n" +" wyj¶ciowych, domy¶lnie u¿ywany jest separator\n" +" danych wej¶ciowych\n" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"U¿yæ mo¿na tylko jednej opcji z -b, -c i -f. Ka¿da LISTA sk³ada siê z\n" +"jednego zakresu lub wielu zakresów oddzielonych przecinkami. Ka¿dy zakres\n" +"to:\n" +"\n" +" N N-ty bajt, znak lub pole, liczone od 1\n" +" N- od N-tego bajtu, znaku lub pola do koñca linii\n" +" N-M od N-tego do M-tego (w³±cznie) bajtu, znaku lub pola\n" +" -M od pierwszego do M-tego (w³±cznie) bajtu, znaku lub pola\n" +"\n" +"Je¿eli PLIK nie jest podany lub PLIK to -, czytane jest standardowe " +"wej¶cie.\n" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "b³êdna lista bajtów lub pól" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "mo¿na podaæ tylko jeden typ listy" + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "brakuj±ca lista pozycji" + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "brakuj±ca lista pól" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "ogranicznik musi byæ pojedynczym znakiem" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "musisz podaæ listê bajtów, znaków albo pól" + +#: src/cut.c:720 +msgid "an input delimiter may be specified only when operating on fields" +msgstr "ogranicznik mo¿e byæ podany tylko dla operacji na polach" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" +"blokowanie wy¶wietlania linii bez ograniczników jest sensowne\n" +"\ttylko dla operacji na polach" + +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" +"Sk³adnia: %s [OPCJA]... [+FORMAT]\n" +" albo: %s [-u|--utc|--universal] [MMDDggmm[[CC]RR][.ss]]\n" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" +"Wy¶wietla aktualny czas w podanym FORMACIE lub ustawia datê systemow±.\n" +"\n" +" -d, --date=£AÑCUCH wy¶wietla czas podany w £AÑCUCHU, nie aktualny\n" +" -f, --file=PLIKDAT jak --date dla ka¿dej linii PLIKU DAT\n" +" -ICZAS, --iso-8601[=CZAS] wy¶wietla czas w formacie zgodnym z ISO-" +"8601,\n" +" je¶li CZAS=`date' (data) - wy¶wietla tylko datê,\n" +" je¶li `hours' (godziny), `minutes' (minuty) lub\n" +" `seconds' (sekundy) - datê oraz czas z ¿±dan±\n" +" precyzj±\n" +" Brak parametru CZAS oznacza to samo co `date'.\n" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" +" -r, --reference=PLIK wy¶wietla czas ostatniej modyfikacji PLIKU\n" +" -R, --rfc-822 wy¶wietla datê zgodnie z RFC-822\n" +" -s, --set=£AÑCUCH ustawia czas podany w £AÑCUCHU\n" +" -u, --utc, --universal wy¶wietla lub ustawia czas uniwersalny\n" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" +"\n" +"FORMAT okre¶la wyj¶cie. Jako druga opcja mo¿e siê pojawiaæ jedynie\n" +"opcja wskazuj±ca na u¿ycie czasu uniwersalnego. Rozpoznawane sekwencje:\n" +"\n" +" %% literalny znak procenta %\n" +" %a lokalny skrót nazwy dnia tygodnia (pon...nie)\n" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" +" %A lokalna pe³na nazwa dnia tygodnia (poniedzia³ek...niedziela)\n" +" %b lokalny skrót nazwy miesi±ca (sty...gru)\n" +" %B lokalna pe³na nazwa miesi±ca (styczeñ...grudzieñ)\n" +" %c lokalna data i czas (pon sty 04 12:02:33 CET 1989)\n" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" +" %C stulecie (rok podzielony przez 100 i obciêty do liczby ca³kowitej) " +"[00-99]\n" +" %d dzieñ miesi±ca (01..31)\n" +" %D data (mm/dd/rr)\n" +" %e dzieñ miesi±ca uzupe³niony spacjami ( 1...31)\n" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" +" %F to samo co %Y-%m-%d\n" +" %g 2-cyfrowy rok odpowiadaj±cy numerowi tygodnia %V\n" +" %G 4-cyfrowy rok odpowiadaj±cy numerowi tygodnia %V\n" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" +" %h to samo co %b\n" +" %H godzina (00...23)\n" +" %I godzina (01...12)\n" +" %j dzieñ roku (001...366)\n" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" +" %k godzina ( 0...23)\n" +" %l godzina ( 1...12)\n" +" %m miesi±c (01...12)\n" +" %M minuta (00...59)\n" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" +" %n znak nowej linii\n" +" %N nanosekundy (000000000..999999999)\n" +" %p lokalny odpowiednik AM lub PM (w wielu lokalizacjach pusty)\n" +" %P lokalny odpowiednik am lub pm (w wielu lokalizacjach pusty)\n" +" %r czas w formacie 12-godzinnym (gg:mm:ss [AP]M)\n" +" %R czas w formacie 24-godzinnym (gg:mm)\n" +" %s liczba sekund od 00:00:00, 1 stycznia 1970 (rozszerzenie GNU)\n" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" +" %S sekunda (00...60); 60 oznacza sekundê przestêpn±\n" +" %t tabulator poziomy\n" +" %T czas w formacie 24-godzinnym (gg:mm:ss)\n" +" %u dzieñ tygodnia (1..7); 1 to poniedzia³ek\n" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" +" %U numer tygodnia w roku, niedziela zaczyna tydzieñ (00...53)\n" +" %V numer tygodnia w roku, poniedzia³ek zaczyna tydzieñ (01...53)\n" +" %w numer dnia tygodnia (0...6), 0 oznacza niedzielê\n" +" %W numer tygodnia w roku, poniedzia³ek zaczyna tydzieñ (00...53)\n" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" +" %x lokalna reprezentacja daty (rrrr.mm.dd)\n" +" %X lokalna reprezentacja czasu (%H:%M:%S)\n" +" %y dwie ostatnie cyfry roku (00...99)\n" +" %Y rok (1970...)\n" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" +" %z strefa czasowa w formacie RFC-822 (-0500) (rozszerzenie " +"niestandardowe)\n" +" %Z strefa czasowa (np. EDT) lub nic, je¶li nie mo¿na ustaliæ\n" +"\n" +"Domy¶lnie date dope³nia pola numeryczne zerami. GNU date rozpoznaje\n" +"poni¿sze modyfikatory pomiêdzy `%' a dyrektyw± numeryczn±:\n" +"\n" +" `-' (kreska) nie dope³nia zerami\n" +" `_' (pokre¶lenie) dope³nia spacjami\n" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "standardowe wej¶cie" + +#: src/date.c:268 src/date.c:460 +#, c-format +msgid "invalid date `%s'" +msgstr "b³êdna data: `%s'" + +#: src/date.c:364 +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "opcje specyfikuj±ce daty do wy¶wietlenia wzajemnie siê wykluczaj±" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "opcje wy¶wietlaj±ce i ustawiaj±ce czas nie mog± byæ u¿ywane razem" + +#: src/date.c:377 +#, c-format +msgid "too many non-option arguments: %s%s" +msgstr "za du¿o argumentów nie bêd±cych opcjami: %s%s" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" +"brak znaku `+' na pocz±tku argumentu `%s';\n" +"Je¶li u¿yto opcji okre¶laj±cych datê/y, ka¿dy argument nie bêd±cy\n" +"opcj± musi byæ ³añcuchem formatuj±cym i zaczynaæ siê od `+'" + +#: src/date.c:397 +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "nie mo¿na podawaæ formatu, je¿eli u¿yta jest opcja --rfc-822 (-R)" + +#: src/date.c:433 +msgid "undefined" +msgstr "niezdefiniowane" + +#: src/date.c:435 +msgid "cannot get time of day" +msgstr "nie mo¿na pobraæ aktualnego czasu" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "ustawienie daty niemo¿liwe" + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "Paul Rubin, David MacKenzie i Stuart Kemp" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "Sk³adnia: %s [OPCJA]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" +"Kopiowanie pliku z przekszta³caniem i formatowaniem zgodnie z opcjami.\n" +"\n" +" bs=BAJTÓW wymuszenie ibs=BAJTÓW i obs=BAJTÓW\n" +" cbs=BAJTÓW przekszta³cenie tylu BAJTÓW za jednym razem\n" +" conv=S£OWA_KL przekszta³cenie pliku wg listy s³ów kluczowych\n" +" oddzielonych przecinkami\n" +" count=BLOKÓW skopiowanie tylko tyle BLOKÓW z wej¶cia\n" +" ibs=BAJTÓW czytanie tylu BAJTÓW naraz\n" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" +" if=PLIK czytanie z PLIKU zamiast ze standardowego wej¶cia\n" +" obs=BAJTÓW zapisanie tylu BAJTÓW naraz\n" +" of=PLIK zapisanie do PLIKU zamiast do standardowego wyj¶cia\n" +" seek=BLOKÓW przeskoczenie tylu BLOKÓW o rozmiarze ibs na wyj¶ciu\n" +" skip=BLOKÓW przeskoczenie tylu BLOKÓW o rozmiarze ibs na wej¶ciu\n" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" +"\n" +"BLOKI i BAJTY mog± mieæ nastêpuj±ce przyrostki mno¿±ce:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, itd. dla T, P, E, Z, Y.\n" +"Ka¿de S£OWO_KL mo¿e byæ:\n" +"\n" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" +" ascii z EBCDIC do ASCII\n" +" ebcdic z ASCII do EBCDIC\n" +" ibm z ASCII do zmienionego EBCDIC\n" +" block wyrównanie rekordów zakoñczonych znakami nowej linii spacjami\n" +" do rozmiaru cbs\n" +" unblock zamiana koñcowych spacji w rekordach o rozmiarze cbs na znak\n" +" nowej linii\n" +" lcase zamiana wielkich liter na ma³e\n" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" +" notrunc bez skrócenia pliku wyj¶ciowego\n" +" ucase zamiana ma³ych liter na wielkie\n" +" swab zamiana ka¿dej pary bajtów\n" +" noerror kontynuowanie mimo b³êdów czytania\n" +" sync dope³nienie ka¿dego bloku wej¶ciowego zerami do rozmiaru ibs,\n" +" je¿eli u¿yte z block albo unblock, dope³nienie spacjami\n" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "%s+%s rekordów wczytanych\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "%s+%s rekordów zapisanych\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "obciêty rekord" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "obciête rekordy" + +#: src/dd.c:382 +#, c-format +msgid "closing input file %s" +msgstr "zamykanie pliku wej¶ciowego %s" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "zamkniêcie pliku wyj¶ciowego %s" + +#: src/dd.c:469 +#, c-format +msgid "writing to %s" +msgstr "zapis do %s" + +#: src/dd.c:501 +#, c-format +msgid "invalid conversion: %s" +msgstr "b³êdna konwersja: %s" + +#: src/dd.c:557 +#, c-format +msgid "unrecognized option %s" +msgstr "nierozpoznana opcja %s" + +#: src/dd.c:610 +#, c-format +msgid "unrecognized option %s=%s" +msgstr "nierozpoznana opcja %s=%s" + +#: src/dd.c:616 +#, c-format +msgid "invalid number %s" +msgstr "b³êdna liczba %s" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"tylko po jednym przekszta³ceniu ze zbiorów {ascii,ebcdic,ibm}, {lcase," +"ucase}, {block,unblock}, {unblock,sync}" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" +"uwaga: ominiêcie b³êdu dzia³ania lseek w j±drze dla pliku (%s)\n" +" o mt_type=0x%0lx - zobacz listê typów w " + +#: src/dd.c:1170 src/dd.c:1188 +#, c-format +msgid "opening %s" +msgstr "otwieranie %s" + +#: src/dd.c:1196 +msgid "file offset out of range" +msgstr "pozycja w pliku spoza zakresu" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "zmiana d³ugo¶ci na %s bajtów w pliku wyj¶ciowym %s" + +#: src/df.c:49 +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "Torbjorn Granlund, David MacKenzie, Larry McVoy i Paul Eggert" + +#: src/df.c:153 +msgid "Filesystem Type" +msgstr "System plików Typ" + +#: src/df.c:155 +msgid "Filesystem " +msgstr "System plików " + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr " iwêz³y u¿yteI wolneI %%u¿.I" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " rozm. u¿yte dost. %%u¿." + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " rozm. u¿yte dost. %%u¿." + +#: src/df.c:167 +#, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr " bl.%4s-B u¿yte dostêpne pojemno¶æ" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr " bl.%4s B u¿yte dostêpne %%u¿." + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr " zamont. na\n" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" +"Pokazuje informacje o systemie plików, w którym jest ka¿dy z PLIKÓW, " +"domy¶lnie\n" +"o wszystkich systemach plików.\n" +"\n" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" +" -a, --all pokazanie równie¿ systemów plików maj±cych 0 bloków\n" +" -B, --block-size=ROZM u¿ycie bloków o podanym ROZMIARZE\n" +" -h, --human-readable rozmiary w formacie dla ludzi (np. 1K 234M 2G)\n" +" -H, --si podobnie, ale z u¿yciem potêg 1000, nie 1024\n" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" +" -i, --inodes wypisanie informacji o i-wêz³ach zamiast o blokach\n" +" -k jak --block-size=1K\n" +" -l, --local ograniczenie do lokalnych systemów plików\n" +" --no-sync bez wywo³ania sync przez pobraniem informacji o\n" +" systemach plików (domy¶lnie)\n" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" +" -P, --portability u¿ycie formatu zgodnego z POSIX-em\n" +" --sync wywo³anie sync przed pobraniem informacji\n" +" -t, --type=TYP pokazanie tylko systemów plików tego TYPU\n" +" -T, --print-type wypisanie typów systemów plików\n" +" -x, --exclude-type=TYP pokazanie tylko systemów plików nie tego TYPU\n" +" -v (ignorowane)\n" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" +"\n" +"ROZMIAR mo¿e byæ podany jako (opcjonalnie jako liczba ca³kowita z\n" +"przyrostkiem): kB 1000, K 1024, MB 1000000, M 1048576 itd. dla G, T, P, E,\n" +"Z, Y.\n" + +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "typ systemu plików %s równocze¶nie wybrany i wykluczony" + +#: src/df.c:903 +msgid "Warning: " +msgstr "Uwaga: " + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "%snie mo¿na przeczytaæ tablicy zamontowanych systemów plików" + +#: src/dircolors.c:103 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "Sk³adnia: %s [OPCJA]... [PLIK]\n" + +#: src/dircolors.c:104 +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"Wypisanie poleceñ ustawiaj±cych zmienn± ¶rodowiskow± LS_COLORS.\n" +"\n" +"Ustalenie formatu:\n" +" -b, --sh, --bourne-shell w kodzie pow³oki Bourne'a\n" +" -c, --csh, --c-shell w kodzie pow³oki C\n" +" -p, --print-database wypisanie warto¶ci domy¶lnych\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" +"\n" +"Je¿eli jest podany PLIK, jest czytany dla okre¶lenia jakie kolory s± u¿yte\n" +"z jakimi rozszerzeniami. W przeciwnym wypadku u¿yta jest wkompilowana baza\n" +"danych. Szczegó³y formatu tych plików mo¿na zobaczyæ przez\n" +"`dircolors --print-database'.\n" + +#: src/dircolors.c:299 +#, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s:%lu: b³êdna linia, brakuje drugiego s³owa" + +#: src/dircolors.c:371 +#, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s:%lu: nierozpoznane s³owo kluczowe %s" + +#: src/dircolors.c:372 +msgid "" +msgstr "" + +#: src/dircolors.c:467 +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" +"opcje w³±czaj±ce wy¶wietlanie wewnêtrznej bazy dircolors i wybranie sk³adni\n" +"pow³oki wykluczaj± siê wzajemnie" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" +"z opcj± wypisuj±c± wewnêtrzn± bazê dircolors nie mo¿e byæ u¿yty ¿aden\n" +"argument PLIKOWY" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "Brak zmiennej ¶rodowiskowej SHELL i opcji typu pow³oki" + +#: src/dirname.c:33 src/pathchk.c:59 +msgid "David MacKenzie and Jim Meyering" +msgstr "David MacKenzie i Jim Meyering" + +#: src/dirname.c:46 +#, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"Sk³adnia: %s NAZWA\n" +" albo: %s OPCJA\n" + +#: src/dirname.c:51 +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" +"Wy¶wietlenie NAZWY bez ostatniego /sk³adnika; je¶li NAZWA nie zawiera " +"znaków\n" +"`/', wy¶wietla `.' (co oznacza katalog bie¿±cy).\n" +"\n" + +#: src/du.c:49 +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert i Jim Meyering" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" +"Podsumowuje zajêto¶æ dysku przez ka¿dy PLIK, rekursywnie dla katalogów.\n" +"\n" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" +" -a, --all podanie podliczenia dla plików, nie samych " +"katalogów\n" +" --apparent-size podanie rozmiarów pozornych zamiast zu¿ycia dysku;\n" +" chocia¿ rozmiar pozorny jest zwykle mniejszy, " +"mo¿e\n" +" byæ te¿ wiêkszy z powodu dziur (plików rzadkich -\n" +" sparse), wewnêtrznej fragmentacji, bloków " +"po¶rednich\n" +" itp.\n" +" -B, --block-size=ROZM u¿ycie bloków o podanym ROZMIARZE w bajtach\n" +" -b, --bytes równowa¿ne `--apparent-size --block-size=1'\n" +" -c, --total wypisanie podsumowania ca³o¶ci\n" +" -D, --dereference-args rozwijanie PLIKÓW - dowi±zañ symbolicznych\n" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" +" -h, --human-readable rozmiary w formacie czytelnym dla ludzi (np. 1K " +"234M\n" +" 2G)\n" +" -H, --si podobnie, ale z u¿yciem potêg 1000, nie 1024\n" +" -k, --kilobytes to samo co --block-size=1K\n" +" -l, --count-links liczenie rozmiaru wielokrotnie je¿eli plik ma\n" +" dowi±zania zwyk³e\n" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" +" -L, --dereference rozwiniêcie wszystkich dowi±zañ symbolicznych\n" +" -S, --separate-dirs bez uwzglêdniania rozmiarów katalogów\n" +" -s, --summarize wypisanie tylko podsumowañ dla ka¿dego argumentu\n" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" +" -x, --one-file-system ominiêcie katalogów bêd±cych w innych systemach " +"plików\n" +" -X PLIK, --exclude-from=PLIK pominiêcie plików pasuj±cych do wzorców w " +"PLIKU\n" +" --exclude=WZÓR pominiêcie plików pasuj±cych do WZORU\n" +" --max-depth=N wypisanie podsumowania dla katalogu (lub pliku -\n" +" z --all) tylko je¿eli jest N lub mniej poziomów\n" +" poni¿ej podanego jako argument komendy;\n" +" --max-depth=0 jest tym samym co -summarize\n" + +#: src/du.c:337 +#, c-format +msgid "cannot change to parent of directory %s" +msgstr "nie mo¿na przej¶æ do katalogu nadrzêdnego %s" + +#: src/du.c:345 +#, c-format +msgid "cannot change to directory %s" +msgstr "nie mo¿na przej¶æ do katalogu %s" + +#: src/du.c:352 +#, c-format +msgid "cannot read directory %s" +msgstr "nie mo¿na przeczytaæ katalogu %s" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "razem" + +#: src/du.c:641 +#, c-format +msgid "invalid maximum depth %s" +msgstr "b³êdny maksymalny poziom zag³êbienia %s" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "nie mo¿na równocze¶nie tylko podsumowaæ i wypisaæ wszystkich danych" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "uwaga: --summarize jest tym samym co --max-depth=0" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "uwaga: --summarize nie mo¿e byæ u¿yte razem z --max-depth=%d" + +#: src/echo.c:77 +#, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "Sk³adnia: %s [OPCJA]... [£AÑCUCH]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" +"Wy¶wietlenie £AÑCUCHA(ÓW) na standardowym wyj¶ciu.\n" +"\n" +" -n bez wy¶wietlania znaku nowej linii na koñcu\n" +" -e w³±czenie interpretacji sekwencji steruj±cych, podanych " +"ni¿ej\n" +" -E wy³±czenie interpretacji tych sekwencji w £AÑCUCHACH\n" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" +"\n" +"Je¶li nie podano opcji -E, rozpoznawane i interpretowane s± poni¿sze " +"sekwencje:\n" +"\n" +" \\NNN znak o kodzie ASCII wynosz±cym NNN (ósemkowo)\n" +" \\\\ uko¶nik odwrotny (ang. backslash)\n" +" \\a dzwonek (BEL)\n" +" \\b znak cofania (ang. backspace)\n" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\c bez wy¶wietlania znaku nowej linii\n" +" \\f wysuniêcie strony\n" +" \\n znak nowej linii\n" +" \\r znak powrotu karetki (CR)\n" +" \\t tabulator poziomy\n" +" \\v tabulator pionowy\n" + +#: src/env.c:93 +msgid "Richard Mlynarik and David MacKenzie" +msgstr "Richard Mlynarik i David MacKenzie" + +#: src/env.c:119 +#, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "" +"Sk³adnia: %s [OPCJA]... [-] [NAZWA=WARTO¦Æ]... [POLECENIE [ARGUMENT]...]\n" + +#: src/env.c:122 +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" +"Ustawienie ka¿dej zmiennej ¶rodowiskowej NAZWA warto¶ci WARTO¦Æ i wykonanie\n" +"POLECENIA.\n" +"\n" +" -i, --ignore-environment zaczêcie z pustym ¶rodowiskiem\n" +" -u, --unset=NAZWA usuniêcie zmiennej ze ¶rodowiska\n" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" +"\n" +"Argument - implikuje -i. Je¶li nie podano POLECENIA, wy¶wietla otrzymane " +"¶rodowisko.\n" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Zamiana TAB-ów we wszystkich PLIKACH na spacje, wynik na standardowym " +"wyj¶ciu.\n" +"Je¿eli PLIK nie jest podany lub PLIK to -, czytane jest standardowe " +"wej¶cie.\n" +"\n" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" +" -i, --initial bez zamiany TABów po znaku innym ni¿ odstêp\n" +" -t, --tabs=ILE u¿ycie TABów co ILE znaków, nie co 8\n" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" +" -t, --tabs=LISTA u¿ycie listy pozycji TABów oddzielanych przecinkami\n" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "rozmiar TABa zawiera b³êdny znak" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "rozmiar TABa nie mo¿e wynosiæ 0" + +# sizes or positions? - rzm +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "kolejne pozycje TABa musz± rosn±æ" + +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "opcja `-LIST' jest przestarza³a, nale¿y u¿ywaæ `-t LISTA'" + +#: src/expr.c:90 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"Sk³adnia: %s WYRA¯ENIE\n" +" albo: %s OPCJA\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" +"\n" +"Wypisanie warto¶ci WYRA¯ENIA na standardowym wyj¶ciu. Puste linie poni¿ej\n" +"rozdzielaj± grupy o wzrastaj±cym pierwszeñstwie. WYRA¯ENIE ma postaæ:\n" +"\n" +" ARG1 | ARG2 ARG1 je¶li nie jest pusty ani równy 0, inaczej ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 je¶li ¿aden argument nie jest pusty ani 0, inaczej " +"0\n" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" +"\n" +" ARG1 < ARG2 ARG1 jest mniejszy od ARG2\n" +" ARG1 <= ARG2 ARG1 jest mniejszy lub równy ARG2\n" +" ARG1 = ARG2 ARG1 jest równy ARG2\n" +" ARG1 != ARG2 ARG1 nie jest równy ARG2\n" +" ARG1 >= ARG2 ARG1 jest wiêkszy lub równy ARG2\n" +" ARG1 > ARG2 ARG1 jest wiêkszy od ARG2\n" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" +"\n" +" ARG1 + ARG2 arytmetyczna suma ARG1 i ARG2\n" +" ARG1 - ARG2 arytmetyczna ró¿nica ARG1 i ARG2\n" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" +"\n" +" ARG1 * ARG2 arytmetyczny iloczyn ARG1 i ARG2\n" +" ARG1 / ARG2 arytmetyczny iloraz ARG1 przez ARG2\n" +" ARG1 % ARG2 arytmetyczna reszta z dzielenia ARG1 przez ARG2\n" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" +"\n" +" £AÑCUCH : WYR_REG dopasowanie wyra¿enia regularnego WYR_REG do £AÑCUCHA\n" +"\n" +" match £AÑCUCH WYR_REG tak jak £AÑCUCH : WYR_REG\n" +" substr £AÑCUCH POZ D£UGO¦Æ czê¶æ £AÑCUCHA na POZYCJI liczonej od 1\n" +" index £AÑCUCH ZNAKI\t po³o¿enie jednego ze ZNAKÓW w £AÑCUCHU, lub 0\n" +" length £AÑCUCH d³ugo¶æ £AÑCUCHA\n" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" +" + S£OWO S£OWO interpretowane jako ³añcuch znaków,\n" +" nawet je¿eli jest to s³owo kluczowe, jak\n" +" `match' albo operator jak '/'\n" +"\n" +" ( WYRA¯ENIE ) warto¶æ WYRA¯ENIA\n" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" +"\n" +"Wiêkszo¶æ operatorów musi byæ chroniona przed interpretacj± przez pow³okê\n" +"znakiem `\\' lub cudzys³owami. Porównania s± arytmetyczne, je¶li obydwa\n" +"ARGUMENTY s± liczbami, w przeciwnym wypadku - leksykograficzne.\n" +"Dopasowania zwracaj± ³añcuch zgodny ze wzorcem zawartym pomiêdzy \\( i \\)\n" +"lub 0; je¶li \\( i \\) nie zosta³y u¿yte, dopasowanie zwraca liczbê " +"zgodnych\n" +"znaków lub 0.\n" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +msgid "syntax error" +msgstr "b³±d sk³adni" + +# trochê niezrêczne -pk +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" +"uwaga: nieprzeno¶ne PWR (Basic Regular Expression): `%s': u¿ycie `^' jako\n" +"pierwszego znaku podstawowego wyra¿enia regularnego nie jest przeno¶ne;\n" +"zignorowane" + +#: src/expr.c:586 src/expr.c:625 +msgid "non-numeric argument" +msgstr "argument nieliczbowy" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "dzielenie przez zero" + +#: src/factor.c:74 +#, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"Sk³adnia: %s [LICZBA]...\n" +" albo: %s OPCJA\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" +"Rozk³ada ka¿d± z LICZB na czynniki pierwsze.\n" +"\n" + +#: src/factor.c:85 +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" +"\n" +" Rozk³ada ka¿d± z podanych LICZB ca³kowitych na czynniki pierwsze. Je¿eli\n" +" argumenty nie s± podane, czyta je ze standardowego wej¶cia.\n" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "`%s' nie jest poprawn± dodatni± liczb± ca³kowit±" + +#: src/false.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Sk³adnia: %s [linia poleceñ jest ignorowana]\n" +" albo: %s OPCJA\n" +"Koñczy pracê z kodem b³êdu oznaczaj±cym niepowodzenie.\n" +"\n" +"Poni¿sze nazwy opcji nie maj± skrótów:\n" +"\n" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "Sk³adnia: %s [-CYFRY] [OPCJA]... [PLIK]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" +"Przeformatowanie akapitów w PLIKU(ACH), wynik na standardowym wyj¶ciu.\n" +"Je¿eli PLIK nie jest podany lub PLIK to `-', czytane jest standardowe " +"wej¶cie.\n" + +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" +" -c, --crown-margin zachowanie wciêæ w pierwszych dwóch liniach\n" +" -p, --prefix=ZNAKI ³±czenie tylko linii maj±cych przedrostek ZNAKI\n" +" -s, --split-only podzielenie d³ugich linii, ale bez wyrównania\n" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" +" -t, --tagged-paragraph wciêcie pierwszej linii inne ni¿ drugiej\n" +" -u, --uniform-spacing jedna spacja miêdzy s³owami, dwie miêdzy " +"zdaniami\n" +" -w, --width=ILE maksymalna szeroko¶æ linii (domy¶lnie 75 " +"kolumn)\n" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" +"\n" +"W -wILE mo¿na pomin±æ literê `w'.\n" + +#: src/fmt.c:345 +#, c-format +msgid "invalid width option: `%s'" +msgstr "b³êdna opcja szeroko¶ci: `%s'" + +#: src/fmt.c:385 +#, c-format +msgid "invalid width: `%s'" +msgstr "b³êdna szeroko¶æ: `%s'" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" +"£amanie linii w ka¿dym PLIKU wej¶ciowym (domy¶lnie standardowym wej¶ciu),\n" +"wynik na standardowym wyj¶ciu.\n" +"\n" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" +" -b, --bytes liczenie bajtów zamiast kolumn\n" +" -s, --spaces ³amanie na spacjach\n" +" -w, --width=SZER u¿ycie SZER kolumn zamiast 80\n" + +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "opcja `%s' jest przestarza³a, u¿ywaj `%s'" + +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "b³êdna liczba kolumn: `%s'" + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Wypisanie 10 pierwszych linii ka¿dego PLIKU na standardowym wyj¶ciu.\n" +"Dla wiêkszej liczby PLIKÓW ka¿dy kawa³ek ma nag³ówek z nazw±.\n" +"Je¿eli PLIK nie jest podany lub PLIK to -, czytane jest standardowe " +"wej¶cie.\n" +"\n" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" +" -c, --bytes=ROZMIAR wypisanie pierwszych ROZMIAR bajtów\n" +" -n, --lines=ILE wypisanie pierwszych ILE linii zamiast 10\n" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" +" -q, --quiet, --silent bez wypisywania nag³ówków z nazwami plików\n" +" -v, --verbose zawsze wypisywane s± nag³ówki z nazwami plików\n" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" +"\n" +"ROZMIAR mo¿e mieæ dodany mno¿nik: b dla 512, k dla 1 k, m dla 1 M.\n" + +#: src/head.c:190 +#, c-format +msgid "cannot reposition file pointer for %s" +msgstr "nie mo¿na zmieniæ pozycji w pliku %s" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "%s: %s jest tak du¿a, ¿e nie mo¿e zostaæ wyra¿ona" + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "liczba linii" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "liczba bajtów" + +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "b³êdna liczba linii" + +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "b³êdna liczba bajtów" + +#: src/head.c:341 +#, c-format +msgid "unrecognized option `-%c'" +msgstr "nierozpoznana opcja `-%c'" + +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "opcja `-%s' jest przestarza³a, u¿yj `-%c %.*s%.*s%s'" + +#: src/hostid.c:48 +#, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" +"Sk³adnia: %s\n" +" albo: %s OPCJA\n" +"Wy¶wietla numeryczny, szesnastkowy identyfikator tego systemu.\n" +"\n" + +#: src/hostname.c:67 +#, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" +"Sk³adnia: %s [NAZWA]\n" +" albo: %s OPCJA\n" +"Wy¶wietlenie lub ustawienie nazwy tego systemu.\n" +"\n" + +#: src/hostname.c:104 +#, c-format +msgid "cannot set hostname to `%s'" +msgstr "nie mo¿na ustawiæ nazwy systemu na `%s'" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "" +"ustawienie nazwy systemu jest niemo¿liwe; ten system nie ma takiej mo¿liwo¶ci" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "uzyskanie nazwy systemu jest niemo¿liwe" + +#: src/id.c:36 +msgid "Arnold Robbins and David MacKenzie" +msgstr "Arnold Robbins i David MacKenzie" + +#: src/id.c:87 +#, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "Sk³adnia: %s [OPCJA]... [U¯YTKOWNIK]\n" + +#: src/id.c:88 +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" +"Wy¶wietla informacjê o U¯YTKOWNIKU lub o aktualnym u¿ytkowniku.\n" +"\n" +" -a ignorowane, dla zachowania kompatybilno¶ci z innymi " +"wersjami\n" +" -g, --group wy¶wietlenie tylko efektywnego identyfikatora grupy\n" +" -G, --groups wy¶wietlenie pe³nej listy grup\n" +" -n, --name wy¶wietlenie nazw zamiast numerów, dla -ugG\n" +" -r, --real wy¶wietlenie rzeczywistego ID zamiast efektywnego, dla -" +"ugG\n" +" -u, --user wy¶wietlenie tylko efektywnego identyfikatora u¿ytkownika\n" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" +"\n" +"Bez ¿adnych OPCJI wy¶wietla zestaw u¿ytecznych informacji, które uda³o siê\n" +"zidentyfikowaæ.\n" + +#: src/id.c:162 +msgid "cannot print only user and only group" +msgstr "nie mo¿na wypisaæ tylko u¿ytkownika i tylko grupê równocze¶nie" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "" +"nie da siê wypisaæ tylko nazw lub rzeczywistych ID w domy¶lnym formacie" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "%s: Nie ma takiego u¿ytkownika" + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "nie mo¿na znale¼æ nazwy u¿ytkownika o ID %u" + +#: src/id.c:235 +#, c-format +msgid "cannot find name for group ID %u" +msgstr "nie mo¿na znale¼æ nazwy grupy o ID %u" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "uzyskanie pe³nej listy grup niemo¿liwe" + +#: src/id.c:385 +msgid " groups=" +msgstr " grupy=" + +#: src/install.c:269 +msgid "the strip option may not be used when installing a directory" +msgstr "opcja obcinania (strip) nie mo¿e byæ u¿yta przy instalowaniu katalogu" + +#: src/install.c:292 src/mkdir.c:140 +#, c-format +msgid "invalid mode %s" +msgstr "b³êdne uprawnienia %s" + +#: src/install.c:307 src/install.c:371 +#, c-format +msgid "creating directory %s" +msgstr "tworzenie katalogu %s" + +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "" +"próba instalowania wielu plików gdy ostatni argument %s nie jest katalogiem" + +#: src/install.c:435 +#, c-format +msgid "%s is a directory" +msgstr "%s jest katalogiem" + +#: src/install.c:495 +#, c-format +msgid "cannot obtain time stamps for %s" +msgstr "nie mo¿na odczytaæ czasów %s" + +#: src/install.c:507 +#, c-format +msgid "cannot set time stamps for %s" +msgstr "nie mo¿na ustawiæ czasów %s" + +#: src/install.c:528 +msgid "fork system call failed" +msgstr "nie powiiod³o siê wywo³anie systemowe fork" + +#: src/install.c:532 +msgid "cannot run strip" +msgstr "nie uda³o siê uruchomiæ strip" + +#: src/install.c:539 +msgid "strip failed" +msgstr "b³±d strip" + +#: src/install.c:560 +#, c-format +msgid "invalid user %s" +msgstr "b³êdny u¿ytkownik %s" + +#: src/install.c:578 +#, c-format +msgid "invalid group %s" +msgstr "b³êdna grupa %s" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"Sk³adnia: %s [OPCJA]... ¬RÓD£O CEL (format 1-szy)\n" +" albo: %s [OPCJA]... ¬RÓD£O... KATALOG (format 2-gi)\n" +" albo: %s -d [OPCJA]... KATALOG... (format 3-ci)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" +"W pierwszych dwóch formatach kopiowane jest ¬RÓD£O do CELU lub wiele ¬RÓDE£\n" +"do istniej±cego KATALOGU i ustawiane s± uprawnienia oraz w³a¶ciciel/grupa. " +"W\n" +"trzecim formacie tworzone s± wszystkie katalogi sk³adowe ¶cie¿ki KATALOG.\n" +"\n" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" +" --backup[=TRYB] robienie kopii zapasowej przed zamazaniem pliku\n" +" -b jak --backup, ale bez podawania argumentu\n" +" -c (ignorowane)\n" +" -d, --directory traktowanie wszystkich argumentów jako nazw " +"katalogów;\n" +" tworzenie katalogów sk³adowych podanych katalogów\n" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" +" -D tworzenie wszystkich czê¶ci sk³adowych CELU, oprócz\n" +" ostatniej, potem skopiowanie ¬RÓD£A do CELU; " +"potrzebne\n" +" w formacie 1-szym\n" +" -g, --group=GRUPA ustawienie GRUPY zamiast bie¿±cej grupy\n" +" -m, --mode=UPRAWNIENIA ustawienie UPRAWNIEÑ (jak w chmod) zamiast rwxr-" +"xr-x\n" +" -o, --owner=W£A¦CICIEL ustawienie W£A¦CICIELA (tylko super-user)\n" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" +" -p, --preserve-timestamps ustawienie plikom docelowym czasów dostêpu i\n" +" modyfikacji, jak w odpowiednich plikach ¬RÓD£OWYCH\n" +" -s, --strip skasowanie tablicy symboli, tylko w 1 i 2 formacie\n" +" -S, --suffix=ROZSZERZ zmiana domy¶lnego ROZSZERZENIA kopii zapasowej\n" +" -v, --verbose wypisanie nazwy ka¿dego tworzonego katalogu\n" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"\n" +"Rozszerzenie nazwy kopii zapasowej to `~', je¿eli nie jest ustawione\n" +"inaczej przez --suffix albo SIMPLE_BACKUP_SUFFIX. Traktowanie wersji mo¿e " +"byæ\n" +"ustawione przez opcjê --backup albo przez zmienn± ¶rodowiska " +"VERSION_CONTROL.\n" +"Mo¿liwe warto¶ci:\n" +"\n" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "Sk³adnia: %s [OPCJA]... PLIK1 PLIK2\n" + +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" +"Dla ka¿dej pary linii z identycznymi polami ³±cz±cymi wypisywana jest linia\n" +"na standardowym wyj¶ciu. Domy¶lnie pole ³±cz±ce jest pierwsze i oddzielone\n" +"odstêpem. Gdy PLIK1 albo PLIK2 (nie oba) to -, czytane jest standardowe\n" +"wej¶cie.\n" +"\n" +" -a NUMER wypisanie linii nie do pary z pliku NUMER, gdzie numer " +"to\n" +" 1 albo 2, odpowiadaj±cy PLIKOWI1 albi PLIKOWI2\n" +" -e PUSTE zamiana brakuj±cych pól na wej¶ciu na PUSTE\n" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" +" -i, --ignore-case porównuj±c pola ignoruje ró¿nice miêdzy ma³ymi i " +"wielkimi\n" +" literami\n" +" -j POLE (przestarza³e) równowa¿ne `-1 POLE -2 POLE'\n" +" -j1 POLE (przestarza³e) równowa¿ne `-1 POLE'\n" +" -j2 POLE (przestarza³e) równowa¿ne `-2 POLE'\n" +" -o FORMAT zachowanie FORMATU przy tworzeniu linii wyj¶ciowej\n" +" -t ZNAK u¿ycie ZNAKU jako separatora pól linii wej. i wyj.\n" + +#: src/join.c:165 +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" +" -v NUMER jak -a NUMER, ale bez wypisania po³±czonych linii " +"wyj¶c.\n" +" -1 POLE po³±czenie plików na tym POLU pliku 1\n" +" -2 POLE po³±czenie plików na tym POLU pliku 2\n" + +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" +"\n" +"Je¿eli nie jest podana opcja -t ZNAK, spacje na pocz±tku linii oddzielaj±\n" +"pola i s± ignorowane, w przeciwnym wypadku pola s± oddzielane przez\n" +"ZNAK. POLE jest numerem pola liczonym od 1. FORMAT to jedna lub wiêcej\n" +"specyfikacji oddzielonych przecinkami lub odstêpami, ka¿da w postaci\n" +"`NUMER.POLE' albo `0'. Domy¶lny format wypisuje pole ³±cz±ce, pozosta³e\n" +"pola z PLIKU1 i pozosta³e pola z PLIKU2, wszystkie oddzielone ZNAKIEM.\n" + +#: src/join.c:645 +#, c-format +msgid "invalid field specifier: `%s'" +msgstr "b³êdna specyfikacja pola: `%s'" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, c-format +msgid "invalid field number: `%s'" +msgstr "b³êdny numer pola: `%s'" + +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "b³êdny numer pliku w specyfikacji pola: `%s'" + +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "b³êdny numer pola dla pliku 1: `%s'" + +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "b³êdny numer pola dla pliku 2: `%s'" + +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "za du¿o argumentów nie bêd±cych opcjami" + +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "za ma³o argumentów nie bêd±cych opcjami" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "oba pliki nie mog± byæ standardowym wej¶ciem" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" +"Sk³adnia: %s [-s SYGNA£ | -SYGNA£] PID...\n" +" albo: %s -l [SYGNA£]...\n" +" albo: %s -t [SYGNA£]...\n" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" +"Wysy³a sygna³y do procesów albo pokazuje listê sygna³ów.\n" +"\n" + +#: src/kill.c:106 +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" +" -s, --signal=SYGNA£, -SYGNA£\n" +" nazwa albo numer SYGNA£U do wys³ania\n" +" -l, --list lista nazw sygna³ów albo konwersja nazw na/z numery\n" +" -t, --table tablica informacji o sygna³ach\n" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" +"\n" +"SYGNA£ mo¿e byæ podany przez nazwê jak `HUP' albo numer jak `1' albo jako\n" +"status wyj¶ciowy procesu zakoñczonego przez sygna³.\n" +"PID jest liczb± ca³kowit±, je¿eli ujemn±, to oznacza grupê procesów.\n" + +#: src/kill.c:163 +#, c-format +msgid "%s: invalid signal" +msgstr "%s: b³êdny sygna³" + +#: src/kill.c:262 +#, c-format +msgid "missing operand after `%s'" +msgstr "brakuj±cy argument po `%s'" + +#: src/kill.c:274 +#, c-format +msgid "%s: invalid process id" +msgstr "%s: b³êdny identyfikator procesu" + +#: src/kill.c:327 +#, c-format +msgid "invalid option -- %c" +msgstr "b³êdna opcja -- %c" + +#: src/kill.c:336 +#, c-format +msgid "%s: multiple signals specified" +msgstr "%s: podano wiele sygna³ów" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "podano wiele opcji -l lub -t" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "nie mo¿na podaæ sygna³u równocze¶nie z opcjami -l lub -t" + +#: src/link.c:51 +#, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"Sk³adnia: %s PLIK1 PLIK2\n" +" albo: %s OPCJA\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" +"U¿ycie funkcji link do utworzenia dowi±zania o nazwie PLIK2 do istniej±cego " +"PLIKU1.\n" +"\n" + +#: src/link.c:98 +#, c-format +msgid "cannot create link %s to %s" +msgstr "nie mo¿na utworzyæ dowi±zania %s do %s" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "Mike Parker i David MacKenzie" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "" +"%s: uwaga: zrobienie zwyk³ego dowi±zania do symbolicznego nie jest przeno¶ne" + +#: src/ln.c:174 +#, c-format +msgid "%s: hard link not allowed for directory" +msgstr "%s: nie mo¿na zrobiæ dowi±zania zwyk³ego do katalogu" + +#: src/ln.c:246 +#, c-format +msgid "%s: cannot overwrite directory" +msgstr "%s: nie mo¿na zamazaæ katalogu" + +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "%s: zast±piæ %s? " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: Plik istnieje" + +#: src/ln.c:304 +#, c-format +msgid "create symbolic link %s to %s" +msgstr "tworzenie dowi±zania symbolicznego %s do %s" + +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "tworzenie dowi±zania zwyk³ego %s do %s" + +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "tworzenie dowi±zania symbolicznego %s do %s" + +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "tworzenie dowi±zania zwyk³ego %s do %s" + +#: src/ln.c:339 +#, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"Sk³adnia: %s [OPCJA]... CEL [NAZWA_DOWI¡ZANIA]\n" +" albo: %s [OPCJA]... CEL.. KATALOG\n" +" albo: %s [OPCJA]... --target-directory=KATALOG CEL..\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" +"Utworzenie dowi±zania do podanego CELU z opcjonaln± nazw± NAZWA_DOWI¡ZANIA\n" +"Je¿eli pominiêta jest nazwa NAZWA_DOWI¡ZANIA w bie¿±cym katalogu jest " +"tworzone\n" +"dowi±zanie z nazw± tak± jak CEL. Je¿eli u¿yta jest druga forma, z wiêcej " +"ni¿\n" +"jednym CELEM, ostatni argument musi byæ katalogiem; dowi±zania do ka¿dego " +"CELU\n" +"bêda utworzone w KATALOGU. Domy¶lnie tworzone s± zwyk³e dowi±zania, " +"symboliczne\n" +"gdy jest u¿yta opcja --symbolic. Przy tworzeniu zwyk³ych dowi±zañ ka¿dy CEL\n" +"musi istnieæ.\n" +"\n" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" +" --backup[=TRYB] zrobienie kopii zapasowej przed skasowaniem\n" +" -b jak --backup, ale bez argumentu\n" +" -d, -F, --directory dowi±zanie zwyk³e do katalogów (tylko super-" +"user)\n" +" -f, --force skasowanie istniej±cych celów bez pytania\n" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" +" -n, --no-dereference je¿eli CEL jest dowi±zaniem symbolicznym do\n" +" katalogu, traktowany jest jak zwyk³y plik\n" +" -i, --interactive program pyta czy usun±æ CELE\n" +" -s, --symbolic tworzenie dowi±zañ symbolicznych zamiast " +"zwyk³ych\n" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" +" -S, --suffix=ROZSZERZENIE zmiana domy¶lnego ROZSZERZENIA kopii " +"zapasowej\n" +" --target-directory=KATALOG podanie KATALOGU, w którym maj± byæ\n" +" tworzone dowi±zania\n" +" -v, --verbose wypisanie nazw plików przed dowi±zaniem\n" + +#: src/ln.c:521 +#, c-format +msgid "%s: specified target directory is not a directory" +msgstr "%s: podany katalog docelowy nie jest katalogiem" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "" +"kiedy tworzonych jest wiele dowi±zañ, ostatni argument musi byæ katalogiem" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "Sk³adnia: %s [OPCJA]\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" +"Wypisuje nazwê aktualnego u¿ytkownika.\n" +"\n" + +#: src/logname.c:99 +#, c-format +msgid "%s: no login name\n" +msgstr "%s: brak nazwy u¿ytkownika\n" + +#: src/ls.c:673 +msgid "%b %e %Y" +msgstr "%b %e %Y" + +#: src/ls.c:681 +msgid "%b %e %H:%M" +msgstr "%b %e %H:%M" + +#: src/ls.c:1307 +#, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "ignorujê b³êdny rozmiar zmiennej ¶rodowiskowej QUOTING_STYLE: %s" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "ignorujê b³êdn± d³ugo¶æ w zmiennej ¶rodowiskowej COLUMNS: %s" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "ignorujê b³êdny rozmiar tab-a w zmiennej ¶rodowiska TABSIZE: %s" + +#: src/ls.c:1482 +#, c-format +msgid "invalid line width: %s" +msgstr "b³êdna szeroko¶æ linii: %s" + +#: src/ls.c:1556 +#, c-format +msgid "invalid tab size: %s" +msgstr "b³êdny rozmiar TAB-a: %s" + +#: src/ls.c:1722 +#, c-format +msgid "invalid time style format %s" +msgstr "b³êdny format stylu czasu %s" + +#: src/ls.c:2054 +#, c-format +msgid "unrecognized prefix: %s" +msgstr "nierozpoznany prefiks: %s" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "niezrozumia³a warto¶æ zmiennej ¶rodowiska LS_COLORS" + +#: src/ls.c:2145 +#, c-format +msgid "cannot determine device and inode of %s" +msgstr "nie mo¿na ustaliæ urz±dzenia i i-wêz³a %s" + +#: src/ls.c:2155 +#, c-format +msgid "not listing already-listed directory: %s" +msgstr "nie bêdzie wylistowany katalog %s ju¿ wylistowany poprzednio" + +#: src/ls.c:2208 src/remove.c:929 +#, c-format +msgid "reading directory %s" +msgstr "czytanie katalogu %s" + +#: src/ls.c:2603 +#, c-format +msgid "cannot compare file names %s and %s" +msgstr "nie mo¿na porównaæ nazw plików %s i %s" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" +"Wypisanie informacji o PLIKACH (domy¶lnie w katalogu bie¿±cym). Sortowane\n" +"alfabetyczne, je¿eli nie jest podana ¿adna z opcji -cftuSUX ani --sort.\n" +"\n" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" +" -a, --all bez ukrywania plików zaczynaj±cych siê od .\n" +" -A, --almost-all bez pokazania . ani ..\n" +" --author wypisanie autora ka¿dego pliku\n" +" -b, --escape wypisanie znaków niegraficznych ósemkowo\n" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" +" --block-size=ROZMIAR u¿ycie bloków o podanym w bajtach ROZMIARZE\n" +" -B, --ignore-backups bez pokazania plików koñcz±cych siê na ~\n" +" -c z -lt: sortowanie wg i wypisanie ctime (czasu\n" +" ostatniej modyfikacji danych o pliku)\n" +" z -l: wypisanie ctime i sortowanie wg nazw\n" +" w przeciwnym przypadku: sortowanie wg ctime\n" + +#: src/ls.c:3784 +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" +" -C wypisanie plików w kolumnach\n" +" --color[=GDY] sterowanie u¿ycia kolorów rozró¿niaj±cych typy\n" +" plików. GDY mo¿e byæ `never' (nigdy), " +"`always'\n" +" (zawsze) albo `auto' (automatyczne)\n" +" -d, --directory pokazanie katalogów zamiast ich zawarto¶ci, " +"bez\n" +" rozwi±zywania dowi±zañ symbolicznych\n" +" -D, --dired dane wyj¶ciowe dla trybu dired Emacsa\n" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" +" -f bez sortowania, w³±czenie -aU, wy³±czenie -lst\n" +" -F, --classify dopisanie znaków wskazuj±cych typ ka¿dego " +"pliku\n" +" --format=S£OWO across (poziomo), odpowiada opcji -x, commas\n" +" (oddzielone przecinkami) -m, horizontal\n" +" (poziomo) -x, long (d³ugi, z dodatkowymi\n" +" informacjami) -l, single-column (w jednej\n" +" kolumnie) -1, verbose (d³ugi, z dodatkowymi\n" +" informacjami) -l, vertical (pionowy, w\n" +" kolumnach) -C\n" +" --full-time jak -l --time-style=full-iso\n" + +#: src/ls.c:3799 +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" +" -g jak -l, ale bez pokazanie w³a¶ciciela pliku\n" +" -G, --no-group bez pokazania informacji o grupach\n" +" -h, --human-readable rozmiary w formacie dla ludzi (np. 1K 234M 2G)\n" +" --si podobnie, ale z u¿yciem potêg 1000, nie 1024\n" +" -H, --dereference-command-line\n" +" rozwi±zywanie dowi±zañ symbolicznych podanych\n" +" jako argumenty\n" +" --dereference-command-line-symlink-to-dir\n" +" rozwi±zywanie dowi±zañ symbolicznych podanych\n" +" jako argumenty je¿eli wskazuj± na katalogi\n" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" +" --indicator-style=S£OWO dodanie wska¼ników typów plików w stylu " +"S£OWO:\n" +" none (domy¶lnie), classify (-F), file-type (-" +"p)\n" +" -i, --inode pokazywanie numeru i-wêz³a ka¿dego pliku\n" +" -I, --ignore=WZÓR bez pokazywania plików pasuj±cych do shellowego " +"WZORU\n" +" -k jak --block-size=1K\n" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" +" -l u¿ycie d³ugiego formatu wyj¶ciowego\n" +" -L, --dereference pokazanie plików wskaz. przez dowi±zania " +"symboliczne\n" +" -m pisanie do pe³nej szeroko¶ci, oddzielanie " +"przecinkami\n" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" +" -n, --numeric-uid-gid jak -l, ale pokazanie UID i GID liczbowo\n" +" -N, --literal wypisanie nazwy dok³adnie (bez specjalnego\n" +" traktowania np. znaków steruj±cych)\n" +" -o jak -l, ale bez informacji o grupie\n" +" -p, --file-type dopisanie znaku wskazuj±cego typ pliku (z /" +"=@|)\n" + +#: src/ls.c:3831 +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -q, --hide-control-chars pisanie ? zamiast znaków steruj±cych\n" +" --show-control-chars pokazanie znaków niedrukowalnych (domy¶lnie, " +"chyba\n" +" ¿e program nazywa siê `ls' i pisze na " +"terminalu)\n" +" -Q, --quote-name ujêcie nazw w cudzys³owy\n" +" --quoting-style=S£OWO zabezpieczenie znaków specjalnych w stylu " +"S£OWO:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" +" -r, --reverse odwrotny porz±dek sortowania\n" +" -R, --recursive rekursywne listowanie katalogów\n" +" -s, --size wypisanie liczby bloków zajêtych przez ka¿dy " +"plik\n" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" +" -S sortowanie wed³ug rozmiaru\n" +" --sort=S£OWO sortowanie wg: extension -X (rozszerzenia), " +"none\n" +" -U (wcale), size -S (rozmiaru), time -t\n" +" (czasu), version -v (wersji), status -c\n" +" (czasu zmiany informacji o pliku), atime -u,\n" +" access -u, use -u (czasu ostatniego dostêpu)\n" +" --time=S£OWO pokazanie czasu innego ni¿ czas modyfikacji,\n" +" okre¶lonego S£OWEM: atime, access, use, " +"ctime\n" +" albo status; u¿ycie podanego czasu do\n" +" sortowania gdy podano --sort=time\n" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" +" --time-style=STYL pokazanie czasów przy u¿yciu STYLU:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT jest interpretowany jak w `date'. " +"Je¿eli\n" +" FORMAT to FORMAT1FORMAT2,\n" +" FORMAT1 dotyczy dawniejszych plików, FORMAT2\n" +" nowszych. Je¿eli STYL zaczyna siê od posix-,\n" +" STYL jest u¿ywany tylko dla locale nie POSIX\n" +" -t sortowanie wg czasu modyfikacji\n" +" -T, --tabsize=KOLUMNA TAB co tyle KOLUMN, zamiast co 8\n" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" +" -u z -lt: sortowanie wg i wypisanie czasu\n" +" ostatniego dostêpu; z -l: wypisanie czasu\n" +" dostêpu i sortowanie wg nazw; w przeciwnym\n" +" przypadku: sortowanie wg czasu dostêpu\n" +" -U bez sortowania, wypisanie kolejno¶ci jak w " +"katalogu\n" +" -v sortowanie wg wersji\n" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" +" -w, --width=KOLUMNA szeroko¶æ ekranu zamiast warto¶ci bie¿±cej\n" +" -x wypisanie nazw w kolejnych liniach, nie " +"kolumnach\n" +" -X sortowanie alfabetyczne wg rozszerzeñ\n" +" -1 listowanie po jednym pliku w linii\n" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" +"\n" +"Domy¶lnie kolory nie s± u¿ywane do rozró¿niania typów plików. Jest to\n" +"równowa¿ne u¿yciu --color=none. U¿ycie opcji --color bez opcjonalnego\n" +"argumentu GDY jest równowa¿ne u¿yciu --color=always. Z --color=auto\n" +"kody kolorów s± wypisywane tylko je¿eli standardowe wyj¶cie jest\n" +"przy³±czone do terminala (tty).\n" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "Ulrich Drepper i Scott Miller" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"Sk³adnia: %s [OPCJA] [PLIK]...\n" +" albo: %s [OPCJA] --check [PLIK]\n" +"Wypisuje albo sprawdza sumy kontrolne %s (%d-bitowe).\n" +"Bez podanego PLIKU albo gdy PLIK to -, czyta standardowe wej¶cie.\n" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" +"\n" +" -b, --binary czytanie plików w trybie binarnym (domy¶lnie dla\n" +" DOS/Windows)\n" +" -c, --check sprawdzanie sum %s plików podanych na li¶cie\n" +" -t, --text czytanie plików w trybie tekstowym (domy¶lnie)\n" +"\n" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" +"Nastêpuj±ce opcje s± przydatne tylko przy sprawdzaniu sum kontrolnych:\n" +" --status bez wypisywania niczego, kod wyj¶cia przekazuje " +"wynik\n" +" -w, --warn ostrzeganie o niepoprawnie sformatowanych liniach " +"sum\n" +"\n" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" +"\n" +"Sumy s± liczone wg opisu w %s. Przy sprawdzaniu dane wej¶ciowe powinny\n" +"byæ takie jak wygenerowane przez ten program na wyj¶ciu. Domy¶lny tryb to\n" +"wypisanie linii z sum± kontroln±, znaku wskazuj±cego typ (`*' binarny, ` '\n" +"tekstowy) i nazwy ka¿dego PLIKU.\n" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "%s: %lu: nieprawid³owo sformatowana linia sumy kontrolnej %s" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "%s: NIEPOWODZENIE otwarcia lub odczytu\n" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "NIEPOWODZENIE" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "DOBRZE" + +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%s: b³±d odczytu" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "%s: brak poprawnie sformatowanych linii sumy kontrolnej %s" + +# that's a case where cases are needed in Slavic languages +# podanych/podanego are plural/singular Genitive, I moved them to +# next messages hoping it doesn't spoil anything - rzm +# +# see also md5sum.c:430. it is somewhat surprising that we need +# such things only in two places in this file - rzm 960902 +# +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "UWAGA: %d z %d %s nie mog³o byæ odczytanych" + +# in Genitive - rzm +#: src/md5sum.c:473 +msgid "file" +msgstr "pliku" + +# in Genitive - rzm +#: src/md5sum.c:473 +msgid "files" +msgstr "plików" + +# once more `of computed checksum(s)' is `wyliczonej sumy' or +# `wyliczonych sum' in sing. or plural Genitive; how to handle? - rzm +# +# it is better now but the word `wyliczonych' should also change according +# to the number too (what a horrible language! - but there are worse) +# so I'm moving it to the changing part; fortunately it is Genitive +# so we don't need to use two forms for plural (depending on number: nn[234] +# are different that the other ones) - rzm 960902 +# +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "UWAGA: %d z %d %s siê NIE zgadza" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "wyliczonej sumy kontrolnej" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "wyliczonych sum kontrolnych" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" +"opcje --binary i --text nie maj± znaczenia przy weryfikacji sum\n" +"kontrolnych" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "opcje --string i --check wzajemnie siê wykluczaj±" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "opcja --status ma znaczenie tylko przy weryfikacji sum kontrolnych" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "opcja --warn ma znaczenie tylko przy weryfikacji sum kontrolnych" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "nie mo¿na podawaæ ¿adnych plików je¿eli u¿yta jest opcja --string" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "je¿eli jest u¿ywana opcja --check mo¿na podaæ tylko jeden argument" + +#: src/mkdir.c:61 +#, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "Sk³adnia: %s [OPCJA] KATALOG...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" +"Utworzenie KATALOGU/ÓW, je¿eli jeszcze nie istniej±.\n" +"\n" + +#: src/mkdir.c:69 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +" -m, --mode=UPRAWN ustawienie uprawnieñ (jak w chmod), nie rwxrwxrwx-umask\n" +" -p, --parents bez b³êdu gdy istnieje, utworzenie ca³ej ¶cie¿ki " +"katalogów\n" +" -v, --verbose wypisanie komunikatu o ka¿dym utworzonym katalogu\n" + +#: src/mkdir.c:113 +#, c-format +msgid "created directory %s" +msgstr "utworzony katalog %s" + +#: src/mkdir.c:190 +#, c-format +msgid "cannot set permissions of directory %s" +msgstr "nie mo¿na ustawiæ uprawnieñ katalogu %s" + +#: src/mkfifo.c:55 +#, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "Sk³adnia: %s [OPCJA] NAZWA...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" +"Tworzenie nazwanych potoków (pipes, FIFOs) o podanych NAZWACH.\n" +"\n" + +#: src/mkfifo.c:63 src/mknod.c:64 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" +" -m, --mode=UPRAWN ustawienie uprawnieñ (jak w chmod), nie a=rw-umask\n" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "potoki nie s± obs³ugiwane przez ten system" + +#: src/mkfifo.c:123 src/mknod.c:127 +msgid "invalid mode" +msgstr "b³êdne uprawnienia" + +#: src/mkfifo.c:142 +#, c-format +msgid "cannot set permissions of fifo %s" +msgstr "nie mo¿na ustawiæ uprawnieñ potoku %s" + +#: src/mknod.c:55 +#, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "Sk³adnia: %s [OPCJA]... NAZWA TYP [WIÊKSZY MNIEJSZY]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" +"Utworzenie pliku specjalnego o podanej NAZWIE i TYPIE.\n" +"\n" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" +"\n" +"Dla TYPÓW b, c i u musi byæ podany zarówno WIÊKSZY jak MNIEJSZY numer\n" +"urz±dzenia. Oba numery musz± byæ pominiête je¿eli TYP to p. Je¿eli WIÊKSZY\n" +"lub MNIEJSZY zaczyna siê od 0x albo 0X, jest interpretowany jako liczba\n" +"szesnastkowa. Je¿eli zaczyna siê od 0 - jako ósemkowa. W innych wypadkach -\n" +"jako dziêsi±tkowa. TYP mo¿e byæ:\n" + +#: src/mknod.c:76 +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"\n" +" b specjalny plik blokowy (buforowany)\n" +" c, u specjalny plik znakowy (niebuforowany)\n" +" p potok (FIFO)\n" + +#: src/mknod.c:141 +msgid "wrong number of arguments" +msgstr "z³a liczba argumentów" + +#: src/mknod.c:153 +msgid "block special files not supported" +msgstr "specjalne pliki blokowe nie s± obs³ugiwane" + +#: src/mknod.c:162 +msgid "character special files not supported" +msgstr "specjalne pliki znakowe nie s± obs³ugiwane" + +#: src/mknod.c:171 +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" +"dla utworzenia specjalnego pliku blokowego wiêkszy i mniejszy\n" +"numer urz±dzenia musz± byæ podane" + +#: src/mknod.c:186 +#, c-format +msgid "invalid major device number %s" +msgstr "b³êdny wiêkszy numer urz±dzenia %s" + +#: src/mknod.c:191 +#, c-format +msgid "invalid minor device number %s" +msgstr "b³êdny mniejszy numer urz±dzenia %s" + +#: src/mknod.c:196 +#, c-format +msgid "invalid device %s %s" +msgstr "b³êdne urz±dzenie %s %s" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "wiêkszy i mniejszy numer urz±dzenia nie mo¿e byæ podany dla fifo" + +#: src/mknod.c:231 +#, c-format +msgid "cannot set permissions of %s" +msgstr "nie mo¿na ustawiæ uprawnieñ do %s" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "Mike Parker, David MacKenzie i Jim Meyering" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Przemianowanie ¬RÓD£A na CEL albo przeniesienie jednego lub wielu ¬RÓDE£\n" +"do KATALOGU.\n" +"\n" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" +" --backup[=TRYB] zrobienie kopii zapasowej ka¿dego " +"istniej±cego\n" +" pliku docelowego\n" +" -b jak --backup, ale bez podawania argumentu\n" +" -f, --force bez pytania przed zamazaniem pliku\n" +" równowa¿ne --reply=yes\n" +" -i, --interactive pytanie przez zamazaniem\n" +" równowa¿ne --reply=query\n" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" +" --reply={yes,no,query} odpowied¼ na pytania o istniej±cy plik " +"docelowy\n" +" --strip-trailing-slashes usuniêcie koñcowych / z ka¿dego argumentu\n" +" ZRÓD£OWEGO\n" +" -S, --suffix=ROZSZERZ zmiana domy¶lnego rozszerzenia kopii " +"zapasowej\n" + +#: src/mv.c:339 +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +" --target-directory=KATALOG przeniesienie wszystkich argumentów\n" +" ¬RÓD£OWYCH do KATALOGU\n" +" -u, --update przenoszenie tylko gdy ¬RÓD£O jest nowsze od\n" +" CELU albo nie ma CELU\n" +" -v, --verbose wyja¶nianie co siê dzieje\n" + +#: src/mv.c:467 +#, c-format +msgid "specified target, %s is not a directory" +msgstr "podany cel %s nie jest katalogiem" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "" +"gdy przenoszonych jest wiele plików, ostatni argument musi byæ katalogiem" + +#: src/nice.c:67 +#, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "Sk³adnia: %s [OPCJA] [POLECENIE [ARGUMENT]...]\n" + +#: src/nice.c:68 +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" +"Uruchamia POLECENIE ze zmienionym priorytetem wykonywania.\n" +"Bez podanego POLECENIA wy¶wietla aktualny priorytet wykonywania. Domy¶lna\n" +"ZMIANA wynosi 10. Zakres wynosi od -20 (najwy¿szy priorytet) do 19 " +"(najni¿szy).\n" +"\n" +" -n, --adjustment=ZMIANA zwiêkszenie priorytetu o ZMIANÊ\n" + +#: src/nice.c:109 src/nice.c:122 +#, c-format +msgid "invalid option `%s'" +msgstr "b³êdna opcja `%s'" + +#: src/nice.c:147 +#, c-format +msgid "invalid priority `%s'" +msgstr "b³êdny priorytet `%s'" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "razem z priorytetem musi byæ podane polecenie" + +#: src/nice.c:178 src/nice.c:187 +msgid "cannot get priority" +msgstr "nie mo¿na odczytaæ priorytetu" + +#: src/nice.c:192 +msgid "cannot set priority" +msgstr "nie mo¿na ustawiæ priorytetu" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "Scott Bartram i David MacKenzie" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Wypisanie ka¿dego PLIKU na standardowe wyj¶cie z numerami linii.\n" +"Je¿eli PLIK nie jest podany lub PLIK to -, czytane jest standardowe\n" +"wej¶cie.\n" +"\n" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" +" -b, --body-numbering=STYL u¿ycie STYLU do numerowania linii tre¶ci\n" +" -d, --section-delimiter=CC u¿ycie CC do oddzielania stron logicznych\n" +" -f, --footer-numbering=STYL u¿ycie STYLU do numerowania linii stopek\n" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" +" -h, --header-numbering=STYL u¿ycie STYLU do numeracji linii nag³ówka\n" +" -i, --page-increment=ILE przyrost numeracji linii\n" +" -l, --join-blank-lines=ILE grupa ILU pustych linii liczona jako " +"jedna\n" +" -n, --number-format=FORMAT dopisanie numerów linii zgodnie z " +"FORMATEM\n" +" -p, --no-renumber bez zerowania numeracji na pocz±tkach " +"stron\n" +" logicznych\n" +" -s, --number-separator=£AÑCUCH dodanie £AÑCUCHA po ewent. numerze linii\n" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" +" -v, --first-page=NUMER NUMER pierwszej linii na stronie " +"logicznej\n" +" -w, --number-width=ILE ILE kolumn na numery linii\n" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" +"\n" +"Domy¶lnie wybrane s± -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC to\n" +"dwa ograniczniki oddzielaj±ce strony logiczne. Je¿eli brakuje drugiego\n" +"przyjmowana jest warto¶æ :. Napisz \\\\ ¿eby uzyskaæ \\. STYL to jeden z:\n" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" +"\n" +" a numerowanie wszystkich linii\n" +" t numerowanie tylko niepustych linii\n" +" n bez numerowania linii\n" +" pWYR_REG numerowanie tylko linii pasuj±cych do WYR_REG\n" +"\n" +"FORMAT to jeden z:\n" +"\n" +" ln dosuniête do lewej, bez zer na pocz±tku\n" +" rn dosuniête do prawej, bez zer na pocz±tku\n" +" rz dosuniête do prawej, z zerami na pocz±tku\n" +"\n" + +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "b³êdny pocz±tkowy numer linii: `%s'" + +#: src/nl.c:514 +#, c-format +msgid "invalid line number increment: `%s'" +msgstr "b³êdny przyrost numeru linii: `%s'" + +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "b³êdna liczba pustych linii: `%s'" + +#: src/nl.c:541 +#, c-format +msgid "invalid line number field width: `%s'" +msgstr "b³êdna szeroko¶æ pola numeru linii: `%s'" + +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"Sk³adnia: %s [OPCJA]... [PLIK]...\n" +" albo: %s --traditional [PLIK] [[+]PRZESUNIÊCIE [[+]ETYKIETA]]\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"\n" +"Wypisanie jednoznacznej reprezentacji PLIKU, domy¶lnie bajty ósemkowo, na\n" +"standardowe wyj¶cie. Je¿eli PLIK nie jest podany lub PLIK to -, czytane\n" +"jest standardowe wej¶cie.\n" +"\n" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "Argumenty obowi±zkowe dla opcji d³ugich obowi±zuj± dla krótkich.\n" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" +" -A, --address-radix=BAZA postaæ wypisywania pozycji\n" +" -j, --skip-bytes=BAJTY ominiêcie tylu pocz±tkowych BAJTÓW ka¿dego " +"pliku\n" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" +" -N, --read-bytes=BAJTY ograniczenie wielko¶ci do BAJTÓW\n" +" -s, --strings[=BAJTY] wypisanie przynajmniej tylu BAJTÓW znaków\n" +" graficznych\n" +" -t, --format=TYP wybranie formatu/formatów danych wyj¶ciowych\n" +" -v, --output-duplicates bez u¿ywania * do zaznaczania powtórzonych " +"linii\n" +" -w, --width[=BAJTY] wypisanie tylu BAJTÓW w ka¿dej linii " +"wyj¶ciowej\n" +" --traditional akceptowanie argumentów w tradycyjnym " +"formacie\n" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" +"\n" +"Tradycyjne specyfikacje formatu mog± byæ mieszane, akumuluj± siê:\n" +" -a to samo co -t a, nazwy znaków\n" +" -b to samo co -t oC, bajty ósemkowo\n" +" -c to samo co -t c, znaki ASCII lub kody znaków z backslashem\n" +" -d to samo co -t u2, dziesiêtnie liczby short bez znaku\n" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" +" -f to samo co -t fF, zmiennoprzecinkowy float\n" +" -h to samo co -t x2, szesnastkowo short\n" +" -i to samo co -t d2, dziesiêtnie short\n" +" -l to samo co -t d4, dziesiêtnie long\n" +" -o to samo co -t o2, ósemkowo short\n" +" -x to samo co -t x2, szesnastkowo short\n" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" +"\n" +"W starej sk³adni (drugi format wywo³ania), PRZESUNIÊCIE oznacza -j\n" +"PRZESUNIÊCIE. ETYKIETA to pseudo-adres wypisanego bajtu, zwiêksza siê w " +"trakcie\n" +"pracy programu. Dla PRZESUNIÊCIA i ETYKIETY przedrostek 0x lub 0X oznacza " +"zapis\n" +"szesnastkowy, dla ósemkowego mo¿e byæ przyrostek . , a b mno¿y przez 512.\n" +"\n" +"TYP sk³ada siê z jednej lub wiêcej nastêpuj±cych specyfikacji:\n" +"\n" +" a nazwy znaków\n" +" c znaki ASCII lub kody znaków z backslashem\n" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" +" d[ROZMIAR] dziesiêtny ze znakiem, liczba o takim ROZMIARZE w bajtach\n" +" f[ROZMIAR] zmiennoprzecinkowy, liczba o takim ROZMIARZE w bajtach\n" +" o[ROZMIAR] ósemkowy, liczba o takim ROZMIARZE w bajtach\n" +" u[ROZMIAR] dziesiêtny bez znaku, liczba o takim ROZMIARZE w bajtach\n" +" x[ROZMIAR] szesnastkowy, liczba o takim ROZMIARZE w bajtach\n" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" +"\n" +"ROZMIAR jest liczb±. Dla TYPÓW d, o, u, x ROZMIAR mo¿e byæ te¿ C dla\n" +"sizeof(char), S dla sizeof(short), I dla sizeof(int) albo L dla\n" +"sizeof(long). Je¿eli TYP to f, ROZMIAR mo¿e byæ te¿ F dla sizeof(float), D\n" +"dla sizeof(double) albo L dla sizeof(long double).\n" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" +"\n" +"BAZÊ oznacza siê d je¿eli dziesiêtna, o - ósemkowa, x - szesnastkowa, n -\n" +"¿adna. BAJTY s± w zapisie szesnastkowym je¿eli maja przedrostek 0x albo 0X,\n" +"je¿eli przyrostek to b, s± mno¿one przez 512, k - 1024, m - 1048576. " +"Dodanie\n" +"przyrostka `z' do dowolnego typu dodaje wy¶wietlanie znaków drukowalnych na\n" +"koñcu ka¿dej linii. " + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" +"--string bez liczby oznacza d³ugo¶æ równ± 3. --width bez\n" +"liczby oznacza szeroko¶æ równ± 32. Domy¶lnie od u¿ywa -A o -t d2 -w 16.\n" + +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "b³êdny ³añcuch typu `%s'" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" +"b³êdny ³añcuch typu `%s';\n" +"ten system nie ma %lu-bajtowych liczb ca³kowitych" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" +"b³êdny ³añcuch typu `%s';\n" +"ten system nie ma %lu-bajtowych liczb zmiennoprzecinkowych" + +#: src/od.c:917 +#, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "b³êdny znak `%c' w ³añcuchu typu `%s'" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "nie mo¿na przeskoczyæ poza koniec po³±czonych danych wej¶ciowych" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "przesuniêcie w starym stylu" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "" +"b³êdna baza danych wyj¶ciowych `%c'; musi to byæ jeden ze znaków [doxn]" + +#: src/od.c:1717 +msgid "skip argument" +msgstr "pominiêcie argumentu" + +#: src/od.c:1725 +msgid "limit argument" +msgstr "ograniczenie argumentu" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "minimalna d³ugo¶æ ³añcucha" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "%s jest za du¿a" + +#: src/od.c:1804 +msgid "width specification" +msgstr "specyfikacja szeroko¶ci" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "nie mo¿na podawaæ typu przy wypisywaniu ³añcuchów" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "b³êdny drugi argument w trybie zgodnym ze star± wersj± `%s'" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "" +"w trybie zgodnym ze star± wersj± ostatnie 2 argumenty musz± byæ " +"przesuniêciami" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "tryb zgodny ze star± wersj± mo¿e mieæ najwy¿ej 3 argumenty" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "uwaga: b³êdna szeroko¶æ %lu; u¿ywam %d zamiast" + +# should this be translated? - rzm +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "%d: format=\"%s\" szeroko¶æ=%d\n" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "David M. Ihnat i David MacKenzie" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "standardowe wej¶cie jest zamkniête" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Wypisywanie linii z³o¿onych ze sklejonych kolejnych odpowiadaj±cych sobie\n" +"linii z ka¿dego PLIKU oddzielonych TABami, na standardowe wyj¶cie.\n" +"Bez PLIKU albo gdy PLIK to -, czytane jest standardowe wej¶cie.\n" +"\n" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" +" -d, --delimiters=LISTA u¿ycie kolejnych znaków z LISTY zamiast TABów\n" +" -s, --serial przepisanie plików po kolei zamiast równolegle\n" + +#: src/pathchk.c:146 +#, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "Sk³adnia: %s [OPCJA]... NAZWA...\n" + +#: src/pathchk.c:147 +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" +"Znajdywanie nieprzeno¶nych konstrukcji w NAZWIE.\n" +"\n" +" -p, --portability sprawdzanie wszystkich systemów POSIXowych, nie tylko " +"tego\n" + +#: src/pathchk.c:237 +#, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "¶cie¿ka `%s' zawiera nieprzeno¶ny znak `%c'" + +#: src/pathchk.c:257 +#, c-format +msgid "`%s' is not a directory" +msgstr "`%s' nie jest katalogiem" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "katalog `%s' nie ma uprawnieñ do przeszukiwania" + +#: src/pathchk.c:355 +#, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "nazwa `%s' ma d³ugo¶æ %ld; przekracza limit %ld" + +#: src/pathchk.c:381 +#, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "¶cie¿ka `%s' ma d³ugo¶æ %d; przekracza limit %ld" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "Joseph Arceneaux, David MacKenzie i Kaveh Ghazi" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "U¿ytkownik: " + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "Imiê i nazwisko: " + +#: src/pinky.c:298 +msgid "???\n" +msgstr "???\n" + +#: src/pinky.c:318 +msgid "Directory: " +msgstr "Katalog: " + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "Pow³oka: " + +#: src/pinky.c:341 +msgid "Project: " +msgstr "Projekt: " + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "Plan:\n" + +#: src/pinky.c:386 +msgid "Login" +msgstr "U¿ytkownik" + +#: src/pinky.c:388 +msgid "Name" +msgstr "Nazwisko" + +#: src/pinky.c:389 +msgid " TTY" +msgstr " TTY" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "Bezczynny" + +#: src/pinky.c:392 +msgid "When" +msgstr "Kiedy" + +#: src/pinky.c:395 +msgid "Where" +msgstr "Sk±d" + +#: src/pinky.c:469 +#, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "Sk³adnia: %s [OPCJA]... [U¯YTKOWNIK]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" +"\n" +" -l wy¶wietlenie szczegó³owych informacji o U¯YTKOWNIKU\n" +" -b pominiêcie katalogu domowego i pow³oki u¿ytkownika w\n" +" formacie szczegó³owym\n" +" -h pominiêcie projektu u¿ytkownika w formacie szczegó³owym\n" +" -p pominiêcie planu u¿ytkownika w formacie szczegó³owym\n" +" -s wy¶wietlenie informacji w formacie skróconym (domy¶lnie)\n" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" +" -f pominiêcie nag³ówków kolumn w formacie skróconym\n" +" -w pominiêcie nazwiska u¿ytkownika w formacie skróconym\n" +" -i pominiêcie nazwiska i zdalnego systemu w formacie " +"skróconym\n" +" -q pominiêcie nazwiska, zdalnego system oraz czasu " +"bezczynno¶ci\n" +" w formacie skróconym\n" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" +"\n" +"Uproszczona wersja programu `finger'. Wy¶wietla informacje o u¿ytkownikach.\n" +"¦cie¿ka do pliku utmp: %s .\n" + +#: src/pinky.c:574 +msgid "no username specified; at least one must be specified when using -l" +msgstr "" +"brak nazwy u¿ytkownika - musi byæ podana chocia¿ jedna, je¿eli u¿yto opcji -l" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "Pete TerMaat i Roland Huebner" + +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "`--pages' b³êdny zakres numerów stron: `%s'" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "`--pages' b³êdny numer strony pocz±tkowej: `%s'" + +#: src/pr.c:829 +#, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "`--pages' b³êdny numer strony koñcowej: `%s'" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "`--pages' numer strony pocz±tkowej jest wiêkszy ni¿ koñcowej" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "`--pages=PIERWSZA_STRONA[:OSTATNIA_STRONA]' - brakuj±cy argument" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "`--columns=COLUMN' b³êdna liczba kolumn: `%s'" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "`-l D£_STRONY' b³êdna liczba linii: `%s'" + +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "`-N LICZBA' b³êdny numer linii pocz±tkowej: `%s'" + +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "`-o MARGINES' b³êdne przesuniêcie linii: `%s'" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "`-w SZEROKO¦Æ_STRONY' b³êdna liczba znaków: `%s'" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "`-W SZEROKO¦Æ_STRONY' b³êdna liczba znaków: `%s'" + +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "%Y.%m.%d %H:%M" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "Przy wypisywaniu równoleg³ym nie mo¿na podawaæ liczby kolumn." + +# wzd³u¿? - rzm +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "Nie mo¿na wypisywaæ równocze¶nie w kolejnych kolumnach i równolegle." + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "`-%c' nadmiarowe znaki lub b³êdna liczba w argumencie: `%s'" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "szeroko¶æ strony za ma³a" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "numer strony pocz±tkowej jest wiêkszy ni¿ liczba stron: `%d'" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "strona %d" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" +"Podzielenie na strony lub u³o¿enie w kolumny PLIKU/ÓW do drukowania.\n" +"\n" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" +" +PIERWSZA_STRONA[:OSTATNIA_STRONA], --pages=PIERWSZA_STRONA[:" +"OSTATNIA_STRONA]\n" +" zaczêcie [zakoñczenie] od strony PIERWSZA_[OSTATNIA_]" +"STRONA\n" +" -COLUMN, --columns=KOLUMNY\n" +" wypisywanie danych w tylu KOLUMNACH i drukowanie kolumn " +"od\n" +" góry do do³u, chyba ¿e u¿yte jest -a. Wyrównanie liczby\n" +" linii w kolumnach na ka¿dej stronie.\n" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" +" -a, --across kolejne linie bêd± wypisane w kolejnych kolumnach, nie " +"po\n" +" kolei od góry do do³u; u¿ywa siê razem z -KOLUMNY\n" +" -c, --show-control-chars\n" +" u¿ycie zapisu z daszkiem (np. ^G) i ósemkowych numerów\n" +" znaków z backslashem\n" +" -d, --double-space\n" +" podwójny odstêp na wyj¶ciu\n" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" +" -D, --date-format=FORMAT\n" +" FORMAT daty w nag³ówku\n" +" -e[ZNAK[SZER]], --expand-tabs[=ZNAK[SZER]]\n" +" rozwijanie ZNAKÓW wej¶ciowych (TABów) do tej SZERoko¶ci " +"(8)\n" +" -F, -f, --form-feed\n" +" do odzielania stron bêdzie u¿yty znak nowej strony " +"zamiast\n" +" znaku nowej linii (przez 3-liniowy nag³ówek strony z -F\n" +" lub 5-liniowy nag³ówek i stopkê bez -F)\n" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" +" -h NAG£ÓWEK, --header=NAG£ÓWEK\n" +" u¿ycie wycentrowanego NAG£ÓWKA zamiast nazwy pliku w\n" +" nag³ówkach, dla d³ugich nag³ówków mo¿e doj¶æ do " +"obciêcia\n" +" z lewej. -h \"\" drukuje pust± linie, nie u¿ywaj -h " +"\"\"\n" +" -i[ZNAK[SZER]], --output-tabs[=ZNAK[SZER]]\n" +" zamiana spacji na ZNAKI (TABy) do tej SZEROKO¦CI (8)\n" +" -J, --join-lines\n" +" po³±czenie pe³nych linii, wy³±cza obcinanie linii przez\n" +" -W, bez wyrównania kolumn, -sep-string[-£AÑCUCH] " +"ustawia\n" +" separatory\n" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" +" -l D£UGO¦Æ_STRONY, --length=D£UGO¦Æ_STRONY\n" +" ustawienie takiej D£UGO¦CI_STRONY w liniach (66)\n" +" (domy¶lna liczba linii tekstu: 56; dla -F 63)\n" +" -m, --merge wypisanie wszystkich plików równolegle, ka¿dy w jednej\n" +" kolumnie, linie s± obcinane, ale linie o pe³nej " +"d³ugo¶ci\n" +" s± ³±czone przez -J\n" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" +" -n[SEP[CYFRY]], --number-lines[=SEP[CYFRY]]\n" +" numerowanie linii tyloma CYFRAMI (5), potem SEPARATOREM\n" +" (TAB), domy¶lnie liczone od pierwszej linii pliku\n" +" wej¶ciowego\n" +" -N LICZBA, --first-line-number=LICZBA\n" +" pocz±tek liczenia od LICZBY przy pierwszej linii " +"pierwszej\n" +" drukowanej strony (zob. +PIERWSZA_STRONA)\n" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" +" -o MARGINES, --indent=MARGINES\n" +" Przesuniêcie ka¿dej linii o MARGINES (zero) spacji, nie\n" +" wp³ywa na -w ani -W, MARGINES zostanie dodany do\n" +" SZEROKO¦CI_STRONY\n" +" -r, --no-file-warnings\n" +" bez ostrze¿eñ kiedy plik nie mo¿e byæ otwarty\n" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" +" -s[ZNAK], --separator[=ZNAK]\n" +" oddzielanie kolumn pojedynczym ZNAKIEM, domy¶lnie " +"TABem,\n" +" je¿eli bez opcji -w, 'no char' z opcj± -w\n" +" -s[ZNAK] wy³±cza obcinanie linii we wszystkich 3 " +"uk³adach\n" +" kolumn (-COLUMN|-a -COLUMN|-m), chyba ¿e u¿yto opcji -w\n" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr " -S£AÑCUCH, --sep-string[=£AÑCUCH]\n" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" +" oddzielenie kolumn przez £AÑCUCH znaków,\n" +" bez -S: z opcj± -J domy¶lny separator to TAB, bez -J -\n" +" spacja (to samo co -S\" \"), nie wp³ywa na opcje " +"dotycz±ce\n" +" kolumn\n" +" -t, --omit-header bez wypisywania nag³ówków i stopek stron\n" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" +" -T, --omit-pagination\n" +" bez wypisywania nag³ówków i stopek stron, wy³±czenie\n" +" formatowania stron przez znaki nowej strony w plikach\n" +" wej¶ciowych\n" +" -v, --show-nonprinting\n" +" u¿ycie zapisu ósemkowego z backslashem\n" +" -w SZEROKO¦Æ_STRONY, --width=SZEROKO¦Æ_STRONY\n" +" ustawienie SZEROKO¦CI_STRONY w kolumnach (72), tylko " +"dla\n" +" wydruku wielokolumnowego, -s[ZNAK] wy³±cza warto¶æ\n" +" domy¶ln± (72)\n" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" +" -W SZEROKO¦Æ_STRONY, --page-width=SZEROKO¦Æ_STRONY\n" +" ustawienie szeroko¶ci strony zawsze do " +"SZEROKO¦CI_STRONY\n" +" (72), obcinanie linii, chyba ¿e jest u¿yta opcja -J; " +"nie\n" +" przeszkadza opcjom -S ani -s.\n" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" +"\n" +"-T jest w³±czane gdy u¿yte jest -l nn kiedy nn <= 10 lub <= 3 z -F.\n" +"Je¿eli PLIK nie jest podany lub PLIK to -, czytane jest standardowe " +"wej¶cie.\n" + +#: src/printenv.c:43 +msgid "David MacKenzie and Richard Mlynarik" +msgstr "David MacKenzie i Richard Mlynarik" + +#: src/printenv.c:63 +#, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" +"Sk³adnia: %s [ZMIENNA]...\n" +" albo: %s OPCJA\n" +"Je¿eli nie jest podana ¿adna zmienna ¶rodowiskowa, wypisywane s± wszystkie.\n" +"\n" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "uwaga: %s: znaki nastêpuj±ce po sta³ej znakowej zosta³y zignorowane" + +#: src/printf.c:100 +#, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"Sk³adnia: %s FORMAT [ARGUMENT]...\n" +" albo: %s OPCJA\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" +"Wypisuje ARGUMENT(Y) zgodnie z FORMATEM.\n" +"\n" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" +"\n" +"FORMAT wyj¶cia jak w funkcji C printf. Rozpoznawane sekwencje:\n" +"\n" +" \\\" cudzys³ów\n" +" \\0NNN znak o ósemkowej warto¶ci NNN (0 do 3 cyfr)\n" +" \\\\ uko¶nik odwrotny (ang. backslash)\n" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" +" \\a dzwonek (BEL)\n" +" \\b znak cofania (ang. backspace)\n" +" \\c zatrzymanie dalszego wy¶wietlania\n" +" \\f przesuniêcie o stronê (FF)\n" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\n znak nowej linii\n" +" \\r powrót karetki (CR)\n" +" \\t tabulator poziomy\n" +" \\v tabulator pionowy\n" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" +" \\xNN znak o szesnastkowym kodzie NN (1 do 2 cyfr)\n" +"\n" +" \\uNNNN znak o szesnastkowym kodzie NNNN (4 cyfry)\n" +" \\UNNNNNNNN znak o szesnastkowym kodzie NNNNNNNN (8 cyfr)\n" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" +" %% pojedynczy %\n" +" %b ARGUMENT ze zinterpretowanymi sekwencjami `\\'\n" +"\n" +"i wszystkie specyfikacje formatu C zakoñczone jednym ze znaków\n" +"diouxXfeEgGcs, z ARGUMENTAMI przekszta³conymi najpierw do odpowiednich\n" +"typów. S± obs³ugiwane zmienne szeroko¶ci.\n" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "%s: spodziewana warto¶æ liczbowa" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "%s: warto¶æ nie przekszta³cona w ca³o¶ci" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "brak liczby szesnastkowej w sekwencji" + +#: src/printf.c:292 +#, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "b³êdna nazwa znaku uniwersalnego \\%c%0*x" + +#: src/printf.c:472 +#, c-format +msgid "invalid field width: %s" +msgstr "b³êdna szeroko¶æ pola: %s" + +#: src/printf.c:498 +#, c-format +msgid "invalid precision: %s" +msgstr "b³±d specyfikacji precyzji: %s" + +#: src/printf.c:519 +#, c-format +msgid "%%%c: invalid directive" +msgstr "%%%c: b³êdna dyrektywa" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "Sk³adnia: %s format [argument...]\n" + +#: src/printf.c:594 +#, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "uwaga: nadmiarowe argumenty pocz±wszy od `%s' zosta³y zignorowane" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "%s (dla wyr. regularnego `%s')" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"Sk³adnia: %s [OPCJA]... [WEJ¦CIE]... (bez -G)\n" +" albo: %s -G [OPCJA]... [WEJ¦CIE [WYJ¦CIE]]\n" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" +"Pokazanie indeksu s³ów z plików wej¶ciowych razem z kontekstem.\n" +"\n" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" +" -A, --auto-reference wypisanie automatycznie wygenerowanych\n" +" odno¶ników\n" +" -C, --copyright wy¶wietlenie informacji licencyjnych\n" +" -G, --traditional zachowanie zgodno¶ci z wersj± ptx z Systemu " +"V\n" +" -F, --flag-truncation=£AÑCUCH u¿ycie £AÑCUCHA do zaznaczania wyciêtych " +"linii\n" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" +" -M, --macro-name=£AÑCUCH nazwa makra u¿ywanego zamiast `xx'\n" +" -O, --format=roff wyj¶cie w postaci dyrektyw roff-a\n" +" -R, --right-side-refs umieszczenie odno¶ników po prawej, nie\n" +" liczone w -w\n" +" -S, --sentence-regexp=REGEXP REGEXP dla okre¶lenia koñców linii lub " +"zdañ\n" +" -T, --format=tex generowanie wyj¶cia w postaci dyrektyw TeX-" +"a\n" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" +" -W, --word-regexp=REGEXP u¿ycie REGEXPa do rozpoznawania s³ów\n" +" kluczowych\n" +" -b, --break-file=PLIK znaki rozdzielaj±ce s³owa s± w tym PLIKU\n" +" -f, --ignore-case traktowanie ma³ych liter jak wielkich przy\n" +" sortowaniu\n" +" -g, --gap-size=LICZBA odstêp w kolumnach miêdzy polami " +"wyj¶ciowymi\n" +" -i, --ignore-file=PLIK czytanie listy ignorowanych s³ów z PLIKU\n" +" -o, --only-file=FILE uwzglêdnienie tylko s³ów z PLIKU\n" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" +" -r, --references pierwsze pole ka¿dej linii jest " +"odno¶nikiem\n" +" -t, --typeset-mode - nie zaimplementowane -\n" +" -w, --width=NUMBER szeroko¶æ wyj¶cia w kolumnach, bez " +"odno¶ników\n" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" +"\n" +"Je¿eli PLIK nie jest podany albo PLIK to -, czytane jest standardowe " +"wej¶cie.\n" +"Domy¶lnie u¿yta jest opcja `-F /'.\n" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" +"Ten program jest darmowy; mo¿na go rozprowadzaæ i/lub modyfikowaæ\n" +"przestrzegaj±c warunków Powszechnej Licencji Publicznej GNU (General Public\n" +"Licence) opublikowanej przez Free Software Foundation, w wersji 2 lub, do\n" +"wyboru, dowolnej po¼niejszej.\n" +"\n" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" +"Ten program ten jest rozprowadzany w nadziei, ¿e bêdzie przydatny,\n" +"ale BEZ ¯ADNEJ GWARANCJI, nawet bez domy¶lnej gwarancji JAKO¦CI\n" +"lub PRZYDATNO¦CI DO KONKRETNYCH ZASTOSOWAÑ. Szczegó³y znajduj± siê\n" +"w Powszechnej Licencji Publicznej GNU.\n" +"\n" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" +"Kopia Powszechnej Licencji Publicznej GNU powinna byæ dostarczona wraz\n" +"z tym programem. Je¶li nie, mo¿na napisaæ do Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" +"Wypisanie pe³nej nazwy bie¿±cego katalogu.\n" +"\n" + +#: src/pwd.c:74 +msgid "ignoring non-option arguments" +msgstr "zignorowano argumenty nie bêd±ce opcjami" + +#: src/pwd.c:78 +msgid "cannot get current directory" +msgstr "nie mo¿na odczytaæ bie¿±cego katalogu" + +#: src/readlink.c:69 +#, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "Sk³adnia: %s [OPCJA]... PLIK\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" +"Wy¶wietlenie warto¶ci dowi±zania symbolicznego na standardowym wyj¶ciu.\n" +"\n" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" +" -f, --canonicalize doprowadzenie do postaci typowej przez rekursywne\n" +" rozwi±zanie ka¿dego dowi±zania symbolicznego w\n" +" ka¿dym sk³adniku podanej ¶cie¿ki\n" +" -n, --no-newline bez wypisywania koñcowego znaku nowej linii\n" +" -q, --quiet,\n" +" -s, --silent bez pokazywania wiêkszo¶ci komunikatów o b³êdach\n" +" -v, --verbose pokazywanie komnikatów o b³êdach\n" + +#: src/remove.c:394 +#, c-format +msgid "cannot chdir from %s to .." +msgstr "nie mo¿na przej¶æ z %s do .." + +#: src/remove.c:407 src/remove.c:488 +#, c-format +msgid "cannot lstat `.' in %s" +msgstr "nie mo¿na wykonaæ lstat `.' w %s" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "%s zmieni³ urz±dzenie/i-wêze³" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, c-format +msgid "cannot lstat %s" +msgstr "nie mo¿na wykonaæ lstat na %s" + +#: src/remove.c:603 +#, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "%s: wej¶æ w katalog %s, zabezpieczony przez zapisem? " + +#: src/remove.c:604 +#, c-format +msgid "%s: descend into directory %s? " +msgstr "%s: przej¶æ do katalogu %s? " + +#: src/remove.c:614 +#, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: usun±æ zabezpieczony przez zapisem %s %s? " + +#: src/remove.c:615 +#, c-format +msgid "%s: remove %s %s? " +msgstr "%s: usun±æ %s %s? " + +#: src/remove.c:639 +#, c-format +msgid "removed %s\n" +msgstr "usuniêty %s\n" + +#: src/remove.c:654 src/remove.c:1059 +#, c-format +msgid "removed directory: %s\n" +msgstr "usuniêty katalog %s\n" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, c-format +msgid "cannot remove directory %s" +msgstr "nie mo¿na usun±æ katalogu %s" + +#: src/remove.c:815 +#, c-format +msgid "cannot open directory %s" +msgstr "nie mo¿na otworzyæ katalogu %s" + +#: src/remove.c:896 src/remove.c:1002 +#, c-format +msgid "cannot chdir from %s to %s" +msgstr "nie mo¿na przej¶æ z %s do %s" + +#: src/remove.c:904 +#, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +"UWAGA: Cykliczna struktura katalogów.\n" +"Prawie na pewno oznacza to, ¿e system plików jest uszkodzony.\n" +"NALE¯Y ZAWIADOMIÆ ADMINISTRATORA SYSTEMU.\n" +"Nastêpuj±cy katalog jest czê¶ci± cyklu:\n" +" %s\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "nie mo¿na usun±æ `.' lub `..'" + +#: src/rm.c:60 +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "Paul Rubin, David MacKenzie, Richard Stallman i Jim Meyering" + +#: src/rm.c:99 src/touch.c:244 +#, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "Sk³adnia: %s [OPCJA]... PLIK...\n" + +#: src/rm.c:100 +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Usuwanie (unlink) PLIKU/ÓW.\n" +"\n" +" -d, --directory usuniêcie PLIKU, nawet je¿eli jest to niepusty " +"katalog\n" +" (tylko super-user)\n" +" -f, --force zignorowanie nieistniej±cych plików, wy³±czenie " +"pytañ\n" +" -i, --interactive pytanie przed ka¿dym usuniêciem pliku\n" +" -r, -R, --recursive usuwanie zawarto¶ci katalogów rekursywnie\n" +" -v, --verbose wyja¶nianie co siê dzieje\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" +"\n" +"¯eby usun±æ plik z nazw± zaczynaj±ca siê od `-', np. `-foo', mo¿na u¿yæ\n" +"jednego z poleceñ:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" +"\n" +"Warto zauwa¿yæ, ¿e po u¿yciu rm do usuniêcia pliku zazwyczaj mo¿na " +"odtworzyæ\n" +"jego zawarto¶æ. Gdy istnieje potrzeba pewniejszego zagwarantowania, ¿e\n" +"zawarto¶æ pliku jest rzeczywi¶cie nie do odtworzenia, nale¿y rozwa¿yæ " +"u¿ycie\n" +"programu shred.\n" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, c-format +msgid "removing directory, %s" +msgstr "usuwany katalog %s" + +#: src/rmdir.c:146 +#, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "Sk³adnia: %s [OPCJA]... KATALOG...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" +"Usuwanie pustych KATALOGÓW.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" zignorowanie b³êdów spowodowanych wy³±cznie tym, ¿e " +"katalog\n" +" nie jest pusty\n" + +#: src/rmdir.c:154 +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +" -p, --parents usuniêcie KATALOGU, potem próba usuniêcia ka¿dego " +"katalogu\n" +" nadrzêdnego tej ¶cie¿ki. Np,. `rmdir -p a/b/c jest " +"podobne\n" +" do `rmdir a/b/c a/b a'.\n" +" -v, --verbose informacja diagnostyczna o ka¿dym przetworzonym\n" +" katalogu\n" + +#: src/seq.c:82 +#, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"Sk³adnia: %s [OPCJA]... OSTATNIA\n" +" albo: %s [OPCJA]... PIERWSZA OSTATNIA\n" +" albo: %s [OPCJA]... PIERWSZA KROK OSTATNIA\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" +"Wy¶wietlenie liczb od PIERWSZEJ do OSTATNIEJ z krokiem KROK.\n" +"\n" +" -f, --format=FORMAT u¿ycie FORMATU w stylu zmiennoprzecinkowego " +"formatu\n" +" funkcji printf (domy¶lnie: %g)\n" +" -s, --separator=£AÑCUCH rozdzielenie liczb £AÑCUCHEM (domy¶lnie: \\n)\n" +" -w, --equal-width wype³nienie zerami do równej szeroko¶ci\n" + +#: src/seq.c:96 +#, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" +"\n" +"Je¿eli PIERWSZA lub KROK s± pominiête, maj± warto¶æ 1.\n" +"PIERWSZA, KROK i OSTATNIA s± interpretowane jako liczby zmiennoprzecinkowe.\n" +"KROK powinien byæ dodatni, je¶li PIERWSZA jest mniejsza od OSTATNIEJ lub\n" +"ujemny w przeciwnym wypadku. Podany FORMAT musi zawieraæ dok³adnie jeden\n" +"ze zmiennoprzecinkowych formatów wyj¶cia %e, %f lub %g.\n" + +#: src/seq.c:119 +#, c-format +msgid "invalid floating point argument: %s" +msgstr "b³êdny argument zmiennoprzecinkowy: %s" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "gdy warto¶æ pocz±tkowa jest wiêksza od koñcowej, krok musi byæ ujemny" + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" +"gdy warto¶æ pocz±tkowa jest mniejsza od koñcowej, krok musi byæ dodatni" + +#: src/seq.c:423 +#, c-format +msgid "invalid format string: `%s'" +msgstr "b³êdny format: `%s'" + +# ? - rzm +#: src/seq.c:445 +msgid "format string may not be specified when printing equal width strings" +msgstr "nie mo¿na podawaæ formatu, gdy drukowane s± ³añcuchy o równej d³ugo¶ci" + +#: src/shred.c:160 +#, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "Sk³adnia: %s [OPCJE] PLIK [...]\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" +"Wielokrotne zamazanie podanego PLIKU w celu utrudnienia odzyskania jego\n" +"zawarto¶ci nawet przy u¿yciu drogich urz±dzeñ do odzyskiwania danych.\n" +"\n" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" +" -f, --force zmiana uprawnieñ w razie potrzeby, ¿eby pozwoliæ na zapis\n" +" -n, --iterations=N zamazanie N razy zamiast domy¶lnych %d\n" +" -s, --size=N zamazanie N bajtów (mo¿na u¿ywaæ przyrostków typu K, M, G)\n" + +#: src/shred.c:174 +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" +" -u, --remove skrócenie i skasowanie pliku po zamazaniu\n" +" -v, --verbose pokazywanie przebiegu zamazywania\n" +" -x, --exact bez zaokr±glania rozmiarów plików w górê do pe³nych " +"bloków,\n" +" domy¶lnie dla plików innych ni¿ zwyk³e\n" +" -z, --zero dodatkowe zamazanie zerami, aby ukryæ zamazywanie\n" +" - zamazanie standardowego wyj¶cia\n" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" +"\n" +"Je¿eli podana jest opcja --remove (-u) PLIK jest kasowany. Domy¶lnie PLIK\n" +"nie jest kasowany, poniewa¿ czêsto operacje dotycz± plików urz±dzeñ, jak\n" +"/dev/hda, a takie pliki zwykle nie powinny byæ usuwane. Przy zamazywaniu\n" +"zwyk³ych plików zwykle u¿ywa siê opcji --remove.\n" +"\n" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" +"UWAGA: Nale¿y pamiêtaæ, ¿e shred opiera siê na wa¿nym za³o¿eniu: ¿e system\n" +"plików (i dysk) zamazuje dane w tym samym miejscu, gdzie je pierwotnie\n" +"zapisa³. Tak dzieje siê tradycyjnie, ale wiele nowoczesnych systemów plików\n" +"tak nie robi. Z nastêpuj±cymi systemami plików shred nie dzia³a efektywnie:\n" +"\n" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" +"* opartymi na logowaniu i journalingu, jak dostarczane z AIXem i Solarisem\n" +" (oraz JFS, ReiserFS, XFS, Ext3 itd.\n" +"\n" +"* takimi, które zapisuj± dane na dodatkowych dyskach i kontynuuj± pracê,\n" +" nawet je¿eli nie udaj± siê niektóre operacje zapisu, jak systemy RAID\n" +"\n" +"* które zapisuj± stan chwilowy, jak serwer NFS Network Appliance\n" +"\n" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" +"* u¿ywaj±cymi tymczasowego cache'a, jak klient wersji 3 NFS\n" +"\n" +"* kompresowanymi\n" +"\n" +"Dodatkowo backupy i zdalne kopie mog± zawieraæ egzemplarze tego samego " +"pliku,\n" +"które nie mog± zostaæ usuniête i plik zamazany schredem mo¿e zostaæ\n" +"odtworzony\n" + +#: src/shred.c:808 +#, c-format +msgid "%s: cannot rewind" +msgstr "%s: nie mo¿na przewin±æ" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "%s: przebieg %lu/%lu (%s)..." + +#: src/shred.c:868 +#, c-format +msgid "%s: error writing at offset %s" +msgstr "%s: b³±d zapisu na pozycji %s" + +#: src/shred.c:897 +#, c-format +msgid "%s: file too large" +msgstr "%s: plik jest za du¿y" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "%s: przebieg %lu/%lu (%s)...%s" + +#: src/shred.c:936 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "%s: przebieg %lu/%lu (%s)...%s/%s %d%%" + +#: src/shred.c:1195 +#, c-format +msgid "%s: invalid file type" +msgstr "%s: b³êdny typ pliku" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s: plik ma ujemny rozmiar" + +#: src/shred.c:1265 +#, c-format +msgid "%s: error truncating" +msgstr "%s: b³±d obcinania" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "%s: nie mo¿na zamazywaæ pliku tylko do dopisywania" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "%s: usuwanie" + +#: src/shred.c:1412 +#, c-format +msgid "%s: renamed to %s" +msgstr "%s: przemianowany na %s" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s: skasowany" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "%s: nie mo¿na skasowaæ pliku" + +#: src/shred.c:1551 +#, c-format +msgid "%s: invalid number of passes" +msgstr "%s: b³êdna liczba przebiegów" + +#: src/shred.c:1568 +#, c-format +msgid "%s: invalid file size" +msgstr "%s: b³êdny rozmiar pliku" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "Jim Meyering i Paul Eggert" + +#: src/sleep.c:52 +#, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" +"Sk³adnia: %s ILE[PRZYROSTEK]...\n" +" albo: %s OPCJA\n" +"Czekanie przez okre¶lon± LICZBÊ sekund. PRZYROSTKIEM mo¿e byæ s dla " +"oznaczenia\n" +"sekund (domy¶lnie), m - minut, h - godzin i d - dni. Inaczej ni¿ w " +"wiêkszo¶ci\n" +"implementacji, w których ILE musi byæ liczb± ca³kowit±, tutaj ILE mo¿e byæ\n" +"dowoln± liczb± zmiennoprzecinkow±.\n" +"\n" + +#: src/sleep.c:155 +#, c-format +msgid "invalid time interval `%s'" +msgstr "b³êdny odstêp czasowy `%s'" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "nie mo¿na odczytaæ zegara systemowego" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "Mike Haertel i Paul Eggert" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" +"Wypisanie posortowanego po³±czenia wszystkich PLIK(ÓW) na standardowym " +"wyj¶ciu\n" +"\n" +"Opcje porz±dkowania:\n" +"\n" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" +" -b, --ignore-leading-blanks zignorowanie pocz±tkowych spacji\n" +" -d, --dictionary-order branie pod uwagê tylko znaków odstêpu i\n" +" alfanumerycznych\n" +" -f, --ignore-case traktowanie ma³ych liter jak wielkich\n" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" +" -g, --general-numeric-sort porównywanie wed³ug warto¶ci liczbowej\n" +" -i, --ignore-nonprinting branie pod uwagê tylko znaków drukowalnych\n" +" -M, --month-sort porz±dek: (nieznany) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort porównywanie wed³ug warto¶ci liczbowych " +"³añcuchów\n" +" -r, --reverse odwrotny porz±dek sortowania\n" +"\n" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" +"Inne opcje:\n" +"\n" +" -c, --check sprawdzenie czy dane s± posortowane, bez " +"sortowania\n" +" -k, --key=POZ1[,POZ2] klucz zaczyna siê od POZYCJI1 i koñczy na " +"POZYCJI2\n" +" (numeracja od 1)\n" +" -m, --merge po³±czenie ju¿ posortowanych plików, bez " +"sortowania\n" +" -o, --output=PLIK zapisanie wyniku w PLIKU zamiast na " +"standardowym\n" +" wyj¶ciu\n" +" -s, --stable stabilizacja sortowania przez zablokowanie\n" +" porównania koñcowego\n" +" -S, --buffer-size=ROZM ROZMIAR g³ównego bufora pamiêci\n" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" +" -t, --field-separator=SEP u¿ycie SEPARATORA zamiast przej¶cia\n" +" odstêp - nie-odstêp\n" +" -T, --temporary-directory=KATALOG u¿ycie KATALOGU na pliki tymczasowe, " +"nie\n" +" $TMPDIR ani %s; wiêcej opcji to wiêcej " +"katalogów\n" +" -u, --unique z -c: sprawdzenie ¶cis³ego uporz±dkowania\n" +" bez -c: wypisanie tylko pierwszej z " +"identycznych\n" +" linii\n" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" +" -z, --zero-terminated zakoñczenie linii bajtem 0 zamiast znakiem " +"nowej\n" +" linii\n" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" +"\n" +"POZ to P[.Z][OPCJE], gdzie P to numer pola, a Z pozycja znaku w polu, oba\n" +"liczone od jedynki. OPCJE zawieraj± jedn± lub wiêcej liter, które dla tego\n" +"klucza s± wa¿niejsze ni¿ opcje globalne. Je¿eli nie jest podany klucz, ca³a\n" +"linia jest u¿ywana jako klucz.\n" +"\n" +"ROZMIAR mo¿e byæ uzupe³niony o nastêpuj±ce mno¿niki:\n" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" +"% - 1% pamiêci, b - 1, K - 1024 (domy¶lnie) itd. dla M, G, T, P, E, Z, Y.\n" +"\n" +"Je¿eli PLIK nie jest podany albo podany jako -, czytane jest standardowe\n" +"wej¶cie\n" +"\n" +"*** UWAGA ***\n" +"Locale ustawione przez zmienne ¶rodowiskowe wp³ywa na porz±dek sortowania.\n" +"Ustaw LC_ALL=C ¿eby przywróciæ tradycyjny porz±dek sortowania, który u¿ywa\n" +"dos³ownych warto¶ci bajtów.\n" + +#: src/sort.c:444 +msgid "cannot create temporary file" +msgstr "nie mo¿na utworzyæ pliku tymczasowego" + +#: src/sort.c:467 +msgid "open failed" +msgstr "b³±d otwierania pliku" + +#: src/sort.c:487 src/sort.c:2496 +msgid "close failed" +msgstr "b³±d zamykania pliku" + +#: src/sort.c:495 +msgid "write failed" +msgstr "b³±d zapisu" + +#: src/sort.c:641 +msgid "sort size" +msgstr "rozmiar bloku" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "b³±d stat" + +#: src/sort.c:972 +msgid "read failed" +msgstr "b³±d czytania" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "%s: %s:%s: nieuporz±dkowanie: " + +#: src/sort.c:1574 +msgid "standard error" +msgstr "standardowe wyj¶cie b³êdów" + +#: src/sort.c:2032 +#, c-format +msgid "%s: invalid field specification `%s'" +msgstr "%s: b³êdna specyfikacja pola `%s'" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "%s: liczba `%.*s' jest za du¿a" + +#: src/sort.c:2064 +#, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "%s: b³êdna liczba na pocz±tku `%s'" + +#: src/sort.c:2298 +msgid "invalid number after `-'" +msgstr "b³êdna liczba po `-'" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +msgid "invalid number after `.'" +msgstr "b³êdna liczba po `.'" + +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "nieprawid³owy znak w specyfikacji pola" + +#: src/sort.c:2338 +msgid "invalid number at field start" +msgstr "b³êdna liczba na pocz±tku pola" + +#: src/sort.c:2342 src/sort.c:2370 +msgid "field number is zero" +msgstr "numer pola wynosi zero" + +#: src/sort.c:2351 +msgid "character offset is zero" +msgstr "numer znaku wynosi zero" + +#: src/sort.c:2366 +msgid "invalid number after `,'" +msgstr "b³êdna liczba po `,'" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "wieloznakowy TAB `%s'" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "dodatkowy argument `%s' nie mo¿e byæ u¿yty z opcj± -c" + +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "Sk³adnia: %s [OPCJA] [PLIK [PRZEDROSTEK]]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" +"Zapisanie równych kawa³ków PLIKU do PRZEDROSTEKaa, PRZEDROSTEKab, ...;\n" +"domy¶lny PRZEDROSTEK to `x'. Je¿eli PLIK nie jest podany lub podano -,\n" +"czytane jest standardowe wej¶cie\n" +"\n" + +#: src/split.c:108 +#, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" +" -a, --suffix-length=N u¿ycie przyrostków o d³ugo¶ci N (domy¶lnie %d)\n" +" -b, --bytes=ROZMIAR zapisanie po ROZMIAR bajtów do plików wyj¶ciowych\n" +" -C, --line-bytes=ROZMIAR zapisanie najwy¿ej ROZMIAR bajtów pe³nych linii\n" +" -l, --lines=ILE zapis ILU linii do ka¿dego pliku wyj¶ciowego\n" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" +" --verbose przed otwarciem ka¿dego pliku wypisanie " +"komunikatów\n" +" diagnostycznych na standardowe wyj¶cie b³êdów\n" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "Zabrak³o przyrostków plików wyj¶ciowych" + +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "tworzenie pliku `%s'\n" + +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "nie mo¿na podzieliæ na wiêcej ni¿ jeden sposób" + +#: src/split.c:394 +#, c-format +msgid "%s: invalid suffix length" +msgstr "%s: b³êdna d³ugo¶æ przyrostka" + +#: src/split.c:408 src/split.c:434 +#, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: b³êdna liczba bajtów" + +#: src/split.c:421 +#, c-format +msgid "%s: invalid number of lines" +msgstr "%s: b³êdna liczba linii" + +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "opcja `-%d' jest przestarza³a, u¿ywaj `-l %d'" + +#: src/split.c:483 +msgid "invalid number" +msgstr "b³êdna liczba" + +#: src/stat.c:326 +msgid "*** invalid date/time ***" +msgstr "*** b³êdna data/czas ***" + +#: src/stat.c:608 +#, c-format +msgid "cannot read file system information for %s" +msgstr "nie mo¿na przeczytaæ informacji systemowych o %s" + +#: src/stat.c:684 +#, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "Sk³adnia: %s [OPCJA] PLIK...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" +"Pokazanie danych pliku albo systemu plików\n" +"\n" +" -f, --filesystem pokazanie danych systemu plików, a nie pliku\n" +" -c --format=FORMAT u¿ycie podanego FORMATU zamiast domy¶lnego\n" +" -L, --dereference rozwi±zywanie dowi±zañ symbolicznych\n" +" -t, --terse wypisywanie informacji w skróconej formie\n" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" +"\n" +"Prawid³owe specyfikacje formatu dla plików (bez opcji --filesystem):\n" +"\n" +" %A prawa dostêpu w postaci czytelnej dla cz³owieka\n" +" %a prawa dostêpu ósemkowo\n" +" %B rozmiar w bajtach ka¿dego bloku podanego przez `%b'\n" +" %b liczba zajêtych bloków (zobacz %B)\n" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" +" %D numer urz±dzenia szesnastkowo\n" +" %d numer urz±dzenia dziesiêtnie\n" +" %F typ pliku\n" +" %f tryb surowy, szesnastkowo\n" +" %G nazwa grupy w³a¶ciciela pliku\n" +" %g numer grupy w³a¶ciciela pliku\n" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" +" %h liczba dowi±zañ zwyk³ych\n" +" %i numer i-wêz³a\n" +" %N nazwa pliku w cudzys³owach, rozwi±zana je¿eli dowi±zanie symboliczne\n" +" %n nazwa pliku\n" +" %o rozmiar bloku wej¶cia/wyj¶cia\n" +" %s ca³kowity rozmiar w bajtach\n" +" %T mniejszy numer urz±dzenia szesnastkowo\n" +" %t wiêkszy numer urz±dzenia szesnastkowo\n" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" +" %U nazwa w³a¶ciciela\n" +" %u numer u¿ytkownika w³a¶ciciela\n" +" %X czas ostatniego czytania w sekundach od Epoki\n" +" %x czas ostatniego czytania\n" +" %Y czas ostatniej modyfikacji w sekundach od Epoki\n" +" %y czas ostatniej modyfikacji\n" +" %Z czas ostatniej zmiany czasu w sekundach od Epoki\n" +" %z czas ostatniej zmiany czasu\n" +"\n" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" +"Prawid³owe specyfikacje formatu dla systemów plików:\n" +"\n" +" %a liczba wolnych bloków dostêpnych dla zwyk³ego u¿ytkownika\n" +" %b ca³kowita liczba bloków danych w systemie plików\n" +" %c ca³kowita liczba i-wêz³ów w systemie plików\n" +" %d liczba wolnych i-wêz³ów w systemie plików\n" +" %f liczba wolnych bloków w systemie plików\n" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" +" %i identyfikator systemu plików szesnastkowo\n" +" %l maksymalna d³ugo¶æ nazw plików\n" +" %n nazwa pliku\n" +" %s optymalny rozmiar bloku przy zapisie/odczycie\n" +" %T typ w formie czytelnej dla cz³owieka\n" +" %t typ szesnastkowo\n" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" +"Sk³adnia: %s [-F URZ¡DZENIE] [--file=URZ¡DZENIE] [USTAWIENIA]...\n" +" albo: %s [-F URZ¡DZENIE] [--file=URZ¡DZENIE] [-a|--all]\n" +" albo: %s [-F URZ¡DZENIE] [--file=URZ¡DZENIE] [-g|--save]\n" + +#: src/stty.c:504 +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" +"Wy¶wietlenie lub zmiana ustawieñ terminala.\n" +"\n" +" -a, --all wy¶wietlenie wszystkich aktualnych ustawieñ w postaci\n" +" czytelnej dla cz³owieka\n" +" -g, --save wy¶wietlenie wszystkich aktualnych ustawieñ w formacie\n" +" czytelnym dla stty\n" +" -F, --file=URZ¡DZENIE otwarcie i u¿ywanie podanego URZ¡DZENIA zamiast\n" +" standardowego wej¶cia\n" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" +"\n" +"Opcjonalny minus przed USTAWIENIEM oznacza zaprzeczenie. Gwiazdka * oznacza\n" +"ustawienia spoza POSIX. System sam okre¶la, które ustawienia s± dostêpne.\n" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" +"\n" +"Znaki specjalne:\n" +" * dsusp ZNAK ZNAK wysy³a do terminala sygna³ stopu po opró¿nieniu " +"wej¶cia\n" +" eof ZNAK ZNAK wysy³a znak koñca pliku (koñca wej¶cia)\n" +" eol ZNAK ZNAK wysy³a znak koñca linii\n" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" +" * eol2 ZNAK alternatywny ZNAK koñca linii\n" +" erase ZNAK ZNAK kasuje ostatni wprowadzony znak\n" +" intr ZNAK ZNAK wysy³a sygna³ przerwania\n" +" kill ZNAK ZNAK kasuje bie¿±c± liniê\n" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" +" * lnext ZNAK ZNAK wprowadza nastêpny znak w cudzys³owie\n" +" quit ZNAK ZNAK wysy³a sygna³ wyj¶cia\n" +" * rprnt ZNAK ZNAK powtarza bie¿±c± liniê\n" +" start ZNAK ZNAK wznawia wy¶wietlanie\n" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" +" stop ZNAK ZNAK wstrzymuje wy¶wietlanie\n" +" susp ZNAK ZNAK wysy³a do terminala sygna³ stop\n" +" * swtch ZNAK ZNAK w³±cza inn± warstwê pow³oki\n" +" * werase ZNAK ZNAK kasuje ostatnie wprowadzone s³owo\n" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" +"\n" +"Ustawienia specjalne:\n" +" N ustawienie prêdko¶ci wyj¶ciowej i wej¶ciowej na N bitów/s\n" +" * cols N ustawienie szeroko¶ci terminala na N kolumn\n" +" * columns N to samo co cols N\n" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" +" ispeed N ustawienie prêdko¶ci wej¶ciowej na N\n" +" * line N u¿ycie rygoru linii (line discipline) N\n" +" min N z -icanon ustawienie minimum N znaków pe³nego odczytu\n" +" ospeed N ustawienie prêdko¶ci wyj¶ciowej na N\n" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" +" * rows N ustawienie d³ugo¶ci terminala na N wierszy\n" +" * size wy¶wietlenie liczby wierszy i kolumn wed³ug ustawieñ j±dra\n" +" speed wy¶wietlenie prêdko¶ci terminala\n" +" time N z -icanon ustawienie timeout na N dziesi±tych sekundy\n" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" +"\n" +"Ustawienia steruj±ce:\n" +" [-]clocal wy³±czenie sygna³ów sterowania modemu\n" +" [-]cread w³±czenie odbioru z wej¶cia\n" +" * [-]crtscts w³±czenie protoko³u RTS/CTS (handshaking)\n" +" csN ustawienie wielko¶ci znaku na N bitów, N w zakresie [5..8]\n" + +#: src/stty.c:570 +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" +" [-]cstopb u¿ycie dwóch bitów stopu na znak (jeden z `-')\n" +" [-]hup wys³anie sygna³u roz³±czenia gdy ostatni proces zamknie\n" +" terminal\n" +" [-]hupcl to samo co [-]hup\n" +" [-]parenb w³±czenie ustawiania i sprawdzania bitu parzysto¶ci\n" +" [-]parodd w³±czenie parzysto¶ci nieparzystej (parzystej z `-')\n" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" +"\n" +"Ustawienia wej¶cia:\n" +" [-]brkint znaki break powoduj± wys³anie sygna³u przerwania\n" +" [-]icrnl zamienianie znaków CR na NL\n" +" [-]ignbrk ignorowanie znaku break\n" +" [-]igncr ignorowanie znaku CR\n" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" +" [-]ignpar ignorowanie znaków z b³êdami parzysto¶ci\n" +" * [-]imaxbel piszczenie przy pe³nym buforze (bez jego opró¿niania) po\n" +" wprowadzeniu znaku\n" +" [-]inlcr zamienianie znaków NL na CR\n" +" [-]inpck w³±czenie kontroli parzysto¶ci na wej¶ciu\n" +" [-]istrip zerowanie najstarszego (ósmego) bitu znaków na wej¶ciu\n" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" +" * [-]iuclc zamienianie wielkich liter na ma³e\n" +" * [-]ixany ka¿dy znak wznawia transmisjê, nie tylko start\n" +" [-]ixoff w³±czenie wysy³ania znaków start/stop\n" +" [-]ixon w³±czenie protoko³u sterowania przep³ywem XON/XOF\n" +" [-]parmrk zaznaczanie b³êdów parzysto¶ci sekwencj± 255-0-znak\n" +" [-]tandem to samo co [-]ixoff\n" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" +"\n" +"Ustawienia dla wyj¶cia:\n" +" * bsN styl opó¼nienia po znaku BS, N w zakresie [0..1]\n" +" * crN styl opó¼nienia po znaku CR, N w zakresie [0..3]\n" +" * ffN styl opó¼nienia po znaku FF, N w zakresie [0..1]\n" +" * nlN styl opó¼nienia po znaku NL, N w zakresie [0..1]\n" + +#: src/stty.c:608 +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" +" * [-]ocrnl zamienianie znaku CR na NL\n" +" * [-]ofdel u¿ywanie znaku DEL zamiast NUL jako znaku wype³niaj±cego\n" +" * [-]ofill u¿ywanie znaków wype³niaj±cych zamiast opó¼nieñ transmisji\n" +" * [-]olcuc zamienianie ma³ych liter na wielkie\n" +" * [-]onlcr zamienianie znaków NL na sekwencje CR-NL\n" +" * [-]onlret znak NL powoduje powrót karetki (carriage return)\n" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" +" * [-]onocr bez wysy³ania znaków CR w pierwszej kolumnie\n" +" [-]opost przetwarzanie znaków wyj¶ciowych\n" +" * tabN styl opó¼nienia po tabulatorze poziomym, N w zakresie " +"[0..3]\n" +" * tabs to samo co tab0\n" +" * -tabs to samo co tab3\n" +" * vtN styl opó¼nienia po tabulatorze pionowym, N w zakresie " +"[0..1]\n" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" +"\n" +"Ustawienia lokalne:\n" +" [-]crterase wy¶wietlanie znaku erase jako BS-spacja-BS\n" +" * crtkill kasowanie ca³ej linii zgodnie z ustawieniami echoprt i " +"echoe\n" +" * -crtkill kasowanie ca³ej linii zgodnie z ustawieniami echoctl i " +"echok\n" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" +" * [-]ctlecho wy¶wietlanie znaków kontrolnych jako `^c' itp.\n" +" [-]echo wy¶wietlanie ka¿dego znaku z wej¶cia\n" +" * [-]echoctl to samo co [-]ctlecho\n" +" [-]echoe to samo co [-]crterase\n" +" [-]echok wy¶wietlanie znaku nowej linii po znaku kill\n" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" +" * [-]echoke to samo co [-]crtkill\n" +" [-]echonl wy¶wietlanie znaku NL nawet je¶li inne nie s± wy¶wietlane\n" +" * [-]echoprt wy¶wietlanie skasowanych znaków wstecz miêdzy `\\' i `/'\n" +" [-]icanon wy¶wietlanie znaków erase, kill, werase i rprnt\n" +" [-]iexten wy¶wietlanie znaków spoza specyfikacji POSIX\n" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" +" [-]isig wy¶wietlanie znaków intr, quit i susp\n" +" [-]noflsh bez opró¿niania bufora po znakach intr i quit\n" +" * [-]prterase to samo co [-]echoprt\n" +" * [-]tostop zatrzymywanie procesów w tle, próbuj±cych pisaæ na " +"terminal\n" +" * [-]xcase z icanon: wy¶wietlanie wielkich liter jako `\\ma³a-litera'\n" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" +"\n" +"Kombinacje ustawieñ:\n" +" * [-]LCASE jak [-]lcase\n" +" cbreak jak -icanon\n" +" -cbreak jak icanon\n" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" +" cooked jak brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof i eol ustawione na warto¶ci domy¶lne\n" +" -cooked jak raw\n" +" crt jak echoe echoctl echoke\n" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" +" dec jak echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq jak [-]ixany\n" +" ek ustawienie znaków erase i kill na warto¶ci domy¶lne\n" +" evenp jak parenb -parodd cs7\n" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" +" -evenp jak -parenb cs8\n" +" * [-]lcase jak xcase iuclc olcuc\n" +" litout jak -parenb -istrip -opost cs8\n" +" -litout jak parenb istrip opost cs7\n" +" nl jak -icrnl -onlcr\n" +" -nl jak icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" +" oddp jak parenb parodd cs7\n" +" -oddp jak -parenb cs8\n" +" [-]parity jak [-]evenp\n" +" pass8 jak -parenb -istrip cs8\n" +" -pass8 jak parenb istrip cs7\n" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" +" raw jak -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw jak cooked\n" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" +" sane jak cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iucl -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, wszystkie znaki\n" +" specjalne przybieraj± standardowe warto¶ci.\n" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" +"\n" +"Obs³uga linii terminalowej pod³±czonej do standardowego wej¶cia.\n" +"Bez argumentów wy¶wietla prêdko¶æ transmisji, rygor linii i odchylenia\n" +"od stty sane. W ustawieniach ZNAK powinien byæ podany dos³ownie lub\n" +"zakodowany np. ^c, 0x37, 0177 lub 127; warto¶æ ^- lub s³owo undef s±\n" +"u¿ywane do wy³±czania znaków specjalnych.\n" + +#: src/stty.c:787 +msgid "only one device may be specified" +msgstr "mo¿e byæ podane tylko jedno urz±dzenie" + +#: src/stty.c:882 +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "opcje --all i --save wzajemnie siê wykluczaj±" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "tryb nie mo¿e byæ ustawiany, gdy podany jest format wyj¶cia" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "%s: zresetowanie trybu nie blokuj±cego nie by³o mo¿liwe" + +#: src/stty.c:957 src/stty.c:1064 +#, c-format +msgid "invalid argument `%s'" +msgstr "b³êdny argument `%s'" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, c-format +msgid "missing argument to `%s'" +msgstr "brakuj±cy argument `%s'" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "%s: wykonanie wszystkich ¿±danych operacji by³o niemo¿liwe" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "nowy_tryb: tryb\n" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "%s: brak informacji o wielko¶ci tego urz±dzenia" + +#: src/stty.c:1944 +#, c-format +msgid "invalid integer argument `%s'" +msgstr "b³êdny argument ca³kowity `%s'" + +#: src/su.c:289 +msgid "Password:" +msgstr "Has³o:" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "getpass: otwarcie /dev/tty niemo¿liwe" + +#: src/su.c:350 +msgid "cannot set groups" +msgstr "nie mo¿na ustawiæ grup" + +#: src/su.c:354 +msgid "cannot set group id" +msgstr "nie mo¿na ustawiæ identyfikatora grupy" + +#: src/su.c:356 +msgid "cannot set user id" +msgstr "nie mo¿na ustawiæ identyfikatora u¿ytkownika" + +#: src/su.c:437 +#, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "Sk³adnia: %s [OPCJA]... [-] [U¯YTKOWNIK [ARGUMENT]...]\n" + +#: src/su.c:438 +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" +"Zmiana efektywnego identyfikatora u¿ytkownika i grupy na identyfikator\n" +"U¯YTKOWNIKA.\n" +"\n" +" -, -l, --login uruchomienie pow³oki podstawowej (login " +"shell)\n" +" -c, --command=POLECENIE przekazanie POLECENIA pow³oce opcj± -c\n" +" -f, --fast przekazanie -f pow³oce (dla csh lub tcsh)\n" +" -m, --preserve-environment bez kasowania zmiennych ¶rodowiskowych\n" +" -p to samo co -m\n" +" -s, --shell=POW£OKA uruchomienie POW£OKI, je¶li /etc/shells " +"pozwala\n" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" +"\n" +"Sam - jest równoznaczny -l. Je¶li brak U¯YTKOWNIKA, domy¶lnym jest root.\n" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "u¿ytkownik %s nie istnieje" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "niepoprawne has³o" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "u¿ycie pow³oki z ograniczeniami %s" + +#: src/su.c:580 +#, c-format +msgid "warning: cannot change directory to %s" +msgstr "uwaga: nie mo¿na zmieniæ katalogu na %s" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "Kayvan Aghaiepour i David MacKenzie" + +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" +"Wypisanie sumy kontrolnej i liczby bloków dla ka¿dego PLIKU.\n" +"\n" +" -r u¿ycie algorytmu BSD i bloków po 1 KB\n" +" -s, --sysv u¿ycie algorytmu Systemu V i bloków po 512 bajtów\n" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" +"Wymuszenie zapisu zmienionych bloków na dysk, aktualizacja super-bloku.\n" +"\n" + +#: src/sync.c:70 src/tty.c:112 +msgid "ignoring all arguments" +msgstr "wszystkie argumenty zosta³y zignorowane" + +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr " --help wy¶wietlenie tego opisu i zakoñczenie\n" + +#: src/sys2.h:494 +msgid " --version output version information and exit\n" +msgstr " --version wy¶wietlenie informacji o wersji i zakoñczenie\n" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "Jay Lepreau i David MacKenzie" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Przepisanie ka¿dego PLIKU na standardowe wyj¶cie, w odwrotnym porz±dku:\n" +"ostatnia linia pierwsza. Je¿eli PLIK nie jest podany lub PLIK to -, czytane\n" +"jest standardowe wej¶cie.\n" +"\n" + +#: src/tac.c:139 +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" +" -b, --before do³±czenie separatora przed zamiast po\n" +" -r, --regex interpretowanie separatora jako wyr. regularnego\n" +" -s, --separator=£AÑCUCH u¿ycie £AÑCUCHA jako separatora zamiast nowej " +"linii\n" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "stdin: b³±d odczytu" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "separator nie mo¿e byæ pusty" + +#: src/tail.c:49 +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "Paul Rubin, David MacKenzie, Ian Lance Taylor i Jim Meyering" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Wypisanie %d ostatnich linii ka¿dego PLIKU na standardowym wyj¶ciu.\n" +"Dla wiêkszej liczby PLIKÓW ka¿da porcja ma nag³ówek z nazw±. Je¿eli PLIK " +"nie\n" +"jest podany lub PLIK to -, czytane jest standardowe wej¶cie.\n" +"\n" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" +" --retry sta³e ponawianie próby otwierania pliku\n" +" -c, --bytes=N wypisanie ostatnich N bajtów\n" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" +" -f, --follow[={name|descriptor}]\n" +" wypisywanie nowych danych kiedy plik ro¶nie;\n" +" -f, --follow i --follow=descriptor s±\n" +" równowa¿ne\n" +" -F to samo co --follow=name --retry\n" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" +" -n, --lines=N wypisanie ostatnich N linii zamiast ostatnich %d\n" +" --max-unchanged-stats=N z --follow=name powoduje ponowne otwieranie\n" +" PLIKU, który nie zmieni³ rozmiaru po N " +"(domy¶lnie\n" +" %d) iteracjach, ¿eby sprawdziæ czy zosta³ " +"usuniêty\n" +" albo przemianowany (czêsty przypadek dla logów)\n" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" +" --pid=PID z -f - zakoñczenie pracy po zakoñczeniu procesu " +"o\n" +" numerze PID\n" +" -q, --quiet, --silent bez wypisywania nag³ówków z nazwami plików\n" +" -s, --sleep-interval=S z -f - odczekanie za ka¿dym razem S sekund\n" +" -v, --verbose wypisywanie zawsze nag³ówków z nazwami plików\n" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" +"\n" +"Je¿eli pierwszy znak N (liczby bajtów lub linii) to `+', pisanie zaczyna\n" +"siê od N-tego elementu od pocz±tku ka¿dego pliku. W przeciwnym wypadku\n" +"wypisanych jest ostatnich N elementów pliku. N mo¿e mieæ mno¿nik: b - 512, " +"k\n" +"1024 albo m - 1048576 (1 mega).\n" +"\n" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" +"Z --follow (-f) tail domy¶lnie ¶ledzi przyrosty zawarto¶ci pliku o " +"okre¶lonym\n" +"deskryptorze, wiêc nawet po zmianie nazwy ¶ledzi ten sam plik. " + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" +"To zachowanie\n" +"jest niepo¿±dane, je¿eli ¶ledzony ma byæ plik o okre¶lonej nazwie (np.\n" +"plik loga podlegaj±cy rotacji). W tym przypadku nale¿y u¿yæ --follow=name, " +"co\n" +"powoduje, ¿e tail ¶ledzi podany plik, otwieraj±c go co jaki¶ czas ponownie,\n" +"¿eby sprawdziæ, czy nie zosta³ usuniêty i ponownie utworzony przez jaki¶ " +"inny\n" +"program.\n" + +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "zamykanie %s (fd=%d)" + +#: src/tail.c:391 +#, c-format +msgid "%s: cannot seek to offset %s" +msgstr "%s: nie mo¿na ustawiæ pozycji %s" + +#: src/tail.c:395 +#, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "%s: nie mo¿na ustawiæ pozycji wzglêdnej %s" + +#: src/tail.c:400 +#, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "%s: nie mo¿na ustawiæ pozycji %s wzglêdem koñca pliku" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "`%s' sta³ siê niedostêpny" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "" +"`%s' zosta³ zamieniony na plik, którego nie mo¿na ¶ledziæ tailem; koniec " +"¶ledzenia" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "`%s' sta³ siê dostêpny" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "`%s' pojawi³ siê; ¶ledzenie koñca nowego pliku" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "`%s' zosta³ podmieniony; ¶ledzenie koñca nowego pliku" + +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "%s: plik obciêty" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "nie ma wiêcej plików" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "%s: pliku tego typu nie mo¿na ¶ledziæ" + +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "%c: b³êdny znak przyrostka w przestarza³ej opcji" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"za du¿o argumentów; Gdy jest u¿ywana przestarza³a sk³adnia taila (%s)\n" +"nie mo¿e byæ wiêcej ni¿ jeden argument plikowy. Nale¿y u¿yæ odpowiednika,\n" +"opcji -n albo -c." + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"Uwaga: nie jest przenaszalne u¿ywanie dwóch lub wiêcej plików jako\n" +"argumentów taila w przestarza³ej sk³adni (%s). U¿yj odpowiednika,\n" +"opcji -n albo -c" + +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "opcja `%s' jest przestarza³a; u¿yj `%s-%c %.*s'" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "%s jest wiêksze ni¿ maksymalny rozmiar pliku w tym systemie" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "" +"%s: b³êdna maksymalna liczba braków zmian stanów miêdzy otwarciami pliku" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "%s: b³êdna maksymalna liczba kolejnych zmian rozmiaru" + +#: src/tail.c:1534 +#, c-format +msgid "%s: invalid PID" +msgstr "%s: b³êdny PID" + +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: b³êdna liczba sekund" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "uwaga: opcja --retry jest przydatna tylko przy ¶ledzeniu nazwy" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "" +"uwaga: zignorowany PID; opcja --pid=PID jest przydatna tylko przy ¶ledzeniu" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "uwaga: opcja --pid=PID nie dzia³a w tym systemie" + +#: src/tee.c:33 +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "Mike Parker, Richard M. Stallman i David MacKenzie" + +#: src/tee.c:64 +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" +"Kopiuje standardowe wej¶cie do ka¿dego PLIKU oraz na standardowe wyj¶cie.\n" +"\n" +" -a, --append dopisywanie do PLIKU, nie nadpisywanie\n" +" -i, --ignore-interrupts ignorowanie sygna³ów przerwania\n" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "spodziewany argument\n" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "spodziewane wyra¿enie ca³kowite %s\n" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "spodziewany `)'\n" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "spodziewany `)', a jest %s\n" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "%s: spodziewany operator jednoargumentowy\n" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "%s: spodziewany operator dwuargumentowy\n" + +#: src/test.c:424 +msgid "before -lt" +msgstr "przed -lt" + +#: src/test.c:432 +msgid "after -lt" +msgstr "po -lt" + +#: src/test.c:446 +msgid "before -le" +msgstr "przed -le" + +#: src/test.c:453 +msgid "after -le" +msgstr "po -le" + +#: src/test.c:469 +msgid "before -gt" +msgstr "przed -gt" + +#: src/test.c:476 +msgid "after -gt" +msgstr "po -gt" + +#: src/test.c:490 +msgid "before -ge" +msgstr "przed -ge" + +#: src/test.c:497 +msgid "after -ge" +msgstr "po -ge" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "-nt nie dopuszcza -l\n" + +#: src/test.c:526 +msgid "before -ne" +msgstr "przed -ne" + +#: src/test.c:533 +msgid "after -ne" +msgstr "po -ne" + +#: src/test.c:549 +msgid "before -eq" +msgstr "przed -eq" + +#: src/test.c:556 +msgid "after -eq" +msgstr "po -eq" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "-ef nie dopuszcza -l\n" + +#: src/test.c:586 +msgid "-ot does not accept -l\n" +msgstr "-ot nie dopuszcza -l\n" + +#: src/test.c:593 +msgid "unknown binary operator" +msgstr "nieznany operator dwuargumentowy" + +#: src/test.c:781 +msgid "after -t" +msgstr "po -t" + +#: src/test.c:979 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"Sk³adnia: %s WYRA¯ENIE\n" +" albo: [ WYRA¯ENIE ]\n" +" albo: %s OPCJA\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" +"Koñczy pracê z kodem stanu zale¿nym od WYRA¯ENIA.\n" +"\n" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" +"\n" +"WYRA¯ENIE jest prawdziwe lub fa³szywe i ustala kod stanu, jeden z:\n" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" +"\n" +" ( WYRA¯ENIE ) WYRA¯ENIE jest prawdziwe\n" +" ! WYRA¯ENIE WYRA¯ENIE jest fa³szywe\n" +" WYRA¯ENIE1 -a WYRA¯ENIE2 WYRA¯ENIE1 i WYRA¯ENIE2 s± prawdziwe\n" +" WYRA¯ENIE1 -o WYRA¯ENIE2 WYRA¯ENIE1 lub WYRA¯ENIE2 jest prawdziwe\n" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" +"\n" +" [-n] £AÑCUCH £AÑCUCH ma d³ugo¶æ ró¿n± od zera\n" +" -z £AÑCUCH £AÑCUCH ma d³ugo¶æ równ± zero\n" +" £AÑCUCH1 = £AÑCUCH2 ³añcuchy s± równe\n" +" £AÑCUCH1 != £AÑCUCH2 ³añcuchy s± ró¿ne\n" + +#: src/test.c:1009 +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" +"\n" +" LICZBA1 -eq LICZBA2 LICZBA1 równa LICZBIE2 (liczby ca³kowite)\n" +" LICZBA1 -ge LICZBA2 LICZBA1 wiêksza lub równa LICZBIE2\n" +" LICZBA1 -gt LICZBA2 LICZBA1 wiêksza od LICZBY2\n" +" LICZBA1 -le LICZBA2 LICZBA1 mniejsza lub równa LICZBIE2\n" +" LICZBA1 -lt LICZBA2 LICZBA1 mniejsza od LICZBY2\n" +" LICZBA1 -ne LICZBA2 LICZBA1 jest ró¿na od LICZBY2\n" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" +"\n" +" PLIK1 -ef PLIK2 PLIK1 i PLIK2 maj± ten sam numer urz±dzenia i i-wêz³a\n" +" PLIK1 -nt PLIK2 PLIK1 jest nowszy ni¿ PLIK2 (wg daty modyfikacji)\n" +" PLIK1 -ot PLIK2 PLIK1 jest starszy ni¿ PLIK2\n" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" +"\n" +" -b PLIK PLIK istnieje i jest urz±dzeniem blokowym\n" +" -c PLIK PLIK istnieje i jest urz±dzeniem znakowym\n" +" -d PLIK PLIK istnieje i jest katalogiem\n" +" -e PLIK PLIK istnieje\n" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" +" -f PLIK PLIK istnieje i jest zwyk³ym plikiem\n" +" -g PLIK PLIK istnieje i ma atrybut set-group-id (SGID)\n" +" -h PLIK PLIK istnieje i jest dowi±zaniem symbolicznym (to samo co -" +"L)\n" +" -G PLIK PLIK istnieje i jego w³a¶cicielem jest efektywna grupa\n" +" -k PLIK PLIK istnieje i ma ustawiony bit ochrony (sticky bit)\n" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" +" -L PLIK PLIK istnieje i jest dowi±zaniem symbolicznym\n" +" -O PLIK PLIK istnieje i jego w³a¶cicielem jest efektywny u¿ytkownik\n" +" -p PLIK PLIK istnieje i jest potokiem z nazw± (named pipe)\n" +" -r PLIK PLIK istnieje i mo¿e byæ czytany\n" +" -s PLIK PLIK istnieje i ma d³ugo¶æ wiêksz± od zera\n" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" +" -S PLIK PLIK istnieje i jest gniazdem\n" +" -t [DP] deskryptor pliku DP (domy¶lnie standardowe wyj¶cie) jest\n" +" otwarty na terminalu\n" +" -u PLIK PLIK istnieje i ma atrybut set-user-id (SUID)\n" +" -w PLIK PLIK istnieje i mo¿e byæ zapisywany\n" +" -x PLIK PLIK istnieje i jest wykonywalny\n" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" +"\n" +"Nale¿y zwróciæ uwagê na to, ¿e nawiasy musz± byæ chronione (np. przez `\\')\n" +"przed interpretacj± przez pow³okê. LICZBA musi byæ ca³kowita i mo¿e mieæ " +"tak¿e\n" +"postaæ -l £AÑCUCH, czyli d³ugo¶æ £AÑCUCHA.\n" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "FIXME: ksb i mjb" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "brak `]'\n" + +#: src/test.c:1125 +msgid "too many arguments\n" +msgstr "za du¿o argumentów\n" + +#: src/touch.c:39 +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie i Randy Smith" + +#: src/touch.c:164 src/touch.c:179 +#, c-format +msgid "creating %s" +msgstr "utworzenie %s" + +#: src/touch.c:222 +#, c-format +msgid "cannot touch %s" +msgstr "nie mo¿na dotkn±æ %s" + +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "ustawienie czasu %s" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" +"Uaktualnienie czasu ostatniego odczytu lub modyfikacji ka¿dego PLIKU do\n" +"bie¿±cego czasu.\n" +"\n" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" +" -a zmiana tylko czasu dostêpu\n" +" -c, --no-create bez tworzenia nowych plików\n" +" -d, --date=£AÑCUCH u¿ycie £AÑCUCHA znaków zamiast bie¿±cego czasu\n" +" -f (ignorowane)\n" +" -m zmiana tylko czasu modyfikacji\n" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" +" -r, --reference=PLIK u¿ycie czasu tego PLIKU zamiast czasu bie¿±cego\n" +" -t CZAS u¿ycie [[CC]YY]MMDDhhmm[.ss] zamiast bie¿±cego " +"czasu\n" +" --time=S£OWO ustawienie czasu wg S£OWA: access atime use (czas\n" +" dostêpu, to samo co -a), modify mtime (czas\n" +" modyfikacji, to samo co -m)\n" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" +"\n" +"Nale¿y zauwa¿yæ, ¿e opcje -d i -t przyjmuj± ró¿ne formaty daty/czasu.\n" + +#: src/touch.c:311 src/touch.c:331 +#, c-format +msgid "invalid date format %s" +msgstr "b³êdny format daty %s" + +#: src/touch.c:355 +msgid "cannot specify times from more than one source" +msgstr "nie mo¿na podaæ czasu z wiêcej ni¿ jednego ¼ród³a" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "" +"uwaga: `touch %s' jest form± przestarza³±; u¿ywaj `touch -t %04d%02d%02d%02d%" +"02d.%02d'" + +#: src/touch.c:399 +msgid "file arguments missing" +msgstr "brak argumentu plikowego" + +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "Sk³adnia: %s [OPCJA]... ZBIÓR1 [ZBIÓR2]\n" + +#: src/tr.c:331 +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" +"Zamiana, usuniêcie wielokrotnych i/lub skasowanie znaków ze standardowego\n" +"wej¶cia. Wyniki s± zapisywane do standardowego wyj¶cia.\n" +"\n" +" -c, --complement zbiór znaków komplementarny do ZBIORU1\n" +" -d, --delete skasowanie znaków ze ZBIORU1, bez zamian\n" +" -s, --squeeze-repeats zamiana ci±gu takich samych znaków ze ZBIORU1 na\n" +" pojedyncze wyst±pienia takich znaków\n" +" -t, --truncate-set1 najpierw ZBIÓR1 jest obcinany do d³ugo¶ci ZBIORU2\n" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" +"\n" +"ZBIORY s± podawane jako ci±gi znaków. Wiêkszo¶æ znaków reprezentuje same\n" +"siebie. Specjalnie interpretowane ci±gi to:\n" +"\n" +" \\NNN znak o warto¶ci ósemkowej NNN (od 1 do 3 cyfr " +"ósemkowych)\n" +" \\\\ uko¶nik odwrotny\n" +" \\a znak BEL\n" +" \\b backspace\n" +" \\f nowa strona\n" +" \\n nowa linia\n" +" \\r powrót karetki\n" +" \\t tabulacja pozioma\n" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" +" \\v tabulacja pionowa\n" +" ZNAK1-ZNAK2 wszystkie znaki od ZNAK1 do ZNAK2, rosn±co\n" +" [ZNAK*] w ZBIORZE2 kopiuje ZNAK uzupe³niaj±c do d³ugo¶ci ZBIORU1\n" +" [ZNAK*POWTÓRZ] POWTÓRZ kopii ZNAKU, ósemkowo gdy zaczyna siê od 0\n" +" [:alnum:] wszystkie litery i cyfry\n" +" [:alpha:] wszystkie litery\n" +" [:blank:] wszystkie odstêpy poziome\n" +" [:cntrl:] wszystkie znaki steruj±ce\n" +" [:digit:] wszystkie cyfry\n" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" +" [:graph:] wszystkie znaki drukowalne oprócz spacji\n" +" [:lower:] wszystkie ma³e litery\n" +" [:print:] wszystkie znaki drukowalne w³±cznie ze spacj±\n" +" [:punct:] wszystkie znaki przestankowe\n" +" [:space:] wszystkie odstêpy poziome i pionowe\n" +" [:upper:] wszystkie wielkie litery\n" +" [:xdigit:] wszystkie cyfry szesnastkowe\n" +" [=ZNAK=] wszystkie znaki równowa¿ne ZNAKOWI\n" + +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" +"\n" +"Zamiana nastêpuje gdy nie jest podana opcja -d i s± podane oba zbiory " +"ZBIÓR1\n" +"i ZBIÓR2. -t mo¿e byæ u¿yte tylko przy zamianie. W razie potrzeby ZBIÓR2\n" +"jest uzupe³niany do d³ugo¶ci ZBIORU1 przez powtórzenie ostatniego znaku.\n" +"Nadmiarowe znaki ZBIORU2 s± ignorowane. " + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" +"Tylko [:lower:] i [:upper:] bêd± na\n" +"pewno rozwiniête w porz±dku rosn±cym; u¿yte w ZBIORZE2 przy zamianie, mog± " +"byæ\n" +"tylko zestawione w parach dla konwersji ma³e-wielkie litery. " + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" +"Je¿eli operacj±\n" +"nie jest ani zamiana ani kasowanie, -s u¿ywa ZBIORU1. W przeciwnym wypadku\n" +"u¿ywa ZBIORU2 i kompresja powtórzeñ zachodzi po zamianie i kasowaniu.\n" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" +"uwaga: niejednoznaczny zapis ósemkowy \\%c%c%c zostanie\n" +"\tzinterpretowany jako sekwencja 2-bajtowa \\0%c%c, `%c'" + +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "b³êdna sekwencja z backslashem na koñcu ³añcucha znaków" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "b³êdna sekwencja z backslashem `\\%c'" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "koñce zakresu `%s-%s' s± w odwrotnym porz±dku sortowania" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "b³êdna liczba powtórzeñ `%s' w specyfikacji [c*n]" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "brakuj±ca nazwa klasy znaków `[::]'" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "brakuj±cy znak dla klasy równowa¿no¶ci `[==]'" + +#: src/tr.c:1025 +#, c-format +msgid "invalid character class `%s'" +msgstr "b³êdna klasa znaków `%s'" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "%s: operand klasy równowa¿no¶ci musi byæ pojedynczym znakiem" + +# should it be string1 or SET1? +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "specyfikacja powtarzania [c*] nie mo¿e byæ w ZBIORZE1" + +# string2 or SET2? +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "tylko jedna specyfikacja powtarzania [c*] mo¿e byæ w ZBIORZE2" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "wyra¿enia [=c=] nie mog± byæ w ZBIORZE2 przy zamianie" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "je¿eli nie jest obcinany ZBIÓR1, ZBIÓR2 musi byæ niepusty" + +# ? - rzm +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" +"przy zamianie z u¿yciem dope³nieñ klas znaków,\n" +"ZBIÓR2 musi odwzorowywaæ wszystkie znaki z dziedziny na jeden" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" +"przy zamianie w ZBIORZE2 mog± siê pojawiæ tylko klasy znaków\n" +"`upper' i `lower'" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "specyfikacja [c*] mo¿e siê pojawiæ w ZBIORZE2 tylko przy zamianie" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "przy zamianie musz± byæ podane dwa zbiory" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "przy równoczesnym kasowaniu i kompresji powtórzeñ musz± byæ 2 zbiory" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "przy kasowaniu bez kompresji powtórzeñ mo¿e byæ podany tylko 1 zbiór" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "przy kompresji powtórzeñ musi byæ podany przynajmniej 1 zbiór" + +# ? - rzm +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "nie wyrównane konstrukcje [:upper:] i/lub [:lower:]" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" +"b³êdne odwzorowanie identyczno¶ci; przy t³umaczeniu ka¿de wyra¿enie [:" +"lower:]\n" +"lub [:upper:] w ZBIORZE1 musi byæ wyrównane z odpowiadaj±cym wyra¿eniem\n" +"(odpowiednio [:upper:] lub [:lower:]) w ZBIORZE2" + +#: src/true.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Sk³adnia: %s [linia poleceñ jest ignorowana]\n" +" albo: %s OPCJA\n" +"Koñczy pracê z kodem b³êdu oznaczaj±cym powodzenie.\n" +"\n" +"Nazwy tych opcji nie mog± byæ skrócone.\n" +"\n" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Sk³adnia: %s [OPCJA] [PLIK]\n" +"Wypisanie ca³kowicie uporz±dkowanej listy zgodnie z czê¶ciowym porz±dkiem\n" +"w PLIKU. Gdy nie podano PLIKU albo gdy PLIK to -, czytane jest standardowe\n" +"wej¶cie.\n" +"\n" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "%s: dane wej¶ciowe zawieraj± pêtlê:" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "mo¿e byæ podany tylko jeden argument" + +#: src/tty.c:63 +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" +"Napisanie nazwy terminala zwi±zanego ze standardowym wej¶ciem.\n" +"\n" +" -s, --silent, --quiet nic nie jest wypisywane, zwracany jest kod " +"powrotu\n" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "to nie jest terminal" + +#: src/uname.c:111 +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" +"Napisanie informacji o systemie. Bez opcji dzia³a jak z -s.\n" +"\n" +" -a, --all pokazanie wszystkich informacji w tej " +"kolejno¶ci:\n" +" -s, --kernel-name pokazanie nazwy j±dra systemu operacyjnego\n" +" -n, --nodename pokazanie sieciowej nazwy systemu\n" +" -r, --kernel-release pokazanie numeru edycji j±dra systemu\n" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" +" -v, --kernel-version pokazanie numeru wersji j±dra systemu\n" +" -m, --machine pokazanie nazwy sprzêtu (architektury)\n" +" -p, --processor pokazanie typu procesora\n" +" -i, --hardware-platform pokazanie platformy sprzêtowej\n" +" -o, --operating-system pokazanie nazwy systemu operacyjnego\n" + +#: src/uname.c:226 +msgid "cannot get system name" +msgstr "nie mo¿na ustaliæ nazwy systemu" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"W ka¿dym PLIKU spacje zamieniane s± na TABy, wynik jest wypisywany na\n" +"standardowe wyj¶cie.\n" +"Je¿eli PLIK nie jest podany lub PLIK to -, czytane jest standardowe\n" +"wej¶cie.\n" +"\n" + +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" +" -a, --all zamiana wszystkich odstêpów, nie tylko pocz±tkowych\n" +" --first-only zamiana tylko pocz±tkowych odstêpów (wy³±cza -a)\n" +" -t, --tabs=N kolejne TABy co N znaków zamiast 8 (w³±cza -a)\n" +" -t, --tabs=LISTA u¿ycie oddzielanej przecinkami LISTY pozycji TABów\n" +" (w³±cza -a)\n" + +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "opcja `-LISTA' jest przestarza³a, u¿yj `--first-only -t LISTA'" + +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "Sk³adnia: %s [OPCJA]... [WEJ¦CIE [WYJ¦CIE]]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" +"Pominiêcie wszystkich kolejnych identycznych linii z WEJ¦CIA (lub\n" +"standardowego wej¶cia) oprócz jednej, wynik jest zapisywany na WYJ¦CIE (lub\n" +"standardowe wyj¶cie).\n" +"\n" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" +" -c, --count poprzedzenie linii liczb± powtórzeñ\n" +" -d, --repeated wypisanie tylko powtórzonych linii\n" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" +" -D, --all-repeated[=metoda-oddzielenia] wypisanie wszystkich " +"powtarzaj±cych\n" +" siê linii.\n" +" metoda-oddzielenia={none(domy¶lna),prepend," +"separate}\n" +" Oddzielanie jest robione przez puste linie\n" +" -f, --skip-fields=N bez porównania pierwszych N pól\n" +" -i, --ignore-case ignorowanie ró¿nic miêdzy ma³ymi i wielkimi " +"literami\n" +" -s, --skip-chars=N bez porównania pierwszych N znaków\n" +" -u, --unique wypisanie tylko linii unikalnych\n" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr " -w, --check-chars=N porównanie najwy¿ej N znaków w liniach\n" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" +"\n" +"Pole to ci±g znaków odstêpu, za którym s± znaki nie bêd±ce znakami odstepu.\n" +"Pola s± przeskakiwane przed przeskakiwaniem znaków. \n" + +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "b³±d czytania %s" + +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "b³±d zapisu %s" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "nadmiarowy argument `%s'" + +#: src/uniq.c:473 src/uniq.c:498 +msgid "invalid number of fields to skip" +msgstr "b³êdna liczba pól do przeskoczenia" + +# bytes to skip? we were talking about chars? - rzm +#: src/uniq.c:507 +msgid "invalid number of bytes to skip" +msgstr "b³êdna liczba bajtów do przeskoczenia" + +#: src/uniq.c:516 +msgid "invalid number of bytes to compare" +msgstr "b³êdna liczba bajtów do porównania" + +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "opcja `-%lu' jest przestarza³a, u¿yj `-f %lu'" + +# ? rzm +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "" +"wypisywanie wszystkich powtórzonych linii i ilo¶ci powtórzeñ nie ma sensu" + +#: src/unlink.c:51 +#, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"Sk³adnia: %s PLIK\n" +" albo: %s OPCJA\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" +"Wywo³anie funkcji unlink (usuñ) aby usun±æ podany PLIK.\n" +"\n" + +#: src/unlink.c:99 +#, c-format +msgid "cannot unlink %s" +msgstr "nie mo¿na usun±æ %s" + +# pola tabelki wymagaja poprawienia szerokosci -pk +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "uzyskanie czasu startu systemu niemo¿liwe" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr " %2d:%02d%s dzia³a " + +#: src/uptime.c:140 +msgid "am" +msgstr "am" + +#: src/uptime.c:140 +msgid "pm" +msgstr "pm" + +#: src/uptime.c:142 +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d dzieñ" +msgstr[1] "%d dni" +msgstr[2] "%d dni" + +#: src/uptime.c:144 +#, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "%d u¿ytkownik" +msgstr[1] "%d u¿ytkownicy" +msgstr[2] "%d u¿ytkowników" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr ", obci±¿enie: %.2f" + +#: src/uptime.c:191 src/users.c:118 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "Sk³adnia: %s [OPCJA]... [ PLIK ]\n" + +#: src/uptime.c:192 +#, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Wy¶wietlenie aktualnej godziny, czasu dzia³ania systemu, liczby " +"u¿ytkowników\n" +"zalogowanych w systemie oraz ¶redni± liczbê procesów uruchamianych w ci±gu\n" +"ostatnich 1, 5 i 15 minut.\n" +"Je¶li nie podano PLIKU, u¿ywa %s. %s jest czêsto podawane jako PLIK.\n" +"\n" + +#: src/users.c:35 +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "Joseph Arceneaux i David MacKenzie" + +#: src/users.c:119 +#, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Wy¶wietla kto jest zalogowany wed³ug informacji w PLIKU.\n" +"Je¶li brak PLIKU, u¿ywa %s. Czêsto podaje siê te¿ %s.\n" +"\n" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "Paul Rubin i David MacKenzie" + +#: src/wc.c:129 +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" +"Dla ka¿dego PLIKU wypisywana jest liczba linii, s³ów i bajtów oraz\n" +"podsumowanie je¿eli podany jest wiêcej ni¿ jeden PLIK. Je¿eli PLIK nie jest\n" +"podany lub PLIK to -, czytane jest standardowe wej¶cie.\n" +" -c, --bytes wypisanie liczby bajtów\n" +" -m, --chars wypisanie liczby znaków\n" +" -l, --lines wypisanie liczby znaków nowej linii\n" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" +" -L, --max-line-length wypisanie d³ugo¶ci najd³u¿szej linii\n" +" -w, --words wypisanie liczby s³ów\n" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "Joseph Arceneaux, David MacKenzie i Michael Stone" + +#: src/who.c:223 +msgid " old " +msgstr "dawno" + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "id=" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "zakoñczenie=" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "wyj¶cie=" + +#: src/who.c:446 +msgid "clock change" +msgstr "zmiana czasu" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "run-level" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "ostatni=" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" +"\n" +"liczba u¿ytkowników=%u\n" + +#: src/who.c:498 +msgid "NAME" +msgstr "U¯YTKOWNIK" + +#: src/who.c:498 +msgid "LINE" +msgstr "TERM" + +#: src/who.c:498 +msgid "TIME" +msgstr "CZAS" + +#: src/who.c:498 +msgid "IDLE" +msgstr "BEZCZYNNY" + +#: src/who.c:498 +msgid "PID" +msgstr "PID" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "KOMENTARZ" + +#: src/who.c:499 +msgid "EXIT" +msgstr "WYJ¦CIE" + +#: src/who.c:574 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "Sk³adnia: %s [OPCJA]... [ PLIK | ARGUMENT1 ARGUMENT2 ]\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" +"\n" +" -a, --all to samo co -b -d --login -p -r -t -T -u\n" +" -b, --boot czas ostatniego uruchomienia systemu\n" +" -d, --dead wypisanie martwych procesów\n" +" -H, --heading wypisanie linii nag³ówków kolumn\n" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" +" -i, --idle wypisanie czasu bezczynno¶ci jako GODZ:MIN, . albo\n" +" dawno (przestarza³e, u¿ywaj -u)\n" +" --login pokazanie systemowych procesów login\n" +" (równowa¿ne opcji -l z SUS)\n" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" +" -l, --lookup rozwi±zywanie nazw systemów w DNS-ie\n" +" (-l jest przestarza³e, u¿ywaj --lookup)\n" +" -m wy¶wietlenie tylko nazwy systemu i u¿ytkownika " +"zwi±zanego\n" +" ze standardowym wej¶ciem\n" +" -p, --process aktywne procesy uruchomione przez init\n" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" +" -q, --count wszystkie nazwy i liczba zalogowanych u¿ytkowników\n" +" -r, --runlevel bie¿±cy runlevel\n" +" -s, --short wypisanie tylko u¿ytkownika, terminala i czasu " +"(domy¶lnie)\n" +" -t, --time podanie ostatniej zmiany zegara systemowego\n" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" +" -T, -w, --mesg zaznaczenie czy u¿ytkownik przyjmuje komunikaty: +, - " +"lub ?\n" +" -u, --users wypisanie zalogowanych u¿ytkowników\n" +" --message to samo co -T\n" +" --writable to samo co -T\n" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" +"\n" +"Je¶li nie podano PLIKU, u¿ywany jest %s. Czêsto podaje siê %s.\n" +"Obecno¶æ ARG1 ARG2 implikuje -m. Typowe wywo³ania: `am i', `mom likes'.\n" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "Uwaga: opcja -i zostanie w przysz³o¶ci usuniêta, u¿ywaj -u" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" +"Uwaga: znaczenie opcji `-l' zmieni siê w przysz³o¶ci na zgodne z norm± POSIX" + +#: src/whoami.c:53 +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" +"Wy¶wietlenie nazwy u¿ytkownika zwi±zanego z aktualnym efektywnym\n" +"idetyfikatorem u¿ytkownika (EUID). Dzia³a jak id -un.\n" +"\n" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "%s: brak nazwy u¿ytkownika dla UID %u\n" + +#: src/yes.c:49 +#, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"Sk³adnia: %s [£AÑCUCH]\n" +" albo: %s OPCJA\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" +"Powtarzanie na wyj¶ciu linii ze wszystkimi podanymi £AÑCUCH(AMI) albo `y'\n" +"\n" + +#~ msgid "\\%c: invalid escape" +#~ msgstr "\\%c: b³êdna sekwencja escape" + +#~ msgid "program error" +#~ msgstr "b³±d programu" + +#~ msgid "stack overflow" +#~ msgstr "przepe³nienie stosu" diff --git a/src/apps/bin/coreutils-5.0/po/pt.gmo b/src/apps/bin/coreutils-5.0/po/pt.gmo new file mode 100644 index 0000000000..2c1d76fb6d Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/pt.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/pt.po b/src/apps/bin/coreutils-5.0/po/pt.po new file mode 100644 index 0000000000..0227bad527 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/pt.po @@ -0,0 +1,8922 @@ +# Portuguese translation of the "sh-utils" messages +# Copyright (C) 1996 Free Software Foundation, Inc. +# António João Serras Rendas , 1996 +# +msgid "" +msgstr "" +"Project-Id-Version: sh-utils 1.12i\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 1996-11-08 20:03+0100\n" +"Last-Translator: António João Serras Rendas \n" +"Language-Team: Português \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8-bit\n" + +#: lib/argmatch.c:135 +#, fuzzy, c-format +msgid "invalid argument %s for %s" +msgstr "argumento inválido `%s'" + +#: lib/argmatch.c:136 +#, fuzzy, c-format +msgid "ambiguous argument %s for %s" +msgstr "falta um argumento a `%s'" + +#: lib/argmatch.c:155 +#, fuzzy +msgid "Valid arguments are:" +msgstr "argumento inválido `%s'" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "erro na escrita" + +#: lib/error.c:133 lib/error.c:161 +#, fuzzy +msgid "Unknown system error" +msgstr "operador binário desconhecido" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "" + +#: lib/file-type.c:48 +msgid "block special file" +msgstr "" + +#: lib/file-type.c:51 +msgid "character special file" +msgstr "" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "" + +#: lib/file-type.c:71 +msgid "weird file" +msgstr "" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, fuzzy, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "opção inválida `%s'" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, fuzzy, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "opção inválida `%s'" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, fuzzy, c-format +msgid "%s: invalid option -- %c\n" +msgstr "opção inválida `%s'" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "" + +#: lib/human.c:519 +msgid "block size" +msgstr "" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, fuzzy, c-format +msgid "cannot create directory %s" +msgstr "não consigo obter a directoria actual" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, fuzzy, c-format +msgid "%s exists but is not a directory" +msgstr "`%s' não é uma directoria" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, fuzzy, c-format +msgid "cannot change owner and/or group of %s" +msgstr "aviso: não consigo mudar para a directoria %s" + +#: lib/makepath.c:338 +#, fuzzy, c-format +msgid "cannot chdir to directory %s" +msgstr "aviso: não consigo mudar para a directoria %s" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, fuzzy, c-format +msgid "cannot change permissions of %s" +msgstr "aviso: não consigo mudar para a directoria %s" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +#, fuzzy +msgid "memory exhausted" +msgstr "memória virtual esgotada" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "" + +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "" + +#: lib/userspec.c:174 +#, fuzzy +msgid "invalid user" +msgstr "\\%c: caracter de escape inválido" + +#: lib/userspec.c:175 +#, fuzzy +msgid "invalid group" +msgstr "opção inválida `%s'" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "" + +#: lib/userspec.c:179 +#, fuzzy +msgid "cannot omit both user and group" +msgstr "não consigo mostrar só o utilizador e só o grupo" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "" + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "" + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Tente `%s --help' para mais informação.\n" + +#: src/basename.c:54 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"Utilização: %s NOME\n" +" ou: %s OPÇÃO\n" + +#: src/basename.c:59 +#, fuzzy +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" +"Se não for especificada nenhuma VARIÁVEL do ambiente, mostra todas.\n" +"\n" +" --help mostrar esta ajuda\n" +" --version mostrar informação de versão e sair\n" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "poucos argumentos" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "demasiados argumentos" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "" + +#: src/cat.c:92 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "Utilização: %s [OPÇÃO]... [FICHEIRO]...\n" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" + +#: src/cat.c:314 +#, fuzzy, c-format +msgid "cannot do ioctl on `%s'" +msgstr "não consigo correr %s" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "canal de saída padrão (stdout)" + +#: src/cat.c:800 +#, fuzzy, c-format +msgid "%s: input file is output file" +msgstr "tamanho de tab inválido: %s" + +#: src/cat.c:858 +#, fuzzy +msgid "closing standard input" +msgstr "canal de entrada por omissão (stdin)" + +#: src/cat.c:861 +#, fuzzy +msgid "closing standard output" +msgstr "canal de saída padrão (stdout)" + +#: src/chgrp.c:93 +#, fuzzy +msgid "cannot change to null group" +msgstr "aviso: não consigo mudar para a directoria %s" + +#: src/chgrp.c:102 +#, fuzzy, c-format +msgid "invalid group name %s" +msgstr "opção inválida `%s'" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "grupo número" + +#: src/chgrp.c:109 +#, fuzzy, c-format +msgid "invalid group number %s" +msgstr "opção inválida `%s'" + +#: src/chgrp.c:126 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Utilização: %s [OPÇÃO]... DONO[.[GRUPO]] FICHEIRO...\n" +" ou: %s [OPÇÃO]... .[GRUPO] FICHEIRO...\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, fuzzy, c-format +msgid "failed to get attributes of %s" +msgstr "%s: apagar directoria `%s'? " + +#: src/chmod.c:102 +#, fuzzy, c-format +msgid "getting new attributes of %s" +msgstr "%s: apagar directoria `%s'? " + +#: src/chmod.c:124 +#, fuzzy, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "modo de %s mudado para %04o (%s)\n" + +#: src/chmod.c:127 +#, fuzzy, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "modo de %s mudado para %04o (%s)\n" + +#: src/chmod.c:130 +#, fuzzy, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "modo de %s mantido como %04o (%s)\n" + +#: src/chmod.c:179 +#, fuzzy, c-format +msgid "changing permissions of %s" +msgstr "aviso: não consigo mudar para a directoria %s" + +#: src/chmod.c:242 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Utilização: %s [OPÇÃO]... MODO[,MODO]... FICHEIRO...\n" +" ou: %s [OPÇÃO]... MODO_OCTAL FICHEIRO...\n" + +#: src/chmod.c:248 +#, fuzzy +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"\n" +" -c, --changes igual ao modo \"verbose\" mas avisa só quando uma \n" +" alteração é feita\n" +" -f, --silent, --quiet desligar a maior parte das mensagens de erro\n" +" -v, --verbose mostrar um diagnóstico por cada ficheiro processado\n" +" -R, --recursive mudar ficheiros e directorias recursivamente\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a versão e sair\n" +"\n" +"Cada MODO é uma ou mais das letras ugoa, um dos símbolos +-= e uma ou \n" +"mais das letras rwxXstugo.\n" +"\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" + +#: src/chmod.c:320 +#, fuzzy, c-format +msgid "invalid character %s in mode string %s" +msgstr "string de formatação inválida: `%s'" + +#: src/chmod.c:361 +#, fuzzy, c-format +msgid "invalid mode string: %s" +msgstr "string de formatação inválida: `%s'" + +#: src/chown-core.c:116 +#, fuzzy, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "ligação (link) simbólica" + +#: src/chown-core.c:143 +#, fuzzy, c-format +msgid "changed ownership of %s to %s\n" +msgstr "modo de %s mudado para %04o (%s)\n" + +#: src/chown-core.c:144 +#, fuzzy, c-format +msgid "changed group of %s to %s\n" +msgstr "modo de %s mudado para %04o (%s)\n" + +#: src/chown-core.c:148 +#, fuzzy, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "aviso: não consigo mudar para a directoria %s" + +#: src/chown-core.c:149 +#, fuzzy, c-format +msgid "failed to change group of %s to %s\n" +msgstr "modo de %s mudado para %04o (%s)\n" + +#: src/chown-core.c:153 +#, fuzzy, c-format +msgid "ownership of %s retained as %s\n" +msgstr "dono de %s mantido como " + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "grupo de %s mantido como %s\n" + +#: src/chown-core.c:326 +#, fuzzy, c-format +msgid "changing ownership of %s" +msgstr "modo de %s mudado para %04o (%s)\n" + +#: src/chown-core.c:327 +#, fuzzy, c-format +msgid "changing group of %s" +msgstr "aviso: não consigo mudar para a directoria %s" + +#: src/chown-core.c:345 +#, fuzzy, c-format +msgid "unable to restore permissions of %s" +msgstr "aviso: não consigo mudar para a directoria %s" + +#: src/chown.c:99 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Utilização: %s [OPÇÃO]... DONO[.[GRUPO]] FICHEIRO...\n" +" ou: %s [OPÇÃO]... .[GRUPO] FICHEIRO...\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" + +#: src/chroot.c:45 +#, fuzzy, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"Utilização: %s [PARÂMETRO]...\n" +" ou: %s OPÇÃO\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" + +#: src/chroot.c:84 +#, fuzzy, c-format +msgid "cannot change root directory to %s" +msgstr "aviso: não consigo mudar para a directoria %s" + +#: src/chroot.c:87 +#, fuzzy +msgid "cannot chdir to root directory" +msgstr "aviso: não consigo mudar para a directoria %s" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "" + +#: src/cksum.c:282 +#, fuzzy, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"Utilização: %s [NÚMERO...]\n" +" ou: %s OPÇÃO\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "" + +#: src/comm.c:73 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "Utilização: %s [OPÇÃO]... [FICHEIRO]...\n" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" + +#: src/copy.c:162 src/du.c:332 +#, fuzzy, c-format +msgid "cannot access %s" +msgstr "não consigo correr %s" + +#: src/copy.c:226 +#, fuzzy, c-format +msgid "cannot open %s for reading" +msgstr "não consigo mover `%s' para `%s'" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, fuzzy, c-format +msgid "cannot fstat %s" +msgstr "não consigo alterar data" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, fuzzy, c-format +msgid "cannot remove %s" +msgstr "não consigo correr %s" + +#: src/copy.c:277 +#, fuzzy, c-format +msgid "cannot create regular file %s" +msgstr "não consigo obter a directoria actual" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, fuzzy, c-format +msgid "reading %s" +msgstr "%s: apagar directoria `%s'? " + +#: src/copy.c:362 +#, fuzzy, c-format +msgid "cannot lseek %s" +msgstr "não consigo correr %s" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, fuzzy, c-format +msgid "writing %s" +msgstr "%s: apagar directoria `%s'? " + +#: src/copy.c:409 src/copy.c:415 +#, fuzzy, c-format +msgid "closing %s" +msgstr "%s: apagar directoria `%s'? " + +#: src/copy.c:610 +#, fuzzy, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: escrever por cima de `%s', apesar de modo %04o? " + +#: src/copy.c:616 +#, fuzzy, c-format +msgid "%s: overwrite %s? " +msgstr "%s: escrever por cima de `%s'? " + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, fuzzy, c-format +msgid "cannot stat %s" +msgstr "não consigo alterar data" + +#: src/copy.c:820 +#, fuzzy, c-format +msgid "omitting directory %s" +msgstr "não consigo obter a directoria actual" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "" + +#: src/copy.c:866 src/ln.c:237 +#, fuzzy, c-format +msgid "%s and %s are the same file" +msgstr "`%s' e `%s' são o mesmo ficheiro" + +#: src/copy.c:876 +#, fuzzy, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "aviso: não consigo mudar para a directoria %s" + +#: src/copy.c:893 +#, fuzzy, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "%s: não posso escrever por cima de directoria com não-directoria" + +#: src/copy.c:904 +#, fuzzy, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "não consigo obter a directoria actual" + +#: src/copy.c:965 +#, fuzzy, c-format +msgid "cannot overwrite directory %s" +msgstr "não consigo obter a directoria actual" + +#: src/copy.c:974 +#, fuzzy, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "aviso: não consigo mudar para a directoria %s" + +#: src/copy.c:997 +#, fuzzy, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "fazer \"backup\" de `%s' iria destruir o original; `%s' não copiado" + +#: src/copy.c:998 +#, fuzzy, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "fazer \"backup\" de `%s' iria destruir o original; `%s' não copiado" + +#: src/copy.c:1013 src/ln.c:273 +#, fuzzy, c-format +msgid "cannot backup %s" +msgstr "não consigo correr %s" + +#: src/copy.c:1049 src/ln.c:308 +#, fuzzy, c-format +msgid " (backup: %s)" +msgstr "não consigo fazer \"backup\" de `%s'" + +#: src/copy.c:1099 +#, fuzzy, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "aviso: não consigo mudar para a directoria %s" + +#: src/copy.c:1106 +#, fuzzy, c-format +msgid "will not create hard link %s to directory %s" +msgstr "aviso: não consigo mudar para a directoria %s" + +#: src/copy.c:1132 +#, fuzzy, c-format +msgid "cannot create hard link %s to %s" +msgstr "não consigo obter a directoria actual" + +#: src/copy.c:1186 +#, fuzzy, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "aviso: não consigo mudar para a directoria %s" + +#: src/copy.c:1229 +#, fuzzy, c-format +msgid "cannot move %s to %s" +msgstr "não consigo correr %s" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "" + +#: src/copy.c:1269 +#, fuzzy, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "%s: não consigo copiar ligação (link) simbólica cíclica" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "" +"%s: só consigo fazer ligações (links) simbólicas relativas na directoria\n" +"actual" + +#: src/copy.c:1353 +#, fuzzy, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "não consigo obter a directoria actual" + +#: src/copy.c:1364 +#, fuzzy, c-format +msgid "cannot create link %s" +msgstr "não consigo obter a directoria actual" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, fuzzy, c-format +msgid "cannot create fifo %s" +msgstr "não consigo obter a directoria actual" + +#: src/copy.c:1403 +#, fuzzy, c-format +msgid "cannot create special file %s" +msgstr "não consigo obter a directoria actual" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, fuzzy, c-format +msgid "cannot read symbolic link %s" +msgstr "não consigo ler ligação (link) simbólica `%s'" + +#: src/copy.c:1440 +#, fuzzy, c-format +msgid "cannot create symbolic link %s" +msgstr "não consigo obter a directoria actual" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, fuzzy, c-format +msgid "failed to preserve ownership for %s" +msgstr "modo de %s mudado para %04o (%s)\n" + +#: src/copy.c:1471 +#, fuzzy, c-format +msgid "%s has unknown file type" +msgstr "%s: tipo de ficheiro desconhecido" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "" + +#: src/copy.c:1531 +#, fuzzy, c-format +msgid "failed to preserve authorship for %s" +msgstr "modo de %s mudado para %04o (%s)\n" + +#: src/copy.c:1549 +#, fuzzy, c-format +msgid "setting permissions for %s" +msgstr "aviso: não consigo mudar para a directoria %s" + +#: src/copy.c:1571 src/ln.c:326 +#, fuzzy, c-format +msgid "cannot un-backup %s" +msgstr "não consigo correr %s" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/cp.c:164 src/mv.c:311 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"Utilização: %s [OPÇÃO]... FONTE DESTINO (1o formato)\n" +" ou: %s [OPÇÃO]... FONTE... DIRECTORIA (2o formato)\n" +" ou: %s -d [OPÇÃO]... DIRECTORIA... (3o formato)\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" + +#: src/cp.c:209 +#, fuzzy +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +"Copia FONTE para DESTINO, ou múltiplas FONTE(s) para DIRECTORIA.\n" +"\n" +" -a, --archive igual a -dpR\n" +" -b, --backup fazer \"backup\" antes da remoção\n" +" -d, --no-dereference manter as links\n" +" -f, --force remover destinos existentes, nunca " +"perguntar\n" +" -i, --interactive perguntar antes de apagar\n" +" -l, --link fazer ligações (links) de ficheiros em vez\n" +" de os copiar\n" +" -p, --preserve manter atributos dos ficheiros se possível\n" +" -r copiar recursivamente, não-directorias " +"como\n" +" ficheiros\n" +" --sparse=QUANDO controlar a criação de ficheiros esparsos\n" +" -s, --symbolic-link fazer ligações (links) simbólicas em vez " +"de\n" +" copiar\n" +" -u, --update copiar só ficheiros novos ou mais velhos\n" +" -v, --verbose explica o que está a ser feito\n" +" -x, --one-file-system ficar só neste sistema de ficheiros\n" +" -P, --parents acrescentar caminho (path) de fonte a \n" +" DIRECTORIA\n" +" -R, --recursive copiar directorias recursivamente\n" +" -S, --sufix=SUFIXO usar em vez do sufixo de \"backup\" usual\n" +" -V, --version-control=PALAVRA usar em vez do controlo de versão habitual\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" +"\n" +"Por omissão, ficheiros esparsos da FONTE são detectados por uma heurística \n" +"grosseira e o correspondente ficheiro DESTINO é também feito um ficheiro \n" +"esparso. Este é o comportamento escolhido por --sparse=auto. Especifica \n" +"--sparse=always para criar um ficheiro esparso em DESTINO quando o ficheiro\n" +"SOURCE tiver uma sequência de bytes a zero suficientemente grande.\n" +"\n" +"Usa --sparse=never para inibir a criação de ficheiros esparsos.\n" +"\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" + +#: src/cp.c:221 +#, fuzzy +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +"Mudar o nome de FONTE para DESTINO ou mover FONTE(s) para DIRECTORIA.\n" +"\n" +" -b, --backup fazer \"backup\" antes da remoção\n" +" -f, --force apagar destinos existentes, nunca perguntar\n" +" -i, --interactive perguntar antes de apagar\n" +" -u, --update mover somente ficheiros novos ou mais \n" +" recentes\n" +" -v, --verbose explicar o que se está a fazer\n" +" -S, --suffix=SUFIXO usar SUFIXO em vez do sufixo habitual de\n" +" \"backup\"\n" +" -V, --version-sontrol=PALAVRA usar PALAVRA em vez do controle de versão \n" +" usual\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" +"\n" + +#: src/cp.c:230 +#, fuzzy +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +"Copia FONTE para DESTINO, ou múltiplas FONTE(s) para DIRECTORIA.\n" +"\n" +" -a, --archive igual a -dpR\n" +" -b, --backup fazer \"backup\" antes da remoção\n" +" -d, --no-dereference manter as links\n" +" -f, --force remover destinos existentes, nunca " +"perguntar\n" +" -i, --interactive perguntar antes de apagar\n" +" -l, --link fazer ligações (links) de ficheiros em vez\n" +" de os copiar\n" +" -p, --preserve manter atributos dos ficheiros se possível\n" +" -r copiar recursivamente, não-directorias " +"como\n" +" ficheiros\n" +" --sparse=QUANDO controlar a criação de ficheiros esparsos\n" +" -s, --symbolic-link fazer ligações (links) simbólicas em vez " +"de\n" +" copiar\n" +" -u, --update copiar só ficheiros novos ou mais velhos\n" +" -v, --verbose explica o que está a ser feito\n" +" -x, --one-file-system ficar só neste sistema de ficheiros\n" +" -P, --parents acrescentar caminho (path) de fonte a \n" +" DIRECTORIA\n" +" -R, --recursive copiar directorias recursivamente\n" +" -S, --sufix=SUFIXO usar em vez do sufixo de \"backup\" usual\n" +" -V, --version-control=PALAVRA usar em vez do controlo de versão habitual\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" +"\n" +"Por omissão, ficheiros esparsos da FONTE são detectados por uma heurística \n" +"grosseira e o correspondente ficheiro DESTINO é também feito um ficheiro \n" +"esparso. Este é o comportamento escolhido por --sparse=auto. Especifica \n" +"--sparse=always para criar um ficheiro esparso em DESTINO quando o ficheiro\n" +"SOURCE tiver uma sequência de bytes a zero suficientemente grande.\n" +"\n" +"Usa --sparse=never para inibir a criação de ficheiros esparsos.\n" +"\n" + +#: src/cp.c:239 +#, fuzzy +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"O sufixo de \"backup\" é ~, a não ser com SIMPLE_BACKUP_SUFFIX. O controlo " +"de\n" +"versão pode ser escolhido com VERSION_CONTROL, valores possíveis são:\n" +"\n" +" t, numbered fazer \"backups\" numerados\n" +" nil, existing \"backups\" numerados se já existirem numerados, " +"simples \n" +" caso contrário\n" +" never, simple fazer \"backups\" simples sempre\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +#, fuzzy +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +"O sufixo de \"backup\" é ~, a não ser com SIMPLE_BACKUP_SUFFIX. O controlo " +"de\n" +"versão pode ser escolhido com VERSION_CONTROL, valores possíveis são:\n" +"\n" +" t, numbered fazer \"backups\" numerados\n" +" nil, existing \"backups\" numerados se já existirem numerados, " +"simples \n" +" caso contrário\n" +" never, simple fazer \"backups\" simples sempre\n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +"Como caso especial, o cp faz um backup da FONTE quando as opções \"force\" " +"e\n" +"\"backup\" são dadas e FONTE + DESTINO são iguais ao nome de um ficheiro \n" +"regular já existente.\n" + +#: src/cp.c:325 +#, fuzzy, c-format +msgid "failed to preserve times for %s" +msgstr "%s: apagar directoria `%s'? " + +#: src/cp.c:349 +#, fuzzy, c-format +msgid "failed to preserve permissions for %s" +msgstr "aviso: não consigo mudar para a directoria %s" + +#: src/cp.c:434 +#, fuzzy, c-format +msgid "cannot make directory %s" +msgstr "não consigo obter a directoria actual" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +#, fuzzy +msgid "missing file argument" +msgstr "falta um argumento a `%s'" + +#: src/cp.c:498 +msgid "missing destination file" +msgstr "ficheiro de destino ausente" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, fuzzy, c-format +msgid "accessing %s" +msgstr "%s: apagar directoria `%s'? " + +#: src/cp.c:546 +#, fuzzy, c-format +msgid "%s: specified target is not a directory" +msgstr "`%s' não é uma directoria" + +#: src/cp.c:554 +#, fuzzy, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "" +"a copiar vários ficheiros, mas o último argumento (%s) não é uma directoria" + +#: src/cp.c:652 +#, fuzzy +msgid "when preserving paths, the destination must be a directory" +msgstr "" +"ao preservar caminhos (paths), o último argumento tem que ser uma \n" +"directoria" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" + +#: src/cp.c:972 src/ln.c:464 +msgid "symbolic links are not supported on this system" +msgstr "ligações (links) simbólicas não são suportadas neste sistema" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "não posso fazer ligações (links) simbólicas e fixas" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "erro de leitura" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "" + +#: src/csplit.c:705 src/csplit.c:716 +#, fuzzy, c-format +msgid "%s: line number out of range" +msgstr "número inválido `%s'" + +#: src/csplit.c:743 +#, fuzzy, c-format +msgid "%s: `%s': line number out of range" +msgstr "número inválido `%s'" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr "" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "" + +#: src/csplit.c:992 +#, fuzzy, c-format +msgid "write error for `%s'" +msgstr "erro na escrita" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "" + +#: src/csplit.c:1068 +#, fuzzy, c-format +msgid "%s: integer expected after `%c'" +msgstr "falta um argumento a `%s'" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "" + +#: src/csplit.c:1141 +#, fuzzy, c-format +msgid "%s: invalid regular expression: %s" +msgstr "opção inválida `%s'" + +#: src/csplit.c:1174 +#, fuzzy, c-format +msgid "%s: invalid pattern" +msgstr "\\%c: caracter de escape inválido" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "" + +#: src/csplit.c:1320 +#, fuzzy, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "%s: conversão inválida" + +#: src/csplit.c:1323 +#, fuzzy, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "%s: conversão inválida" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "" + +#: src/csplit.c:1441 +#, fuzzy, c-format +msgid "%s: invalid number" +msgstr "\\%c: caracter de escape inválido" + +#: src/csplit.c:1496 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "Utilização: %s [OPÇÃO]... [FICHEIRO]...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "Utilização: %s [OPÇÃO]... [FICHEIRO]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +#, fuzzy +msgid "invalid byte or field list" +msgstr "intervalo de tempo inválido `%s'" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "" + +#: src/cut.c:670 +#, fuzzy +msgid "missing list of positions" +msgstr "ficheiro de destino ausente" + +#: src/cut.c:679 +#, fuzzy +msgid "missing list of fields" +msgstr "ficheiro de destino ausente" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "" + +#: src/cut.c:720 +#, fuzzy +msgid "an input delimiter may be specified only when operating on fields" +msgstr "" +"a string de formatação não deve ser especificada ao imprimir strings com a \n" +"mesma largura" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" + +#: src/date.c:117 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" +"Utilização: %s [OPÇÃO]... [+FORMATO]\n" +" ou: %s [OPÇÃO] [MMDDhhmm[[CC]AA][.ss]]\n" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "canal de entrada por omissão (stdin)" + +#: src/date.c:268 src/date.c:460 +#, c-format +msgid "invalid date `%s'" +msgstr "data inválida `%s'" + +#: src/date.c:364 +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "" +"as opções para especificar a data de impressão são mutuamente exclusivas" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "" +"as opções para imprimir e alterar o tempo não podem ser usadas ao mesmo tempo" + +#: src/date.c:377 +#, fuzzy, c-format +msgid "too many non-option arguments: %s%s" +msgstr "demasiados argumentos não-opção" + +#: src/date.c:385 +#, fuzzy, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" +"ao usar uma opção que especifique data(s), qualquer argumento não-opção \n" +"tem que ser uma string de formatação começando com `+'" + +#: src/date.c:397 +#, fuzzy +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "" +"a string de formatação não deve ser especificada ao imprimir strings com a \n" +"mesma largura" + +#: src/date.c:433 +msgid "undefined" +msgstr "indefenido" + +#: src/date.c:435 +#, fuzzy +msgid "cannot get time of day" +msgstr "não consigo obter prioridade" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "não consigo alterar data" + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "Utilização: %s [OPÇÃO]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" + +#: src/dd.c:362 +#, fuzzy, c-format +msgid "%s+%s records in\n" +msgstr "%u+%u registos dentro\n" + +#: src/dd.c:364 +#, fuzzy, c-format +msgid "%s+%s records out\n" +msgstr "%u+%u registos fora\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "registo truncado" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "registos truncados" + +#: src/dd.c:382 +#, fuzzy, c-format +msgid "closing input file %s" +msgstr "%s: apagar directoria `%s'? " + +#: src/dd.c:385 +#, fuzzy, c-format +msgid "closing output file %s" +msgstr "%s: apagar directoria `%s'? " + +#: src/dd.c:469 +#, fuzzy, c-format +msgid "writing to %s" +msgstr "%s: apagar directoria `%s'? " + +#: src/dd.c:501 +#, fuzzy, c-format +msgid "invalid conversion: %s" +msgstr "opção inválida `%s'" + +#: src/dd.c:557 +#, fuzzy, c-format +msgid "unrecognized option %s" +msgstr "opção inválida `%s'" + +#: src/dd.c:610 +#, fuzzy, c-format +msgid "unrecognized option %s=%s" +msgstr "opção inválida `%s'" + +#: src/dd.c:616 +#, fuzzy, c-format +msgid "invalid number %s" +msgstr "\\%c: caracter de escape inválido" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"só uma conversão em {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, \n" +"{unblock,sync}" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" + +#: src/dd.c:1170 src/dd.c:1188 +#, fuzzy, c-format +msgid "opening %s" +msgstr "%s: apagar directoria `%s'? " + +#: src/dd.c:1196 +msgid "file offset out of range" +msgstr "" + +#: src/dd.c:1214 +#, fuzzy, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "%s: apagar directoria `%s'? " + +#: src/df.c:49 +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "" + +#: src/df.c:153 +msgid "Filesystem Type" +msgstr "" + +#: src/df.c:155 +msgid "Filesystem " +msgstr "" + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr "" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr "" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr "" + +#: src/df.c:167 +#, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr "" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr "" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr "" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" + +#: src/df.c:859 +#, fuzzy, c-format +msgid "file system type %s both selected and excluded" +msgstr "" +"sistema de ficheiros de tipo `%s' foi escolhido e excluído ao mesmo tempo" + +#: src/df.c:903 +msgid "Warning: " +msgstr "" + +#: src/df.c:906 +#, fuzzy, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "não consigo ler a tabela com sistemas de ficheiros montados" + +#: src/dircolors.c:103 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "Utilização: %s [OPÇÃO]... [FICHEIRO]...\n" + +#: src/dircolors.c:104 +#, fuzzy +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"Emite comandos de saída para ajustar a variável de ambiente LS_COLORS.\n" +"\n" +"Para ajustar o formato da saída:\n" +" -b, --sh, --bourne-shell emitir o código para ajustar LS_COLORS em \n" +" formato conhecido pela Bourne shell\n" +" -c, --csh, --c-shell emitir o código para ajustar LS_COLORS em \n" +" formato conhecido pela C shell\n" +" -p, --print-data-base emitir os códigos por defeito\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" + +#: src/dircolors.c:299 +#, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "" + +#: src/dircolors.c:371 +#, fuzzy, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "opção inválida `%s'" + +#: src/dircolors.c:372 +msgid "" +msgstr "" + +#: src/dircolors.c:467 +#, fuzzy +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" +"as opções para saída em modo verboso e legível pelo stty são mutuamente\n" +"exclusivas" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" +"não se podem usar argumentos de tipo FICHEIRO com a opção para mostrar a " +"base\n" +"de dados interna do \"dircolors\"" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "" +"não existe nenhuma variável de ambiente SHELL e não se especificou nenhum\n" +"tipo de shell como argumento" + +#: src/dirname.c:33 src/pathchk.c:59 +msgid "David MacKenzie and Jim Meyering" +msgstr "" + +#: src/dirname.c:46 +#, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"Utilização: %s NOME\n" +" ou: %s OPÇÃO\n" + +#: src/dirname.c:51 +#, fuzzy +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" +"Mostra NOME sem a sua componente /; se NOME não tiver / mostra `.' (o que\n" +"quer dizer a directoria actual).\n" +"\n" +" --help mostra esta ajuda e sai\n" +" --version mostra a informação de versão e sai\n" + +#: src/du.c:49 +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" + +#: src/du.c:337 +#, fuzzy, c-format +msgid "cannot change to parent of directory %s" +msgstr "aviso: não consigo mudar para a directoria %s" + +#: src/du.c:345 +#, fuzzy, c-format +msgid "cannot change to directory %s" +msgstr "aviso: não consigo mudar para a directoria %s" + +#: src/du.c:352 +#, fuzzy, c-format +msgid "cannot read directory %s" +msgstr "não consigo obter a directoria actual" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +#, fuzzy +msgid "total" +msgstr "%ld\ttotal\n" + +#: src/du.c:641 +#, fuzzy, c-format +msgid "invalid maximum depth %s" +msgstr "argumento inválido `%s'" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "não consigo resumir e mostrar todas as entradas ao mesmo tempo" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "" + +#: src/echo.c:77 +#, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "Utilização: %s [OPÇÃO]... [STRING]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/env.c:93 +msgid "Richard Mlynarik and David MacKenzie" +msgstr "" + +#: src/env.c:119 +#, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "Utilização: %s [OPÇÃO]... [-] [NOME=VALOR]... [COMANDO [ARG]...]\n" + +#: src/env.c:122 +#, fuzzy +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" +"Alterar cada NOME para VALOR no ambiente e correr o COMANDO.\n" +"\n" +" -u, --unset=NOME retirar variável NOME do ambiente\n" +" -i, --ignore-environment começar com um ambiente vazio\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" +"\n" +"Um só - implica -i. Se não houver nenhum COMANDO mostra o ambiente\n" +"resultante.\n" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" + +#: src/expand.c:173 src/unexpand.c:153 +#, fuzzy +msgid "tab size contains an invalid character" +msgstr "o caminho `%s' contém o caracter não portável `%c'" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "" + +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "" + +#: src/expr.c:90 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"Utilização: %s EXPRESSÃO\n" +" ou: %s OPÇÃO\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +msgid "syntax error" +msgstr "erro de sintaxe" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" + +#: src/expr.c:586 src/expr.c:625 +#, fuzzy +msgid "non-numeric argument" +msgstr "a ignorar argumentos não-opção" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "" + +#: src/factor.c:74 +#, fuzzy, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"Utilização: %s [NÚMERO...]\n" +" ou: %s OPÇÃO\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" + +#: src/factor.c:85 +#, fuzzy +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" +"\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" +"\n" +"Mostra os factores primos de todos os NÚMEROS especificados. Se nenhum\n" +"argumento for especificado, estes são lidos do canal de entrada padrão.\n" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "`%s' não é um inteiro positivo válido" + +#: src/false.c:34 +#, fuzzy, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Utilização: %s [NOME]\n" +" ou: %s [OPÇÃO]\n" +"Mostra o hostname do sistema corrente.\n" +"\n" +" --help mostra esta ajuda e sai\n" +" --version mostra a informação de versão e sai\n" + +#: src/fmt.c:271 +#, fuzzy, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "Utilização: %s [OPÇÃO]... [FICHEIRO]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" + +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" + +#: src/fmt.c:345 +#, fuzzy, c-format +msgid "invalid width option: `%s'" +msgstr "opção inválida `%s'" + +#: src/fmt.c:385 +#, fuzzy, c-format +msgid "invalid width: `%s'" +msgstr "data inválida `%s'" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" + +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "" + +#: src/fold.c:295 +#, fuzzy, c-format +msgid "invalid number of columns: `%s'" +msgstr "argumento inteiro inválido `%s'" + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" + +#: src/head.c:190 +#, fuzzy, c-format +msgid "cannot reposition file pointer for %s" +msgstr "não consigo obter a directoria actual" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "" + +#: src/head.c:257 src/tail.c:1390 +#, fuzzy +msgid "number of lines" +msgstr "número de argumentos errado" + +#: src/head.c:257 src/tail.c:1391 +#, fuzzy +msgid "number of bytes" +msgstr "número de argumentos errado" + +#: src/head.c:264 src/tail.c:1478 +#, fuzzy +msgid "invalid number of lines" +msgstr "\\%c: caracter de escape inválido" + +#: src/head.c:265 src/tail.c:1479 +#, fuzzy +msgid "invalid number of bytes" +msgstr "\\%c: caracter de escape inválido" + +#: src/head.c:341 +#, fuzzy, c-format +msgid "unrecognized option `-%c'" +msgstr "opção inválida `%s'" + +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "" + +#: src/hostid.c:48 +#, fuzzy, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" +"Mostra o nome do utilizador actual.\n" +"\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" + +#: src/hostname.c:67 +#, fuzzy, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" +"Utilização: %s [NOME]\n" +" ou: %s [OPÇÃO]\n" +"Mostra o hostname do sistema corrente.\n" +"\n" +" --help mostra esta ajuda e sai\n" +" --version mostra a informação de versão e sai\n" + +#: src/hostname.c:104 +#, fuzzy, c-format +msgid "cannot set hostname to `%s'" +msgstr "não consigo determinar o hostname" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "" +"não consigo alterar o hostname; este sistema não dispõe dessa funcionalidade" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "não consigo determinar o hostname" + +#: src/id.c:36 +msgid "Arnold Robbins and David MacKenzie" +msgstr "" + +#: src/id.c:87 +#, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "Utilização: %s [OPÇÃO]... [NOMEDOUTILIZADOR]\n" + +#: src/id.c:88 +#, fuzzy +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" +"Mostrar a informação de NOMEDOUTILIZADOR, ou o utilizador actual.\n" +"\n" +" -g, --group mostrar só o ID do grupo\n" +" -G, --groups mostrar só os grupos adicionais\n" +" -n, --name mostrar o nome em vez de um número, para -ugG\n" +" -r, --read mostrar o ID real em vez do ID efectivo, para -ugG\n" +" -u, --user mostrar só o ID do utilizador\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" +"\n" +"Sem qualquer opção mostra um conjunto de informações de identidade úteis.\n" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" + +#: src/id.c:162 +msgid "cannot print only user and only group" +msgstr "não consigo mostrar só o utilizador e só o grupo" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "não consigo mostrar só nomes ou ID's reais no formato por defeito" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "%s: Utilizador inexistente" + +#: src/id.c:212 +#, fuzzy, c-format +msgid "cannot find name for user ID %u" +msgstr "%s: não consigo encontrar um nome para o UID %u\n" + +#: src/id.c:235 +#, fuzzy, c-format +msgid "cannot find name for group ID %u" +msgstr "%s: não consigo encontrar um nome para o UID %u\n" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "Não consigo obter lista de grupos adicional" + +#: src/id.c:385 +msgid " groups=" +msgstr " grupos=" + +#: src/install.c:269 +#, fuzzy +msgid "the strip option may not be used when installing a directory" +msgstr "" +"a string de formatação não deve ser especificada ao imprimir strings com a \n" +"mesma largura" + +#: src/install.c:292 src/mkdir.c:140 +#, fuzzy, c-format +msgid "invalid mode %s" +msgstr "data inválida `%s'" + +#: src/install.c:307 src/install.c:371 +#, fuzzy, c-format +msgid "creating directory %s" +msgstr "não consigo obter a directoria actual" + +#: src/install.c:332 +#, fuzzy, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "" +"a copiar vários ficheiros, mas o último argumento (%s) não é uma directoria" + +#: src/install.c:435 +#, fuzzy, c-format +msgid "%s is a directory" +msgstr "`%s' não é uma directoria" + +#: src/install.c:495 +#, fuzzy, c-format +msgid "cannot obtain time stamps for %s" +msgstr "não consigo determinar o hostname" + +#: src/install.c:507 +#, fuzzy, c-format +msgid "cannot set time stamps for %s" +msgstr "não consigo determinar o hostname" + +#: src/install.c:528 +msgid "fork system call failed" +msgstr "" + +#: src/install.c:532 +#, fuzzy +msgid "cannot run strip" +msgstr "não consigo correr %s" + +#: src/install.c:539 +msgid "strip failed" +msgstr "" + +#: src/install.c:560 +#, fuzzy, c-format +msgid "invalid user %s" +msgstr "\\%c: caracter de escape inválido" + +#: src/install.c:578 +#, fuzzy, c-format +msgid "invalid group %s" +msgstr "opção inválida `%s'" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"Utilização: %s [OPÇÃO]... FONTE DESTINO (1o formato)\n" +" ou: %s [OPÇÃO]... FONTE... DIRECTORIA (2o formato)\n" +" ou: %s -d [OPÇÃO]... DIRECTORIA... (3o formato)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +#, fuzzy +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"O sufixo de \"backup\" é ~, a não ser com SIMPLE_BACKUP_SUFFIX. O controlo " +"de\n" +"versão pode ser escolhido com VERSION_CONTROL, valores possíveis são:\n" +"\n" +" t, numbered fazer \"backups\" numerados\n" +" nil, existing \"backups\" numerados se já existirem numerados, " +"simples \n" +" caso contrário\n" +" never, simple fazer \"backups\" simples sempre\n" + +#: src/join.c:144 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "Utilização: %s [OPÇÃO]... [FICHEIRO]...\n" + +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" + +#: src/join.c:165 +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" + +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" + +#: src/join.c:645 +#, fuzzy, c-format +msgid "invalid field specifier: `%s'" +msgstr "intervalo de tempo inválido `%s'" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, fuzzy, c-format +msgid "invalid field number: `%s'" +msgstr "intervalo de tempo inválido `%s'" + +#: src/join.c:672 +#, fuzzy, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "intervalo de tempo inválido `%s'" + +#: src/join.c:792 +#, fuzzy, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "intervalo de tempo inválido `%s'" + +#: src/join.c:801 +#, fuzzy, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "intervalo de tempo inválido `%s'" + +#: src/join.c:833 +#, fuzzy +msgid "too many non-option arguments" +msgstr "demasiados argumentos não-opção" + +#: src/join.c:855 +#, fuzzy +msgid "too few non-option arguments" +msgstr "demasiados argumentos não-opção" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" + +#: src/kill.c:106 +#, fuzzy +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" +"Copia o canal de entrada padrão (stdin) para cada FICHEIRO, e também para o\n" +"canal de saída padrão (stdout).\n" +"\n" +" -a, --append acrescenta aos FICHEIROs dados, não escreve por\n" +" cima\n" +" -i, --ignore-interrupts ignora os sinais de interrupção\n" +" --help mostrar esta a ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" + +#: src/kill.c:163 +#, fuzzy, c-format +msgid "%s: invalid signal" +msgstr "\\%c: caracter de escape inválido" + +#: src/kill.c:262 +#, fuzzy, c-format +msgid "missing operand after `%s'" +msgstr "falta um argumento a `%s'" + +#: src/kill.c:274 +#, fuzzy, c-format +msgid "%s: invalid process id" +msgstr "opção inválida `%s'" + +#: src/kill.c:327 +#, fuzzy, c-format +msgid "invalid option -- %c" +msgstr "opção inválida `%s'" + +#: src/kill.c:336 +#, fuzzy, c-format +msgid "%s: multiple signals specified" +msgstr "\\%c: caracter de escape inválido" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "" + +#: src/link.c:51 +#, fuzzy, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"Utilização: %s NOME\n" +" ou: %s OPÇÃO\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" + +#: src/link.c:98 +#, fuzzy, c-format +msgid "cannot create link %s to %s" +msgstr "não consigo obter a directoria actual" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "" + +#: src/ln.c:174 +#, fuzzy, c-format +msgid "%s: hard link not allowed for directory" +msgstr "`%s' não é uma directoria" + +#: src/ln.c:246 +#, fuzzy, c-format +msgid "%s: cannot overwrite directory" +msgstr "não consigo obter a directoria actual" + +#: src/ln.c:251 +#, fuzzy, c-format +msgid "%s: replace %s? " +msgstr "%s: substituir `%s'? " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: Ficheiro já existente" + +#: src/ln.c:304 +#, fuzzy, c-format +msgid "create symbolic link %s to %s" +msgstr "não consigo criar ligação (link) simbólica `%s'" + +#: src/ln.c:305 +#, fuzzy, c-format +msgid "create hard link %s to %s" +msgstr "não consigo criar a ligação (link) de `%s' para `%s'" + +#: src/ln.c:319 +#, fuzzy, c-format +msgid "creating symbolic link %s to %s" +msgstr "não consigo criar ligação (link) simbólica `%s'" + +#: src/ln.c:320 +#, fuzzy, c-format +msgid "creating hard link %s to %s" +msgstr "não consigo criar a ligação (link) de `%s' para `%s'" + +#: src/ln.c:339 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"Utilização: %s [OPÇÃO]... FONTE DESTINO (1o formato)\n" +" ou: %s [OPÇÃO]... FONTE... DIRECTORIA (2o formato)\n" +" ou: %s -d [OPÇÃO]... DIRECTORIA... (3o formato)\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" + +#: src/ln.c:521 +#, fuzzy, c-format +msgid "%s: specified target directory is not a directory" +msgstr "`%s' não é uma directoria" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "" +"quando a fazer ligações (links) múltiplas último argumento deve ser \n" +"directoria" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "Utilização: %s [OPÇÃO]\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" + +#: src/logname.c:99 +#, c-format +msgid "%s: no login name\n" +msgstr "%s: nome de login ausente\n" + +#: src/ls.c:673 +msgid "%b %e %Y" +msgstr "" + +#: src/ls.c:681 +msgid "%b %e %H:%M" +msgstr "" + +#: src/ls.c:1307 +#, fuzzy, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "a ignorar largura inválida na variável do ambiente COLUMNS: %s" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "a ignorar largura inválida na variável do ambiente COLUMNS: %s" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "a ignorar tamanho de tab inválido na variável TABSIZE do ambiente: %s" + +#: src/ls.c:1482 +#, fuzzy, c-format +msgid "invalid line width: %s" +msgstr "argumento inteiro inválido `%s'" + +#: src/ls.c:1556 +#, fuzzy, c-format +msgid "invalid tab size: %s" +msgstr "data inválida `%s'" + +#: src/ls.c:1722 +#, fuzzy, c-format +msgid "invalid time style format %s" +msgstr "intervalo de tempo inválido `%s'" + +#: src/ls.c:2054 +#, fuzzy, c-format +msgid "unrecognized prefix: %s" +msgstr "opção inválida `%s'" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "" +"a variável do ambiente LS_COLORS tem um valor não conhecido (i.e. ilegível)" + +#: src/ls.c:2145 +#, fuzzy, c-format +msgid "cannot determine device and inode of %s" +msgstr "não consigo criar directoria `%s'" + +#: src/ls.c:2155 +#, fuzzy, c-format +msgid "not listing already-listed directory: %s" +msgstr "não consigo obter a directoria actual" + +#: src/ls.c:2208 src/remove.c:929 +#, fuzzy, c-format +msgid "reading directory %s" +msgstr "não consigo obter a directoria actual" + +#: src/ls.c:2603 +#, fuzzy, c-format +msgid "cannot compare file names %s and %s" +msgstr "não consigo %s `%s' para `%s'" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" + +#: src/ls.c:3784 +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" + +#: src/ls.c:3799 +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" + +#: src/ls.c:3831 +#, fuzzy +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -G, --no-group inibir que se mostre a informação de grupo\n" +" -g (ignorado)\n" +" -I, --ignore=PADRÃO não mostrar entradas implícitas incluídas no \n" +" padrão de shell PADRÃO\n" +" -i, --inode mostrar o índice de cada ficheiro\n" +" -k, --kilobytes usar blocos de 1024 em vez de 512 apesar de \n" +" POSIXLY_CORRECT\n" +" -L, --dereference mostrar entradas apontadas por ligações " +"(links)\n" +" simbólicas\n" +" -l usar formato longo de listagem\n" +" -m encher largura com entradas separadas por \n" +" vírgulas\n" +" -N, --literal mostrar os valores \"reais\" das entradas " +"(não\n" +" tratar caracteres com \"Ctrl\" como " +"especiais)\n" +" -n, --numeric-uid-gid mostrar UIDs e GIDs numericamente em vez de " +"pôr\n" +" nome correspondente\n" +" -o usar formato de listagem longo sem informação\n" +" de grupo\n" +" -p acrescentar um caracter para tipificar cada\n" +" entrada\n" +" -Q, --quote-name colocar aspas nos nomes das entradas\n" +" -q, --hide-control-chars mostrar ? em vez de caracteres não gráficos\n" +" -R, --recursive mostrar subdirectorias recursivamente\n" +" -r, --reverse inverter a ordem enquanto ordenando\n" +" -S ordenar por tamanho de ficheiro\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "" + +#: src/md5sum.c:444 +#, fuzzy, c-format +msgid "%s: read error" +msgstr "erro de leitura" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "" + +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "" + +#: src/md5sum.c:473 +msgid "file" +msgstr "" + +#: src/md5sum.c:473 +msgid "files" +msgstr "" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" + +#: src/md5sum.c:572 +#, fuzzy +msgid "the --string and --check options are mutually exclusive" +msgstr "" +"as opções para especificar a data de impressão são mutuamente exclusivas" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "" + +#: src/md5sum.c:596 +#, fuzzy +msgid "no files may be specified when using --string" +msgstr "" +"a string de formatação não deve ser especificada ao imprimir strings com a \n" +"mesma largura" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "" + +#: src/mkdir.c:61 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "Utilização: %s [OPÇÃO]...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" + +#: src/mkdir.c:69 +#, fuzzy +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +"Criar a(s) DIRECTORIA(s), se estas ainda não existirem.\n" +"\n" +" -p, --parent suprimir erros caso exista,, criar directorias \n" +" anteriores à medida que for necessário\n" +" -m, --mode=MODO colocar permissões a valer MODO (como no chmod) em vez\n" +" de rwxrwxrwx - umask\n" +" --verbose mostrar uma mensagem por cada directoria criada\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" + +#: src/mkdir.c:113 +#, fuzzy, c-format +msgid "created directory %s" +msgstr "não consigo obter a directoria actual" + +#: src/mkdir.c:190 +#, fuzzy, c-format +msgid "cannot set permissions of directory %s" +msgstr "aviso: não consigo mudar para a directoria %s" + +#: src/mkfifo.c:55 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "Utilização: %s [OPÇÃO]... NOME...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" + +#: src/mkfifo.c:63 src/mknod.c:64 +#, fuzzy +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" +"Criar pipes com nome (FIFOs) com o NOME dado.\n" +"\n" +" -m, --mode=MODO colocar permissões a MODO (como no chmod), em vez de \n" +" 0666-umask\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "ficheiros \"fifo\" não suportados" + +#: src/mkfifo.c:123 src/mknod.c:127 +#, fuzzy +msgid "invalid mode" +msgstr "\\%c: caracter de escape inválido" + +#: src/mkfifo.c:142 +#, fuzzy, c-format +msgid "cannot set permissions of fifo %s" +msgstr "aviso: não consigo mudar para a directoria %s" + +#: src/mknod.c:55 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "Utilização: %s [OPÇÃO]... NOME...\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" + +#: src/mknod.c:76 +#, fuzzy +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"Criar o ficheiro especial NOME do TIPO dado.\n" +"\n" +" -m, --mode=MODO colocar permissões a MODO (como no chmod), em vez de \n" +" 0666-umask\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" +"\n" +"MAJOR e MINOR são proibidos para TIPO p, obrigatórios nos outros casos.\n" +"TIPO pode ser:\n" +" b criar um ficheiro especial de tipo bloco (buffered)\n" +" c, u criar um ficheiro especial de tipo caracter (não buffered)\n" +" p criar um \"FIFO\"\n" + +#: src/mknod.c:141 +#, fuzzy +msgid "wrong number of arguments" +msgstr "a ignorar argumentos não-opção" + +#: src/mknod.c:153 +msgid "block special files not supported" +msgstr "ficheiros especiais de tipo bloco não suportados" + +#: src/mknod.c:162 +msgid "character special files not supported" +msgstr "ficheiros especiais de tipo caracter não suportados" + +#: src/mknod.c:171 +#, fuzzy +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" +"ao criar ficheiros especiais de tipo bloco, são necessários os números \n" +"\"major\" e \"minor do periférico" + +#: src/mknod.c:186 +#, fuzzy, c-format +msgid "invalid major device number %s" +msgstr "argumento inválido `%s'" + +#: src/mknod.c:191 +#, fuzzy, c-format +msgid "invalid minor device number %s" +msgstr "argumento inteiro inválido `%s'" + +#: src/mknod.c:196 +#, fuzzy, c-format +msgid "invalid device %s %s" +msgstr "data inválida `%s'" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "" +"ficheiros especiais de tipo \"fifo\" pode não ter os números \"major\" e " +"\"minor\"\n" +"do periférico" + +#: src/mknod.c:231 +#, fuzzy, c-format +msgid "cannot set permissions of %s" +msgstr "aviso: não consigo mudar para a directoria %s" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" + +#: src/mv.c:339 +#, fuzzy +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Mudar o nome de FONTE para DESTINO ou mover FONTE(s) para DIRECTORIA.\n" +"\n" +" -b, --backup fazer \"backup\" antes da remoção\n" +" -f, --force apagar destinos existentes, nunca perguntar\n" +" -i, --interactive perguntar antes de apagar\n" +" -u, --update mover somente ficheiros novos ou mais \n" +" recentes\n" +" -v, --verbose explicar o que se está a fazer\n" +" -S, --suffix=SUFIXO usar SUFIXO em vez do sufixo habitual de\n" +" \"backup\"\n" +" -V, --version-sontrol=PALAVRA usar PALAVRA em vez do controle de versão \n" +" usual\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" +"\n" + +#: src/mv.c:467 +#, fuzzy, c-format +msgid "specified target, %s is not a directory" +msgstr "`%s' não é uma directoria" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "" +"ao mover ficheiros múltiplos o último argumento tem que ser uma directoria" + +#: src/nice.c:67 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "Utilização: %s [OPÇÃO]... [COMANDO [ARG]...]\n" + +#: src/nice.c:68 +#, fuzzy +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" +"Corre o COMANDO com uma prioridade de despacho ajustada.\n" +"Sem qualquer COMANDO, mostra a prioridade de despacho actual. AJUSTE é 10\n" +"por defeito. Valores vão desde -20 (prioridade mais alta) a 19 (mais " +"baixa).\n" +"\n" +" -AJUSTE incrementa prioridade AJUSTE primeiro\n" +" -n, --adjustment=AJUSTE igual a -AJUSTE\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" + +#: src/nice.c:109 src/nice.c:122 +#, c-format +msgid "invalid option `%s'" +msgstr "opção inválida `%s'" + +#: src/nice.c:147 +#, c-format +msgid "invalid priority `%s'" +msgstr "prioridade inválida `%s'" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "um comando deve ser dado com um ajuste" + +#: src/nice.c:178 src/nice.c:187 +msgid "cannot get priority" +msgstr "não consigo obter prioridade" + +#: src/nice.c:192 +msgid "cannot set priority" +msgstr "não consigo alterar prioridade" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" + +#: src/nl.c:504 +#, fuzzy, c-format +msgid "invalid starting line number: `%s'" +msgstr "argumento em vírgula flutuante inválido: %s" + +#: src/nl.c:514 +#, fuzzy, c-format +msgid "invalid line number increment: `%s'" +msgstr "argumento inteiro inválido `%s'" + +#: src/nl.c:527 +#, fuzzy, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "intervalo de tempo inválido `%s'" + +#: src/nl.c:541 +#, fuzzy, c-format +msgid "invalid line number field width: `%s'" +msgstr "argumento inteiro inválido `%s'" + +#: src/od.c:287 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"Utilização: %s [OPÇÃO]... DONO[.[GRUPO]] FICHEIRO...\n" +" ou: %s [OPÇÃO]... .[GRUPO] FICHEIRO...\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" + +#: src/od.c:722 src/od.c:844 +#, fuzzy, c-format +msgid "invalid type string `%s'" +msgstr "string de formatação inválida: `%s'" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" + +#: src/od.c:917 +#, fuzzy, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "string de formatação inválida: `%s'" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "" + +#: src/od.c:1717 +#, fuzzy +msgid "skip argument" +msgstr "demasiados argumentos %s" + +#: src/od.c:1725 +#, fuzzy +msgid "limit argument" +msgstr "demasiados argumentos %s" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "" + +#: src/od.c:1804 +msgid "width specification" +msgstr "" + +#: src/od.c:1826 +#, fuzzy +msgid "no type may be specified when dumping strings" +msgstr "" +"a string de formatação não deve ser especificada ao imprimir strings com a \n" +"mesma largura" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "" + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "" + +#: src/paste.c:208 +#, fuzzy +msgid "standard input is closed" +msgstr "canal de entrada por omissão (stdin)" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" + +#: src/pathchk.c:146 +#, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "Utilização: %s [OPÇÃO]... NOME...\n" + +#: src/pathchk.c:147 +#, fuzzy +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" +"Diagnostica construções não portáveis em NOME.\n" +"\n" +" -p, --portability verifica todos os sistemas POSIX, não só este\n" +" --help mostra esta ajuda e sai\n" +" --version mostrar a informação de versão e sai\n" + +#: src/pathchk.c:237 +#, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "o caminho `%s' contém o caracter não portável `%c'" + +#: src/pathchk.c:257 +#, c-format +msgid "`%s' is not a directory" +msgstr "`%s' não é uma directoria" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "não é possível procurar na directoria `%s'" + +#: src/pathchk.c:355 +#, fuzzy, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "nome `%s' tem comprimento %d; excede limite de %d" + +#: src/pathchk.c:381 +#, fuzzy, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "caminho `%s' tem comprimento %d; excede limite de %d" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "" + +#: src/pinky.c:292 +#, fuzzy +msgid "Login name: " +msgstr "%s: nome de login ausente\n" + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "" + +#: src/pinky.c:298 +msgid "???\n" +msgstr "" + +#: src/pinky.c:318 +msgid "Directory: " +msgstr "" + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "" + +#: src/pinky.c:341 +msgid "Project: " +msgstr "" + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "" + +#: src/pinky.c:386 +msgid "Login" +msgstr "" + +#: src/pinky.c:388 +msgid "Name" +msgstr "" + +#: src/pinky.c:389 +msgid " TTY" +msgstr "" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "" + +#: src/pinky.c:392 +msgid "When" +msgstr "" + +#: src/pinky.c:395 +msgid "Where" +msgstr "" + +#: src/pinky.c:469 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "Utilização: %s [OPÇÃO]... [STRING]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" + +#: src/pinky.c:574 +msgid "no username specified; at least one must be specified when using -l" +msgstr "" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "" + +#: src/pr.c:805 +#, fuzzy, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "número de grupo inválido `%s'" + +#: src/pr.c:817 +#, fuzzy, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "argumento em vírgula flutuante inválido: %s" + +#: src/pr.c:829 +#, fuzzy, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "argumento inteiro inválido `%s'" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "" + +#: src/pr.c:1000 +#, fuzzy, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "número \"minor\" de periférico inválido `%s'" + +#: src/pr.c:1012 +#, fuzzy, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "largura de linha inválida: %s" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "" + +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "" + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "" + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr "" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" + +#: src/printenv.c:43 +msgid "David MacKenzie and Richard Mlynarik" +msgstr "" + +#: src/printenv.c:63 +#, fuzzy, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" +"Se não for especificada nenhuma VARIÁVEL do ambiente, mostra todas.\n" +"\n" +" --help mostrar esta ajuda\n" +" --version mostrar informação de versão e sair\n" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "" + +#: src/printf.c:100 +#, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"Utilização: %s FORMATO [ARGUMENTO]...\n" +" ou: %s OPÇÃO\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "%s: valor numérico esperado" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "%s: valor não convertido na totalidade" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "falta um número hexadecimal no caracter de escape" + +#: src/printf.c:292 +#, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "" + +#: src/printf.c:472 +#, fuzzy, c-format +msgid "invalid field width: %s" +msgstr "argumento inteiro inválido `%s'" + +#: src/printf.c:498 +#, fuzzy, c-format +msgid "invalid precision: %s" +msgstr "opção inválida `%s'" + +#: src/printf.c:519 +#, c-format +msgid "%%%c: invalid directive" +msgstr "%%%c: directiva inválida" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "Utilização: %s formato [argumento...]\n" + +#: src/printf.c:594 +#, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "" + +#: src/ptx.c:1859 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"Utilização: %s [OPÇÃO]... FONTE DESTINO\n" +" ou: %s [OPÇÃO]... FONTE... DIRECTORIA\n" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" + +#: src/pwd.c:74 +msgid "ignoring non-option arguments" +msgstr "a ignorar argumentos não-opção" + +#: src/pwd.c:78 +msgid "cannot get current directory" +msgstr "não consigo obter a directoria actual" + +#: src/readlink.c:69 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "Utilização: %s [OPÇÃO]... [FICHEIRO]...\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" + +#: src/remove.c:394 +#, fuzzy, c-format +msgid "cannot chdir from %s to .." +msgstr "aviso: não consigo mudar para a directoria %s" + +#: src/remove.c:407 src/remove.c:488 +#, fuzzy, c-format +msgid "cannot lstat `.' in %s" +msgstr "não consigo correr %s" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, fuzzy, c-format +msgid "cannot lstat %s" +msgstr "não consigo alterar data" + +#: src/remove.c:603 +#, fuzzy, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "não consigo obter a directoria actual" + +#: src/remove.c:604 +#, fuzzy, c-format +msgid "%s: descend into directory %s? " +msgstr "aviso: não consigo mudar para a directoria %s" + +#: src/remove.c:614 +#, fuzzy, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: apagar directoria `%s'? " + +#: src/remove.c:615 +#, fuzzy, c-format +msgid "%s: remove %s %s? " +msgstr "%s: apagar %s`%s'? " + +#: src/remove.c:639 +#, fuzzy, c-format +msgid "removed %s\n" +msgstr "%s: apagar directoria `%s'? " + +#: src/remove.c:654 src/remove.c:1059 +#, fuzzy, c-format +msgid "removed directory: %s\n" +msgstr "não consigo obter a directoria actual" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, fuzzy, c-format +msgid "cannot remove directory %s" +msgstr "não consigo obter a directoria actual" + +#: src/remove.c:815 +#, fuzzy, c-format +msgid "cannot open directory %s" +msgstr "não consigo obter a directoria actual" + +#: src/remove.c:896 src/remove.c:1002 +#, fuzzy, c-format +msgid "cannot chdir from %s to %s" +msgstr "aviso: não consigo mudar para a directoria %s" + +#: src/remove.c:904 +#, fuzzy, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +"%s: AVISO: Estrutura de directorias circular.\n" +"Isto quer dizer quase de certeza que tens o sistema de ficheiros\n" +"corrupto.\n" +"AVISA O TEU ADMINISTRADOR DE SISTEMA.\n" +"Ciclo detectado:\n" +"%s\n" +"é o mesmo ficheiro que\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "não consigo apagar `.' ou `..'" + +#: src/rm.c:60 +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "" + +#: src/rm.c:99 src/touch.c:244 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "Utilização: %s [OPÇÃO]... [FICHEIRO]...\n" + +#: src/rm.c:100 +#, fuzzy +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Apagar (destruir as ligações - unlink) do(s) FICHEIRO(s).\n" +"\n" +" -d, --directory destruir a ligação (link) da directoria, mesmo que\n" +" não vazia (só super-utilizador)\n" +" -f, --force ignorar ficheiros não existentes, nunca perguntar\n" +" -i, --interactive perguntar antes de qualquer remoção\n" +" -v, --verbose explicar o que se está a fazer\n" +" -r, -R, --recursive apagar os conteúdos das directorias recursivamente\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, fuzzy, c-format +msgid "removing directory, %s" +msgstr "não consigo obter a directoria actual" + +#: src/rmdir.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "Utilização: %s [OPÇÃO]... [FICHEIRO]...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" + +#: src/rmdir.c:154 +#, fuzzy +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +"Apaga a(s) DIRECTORIA(s), se elas estiverem vazias.\n" +"\n" +" -p, --parents remover directorias antecedentes explícitas se ficarem\n" +" vazias\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a versão e sair\n" + +#: src/seq.c:82 +#, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" + +#: src/seq.c:96 +#, fuzzy, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" +"\n" +" -f, --format FORMATO utilizar o estilo de FORMATO do printf(3) \n" +" (por defeito: %%g)\n" +" --help mostrar esta ajuda e sair\n" +" -s, --separator STRING usar STRING para especificar números\n" +" (por defeito: \\n)\n" +" --version mostrar a informação de versão e sair\n" +" -w, --equal-width tornar a largura igual acrescentando zeros no \n" +" fim\n" +"\n" +"COMEÇO, INCREMENTO, e LIMITE são interpretados como valores em vírgula\n" +"flutuante.\n" +"INCREMENTO deve ser positivo se COMEÇO fôr mais pequeno que LIMITE, e\n" +"negativo caso contrário. Quando indicado, o argumento FORMATO deve conter\n" +"exactamente um de %%e, %%f ou %%g - argumentos de formatação vírgula \n" +"flutuante do printf.\n" + +#: src/seq.c:119 +#, c-format +msgid "invalid floating point argument: %s" +msgstr "argumento em vírgula flutuante inválido: %s" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" +"quando o valor inicial é maior que o limite,\n" +"o incremento deve ser positivo" + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" +"quando o valor inicial é menor que o limite,\n" +"o argumento deve ser positivo" + +#: src/seq.c:423 +#, c-format +msgid "invalid format string: `%s'" +msgstr "string de formatação inválida: `%s'" + +#: src/seq.c:445 +msgid "format string may not be specified when printing equal width strings" +msgstr "" +"a string de formatação não deve ser especificada ao imprimir strings com a \n" +"mesma largura" + +#: src/shred.c:160 +#, fuzzy, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "Utilização: %s [OPÇÃO]... [FICHEIRO]...\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" + +#: src/shred.c:174 +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" + +#: src/shred.c:808 +#, fuzzy, c-format +msgid "%s: cannot rewind" +msgstr "não consigo correr %s" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "" + +#: src/shred.c:868 +#, c-format +msgid "%s: error writing at offset %s" +msgstr "" + +#: src/shred.c:897 +#, c-format +msgid "%s: file too large" +msgstr "" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "" + +#: src/shred.c:936 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "" + +#: src/shred.c:1195 +#, fuzzy, c-format +msgid "%s: invalid file type" +msgstr "\\%c: caracter de escape inválido" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "" + +#: src/shred.c:1265 +#, c-format +msgid "%s: error truncating" +msgstr "" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "" + +#: src/shred.c:1371 +#, fuzzy, c-format +msgid "%s: removing" +msgstr "%s: apagar directoria `%s'? " + +#: src/shred.c:1412 +#, fuzzy, c-format +msgid "%s: renamed to %s" +msgstr "opção inválida `%s'" + +#: src/shred.c:1438 +#, fuzzy, c-format +msgid "%s: removed" +msgstr "%s: apagar %s`%s'? " + +#: src/shred.c:1503 +#, fuzzy, c-format +msgid "%s: cannot remove" +msgstr "%s: não consigo escrever em cima da directoria" + +#: src/shred.c:1551 +#, fuzzy, c-format +msgid "%s: invalid number of passes" +msgstr "opção inválida `%s'" + +#: src/shred.c:1568 +#, fuzzy, c-format +msgid "%s: invalid file size" +msgstr "\\%c: caracter de escape inválido" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "" + +#: src/sleep.c:52 +#, fuzzy, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" +"Parar por NÚMERO segundos.\n" +"SUFIXO pode ser s para indicar segundos, m para minutos, h para horas ou d\n" +"para dias\n" +"\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" + +#: src/sleep.c:155 +#, c-format +msgid "invalid time interval `%s'" +msgstr "intervalo de tempo inválido `%s'" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" + +#: src/sort.c:444 +#, fuzzy +msgid "cannot create temporary file" +msgstr "não consigo obter a directoria actual" + +#: src/sort.c:467 +msgid "open failed" +msgstr "" + +#: src/sort.c:487 src/sort.c:2496 +#, fuzzy +msgid "close failed" +msgstr "ficheiros especiais de tipo bloco não suportados" + +#: src/sort.c:495 +#, fuzzy +msgid "write failed" +msgstr "erro na escrita" + +#: src/sort.c:641 +#, fuzzy +msgid "sort size" +msgstr "tipo de ordenação" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "" + +#: src/sort.c:972 +#, fuzzy +msgid "read failed" +msgstr "`%s' não é um ficheiro normal" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "" + +#: src/sort.c:1574 +#, fuzzy +msgid "standard error" +msgstr "erro de sintaxe" + +#: src/sort.c:2032 +#, fuzzy, c-format +msgid "%s: invalid field specification `%s'" +msgstr "opção inválida `%s'" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "" + +#: src/sort.c:2064 +#, fuzzy, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "string de formatação inválida: `%s'" + +#: src/sort.c:2298 +#, fuzzy +msgid "invalid number after `-'" +msgstr "data inválida `%s'" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +#, fuzzy +msgid "invalid number after `.'" +msgstr "data inválida `%s'" + +#: src/sort.c:2304 src/sort.c:2383 +#, fuzzy +msgid "stray character in field spec" +msgstr "ficheiros especiais de tipo caracter não suportados" + +#: src/sort.c:2338 +#, fuzzy +msgid "invalid number at field start" +msgstr "número inválido `%s'" + +#: src/sort.c:2342 src/sort.c:2370 +#, fuzzy +msgid "field number is zero" +msgstr "número inválido `%s'" + +#: src/sort.c:2351 +#, fuzzy +msgid "character offset is zero" +msgstr "ficheiros especiais de tipo caracter não suportados" + +#: src/sort.c:2366 +#, fuzzy +msgid "invalid number after `,'" +msgstr "data inválida `%s'" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "" + +#: src/split.c:96 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "Utilização: %s [OPÇÃO]... [FICHEIRO]...\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" + +#: src/split.c:108 +#, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "" + +#: src/split.c:189 +#, fuzzy, c-format +msgid "creating file `%s'\n" +msgstr "%s: apagar directoria `%s'? " + +#: src/split.c:341 +#, fuzzy +msgid "cannot split in more than one way" +msgstr "não consigo obter prioridade" + +#: src/split.c:394 +#, fuzzy, c-format +msgid "%s: invalid suffix length" +msgstr "\\%c: caracter de escape inválido" + +#: src/split.c:408 src/split.c:434 +#, fuzzy, c-format +msgid "%s: invalid number of bytes" +msgstr "opção inválida `%s'" + +#: src/split.c:421 +#, fuzzy, c-format +msgid "%s: invalid number of lines" +msgstr "opção inválida `%s'" + +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "" + +#: src/split.c:483 +#, fuzzy +msgid "invalid number" +msgstr "\\%c: caracter de escape inválido" + +#: src/stat.c:326 +#, fuzzy +msgid "*** invalid date/time ***" +msgstr "data inválida `%s'" + +#: src/stat.c:608 +#, fuzzy, c-format +msgid "cannot read file system information for %s" +msgstr "não consigo obter a directoria actual" + +#: src/stat.c:684 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "Utilização: %s [OPÇÃO]... [FICHEIRO]...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" + +#: src/stty.c:504 +#, fuzzy +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" +"Mostrar ou alterar as características do terminal.\n" +"\n" +" -a, --all mostrar todas as características num formato legível por\n" +"humanos\n" +" -g, --save mostrar todas as características num formato legível \n" +"pelo stty\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" +"\n" +"Um - opcional antes de de PARÂMETRO indica negação. Um * marca parâmetros \n" +"não-POSIX. O sistema onde o stty corre determina quais as características " +"que\n" +"estão disponíveis.\n" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" + +#: src/stty.c:570 +#, fuzzy +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" +"\n" +"Parâmetros de controle:\n" +" [-]clocal desactivar os sinais de controle do modem\n" +" [-]cread permitir a entrada de dados\n" +"* [-]crtscts permitir negociação RTS/CTS\n" +" csN colocar a N bits o tamanho dos caracteres, N em [5..8]\n" +" [-]cstopb usar dois bits de paragem por caracter (um com `-')\n" +" [-]hup enviar um sinal de desligar quando o último processo\n" +" fechar o tty\n" +" [-]hupcl o mesmo que [-]hup\n" +" [-]parenb gerar um bit de paridade no output e esperar um bit de\n" +" paridade no input\n" +" [-]parodd colocar a paridade a ímpar (mesmo com `-')\n" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:608 +#, fuzzy +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" +"\n" +"Parâmetros de saída:\n" +"* bsN estilo do temporizador do backspace, N em [0..1]\n" +"* crN estilo do temporizador do carriage return, N em [0..3]\n" +"* ffN estilo do temporizador do form feed, N em [0..1]\n" +"* nlN estilo do temporizador do newline, N em [0..1]\n" +"* [-]ocrnl traduzir carriage return para newline\n" +"* [-]ofdel usar caracteres de delete em vez de caracteres null para\n" +" preencher.\n" +"* [-]ofill preencher caracteres em vez de esperar por temporizador\n" +"* [-]olcuc traduzir minúsculas para maiúsculas\n" +"* [-]onlcr traduzir newline para carriage return-newline\n" +"* [-]onlret newline faz um carriage return\n" +"* [-]onocr não imprimir carriage return na primeira coluna\n" +" [-]opost pos-processar a saída\n" +"* tabN estilo do temporizador do tab horizontal, N em [0..3]\n" +"* tabs o mesmo que tab0\n" +"* -tabs o mesmo que tab3\n" +"* vtN estilo do temporizador do tab vertical, N em [0..1]\n" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" +"\n" +"Trata o tty ligado ao canal de entrada por defeito (stdin). Sem argumentos,\n" +"imprime o ritmo em baud, a disciplina da linha e diferenças em relação a " +"stty\n" +"sane. Nos parâmetros, CHAR é aceite literalmente, ou codificado com em ^C,\n" +"0x37, 0177 ou 127; valores especiais ^- ou undef são utilizados para anular\n" +"caracteres especiais.\n" + +#: src/stty.c:787 +msgid "only one device may be specified" +msgstr "" + +#: src/stty.c:882 +#, fuzzy +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "" +"as opções para saída em modo verboso e legível pelo stty são mutuamente\n" +"exclusivas" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "ao especificar um modo de saída, não pode alterar um modo" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "" + +#: src/stty.c:957 src/stty.c:1064 +#, c-format +msgid "invalid argument `%s'" +msgstr "argumento inválido `%s'" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, c-format +msgid "missing argument to `%s'" +msgstr "falta um argumento a `%s'" + +#: src/stty.c:1117 +#, fuzzy, c-format +msgid "%s: unable to perform all requested operations" +msgstr "" +"canal de entrada padrão (stdin): não é possível realizar todas as opções\n" +"pedidas" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "modo_novo: modo\n" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "" + +#: src/stty.c:1944 +#, c-format +msgid "invalid integer argument `%s'" +msgstr "argumento inteiro inválido `%s'" + +#: src/su.c:289 +msgid "Password:" +msgstr "Password:" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "getpass: não consigo abrir /dev/tty" + +#: src/su.c:350 +msgid "cannot set groups" +msgstr "não consigo alterar grupos" + +#: src/su.c:354 +msgid "cannot set group id" +msgstr "não consigo alterar a identificação de grupo" + +#: src/su.c:356 +msgid "cannot set user id" +msgstr "não consigo alterar a identificação de utilizador" + +#: src/su.c:437 +#, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "Utilização: %s [OPÇÃO]... [-] [UTILIZADOR [ARGUMENTO]...]\n" + +#: src/su.c:438 +#, fuzzy +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" +"Altera as identificações de utilizador e de grupo efectivas do UTILIZADOR.\n" +"\n" +" -, -l, --login tornar a shell numa shell de login\n" +" -c, --command=COMANDO envia um único COMANDO à \"shell\", usando -" +"c\n" +" -f, --fast envia um -f à shell (para csh ou tcsh)\n" +" -m, --preserver-environment não fazer colocar as variáveis do ambiente\n" +" \t\t\t\taos seus valores por defeito\n" +" -p o mesmo que -m\n" +" -s, --shell=SHELL correr SHELL se /etc/shells o permitir\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" +"\n" +"Um único - implica -l. Se UTILIZADOR não for especificador, assume-se root.\n" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "utilizador %s não existe" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "password incorrecta" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "a usar a shell restrita %s" + +#: src/su.c:580 +#, c-format +msgid "warning: cannot change directory to %s" +msgstr "aviso: não consigo mudar para a directoria %s" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "" + +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" + +#: src/sync.c:70 src/tty.c:112 +#, fuzzy +msgid "ignoring all arguments" +msgstr "a ignorar argumentos não-opção" + +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr "" + +#: src/sys2.h:494 +#, fuzzy +msgid " --version output version information and exit\n" +msgstr "" +"\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" +"\n" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tac.c:139 +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" + +#: src/tac.c:453 src/tac.c:592 +#, fuzzy +msgid "stdin: read error" +msgstr "erro de leitura" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "" + +#: src/tail.c:49 +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" + +#: src/tail.c:331 +#, fuzzy, c-format +msgid "closing %s (fd=%d)" +msgstr "%s: apagar directoria `%s'? " + +#: src/tail.c:391 +#, fuzzy, c-format +msgid "%s: cannot seek to offset %s" +msgstr "não consigo determinar o hostname" + +#: src/tail.c:395 +#, fuzzy, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "não consigo criar \"fifo\" `%s'" + +#: src/tail.c:400 +#, fuzzy, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "não consigo criar \"fifo\" `%s'" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "" + +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "" + +#: src/tail.c:1020 +#, fuzzy +msgid "no files remaining" +msgstr "faltam argumentos de ficheiro" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "" + +#: src/tail.c:1356 +#, fuzzy, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "formato da data inválido `%s'" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" + +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "" + +#: src/tail.c:1510 +#, fuzzy, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "número inválido `%s'" + +#: src/tail.c:1522 +#, fuzzy, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "número inválido `%s'" + +#: src/tail.c:1534 +#, fuzzy, c-format +msgid "%s: invalid PID" +msgstr "\\%c: caracter de escape inválido" + +#: src/tail.c:1549 +#, fuzzy, c-format +msgid "%s: invalid number of seconds" +msgstr "opção inválida `%s'" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "" + +#: src/tail.c:1575 +#, fuzzy +msgid "warning: --pid=PID is not supported on this system" +msgstr "--no-dereference (-h) não é suportado neste sistema" + +#: src/tee.c:33 +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "" + +#: src/tee.c:64 +#, fuzzy +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" +"Copia o canal de entrada padrão (stdin) para cada FICHEIRO, e também para o\n" +"canal de saída padrão (stdout).\n" +"\n" +" -a, --append acrescenta aos FICHEIROs dados, não escreve por\n" +" cima\n" +" -i, --ignore-interrupts ignora os sinais de interrupção\n" +" --help mostrar esta a ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "argumento esperado\n" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "esperava uma expressão inteira %s\n" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "')' esperado\n" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "')' esperado, encontrei %s\n" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "%s: operador unário esperado\n" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "%s: operador binário esperado\n" + +#: src/test.c:424 +msgid "before -lt" +msgstr "antes de -lt" + +#: src/test.c:432 +msgid "after -lt" +msgstr "depois de -lt" + +#: src/test.c:446 +msgid "before -le" +msgstr "antes de -le" + +#: src/test.c:453 +msgid "after -le" +msgstr "depois de -le" + +#: src/test.c:469 +msgid "before -gt" +msgstr "antes de -gt" + +#: src/test.c:476 +msgid "after -gt" +msgstr "depois de -gt" + +#: src/test.c:490 +msgid "before -ge" +msgstr "antes de -ge" + +#: src/test.c:497 +msgid "after -ge" +msgstr "depois de -ge" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "-nt não aceita -l\n" + +#: src/test.c:526 +msgid "before -ne" +msgstr "antes de -ne" + +#: src/test.c:533 +msgid "after -ne" +msgstr "depois de -ne" + +#: src/test.c:549 +msgid "before -eq" +msgstr "antes de -eq" + +#: src/test.c:556 +msgid "after -eq" +msgstr "depois de -eq" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "-ef não aceita -l\n" + +#: src/test.c:586 +#, fuzzy +msgid "-ot does not accept -l\n" +msgstr "-nt não aceita -l\n" + +#: src/test.c:593 +msgid "unknown binary operator" +msgstr "operador binário desconhecido" + +#: src/test.c:781 +#, fuzzy +msgid "after -t" +msgstr "depois de -lt" + +#: src/test.c:979 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"Utilização: %s EXPRESSÃO\n" +" ou: [ EXPRESSÃO ]\n" +" ou: %s OPÇÃO\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" + +#: src/test.c:1009 +#, fuzzy +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" +"\n" +" ( EXPRESSÃO ) EXPRESSÃO é verdadeira\n" +" ! EXPRESSÃO\t\t\tEXPRESSÃO é falsa\n" +" EXPRESSÃO1 -a EXPRESSÃO2 tanto EXPRESSÃO1 como EXPRESSÃO2 \n" +"\t\t\t\tsão verdadeiras\n" +" EXPRESSÃO1 -o EXPRESSÃO2 nem EXPRESSÃO1 nem EXPRESSÃO2 são " +"verdadeiras\n" +"\n" +" [-n] STRING o comprimento de STRING é diferente de zero\n" +" -z STRING o comprimento de STRING é zero\n" +" STRING1 = STRING2 as STRING's são iguais\n" +" STRING1 != STRING2 as STRING's são diferentes\n" +"\n" +" INTEIRO1 -eq INTEIRO2 INTEIRO1 é igual a INTEIRO2\n" +" INTEIRO1 -ge INTEIRO2 INTEIRO1 é maior ou igual a INTEIRO2\n" +" INTEIRO1 -gt INTEIRO2 INTEIRO1 é maior que INTEIRO2\n" +" INTEIRO1 -le INTEIRO2 INTEIRO1 é menor ou igual a INTEIRO2\n" +" INTEIRO1 -lt INTEIRO2 INTEIRO1 é menor que INTEIRO2\n" +" INTEIRO1 -ne INTEIRO2 INTEIRO1 é diferente de INTEIRO2\n" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" +"\n" +"Lembre-se que os parêntesis têm que ser alterados (por exemplo, usando \n" +"anti-barras) se vão se usados com shells.\n" +"INTEIRO pode também ser -l STRING, que retorna o comprimento de STRING.\n" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "falta um ']'\n" + +#: src/test.c:1125 +msgid "too many arguments\n" +msgstr "demasiados argumentos\n" + +#: src/touch.c:39 +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "" + +#: src/touch.c:164 src/touch.c:179 +#, fuzzy, c-format +msgid "creating %s" +msgstr "%s: apagar directoria `%s'? " + +#: src/touch.c:222 +#, fuzzy, c-format +msgid "cannot touch %s" +msgstr "não consigo correr %s" + +#: src/touch.c:228 +#, fuzzy, c-format +msgid "setting times of %s" +msgstr "%s: apagar directoria `%s'? " + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" + +#: src/touch.c:311 src/touch.c:331 +#, fuzzy, c-format +msgid "invalid date format %s" +msgstr "data inválida `%s'" + +#: src/touch.c:355 +msgid "cannot specify times from more than one source" +msgstr "não consigo especificar tempos a partir de mais de uma fonte" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "" + +#: src/touch.c:399 +#, fuzzy +msgid "file arguments missing" +msgstr "poucos argumentos" + +#: src/tr.c:327 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "Utilização: %s [OPÇÃO]... [STRING]...\n" + +#: src/tr.c:331 +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" + +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" + +#: src/tr.c:566 +#, fuzzy +msgid "invalid backslash escape at end of string" +msgstr "formato da data inválido `%s'" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "" + +#: src/tr.c:1025 +#, fuzzy, c-format +msgid "invalid character class `%s'" +msgstr "data inválida `%s'" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" + +#: src/true.c:34 +#, fuzzy, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Utilização: %s [NOME]\n" +" ou: %s [OPÇÃO]\n" +"Mostra o hostname do sistema corrente.\n" +"\n" +" --help mostra esta ajuda e sai\n" +" --version mostra a informação de versão e sai\n" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "" + +#: src/tsort.c:575 +#, fuzzy +msgid "only one argument may be specified" +msgstr "\\%c: caracter de escape inválido" + +#: src/tty.c:63 +#, fuzzy +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" +"Mostra o nome do terminal ligado ao canal e entrada padrão (stdin).\n" +"\n" +" -s, --silent, --quiet não mostra nada, só retorna o estado de saída\n" +" --help mostrar esta a ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "não é um tty" + +#: src/uname.c:111 +#, fuzzy +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" +"Mostra alguma informação sobre o sistema. Sem OPÇÃO, o mesmo que -s.\n" +"\n" +" -a, --all mostra toda a informação\n" +" -m, --machine mostra o tipo da máquina (hardware)\n" +" -n, --nodename mostra o nome do nó da máquina na rede\n" +" -r, --release mostra a versão do sistema operativo\n" +" -s, --sysname mostra o nome do sistema operativo\n" +" -v mostra a altura em que o sistema foi criado\n" +" --help mostra esta ajuda e sair\n" +" --version mostra a informação de versão e sai\n" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" + +#: src/uname.c:226 +msgid "cannot get system name" +msgstr "não consigo obter o nome do sistema" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" + +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "" + +#: src/uniq.c:139 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "Utilização: %s [OPÇÃO]... [FICHEIRO]...\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr "" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" + +#: src/uniq.c:381 +#, fuzzy, c-format +msgid "error reading %s" +msgstr "%s: apagar directoria `%s'? " + +#: src/uniq.c:386 +#, fuzzy, c-format +msgid "error writing %s" +msgstr "%s: apagar directoria `%s'? " + +#: src/uniq.c:433 src/uniq.c:450 +#, fuzzy, c-format +msgid "extra operand `%s'" +msgstr "modo inválido `%s'" + +#: src/uniq.c:473 src/uniq.c:498 +#, fuzzy +msgid "invalid number of fields to skip" +msgstr "número inválido `%s'" + +#: src/uniq.c:507 +#, fuzzy +msgid "invalid number of bytes to skip" +msgstr "número inválido `%s'" + +#: src/uniq.c:516 +#, fuzzy +msgid "invalid number of bytes to compare" +msgstr "número inválido `%s'" + +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "" + +#: src/unlink.c:51 +#, fuzzy, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"Utilização: %s NOME\n" +" ou: %s OPÇÃO\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" + +#: src/unlink.c:99 +#, fuzzy, c-format +msgid "cannot unlink %s" +msgstr "não consigo correr %s" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr "" + +#: src/uptime.c:140 +msgid "am" +msgstr "" + +#: src/uptime.c:140 +msgid "pm" +msgstr "" + +#: src/uptime.c:142 +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#: src/uptime.c:144 +#, fuzzy, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "\\%c: caracter de escape inválido" +msgstr[1] "\\%c: caracter de escape inválido" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr "" + +#: src/uptime.c:191 src/users.c:118 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "Utilização: %s [OPÇÃO]... [FICHEIRO]...\n" + +#: src/uptime.c:192 +#, fuzzy, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Mostra o nome do utilizador associado à identificação de utilizador " +"efectiva\n" +"actualmente.\n" +"O mesmo que id -un.\n" +"\n" +" --help mostrar esta ajuda e sair.\n" +" --version mostrar informação de versão e sair\n" + +#: src/users.c:35 +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "" + +#: src/users.c:119 +#, fuzzy, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Mostra o nome do utilizador associado à identificação de utilizador " +"efectiva\n" +"actualmente.\n" +"O mesmo que id -un.\n" +"\n" +" --help mostrar esta ajuda e sair.\n" +" --version mostrar informação de versão e sair\n" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "" + +#: src/wc.c:129 +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "" + +#: src/who.c:223 +msgid " old " +msgstr "" + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "" + +#: src/who.c:446 +msgid "clock change" +msgstr "" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" + +#: src/who.c:498 +msgid "NAME" +msgstr "" + +#: src/who.c:498 +msgid "LINE" +msgstr "" + +#: src/who.c:498 +msgid "TIME" +msgstr "" + +#: src/who.c:498 +msgid "IDLE" +msgstr "" + +#: src/who.c:498 +msgid "PID" +msgstr "" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "" + +#: src/who.c:499 +msgid "EXIT" +msgstr "" + +#: src/who.c:574 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "Utilização: %s [OPÇÃO]... [FICHEIRO]...\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" + +#: src/whoami.c:53 +#, fuzzy +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" +"Mostra o nome do utilizador associado à identificação de utilizador " +"efectiva\n" +"actualmente.\n" +"O mesmo que id -un.\n" +"\n" +" --help mostrar esta ajuda e sair.\n" +" --version mostrar informação de versão e sair\n" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "%s: não consigo encontrar um nome para o UID %u\n" + +#: src/yes.c:49 +#, fuzzy, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"Utilização: %s [PARÂMETRO]...\n" +" ou: %s OPÇÃO\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" + +#~ msgid "\\%c: invalid escape" +#~ msgstr "\\%c: caracter de escape inválido" + +#, fuzzy +#~ msgid "program error" +#~ msgstr "erro de leitura" + +#, fuzzy +#~ msgid "cannot convert time" +#~ msgstr "não consigo alterar data" + +#, fuzzy +#~ msgid "cannot format time" +#~ msgstr "não consigo correr %s" + +#, fuzzy +#~ msgid "cannot change to `..' from directory %s" +#~ msgstr "aviso: não consigo mudar para a directoria %s" + +#, fuzzy +#~ msgid "missing file arguments" +#~ msgstr "falta um argumento a `%s'" + +#, fuzzy +#~ msgid "environment variable, QUOTING_STYLE" +#~ msgstr "a ignorar largura inválida na variável do ambiente COLUMNS: %s" + +#, fuzzy +#~ msgid "cannot execute %s" +#~ msgstr "não consigo correr %s" + +#~ msgid "cannot run %s" +#~ msgstr "não consigo correr %s" + +#, fuzzy +#~ msgid "Try %s --help' for more information.\n" +#~ msgstr "Tente `%s --help' para mais informação.\n" + +#, fuzzy +#~ msgid "cannot lstat `.'" +#~ msgstr "não consigo alterar data" + +#, fuzzy +#~ msgid "closing directory %s" +#~ msgstr "aviso: não consigo mudar para a directoria %s" + +#, fuzzy +#~ msgid "%s: remove directory %s? " +#~ msgstr "não consigo obter a directoria actual" + +#, fuzzy +#~ msgid "removing all entries of directory %s\n" +#~ msgstr "%s: apagar directoria `%s'? " + +#, fuzzy +#~ msgid "continue? " +#~ msgstr "%s: continuar? " + +#, fuzzy +#~ msgid "cannot change back to directory %s via `..'" +#~ msgstr "aviso: não consigo mudar para a directoria %s" + +#, fuzzy +#~ msgid "%s: remove directory %s%s? " +#~ msgstr "não consigo obter a directoria actual" + +#, fuzzy +#~ msgid "removing the directory itself: %s\n" +#~ msgstr "aviso: não consigo mudar para a directoria %s" + +#, fuzzy +#~ msgid "cannot remove current directory %s" +#~ msgstr "não consigo obter a directoria actual" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Mostra o nome do utilizador actual.\n" +#~ "\n" +#~ " --help mostrar esta ajuda e sair\n" +#~ " --version mostrar a informação de versão e sair\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Mostra o nome do utilizador actual.\n" +#~ "\n" +#~ " --help mostrar esta ajuda e sair\n" +#~ " --version mostrar a informação de versão e sair\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Mostra o nome do utilizador actual.\n" +#~ "\n" +#~ " --help mostrar esta ajuda e sair\n" +#~ " --version mostrar a informação de versão e sair\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Mostra o nome do utilizador actual.\n" +#~ "\n" +#~ " --help mostrar esta ajuda e sair\n" +#~ " --version mostrar a informação de versão e sair\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Mostra o nome do utilizador actual.\n" +#~ "\n" +#~ " --help mostrar esta ajuda e sair\n" +#~ " --version mostrar a informação de versão e sair\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Mostra o nome do utilizador actual.\n" +#~ "\n" +#~ " --help mostrar esta ajuda e sair\n" +#~ " --version mostrar a informação de versão e sair\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Mostra o nome do utilizador actual.\n" +#~ "\n" +#~ " --help mostrar esta ajuda e sair\n" +#~ " --version mostrar a informação de versão e sair\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Mostra o nome do utilizador actual.\n" +#~ "\n" +#~ " --help mostrar esta ajuda e sair\n" +#~ " --version mostrar a informação de versão e sair\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Mostra o nome do utilizador actual.\n" +#~ "\n" +#~ " --help mostrar esta ajuda e sair\n" +#~ " --version mostrar a informação de versão e sair\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Mostra o nome do utilizador actual.\n" +#~ "\n" +#~ " --help mostrar esta ajuda e sair\n" +#~ " --version mostrar a informação de versão e sair\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Mostra o nome do utilizador actual.\n" +#~ "\n" +#~ " --help mostrar esta ajuda e sair\n" +#~ " --version mostrar a informação de versão e sair\n" + +#, fuzzy +#~ msgid "" +#~ "Change the group membership of each FILE to GROUP.\n" +#~ "\n" +#~ " -c, --changes like verbose but report only when a change is " +#~ "made\n" +#~ " --dereference affect the referent of each symbolic link, " +#~ "rather\n" +#~ " than the symbolic link itself\n" +#~ " -h, --no-dereference affect symbolic links instead of any referenced " +#~ "file\n" +#~ " (available only on systems that can change the\n" +#~ " ownership of a symlink)\n" +#~ " -f, --silent, --quiet suppress most error messages\n" +#~ " --reference=RFILE use RFILE's group rather than the specified\n" +#~ " GROUP value\n" +#~ " -R, --recursive operate on files and directories recursively\n" +#~ " -v, --verbose output a diagnostic for every file processed\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Muda as permissões de grupo de cada FICHEIRO para GRUPO\n" +#~ "\n" +#~ " -c, --changes igual ao modo \"verbose\" mas avisa só quando " +#~ "uma \n" +#~ " alteração é feita\n" +#~ " -h, --no-dereference afectar ligações simbólicas (symlinks) em vez de\n" +#~ " algum ficheiro referenciado\n" +#~ " -f, --silent, --quiet desligar a maior parte das mensagens de erro\n" +#~ " -v, --verbose mostrar um diagnóstico por cada ficheiro " +#~ "processado\n" +#~ " -R, --recursive mudar ficheiros e directorias recursivamente\n" +#~ " --help mostrar esta ajuda e sair\n" +#~ " --version mostrar a informação de versão e sair\n" + +#, fuzzy +#~ msgid "" +#~ "Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +#~ "\n" +#~ " -c, --changes like verbose but report only when a change is " +#~ "made\n" +#~ " --dereference affect the referent of each symbolic link, " +#~ "rather\n" +#~ " than the symbolic link itself\n" +#~ " -h, --no-dereference affect symbolic links instead of any referenced " +#~ "file\n" +#~ " (available only on systems that can change the\n" +#~ " ownership of a symlink)\n" +#~ " --from=CURRENT_OWNER:CURRENT_GROUP\n" +#~ " change the owner and/or group of each file only " +#~ "if\n" +#~ " its current owner and/or group match those " +#~ "specified\n" +#~ " here. Either may be omitted, in which case a " +#~ "match\n" +#~ " is not required for the omitted attribute.\n" +#~ " -f, --silent, --quiet suppress most error messages\n" +#~ " --reference=RFILE use RFILE's owner and group rather than\n" +#~ " the specified OWNER:GROUP values\n" +#~ " -R, --recursive operate on files and directories recursively\n" +#~ " -v, --verbose output a diagnostic for every file processed\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Muda o dono e/ou grupo de cada FICHEIRO para DONO e/ou GRUPO.\n" +#~ "\n" +#~ " -c, --changes ser verboso quando ocorrerem mudanças\n" +#~ " -h, --no-dereference afectar ligações simbólicas (symlinks) em vez " +#~ "do\n" +#~ " ficheiro referenciado. (disponível só em " +#~ "sistemas\n" +#~ " com a chamada de sistema lchown)\n" +#~ " -f, --silent, --quiet desliga a maioria das mensagens de erro\n" +#~ " -v, --verbose explica o que está a ser feito\n" +#~ " -R, --recursive muda ficheiros e directorias recursivamente\n" +#~ " --help mostra esta ajuda e sai\n" +#~ " --version mostra a versão e sai\n" +#~ "\n" +#~ "Dono é mantido se inexistente. Grupo é mantido se inexistente, mas " +#~ "mudado \n" +#~ "para grupo de login se implícito com um ponto. Uma vírgula pode ser " +#~ "usada \n" +#~ "em vez do ponto.\n" + +#, fuzzy +#~ msgid "" +#~ " -l, --link link files instead of copying\n" +#~ " -L, --dereference always follow symbolic links\n" +#~ " -p same as --preserve=mode,ownership," +#~ "timestamps\n" +#~ " --preserve[=ATTR_LIST] preserve the specified attributes " +#~ "(default:\n" +#~ " mode,ownership,timestamps), if possible\n" +#~ " additional attributes: links, all\n" +#~ " --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +#~ " --parents append source path to DIRECTORY\n" +#~ " -P same as `--no-dereference'\n" +#~ " -r copy recursively, non-directories as " +#~ "files\n" +#~ " WARNING: use -R instead when you might " +#~ "copy\n" +#~ " special files like FIFOs or /dev/zero\n" +#~ " --remove-destination remove each existing destination file " +#~ "before\n" +#~ " attempting to open it (contrast with --" +#~ "force)\n" +#~ msgstr "" +#~ "Copia FONTE para DESTINO, ou múltiplas FONTE(s) para DIRECTORIA.\n" +#~ "\n" +#~ " -a, --archive igual a -dpR\n" +#~ " -b, --backup fazer \"backup\" antes da remoção\n" +#~ " -d, --no-dereference manter as links\n" +#~ " -f, --force remover destinos existentes, nunca " +#~ "perguntar\n" +#~ " -i, --interactive perguntar antes de apagar\n" +#~ " -l, --link fazer ligações (links) de ficheiros em " +#~ "vez\n" +#~ " de os copiar\n" +#~ " -p, --preserve manter atributos dos ficheiros se " +#~ "possível\n" +#~ " -r copiar recursivamente, não-directorias " +#~ "como\n" +#~ " ficheiros\n" +#~ " --sparse=QUANDO controlar a criação de ficheiros " +#~ "esparsos\n" +#~ " -s, --symbolic-link fazer ligações (links) simbólicas em vez " +#~ "de\n" +#~ " copiar\n" +#~ " -u, --update copiar só ficheiros novos ou mais " +#~ "velhos\n" +#~ " -v, --verbose explica o que está a ser feito\n" +#~ " -x, --one-file-system ficar só neste sistema de ficheiros\n" +#~ " -P, --parents acrescentar caminho (path) de fonte a \n" +#~ " DIRECTORIA\n" +#~ " -R, --recursive copiar directorias recursivamente\n" +#~ " -S, --sufix=SUFIXO usar em vez do sufixo de \"backup\" " +#~ "usual\n" +#~ " -V, --version-control=PALAVRA usar em vez do controlo de versão " +#~ "habitual\n" +#~ " --help mostrar esta ajuda e sair\n" +#~ " --version mostrar a informação de versão e sair\n" +#~ "\n" +#~ "Por omissão, ficheiros esparsos da FONTE são detectados por uma " +#~ "heurística \n" +#~ "grosseira e o correspondente ficheiro DESTINO é também feito um " +#~ "ficheiro \n" +#~ "esparso. Este é o comportamento escolhido por --sparse=auto. Especifica \n" +#~ "--sparse=always para criar um ficheiro esparso em DESTINO quando o " +#~ "ficheiro\n" +#~ "SOURCE tiver uma sequência de bytes a zero suficientemente grande.\n" +#~ "\n" +#~ "Usa --sparse=never para inibir a criação de ficheiros esparsos.\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "Copy a file, converting and formatting according to the options.\n" +#~ "\n" +#~ " bs=BYTES force ibs=BYTES and obs=BYTES\n" +#~ " cbs=BYTES convert BYTES bytes at a time\n" +#~ " conv=KEYWORDS convert the file as per the comma separated keyword " +#~ "list\n" +#~ " count=BLOCKS copy only BLOCKS input blocks\n" +#~ " ibs=BYTES read BYTES bytes at a time\n" +#~ " if=FILE read from FILE instead of stdin\n" +#~ " obs=BYTES write BYTES bytes at a time\n" +#~ " of=FILE write to FILE instead of stdout\n" +#~ " seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +#~ " skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "BLOCKS and BYTES may be followed by the following multiplicative " +#~ "suffixes:\n" +#~ "xM M, c 1, w 2, b 512, kD 1000, k 1024, MD 1,000,000, M 1,048,576,\n" +#~ "GD 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +#~ "Each KEYWORD may be:\n" +#~ "\n" +#~ " ascii from EBCDIC to ASCII\n" +#~ " ebcdic from ASCII to EBCDIC\n" +#~ " ibm from ASCII to alternated EBCDIC\n" +#~ " block pad newline-terminated records with spaces to cbs-size\n" +#~ " unblock replace trailing spaces in cbs-size records with newline\n" +#~ " lcase change upper case to lower case\n" +#~ " notrunc do not truncate the output file\n" +#~ " ucase change lower case to upper case\n" +#~ " swab swap every pair of input bytes\n" +#~ " noerror continue after read errors\n" +#~ " sync pad every input block with NULs to ibs-size; when used\n" +#~ " with block or unblock, pad with spaces rather than NULs\n" +#~ msgstr "" +#~ "Copiar um ficheiro, convertendo e formatando de acordo com as opções.\n" +#~ "\n" +#~ " bs=BYTES forçar ibs=BYTES e obs=BYTES\n" +#~ " cbs=BYTES converter BYTES bytes de cada vez\n" +#~ " conv=PALAVRAS-CHAVE converter o ficheiro de acordo com lista de " +#~ "palavras \n" +#~ " chave separadas por vírgulas\n" +#~ " count=BLOCOS copiar só BLOCOS blocos de entrada\n" +#~ " ibs=BYTES ler BYTES bytes de cada vez\n" +#~ " if=FICHEIRO ler de FICHEIRO em vez de stdin\n" +#~ " obs=BYTES escrever BYTES bytes de cada vez\n" +#~ " of=FICHEIRO escrever para FICHEIRO em vez de stdout, sem truncar \n" +#~ " FICHEIRO\n" +#~ " seek=BLOCOS saltar por cima dos primeiros BLOCOS blocos de " +#~ "tamanho \n" +#~ " obs no início do output\n" +#~ " skip=BLOCOS saltar por cima dos primeiros BLOCOS blocos de " +#~ "tamanho \n" +#~ " ibs no início do input\n" +#~ " --help mostrar esta ajuda e sair\n" +#~ " --version mostrar informação sobre a versão e sair\n" +#~ "\n" +#~ "BYTES pode ter sufixos:by xM para multiplicar por M, by c para x1, by w " +#~ "para\n" +#~ "x2, by b para x512, by k para x1024.Cada PALAVRA-CHAVE pode ser:\n" +#~ "\n" +#~ " ascii de EBCDIC para ASCII\n" +#~ " ebcdic de ASCII para EBCDIC\n" +#~ " ibm de ASCII para EBCDIC alternado\n" +#~ " block acrescentar aos registos terminados com fim de linha " +#~ "espaços \n" +#~ " até cbs-tamanho\n" +#~ " unblock substituir os espaços no fim dos registos de tamanho cbs " +#~ "com \n" +#~ " um fim de linha\n" +#~ " lcase mudar de letras maiúsculas para minúsculas\n" +#~ " ucase mudar de letras minúsculas para maiúsculas\n" +#~ " swab trocar cada par de bytes de input\n" +#~ " noerror continuar mesmo depois de erros de leitura\n" +#~ " sync acrescentar a cada bloco de entrada NULs até ibs-tamanho\n" + +#, fuzzy +#~ msgid "" +#~ "Show information about the filesystem on which each FILE resides,\n" +#~ "or all filesystems by default.\n" +#~ "\n" +#~ " -a, --all include filesystems having 0 blocks\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " -H, --si likewise, but use powers of 1000 not 1024\n" +#~ " -i, --inodes list inode information instead of block usage\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l, --local limit listing to local filesystems\n" +#~ " -m, --megabytes like --block-size=1048576\n" +#~ " --no-sync do not invoke sync before getting usage info " +#~ "(default)\n" +#~ " -P, --portability use the POSIX output format\n" +#~ " --sync invoke sync before getting usage info\n" +#~ " -t, --type=TYPE limit listing to filesystems of type TYPE\n" +#~ " -T, --print-type print filesystem type\n" +#~ " -x, --exclude-type=TYPE limit listing to filesystems not of type " +#~ "TYPE\n" +#~ " -v (ignored)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Mostrar informação sobre o sistema de ficheiros onde cada FICHEIRO " +#~ "reside,\n" +#~ "ou todos os sistemas de ficheiros por omissão.\n" +#~ "\n" +#~ " -a, --all incluir sistemas de ficheiros com 0 blocos\n" +#~ " -h, --human imprimir tamanhos em formato legível por " +#~ "humanos \n" +#~ " (ex. 1K 234M 2G)\n" +#~ " -i, --inodes mostra informação de inodes em vez de blocos \n" +#~ " utilizados\n" +#~ " -k, --kilobytes usar blocos de 1024 bytes em vez de 512 apesar " +#~ "de \n" +#~ " POSIXLY_CORRECT\n" +#~ " -m, --megabytes usar blocos de 1024K bytes em vez de 512 apesar " +#~ "de\n" +#~ " POSIXLY_CORRECT\n" +#~ " --no-sync não invocar o sync antes de obter informação de\n" +#~ " utilização (opção por defeito)\n" +#~ " --sync invocar sync antes de obter informação de " +#~ "utilização\n" +#~ " -t, --type=TIPO limitar a listagem a sistemas de ficheiros do " +#~ "tipo \n" +#~ " TIPO\n" +#~ " -x, --exclude-type=TIPO limitar a listagem a sistemas de ficheiros que " +#~ "não\n" +#~ " sejam do tipo TIPO\n" +#~ " -v (ignorado)\n" +#~ " -P, --portability usar o formato de output do POSIX\n" +#~ " -T, --print-type imprimir o tipo do sistema de ficheiros\n" +#~ " --help mostrar esta ajuda e sair\n" +#~ " --version mostrar informação sobre a versão e sair\n" + +#, fuzzy +#~ msgid "" +#~ "Summarize disk usage of each FILE, recursively for directories.\n" +#~ "\n" +#~ " -a, --all write counts for all files, not just directories\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -b, --bytes print size in bytes\n" +#~ " -c, --total produce a grand total\n" +#~ " -D, --dereference-args dereference PATHs when symbolic link\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " -H, --si likewise, but use powers of 1000 not 1024\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l, --count-links count sizes many times if hard linked\n" +#~ " -L, --dereference dereference all symbolic links\n" +#~ " -m, --megabytes like --block-size=1048576\n" +#~ " -S, --separate-dirs do not include size of subdirectories\n" +#~ " -s, --summarize display only a total for each argument\n" +#~ " -x, --one-file-system skip directories on different filesystems\n" +#~ " -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +#~ "FILE.\n" +#~ " --exclude=PAT Exclude files that match PAT.\n" +#~ " --max-depth=N print the total for a directory (or file, with --" +#~ "all)\n" +#~ " only if it is N or fewer levels below the " +#~ "command\n" +#~ " line argument; --max-depth=0 is the same as\n" +#~ " --summarize\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Mostrar a utilização de disco de cada FICHEIRO, recursivamente para\n" +#~ "directorias.\n" +#~ "\n" +#~ " -a, --all escreve a contagem para todos os ficheiros, " +#~ "não \n" +#~ " apenas directorias\n" +#~ " -b, --bytes imprimir o tamanho em bytes\n" +#~ " -c, --total produzir um total final\n" +#~ " -D, --dereference-arg des-referenciar CAMINHOs se ligação simbólica \n" +#~ " (symlink)\n" +#~ " -h, --human imprimir tamanhos em formato legível por " +#~ "humanos \n" +#~ " (ex. 1K 234M 2G)\n" +#~ " -k, --kilobytes usar blocos de 1024 bytes em vez de 512 apesar " +#~ "de \n" +#~ " POSIXLY_CORRECT\n" +#~ " -l, --count-links contar cada tamanho várias vezes se houver " +#~ "ligações\n" +#~ " (links) fixas\n" +#~ " -L, --dereference des-referenciar todas as ligações (links) " +#~ "simbólicas\n" +#~ " -m, --megabytes usar blocos de 1024K bytes em vez de 512 apesar " +#~ "de\n" +#~ " POSIXLY_CORRECT\n" +#~ " -S, --separate-dirs não incluir tamanho de sub-directorias\n" +#~ " -s, --summarize mostrar só um total para cada argumento\n" +#~ " -x, --one-file-sysyem saltar directorias em sistemas de ficheiros \n" +#~ " diferentes\n" +#~ " --help mostrar esta ajuda e sair\n" +#~ " --version mostrar informação de versão e sair\n" + +#, fuzzy +#~ msgid "" +#~ "In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +#~ "the existing DIRECTORY, while setting permission modes and owner/group.\n" +#~ "In the third format, create all components of the given DIRECTORY(ies).\n" +#~ "\n" +#~ " --backup[=CONTROL] make a backup of each existing destination file\n" +#~ " -b like --backup but does not accept an argument\n" +#~ " -c (ignored)\n" +#~ " -d, --directory treat all arguments as directory names; create all\n" +#~ " components of the specified directories\n" +#~ " -D create all leading components of DEST except the " +#~ "last,\n" +#~ " then copy SOURCE to DEST; useful in the 1st " +#~ "format\n" +#~ " -g, --group=GROUP set group ownership, instead of process' current " +#~ "group\n" +#~ " -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-" +#~ "xr-x\n" +#~ " -o, --owner=OWNER set ownership (super-user only)\n" +#~ " -p, --preserve-timestamps apply access/modification times of SOURCE " +#~ "files\n" +#~ " to corresponding destination files\n" +#~ " -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +#~ " -S, --suffix=SUFFIX override the usual backup suffix\n" +#~ " -v, --verbose print the name of each directory as it is created\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Nos dois primeiros formatos, copia FONTE para DESTINO ou múltiplas\n" +#~ "FONTE(s) para DIRECTORIA, ao mesmo tempo que ajusta as permissões e o \n" +#~ "dono/grupo. No terceiro formato, ajusta todos os componentes das\n" +#~ "DIRECTORIA(s) dadas.\n" +#~ "\n" +#~ " -c (ignorado)\n" +#~ " -d, --directory criar directorias [anteriores], manda-tório para " +#~ "o\n" +#~ " 3o formato\n" +#~ " -g, --group=GRUPO todos os ficheiros passam a pertencer ao grupo " +#~ "GRUPO\n" +#~ " em vez do grupo do processo que lança o comando\n" +#~ " -m, --mode=MODO todas as permissões ficam a modo MODO (como no " +#~ "chmod)\n" +#~ " em vez de rw-r--r--\n" +#~ " -o, --owner=DONO todos os ficheiros passam a ter como dono DONO " +#~ "(só \n" +#~ " super-utilizador)\n" +#~ " -s, --strip retirar as tabelas de símbolos, só para o 1o ou " +#~ "2o \n" +#~ " formato\n" +#~ " -b, --backup fazer \"backup\" antes da remoção\n" +#~ " -S, --sufix=SUFIXO usar SUFIXO em vez do sufixo habitual de \"backup" +#~ "\"\n" +#~ " -V, --version-control=PALAVRA usar em vez do controle de versão " +#~ "habitual\n" +#~ " --help mostrar esta ajuda e sair\n" +#~ " --version mostrar informação sobre a versão e sair\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "Create a link to the specified TARGET with optional LINK_NAME.\n" +#~ "If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +#~ "created in the current directory. When using the second form with more\n" +#~ "than one TARGET, the last argument must be a directory; create links\n" +#~ "in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +#~ "links with --symbolic. When creating hard links, each TARGET must " +#~ "exist.\n" +#~ "\n" +#~ " --backup[=CONTROL] make a backup of each existing destination " +#~ "file\n" +#~ " -b like --backup but does not accept an " +#~ "argument\n" +#~ " -d, -F, --directory hard link directories (super-user only)\n" +#~ " -f, --force remove existing destination files\n" +#~ " -n, --no-dereference treat destination that is a symlink to a\n" +#~ " directory as if it were a normal file\n" +#~ " -i, --interactive prompt whether to remove destinations\n" +#~ " -s, --symbolic make symbolic links instead of hard links\n" +#~ " -S, --suffix=SUFFIX override the usual backup suffix\n" +#~ " --target-directory=DIRECTORY specify the DIRECTORY in which to " +#~ "create\n" +#~ " the links\n" +#~ " -v, --verbose print name of each file before linking\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Cria uma ligação (link) de FONTE para DESTINO (. por omissão) ou " +#~ "múltiplas \n" +#~ "FONTE(s) para DIRECTORIA. Faz ligações (links) fixas por omissão, " +#~ "simbólicas\n" +#~ "com -s.\n" +#~ "\n" +#~ " -b, --backup fazer \"backups\" de ficheiros apagados\n" +#~ " -d, -F, --directory fazer ligações (links) fixas para \n" +#~ " directorias (só super-utilizador)\n" +#~ " -f, --force remover destinos existentes\n" +#~ " -n, --no-dereference tratar destinos que são ligações " +#~ "(links) \n" +#~ " simbólicas para uma directoria como " +#~ "ficheiros\n" +#~ " normais\n" +#~ " -i, --interactive perguntar se devemos apagar destinos\n" +#~ " -s, --symbolic fazer ligações (links) simbólicas em vez " +#~ "de\n" +#~ " fixas\n" +#~ " -v, --verbose escrever nome de cada ficheiro antes de\n" +#~ " criar a ligação (link)\n" +#~ " -S, --suffix=SUFIXO usar SUFIXO em vez do sufixo de \"backup" +#~ "\" \n" +#~ " usual\n" +#~ " -V, --version-control=PALAVRA usar PALAVRA em vez do controle de " +#~ "versão\n" +#~ " usual\n" +#~ " --help mostrar esta ajuda e sair\n" +#~ " --version mostrar informação de versão e sair\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "List information about the FILEs (the current directory by default).\n" +#~ "Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +#~ "\n" +#~ " -a, --all do not hide entries starting with .\n" +#~ " -A, --almost-all do not list implied . and ..\n" +#~ " -b, --escape print octal escapes for nongraphic " +#~ "characters\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -B, --ignore-backups do not list implied entries ending with ~\n" +#~ " -c with -lt: sort by, and show, ctime (time of " +#~ "last\n" +#~ " modification of file status information)\n" +#~ " with -l: show ctime and sort by name\n" +#~ " otherwise: sort by ctime\n" +#~ " -C list entries by columns\n" +#~ " --color[=WHEN] control whether color is used to distinguish " +#~ "file\n" +#~ " types. WHEN may be `never', `always', or " +#~ "`auto'\n" +#~ " -d, --directory list directory entries instead of contents\n" +#~ " -D, --dired generate output designed for Emacs' dired " +#~ "mode\n" +#~ " -f do not sort, enable -aU, disable -lst\n" +#~ " -F, --classify append indicator (one of */=@|) to entries\n" +#~ " --format=WORD across -x, commas -m, horizontal -x, long -" +#~ "l,\n" +#~ " single-column -1, verbose -l, vertical -C\n" +#~ " --full-time like -l --time-style=full-iso\n" +#~ msgstr "" +#~ "Lista informação de FICHEIROs (na directoria corrente por omissão).\n" +#~ "Ordena entradas alfabética-mente se não forem usadas qualquer das " +#~ "opções \n" +#~ "-cftuSUX ou -sort.\n" +#~ "\n" +#~ " -A, --almost-all não mostrar . e .. implícitos\n" +#~ " -a, --all não esconder entradas que começam com .\n" +#~ " -B, --ignore-backups não mostrar entradas acabando em ~ " +#~ "implícitas\n" +#~ " -b, --escape mostrar caracteres de escape octais para \n" +#~ " caracteres não-gráficos\n" +#~ " -C mostrar entradas em colunas\n" +#~ " -c ordenar por tempo de mudança; com -l: " +#~ "mostra \n" +#~ " ctime\n" +#~ " --color[=QUANDO] controlar se a cor é usada para " +#~ "distinguir \n" +#~ " tipos de ficheiros. QUANDO pode ser " +#~ "'never',\n" +#~ " 'always' ou 'auto'\n" +#~ " -D, --dired gerar output formatado para o modo dired " +#~ "do \n" +#~ " Emacs\n" +#~ " -d, --directory mostrar os nomes das directorias em vez dos " +#~ "seus\n" +#~ " conteúdos\n" +#~ " -F, --classify acrescentar um caracter para tipificar " +#~ "cada\n" +#~ " entrada\n" +#~ " -f não ordenar, liga -aU, desliga -lst\n" +#~ " --format=PALAVRA across -x, vírgulas -m, horizontal -x, \n" +#~ " longo -l, uma coluna -1, verboso -l, \n" +#~ " vertical -C\n" +#~ " --full-time mostrar toda a data e todo o tempo\n" + +#, fuzzy +#~ msgid "" +#~ " -g like -l, but do not list owner\n" +#~ " -G, --no-group inhibit display of group information\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " --si likewise, but use powers of 1000 not 1024\n" +#~ " -H, --dereference-command-line follow symbolic links on the command " +#~ "line\n" +#~ " --indicator-style=WORD append indicator with style WORD to entry " +#~ "names:\n" +#~ " none (default), classify (-F), file-type (-" +#~ "p)\n" +#~ " -i, --inode print index number of each file\n" +#~ " -I, --ignore=PATTERN do not list implied entries matching shell " +#~ "PATTERN\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l use a long listing format\n" +#~ " -L, --dereference when showing file information for a " +#~ "symbolic\n" +#~ " link, show information for the file the " +#~ "link\n" +#~ " references rather than for the link " +#~ "itself\n" +#~ " -m fill width with a comma separated list of " +#~ "entries\n" +#~ msgstr "" +#~ " -G, --no-group inibir que se mostre a informação de " +#~ "grupo\n" +#~ " -g (ignorado)\n" +#~ " -I, --ignore=PADRÃO não mostrar entradas implícitas incluídas " +#~ "no \n" +#~ " padrão de shell PADRÃO\n" +#~ " -i, --inode mostrar o índice de cada ficheiro\n" +#~ " -k, --kilobytes usar blocos de 1024 em vez de 512 apesar " +#~ "de \n" +#~ " POSIXLY_CORRECT\n" +#~ " -L, --dereference mostrar entradas apontadas por ligações " +#~ "(links)\n" +#~ " simbólicas\n" +#~ " -l usar formato longo de listagem\n" +#~ " -m encher largura com entradas separadas por \n" +#~ " vírgulas\n" +#~ " -N, --literal mostrar os valores \"reais\" das entradas " +#~ "(não\n" +#~ " tratar caracteres com \"Ctrl\" como " +#~ "especiais)\n" +#~ " -n, --numeric-uid-gid mostrar UIDs e GIDs numericamente em vez de " +#~ "pôr\n" +#~ " nome correspondente\n" +#~ " -o usar formato de listagem longo sem " +#~ "informação\n" +#~ " de grupo\n" +#~ " -p acrescentar um caracter para tipificar " +#~ "cada\n" +#~ " entrada\n" +#~ " -Q, --quote-name colocar aspas nos nomes das entradas\n" +#~ " -q, --hide-control-chars mostrar ? em vez de caracteres não " +#~ "gráficos\n" +#~ " -R, --recursive mostrar subdirectorias recursivamente\n" +#~ " -r, --reverse inverter a ordem enquanto ordenando\n" +#~ " -S ordenar por tamanho de ficheiro\n" + +#, fuzzy +#~ msgid "" +#~ " -S sort by file size\n" +#~ " --sort=WORD extension -X, none -U, size -S, time -t,\n" +#~ " version -v\n" +#~ " status -c, time -t, atime -u, access -u, use " +#~ "-u\n" +#~ " --time=WORD show time as WORD instead of modification " +#~ "time:\n" +#~ " atime, access, use, ctime or status; use\n" +#~ " specified time as sort key if --sort=time\n" +#~ " --time-style=WORD show times using style WORD:\n" +#~ " full-iso, iso, locale, posix-iso\n" +#~ " -t sort by modification time\n" +#~ " -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +#~ " -u with -lt: sort by, and show, access time\n" +#~ " with -l: show access time and sort by " +#~ "name\n" +#~ " otherwise: sort by access time\n" +#~ " -U do not sort; list entries in directory " +#~ "order\n" +#~ " -v sort by version\n" +#~ " -w, --width=COLS assume screen width instead of current " +#~ "value\n" +#~ " -x list entries by lines instead of by columns\n" +#~ " -X sort alphabetically by entry extension\n" +#~ " -1 list one file per line\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "By default, color is not used to distinguish types of files. That is\n" +#~ "equivalent to using --color=none. Using the --color option without the\n" +#~ "optional WHEN argument is equivalent to using --color=always. With\n" +#~ "--color=auto, color codes are output only if standard output is " +#~ "connected\n" +#~ "to a terminal (tty).\n" +#~ msgstr "" +#~ " -s, --size mostrar o tamanho de cada ficheiro em " +#~ "blocos\n" +#~ " --sort=PALAVRA ctime -c, extensão -X, nenhum -U, tamanho -" +#~ "S,\n" +#~ " estado -c, tempo -t\n" +#~ " --time=PALAVRA atime -u, acesso -u, utilização -u\n" +#~ " -T, --tabsize=COLUNA assumir que há tabs de COLUNA em COLUNA \n" +#~ " colunas em vez de 8 em 8\n" +#~ " -t ordenar por tempo da última alteração; com -" +#~ "l;\n" +#~ " mostra mtime\n" +#~ " -U não ordenar; mostrar entradas na sua ordem " +#~ "na\n" +#~ " directoria\n" +#~ " -u ordenar por tempo do último acesso; com -" +#~ "l:\n" +#~ " mostrar atime\n" +#~ " -w, --width=COLUNAS assumir que o écran tem largura COLUNAS em " +#~ "vez\n" +#~ " do valor actual\n" +#~ " -x mostrar entradas por linhas em vez de " +#~ "colunas\n" +#~ " -X ordenar alfabéticamente pela extensão da\n" +#~ " entrada\n" +#~ " -1 mostrar um ficheiro por linha\n" +#~ " --help mostrar esta ajuda e sair\n" +#~ " --version mostrar a informação de versão e sair\n" +#~ "\n" +#~ "Por defeito não é usada côr para distinguir entre os tipos de ficheiros.\n" +#~ "Isto é equivalente a usar --color=none. Usar a opção --color sem o " +#~ "argumento\n" +#~ "opcional QUANDO é equivalente a usar --color=always. Com --color=auto " +#~ "usam-se\n" +#~ "códigos de cores só se o canal de saída por defeito (stdout) estiver " +#~ "ligado\n" +#~ "a um terminal (tty).\n" + +#, fuzzy +#~ msgid "" +#~ "Force changed blocks to disk, update the super block.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Mostra o nome do utilizador actual.\n" +#~ "\n" +#~ " --help mostrar esta ajuda e sair\n" +#~ " --version mostrar a informação de versão e sair\n" + +#, fuzzy +#~ msgid "" +#~ "Update the access and modification times of each FILE to the current " +#~ "time.\n" +#~ "\n" +#~ " -a change only the access time\n" +#~ " -c, --no-create do not create any files\n" +#~ " -d, --date=STRING parse STRING and use it instead of current time\n" +#~ " -f (ignored)\n" +#~ " -m change only the modification time\n" +#~ " -r, --reference=FILE use this file's times instead of current time\n" +#~ " -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current " +#~ "time\n" +#~ " --time=WORD set time given by WORD: access atime use (same " +#~ "as -a)\n" +#~ " modify mtime (same as -m)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Note that the three time-date formats recognized for the -d and -t " +#~ "options\n" +#~ "and for the obsolescent argument are all different.\n" +#~ msgstr "" +#~ "Actualizar os tempos de acesso e modificação de cada FICHEIRO para o " +#~ "tempo\n" +#~ "actual.\n" +#~ "\n" +#~ " -a mudar só os tempos de acesso\n" +#~ " -c não criar ficheiros\n" +#~ " -d, --date=STRING analisar STRING e usa-la em vez do tempo " +#~ "actual\n" +#~ " -f (ignorado)\n" +#~ " -m mudar só os tempos de modificação\n" +#~ " -r, --reference=FICHEIRO usar os tempos de FICHEIRO em vez do tempo " +#~ "actual\n" +#~ " -t TEMPO usar MMDDhhmm[[CC]YY][.ss] em vez do tempo " +#~ "actual\n" +#~ " --time=PALAVRA acesso -a, atime -a, mtime -m, modificado -m,\n" +#~ " utilização -a\n" +#~ " --help mostrar esta ajuda e sair\n" +#~ " --version mostrar a informação de versão e sair\n" +#~ "\n" +#~ "TEMPO pode ser usado sem -t se não se estiver a usar nem -drt nem --.\n" + +#, fuzzy +#~ msgid "cannot create fifo `%s'" +#~ msgstr "não consigo obter a directoria actual" + +#~ msgid "" +#~ "when creating character special files, major and minor device\n" +#~ "numbers must be specified" +#~ msgstr "" +#~ "ao criar ficheiros especiais de tipo caracter é necessário especificar\n" +#~ "os números \"major\" e \"minor\" do periférico" + +#~ msgid "group of %s changed to %s\n" +#~ msgstr "grupo de %s mudou para %s\n" + +#, fuzzy +#~ msgid "ownership of %s changed to " +#~ msgstr "dono (owner) de %s mudou para " + +#, fuzzy +#~ msgid "you are not a member of group %s" +#~ msgstr "não és membro do grupo '%s'" + +#, fuzzy +#~ msgid "cannot make fifo %s" +#~ msgstr "não consigo correr %s" + +#, fuzzy +#~ msgid "cannot change permissions for %s" +#~ msgstr "aviso: não consigo mudar para a directoria %s" + +#, fuzzy +#~ msgid "cannot remove old link to %s" +#~ msgstr "não consigo obter a directoria actual" + +#~ msgid "virtual memory exhausted" +#~ msgstr "memória virtual esgotada" + +#, fuzzy +#~ msgid "Memory exhausted" +#~ msgstr "memória virtual esgotada" + +#, fuzzy +#~ msgid "cannot create directory `%s'" +#~ msgstr "não consigo obter a directoria actual" + +#, fuzzy +#~ msgid "cannot remove `%s'" +#~ msgstr "não consigo correr %s" + +#, fuzzy +#~ msgid "specified target, `%s' is not a directory" +#~ msgstr "`%s' não é uma directoria" + +#~ msgid "`%s' and `%s' are the same file" +#~ msgstr "`%s' e `%s' são o mesmo ficheiro" + +#, fuzzy +#~ msgid "cannot backup `%s'" +#~ msgstr "não consigo correr %s" + +#, fuzzy +#~ msgid "cannot un-backup `%s'" +#~ msgstr "não consigo correr %s" + +#, fuzzy +#~ msgid "cannot chmod %s" +#~ msgstr "não consigo correr %s" + +#, fuzzy +#~ msgid "`%s' exists but is not a directory" +#~ msgstr "`%s' não é uma directoria" + +#, fuzzy +#~ msgid "create %s %s to %s" +#~ msgstr "criar %s %s para %s\n" + +#~ msgid "hard link" +#~ msgstr "ligação fixa (hardlink)" + +#~ msgid "link" +#~ msgstr "ligação (link)" + +#, fuzzy +#~ msgid "current directory" +#~ msgstr "não consigo obter a directoria actual" + +#, fuzzy +#~ msgid "starting directory" +#~ msgstr "`%s' não é uma directoria" + +#, fuzzy +#~ msgid "" +#~ "Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +#~ " or: %s [OPTION]... TARGET... DIRECTORY\n" +#~ msgstr "" +#~ "Utilização: %s [OPÇÃO]... FONTE [DESTINO]\n" +#~ " ou: %s [OPÇÃO]... FONTE... DIRECTORIA\n" + +#, fuzzy +#~ msgid "Usage: %s [OPTION]... EXISTING_DIR NEW_DIR\n" +#~ msgstr "Utilização: %s [OPÇÃO]... [STRING]...\n" + +#, fuzzy +#~ msgid "cannot rename `.' or `..'" +#~ msgstr "não consigo determinar o hostname" + +#~ msgid "%s is closed" +#~ msgstr "%s está fechado" + +#, fuzzy +#~ msgid "%s: cannot shred read-only file descriptor" +#~ msgstr "%s: não consigo escrever em cima da directoria" + +#, fuzzy +#~ msgid "Can't fstat file `%s'" +#~ msgstr "não consigo escrever para `%s'" + +#~ msgid "sparse type" +#~ msgstr "tipo esparso \"sparse\"" + +#~ msgid "time type" +#~ msgstr "tipo de tempo" + +#~ msgid "format type" +#~ msgstr "tipo de formato" + +#~ msgid "colorization criterion" +#~ msgstr "critério de colorização" + +#~ msgid "time selector" +#~ msgstr "selector de tempo" + +#, fuzzy +#~ msgid "remove directory `%s'%s? " +#~ msgstr "não consigo obter a directoria actual" + +#~ msgid "" +#~ "the option for counting 1MB blocks may not be used\n" +#~ "with the portable output format" +#~ msgstr "" +#~ "a opção para contar blocos de 1MB não pode ser usada com o formato de " +#~ "saída\n" +#~ "portável" + +#, fuzzy +#~ msgid "removing non-directory %s\n" +#~ msgstr "aviso: não consigo mudar para a directoria %s" + +#~ msgid "%s: replace `%s', overriding mode %04o? " +#~ msgstr "%s: substituir `%s', apesar do modo %04o? " + +#~ msgid "cannot move `%s' across filesystems: Not a regular file" +#~ msgstr "" +#~ "não consigo mover `%s' através de sistemas de ficheiros: Não é um " +#~ "ficheiro\n" +#~ "normal" + +#~ msgid "%s: remove %s`%s', overriding mode %04o? " +#~ msgstr "%s: apagar %s`%s' apesar do modo %04o? " + +#~ msgid "%s: remove directory `%s' (might be nonempty)? " +#~ msgstr "%s: apagar directoria `%s' (possivelmente não vazia)? " + +#~ msgid "%s: descend directory `%s', overriding mode %04o? " +#~ msgstr "%s: continuar na directoria `%s', apesar do modo %04o? " + +#, fuzzy +#~ msgid "Usage: %s [OPTION]... GROUP FILE...\n" +#~ msgstr "Utilização: %s [OPÇÃO]... [FICHEIRO]...\n" + +#, fuzzy +#~ msgid "" +#~ "Display the current time in the given FORMAT, or set the system date.\n" +#~ "\n" +#~ " -d, --date=STRING display time described by STRING, not `now'\n" +#~ " -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +#~ msgstr "" +#~ "Mostra o tempo actual num dado FORMATO, ou altera a data do sistema.\n" +#~ "\n" +#~ " -d, --date=STRING mostra o tempo descrito em STRING, em vez do\n" +#~ " actual\n" +#~ " -f, --file=FICHEIRODATAS igual a --date só que uma vez para cada linha " +#~ "de\n" +#~ " FICHEIRODATAS\n" +#~ " -r, --reference=FICHEIRO mostra a ultima data de alteração de " +#~ "FICHEIRO\n" +#~ " -R, --rfc-822 mostra a data no formato RFC-822\n" +#~ " -s, --set=STRING altera o tempo para o valor de STRING\n" +#~ " -u, --utc, --universal mostra ou altera o Tempo Universal " +#~ "Coordenado\n" +#~ " --help mostra este ecran e sai\n" +#~ " --version mostra a informação de versão e sai\n" + +#, fuzzy +#~ msgid "" +#~ "Run COMMAND with root directory set to NEWROOT.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +#~ msgstr "" +#~ "Sair, retornando o estado determinado por EXPRESSÃO.\n" +#~ "\n" +#~ " --help mostrar esta a ajuda e sair\n" +#~ " --version mostrar a informação de versão e sair\n" +#~ "\n" +#~ "EXPRESSÃO é verdadeira ou falsa e altera o o estado de saída. É uma de:\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "FORMAT controls the output. The only valid option for the second form\n" +#~ "specifies Coordinated Universal Time. Interpreted sequences are:\n" +#~ "\n" +#~ " %%%% a literal %%\n" +#~ " %%a locale's abbreviated weekday name (Sun..Sat)\n" +#~ " %%A locale's full weekday name, variable length (Sunday..Saturday)\n" +#~ " %%b locale's abbreviated month name (Jan..Dec)\n" +#~ " %%B locale's full month name, variable length (January..December)\n" +#~ " %%c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +#~ " %%C century (year divided by 100 and truncated to an integer) [00-" +#~ "99]\n" +#~ " %%d day of month (01..31)\n" +#~ " %%D date (mm/dd/yy)\n" +#~ " %%e day of month, blank padded ( 1..31)\n" +#~ " %%h same as %%b\n" +#~ " %%H hour (00..23)\n" +#~ " %%I hour (01..12)\n" +#~ " %%j day of year (001..366)\n" +#~ " %%k hour ( 0..23)\n" +#~ " %%l hour ( 1..12)\n" +#~ " %%m month (01..12)\n" +#~ " %%M minute (00..59)\n" +#~ " %%n a newline\n" +#~ " %%p locale's AM or PM\n" +#~ " %%r time, 12-hour (hh:mm:ss [AP]M)\n" +#~ " %%s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +#~ " %%S second (00..60)\n" +#~ " %%t a horizontal tab\n" +#~ " %%T time, 24-hour (hh:mm:ss)\n" +#~ " %%u day of week (1..7); 1 represents Monday\n" +#~ " %%U week number of year with Sunday as first day of week (00..53)\n" +#~ " %%V week number of year with Monday as first day of week (01..53)\n" +#~ " %%w day of week (0..6); 0 represents Sunday\n" +#~ " %%W week number of year with Monday as first day of week (00..53)\n" +#~ " %%x locale's date representation (mm/dd/yy)\n" +#~ " %%X locale's time representation (%%H:%%M:%%S)\n" +#~ " %%y last two digits of year (00..99)\n" +#~ " %%Y year (1970...)\n" +#~ " %%z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +#~ " %%Z time zone (e.g., EDT), or nothing if no time zone is " +#~ "determinable\n" +#~ "\n" +#~ "By default, date pads numeric fields with zeroes. GNU date recognizes\n" +#~ "the following modifiers between `%%' and a numeric directive.\n" +#~ "\n" +#~ " `-' (hyphen) do not pad the field\n" +#~ " `_' (underscore) pad the field with spaces\n" +#~ msgstr "" +#~ "\n" +#~ "FORMATO controla a saída. A única opção válida para a segunda forma\n" +#~ "especifica Tempo Universal Coordenado. Sequências interpretadas são:\n" +#~ "\n" +#~ " %%%% um %% literal\n" +#~ " %%a dia da semana local abreviado (Dom..Sab)\n" +#~ " %%A dia da semana local, de comprimento variável (Domingo..Sábado)\n" +#~ " %%b nome do mês local abreviado (Jan..Dez)\n" +#~ " %%B nome do mês local, de comprimento variável (Janeiro..Dezembro)\n" +#~ " %%c data e hora locais (Sab Nov 02 12:02:33 EST 1989)\n" +#~ " %%d dia do mês (01..31)\n" +#~ " %%D data (mm/dd/aa)\n" +#~ " %%e\\tdia do mês, com espaços em vez de zeros à esquerda ( 1..31)\n" +#~ " %%h o mesmo que %%b\n" +#~ " %%H hora (00..23)\n" +#~ " %%I hora (01..12)\n" +#~ " %%j dia do ano (001..366)\n" +#~ " %%k hora ( 0..23)\n" +#~ " %%l hora ( 1..12)\n" +#~ " %%m mês (01..12)\n" +#~ " %%M minutos (00..59)\n" +#~ " %%n um separador de linha\n" +#~ " %%p AM ou PM locais\n" +#~ " %%r hora, formato 12-horas (hh:mm:ss [AP]M)\n" +#~ " %%s segundos desde 00:00:00, Jan 1, 1970 (uma extensão da GNU)\n" +#~ " %%S segundos (00..61)\n" +#~ " %%t um tab horizontal\n" +#~ " %%T hora, formato 24-horas (hh:mm:ss)\n" +#~ " %%U número da semana no ano com Domingo como primeiro dia da " +#~ "semana \n" +#~ " (00..53)\n" +#~ " %%w dia da semana (0..6); 0 representa o Domingo\n" +#~ " %%W número da semana no ano com Segunda-Feira como primeiro dia da \n" +#~ " semana (00..53)\n" +#~ " %%x representação da data local (mm/dd/aa)\n" +#~ " %%X representação da hora local (%%H:%%M:%%S)\n" +#~ " %%y últimos dois dígitos do ano (00..99)\n" +#~ " %%Y ano (1970...)\n" +#~ " %%z fuso horário local em formato numérico de acordo com RFC-822 \n" +#~ " (+0100) (uma extensão não padrão)\n" +#~ " %%Z fuso horário (ex. EDT), ou nada caso não se consiga determinar\n" +#~ " nenhum fuso\n" +#~ "\n" +#~ " Por defeito o date preenche os campos numéricos com zeros. O GNU date\n" +#~ "reconhece os seguintes modificadores entre `%%' e uma directriz " +#~ "numérica.\n" +#~ "\n" +#~ " `-' (hífen) não preencher o campo\n" +#~ " `_' (underscore) preencher o campo com espaços\n" + +#, fuzzy +#~ msgid "" +#~ "Echo the STRING(s) to standard output.\n" +#~ "\n" +#~ " -n do not output the trailing newline\n" +#~ " -e enable interpretation of the backslash-escaped " +#~ "characters\n" +#~ " listed below\n" +#~ " -E disable interpretation of those sequences in STRINGs\n" +#~ " --help display this help and exit (should be alone)\n" +#~ " --version output version information and exit (should be alone)\n" +#~ "\n" +#~ "Without -E, the following sequences are recognized and interpolated:\n" +#~ "\n" +#~ " \\NNN the character whose ASCII code is NNN (octal)\n" +#~ " \\\\ backslash\n" +#~ " \\a alert (BEL)\n" +#~ " \\b backspace\n" +#~ " \\c suppress trailing newline\n" +#~ " \\f form feed\n" +#~ " \\n new line\n" +#~ " \\r carriage return\n" +#~ " \\t horizontal tab\n" +#~ " \\v vertical tab\n" +#~ msgstr "" +#~ "Ecoar STRING(s) para o canal de saída padrão (stdout).\n" +#~ "\n" +#~ " -n não ecoar a fim-de-linha final\n" +#~ " -e (não usado)\n" +#~ " -E desligar a interpolação de algumas sequências em " +#~ "STRINGs\n" +#~ " --help mostra esta ajuda e sai (deve ser a única opção " +#~ "usada)\n" +#~ " --version mostra a informação de versão e sai (deve ser única " +#~ "opção\n" +#~ " usada)\n" +#~ "\n" +#~ "Sem -E, as seguintes sequências são reconhecidas e interpoladas:\n" +#~ "\n" +#~ " \\NNN o carácter cujo código ASCII é NNN (octal)\n" +#~ " \\\\ anti-barra\n" +#~ " \\a alerta (BEL)\n" +#~ " \\b backspace\n" +#~ " \\c elimina o newlines no final\n" +#~ " \\f form feed\n" +#~ " \\n newline\n" +#~ " \\r carriage return\n" +#~ " \\t tab horizontal\n" +#~ " \\v tab vertical\n" + +#, fuzzy +#~ msgid "" +#~ "Print the value of EXPRESSION to standard output. A blank line below\n" +#~ "separates increasing precedence groups. EXPRESSION may be:\n" +#~ "\n" +#~ " ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +#~ "\n" +#~ " ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +#~ "\n" +#~ " ARG1 < ARG2 ARG1 is less than ARG2\n" +#~ " ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +#~ " ARG1 = ARG2 ARG1 is equal to ARG2\n" +#~ " ARG1 != ARG2 ARG1 is unequal to ARG2\n" +#~ " ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +#~ " ARG1 > ARG2 ARG1 is greater than ARG2\n" +#~ "\n" +#~ " ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +#~ " ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +#~ "\n" +#~ " ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +#~ " ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +#~ " ARG1 %% ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +#~ "\n" +#~ " STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +#~ "\n" +#~ " match STRING REGEXP same as STRING : REGEXP\n" +#~ " substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +#~ " index STRING CHARS index in STRING where any CHARS is found, or " +#~ "0\n" +#~ " length STRING length of STRING\n" +#~ " + TOKEN interpret TOKEN as a string, even if it is " +#~ "a\n" +#~ " keyword like `match' or an operator like " +#~ "`/'\n" +#~ "\n" +#~ " ( EXPRESSION ) value of EXPRESSION\n" +#~ msgstr "" +#~ "Mostra o valor de EXPRESSÃO no canal de saída padrão (stdout). Uma linha " +#~ "em\n" +#~ "branco na seguinte listagem separa grupos em ordem ascendente de\n" +#~ "precedência. EXPRESSÃO pode ser:\n" +#~ "\n" +#~ " ARG1 | ARG2 ARG1 se não for nem null nem 0, caso contrário ARG2\n" +#~ "\n" +#~ " ARG1 & ARG2 ARG1 se nenhum argumento for null ou 0, caso " +#~ "contrário\n" +#~ "0\n" +#~ " ARG1 < ARG2 ARG1 é menor que ARG2\n" +#~ " ARG2 <= ARG2 ARG1 é menor ou igual a ARG2\n" +#~ " ARG1 = ARG2 ARG1 é igual a ARG2\n" +#~ " ARG1 != ARG2 ARG1 é diferente de ARG2\n" +#~ " ARG1 >= ARG2 ARG1 é maior ou igual a ARG2\n" +#~ " ARG1 > ARG2 ARG1 é maior que ARG2\n" +#~ "\n" +#~ " ARG1 + ARG2 soma aritmética de ARG1 e ARG2\n" +#~ " ARG1 - ARG2 diferença aritmética entre ARG1 e ARG2\n" +#~ "\n" +#~ " ARG1 * ARG2 produto aritmético de ARG1 e ARG2\n" +#~ " ARG1 / ARG2 quociente da divisão de ARG1 por ARG2\n" +#~ "\n" +#~ " STRING : REGEXP resultado de procurar REGEXP em STRING\n" +#~ "\n" +#~ " match STRING REGEXP o mesmo que STRING : REGEXP\n" +#~ " substr STRING POS COMPRIMENTO sub string de STRING POS contado de 1\n" +#~ " index STRING CHARS índice em STRING onde está CHARS ou 0\n" +#~ "\n" +#~ " ( EXPRESSÃO ) valor de EXPRESSÃO\n" + +#, fuzzy +#~ msgid "" +#~ "Print ARGUMENT(s) according to FORMAT.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "FORMAT controls the output as in C printf. Interpreted sequences are:\n" +#~ "\n" +#~ " \\\" double quote\n" +#~ " \\0NNN character with octal value NNN (0 to 3 digits)\n" +#~ " \\\\ backslash\n" +#~ " \\a alert (BEL)\n" +#~ " \\b backspace\n" +#~ " \\c produce no further output\n" +#~ " \\f form feed\n" +#~ " \\n new line\n" +#~ " \\r carriage return\n" +#~ " \\t horizontal tab\n" +#~ " \\v vertical tab\n" +#~ " \\xNNN byte with hexadecimal value NNN (1 to 3 digits)\n" +#~ "\n" +#~ " \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +#~ " \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +#~ " %%%% a single %%\n" +#~ " %%b ARGUMENT as a string with `\\' escapes interpreted\n" +#~ "\n" +#~ "and all C format specifications ending with one of diouxXfeEgGcs, with\n" +#~ "ARGUMENTs converted to proper type first. Variable widths are handled.\n" +#~ msgstr "" +#~ "Imprime ARGUMENTO(S) de acordo com FORMATO.\n" +#~ "\n" +#~ " --help mostra esta ajuda e sair\n" +#~ " --version mostrar a versão e sair\n" +#~ "\n" +#~ "FORMATO controla o que é escrito como na função printf do C. As " +#~ "sequências\n" +#~ "interpretadas são:\n" +#~ "\n" +#~ " \\\" aspas aspas\n" +#~ " \\ONNN caracter com valor octal NNN (0 até 3 dígitos)\n" +#~ " \\\\ barra\n" +#~ " \\a alerta (BEL)\n" +#~ " \\b backspace\n" +#~ " \\c não produzir mais nenhum output\n" +#~ " \\f form feed\n" +#~ " \\n nova linha\n" +#~ " \\r retorno\n" +#~ " \\t tab horizontal\n" +#~ " \\v tab vertical\n" +#~ " \\xNNN caracter com valor hexadecimal NNN (1 a 3 dígitos)\n" +#~ "\n" +#~ " %%%% um único %%\n" +#~ " %%b ARGUMENTO como uma string com '\\' escapes interpretados\n" +#~ "\n" +#~ "e todas as especificações de formato C que acabem em diouxXfeEgGcs,\n" +#~ "com ARGUMENTO(s) convertidos para o tipo adequado primeiro. Larguras\n" +#~ "variáveis são também tratadas.\n" + +#~ msgid "" +#~ "Print the full filename of the current working directory.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Imprime o nome completo da directoria corrente.\n" +#~ "\n" +#~ " --help mostra esta ajuda e sai\n" +#~ " --version mostra a informação da versão e sai\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Special characters:\n" +#~ " * dsusp CHAR CHAR will send a terminal stop signal once input " +#~ "flushed\n" +#~ " eof CHAR CHAR will send an end of file (terminate the input)\n" +#~ " eol CHAR CHAR will end the line\n" +#~ " * eol2 CHAR alternate CHAR for ending the line\n" +#~ " erase CHAR CHAR will erase the last character typed\n" +#~ " intr CHAR CHAR will send an interrupt signal\n" +#~ " kill CHAR CHAR will erase the current line\n" +#~ " * lnext CHAR CHAR will enter the next character quoted\n" +#~ " quit CHAR CHAR will send a quit signal\n" +#~ " * rprnt CHAR CHAR will redraw the current line\n" +#~ " start CHAR CHAR will restart the output after stopping it\n" +#~ " stop CHAR CHAR will stop the output\n" +#~ " susp CHAR CHAR will send a terminal stop signal\n" +#~ " * swtch CHAR CHAR will switch to a different shell layer\n" +#~ " * werase CHAR CHAR will erase the last word typed\n" +#~ msgstr "" +#~ "\n" +#~ "Caracteres especiais:\n" +#~ "\n" +#~ "* dsusp CHAR CHAR enviará um stop ao terminal quando o input fôr " +#~ "flushed\n" +#~ " eof CHAR CHAR enviará um fim de ficheiro (terminando o input)\n" +#~ " eol CHAR CHAR terminará a linha\n" +#~ "* eol2 CHAR caracter alternativo para terminar a linha\n" +#~ " erase CHAR CHAR apagará o último caracter escrito\n" +#~ " intr CHAR CHAR enviará um sinal de interrupção\n" +#~ " kill CHAR CHAR apagará a próxima linha\n" +#~ "* lnext CHAR CHAR dará entrada ao próximo caracter entre aspas\n" +#~ " quit CHAR CHAR enviará um sinal de quit\n" +#~ "* rprnt CHAR CHAR redesenhará a linha actual\n" +#~ " start CHAR CHAR recomeçará o output depois deste ter sido \n" +#~ " interrompido\n" +#~ " stop CHAR CHAR terminará o output\n" +#~ " susp CHAR CHAR enviará um sinal de stop ao terminal\n" +#~ "* swtch CHAR CHAR mudará para uma shell diferente\n" +#~ "* werase CHAR CHAR apagará a última palavra escrita\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Special settings:\n" +#~ " N set the input and output speeds to N bauds\n" +#~ " * cols N tell the kernel that the terminal has N columns\n" +#~ " * columns N same as cols N\n" +#~ " ispeed N set the input speed to N\n" +#~ " * line N use line discipline N\n" +#~ " min N with -icanon, set N characters minimum for a completed " +#~ "read\n" +#~ " ospeed N set the output speed to N\n" +#~ " * rows N tell the kernel that the terminal has N rows\n" +#~ " * size print the number of rows and columns according to the " +#~ "kernel\n" +#~ " speed print the terminal speed\n" +#~ " time N with -icanon, set read timeout of N tenths of a second\n" +#~ msgstr "" +#~ "\n" +#~ "Parâmetros especiais:\n" +#~ " N colocar a velocidade de entrada/saída a N bauds\n" +#~ "* cols N dizer ao kernel que o terminal tem N colunas\n" +#~ "* columns N o mesmo que cols N\n" +#~ " ispeed N colocar a velocidade de entrada a N\n" +#~ "* line N usar line discipline\n" +#~ " min N com -icanon, colocar a N o número mínimo de " +#~ "caracteres \n" +#~ " para uma leitura completa.\n" +#~ "* rows N dizer ao kernel que o terminal tem N linhas\n" +#~ "* size mostrar o número de colunas e de linhas de acordo com " +#~ "o\n" +#~ " kernel\n" +#~ " speed mostrar a velocidade do terminal\n" +#~ " time N com -icanon, colocar o limite de tempo a N décimas de\n" +#~ " segundo\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Input settings:\n" +#~ " [-]brkint breaks cause an interrupt signal\n" +#~ " [-]icrnl translate carriage return to newline\n" +#~ " [-]ignbrk ignore break characters\n" +#~ " [-]igncr ignore carriage return\n" +#~ " [-]ignpar ignore characters with parity errors\n" +#~ " * [-]imaxbel beep and do not flush a full input buffer on a " +#~ "character\n" +#~ " [-]inlcr translate newline to carriage return\n" +#~ " [-]inpck enable input parity checking\n" +#~ " [-]istrip clear high (8th) bit of input characters\n" +#~ " * [-]iuclc translate uppercase characters to lowercase\n" +#~ " * [-]ixany let any character restart output, not only start " +#~ "character\n" +#~ " [-]ixoff enable sending of start/stop characters\n" +#~ " [-]ixon enable XON/XOFF flow control\n" +#~ " [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +#~ " [-]tandem same as [-]ixoff\n" +#~ msgstr "" +#~ "\n" +#~ "Parâmetros de entrada:\n" +#~ " [-]brkint break causa um sinal de interrupção\n" +#~ " [-]icrnl converter os carriage return para newline\n" +#~ " [-]ignbrk ignorar caracteres de break\n" +#~ " [-]ignpar ignorar caracteres com erros de paridade\n" +#~ " [-]imaxbel não esvaziar um buffer de entrada cheio num caracter e\n" +#~ " fazer beep quando tal ocorrer\n" +#~ " [-]inlcr converter de newline para carriage return\n" +#~ " [-]inpck ligar verificação de paridade na entrada\n" +#~ " [-]istrip limpar o maior bit (oitavo) dos caracteres de entrada\n" +#~ " [-]iuclc traduzir caracteres maiúsculos para minúsculos\n" +#~ " [-]ixany permitir que qualquer caracter recomece a saída, e não \n" +#~ " apenas os de start\n" +#~ " [-]ixoff ligar o envio de bits de start/stop\n" +#~ " [-]ixon ligar o controle de fluxo usando XON/XOFF\n" +#~ " [-]parmrk marcar erros de paridade (com uma sequência de 255-0\n" +#~ " caracteres\n" +#~ " [-]tandem o mesmo que [-]ixoff\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Local settings:\n" +#~ " [-]crterase echo erase characters as backspace-space-backspace\n" +#~ " * crtkill kill all line by obeying the echoprt and echoe settings\n" +#~ " * -crtkill kill all line by obeying the echoctl and echok settings\n" +#~ " * [-]ctlecho echo control characters in hat notation (`^c')\n" +#~ " [-]echo echo input characters\n" +#~ " * [-]echoctl same as [-]ctlecho\n" +#~ " [-]echoe same as [-]crterase\n" +#~ " [-]echok echo a newline after a kill character\n" +#~ " * [-]echoke same as [-]crtkill\n" +#~ " [-]echonl echo newline even if not echoing other characters\n" +#~ " * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +#~ " [-]icanon enable erase, kill, werase, and rprnt special " +#~ "characters\n" +#~ " [-]iexten enable non-POSIX special characters\n" +#~ " [-]isig enable interrupt, quit, and suspend special characters\n" +#~ " [-]noflsh disable flushing after interrupt and quit special " +#~ "characters\n" +#~ " * [-]prterase same as [-]echoprt\n" +#~ " * [-]tostop stop background jobs that try to write to the terminal\n" +#~ " * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +#~ msgstr "" +#~ "\n" +#~ "Parâmetros locais:\n" +#~ " [-] crterase ecoar caracteres erase como backspace-space-backspace\n" +#~ "* crtkill eliminar a linha inteira obedecendo aos parâmetros " +#~ "echoprt e\n" +#~ " echoe\n" +#~ "* -crtkill eliminar a linha inteira obedecendo aos parâmetros " +#~ "echoctl e\n" +#~ " echok\n" +#~ "* [-]ctlecho ecoar os caracteres de controle com \"chapéus\" ('^c')\n" +#~ " [-]echo ecoar os caracteres de entrada\n" +#~ "* [-]echoctl o mesmo que [-]ctlecho\n" +#~ " [-]echoe o mesmo que [-]crterase\n" +#~ " [-]echok ecoar um newline depois de um caracter kill\n" +#~ "* [-]echoke o mesmo que [-]crtkill\n" +#~ " [-]echonl ecoar newline mesmo se não estivermos a ecoar outros\n" +#~ "\t\t caracteres\n" +#~ "* [-]echoprt ecoar caracteres apagados para trás, entre '\\' e '/'\n" +#~ " [-]icanon permite os caracteres especiais erase,kill,werase e " +#~ "rprnt\n" +#~ " [-]iexten permite caracteres especiais não-POSIX\n" +#~ " [-]isig permite os caracteres especiais interrupção,quit e " +#~ "suspend\n" +#~ " [-]noflush após um caracter especial interrupt ou quit, não " +#~ "fazemos\n" +#~ " flush\n" +#~ "* [-]prterase o mesmo que [-]echoprt\n" +#~ "* [-]tostop impede que outros processos escrevam no terminal\n" +#~ "* [-]xcase com icanon, os caracteres maiúsculos ficam marcados com\n" +#~ " '\\'\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Combination settings:\n" +#~ " * [-]LCASE same as [-]lcase\n" +#~ " cbreak same as -icanon\n" +#~ " -cbreak same as icanon\n" +#~ " cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +#~ " icanon, eof and eol characters to their default values\n" +#~ " -cooked same as raw\n" +#~ " crt same as echoe echoctl echoke\n" +#~ " dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +#~ " kill ^u\n" +#~ " * [-]decctlq same as [-]ixany\n" +#~ " ek erase and kill characters to their default values\n" +#~ " evenp same as parenb -parodd cs7\n" +#~ " -evenp same as -parenb cs8\n" +#~ " * [-]lcase same as xcase iuclc olcuc\n" +#~ " litout same as -parenb -istrip -opost cs8\n" +#~ " -litout same as parenb istrip opost cs7\n" +#~ " nl same as -icrnl -onlcr\n" +#~ " -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +#~ " oddp same as parenb parodd cs7\n" +#~ " -oddp same as -parenb cs8\n" +#~ " [-]parity same as [-]evenp\n" +#~ " pass8 same as -parenb -istrip cs8\n" +#~ " -pass8 same as parenb istrip cs7\n" +#~ " raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +#~ " -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +#~ " -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +#~ " -raw same as cooked\n" +#~ " sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +#~ " -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +#~ " -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +#~ " isig icanon iexten echo echoe echok -echonl -noflsh\n" +#~ " -xcase -tostop -echoprt echoctl echoke, all special\n" +#~ " characters to their default values.\n" +#~ msgstr "" +#~ "\n" +#~ "Combinações de estilos:\n" +#~ "\n" +#~ "* [-]LCASE o mesmo que [-]lcase\n" +#~ " cbreak o mesmo que -icanon\n" +#~ " -cbreak o mesmo que icanon\n" +#~ " cooked o mesmo que por a valores por defeito os caracteres " +#~ "brkint \n" +#~ " ignpar istrip icrnl ixon opost isig icanon, eof e eol\n" +#~ " -cooked o mesmo que raw\n" +#~ " crt o mesmo que echoe echoctl echoke\n" +#~ " dec o mesmo que echoe echoctl echoke -ixany intr ^c erase \n" +#~ " 0177 kill ^u\\n\n" +#~ "* [-]decctlq o mesmo que [-]ixany\n" +#~ " ek apagar e matar os caracteres para os seus valores por \n" +#~ " defeito\n" +#~ " evenp o mesmo que parenb -parodd cs7\n" +#~ " -evenp o mesmo que -parenb cs8\n" +#~ "* [-]lcase o mesmo que xcase iuclc olcuc\n" +#~ " litout o mesmo que -parenb -istrip -opost cs8\n" +#~ " -litout o mesmo que parenb istrip opost cs7\n" +#~ " nl o mesmo que -icrnl -onlcr\n" +#~ " -nl o mesmo que icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +#~ " oddp o mesmo que parenb parodd cs7\n" +#~ " -oddp o mesmo que -parenb cs8\n" +#~ " [-]parity o mesmo que [-]evenp\n" +#~ " pass8 o mesmo que -parenb -istrip cs8\n" +#~ " -pass8 o mesmo que parenb istrip cs7\n" +#~ " raw o mesmo que -ignbrk -brkint -ignpar -parmrk -inpck -" +#~ "istrip\n" +#~ " -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany -" +#~ "imaxbel\n" +#~ " -opost -isig -icanon -xcase min 1 time 0\n" +#~ " -raw o mesmo que cooked\n" +#~ " sane o mesmo que cread -ignbrk brkint -inlcr -igncr icrnl\n" +#~ " -ixoff -iucl -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +#~ " -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +#~ " isig icanon iexten echo echoe echok -echonl -noflsh\n" +#~ " -xcase -tostop -echoprt echoctl echoke, todos eles \n" +#~ " caracteres especiais postos aos seus valores por " +#~ "defeito\n" + +#~ msgid "" +#~ "Exit with the status determined by EXPRESSION.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "EXPRESSION is true or false and sets exit status. It is one of:\n" +#~ msgstr "" +#~ "Sair, retornando o estado determinado por EXPRESSÃO.\n" +#~ "\n" +#~ " --help mostrar esta a ajuda e sair\n" +#~ " --version mostrar a informação de versão e sair\n" +#~ "\n" +#~ "EXPRESSÃO é verdadeira ou falsa e altera o o estado de saída. É uma de:\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode " +#~ "numbers\n" +#~ " FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +#~ " FILE1 -ot FILE2 FILE1 is older than FILE2\n" +#~ "\n" +#~ " -b FILE FILE exists and is block special\n" +#~ " -c FILE FILE exists and is character special\n" +#~ " -d FILE FILE exists and is a directory\n" +#~ " -e FILE FILE exists\n" +#~ " -f FILE FILE exists and is a regular file\n" +#~ " -g FILE FILE exists and is set-group-ID\n" +#~ " -h FILE FILE exists and is a symbolic link (same as -L)\n" +#~ " -G FILE FILE exists and is owned by the effective group ID\n" +#~ " -k FILE FILE exists and has its sticky bit set\n" +#~ " -L FILE FILE exists and is a symbolic link (same as -h)\n" +#~ " -O FILE FILE exists and is owned by the effective user ID\n" +#~ " -p FILE FILE exists and is a named pipe\n" +#~ " -r FILE FILE exists and is readable\n" +#~ " -s FILE FILE exists and has a size greater than zero\n" +#~ " -S FILE FILE exists and is a socket\n" +#~ " -t [FD] file descriptor FD (stdout by default) is opened on a " +#~ "terminal\n" +#~ " -u FILE FILE exists and its set-user-ID bit is set\n" +#~ " -w FILE FILE exists and is writable\n" +#~ " -x FILE FILE exists and is executable\n" +#~ msgstr "" +#~ "\n" +#~ " FICHEIRO1 -ef FICHEIRO2 FICHEIRO1 e FICHEIRO2 têm o mesmo número " +#~ "de \n" +#~ "\t\t\t dispositivo e inode\n" +#~ " FICHEIRO1 -nt FICHEIRO2 FICHEIRO1 é mais recente (data modificação) " +#~ "que\n" +#~ "\t\t FICHEIRO2\n" +#~ " FICHEIRO1 -ot FICHEIRO2 FICHEIRO1 é mais antigo que FICHEIRO2\n" +#~ "\n" +#~ " -G FICHEIRO FICHEIRO existe e tem como dono o grupo efectivo " +#~ "ID\n" +#~ " -L FICHEIRO FICHEIRO existe e é uma ligação simbólica\n" +#~ " -O FICHEIRO FICHEIRO existe e tem como dono o utilizador \n" +#~ "\t\t\t efectivo ID\n" +#~ " -S FICHEIRO FICHEIRO existe e é uma socket\n" +#~ " -b FICHEIRO FICHEIRO existe e é um ficheiro especial de " +#~ "bloco\n" +#~ " -c FICHEIRO FICHEIRO existe e é um ficheiro especial de " +#~ "caracter\n" +#~ " -d FICHEIRO FICHEIRO existe e é uma directoria\n" +#~ " -e FICHEIRO FICHEIRO existe\n" +#~ " -f FICHEIRO FICHEIRO existe e é um ficheiro normal\n" +#~ " -g FICHEIRO FICHEIRO existe e tem o bit set-group-ID a 1\n" +#~ " -k FICHEIRO FICHEIRO existe e tem o bit sticky a 1\n" +#~ " -p FICHEIRO FICHEIRO existe e é um pipe com nome\n" +#~ " -r FICHEIRO FICHEIRO existe e é legível\n" +#~ " -s FICHEIRO FICHEIRO existe e tem tamanho maior que zero\n" +#~ " -t [FD] o descritor de ficheiro FD (stdout por defeito) " +#~ "está\n" +#~ " aberto num terminal\n" +#~ " -u FICHEIRO FICHEIRO existe e tem o bit set-user-ID a 1\n" +#~ " -w FICHEIRO FICHEIRO existe e pode-se escrever nele\n" +#~ " -x FICHEIRO FICHEIRO existe e é executável\n" + +#~ msgid "" +#~ "Repeatedly output a line with all specified STRING(s), or `y'.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Retornar repetidamente uma linha com as STRING(s) especificadas, ou 'y'.\n" +#~ "\n" +#~ " --help mostrar esta ajuda e sair\n" +#~ " --version mostrar a informação de versão e sair\n" + +#, fuzzy +#~ msgid "cannot get processor type" +#~ msgstr "não consigo obter prioridade" + +#~ msgid "" +#~ msgstr "" + +#, fuzzy +#~ msgid "Usage: %s [-v]\n" +#~ msgstr "Utilização: %s [OPÇÃO]\n" + +#~ msgid "Usage: %s [OPTION]... [VARIABLE]...\n" +#~ msgstr "Utilização: %s [OPÇÃO]... [VARIÁVEL]...\n" + +#~ msgid "Usage: %s [OPTION]... NUMBER[SUFFIX]\n" +#~ msgstr "Utilização: %s [OPÇÃO]... NÚMERO[SUFIXO]\n" + +#~ msgid "few" +#~ msgstr "poucos" + +#~ msgid "many" +#~ msgstr "muitos" + +#~ msgid "Usage: %s [OPTION]... [START [INCREMENT]] LIMIT\n" +#~ msgstr "Utilização: %s [OPÇÃO]... [COMEÇO [INCREMENTO]] LIMITE\n" diff --git a/src/apps/bin/coreutils-5.0/po/pt_BR.gmo b/src/apps/bin/coreutils-5.0/po/pt_BR.gmo new file mode 100644 index 0000000000..e8cbb4acc2 Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/pt_BR.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/pt_BR.po b/src/apps/bin/coreutils-5.0/po/pt_BR.po new file mode 100644 index 0000000000..52a04cb505 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/pt_BR.po @@ -0,0 +1,7813 @@ +# Traduçoes para o português do Brasil das mensagens do "textutils" +# Copyright (C) 1998 Free Software Foundation, Inc. +# Cyro Mendes De Moraes Neto , 1998. +# Rodrigo Stulzer Lopes , 2001. +# Juan Carlos Castro y Castro , 2003. +# +msgid "" +msgstr "" +"Project-Id-Version: coreutils 4.5.8\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2003-02-24 12:23-0300\n" +"Last-Translator: Juan Carlos Castro y Castro \n" +"Language-Team: Brazilian Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +# , c-format +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "argumento inválido %s para '%s'" + +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "argumento ambíguo %s para `%s'" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "Os argumentos válidos são:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "erro de escrita" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "Erro de sistema desconhecido" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "arquivo comum vazio" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "arquivo comum" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "" + +#: lib/file-type.c:48 +msgid "block special file" +msgstr "arquivo especial de bloco" + +#: lib/file-type.c:51 +msgid "character special file" +msgstr "arquivo especial caracter" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "fifo" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "link simbólico" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "socket" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "fila de mensagens" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "semáforo" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "objeto de memória compartilhada" + +#: lib/file-type.c:71 +msgid "weird file" +msgstr "arquivo estranho" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: opção `%s' está ambígua\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: opção `--%s' não permite um argumento\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: opção `%c%s' não permite um argumento\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: opção `%s' requer um argumento\n" + +# , c-format +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: opção desconhecida `-%s'\n" + +# , c-format +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: opção desconhecida `%c%s'\n" + +# , c-format +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: opção inválida -- %c\n" + +# , c-format +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: opção inválida -- %c\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: opção requer um argumento --%c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: opção `-W %s' está ambígua\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: opção `-W %s' não permite um argumento\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "tamanho do bloco" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "" + +# , c-format +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "não é possível criar o diretório %s" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%s existe, mas não é um diretório" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "não pode substituir dono e/ou grupo de %s" + +# , c-format +#: lib/makepath.c:338 +#, c-format +msgid "cannot chdir to directory %s" +msgstr "impossível mudar para diretório %s" + +# , c-format +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "não é possível mudar permissões de %s" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "memória esgotada" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "`" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "'" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[yY]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[nN]" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "função iconv não utilizável" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "função iconv não disponível" + +# , c-format +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "caractere fora de faixa" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "impossível converter U+%04X para o conjunto local de caracteres" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "impossível converter U+%04X para o conjunto local de caracteres: %s" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "usuário inválido" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "grupo inválido" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "nao foi possivel obter um grupo e login de um UID numerico " + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "não pode ignorar usuário e grupo" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "Escrito por %s.\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +"este e um software livre. veja o fonte para as condicoes de copia.\n" +"NÃO ha garantia nem mesmo de COMERCIALIZAÇÃO ou de APLICABILIDADE PARA UM\n" +"USO ESPACÍFICO.\n" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "" + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "" + +# , c-format +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Tente `%s --help' para mais informação.\n" + +# , c-format +#: src/basename.c:54 +#, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s NOME [SUFIXO]\n" +" ou: %s OPÇÃO\n" + +#: src/basename.c:59 +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" +"Mostra o NOME sem quaisquer componentes de diretório.\n" +"Se for especificado, remove também o SUFIXO final.\n" +"\n" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"Comunicar `bugs' para <%s>.\n" + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "poucos argumentos" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "muitos argumentos" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "Torbjorn Granlund e Richard M. Stallman" + +# , c-format +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "Uso: %s [OPÇÃO] [ARQUIVO]...\n" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" +"Concatena ARQUIVO(s), ou a entrada padrão, para a saída padrão.\n" +"\n" +" -A, --show-all o mesmo que -vET\n" +" -b, --number-nonblank numera as linhas que não estão vazias\n" +" -e o mesmo que -vE\n" +" -E, --show-ends mostra '$' no final de cada linha\n" +" -n, --number numera todas as linhas de saída\n" +" -s, --squeeze-blank nunca mostra mais de uma linha vazia,\n" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" +"Concatena ARQUIVO(s), ou a entrada padrão, na saída padrão.\n" +" -t equivalente a -vT\n" +" -T, --show-tabs mostra os caracteres de tabulação como ^I\n" +" -u (sem efeito)\n" +" -v, --show-nonprinting utiliza a notação ^ e M-, salvo para LFD e TAB\n" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"Sem ARQUIVO, ou quando ARQUIVO é -, lê a entrada padrão.\n" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" +"\n" +" -B, --binary usa escrita binária no console.\n" +"\n" + +# , c-format +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "não pode executar a função 'ioctl' sobre `%s'" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "saída padrão" + +# , c-format +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s: os arquivos de entrada e saída são os mesmos" + +#: src/cat.c:858 +msgid "closing standard input" +msgstr "fechando entrada padrão" + +#: src/cat.c:861 +msgid "closing standard output" +msgstr "fechando saída padrão" + +#: src/chgrp.c:93 +msgid "cannot change to null group" +msgstr "impossível mudar para grupo nulo" + +#: src/chgrp.c:102 +#, c-format +msgid "invalid group name %s" +msgstr "nome de grupo inválido %s" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "número de grupo" + +#: src/chgrp.c:109 +#, c-format +msgid "invalid group number %s" +msgstr "número de grupo inválido %s" + +# , c-format +#: src/chgrp.c:126 +#, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Uso: %s [OPÇÃO]... GRUPO ARQUIVO...\n" +" ou: %s [OPÇÃO]... --reference=ARQUIVOREF ARQUIVO...\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, c-format +msgid "failed to get attributes of %s" +msgstr "falha ao obter atributos de %s" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "obtendo novos atributos de %s" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "modo de %s mudado para %04lo (%s)\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "falha na troca do modo de %s para %04lo (%s)\n" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "modo de %s mantido como %04lo (%s)\n" + +# , c-format +#: src/chmod.c:179 +#, c-format +msgid "changing permissions of %s" +msgstr "mudando permissões de %s" + +#: src/chmod.c:242 +#, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Uso: %s [OPÇÃO]... MODO[,MODO]... ARQUIVO...\n" +" ou: %s [OPÇÃO]... MODO-OCTAL ARQUIVO...\n" +" ou: %s [OPÇÃO]... --reference=ARQUIVOREF ARQUIVO...\n" + +#: src/chmod.c:248 +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"Troca o modo de cada ARQUIVO para MODO.\n" +"\n" +" -c, --changes como o modo \"verbose\" mas só avisa quando uma\n" +" alteração for feita\n" +" -f, --silent, --quiet desligar a maior parte das mensagens de erro\n" +" -v, --verbose mostrar um diagnóstico para cada arquivo processado\n" +" --reference=ARQR usa modo do arquivo ARQR em vez dos valores de MODO\n" +" -R, --recursive mudar arquivos e diretórios recursivamente\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" +"\n" +"Cada MODO é uma ou mais das letras ugoa, um dos símbolos +-= e uma ou mais\n" +"das letras rwxXstugo.\n" + +# , c-format +#: src/chmod.c:320 +#, c-format +msgid "invalid character %s in mode string %s" +msgstr "caracter inválido %s na cadeia de modo %s" + +# , c-format +#: src/chmod.c:361 +#, c-format +msgid "invalid mode string: %s" +msgstr "cadeia de modo inválida: %s" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "ligação simbólica %s e referência inalterados\n" + +#: src/chown-core.c:143 +#, c-format +msgid "changed ownership of %s to %s\n" +msgstr "trocado dono de %s para %s\n" + +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "alterado o grupo de %s para %s\n" + +# , c-format +#: src/chown-core.c:148 +#, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "erro ao mudar proprietário de %s para %s\n" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "não foi possível alterar o grupo de %s para %s\n" + +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "dono de %s mantido como %s\n" + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "grupo de %s mantido como %s\n" + +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "mudando permissões de %s" + +#: src/chown-core.c:327 +#, c-format +msgid "changing group of %s" +msgstr "mudando grupo de %s" + +# , c-format +#: src/chown-core.c:345 +#, c-format +msgid "unable to restore permissions of %s" +msgstr "não é possível restaurar permissões de %s" + +#: src/chown.c:99 +#, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Uso: %s [OPÇÃO]... DONO[:[GRUPO]] ARQUIVO...\n" +" ou: %s [OPÇÃO]... :GRUPO ARQUIVO...\n" +" ou: %s [OPÇÃO]... --reference=ARQUIVOREF ARQUIVO...\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Muda o dono e/ou grupo de cada ARQUIVO para DONO e/ou GRUPO.\n" +"\n" +" -c, --changes como o modo \"verbose\" mas só avisa quando uma\n" +" alteração for feita\n" +" --dereference afeta o que for apontado por cada link simbólico,\n" +" em vez do link simbólico em si\n" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" +" --from=DONO_ATUAL:GRUPO_ATUAL\n" +" muda dono e/ou grupo de cada arquivo apenas se seu\n" +" dono e/ou grupo atual forem iguais aos " +"especificados\n" +" nesta opção. Um ou outro pode ser omitido; nesse\n" +" caso, não será testado o atributo omitido.\n" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet desligar a maior parte das mensagens de erro\n" +" --reference=ARQR usa dono e grupo do arquivo ARQR em vez dos " +"valores\n" +" de DONO:GRUPO especificados\n" +" -R, --recursive mudar arquivos e diretórios recursivamente\n" +" -v, --verbose mostrar um diagnóstico para cada arquivo " +"processado\n" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" +"\n" +"Dono, caso não informado, permanece inalterado. Grupo é alterado para \n" +"o grupo de login caso login seja seguido por `:'. DONO e GRUPO pode ser \n" +"numérico bem como simbólico.\n" + +# , c-format +#: src/chroot.c:45 +#, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s NOVORAIZ [COMANDO...]\n" +" ou: %s OPÇÃO\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" +"Executa COMANDO com o diretório raiz modificado para NOVORAIZ.\n" +"\n" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" +"\n" +"Se não for dado COMANDO, roda ``${SHELL} -i'' (padrão: /bin/sh).\n" + +# , c-format +#: src/chroot.c:84 +#, c-format +msgid "cannot change root directory to %s" +msgstr "impossível mudar diretório raiz para %s" + +# , c-format +#: src/chroot.c:87 +msgid "cannot chdir to root directory" +msgstr "impossível mudar para o diretório raiz" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "%s: arquivo muito grande" + +# , c-format +#: src/cksum.c:282 +#, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"Uso: %s [ARQUIVO]...\n" +" ou: %s [OPÇÃO]\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" +"Exibe checagem de CRC e contagem de bytes de cada ARQUIVO.\n" +"\n" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "Richard Stallman e David MacKenzie" + +# , c-format +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "Uso: %s [OPÇÃO]... ARQUIVO1 ARQUIVO2\n" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" +"Compara os arquivos ordenados ARQUIVO1 e ARQUIVO2, linha a linha.\n" +"\n" +" -1 suprime as linhas que só estão em ARQUIVO1\n" +" -2 suprime as linhas que só estão em ARQUIVO2\n" +" -3 suprime as linhas que estão em ambos os arquivos\n" + +#: src/copy.c:162 src/du.c:332 +#, c-format +msgid "cannot access %s" +msgstr "impossível acessar %s" + +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "não foi possível abrir %s para leitura" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, c-format +msgid "cannot fstat %s" +msgstr "impossível fazer fstat em %s" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "pulando arquivo %s; ele foi substituído durante a cópia" + +# , c-format +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, c-format +msgid "cannot remove %s" +msgstr "imposível remover %s" + +# , c-format +#: src/copy.c:277 +#, c-format +msgid "cannot create regular file %s" +msgstr "impossível criar arquivo comum %s" + +# , c-format +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, c-format +msgid "reading %s" +msgstr "lendo %s" + +#: src/copy.c:362 +#, c-format +msgid "cannot lseek %s" +msgstr "impossível fazer lseek em %s" + +# , c-format +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, c-format +msgid "writing %s" +msgstr "escrevendo %s" + +#: src/copy.c:409 src/copy.c:415 +#, c-format +msgid "closing %s" +msgstr "fechando %s" + +#: src/copy.c:610 +#, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: sobrescrever %s, apesar do modo %04lo? " + +#: src/copy.c:616 +#, c-format +msgid "%s: overwrite %s? " +msgstr "%s: sobrescrever %s? " + +# , c-format +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, c-format +msgid "cannot stat %s" +msgstr "impossível fazer stat em %s" + +# , c-format +#: src/copy.c:820 +#, c-format +msgid "omitting directory %s" +msgstr "omitindo diretório %s" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "aviso: arquivo origem %s especificado mais de uma vez" + +#: src/copy.c:866 src/ln.c:237 +#, c-format +msgid "%s and %s are the same file" +msgstr "%s e %s são o mesmo arquivo" + +# , c-format +#: src/copy.c:876 +#, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "impossível sobrescrever não-diretório %s com diretório %s" + +#: src/copy.c:893 +#, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "não sobrescreverá recém-criado %s com %s" + +# , c-format +#: src/copy.c:904 +#, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "impossível sobrescrever diretório %s com não-diretório" + +# , c-format +#: src/copy.c:965 +#, c-format +msgid "cannot overwrite directory %s" +msgstr "impossível sobrescrever diretório %s" + +# , c-format +#: src/copy.c:974 +#, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "imposível mover diretório para não-diretório: %s -> %s" + +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "fazer cópia de %s iria destruir o original; `%s' não movido" + +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "fazer backup de %s iria destruir o original; %s não copiado" + +#: src/copy.c:1013 src/ln.c:273 +#, c-format +msgid "cannot backup %s" +msgstr "impossível fazer backup de %s" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr " (backup: %s)" + +# , c-format +#: src/copy.c:1099 +#, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "impossível copiar um diretório, %s, para si próprio, %s" + +# , c-format +#: src/copy.c:1106 +#, c-format +msgid "will not create hard link %s to directory %s" +msgstr "não criará link físico %s para diretório %s" + +# , c-format +#: src/copy.c:1132 +#, c-format +msgid "cannot create hard link %s to %s" +msgstr "impossível criar link físico %s para %s" + +# , c-format +#: src/copy.c:1186 +#, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "impossível mover %s para um subdiretório de si próprio, %s" + +# , c-format +#: src/copy.c:1229 +#, c-format +msgid "cannot move %s to %s" +msgstr "impossível mover %s para %s" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "" +"falha ao mover entre dispositivos: %s para %s: impossível remover destino" + +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "impossível copiar link simbólico cíclico %s" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "%s: só é possível fazer links simbólicos no diretório corrente" + +# , c-format +#: src/copy.c:1353 +#, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "impossível criar link simbólico %s para %s" + +# , c-format +#: src/copy.c:1364 +#, c-format +msgid "cannot create link %s" +msgstr "impossível criar link %s" + +# , c-format +#: src/copy.c:1389 src/mkfifo.c:133 +#, c-format +msgid "cannot create fifo %s" +msgstr "impossível criar fifo %s" + +#: src/copy.c:1403 +#, c-format +msgid "cannot create special file %s" +msgstr "impossível criar arquivo especial %s" + +# , c-format +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, c-format +msgid "cannot read symbolic link %s" +msgstr "impossível ler link simbólico %s" + +# , c-format +#: src/copy.c:1440 +#, c-format +msgid "cannot create symbolic link %s" +msgstr "impossível criar link simbólico %s" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, c-format +msgid "failed to preserve ownership for %s" +msgstr "impossível preservar proprietário para %s" + +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "%s tem tipo de arquivo desconhecido" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "preservando horário para %s" + +#: src/copy.c:1531 +#, c-format +msgid "failed to preserve authorship for %s" +msgstr "impossível preservar autoria para %s" + +# , c-format +#: src/copy.c:1549 +#, c-format +msgid "setting permissions for %s" +msgstr "definindo permissões para %s" + +#: src/copy.c:1571 src/ln.c:326 +#, c-format +msgid "cannot un-backup %s" +msgstr "impossível desfazer backup %s" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s -> %s (unbackup)\n" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "Torbjorn Granlund, David MacKenzie e Jim Meyering" + +#: src/cp.c:164 src/mv.c:311 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"Uso: %s [OPÇÃO]... ORIGEM DESTINO\n" +" ou: %s [OPÇÃO]... ORIGEM... DIRETÓRIO\n" +" ou: %s [OPÇÃO]... --target-directory=DIRETÓRIO ORIGEM...\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Copia ORIGEM para DESTINO, ou múltiplas ORIGENs para DIRETÓRIO.\n" +"\n" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" +"Argumentos obrigatórios para opções longas também o são para opções curtas\n" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" + +#: src/cp.c:209 +#, fuzzy +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +"Copia FONTE para DESTINO, ou múltiplos FONTE(s) para DIRETÓRIO.\n" +"\n" +" -a, --archive igual a -dpR\n" +" --backup[=CONTROLE] fazer \"backup\" de cada arquivo existente " +"de\n" +" destino\n" +" -b como --backup mas não aceita parâmetros\n" +" -d, --no-dereference manter os links\n" +" -f, --force remove destinos existentes, sem perguntar\n" +" -i, --interactive perguntar antes de sobrescrever\n" +" -l, --link fazer links de arquivos ao invés de copiar\n" +" -p, --preserve manter atributos dos arquivos se possível\n" +" -P, --parents anexar caminho (path) do fonte ao\n" +" DIRETÓRIO\n" +" -r copiar recursivamente, não-diretórios\n" +" como arquivos\n" +" ATENÇÃO: use -R quando você quiser copiar\n" +" arquivos especiais como FIFOs ou /dev/zero\n" +" --sparse=QUANDO controlar a criação de arquivos esparsos\n" +" -R, --recursive copiar diretórios recursivamente\n" +" -s, --symbolic-link fazer links simbólicos ao invés de copiar\n" +" -S, --sufix=SUFIXO usar SUFIXO como sufixo de \"backup\"\n" +" --target-directory=DIR move todos parâmetros FONTE para DIR\n" +" -u, --update copiar somente se o arquivo FONTE for mais\n" +" novo que o arquivo destino ou quando o\n" +" arquivo destino não existir\n" +" -v, --verbose explicar o que está sendo feito\n" +" -x, --one-file-system ficar só neste sistema de arquivos\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar informação sobre versão e sair\n" +"\n" +"Por padrão, arquivos esparsos da FONTE são detectados por uma heurística \n" +"grosseira e o correspondente arquivo DESTINO é também feito um arquivo \n" +"esparso. Este é o comportamento escolhido por --sparse=auto. Especifique \n" +"--sparse=always para criar um arquivo esparso em DESTINO quando o arquivo\n" +"SOURCE tiver uma sequência de bytes zero suficientemente grande.\n" +"\n" +"Use --sparse=never para inibir a criação de arquivos esparsos.\n" +"\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" + +#: src/cp.c:221 +#, fuzzy +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +"Renomear FONTE como DESTINO ou mover FONTE(s) para DIRETÓRIO.\n" +"\n" +" -b, --backup[=CONTROLE] fazer \"backup\" antes da remoção\n" +" -f, --force apagar destinos existentes, nunca perguntar\n" +" -i, --interactive perguntar antes de sobrescrever\n" +" --strip-trailing-slashes remove todas as barras finais de cada \n" +" parâmetro FONTE\n" +" -S, --suffix=SUFIXO usar SUFIXO em vez do sufixo habitual de\n" +" \"backup\"\n" +" --target-directory=DIR move todos os parâmetros FONTE para o\n" +" diretório DIR\n" +" -u, --update mover somente arquivos novos ou mais \n" +" recentes\n" +" -v, --verbose explicar o que está sendo feito\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar informação sobre versão e sair\n" + +#: src/cp.c:230 +#, fuzzy +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +"Copia FONTE para DESTINO, ou múltiplos FONTE(s) para DIRETÓRIO.\n" +"\n" +" -a, --archive igual a -dpR\n" +" --backup[=CONTROLE] fazer \"backup\" de cada arquivo existente " +"de\n" +" destino\n" +" -b como --backup mas não aceita parâmetros\n" +" -d, --no-dereference manter os links\n" +" -f, --force remove destinos existentes, sem perguntar\n" +" -i, --interactive perguntar antes de sobrescrever\n" +" -l, --link fazer links de arquivos ao invés de copiar\n" +" -p, --preserve manter atributos dos arquivos se possível\n" +" -P, --parents anexar caminho (path) do fonte ao\n" +" DIRETÓRIO\n" +" -r copiar recursivamente, não-diretórios\n" +" como arquivos\n" +" ATENÇÃO: use -R quando você quiser copiar\n" +" arquivos especiais como FIFOs ou /dev/zero\n" +" --sparse=QUANDO controlar a criação de arquivos esparsos\n" +" -R, --recursive copiar diretórios recursivamente\n" +" -s, --symbolic-link fazer links simbólicos ao invés de copiar\n" +" -S, --sufix=SUFIXO usar SUFIXO como sufixo de \"backup\"\n" +" --target-directory=DIR move todos parâmetros FONTE para DIR\n" +" -u, --update copiar somente se o arquivo FONTE for mais\n" +" novo que o arquivo destino ou quando o\n" +" arquivo destino não existir\n" +" -v, --verbose explicar o que está sendo feito\n" +" -x, --one-file-system ficar só neste sistema de arquivos\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar informação sobre versão e sair\n" +"\n" +"Por padrão, arquivos esparsos da FONTE são detectados por uma heurística \n" +"grosseira e o correspondente arquivo DESTINO é também feito um arquivo \n" +"esparso. Este é o comportamento escolhido por --sparse=auto. Especifique \n" +"--sparse=always para criar um arquivo esparso em DESTINO quando o arquivo\n" +"SOURCE tiver uma sequência de bytes zero suficientemente grande.\n" +"\n" +"Use --sparse=never para inibir a criação de arquivos esparsos.\n" +"\n" + +#: src/cp.c:239 +#, fuzzy +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"O sufixo de backup é ~, a não ser que --suffix ou SIMPLE_BACKUP_SUFFIX " +"esteja\n" +"definido. O controle de versão pode ser definido com --backup ou\n" +"VERSION_CONTROL, valores possíveis são:\n" +"\n" +" none, off nunca faz backups (mesmo que --backup for passado)\n" +" numbered,t fazer backups numerados\n" +" existing,nil numerados se já existirem backups numerados, simples em\n" +" caso contrário\n" +" simple,never fazer backups simples sempre\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +#, fuzzy +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +"O sufixo de backup é ~, a não ser que --suffix ou SIMPLE_BACKUP_SUFFIX " +"esteja\n" +"definido. O controle de versão pode ser definido com --backup ou\n" +"VERSION_CONTROL, valores possíveis são:\n" +"\n" +" none, off nunca faz backups (mesmo que --backup for passado)\n" +" numbered,t fazer backups numerados\n" +" existing,nil numerados se já existirem backups numerados, simples em\n" +" caso contrário\n" +" simple,never fazer backups simples sempre\n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +"Como caso especial, cp faz um backup de FONTE quando as opções \"force\" e\n" +"\"backup\" são dadas e FONTE e DESTINO são iguais ao nome de um arquivo \n" +"regular já existente.\n" + +#: src/cp.c:325 +#, c-format +msgid "failed to preserve times for %s" +msgstr "falha ao preservar horário para %s" + +# , c-format +#: src/cp.c:349 +#, c-format +msgid "failed to preserve permissions for %s" +msgstr "falha ao preservar permissões para %s" + +# , c-format +#: src/cp.c:434 +#, c-format +msgid "cannot make directory %s" +msgstr "impossível criar diretório %s" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +msgid "missing file argument" +msgstr "falta argumento de arquivo" + +#: src/cp.c:498 +msgid "missing destination file" +msgstr "falta arquivo destino" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "acessando %s" + +#: src/cp.c:546 +#, c-format +msgid "%s: specified target is not a directory" +msgstr "%s: destino especificado não é um diretório" + +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "copiando vários arquivos, mas o último argumento %s não é um diretório" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "" +"ao preservar caminhos (paths), o último argumento deve ser um diretório" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"aviso: --version-control (-V) é obsoleto; o suporte será removido\n" +"numa versão futura. Use --backup=%s." + +#: src/cp.c:972 src/ln.c:464 +msgid "symbolic links are not supported on this system" +msgstr "links simbólicos não são suportados neste sistema" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "impossível fazer links simbólicos e físicos ao mesmo tempo" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "tipo de backup" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "Stuart Kemp e David MacKenzie" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "erro de leitura" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "a entrada deixou de existir" + +# , c-format +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s: número de linha fora de tamanho" + +# , c-format +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: `%s': número de linha fora de tamanho" + +# , c-format +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr " na repetição %d\n" + +# , c-format +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s: `%s': ocorrência não encontrada" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "erro na busca da expressão regular" + +# , c-format +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "erro em escrever `%s'" + +# , c-format +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "%s: se esperava um `+' ou um `-' depois do delimitador" + +# , c-format +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s: espera-se um número inteiro depois de `%c'" + +# , c-format +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "%s: requer-se um `}' depois do número de repetições" + +# , c-format +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "%s}: entre `{' e `}' deve se especificar um número inteiro" + +# , c-format +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s: falta o delimitador de fechar `%c'" + +# , c-format +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: a expressão regular não é válida: %s" + +# , c-format +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "%s: padrão inválido" + +# , c-format +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s: o número de linha deve ser maior que zero" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "número de linha `%s' é menor do que o número de linha precedente, %s" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "atenção: o número de linha `%s' é igual ao número de linha anterior" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "especificador de conversão no sufixo perdido" + +# , c-format +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "especificador de conversão no sufixo é inválida: %c" + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "especificador de conversão no sufixo é inválida: \\%.3o" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "especificador de conversão no sufixo %% perdido" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "muito %% especificador de conversão no sufixo" + +#: src/csplit.c:1441 +#, c-format +msgid "%s: invalid number" +msgstr "%s: número inválido" + +# , c-format +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "Uso: %s [OPÇÃO]... ARQUIVO PADRÃO...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "" + +# , c-format +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "Uso: %s [OPÇÃO]... [ARQUIVO]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" + +#: src/cut.c:185 +#, fuzzy +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" +"Ajusta o largura das linhas em cada ARQUIVO (entrada padrão por default),\n" +"escrevendo o resultado na saída padrão\n" +"\n" +" -b, --bytes conta bytes em vez de colunas\n" +" -s, --spaces quebra nos espaços\n" +" -w, --width=WIDTH utiliza WIDTH colunas em vez de 80\n" +" --help mostra esta ajuda e finaliza\n" +" --version informa a versão e finaliza\n" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "a lista de bytes ou campos não é válida" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "somente um tipo de lista pode ser especificado" + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "faltando a lista de posições" + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "faltando a lista de campos" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "o delimitador deve ser um só caractere" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "Deve-se indicar uma lista de bytes, caracteres ou campos" + +#: src/cut.c:720 +#, fuzzy +msgid "an input delimiter may be specified only when operating on fields" +msgstr "" +"Um delimitador pode ser especificado somente quando se processam campos" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" +"suprimir as linhas não delimitadas somente tem sentido\n" +"\tquando se processam campos" + +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" +"Usage: %s [OPÇÃO]... [+FORMATO]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "entrada padrão" + +# , c-format +#: src/date.c:268 src/date.c:460 +#, c-format +msgid "invalid date `%s'" +msgstr "data inválida `%s'" + +#: src/date.c:364 +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "" +"as opções que especificam datas para exibição são mutuamente exclusivas" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "" +"as opções para imprimir e alterar o horário não podem ser usadas juntas" + +#: src/date.c:377 +#, c-format +msgid "too many non-option arguments: %s%s" +msgstr "argumentos não-opção em demasia: %s%s" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" +"o argumento `%s' não tem um `+' inicial;\n" +"Quando usado uma opção que especifique data(s), qualquer argumento sem " +"opção\n" +"tem que ser uma string de formatação começando com `+'." + +#: src/date.c:397 +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "" +"string de formatação não pode ser especificada com a opção --rfc-822 (-R)" + +#: src/date.c:433 +msgid "undefined" +msgstr "indefinido" + +#: src/date.c:435 +msgid "cannot get time of day" +msgstr "impossível obter hora" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "impossível alterar data" + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "Paul Rubin, David MacKenzie e Stuart Kemp" + +# , c-format +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "Uso: %s [OPÇÃO]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "%s+%s registros de entrada\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "%s+%s registros de saída\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "registro truncado" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "registros truncados" + +# , c-format +#: src/dd.c:382 +#, c-format +msgid "closing input file %s" +msgstr "fechando arquivo de entrada %s" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "fechando arquivo de saída %s" + +# , c-format +#: src/dd.c:469 +#, c-format +msgid "writing to %s" +msgstr "escrevendo em %s" + +# , c-format +#: src/dd.c:501 +#, c-format +msgid "invalid conversion: %s" +msgstr "conversão inválida: %s" + +# , c-format +#: src/dd.c:557 +#, c-format +msgid "unrecognized option %s" +msgstr "opção não reconhecida %s" + +# , c-format +#: src/dd.c:610 +#, c-format +msgid "unrecognized option %s=%s" +msgstr "opção não reconhecida %s=%s" + +#: src/dd.c:616 +#, c-format +msgid "invalid number %s" +msgstr "número inválido %s" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"somente uma conversão em {ascii,ebcdic,ibm}, {lcase,ucase}, {block," +"unblock},\n" +"{unblock,sync}" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" + +# , c-format +#: src/dd.c:1170 src/dd.c:1188 +#, c-format +msgid "opening %s" +msgstr "abrindo %s" + +# , c-format +#: src/dd.c:1196 +msgid "file offset out of range" +msgstr "posição no arquivo fora da faixa" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "avançando %s bytes no arquivo de saída %s" + +#: src/df.c:49 +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "Torbjorn Granlund, David MacKenzie, Larry McVoy e Paul Eggert" + +#: src/df.c:153 +#, fuzzy +msgid "Filesystem Type" +msgstr "Sistema de Arquivo " + +#: src/df.c:155 +#, fuzzy +msgid "Filesystem " +msgstr "Sistema de Arquivo " + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr " Inodes IUsados ILivr IUso%%" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Tam Usad Disp Uso%%" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Tam Usado Disp Uso%%" + +#: src/df.c:167 +#, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr " %4s-blocos Usad Dispon. Capacidade" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr " %4s-blocos Usad Dispon. Uso%%" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr " Montado em\n" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" + +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "sistema de arquivos de tipo %s selecionado e excluído" + +#: src/df.c:903 +msgid "Warning: " +msgstr "Aviso: " + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "%s não foi possível ler a tabela dos sistemas de arquivos montados" + +# , c-format +#: src/dircolors.c:103 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "Uso: %s [OPÇÃO]... [ARQUIVO]\n" + +#: src/dircolors.c:104 +#, fuzzy +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"Emite comandos de saída para definir a variável de ambiente LS_COLORS.\n" +"\n" +"Para determinar o formato da saída:\n" +" -b, --sh, --bourne-shell emitir o código para definir LS_COLORS em \n" +" formato conhecido pela Bourne shell\n" +" -c, --csh, --c-shell emitir o código para definir LS_COLORS em \n" +" formato conhecido pela C shell\n" +" -p, --print-data-base emitir os códigos default\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar informação sobre versão e sair\n" +"Se o ARQUIVO é especificado, ele será lido para determinar quais cores\n" +"usar para os tipos de arquivos e extensões. Caso contrário, são usados\n" +"valores precompilados. Para detalhes sobre o formato destes arquivos,\n" +"execute `dircolors --print-database'.\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" + +# , c-format +#: src/dircolors.c:299 +#, fuzzy, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s: número de segundos inválido" + +# , c-format +#: src/dircolors.c:371 +#, fuzzy, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s: opção desconhecida `%c%s'\n" + +#: src/dircolors.c:372 +msgid "" +msgstr "" + +#: src/dircolors.c:467 +#, fuzzy +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" +"as opções para saída em modo detalhado e legível pelo stty são mutuamente\n" +"exclusivas" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" +"não se podem usar argumentos de tipo ARQUIVO com a opção para mostrar a " +"base\n" +"de dados interna do \"dircolors\"" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "" +"variável de ambiente SHELL não existente e não se especificou nenhum\n" +"tipo de shell como argumento" + +#: src/dirname.c:33 src/pathchk.c:59 +msgid "David MacKenzie and Jim Meyering" +msgstr "" + +# , c-format +#: src/dirname.c:46 +#, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s NOME\n" +" ou: %s OPÇÃO\n" + +#: src/dirname.c:51 +#, fuzzy +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" +"Mostra NOME do diretório (rota absoluta) até o diretório pai, sem o " +"caractere /; se NOME não tiver '/' mostra `.' (o que significa o diretório " +"corrente).\n" +"\n" +" --help mostra esta ajuda e sai\n" +" --version mostra a informação de versão e sai\n" + +#: src/du.c:49 +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert e Jim Meyering" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" + +# , c-format +#: src/du.c:337 +#, c-format +msgid "cannot change to parent of directory %s" +msgstr "imposível mudar para pai do diretório %s" + +# , c-format +#: src/du.c:345 +#, c-format +msgid "cannot change to directory %s" +msgstr "imposível mudar para diretório %s" + +# , c-format +#: src/du.c:352 +#, c-format +msgid "cannot read directory %s" +msgstr "imposível ler diretório %s" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "total" + +# , c-format +#: src/du.c:641 +#, c-format +msgid "invalid maximum depth %s" +msgstr "profundidade máxima inválida %s" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "não é possível resumir e mostrar todas as entradas ao mesmo tempo" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "alerta: summarizing é o mesmo que usar --max-depth=0" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "alerta: summarizing conflita com --max-depth=%d" + +# , c-format +#: src/echo.c:77 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "Uso: %s [OPÇÃO]... [ARQUIVO]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/env.c:93 +msgid "Richard Mlynarik and David MacKenzie" +msgstr "" + +# , c-format +#: src/env.c:119 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "Uso: %s [OPÇÃO]... [ARQUIVO]...\n" + +#: src/env.c:122 +#, fuzzy +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" +"Alterar cada NOME para VALOR no ambiente e executar o COMANDO.\n" +"\n" +" -u, --unset=NOME retirar variável NOME do ambiente\n" +" -i, --ignore-environment começar com um ambiente vazio\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" +"\n" +"Um só '-' implica -i. Se não houver nenhum COMANDO, mostra o ambiente\n" +"resultante.\n" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "o tamanho de tabulação contém um caractere não válido" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "o tamanho de tabulação não pode ser 0" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "as posições de tabulação devem ir em ordem crescente" + +# , c-format +#: src/expand.c:386 +#, fuzzy +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "atenção: largura %lu inválida; será usado %d em seu lugar" + +# , c-format +#: src/expr.c:90 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s [ARQUIVO]...\n" +" ou: %s [OPÇÃO]\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" +"\n" +"NOTE que muitos operadores precisam ser \"escapados\" ou entre aspas.\n" +"Comparações são aritméticas se ambos os ARGumentos forem números, de outra " +"forma serão lexicográficas. O casamento de padrões retorna a string casada " +"entre \\( e \\) ou nulo; se \\( e \\) não forem usados elas retornarão o " +"número de caracteres casados ou 0.\n" + +# , c-format +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +#, fuzzy +msgid "syntax error" +msgstr "erro padrão" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" +"atenção: BRE não portável: `%s': usando `^' como primeiro caractere\n" +" da expressão regular básica (BRE) não é portável; está sendo ignorado" + +#: src/expr.c:586 src/expr.c:625 +#, fuzzy +msgid "non-numeric argument" +msgstr "argumento limite" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "" + +# , c-format +#: src/factor.c:74 +#, fuzzy, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s [ARQUIVO]...\n" +" ou: %s [OPÇÃO]\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" + +#: src/factor.c:85 +#, fuzzy +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" +"Mostra os fatores de cada NÚMERO especificado; lê entrada padrão se não\n" +"forem especificados argumentos.\n" +"\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" +"\n" +"Mostra os fatores primos de todos os NÚMEROS especificados. Se nenhum\n" +"argumento for especificado, estes são lidos da entrada padrão.\n" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "`%s' não é um inteiro positivo válido" + +#: src/false.c:34 +#, fuzzy, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Uso: %s [ignora parâmetros da linha de comando]\n" +" ou: %s OPÇÃO\n" +"Sai com um código de estado indicando falha\n" +"\n" +"As opções a seguir não podem ser abreviadas.\n" +"\n" +" --help mostra esta ajuda e sai\n" +" --version mostra a informação de versão e sai\n" + +# , c-format +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "Uso: %s [-DÍGITOS] [OPÇÃO]... [ARQUIVO]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" + +#: src/fmt.c:280 +#, fuzzy +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" +"Reformata cada parágrafo do ARQUIVO(s), escrevendo na saída padrão.\n" +"Se não se especificar um ARQUIVO ou ARQUIVO é `-', lê a entrada padrão.\n" +"\n" +"Os argumentos obrigatórios para as opções largas são também obrigatórios " +"para as opções curtas.\n" +" -c, --crown-margin mantém a indentação nas primeiras duas linhas\n" +" -p, --prefix=CADEIA associa somente as linhas que comecem com " +"CADEIA\n" +" -s, --split-only divide as linhas largas, mas sem quebrá-las\n" +" -t, --tagged-paragraph identificação da primeira linha diferente\n" +" da segunda linha\n" +" -u, --uniform-spacing coloca um espaço entre palavras, dois " +"entre frases\n" +" -w, --width=NÚMERO estabelece o largura de linha máximo " +"(por default,\n" +" 75 colunas)\n" +" --help mostra esta ajuda e finaliza\n" +" --version informa a versão e finaliza\n" +"\n" +"No `-wNÚMERO' pode-se omitir a letra `w'.\n" +"\n" + +#: src/fmt.c:286 +#, fuzzy +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" +"Reformata cada parágrafo do ARQUIVO(s), escrevendo na saída padrão.\n" +"Se não se especificar um ARQUIVO ou ARQUIVO é `-', lê a entrada padrão.\n" +"\n" +"Os argumentos obrigatórios para as opções largas são também obrigatórios " +"para as opções curtas.\n" +" -c, --crown-margin mantém a indentação nas primeiras duas linhas\n" +" -p, --prefix=CADEIA associa somente as linhas que comecem com " +"CADEIA\n" +" -s, --split-only divide as linhas largas, mas sem quebrá-las\n" +" -t, --tagged-paragraph identificação da primeira linha diferente\n" +" da segunda linha\n" +" -u, --uniform-spacing coloca um espaço entre palavras, dois " +"entre frases\n" +" -w, --width=NÚMERO estabelece o largura de linha máximo " +"(por default,\n" +" 75 colunas)\n" +" --help mostra esta ajuda e finaliza\n" +" --version informa a versão e finaliza\n" +"\n" +"No `-wNÚMERO' pode-se omitir a letra `w'.\n" +"\n" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" + +# , c-format +#: src/fmt.c:345 +#, fuzzy, c-format +msgid "invalid width option: `%s'" +msgstr "tipo de cadeia inválida `%s'" + +# , c-format +#: src/fmt.c:385 +#, fuzzy, c-format +msgid "invalid width: `%s'" +msgstr "número de campo inválido: `%s'" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" + +# , c-format +#: src/fold.c:267 +#, fuzzy, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "atenção: largura %lu inválida; será usado %d em seu lugar" + +# , c-format +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "o número de colunas não é válido: `%s'" + +#: src/head.c:92 +#, fuzzy +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Mostra as primeiras 10 linhas de cada ARQUIVO na saída padrão.\n" +"Se especificados vários ARQUIVO(s), mostra o nome de cada um.\n" +"Sem ARQUIVO especificado, ou ARQUIVO é `-', lê da entrada padrão.\n" +"\n" +" -c, --bytes=TAMANHO mostra os primeiros TAMANHO bytes\n" +" -n, --lines=N mostra as N primeiras linhas em vez de 10\n" +" -q, --quiet, --silent no mostra as início com o nome do arquivo\n" +" -v, --verbose mostra sempre os inícios com nomes dos arquivos\n" +" --help mostra esta ajuda e finaliza\n" +" --version informa a versão e finaliza\n" +"\n" +"TAMANHO pode ter um sufixo: `b' para 512, `k' para 1K, `m' para 1Meg.\n" +"Se -VALOR for informado como primeira opção, lê -c VALOR se um dos \n" +"sufixo bkm seguir concatenado a VALOR, ou lê -n VALOR\n" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" + +# , c-format +#: src/head.c:190 +#, fuzzy, c-format +msgid "cannot reposition file pointer for %s" +msgstr "não é possível criar o diretório %s" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "%s, `%s' é tão grande que não pode ser mostrado" + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "número de linhas" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "número de bytes" + +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "número de linhas inválido" + +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "número de bytes inválido" + +# , c-format +#: src/head.c:341 +#, c-format +msgid "unrecognized option `-%c'" +msgstr "opção não reconhecida '-%c'" + +# , c-format +#: src/head.c:348 +#, fuzzy, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "atenção: largura %lu inválida; será usado %d em seu lugar" + +#: src/hostid.c:48 +#, fuzzy, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" +"Uso: %s\n" +" ou: %s OPÇÃO\n" +"Mostra o identificador numérico (em hexadecimal) para a máquina atual\n" +"\n" +" --help mostrar esta ajuda e sai\n" +" --version mostrar a informação de versão e sai\n" + +#: src/hostname.c:67 +#, fuzzy, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" +"Uso: %s [NOME]\n" +" ou: %s [OPÇÃO]\n" +"Mostra ou configura o hostname do sistema corrente.\n" +"\n" +" --help mostra esta ajuda e sai\n" +" --version mostra a informação de versão e sai\n" + +# , c-format +#: src/hostname.c:104 +#, fuzzy, c-format +msgid "cannot set hostname to `%s'" +msgstr "não pode executar a função 'ioctl' sobre `%s'" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "" +"não consigo alterar o hostname; este sistema não dispõe dessa funcionalidade" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "não consigo determinar o hostname" + +#: src/id.c:36 +msgid "Arnold Robbins and David MacKenzie" +msgstr "" + +# , c-format +#: src/id.c:87 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "Uso: %s [OPÇÃO]... CONJUNTO1 [CONJUNTO2]\n" + +#: src/id.c:88 +#, fuzzy +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" +"Mostrar a informação de NOMEDOUSUÁRIO, ou o usuário corrente.\n" +"\n" +" -g, --group mostrar só o ID do grupo\n" +" -G, --groups mostrar só os grupos suplementares\n" +" -n, --name mostrar o nome em vez de um número, para -ugG\n" +" -r, --read mostrar o ID real em vez do ID efetivo, para -ugG\n" +" -u, --user mostrar só o ID do usuário\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" +"\n" +"id sem qualquer opção, mostrara' um conjunto útil de informações de \n" +"identidade .\n" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" + +#: src/id.c:162 +#, fuzzy +msgid "cannot print only user and only group" +msgstr "não pode ignorar usuário e grupo" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "não consigo mostrar só nomes ou ID's reais no formato default" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "%s: Usuário inexistente" + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "não consigo encontrar o nome para o UID %u" + +#: src/id.c:235 +#, fuzzy, c-format +msgid "cannot find name for group ID %u" +msgstr "não pode substituir dono e/ou grupo de %s" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "Não consigo obter lista de grupos suplementar" + +#: src/id.c:385 +msgid " groups=" +msgstr " grupos=" + +#: src/install.c:269 +#, fuzzy +msgid "the strip option may not be used when installing a directory" +msgstr "" +"a string de formatação não deve ser especificada ao imprimir strings com a \n" +"mesma largura" + +# , c-format +#: src/install.c:292 src/mkdir.c:140 +#, fuzzy, c-format +msgid "invalid mode %s" +msgstr "número de campo inválido: `%s'" + +# , c-format +#: src/install.c:307 src/install.c:371 +#, fuzzy, c-format +msgid "creating directory %s" +msgstr "não é possível criar o diretório %s" + +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "" +"instalando vários arquivos, mas o último parâmetro, %s não é um diretório" + +#: src/install.c:435 +#, fuzzy, c-format +msgid "%s is a directory" +msgstr "%s existe, mas não é um diretório" + +# , c-format +#: src/install.c:495 +#, fuzzy, c-format +msgid "cannot obtain time stamps for %s" +msgstr "não é possível criar o diretório %s" + +# , c-format +#: src/install.c:507 +#, fuzzy, c-format +msgid "cannot set time stamps for %s" +msgstr "não é possível criar o diretório %s" + +#: src/install.c:528 +#, fuzzy +msgid "fork system call failed" +msgstr "tamanho do bloco" + +#: src/install.c:532 +#, fuzzy +msgid "cannot run strip" +msgstr "não consigo executar %s" + +#: src/install.c:539 +#, fuzzy +msgid "strip failed" +msgstr "falha no stat" + +#: src/install.c:560 +#, fuzzy, c-format +msgid "invalid user %s" +msgstr "usuário inválido" + +#: src/install.c:578 +#, fuzzy, c-format +msgid "invalid group %s" +msgstr "grupo inválido" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"Uso: %s [OPÇÃO]... FONTE DESTINO (1º formato)\n" +" ou: %s [OPÇÃO]... FONTE... DIRETÓRIO (2º formato)\n" +" ou: %s -d [OPÇÃO]... DIRETÓRIO... (3º formato)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +#, fuzzy +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"O sufixo de backup é ~, a não ser que --suffix ou SIMPLE_BACKUP_SUFFIX " +"esteja\n" +"definido. O controle de versão pode ser definido com --backup ou\n" +"VERSION_CONTROL, valores possíveis são:\n" +"\n" +" none, off nunca faz backups (mesmo que --backup for passado)\n" +" numbered,t fazer backups numerados\n" +" existing,nil numerados se já existirem backups numerados, simples em\n" +" caso contrário\n" +" simple,never fazer backups simples sempre\n" + +# , c-format +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "Uso: %s [OPÇÃO]... ARQUIVO1 ARQUIVO2\n" + +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" + +#: src/join.c:165 +#, fuzzy +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" +"Compara os arquivos ordenados ARQUIVO1 e ARQUIVO2, linha por linha.\n" +"\n" +" -1 suprime as linhas que só estão em ARQUIVO1\n" +" -2 suprime as linhas que só estão em ARQUIVO2\n" +" -3 mostra as linhas que só estão em um deles\n" +" --help mostra esta ajuda e finaliza\n" +" --version informa a versão e finaliza\n" + +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" + +# , c-format +#: src/join.c:645 +#, c-format +msgid "invalid field specifier: `%s'" +msgstr "especificação do campo é inválida: `%s'" + +# , c-format +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, c-format +msgid "invalid field number: `%s'" +msgstr "número de campo inválido: `%s'" + +# , c-format +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "número de arquivo inválido na especificação do campo: `%s'" + +# , c-format +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "número de campo inválido para o arquivo 1: `%s'" + +# , c-format +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "número de campo inválido para o arquivo 2: `%s'" + +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "muitos argumentos" + +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "número de argumentos insuficiente" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "ambos os arquivos não podem ser a entrada padrão" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" + +#: src/kill.c:106 +#, fuzzy +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" +"Copia a entrada padrão (stdin) para um ARQUIVO, e também para a\n" +"saída padrão (stdout).\n" +"\n" +" -a, --append acrescenta aos ARQUIVO(s) passados, não escreve " +"por\n" +" cima\n" +" -i, --ignore-interrupts ignora os sinais de interrupção\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" + +# , c-format +#: src/kill.c:163 +#, fuzzy, c-format +msgid "%s: invalid signal" +msgstr "%s: PID inválido" + +# , c-format +#: src/kill.c:262 +#, fuzzy, c-format +msgid "missing operand after `%s'" +msgstr "%s: espera-se um número inteiro depois de `%c'" + +# , c-format +#: src/kill.c:274 +#, fuzzy, c-format +msgid "%s: invalid process id" +msgstr "%s: padrão inválido" + +# , c-format +#: src/kill.c:327 +#, fuzzy, c-format +msgid "invalid option -- %c" +msgstr "%s: opção inválida -- %c\n" + +#: src/kill.c:336 +#, fuzzy, c-format +msgid "%s: multiple signals specified" +msgstr "\\%c: caractere de escape inválido" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "" + +# , c-format +#: src/link.c:51 +#, fuzzy, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s [ARQUIVO]...\n" +" ou: %s [OPÇÃO]\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" + +# , c-format +#: src/link.c:98 +#, fuzzy, c-format +msgid "cannot create link %s to %s" +msgstr "não é possível criar o diretório %s" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "" +"%s: aviso: fazer uma ligação (hard) para uma ligação simbólica não é portável" + +#: src/ln.c:174 +#, fuzzy, c-format +msgid "%s: hard link not allowed for directory" +msgstr "`%s' não é um diretório" + +# , c-format +#: src/ln.c:246 +#, fuzzy, c-format +msgid "%s: cannot overwrite directory" +msgstr "não é possível criar o diretório %s" + +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "%s: substituir %s?" + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: Arquivo já existente" + +#: src/ln.c:304 +#, c-format +msgid "create symbolic link %s to %s" +msgstr "criar link simbólico %s to %s" + +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "criar link %s para %s" + +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "criando link simbólico %s to %s" + +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "criando link %s para %s" + +#: src/ln.c:339 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"Uso: %s [OPÇÃO]... ÚLTIMO\n" +" ou: %s [OPÇÃO]... PRIMEIRO ÚLTIMO\n" +" ou: %s [OPÇÃO]... PRIMEIRO INCREMENTO ÚLTIMO\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" + +#: src/ln.c:521 +#, fuzzy, c-format +msgid "%s: specified target directory is not a directory" +msgstr "%s existe, mas não é um diretório" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "" +"quando há vários links a serem feitos, o último argumento deve ser um " +"diretório" + +# , c-format +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "Uso: %s [OPÇÃO] [ARQUIVO]...\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" + +#: src/logname.c:99 +#, fuzzy, c-format +msgid "%s: no login name\n" +msgstr "%s: número inválido" + +#: src/ls.c:673 +#, fuzzy +msgid "%b %e %Y" +msgstr "%b %e %H:%M %Y" + +#: src/ls.c:681 +#, fuzzy +msgid "%b %e %H:%M" +msgstr "%b %e %H:%M %Y" + +#: src/ls.c:1307 +#, fuzzy, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "ignorando tamanho de tab inválido na variável de ambiente TABSIZE: %s" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "ignorando largura inválida na variável de ambiente COLUMNS: %s" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "ignorando tamanho de tab inválido na variável de ambiente TABSIZE: %s" + +# , c-format +#: src/ls.c:1482 +#, fuzzy, c-format +msgid "invalid line width: %s" +msgstr "número de campo inválido: `%s'" + +# , c-format +#: src/ls.c:1556 +#, fuzzy, c-format +msgid "invalid tab size: %s" +msgstr "tipo de cadeia inválida `%s'" + +# , c-format +#: src/ls.c:1722 +#, fuzzy, c-format +msgid "invalid time style format %s" +msgstr "argumento inválido %s para '%s'" + +# , c-format +#: src/ls.c:2054 +#, fuzzy, c-format +msgid "unrecognized prefix: %s" +msgstr "opção não reconhecida '-%c'" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "o valor da variável de ambiente LS_COLORS não pode ser analisado" + +# , c-format +#: src/ls.c:2145 +#, fuzzy, c-format +msgid "cannot determine device and inode of %s" +msgstr "não é possível criar o diretório %s" + +# , c-format +#: src/ls.c:2155 +#, fuzzy, c-format +msgid "not listing already-listed directory: %s" +msgstr "não é possível criar o diretório %s" + +# , c-format +#: src/ls.c:2208 src/remove.c:929 +#, fuzzy, c-format +msgid "reading directory %s" +msgstr "não é possível criar o diretório %s" + +#: src/ls.c:2603 +#, fuzzy, c-format +msgid "cannot compare file names %s and %s" +msgstr "não foi possível criar o link %s" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" + +#: src/ls.c:3784 +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" + +#: src/ls.c:3799 +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" + +#: src/ls.c:3831 +#, fuzzy +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -g (ignorado)\n" +" -G, --no-group não mostra o grupo\n" +" -h, --human-readable mostra tamanhos em formato de leitura para \n" +" humanos (ex: 1K 234M 2G)\n" +" -H, --si como o anterior, mas usa o multiplicador \n" +" 1000 em vez de 1024\n" +" --indicator-style=PALAVRA concatena o indicador com o estilo \n" +" PALAVRA na entrada de nomes:\n" +" none (padrao)\n" +" classificado (-F)\n" +" tipo-de-arquivo (-p)\n" +" -i, --inode mostrar o número de índice de cada arquivo\n" +" -I, --ignore=PADRÃO não mostrar entradas que coincidam com o\n" +" PADRÃO de shell\n" +" -k, --kilobytes como --block-size=1024\n" +" -l usar formato longo de listagem\n" +" -L, --dereference mostrar entradas apontadas pelos\n" +" links simbólicos\n" +" -m preencher largura com as entradas separadas " +"por\n" +" vírgulas\n" +" -n, --numeric-uid-gid mostrar UIDs e GIDs numéricos em vez dos nomes\n" +" -N, --literal mostrar os nomes das entradas sem tratar\n" +" tratar caracteres de controle\n" +" -o usar formato de listagem longo sem informação\n" +" de grupo\n" +" -p, --file-type acrescentar um indicador (/=@|) nas entradas\n" +" -q, --hide-control-chars mostrar ? em vez de caracteres não gráficos\n" +" --show-control-chars mostra caracteres não gráficos como são " +"(padrão\n" +" a menos que o programa seja o `ls' e a saída\n" +" seja um terminal)\n" +" -Q, --quote-name colocar aspas nos nomes das entradas\n" +" --quoting-style=PALAVRA use estilo de quote para nomes de entrada:\n" +" literal, shell, shell-always, c, escape\n" +" -r, --reverse inverter a ordem na ordenação\n" +" -R, --recursive mostrar subdiretórios recursivamente\n" +" -s, --size mostrar o tamanho de cada arquivo, em blocos\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" + +# , c-format +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "%s: %lu: linha de checksum %s com formato errôneo" + +# , c-format +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "%s: FALHA na abertura ou na leitura\n" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "A soma não coincide" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "A soma coincide" + +# , c-format +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%s: erro de leitura" + +# , c-format +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "%s: não foram encontradas linhas de checksum %s com formato correto" + +# , c-format +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "ATENÇÃO: %d de %d listado %s não pode ser lido" + +#: src/md5sum.c:473 +msgid "file" +msgstr "arquivo" + +#: src/md5sum.c:473 +msgid "files" +msgstr "arquivos" + +# , c-format +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "ATENÇÃO: calculado %d de %d %s não confere" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "soma de comprovação (checksum)" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "somas de comprovação (checksum)" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" +"as opções --binary e --text não tem sentido para verificar somas de " +"comprovação" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "as opções --string e --check são mutuamente excludentes" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "a opção --status só tem sentido para verificar somas de comprovação" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "a opção --warn só tem sentido para verificar somas de comprovação" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "não é possível especificar arquivo quando se usa --string" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "quando se utiliza --check só se pode especificar um argumento" + +# , c-format +#: src/mkdir.c:61 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "Uso: %s [OPÇÃO] [ARQUIVO]...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" + +#: src/mkdir.c:69 +#, fuzzy +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +"Criar o(s) DIRETÓRIO(s), se ainda não existirem.\n" +"\n" +" -m, --mode=MODO colocar permissões MODO (como no chmod) em vez\n" +" de rwxrwxrwx - umask\n" +" -p, --parents suprimir erros caso existam, criar diretórios\n" +" pais à medida que for necessário\n" +" -v, --verbose mostrar uma mensagem para cada diretório criado\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar informação sobre versão e sair\n" + +# , c-format +#: src/mkdir.c:113 +#, fuzzy, c-format +msgid "created directory %s" +msgstr "não é possível criar o diretório %s" + +# , c-format +#: src/mkdir.c:190 +#, fuzzy, c-format +msgid "cannot set permissions of directory %s" +msgstr "não é possível mudar permissões de %s" + +# , c-format +#: src/mkfifo.c:55 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "Uso: %s [OPÇÃO] [ARQUIVO]...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" + +#: src/mkfifo.c:63 src/mknod.c:64 +#, fuzzy +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" +"Criar pipes com nome (FIFOs) com o NOME dado.\n" +"\n" +" -m, --mode=MODO configurar permissões (como no chmod)\n" +" --help mostrar esta ajuda e sai\n" +" --version mostrar informação sobre versão e sai\n" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "arquivos \"fifo\" não suportados" + +#: src/mkfifo.c:123 src/mknod.c:127 +#, fuzzy +msgid "invalid mode" +msgstr "número inválido" + +# , c-format +#: src/mkfifo.c:142 +#, fuzzy, c-format +msgid "cannot set permissions of fifo %s" +msgstr "não é possível mudar permissões de %s" + +# , c-format +#: src/mknod.c:55 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "Uso: %s [OPÇÃO]... CONJUNTO1 [CONJUNTO2]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" + +#: src/mknod.c:76 +#, fuzzy +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"Criar o arquivo especial NOME do TIPO dado.\n" +"\n" +" -m, --mode=MODO colocar permissões MODO (como no chmod), em vez de \n" +" 0666-umask\n" +" --help mostrar esta ajuda e sai\n" +" --version mostrar informação sobre versão e sai\n" +"\n" +"MAJOR e MINOR são proibidos para o TIPO p, obrigatórios nos outros casos.\n" +"TIPO pode ser:\n" +" b criar um arquivo especial de tipo bloco (buffered)\n" +" c, u criar um arquivo especial de tipo caracter (não buffered)\n" +" p criar um \"FIFO\"\n" + +#: src/mknod.c:141 +#, fuzzy +msgid "wrong number of arguments" +msgstr "poucos argumentos" + +#: src/mknod.c:153 +#, fuzzy +msgid "block special files not supported" +msgstr "tamanho do bloco" + +#: src/mknod.c:162 +#, fuzzy +msgid "character special files not supported" +msgstr "o offset de caracteres é zero" + +#: src/mknod.c:171 +#, fuzzy +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" +"ao criar arquivos especiais de bloco, são necessários os números \n" +"\"major\" e \"minor do dispositivo" + +# , c-format +#: src/mknod.c:186 +#, fuzzy, c-format +msgid "invalid major device number %s" +msgstr "número de começo de linha inválido: `%s'" + +# , c-format +#: src/mknod.c:191 +#, fuzzy, c-format +msgid "invalid minor device number %s" +msgstr "número de começo de linha inválido: `%s'" + +# , c-format +#: src/mknod.c:196 +#, fuzzy, c-format +msgid "invalid device %s %s" +msgstr "argumento inválido %s para '%s'" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "" +"arquivos especiais de tipo \"fifo\" não podem ter os números \"major\" e " +"\"minor\"\n" +"do dispositivo" + +# , c-format +#: src/mknod.c:231 +#, fuzzy, c-format +msgid "cannot set permissions of %s" +msgstr "não é possível mudar permissões de %s" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" + +#: src/mv.c:339 +#, fuzzy +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Renomear FONTE como DESTINO ou mover FONTE(s) para DIRETÓRIO.\n" +"\n" +" -b, --backup[=CONTROLE] fazer \"backup\" antes da remoção\n" +" -f, --force apagar destinos existentes, nunca perguntar\n" +" -i, --interactive perguntar antes de sobrescrever\n" +" --strip-trailing-slashes remove todas as barras finais de cada \n" +" parâmetro FONTE\n" +" -S, --suffix=SUFIXO usar SUFIXO em vez do sufixo habitual de\n" +" \"backup\"\n" +" --target-directory=DIR move todos os parâmetros FONTE para o\n" +" diretório DIR\n" +" -u, --update mover somente arquivos novos ou mais \n" +" recentes\n" +" -v, --verbose explicar o que está sendo feito\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar informação sobre versão e sair\n" + +#: src/mv.c:467 +#, fuzzy, c-format +msgid "specified target, %s is not a directory" +msgstr "%s existe, mas não é um diretório" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "ao mover múltiplos arquivos o último argumento deve ser um diretório" + +# , c-format +#: src/nice.c:67 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "Uso: %s [OPÇÃO] [ARQUIVO]...\n" + +#: src/nice.c:68 +#, fuzzy +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" +"Execute o COMANDO com uma prioridade de despacho ajustada.\n" +"Sem qualquer COMANDO, mostra a prioridade de despacho corrente. AJUSTE é 10\n" +"por default. Valores vão desde -20 (prioridade mais alta) a 19 (mais " +"baixa).\n" +"\n" +" -AJUSTE incrementa prioridade AJUSTE primeiro\n" +" -n, --adjustment=AJUSTE igual a -AJUSTE\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" + +# , c-format +#: src/nice.c:109 src/nice.c:122 +#, fuzzy, c-format +msgid "invalid option `%s'" +msgstr "tipo de cadeia inválida `%s'" + +# , c-format +#: src/nice.c:147 +#, fuzzy, c-format +msgid "invalid priority `%s'" +msgstr "número de campo inválido: `%s'" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "um comando deve ser dado com um ajuste" + +# , c-format +#: src/nice.c:178 src/nice.c:187 +#, fuzzy +msgid "cannot get priority" +msgstr "não é possível criar o diretório %s" + +# , c-format +#: src/nice.c:192 +#, fuzzy +msgid "cannot set priority" +msgstr "não é possível criar o diretório %s" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/nl.c:188 +#, fuzzy +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" +"Escreve cada ARQUIVO na saída padrão começando pela última linha\n" +"Sem informar ARQUIVO, ou se ARQUIVO é `-', lê da entrada padrão\n" +"\n" +" -b, --before colocar o separador antes de cada linha, em vez " +"de\n" +" colocar depois\n" +" -r, --regex interpretar o separador como uma expressão " +"regular\n" +" -s, --separator=STRING usar STRING como separador, em vez de um salto de\n" +" linha\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a versão e sair\n" +"\n" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" + +# , c-format +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "número de começo de linha inválido: `%s'" + +# , c-format +#: src/nl.c:514 +#, c-format +msgid "invalid line number increment: `%s'" +msgstr "incremento de linha não válido: `%s'" + +# , c-format +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "número de linhas vazias inválido: `%s'" + +# , c-format +#: src/nl.c:541 +#, c-format +msgid "invalid line number field width: `%s'" +msgstr "largura para o número de linha inválido: `%s'" + +# , c-format +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"Uso: %s [OPÇÃO]... [ARQUIVO]...\n" +" ou: %s --traditional [ARQUIVO] [[+]OFFSET [[+]RÓTULO]\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" + +# , c-format +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "tipo de cadeia inválida `%s'" + +# , c-format +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" +"tipo de cadeia inválida `%s';\n" +"este sistema não provê um tipo de %lu bytes" + +# , c-format +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" +"tipo de cadeia inválida `%s';\n" +"este sistema não dispõe de um tipo de ponto flutuante de %lu bytes" + +# , c-format +#: src/od.c:917 +#, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "caracter inválido `%c' na cadeia `%s'" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "impossível acessar além da entrada" + +# msgstr "" +#: src/od.c:1397 +msgid "old-style offset" +msgstr "estilo antigo de deslocamento" + +# , c-format +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "endereço de saída inválido `%c'; deve ser um caracter de [doxn]" + +#: src/od.c:1717 +msgid "skip argument" +msgstr "argumento ignorado" + +#: src/od.c:1725 +msgid "limit argument" +msgstr "argumento limite" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "tamanho mínimo de cadeia" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "%s é muito grande" + +#: src/od.c:1804 +msgid "width specification" +msgstr "especificação de largura" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "o tipo não pode ser especificado quando se depura cadeias" + +# , c-format +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "segundo operando inválido em modo de compatibilidade `%s'" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "" +"em modo de compatibilidade os dois últimos argumentos devem ser " +"deslocamentos (offsets)" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "em modo de compatibilidade não deve haver mais de três argumentos" + +# , c-format +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "atenção: largura %lu inválida; será usado %d em seu lugar" + +# , c-format +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "%d: fmt=\"%s\" largura=%d\n" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "a entrada padrão está fechada" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" + +# , c-format +#: src/pathchk.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "Uso: %s [OPÇÃO]... [ARQUIVO]...\n" + +#: src/pathchk.c:147 +#, fuzzy +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" +"Diagnostica construções não portáveis em NOME.\n" +"\n" +" -p, --portability verifica todos os sistemas POSIX, não só este\n" +" --help mostra esta ajuda e sai\n" +" --version mostra a informação de versão e sai\n" + +#: src/pathchk.c:237 +#, fuzzy, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "o tamanho de tabulação contém um caractere não válido" + +#: src/pathchk.c:257 +#, fuzzy, c-format +msgid "`%s' is not a directory" +msgstr "%s existe, mas não é um diretório" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "não é possível procurar no diretório `%s'" + +#: src/pathchk.c:355 +#, fuzzy, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "nome `%s' tem comprimento %d; excede limite de %d" + +#: src/pathchk.c:381 +#, fuzzy, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "rota `%s' tem comprimento %d; excede limite de %d" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "Nome de Login: " + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "Na vida real: " + +#: src/pinky.c:298 +msgid "???\n" +msgstr "???\n" + +#: src/pinky.c:318 +msgid "Directory: " +msgstr "Diretório: " + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "Interpretador: " + +#: src/pinky.c:341 +msgid "Project: " +msgstr "Projeto: " + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "Planos:\n" + +#: src/pinky.c:386 +msgid "Login" +msgstr "Login" + +#: src/pinky.c:388 +#, fuzzy +msgid "Name" +msgstr " Nome" + +#: src/pinky.c:389 +#, fuzzy +msgid " TTY" +msgstr "TTY" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "Ocioso" + +#: src/pinky.c:392 +msgid "When" +msgstr "Quando" + +#: src/pinky.c:395 +msgid "Where" +msgstr "Onde" + +# , c-format +#: src/pinky.c:469 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "Uso: %s [OPÇÃO]... [ARQUIVO]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" + +#: src/pinky.c:574 +#, fuzzy +msgid "no username specified; at least one must be specified when using -l" +msgstr "não é possível especificar arquivo quando se usa --string" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "" + +# , c-format +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "`--pages' intervalo de número de páginas inválido: `%s'" + +# , c-format +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "`--pages' número de página inicial inválido: `%s'" + +# , c-format +#: src/pr.c:829 +#, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "`--pages' número de página final inválido: `%s'" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "" +"`--pages' número de página inicial é maior que o número de página final" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "`--pages=PRIMEIRA_PÁGINA[:ÚLTIMA_PÁGINA]' está faltando argumentos" + +# , c-format +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "`--columns=COLUNAS' o número de colunas não é válido: `%s'" + +# , c-format +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "`-l TAMANHO_DE_PÁGINA' número de linhas inválido: `%s'" + +# , c-format +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "`-N NÚMERO' número de início de linha inválido: `%s'" + +# , c-format +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "`-o MARGEM' deslocamento (offset) de linha inválido: `%s'" + +# , c-format +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "`-w TAMANHO_DE_PÁGINA' número de caracteres inválido: `%s'" + +# , c-format +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "`-W TAMANHO_DE_PÁGINA' número de caracteres inválido: `%s'" + +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "%b %e %H:%M %Y" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "" +"Não é possível especificar o número de colunas quando imprimindo em paralelo." + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "" +"Não é possível especificar impressão em paralelo e transversalmente ao mesmo " +"tempo." + +# , c-format +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "" +"`-%c' caracteres extras, ou o argumento da opção `-s' não é válido : `%s'" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "largura de página muito estreita" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "número de página inicial é maior que o número de páginas: `%d'" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "Página %d" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr "" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" + +#: src/pr.c:2849 +#, fuzzy +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" +"Compara os arquivos ordenados ARQUIVO1 e ARQUIVO2, linha por linha.\n" +"\n" +" -1 suprime as linhas que só estão em ARQUIVO1\n" +" -2 suprime as linhas que só estão em ARQUIVO2\n" +" -3 mostra as linhas que só estão em um deles\n" +" --help mostra esta ajuda e finaliza\n" +" --version informa a versão e finaliza\n" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" + +#: src/printenv.c:43 +msgid "David MacKenzie and Richard Mlynarik" +msgstr "" + +#: src/printenv.c:63 +#, fuzzy, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" +"Uso: %s [VARIÁVEL]...\n" +" ou:\"%s OPÇÃO\n" +"Se não for especificada nenhuma VARIÁVEL do ambiente, mostra todas.\n" +"\n" +" --help mostrar esta ajuda\n" +" --version mostrar informação de versão e sai\n" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "Atenção: %s caracter(s) seguindo constante de caractere foi ignorado" + +# , c-format +#: src/printf.c:100 +#, fuzzy, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s [ARQUIVO]...\n" +" ou: %s [OPÇÃO]\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "%s: valor numérico esperado" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "%s: valor não convertido totalmente" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "falta um número hexadecimal no caractere de escape" + +# , c-format +#: src/printf.c:292 +#, fuzzy, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "classe de caracteres inválida `%s'" + +# , c-format +#: src/printf.c:472 +#, fuzzy, c-format +msgid "invalid field width: %s" +msgstr "número de campo inválido: `%s'" + +# , c-format +#: src/printf.c:498 +#, fuzzy, c-format +msgid "invalid precision: %s" +msgstr "conversão inválida: %s" + +# , c-format +#: src/printf.c:519 +#, fuzzy, c-format +msgid "%%%c: invalid directive" +msgstr "%s: padrão inválido" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "Uso: %s formato [argumento...]\n" + +#: src/printf.c:594 +#, fuzzy, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "Atenção: argumentos excessivos serão ignorados" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "%s (para expressão regular `%s')" + +# , c-format +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"Uso: %s [OPÇÃO]... [ENTRADA]... (sem a opção -G)\n" +" ou: %s [OPÇÃO]... [ENTRADA [SAÍDA]]\n" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" + +#: src/ptx.c:1978 +#, fuzzy +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" +"Este programa é um software livre, você pode redistribuí-lo e/ou modificá-" +"lo\n" +"sobre os termos da licença pública geral GNU (GPL - General Public License)\n" +"publicada pela Free Software Foundation, versão 2 ou posteriores.\n" +"\n" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" + +#: src/ptx.c:1992 +#, fuzzy +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" +"Este programa é um software livre, você pode redistribuí-lo e/ou modificá-" +"lo\n" +"sobre os termos da licença pública geral GNU (GPL - General Public License)\n" +"publicada pela Free Software Foundation, versão 2 ou posteriores.\n" +"\n" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" + +#: src/pwd.c:74 +#, fuzzy +msgid "ignoring non-option arguments" +msgstr "muitos argumentos" + +# , c-format +#: src/pwd.c:78 +#, fuzzy +msgid "cannot get current directory" +msgstr "não é possível criar o diretório %s" + +# , c-format +#: src/readlink.c:69 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "Uso: %s [OPÇÃO]... [ARQUIVO]...\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" + +# , c-format +#: src/remove.c:394 +#, fuzzy, c-format +msgid "cannot chdir from %s to .." +msgstr "não pode executar 'chdir' sobre `%s'" + +#: src/remove.c:407 src/remove.c:488 +#, fuzzy, c-format +msgid "cannot lstat `.' in %s" +msgstr "não consigo executar %s" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, fuzzy, c-format +msgid "cannot lstat %s" +msgstr "não consigo alterar data" + +# , c-format +#: src/remove.c:603 +#, fuzzy, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "não é possível criar o diretório %s" + +# , c-format +#: src/remove.c:604 +#, fuzzy, c-format +msgid "%s: descend into directory %s? " +msgstr "não pode executar 'chdir' sobre `%s'" + +#: src/remove.c:614 +#, fuzzy, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: remover arquivo %s protegido contra escrita? " + +#: src/remove.c:615 +#, fuzzy, c-format +msgid "%s: remove %s %s? " +msgstr "%s: remover %s? " + +#: src/remove.c:639 +#, fuzzy, c-format +msgid "removed %s\n" +msgstr "removendo %s\n" + +# , c-format +#: src/remove.c:654 src/remove.c:1059 +#, fuzzy, c-format +msgid "removed directory: %s\n" +msgstr "não é possível criar o diretório %s" + +# , c-format +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, fuzzy, c-format +msgid "cannot remove directory %s" +msgstr "não é possível criar o diretório %s" + +# , c-format +#: src/remove.c:815 +#, fuzzy, c-format +msgid "cannot open directory %s" +msgstr "não é possível criar o diretório %s" + +# , c-format +#: src/remove.c:896 src/remove.c:1002 +#, fuzzy, c-format +msgid "cannot chdir from %s to %s" +msgstr "não pode executar 'chdir' sobre `%s'" + +#: src/remove.c:904 +#, fuzzy, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +"%s: AVISO: Estrutura de diretórios circular.\n" +"Isto quer dizer quase com certeza que o sistema de arquivos\n" +"está corrompido.\n" +"NOTIFIQUE O ADMINISTRADOR DO SISTEMA.\n" +"Os próximos dois diretórios tem o mesmo número de inode:\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "não é possível remover `.' ou `..'" + +#: src/rm.c:60 +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "" + +# , c-format +#: src/rm.c:99 src/touch.c:244 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "Uso: %s [OPÇÃO]... [ARQUIVO]...\n" + +#: src/rm.c:100 +#, fuzzy +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Remover (link) do(s) ARQUIVO(s).\n" +"\n" +" -d, --directory remover diretório, mesmo que\n" +" não vazio (só superusuário)\n" +" -f, --force ignorar arquivos não existentes, nunca perguntar\n" +" -i, --interactive perguntar antes de qualquer remoção\n" +" -r, -R, --recursive apagar o conteúdos dos diretórios recursivamente\n" +" -v, --verbose explicar o que se está sendo feito\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar informação sobre versão e sair\n" +"\n" +"Para remover um arquivo que o nome inicia-se com um `-', por exemplo `-" +"foo',\n" +"use um destes comandos:\n" +" %s -- -foo\n" +" %s ./-foo\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" + +# , c-format +#: src/rmdir.c:116 src/rmdir.c:217 +#, fuzzy, c-format +msgid "removing directory, %s" +msgstr "não é possível criar o diretório %s" + +# , c-format +#: src/rmdir.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "Uso: %s [OPÇÃO]... [ARQUIVO]...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" + +#: src/rmdir.c:154 +#, fuzzy +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +"Remove o(s) DIRETÓRIO(s), se eles estiverem vazios.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignora cada falha causada somente se o diretório não \n" +" está vazio\n" +" -p, --parents remove DIRETÓRIO, depois tenta remover cada diretório\n" +" componente da rota. Ex. `rmdir -p a/b/c é similar\n" +" a `rmdir a/b/c a/b a'.\n" +" --verbose mostra um diagnóstico para cada diretório processado\n" +" vazios\n" +" --help mostrar esta ajuda e sai\n" +" --version mostrar informação sobre versão e sai\n" + +# , c-format +#: src/seq.c:82 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"Uso: %s [OPÇÃO]... [ENTRADA]... (sem a opção -G)\n" +" ou: %s [OPÇÃO]... [ENTRADA [SAÍDA]]\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" + +#: src/seq.c:96 +#, fuzzy, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" +"Mostra números de PRIMEIRO até ÚLTIMO, usando INCREMENTO.\n" +"\n" +" -f, --format FORMATO utilizar o estilo de FORMATO do printf(3) \n" +" (por default: %%g)\n" +" -s, --separator STRING usar STRING para separar números\n" +" (por default: \\n)\n" +" -w, --equal-width tornar a largura igual acrescentando zeros no \n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" +" fim\n" +"\n" +"Se são omitidos COMEÇO ou INCREMENTO, o default será 1. \n" +"COMEÇO, INCREMENTO, e ÚLTIMO são interpretados como valores em ponto " +"flutuante.\n" +"INCREMENTO deve ser positivo se COMEÇO for menor que ÚLTIMO, e\n" +"negativo caso contrário. Quando indicado, o argumento FORMATO deve conter\n" +"exatamente um de %%e, %%f ou %%g - argumentos de formatação ponto \n" +"flutuante do printf.\n" + +# , c-format +#: src/seq.c:119 +#, fuzzy, c-format +msgid "invalid floating point argument: %s" +msgstr "número de começo de linha inválido: `%s'" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" +"quando o valor inicial é maior que o limite,\n" +"o incremento deve ser positivo" + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" +"quando o valor inicial é menor que o limite,\n" +"o argumento deve ser positivo" + +# , c-format +#: src/seq.c:423 +#, fuzzy, c-format +msgid "invalid format string: `%s'" +msgstr "tipo de cadeia inválida `%s'" + +#: src/seq.c:445 +#, fuzzy +msgid "format string may not be specified when printing equal width strings" +msgstr "o tipo não pode ser especificado quando se depura cadeias" + +# , c-format +#: src/shred.c:160 +#, fuzzy, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "Uso: %s [OPÇÃO] [ARQUIVO]...\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" + +#: src/shred.c:174 +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" + +#: src/shred.c:808 +#, fuzzy, c-format +msgid "%s: cannot rewind" +msgstr "não consigo executar %s" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "%s: passou %lu/%lu (%s)..." + +# , c-format +#: src/shred.c:868 +#, fuzzy, c-format +msgid "%s: error writing at offset %s" +msgstr "erro escrevendo %s" + +#: src/shred.c:897 +#, fuzzy, c-format +msgid "%s: file too large" +msgstr "%s: arquivo muito grande" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "%s: pass %lu/%lu (%s)...%s" + +#: src/shred.c:936 +#, fuzzy, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "%s: passou %lu/%lu (%s)...%s/%s" + +# , c-format +#: src/shred.c:1195 +#, fuzzy, c-format +msgid "%s: invalid file type" +msgstr "%s: número de linhas inválido" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s: arquivo tem tamanho negativo" + +#: src/shred.c:1265 +#, fuzzy, c-format +msgid "%s: error truncating" +msgstr "%s: arquivo truncado" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "" +"%s: não foi possível fragmentar (shred) descritor de arquivo (append-only)" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "removendo %s" + +# , c-format +#: src/shred.c:1412 +#, fuzzy, c-format +msgid "%s: renamed to %s" +msgstr "%s: erro de leitura" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s: removido" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "não foi possível remover `%s'" + +# , c-format +#: src/shred.c:1551 +#, fuzzy, c-format +msgid "%s: invalid number of passes" +msgstr "%s: número de segundos inválido" + +# , c-format +#: src/shred.c:1568 +#, fuzzy, c-format +msgid "%s: invalid file size" +msgstr "%s: número de linhas inválido" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "" + +#: src/sleep.c:52 +#, fuzzy, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" +"Uso: %s NÚMERO[SUFIXO]...\n" +" ou: %s OPÇÃO\n" +"Parar por NÚMERO segundos.\n" +"SUFIXO pode ser 's' para indicar segundos, 'm' para minutos, 'h' para " +"horas \n" +"ou 'd' para dias. Ao contrário de outras implementações que requerem que\n" +"NÚMERO seja um inteiro, aqui NÚMERO pode ser qualquer número de ponto\n" +"flutuante.\n" +"\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" + +# , c-format +#: src/sleep.c:155 +#, fuzzy, c-format +msgid "invalid time interval `%s'" +msgstr "número de campo inválido: `%s'" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "não é possível ler o relógio real" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" + +#: src/sort.c:289 +#, fuzzy +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" +"Escreve uma concatenação classificada do(s) ARQUIVO(s) na saída padrão.\n" +"\n" +"Opções de classificação:\n" +"\n" +" -b, --ignore-leading-blanks ignora espaços precedentes\n" +" -d, --dictionary-order considera apenas espaços e " +"caracteres alfanuméricos\n" +" -f, --ignore-case ignora caixa\n" +" -g, --general-numeric-sort compara de acordo com um valor numérico geral\n" +" -i, --ignore-nonprinting considera apenas caracteres imprimíveis\n" +" -M, --month-sort compara (desconhecido) < `JAN' < ... < `DEZ'\n" +" -n, --numeric-sort compara de acordo com o valor númerico da " +"string\n" +" -r, --reverse reverte o resultado das comparações\n" +"\n" + +#: src/sort.c:294 +#, fuzzy +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" +"Escreve uma concatenação classificada do(s) ARQUIVO(s) na saída padrão.\n" +"\n" +"Opções de classificação:\n" +"\n" +" -b, --ignore-leading-blanks ignora espaços precedentes\n" +" -d, --dictionary-order considera apenas espaços e " +"caracteres alfanuméricos\n" +" -f, --ignore-case ignora caixa\n" +" -g, --general-numeric-sort compara de acordo com um valor numérico geral\n" +" -i, --ignore-nonprinting considera apenas caracteres imprimíveis\n" +" -M, --month-sort compara (desconhecido) < `JAN' < ... < `DEZ'\n" +" -n, --numeric-sort compara de acordo com o valor númerico da " +"string\n" +" -r, --reverse reverte o resultado das comparações\n" +"\n" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" + +#: src/sort.c:324 +#, fuzzy +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" +"POS é da forma F[.C][OPÇÕES], onde F é o número do campo e C a posição do\n" +"caractere no campo, ambos contados desde um com -k, e desde zero da forma\n" +"obsoleta. OPÇÕES se compõem de uma ou mais opções (de uma letra) de\n" +"ordenação, as quais substituem as opções globais de classificação para\n" +"aquela chave. Se nenhuma chave for fornecida, usa a linha inteira como\n" +"chave.\n" +"\n" +"TAMANHO pode ser seguido pelos seguintes prefixos multiplicadores:\n" +"%% 1%% de memória, b 1, k 1024 (padrão), e assim por diante com\n" +"M, G, T, P, E, Z e Y.\n" +"\n" +"Sem ARQUIVO, ou quando ARQUIVO for -, lê da entrada padrão.\n" +"\n" +"*** ATENÇÃO ***\n" +"A localização especificada no ambiente afeta a ordem de classificação.\n" +"Defina LC_ALL=C para obter a classificação tradicional que usa valores\n" +"nativos de bytes.\n" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" + +# , c-format +#: src/sort.c:444 +msgid "cannot create temporary file" +msgstr "impossível criar arquivo temporário" + +#: src/sort.c:467 +msgid "open failed" +msgstr "erro abrindo arquivo" + +#: src/sort.c:487 src/sort.c:2496 +msgid "close failed" +msgstr "erro fechando arquivo" + +#: src/sort.c:495 +msgid "write failed" +msgstr "erro de escrita" + +#: src/sort.c:641 +msgid "sort size" +msgstr "classificar tamanho" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "falha no stat" + +#: src/sort.c:972 +msgid "read failed" +msgstr "falha na leitura" + +# , c-format +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "%s: %s:%s: desordenado: " + +# , c-format +#: src/sort.c:1574 +msgid "standard error" +msgstr "erro padrão" + +# , c-format +#: src/sort.c:2032 +#, c-format +msgid "%s: invalid field specification `%s'" +msgstr "%s: especificação de campo inválida `%s'" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "%s: countagem `%.*s' muito grande" + +# , c-format +#: src/sort.c:2064 +#, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "%s: contagem inválida no início de `%s'" + +#: src/sort.c:2298 +msgid "invalid number after `-'" +msgstr "número inválido após `-'" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +msgid "invalid number after `.'" +msgstr "número inválido após `.'" + +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "caracter perdido no campo spec" + +#: src/sort.c:2338 +msgid "invalid number at field start" +msgstr "número inválido no início do campo" + +# , c-format +#: src/sort.c:2342 src/sort.c:2370 +msgid "field number is zero" +msgstr "o número do campo é zero" + +#: src/sort.c:2351 +msgid "character offset is zero" +msgstr "o offset de caracteres é zero" + +#: src/sort.c:2366 +msgid "invalid number after `,'" +msgstr "número inválido após `.'" + +# , c-format +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "tabulação multicaracter `%s'" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "operando extra `%s' não é permitido com -c" + +# , c-format +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "Uso: %s [OPÇÃO] [ARQUIVO [PREFIXO]]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" + +#: src/split.c:108 +#, fuzzy, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" +"Divide ARQUIVO em arquivos menores de tamanho fixo e os nomeia PREFIXOaa, " +"PREFIXOab...\n" +". O PREFIXO default é x.Sem informar ARQUIVO, ou se ARQUIVO é `-', lê da " +"entrada padrão\n" +"\n" +" -b, --bytes=BYTES escreve BYTES bytes em cada arquivo de saída\n" +" -C, --line-bytes=BYTES escreve um máximo de BYTES bytes sem quebrar " +"linhas\n" +" -l, --lines=NÚMERO escreve NÚMERO linhas em cada arquivo de saída\n" +" -NÚMERO o mesmo que -l NÚMERO\n" +" --verbose mostra um diagnóstico na saída de erro padrão\n" +" antes de abrir cada arquivo\n" +" --help mostra esta ajuda e finaliza\n" +" --version informa a versão e finaliza\n" +"\n" +"BYTES pode ter um fator indicado com o sufixo: b para 512, k para 1k,\n" +"m para 1 mega.\n" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "" + +# , c-format +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "criando arquivo `%s'\n" + +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "não é possível sub-dividir em mais de uma forma" + +# , c-format +#: src/split.c:394 +#, fuzzy, c-format +msgid "%s: invalid suffix length" +msgstr "%s: número de linhas inválido" + +# , c-format +#: src/split.c:408 src/split.c:434 +#, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: número de bytes inválido" + +# , c-format +#: src/split.c:421 +#, c-format +msgid "%s: invalid number of lines" +msgstr "%s: número de linhas inválido" + +# , c-format +#: src/split.c:470 +#, fuzzy, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "atenção: largura %lu inválida; será usado %d em seu lugar" + +#: src/split.c:483 +msgid "invalid number" +msgstr "número inválido" + +# , c-format +#: src/stat.c:326 +#, fuzzy +msgid "*** invalid date/time ***" +msgstr "número de campo inválido: `%s'" + +# , c-format +#: src/stat.c:608 +#, fuzzy, c-format +msgid "cannot read file system information for %s" +msgstr "não é possível criar o diretório %s" + +# , c-format +#: src/stat.c:684 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "Uso: %s [OPÇÃO] [ARQUIVO]...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" +"Uso : %s [-F dispositivo] [--file=dispositivo] [CONFIGURAÇÃO]...\n" +" ou: %s [-F dispositivo] [--file=dispositivo] [-a|--all]\n" +" ou: %s [-F dispositivo] [--file=dispositivo] [-g|--save]\n" + +#: src/stty.c:504 +#, fuzzy +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" +"Mostrar ou alterar as características do terminal.\n" +"\n" +" -a, --all mostrar todas as características num formato legível por\n" +" humanos\n" +" -g, --save mostrar todas as características num formato legível \n" +" pelo stty\n" +" -F, --file=DISP abre e usa o dispositivo especificado ao invés da entrada " +"padrão\n" +" --help mostrar esta ajuda e sai\n" +" --version mostrar a informação de versão e sai\n" +"\n" +"Um '-' opcional antes de PARÂMETRO indica negação. Um '*' marca parâmetros \n" +"não-POSIX. O sistema onde o stty é executado determina quais as " +"características \n" +"que estão disponíveis.\n" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" + +#: src/stty.c:570 +#, fuzzy +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" +"\n" +"Parâmetros de controle:\n" +" [-]clocal desativar os sinais de controle do modem\n" +" [-]cread permitir a entrada de dados ser recebida\n" +"* [-]crtscts permitir negociação RTS/CTS\n" +" csN colocar em N bits o tamanho dos caracteres, N em [5..8]\n" +" [-]cstopb usar dois stop bits por caractere (um com `-')\n" +" [-]hup enviar um sinal de 'desligar' quando o último processo\n" +" fechar o tty\n" +" [-]hupcl o mesmo que [-]hup\n" +" [-]parenb gerar um bit de paridade na saída e esperar um bit de\n" +" paridade na entrada\n" +" [-]parodd colocar a paridade ímpar (mesmo com `-')\n" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:608 +#, fuzzy +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" +"\n" +"Parâmetros de saída:\n" +"* bsN estilo do temporizador do backspace, N em [0..1]\n" +"* crN estilo do temporizador do carriage return, N em [0..3]\n" +"* ffN estilo do temporizador do form feed, N em [0..1]\n" +"* nlN estilo do temporizador do newline, N em [0..1]\n" +"* [-]ocrnl traduzir carriage return para newline\n" +"* [-]ofdel usar caracteres de delete para preencher em vez de null \n" +"* [-]ofill usar caractere fill (padding) em vez de esperar por " +"temporizador\n" +"* [-]olcuc traduzir minúsculas para maiúsculas\n" +"* [-]onlcr traduzir newline para carriage return-newline\n" +"* [-]onlret newline faz um carriage return\n" +"* [-]onocr não imprimir carriage return na primeira coluna\n" +" [-]opost pós-processar a saída\n" +"* tabN estilo do temporizador do tab horizontal, N em [0..3]\n" +"* tabs o mesmo que tab0\n" +"* -tabs o mesmo que tab3\n" +"* vtN estilo do temporizador do tab vertical, N em [0..1]\n" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" +"\n" +"Trata o tty ligado a entrada default (stdin). Sem argumentos,\n" +"imprime o taxa em baud, a disciplina da linha e diferenças em relação a " +"stty\n" +"sane. Nos parâmetros, CHAR é aceito literalmente ou codificado como em ^C,\n" +"0x37, 0177 ou 127; valores especiais ^- ou undef são utilizados para \n" +"desabilitar caracteres especiais.\n" + +#: src/stty.c:787 +#, fuzzy +msgid "only one device may be specified" +msgstr "somente um argumento pode ser especificado" + +#: src/stty.c:882 +#, fuzzy +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "as opções --string e --check são mutuamente excludentes" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "ao especificar um estilo de saída, não se pode alterar um 'modo'" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "%s: não é possível reinicializar modo não-blocante" + +# , c-format +#: src/stty.c:957 src/stty.c:1064 +#, fuzzy, c-format +msgid "invalid argument `%s'" +msgstr "argumento inválido %s para '%s'" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, fuzzy, c-format +msgid "missing argument to `%s'" +msgstr "Argumentos ambíguos %s para `%s'" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "%s: não é possível realizar todas as opções pedidas" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "novo_modo: modo\n" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "%s: Sem informação de tamanho para este dispositivo" + +# , c-format +#: src/stty.c:1944 +#, fuzzy, c-format +msgid "invalid integer argument `%s'" +msgstr "incremento de linha não válido: `%s'" + +#: src/su.c:289 +msgid "Password:" +msgstr "Password:" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "getpass: não consigo abrir /dev/tty" + +#: src/su.c:350 +#, fuzzy +msgid "cannot set groups" +msgstr "não pode ignorar usuário e grupo" + +#: src/su.c:354 +#, fuzzy +msgid "cannot set group id" +msgstr "não pode ignorar usuário e grupo" + +#: src/su.c:356 +#, fuzzy +msgid "cannot set user id" +msgstr "não pode ignorar usuário e grupo" + +# , c-format +#: src/su.c:437 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "Uso: %s [OPÇÃO]... [ARQUIVO]...\n" + +#: src/su.c:438 +#, fuzzy +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" +"Altera as identificações efetivas de usuário e de grupo daquele USUÁRIO.\n" +"\n" +" -, -l, --login tornar a shell numa shell de login\n" +" -c, --command=COMANDO envia um único COMANDO à \"shell\", usando -" +"c\n" +" -f, --fast envia um -f à shell (para csh ou tcsh)\n" +" -m, --preserver-environment não altera os valores das variáveis de " +"ambiente\n" +" -p o mesmo que -m\n" +" -s, --shell=SHELL executar SHELL se /etc/shells o permitir\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" +"\n" +"Um único '-' implica -l. Se USUÁRIO não for especificado, assume-se root.\n" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "usuário %s não existe" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "senha incorreta" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "usando a shell restrita %s" + +# , c-format +#: src/su.c:580 +#, fuzzy, c-format +msgid "warning: cannot change directory to %s" +msgstr "não é possível criar o diretório %s" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "" + +#: src/sum.c:64 +#, fuzzy +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" +"Mostra a soma de verificação (checksum) e o número de blocos para cada " +"ARQUIVO.\n" +"\n" +" -r usar o algoritmo de BSD, com blocos de 1K\n" +" -s, --sysv usar o algoritmo de System V, com blocos de 512 bytes\n" +" --help mostrar esta ajuda e sair\n" +" --version informar a versão e sair\n" +"\n" +"Sem informar ARQUIVO, ou se ARQUIVO é `-', lê da entrada padrão\n" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" + +#: src/sync.c:70 src/tty.c:112 +#, fuzzy +msgid "ignoring all arguments" +msgstr "muitos argumentos" + +#: src/sys2.h:492 +#, fuzzy +msgid " --help display this help and exit\n" +msgstr "" +"Mostra o CRC e o número de bytes de cada ARQUIVO.\n" +"\n" +" --help mostra esta ajuda e finaliza\n" +" --version informa a versão e finaliza\n" + +#: src/sys2.h:494 +#, fuzzy +msgid " --version output version information and exit\n" +msgstr "" +"Mostra o CRC e o número de bytes de cada ARQUIVO.\n" +"\n" +" --help mostra esta ajuda e finaliza\n" +" --version informa a versão e finaliza\n" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tac.c:139 +#, fuzzy +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" +"Escreve cada ARQUIVO na saída padrão começando pela última linha\n" +"Sem informar ARQUIVO, ou se ARQUIVO é `-', lê da entrada padrão\n" +"\n" +" -b, --before colocar o separador antes de cada linha, em vez " +"de\n" +" colocar depois\n" +" -r, --regex interpretar o separador como uma expressão " +"regular\n" +" -s, --separator=STRING usar STRING como separador, em vez de um salto de\n" +" linha\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a versão e sair\n" +"\n" + +# , c-format +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "stdin: erro de leitura" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "o separador não pode ser nulo" + +#: src/tail.c:49 +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "" + +#: src/tail.c:238 +#, fuzzy, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Mostra as primeiras 10 linhas de cada ARQUIVO na saída padrão.\n" +"Se especificados vários ARQUIVO(s), mostra o nome de cada um.\n" +"Sem ARQUIVO especificado, ou ARQUIVO é `-', lê da entrada padrão.\n" +"\n" +" -c, --bytes=TAMANHO mostra os primeiros TAMANHO bytes\n" +" -n, --lines=N mostra as N primeiras linhas em vez de 10\n" +" -q, --quiet, --silent no mostra as início com o nome do arquivo\n" +" -v, --verbose mostra sempre os inícios com nomes dos arquivos\n" +" --help mostra esta ajuda e finaliza\n" +" --version informa a versão e finaliza\n" +"\n" +"TAMANHO pode ter um sufixo: `b' para 512, `k' para 1K, `m' para 1Meg.\n" +"Se -VALOR for informado como primeira opção, lê -c VALOR se um dos \n" +"sufixo bkm seguir concatenado a VALOR, ou lê -n VALOR\n" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" + +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "fechando %s (fd=%d)" + +# , c-format +#: src/tail.c:391 +#, fuzzy, c-format +msgid "%s: cannot seek to offset %s" +msgstr "não pode executar a função 'ioctl' sobre `%s'" + +# , c-format +#: src/tail.c:395 +#, fuzzy, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "não é possível criar o diretório %s" + +#: src/tail.c:400 +#, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "`%s' tornou-se inacessível" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "" +"`%s' foi substituido por um arquivo que não pode ser concatenado; desistindo " +"desse nome." + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "%s tornou-se acessível" + +# , c-format +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "%s: apareceu; localizando o fim de um novo arquivo" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "`%s' foi substituido; localizando o fim de um arquivo" + +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "%s: arquivo truncado" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "nenhum aquivo restante" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "%s: impossivel seguir ate o final desta arquivo; desistindo deste nome" + +# , c-format +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "%c: sufixo inválido em uma opção obsoleta" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"argumentos em excesso; ao usar a sintaxe de opção obsoleta (%s) do tail\n" +"não pode haver mais de um argumento de arquivo. Use a opção equivalente -n " +"ou -c" + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"atenção: Não é portável usar dois ou mais argumentos de arquivos com " +"sintaxe\n" +"obsoleta (%s). Use as equivalentes -n ou -c" + +# , c-format +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "opção `%s' é obsoleta; use `%s-%c %.*s'" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "%s é maior que o tamanho máximo de arquivo neste sistema" + +# , c-format +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "%s: número máximo de bytes inválido" + +# , c-format +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "" +"%s: número máximo de linhas inválido para mudanças consecutivas no tamanho" + +# , c-format +#: src/tail.c:1534 +#, c-format +msgid "%s: invalid PID" +msgstr "%s: PID inválido" + +# , c-format +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: número de segundos inválido" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "atenção: --retry é util somente quando for localizado pelo nome" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "atenção: PID ignorado; --pid=PID é útil somente quando localizado" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "atenção: --pid=PID não é suportado neste sistema" + +#: src/tee.c:33 +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "Mike Parker, Richard M. Stallman e David MacKenzie" + +#: src/tee.c:64 +#, fuzzy +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" +"Copia a entrada padrão (stdin) para um ARQUIVO, e também para a\n" +"saída padrão (stdout).\n" +"\n" +" -a, --append acrescenta aos ARQUIVO(s) passados, não escreve " +"por\n" +" cima\n" +" -i, --ignore-interrupts ignora os sinais de interrupção\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "argumento esperado\n" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "esperado uma expressão inteira %s\n" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "')' esperado\n" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "')' esperado, encontrei %s\n" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "%s: operador unário esperado\n" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "%s: operador binário esperado\n" + +#: src/test.c:424 +msgid "before -lt" +msgstr "antes de -lt" + +#: src/test.c:432 +msgid "after -lt" +msgstr "depois de -lt" + +#: src/test.c:446 +msgid "before -le" +msgstr "antes de -le" + +#: src/test.c:453 +msgid "after -le" +msgstr "depois de -le" + +#: src/test.c:469 +msgid "before -gt" +msgstr "antes de -gt" + +#: src/test.c:476 +msgid "after -gt" +msgstr "depois de -gt" + +#: src/test.c:490 +msgid "before -ge" +msgstr "antes de -ge" + +#: src/test.c:497 +msgid "after -ge" +msgstr "depois de -ge" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "-nt não aceita -l\n" + +#: src/test.c:526 +msgid "before -ne" +msgstr "antes de -ne" + +#: src/test.c:533 +msgid "after -ne" +msgstr "depois de -ne" + +#: src/test.c:549 +msgid "before -eq" +msgstr "antes de -eq" + +#: src/test.c:556 +msgid "after -eq" +msgstr "depois de -eq" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "-ef não aceita -l\n" + +#: src/test.c:586 +msgid "-ot does not accept -l\n" +msgstr "-ot não aceita -l\n" + +#: src/test.c:593 +msgid "unknown binary operator" +msgstr "operador binário desconhecido" + +#: src/test.c:781 +msgid "after -t" +msgstr "depois de -t" + +# , c-format +#: src/test.c:979 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s [ARQUIVO]...\n" +" ou: %s [OPÇÃO]\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" + +#: src/test.c:1009 +#, fuzzy +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" +"\n" +" ( EXPRESSÃO ) EXPRESSÃO é verdadeira\n" +" ! EXPRESSÃO EXPRESSÃO é falsa\n" +" EXPRESSÃO1 -a EXPRESSÃO2 Se EXPRESSÃO1 e EXPRESSÃO2 forem " +"verdadeiras\n" +" EXPRESSÃO1 -o EXPRESSÃO2 Se EXPRESSÃO1 ou EXPRESSÃO2 " +"forem verdadeiras\n" +"\n" +" [-n] STRING o comprimento de STRING é diferente de zero\n" +" -z STRING o comprimento de STRING é zero\n" +" STRING1 = STRING2 as STRING's são iguais\n" +" STRING1 != STRING2 as STRING's são diferentes\n" +"\n" +" INTEIRO1 -eq INTEIRO2 INTEIRO1 é igual a INTEIRO2\n" +" INTEIRO1 -ge INTEIRO2 INTEIRO1 é maior ou igual a INTEIRO2\n" +" INTEIRO1 -gt INTEIRO2 INTEIRO1 é maior que INTEIRO2\n" +" INTEIRO1 -le INTEIRO2 INTEIRO1 é menor ou igual a INTEIRO2\n" +" INTEIRO1 -lt INTEIRO2 INTEIRO1 é menor que INTEIRO2\n" +" INTEIRO1 -ne INTEIRO2 INTEIRO1 é diferente de INTEIRO2\n" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" +"\n" +"Lembre-se que os parênteses têm que ser \"escapados\" (por exemplo, usando \n" +"contra-barras) antes, para ser passado para shells.\n" +"INTEIRO pode também ser -l STRING, que retorna o comprimento de STRING.\n" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "CORRIJA-ME: ksb e mjb" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "falta `]'\n" + +#: src/test.c:1125 +msgid "too many arguments\n" +msgstr "muitos argumentos\n" + +#: src/touch.c:39 +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "" + +# , c-format +#: src/touch.c:164 src/touch.c:179 +#, c-format +msgid "creating %s" +msgstr "criando %s" + +# , c-format +#: src/touch.c:222 +#, fuzzy, c-format +msgid "cannot touch %s" +msgstr "não pode executar a função 'ioctl' sobre `%s'" + +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "configurando data de %s" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" + +# , c-format +#: src/touch.c:311 src/touch.c:331 +#, c-format +msgid "invalid date format %s" +msgstr "formato de data inválido %s" + +#: src/touch.c:355 +msgid "cannot specify times from more than one source" +msgstr "impossível especificar horas de mais de uma fonte" + +# , c-format +#: src/touch.c:378 +#, fuzzy, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "atenção: largura %lu inválida; será usado %d em seu lugar" + +#: src/touch.c:399 +msgid "file arguments missing" +msgstr "argumentos de arquivo faltando" + +# , c-format +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "Uso: %s [OPÇÃO]... CONJUNTO1 [CONJUNTO2]\n" + +#: src/tr.c:331 +#, fuzzy +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" +"Traduz, comprime e/ou apaga caracteres da entrada padrão, escrevendo\n" +"o resultado na saída padrão.\n" +"\n" +" -c, --complement operar sobre o complemento (sobre cada caractere\n" +" que no coincida) de CONJUNTO1\n" +" -d, --delete remover caracteres de CONJUNTO1, não traduzindo\n" +" -s, --squeeze-repeats substituir sequências de caracteres iguais por " +"uma só\n" +" -t, --truncate-set1 truncar CONJUNTO1 na largura de CONJUNTO2\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a versão e sair\n" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" + +#: src/tr.c:379 +#, fuzzy +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" +"\n" +"A tradução é feita se -d não é dado e ambos os CONJUNTOs são informados.\n" +"-t somente pode ser usado quando se estiver traduzindo.\n" +"CONJUNTO2 é estendido à largura de CONJUNTO1, repetindo seus últimos\n" +"caracteres tantas vezes como seja necessário. Os caracteres em excesso de\n" +"CONJUNTO2 são ignorados. Somente se garante que [:lower:] e [:upper:]\n" +"sejam expandidos em ordem ascendente; se se usa em CONJUNTO2 ao traduzir,\n" +"somente se podem usar em pares, para especificar conversão para maiúsculas.\n" +"-s usa CONJUNTO1 se não se está traduzindo nem apagando; caso contrário, a\n" +"compressão usa CONJUNTO2 depois da tradução ou remoção.\n" + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" + +#: src/tr.c:391 +#, fuzzy +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" +"\n" +"A tradução é feita se -d não é dado e ambos os CONJUNTOs são informados.\n" +"-t somente pode ser usado quando se estiver traduzindo.\n" +"CONJUNTO2 é estendido à largura de CONJUNTO1, repetindo seus últimos\n" +"caracteres tantas vezes como seja necessário. Os caracteres em excesso de\n" +"CONJUNTO2 são ignorados. Somente se garante que [:lower:] e [:upper:]\n" +"sejam expandidos em ordem ascendente; se se usa em CONJUNTO2 ao traduzir,\n" +"somente se podem usar em pares, para especificar conversão para maiúsculas.\n" +"-s usa CONJUNTO1 se não se está traduzindo nem apagando; caso contrário, a\n" +"compressão usa CONJUNTO2 depois da tradução ou remoção.\n" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" +"atenção: a sequência de escape octal ambígua \\%c%c%c\n" +"está sendo interpretada como a sequência de 2 bytes \\0%c%c, `%c'" + +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "sequência de escape inválida no final da string" + +# , c-format +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "sequência de escape inválida `\\%c'" + +# , c-format +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "os extremos do intervalo em `%s-%s' estão em ordem inversa" + +# , c-format +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "número de repetições `%s' inválido na especificação [c*n]" + +# , c-format +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "nome de classe de caracteres faltando `[::]'" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "caracter de classe de equivalência faltando `[==]'" + +# , c-format +#: src/tr.c:1025 +#, c-format +msgid "invalid character class `%s'" +msgstr "classe de caracteres inválida `%s'" + +# , c-format +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "%s: o operador de equivalência de classe deve ser só um caractere" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "o operador de repetição [c*] não pode aparecer em string1" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "só um operador de repetição [c*] pode aparecer em string2" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "as expressões [=c=] não podem aparecer em string2 ao traduzir" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "se não se está truncando conjunto1, string2 deve ser não vazia" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" +"ao traduzir com classes de caracteres complementares (que não coincidem),\n" +"string2 deve mapear todos os caracteres do domínio a um só" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" +"quando traduzindo, as únicas classes de caracteres que podem aparecer em\n" +"string2 são 'upper' e 'lower'" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "as expressões [c*] só podem aparecer em string2 quando traduzindo" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "duas strings devem ser fornecidas quando traduzindo" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "" +"duas strings devem ser fornecidas quando removendo/deletando repetições" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" +"somente uma string deve ser fornecida quando removendo sem\n" +"comprimir repetições" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "pelo menos uma string deve ser fornecida quando se comprime repetições" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "as construções [:upper:] e/ou [:lower:] estão desalinhadas" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" +"correspondência inválida; quando se traduz, qualquer construção [:lower] ou\n" +"[:upper:] na string1 deve estar alinhada com a correspondente\n" +"construção ([:upper:] ou [:lower:], respectivamente) em string2" + +#: src/true.c:34 +#, fuzzy, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Uso: %s [ignora parâmetros da linha de comando}\n" +" ou: %s OPÇÃO\n" +"Sai com um estado indicando sucesso.\n" +"\n" +"As opções abaixo não podem ser abreviadas.\n" +"\n" +" --help mostra esta ajuda e sai\n" +" --version mostra a informação de versão e sai\n" + +#: src/tsort.c:97 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Uso: %s [OPÇÃO] [ARQUIVO]\n" +"Escreve uma lista consistente totalmente ordenada com uma ordenação parcial " +"no arquivo\n" +"Sem informar ARQUIVO, ou se ARQUIVO é `-', lê da entrada padrão\n" +"\n" +" --help mostra esta ajuda e finaliza\n" +" --version informa a versão e finaliza\n" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "%s: entrada contem um loop:" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "somente um argumento pode ser especificado" + +#: src/tty.c:63 +#, fuzzy +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" +"Mostra o nome de arquivo do terminal conectado à entrada padrão (stdin).\n" +"\n" +" -s, --silent, --quiet não mostra nada, só retorna um status de término\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a informação de versão e sair\n" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "não é um tty" + +#: src/uname.c:111 +#, fuzzy +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" +"Mostra alguma informação sobre o sistema. Sem passar OPÇÃO, tem o mesmo \n" +"significado que -s.\n" +"\n" +" -a, --all mostra todas as informações\n" +" -m, --machine mostra o tipo da máquina (hardware)\n" +" -n, --nodename mostra o nome do nó da máquina na rede\n" +" -r, --release mostra a versão do sistema operacional\n" +" -s, --sysname mostra o nome do sistema operacional\n" +" -v mostra a data em que o sistema operacional foi criado\n" +" --help mostra esta ajuda e sai\n" +" --version mostra a informação de versão e sai\n" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" + +# , c-format +#: src/uname.c:226 +#, fuzzy +msgid "cannot get system name" +msgstr "impossível criar arquivo temporário" + +#: src/unexpand.c:379 +#, fuzzy +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Converte os espaços de cada ARQUIVO em tabulações, escrevendo o\n" +"Sem informar ARQUIVO, ou se ARQUIVO é `-', lê da entrada padrão\n" +"\n" +" -a, --all converter todos os espaços em branco, não só os " +"iniciais\n" +" -t, --tabs=NÚMERO usar N espaços em cada tabulação, em vez de 8\n" +" -t, --tabs=LISTA usar a LISTA de posições separadas por vírgulas para\n" +" definir as posições de tabulação\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a versão e sair\n" +"\n" +"Em vez de `-t NÚMERO' ou `-t LISTA' pode se usar -NÚMERO ou -LISTA.\n" + +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" + +# , c-format +#: src/unexpand.c:464 +#, fuzzy +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "atenção: largura %lu inválida; será usado %d em seu lugar" + +# , c-format +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "Uso: %s [OPÇÃO]... [ENTRADA [SAÍDA]]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr "" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" + +# , c-format +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "erro lendo %s" + +# , c-format +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "erro escrevendo %s" + +#: src/uniq.c:433 src/uniq.c:450 +#, fuzzy, c-format +msgid "extra operand `%s'" +msgstr "operando extra `%s' não é permitido com -c" + +# , c-format +#: src/uniq.c:473 src/uniq.c:498 +#, fuzzy +msgid "invalid number of fields to skip" +msgstr "número inválido de campos para ignorar: `%s'" + +# , c-format +#: src/uniq.c:507 +#, fuzzy +msgid "invalid number of bytes to skip" +msgstr "número inválido de caracteres para ignorar: `%s'" + +#: src/uniq.c:516 +#, fuzzy +msgid "invalid number of bytes to compare" +msgstr "número inválido de bytes para comparar: `%s'" + +# , c-format +#: src/uniq.c:530 +#, fuzzy, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "atenção: largura %lu inválida; será usado %d em seu lugar" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "" +"não faz sentido imprimir todas as linhas duplicadas e repetir contagens" + +# , c-format +#: src/unlink.c:51 +#, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s ARQUIVO\n" +" ou: %s OPÇÃO\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" + +# , c-format +#: src/unlink.c:99 +#, fuzzy, c-format +msgid "cannot unlink %s" +msgstr "não pode executar a função 'ioctl' sobre `%s'" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "não consegui obter a data de boot" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr " %2d:%02d%s no ar " + +#: src/uptime.c:140 +msgid "am" +msgstr "am" + +#: src/uptime.c:140 +msgid "pm" +msgstr "pm" + +#: src/uptime.c:142 +#, fuzzy, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "dia" +msgstr[1] "dia" + +#: src/uptime.c:144 +#, fuzzy, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "usuário inválido" +msgstr[1] "usuário inválido" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr ", média de carga: %.2f" + +# , c-format +#: src/uptime.c:191 src/users.c:118 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "Uso: %s [OPÇÃO]... [ARQUIVO]...\n" + +#: src/uptime.c:192 +#, fuzzy, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Mostra a data corrente, o tempo que o sistema está ativo,\n" +"o número de usuários no sistema e a média do número de processos\n" +"na fila do sistema a 1, 5 e 15 minutos.\n" +"Se ARQUIVO não for especificado, use %s. %s como ARQUIVO é comum.\n" +"\n" +" --help mostrar esta ajuda\n" +" --version mostrar informação de versão e sai\n" + +#: src/users.c:35 +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "" + +#: src/users.c:119 +#, fuzzy, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Mostra quem está atualmente conectado de acordo com ARQUIVO.\n" +"Se FILE não for especificado, usa %s. %s como ARQUIVO é comum.\n" +"\n" +" --help mostrar esta ajuda\n" +" --version mostrar informação de versão e sair\n" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "" + +#: src/wc.c:129 +#, fuzzy +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" +"Mostrar o número de linhas, palavras e bytes para cada ARQUIVO, e uma linha\n" +"com o total se se especificar mais de um ARQUIVO.\n" +"Sem informar ARQUIVO, ou se ARQUIVO é `-', lê da entrada padrão\n" +" -c, --bytes mostrar o número de bytes\n" +" -m, --chars mostrar o número de caracteres\n" +" -l, --lines mostrar o número de linhas\n" +" -L, --max-line-length mostrar o comprimento da linha mais longa\n" +" -w, --words mostrar o número de palavras\n" +" --help mostrar esta ajuda e sair\n" +" --version mostrar a versão e sair\n" + +#: src/wc.c:137 +#, fuzzy +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" +"Mostra o CRC e o número de bytes de cada ARQUIVO.\n" +"\n" +" --help mostra esta ajuda e finaliza\n" +" --version informa a versão e finaliza\n" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "" + +#: src/who.c:223 +msgid " old " +msgstr " antigo " + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "" + +#: src/who.c:446 +msgid "clock change" +msgstr "mudança de relógio" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" +"\n" +"# usuários=%u\n" + +#: src/who.c:498 +msgid "NAME" +msgstr "NOME" + +#: src/who.c:498 +msgid "LINE" +msgstr "LINHA" + +#: src/who.c:498 +msgid "TIME" +msgstr "TEMPO" + +#: src/who.c:498 +msgid "IDLE" +msgstr "PARADO" + +#: src/who.c:498 +msgid "PID" +msgstr "PID" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "COMENTÁRIO" + +#: src/who.c:499 +msgid "EXIT" +msgstr "SAIR" + +# , c-format +#: src/who.c:574 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "Uso: %s [OPÇÃO]... ARQUIVO1 ARQUIVO2\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" + +#: src/whoami.c:53 +#, fuzzy +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" +"Mostra o nome do usuário associado à identificação efetiva de usuário " +"(uid).\n" +"O mesmo que id -un.\n" +"\n" +" --help mostrar esta ajuda e sair.\n" +" --version mostrar informação de versão e sair\n" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "%s: não consigo encontrar o nome do usuário para o UID %u\n" + +# , c-format +#: src/yes.c:49 +#, fuzzy, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"Uso: %s [ARQUIVO]...\n" +" ou: %s [OPÇÃO]\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" + +# , c-format +#, fuzzy +#~ msgid "\\%c: invalid escape" +#~ msgstr "%s: padrão inválido" + +#~ msgid "program error" +#~ msgstr "erro de programa" + +#~ msgid "stack overflow" +#~ msgstr "estouro de pilha" + +#~ msgid " Type" +#~ msgstr " Tipo" diff --git a/src/apps/bin/coreutils-5.0/po/quot.sed b/src/apps/bin/coreutils-5.0/po/quot.sed new file mode 100644 index 0000000000..0122c46318 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/quot.sed @@ -0,0 +1,6 @@ +s/"\([^"]*\)"/“\1â€/g +s/`\([^`']*\)'/‘\1’/g +s/ '\([^`']*\)' / ‘\1’ /g +s/ '\([^`']*\)'$/ ‘\1’/g +s/^'\([^`']*\)' /‘\1’ /g +s/“â€/""/g diff --git a/src/apps/bin/coreutils-5.0/po/remove-potcdate.sin b/src/apps/bin/coreutils-5.0/po/remove-potcdate.sin new file mode 100644 index 0000000000..2436c49e78 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/remove-potcdate.sin @@ -0,0 +1,19 @@ +# Sed script that remove the POT-Creation-Date line in the header entry +# from a POT file. +# +# The distinction between the first and the following occurrences of the +# pattern is achieved by looking at the hold space. +/^"POT-Creation-Date: .*"$/{ +x +# Test if the hold space is empty. +s/P/P/ +ta +# Yes it was empty. First occurrence. Remove the line. +g +d +bb +:a +# The hold space was nonempty. Following occurrences. Do nothing. +x +:b +} diff --git a/src/apps/bin/coreutils-5.0/po/ru.gmo b/src/apps/bin/coreutils-5.0/po/ru.gmo new file mode 100644 index 0000000000..1538664933 Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/ru.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/ru.po b/src/apps/bin/coreutils-5.0/po/ru.po new file mode 100644 index 0000000000..30cc38ddbc --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/ru.po @@ -0,0 +1,8469 @@ +# ìÏËÁÌÉÚÁÃÉÑ GNU coreutils +# Copyright (C) 1999, 2000 Free Software Foundation, Inc. +# Denis Perchine , 1997-2002. +# Oleg Tihonov , 1999, 2000, 2001, 2002, 2003. +# +msgid "" +msgstr "" +"Project-Id-Version: coreutils 4.5.12\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2003-04-02 12:58+0400\n" +"Last-Translator: Oleg S. Tihonov \n" +"Language-Team: Russian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=koi8-r\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "ÎÅ×ÅÒÎÙÊ ÁÒÇÕÍÅÎÔ %s ÄÌÑ %s" + +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "ÎÅÏÄÎÏÚÎÁÞÎÙÊ ÁÒÇÕÍÅÎÔ %s ÄÌÑ %s" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "÷ÅÒÎÙÅ ÁÒÇÕÍÅÎÔÙ:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "ÏÛÉÂËÁ ÚÁÐÉÓÉ" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "îÅÉÚ×ÅÓÔÎÁÑ ÓÉÓÔÅÍÎÁÑ ÏÛÉÂËÁ" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "ÐÕÓÔÏÊ ÏÂÙÞÎÙÊ ÆÁÊÌ" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "ÏÂÙÞÎÙÊ ÆÁÊÌ" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "ëÁÔÁÌÏÇ" + +#: lib/file-type.c:48 +msgid "block special file" +msgstr "ÂÌÏÞÎÙÊ ÓÐÅÃÉÁÌØÎÙÊ ÆÁÊÌ" + +#: lib/file-type.c:51 +msgid "character special file" +msgstr "ÚÎÁËÏ×ÙÊ ÓÐÅÃÉÁÌØÎÙÊ ÆÁÊÌ" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "ÆÁÊÌ-ÏÞÅÒÅÄØ" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "ÓÉÍ×ÏÌØÎÁÑ ÓÓÙÌËÁ" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "ÓÏËÅÔ" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "ÏÞÅÒÅÄØ ÓÏÏÂÝÅÎÉÊ" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "ÓÅÍÁÆÏÒ" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "ÏÂßÅËÔ ÒÁÚÄÅÌÑÅÍÏÊ ÐÁÍÑÔÉ" + +#: lib/file-type.c:71 +msgid "weird file" +msgstr "ÓÔÒÁÎÎÙÊ ÆÁÊÌ" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: ÎÅÏÄÎÏÚÎÁÞÎÙÊ ËÌÀÞ `%s'\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: ËÌÀÞ `--%s' ÄÏÌÖÅÎ ÉÓÐÏÌØÚÏ×ÁÔØÓÑ ÂÅÚ ÁÒÇÕÍÅÎÔÁ\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: ËÌÀÞ `%c%s' ÄÏÌÖÅÎ ÉÓÐÏÌØÚÏ×ÁÔØÓÑ ÂÅÚ ÁÒÇÕÍÅÎÔÁ\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: ËÌÀÞ `%s' ÄÏÌÖÅÎ ÉÓÐÏÌØÚÏ×ÁÔØÓÑ Ó ÁÒÇÕÍÅÎÔÏÍ\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: ËÌÀÞ `--%s' ÎÅ ÒÁÓÐÏÚÎÁÎ\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: ËÌÀÞ `%c%s' ÎÅ ÒÁÓÐÏÚÎÁÎ\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: ÎÅÄÏÐÕÓÔÉÍÙÊ ËÌÀÞ -- %c\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: ÎÅ×ÅÒÎÙÊ ËÌÀÞ -- `%c'\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: ËÌÀÞ ÄÏÌÖÅÎ ÉÓÐÏÌØÚÏ×ÁÔØÓÑ Ó ÁÒÇÕÍÅÎÔÏÍ -- %c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: ÎÅÏÄÎÏÚÎÁÞÎÙÊ ËÌÀÞ `-W %s'\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: ËÌÀÞ `-W %s' ÄÏÌÖÅÎ ÉÓÐÏÌØÚÏ×ÁÔØÓÑ ÂÅÚ ÁÒÇÕÍÅÎÔÁ\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "ÒÁÚÍÅÒ ÂÌÏËÁ" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "ÎÅ ÕÄÁÌÏÓØ ×ÅÒÎÕÔØÓÑ × ÐÅÒ×ÏÎÁÞÁÌØÎÙÊ ÒÁÂÏÞÉÊ ËÁÔÁÌÏÇ" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ËÁÔÁÌÏÇ %s" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%s ÓÕÝÅÓÔ×ÕÅÔ, ÎÏ ÎÅ Ñ×ÌÑÅÔÓÑ ËÁÔÁÌÏÇÏÍ" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÉÚÍÅÎÉÔØ ÈÏÚÑÉÎÁ É/ÉÌÉ ÇÒÕÐÐÕ %s" + +#: lib/makepath.c:338 +#, c-format +msgid "cannot chdir to directory %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÍÅÎÉÔØ ËÁÔÁÌÏÇ ÎÁ %s" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÉÚÍÅÎÉÔØ ÐÒÁ×Á ÄÏÓÔÕÐÁ %s" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "ÐÁÍÑÔØ ÉÓÞÅÒÐÁÎÁ" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "`" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "'" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[yY]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[nN]" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "ÆÕÎËÃÉÑ iconv ÎÅÐÒÉÍÅÎÉÍÁ" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "ÆÕÎËÃÉÑ iconv ÎÅÄÏÓÔÕÐÎÁ" + +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "ÚÎÁË ×ÎÅ ÄÏÐÕÓÔÉÍÏÇÏ ÄÉÁÐÁÚÏÎÁ" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÒÅÏÂÒÁÚÏ×ÁÔØ U+%04X Ë ÌÏËÁÌØÎÏÊ ËÏÄÉÒÏ×ËÅ" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÒÅÏÂÒÁÚÏ×ÁÔØ U+%04X Ë ÌÏËÁÌØÎÏÊ ËÏÄÉÒÏ×ËÅ: %s" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "ÎÅ×ÅÒÎÙÊ ÐÏÌØÚÏ×ÁÔÅÌØ" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "ÎÅ×ÅÒÎÁÑ ÇÒÕÐÐÁ" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÕÚÎÁÔØ ÇÌÁ×ÎÕÀ ÇÒÕÐÐÕ ÄÌÑ ÞÉÓÌÏ×ÏÇÏ UID" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÐÕÓÔÉÔØ É ÐÏÌØÚÏ×ÁÔÅÌÑ, É ÇÒÕÐÐÕ" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "á×ÔÏÒ ÐÒÏÇÒÁÍÍÙ -- %s.\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +"üÔÏ Ó×ÏÂÏÄÎÁÑ ÐÒÏÇÒÁÍÍÁ; ÐÏÄÒÏÂÎÏÓÔÉ Ï ÕÓÌÏ×ÉÑÈ ÒÁÓÐÒÏÓÔÒÁÎÅÎÉÑ\n" +"ÓÍÏÔÒÉÔÅ × ÉÓÈÏÄÎÏÍ ÔÅËÓÔÅ. íÙ îå ÐÒÅÄÏÓÔÁ×ÌÑÅÍ ÇÁÒÁÎÔÉÊ; ÄÁÖÅ ÇÁÒÁÎÔÉÊ\n" +"ëïííåòþåóëïê ðòéçïäîïóôé ÉÌÉ ðòéçïäîïóôé äìñ ëáëïê-ìéâï ãåìé.\n" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "ÓÒÁ×ÎÅÎÉÅ ÓÔÒÏË ÎÅÕÓÐÅÛÎÏ" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "þÔÏÂÙ ÏÂÏÊÔÉ ÜÔÕ ÐÒÏÂÌÅÍÕ, ÕÓÔÁÎÏ×ÉÔÅ LC_ALL='C'." + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "óÒÁ×ÎÉ×ÁÌÉÓØ ÓÔÒÏËÉ %s %s." + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "ðÏÐÒÏÂÕÊÔÅ `%s --help' ÄÌÑ ÐÏÌÕÞÅÎÉÑ ÂÏÌÅÅ ÐÏÄÒÏÂÎÏÇÏ ÏÐÉÓÁÎÉÑ.\n" + +#: src/basename.c:54 +#, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s éíñ [óõææéëó]\n" +" ÉÌÉ: %s ëìàþ\n" + +#: src/basename.c:59 +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" +"÷Ù×ÏÄÉÔ éíñ ÂÅÚ ÐÒÅÄÛÅÓÔ×ÕÀÝÉÈ ÎÁÚ×ÁÎÉÊ ËÁÔÁÌÏÇÏ×.\n" +"åÓÌÉ ÕËÁÚÁÎÏ, ÕÄÁÌÑÅÔ ÔÁËÖÅ ÚÁ×ÅÒÛÁÀÝÉÊ óõææéëó.\n" +"\n" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"ï ÏÛÉÂËÁÈ ÓÏÏÂÝÁÊÔÅ ÐÏ ÁÄÒÅÓÕ <%s>.\n" + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "ÎÅÄÏÓÔÁÔÏÞÎÏ ÁÒÇÕÍÅÎÔÏ×" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "ÓÌÉÛËÏÍ ÍÎÏÇÏ ÁÒÇÕÍÅÎÔÏ×" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "ôÏÒÂØ£ÒÎ çÒÁÎÌÕÎÄ É òÉÞÁÒÄ í. óÔÏÌÌÍÅÎ" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ] [æáêì]...\n" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" +"óÃÅÐÌÑÅÔ æáêì(Ù) ÉÌÉ ÓÔÁÎÄÁÒÔÎÙÊ ××ÏÄ ÎÁ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ.\n" +"\n" +" -A, --show-all ÓÉÎÏÎÉÍ -vET\n" +" -b, --number-nonblank ÎÕÍÅÒÏ×ÁÔØ ÎÅÐÕÓÔÙÅ ÓÔÒÏËÉ ÐÒÉ ×Ù×ÏÄÅ\n" +" -e ÓÉÎÏÎÉÍ -vE\n" +" -E, --show-ends ÐÏËÁÚÙ×ÁÔØ $ × ËÏÎÃÅ ËÁÖÄÏÊ ÓÔÒÏËÉ\n" +" -n, --number ÎÕÍÅÒÏ×ÁÔØ ×ÓÅ ÓÔÒÏËÉ ÐÒÉ ×Ù×ÏÄÅ\n" +" -s, --squeeze-blank ×Ù×ÏÄÉÔØ ÎÅ ÂÏÌÅÅ ÏÄÎÏÊ ÐÕÓÔÏÊ ÓÔÒÏËÉ\n" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" +" -t ÓÉÎÏÎÉÍ -vT\n" +" -T, --show-tabs ÐÏËÁÚÙ×ÁÔØ ÚÎÁËÉ ÔÁÂÕÌÑÃÉÉ ËÁË ^I\n" +" -u (ÉÇÎÏÒÉÒÕÅÔÓÑ)\n" +" -v, --show-nonprinting ÉÓÐÏÌØÚÏ×ÁÔØ ÚÁÐÉÓØ Ó ^ É M-, ÚÁ ÉÓËÌÀÞÅÎÉÅÍ " +"ÚÎÁËÏ×\n" +" ÐÅÒÅ×ÏÄÁ ÓÔÒÏËÉ É ÔÁÂÕÌÑÃÉÉ\n" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"åÓÌÉ æáêì ÎÅ ÚÁÄÁÎ ÉÌÉ ÚÁÄÁÎ ËÁË -, ÞÉÔÁÅÔ ÓÔÁÎÄÁÒÔÎÙÊ ××ÏÄ.\n" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" +"\n" +" -B, --binary ÉÓÐÏÌØÚÏ×ÁÔØ Ä×ÏÉÞÎÙÊ ÒÅÖÉÍ ÐÒÉ ÞÔÅÎÉÉ É ÚÁÐÉÓÉ " +"ÎÁ\n" +" ËÏÎÓÏÌØÎÏÅ ÕÓÔÒÏÊÓÔ×Ï.\n" +"\n" + +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ×ÙÐÏÌÎÉÔØ ioctl ÄÌÑ `%s'" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s: ××ÏÄ É ×Ù×ÏÄ × ÏÄÉÎ ÆÁÊÌ" + +#: src/cat.c:858 +msgid "closing standard input" +msgstr "ÚÁËÒÙÔÉÅ ÓÔÁÎÄÁÒÔÎÏÇÏ ××ÏÄÁ" + +#: src/cat.c:861 +msgid "closing standard output" +msgstr "ÚÁËÒÙÔÉÅ ÓÔÁÎÄÁÒÔÎÏÇÏ ×Ù×ÏÄÁ" + +#: src/chgrp.c:93 +msgid "cannot change to null group" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÉÚÍÅÎÉÔØ ÇÒÕÐÐÕ ÎÁ ÎÕÌÅ×ÕÀ" + +#: src/chgrp.c:102 +#, c-format +msgid "invalid group name %s" +msgstr "ÎÅ×ÅÒÎÏÅ ÉÍÑ ÇÒÕÐÐÙ %s" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "ÎÏÍÅÒ ÇÒÕÐÐÙ" + +#: src/chgrp.c:109 +#, c-format +msgid "invalid group number %s" +msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÇÒÕÐÐÙ %s" + +#: src/chgrp.c:126 +#, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... çòõððá æáêì...\n" +" ÉÌÉ: %s [ëìàþ]... --reference=ïæáêì æáêì...\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"éÚÍÅÎÑÅÔ ÐÒÉÎÁÄÌÅÖÎÏÓÔØ ÇÒÕÐÐÅ ËÁÖÄÏÇÏ FILE ÎÁ GROUP.\n" +"\n" +" -c, --changes ÔÏ ÖÅ ÞÔÏ É verbose, ÎÏ ÔÏÌØËÏ ÅÓÌÉ ÐÒÏÉÚÏÛÌÏ " +"ÉÚÍÅÎÅÎÉÅ\n" +" --dereference ÉÚÍÅÎÑÔØ ÎÅ ÓÓÙÌËÕ, Á ÎÁ ÞÔÏ ÏÎÁ ÓÓÙÌÁÅÔÓÑ\n" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" +" -h, --no-dereference ÉÚÍÅÎÑÅÔ ×ÌÁÄÅÌØÃÁ ÓÓÙÌËÉ, Á ÎÅ ×ÌÁÄÅÌØÃÁ ÆÁÊÌÁ,\n" +" ÎÁ ËÏÔÏÒÙÊ ÓÓÙÌÁÅÔÓÑ ÓÓÙÌËÁ. (ÄÏÓÔÕÐÎÁ ÔÏÌØËÏ " +"ÎÁÓÉÓÔÅÍÁÈ\n" +" ËÏÔÏÒÙÅ ÍÏÇÕÔ ÉÚÍÅÎÑÔØ ×ÌÁÄÅÎÉÅ ÓÉÍ×ÏÌÉÞÅÓËÏÊ " +"ÓÓÙÌËÉ)\n" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet ÐÏÄÁ×ÌÑÔØ ÓÏÏÂÝÅÎÉÑ Ï ÏÛÉÂËÁÈ\n" +" --reference=RFILE ÉcÐÏÌØÚÏ×ÁÔØ ÇÒÕÐÐÕ RFILE ×ÍÅÓÔÏ GROUP\n" +" -R, --recursive ÉÚÍÅÎÑÔØ Ó ËÁÔÁÌÏÇÁÍÉ\n" +" -v, --verbose ×Ù×ÏÄÉÔØ ÄÉÁÇÎÏÓÔÉÞÅÓËÉÅ ÓÏÏÂÝÅÎÉÑ ÄÌÑ ËÁÖÄÏÇÏ " +"ÆÁÊÌÁ\n" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, c-format +msgid "failed to get attributes of %s" +msgstr "ÏÛÉÂËÁ ÐÏÌÕÞÅÎÉÑ ÁÔÒÉÂÕÔÏ× %s" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "ÐÏÌÕÞÁÀ ÎÏ×ÙÅ ÁÔÒÉÂÕÔÙ %s" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "ÐÒÁ×Á ÄÏÓÔÕÐÁ %s ÉÚÍÅÎÅÎÙ ÎÁ %04lo (%s)\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "ÏÛÉÂËÁ ÉÚÍÅÎÅÎÉÑ ÐÒÁ× ÄÏÓÔÕÐÁ %s ÎÁ %04lo (%s)\n" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "ÐÒÁ×Á ÄÏÓÔÕÐÁ %s ÏÓÔÁ×ÌÅÎÙ ËÁË %04lo (%s)\n" + +#: src/chmod.c:179 +#, c-format +msgid "changing permissions of %s" +msgstr "ÉÚÍÅÎÅÎÉÅ ÐÒÁ× ÄÏÓÔÕÐÁ ÄÌÑ %s" + +#: src/chmod.c:242 +#, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... òåöéí[,òåöéí]... æáêì\n" +" ÉÌÉ: %s [ëìàþ]... ÷ïóøí-òåöéí æáêì...\n" +" ÉÌÉ: %s [ëìàþ]... --reference=ïæáêì æáêì...\n" + +#: src/chmod.c:248 +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"éÚÍÅÎÑÅÔ ÐÒÁ×Á ÄÏÓÔÕÐÁ ËÁÖÄÏÇÏ ÆÁÊÌÁ ÎÁ MODE.\n" +"\n" +" -c, --change ÔÏÖÅ ÞÔÏ É --verbose, ÎÏ ÓÏÏÂÝÁÅÔ ÔÏÌØËÏ ËÏÇÄÁ\n" +" ÂÙÌÉ ÐÒÏÉÚ×ÅÄÅÎÙ ÉÚÍÅÎÅÎÉÑ\n" +" -f, --silent, --quiet ÐÏÄÁ×ÌÑÔØ ÓÏÏÂÝÅÎÉÑ Ï ÏÛÉÂËÁÈ\n" +" -v, --verbose ×Ù×ÏÄÉÔØ ÄÉÁÇÎÏÓÔÉÞÅÓËÉÅ ÓÏÏÂÝÅÎÉÑ ÄÌÑ ËÁÖÄÏÇÏ " +"ÆÁÊÌÁ\n" +" --reference=RFILE ÉÓÐÏÌØÚÏ×ÁÔØ ÐÒÁ×Á ÄÏÓÔÕÐÁ RFILE ×ÍÅÓÔÏ MODE\n" +" -R, --recursive ÉÚÍÅÎÑÔØ Ó ËÁÔÁÌÏÇÁÍÉ\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" +"\n" +"ëÁÖÄÙÊ MODE ÐÒÅÄÓÔÁ×ÌÑÅÔ ÓÏÂÏÊ ËÏÍÂÉÎÁÃÉÀ ÉÚ ÏÄÎÏÇÏ ÉÌÉ ÂÏÌÅÅ ÓÉÍ×ÏÌÏ× ugoa\n" +"×ÎÁÞÁÌÅ, É ÏÄÉÎ ÉÚ ÓÉÍ×ÏÌÏ× +-=, ÚÁÔÅÍ ÏÄÎÁ ÉÌÉ ÎÅÓËÏÌØËÏ ÂÕË× rwxXstugo.\n" + +#: src/chmod.c:320 +#, c-format +msgid "invalid character %s in mode string %s" +msgstr "ÎÅ×ÅÒÎÙÊ ÚÎÁË %s × ÓÔÒÏËÅ ÒÅÖÉÍÁ %s" + +#: src/chmod.c:361 +#, c-format +msgid "invalid mode string: %s" +msgstr "ÎÅ×ÅÒÎÁÑ ÓÔÒÏËÁ ÒÅÖÉÍÁ: %s" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "ÎÉ ÓÉÍ×ÏÌØÎÁÑ ÓÓÙÌËÁ %s, ÎÉ ÔÏ ÎÏ ÞÔÏ ÏÎÁ ÕËÁÚÙ×ÁÅÔ ÎÅ ÂÙÌÉ ÉÚÍÅÎÅÎÙ\n" + +#: src/chown-core.c:143 +#, c-format +msgid "changed ownership of %s to %s\n" +msgstr "ÉÚÍÅÎÅÎ ×ÌÁÄÅÌÅà %s ÎÁ %s\n" + +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "ÉÚÍÅÎÅÎÁ ÇÒÕÐÐÁ %s ÎÁ %s\n" + +#: src/chown-core.c:148 +#, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÉÚÍÅÎÉÔØ ×ÌÁÄÅÌØÃÁ %s ÎÁ %s\n" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "ÏÛÉÂËÁ ÉÚÍÅÎÅÎÉÑ ÇÒÕÐÐÙ %s ÎÁ %s\n" + +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "×ÌÁÄÅÌÅà %s ÏÓÔÁ×ÌÅÎ ËÁË %s\n" + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "ÇÒÕÐÐÁ %s ÏÓÔÁ×ÌÅÎÁ ËÁË %s\n" + +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "ÉÚÍÅÎÅÎÉÅ ×ÌÁÄÅÌØÃÁ %s" + +#: src/chown-core.c:327 +#, c-format +msgid "changing group of %s" +msgstr "ÉÚÍÅÎÅÎÉÅ ÇÒÕÐÐÙ ÄÌÑ %s" + +#: src/chown-core.c:345 +#, c-format +msgid "unable to restore permissions of %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ×ÏÓÓÔÁÎÏ×ÉÔØ ÐÒÁ×Á ÄÏÓÔÕÐÁ ÄÌÑ %s" + +#: src/chown.c:99 +#, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... ÷ìáäåìåã[:[çòõððá]] æáêì...\n" +" ÉÌÉ: %s [ëìàþ]... :çòõððá æáêì...\n" +" ÉÌÉ: %s [ëìàþ]... --reference=ïæáêì æáêì...\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"éÚÍÅÎÑÅÔ ×ÌÁÄÅÌØÃÁ É/ÉÌÉ ÇÒÕÐÐÕ ËÁÖÄÏÇÏ FILE ÎÁ OWNER É/ÉÌÉ GROUP.\n" +"\n" +" -c, --change ÔÏÖÅ ÞÔÏ É --verbose, ÎÏ ÓÏÏÂÝÁÅÔ ÔÏÌØËÏ ËÏÇÄÁ\n" +" ÂÙÌÉ ÐÒÏÉÚ×ÅÄÅÎÙ ÉÚÍÅÎÅÎÉÑ\n" +" --dereference ÉÚÍÅÎÑÅÔ ×ÌÁÄÅÌØÃÁ ÓÓÙÌËÉ, Á ÎÅ ×ÌÁÄÅÌØÃÁ ÆÁÊÌÁ,\n" +" ÎÁ ËÏÔÏÒÙÊ ÓÓÙÌÁÅÔÓÑ ÓÓÙÌËÁ.\n" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" ÉÚÍÅÎÑÅÔ ×ÌÁÄÅÌØÃÁ É/ÉÌÉ ÇÒÕÐÐÕ ËÁÖÄÏÇÏ ÆÁÊÌÁ\n" +" ÔÏÌØËÏ ÅÓÌÉ ÔÅËÕÝÉÊ ×ÌÁÄÅÌÅà É/ÉÌÉ ÇÒÕÐÐÁ\n" +" ÓÏ×ÐÁÄÁÅÔ Ó CURRENT_OWNER::CURRENT_GROUP.\n" +" ëÁË ÇÒÕÐÐÁ, ÔÁË É ×ÌÁÄÅÌÅà ÍÏÇÕÔ ÂÙÔØ ÏÐÕÝÅÎÙ,\n" +" × ÜÔÏÍ ÓÌÕÞÁÅ Ó×ÐÁÄÅÎÉÅ ÄÌÑ ÄÁÎÎÏÇÏ ÁÔÒÉÂÕÔÁ\n" +" ÎÅ ÏÂÑÚÁÔÅÌØÎÏ.\n" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet ÐÏÄÁ×ÌÑÔØ ÓÏÏÂÝÅÎÉÑ Ï ÏÛÉÂËÁÈ\n" +" --reference=RFILE ÉÓÐÏÌØÚÏ×ÁÔØ ×ÌÁÄÅÌØÃÅ× RFILE ×ÍÅÓÔÏ OWNER:GROUP\n" +" -R, --recursive ÉÚÍÅÎÑÔØ Ó ËÁÔÁÌÏÇÁÍÉ\n" +" -v, --verbose ×Ù×ÏÄÉÔØ ÄÉÁÇÎÏÓÔÉÞÅÓËÉÅ ÓÏÏÂÝÅÎÉÑ ÄÌÑ ËÁÖÄÏÇÏ " +"ÆÁÊÌÁ\n" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" +"\n" +"÷ÌÁÄÅÌÅà ÎÅ ÉÚÍÅÎÑÅÔÓÑ ÅÓÌÉ ÏÎ ÎÅ ÓÕÝÅÓÔ×ÕÅÔ. çÒÕÐÐÁ ÔÁËÖÅ ÎÅ ÉÚÍÅÎÑÅÔÓÑ\n" +"ÅÓÌÉ ÏÔÓÕÔÓÔ×ÕÅÔ, ÎÏ ÉÚÍÅÎÑÅÔÓÑ ÎÁ ÇÒÕÐÐÕ ÐÏ ÕÍÏÌÞÁÎÉÀ ÅÓÌÉ ÎÅ ÚÁÄÁÎ\n" +"ÐÏÌØÚÏ×ÁÔÅÌØ.\n" + +#: src/chroot.c:45 +#, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s ëáôáìïç [ëïíáîäá...]\n" +" ÉÌÉ: %s ëìàþ\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" +"÷ÙÐÏÌÎÑÅÔ ëïíáîäõ Ó ÕËÁÚÁÎÎÙÍ ËÏÒÎÅ×ÙÍ ËÁÔÁÌÏÇÏÍ.\n" +"\n" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" +"\n" +"åÓÌÉ ËÏÍÁÎÄÁ ÎÅ ÚÁÄÁÎÁ, ×ÙÐÏÌÎÑÅÔ ``${SHELL} -i'' (ÐÏ ÕÍÏÌÞÁÎÉÀ: /bin/sh).\n" + +#: src/chroot.c:84 +#, c-format +msgid "cannot change root directory to %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÍÅÎÉÔØ ËÏÒÎÅ×ÏÊ ËÁÔÁÌÏÇ ÎÁ %s" + +#: src/chroot.c:87 +msgid "cannot chdir to root directory" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÊÔÉ Ë ËÏÒÎÅ×ÏÍÕ ËÁÔÁÌÏÇÕ" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "%s: ÆÁÊÌ ÓÌÉÛËÏÍ ×ÅÌÉË" + +#: src/cksum.c:282 +#, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [æáêì]...\n" +" ÉÌÉ: %s ëìàþ\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" +"ðÅÞÁÔÁÅÔ ËÏÎÔÒÏÌØÎÕÀ ÓÕÍÍÕ (CRC) É ÞÉÓÌÏ ÂÁÊÔ ÄÌÑ ËÁÖÄÏÇÏ æáêìá.\n" +"\n" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "òÉÞÁÒÄ óÔÏÌÌÍÅÎ É äÅ×ÉÄ íÁËëÅÎÚÉ" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... ìå÷ùê_æáêì ðòá÷ùê_æáêì\n" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" +"ðÏÓÔÒÏÞÎÏ ÓÒÁ×ÎÉ×ÁÅÔ ÓÏÒÔÉÒÏ×ÁÎÎÙÅ ÆÁÊÌÙ ìå÷ùê_æáêì É ðòá÷ùê_æáêì.\n" +"\n" +" -1 ÎÅ ÐÏËÁÚÙ×ÁÔØ ÓÔÒÏËÉ, ÕÎÉËÁÌØÎÙÅ ÄÌÑ ÌÅ×ÏÇÏ ÆÁÊÌÁ\n" +" -2 ÎÅ ÐÏËÁÚÙ×ÁÔØ ÓÔÒÏËÉ, ÕÎÉËÁÌØÎÙÅ ÄÌÑ ÐÒÁ×ÏÇÏ ÆÁÊÌÁ\n" +" -3 ÎÅ ÐÏËÁÚÙ×ÁÔØ ÓÔÒÏËÉ, ×ÓÔÒÅÞÅÎÎÙÅ × ÏÂÏÉÈ ÆÁÊÌÁÈ\n" + +#: src/copy.c:162 src/du.c:332 +#, c-format +msgid "cannot access %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÄÏÓÔÕÐ Ë %s" + +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s ÄÌÑ ÞÔÅÎÉÑ" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, c-format +msgid "cannot fstat %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ×ÙÐÏÌÎÉÔØ fstat ÄÌÑ %s" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "ÐÒÏÐÕÓËÁÀ ÆÁÊÌ %s, ÔÁË ËÁË ÏÎ ÂÙÌ ÚÁÍÅÎÅÎ ×Ï ×ÒÅÍÑ ËÏÐÉÒÏ×ÁÎÉÑ" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, c-format +msgid "cannot remove %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s" + +#: src/copy.c:277 +#, c-format +msgid "cannot create regular file %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ÏÂÙÞÎÙÊ ÆÁÊÌ %s" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, c-format +msgid "reading %s" +msgstr "ÞÔÅÎÉÅ %s" + +#: src/copy.c:362 +#, c-format +msgid "cannot lseek %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ×ÙÐÏÌÎÉÔØ lseek ÄÌÑ %s" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, c-format +msgid "writing %s" +msgstr "ÚÁÐÉÓØ %s" + +#: src/copy.c:409 src/copy.c:415 +#, c-format +msgid "closing %s" +msgstr "ÚÁËÒÙÔÉÅ %s" + +#: src/copy.c:610 +#, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: ÐÅÒÅÐÉÓÁÔØ %s, ÎÅÓÍÏÔÒÑ ÎÁ ÐÒÁ×Á ÄÏÓÔÕÐÁ %04lo? " + +#: src/copy.c:616 +#, c-format +msgid "%s: overwrite %s? " +msgstr "%s: ÐÅÒÅÐÉÓÁÔØ %s? " + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, c-format +msgid "cannot stat %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ×ÙÐÏÌÎÉÔØ stat ÄÌÑ %s" + +#: src/copy.c:820 +#, c-format +msgid "omitting directory %s" +msgstr "ÐÒÏÐÕÓË ËÁÔÁÌÏÇÁ %s" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "×ÎÉÍÁÎÉÅ: ×ÈÏÄÎÏÊ ÆÁÊÌ %s ÕËÁÚÁÎ ÂÏÌÅÅ ÏÄÎÏÇÏ ÒÁÚÁ" + +#: src/copy.c:866 src/ln.c:237 +#, c-format +msgid "%s and %s are the same file" +msgstr "%s É %s - ÏÄÉÎ É ÔÏÔ ÖÅ ÆÁÊÌ" + +#: src/copy.c:876 +#, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "" +"ÎÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÚÁÐÉÓÁÔØ ÐÏ×ÅÒÈ ÆÁÊÌÁ %s, ÎÅ Ñ×ÌÑÀÝÅÇÏÓÑ ËÁÔÁÌÏÇÏÍ, ËÁÔÁÌÏÇ %s" + +#: src/copy.c:893 +#, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "ÎÅ ÐÅÒÅÐÉÓÙ×ÁÀ ÔÏÌØËÏ ÞÔÏ ÓÏÚÄÁÎÎÙÊ %s %s" + +#: src/copy.c:904 +#, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÚÁÐÉÓÁÔØ ËÁÔÁÌÏÇ %s ÆÁÊÌÏÍ, ÎÅ Ñ×ÌÑÀÝÉÍÓÑ ËÁÔÁÌÏÇÏÍ" + +#: src/copy.c:965 +#, c-format +msgid "cannot overwrite directory %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÚÁÐÉÓÁÔØ ËÁÔÁÌÏÇ %s" + +#: src/copy.c:974 +#, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "" +"ÎÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÉÍÅÎÏ×ÁÔØ ËÁÔÁÌÏÇ × ÆÁÊÌ, ÎÅ Ñ×ÌÑÀÝÉÊÓÑ ËÁÔÁÌÏÇÏÍ: %s -> %s" + +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "ÓÏÈÒÁÎÅÎÉÅ ÚÁÐÁÓÎÏÊ ËÏÐÉÉ %s ÕÎÉÞÔÏÖÉÔ ÏÒÉÇÉÎÁÌ; %s ÎÅ ÐÅÒÅÎÅÓÅÎ" + +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "ÓÏÈÒÁÎÅÎÉÅ ÚÁÐÁÓÎÏÊ ËÏÐÉÉ %s ÕÎÉÞÔÏÖÉÔ ÏÒÉÇÉÎÁÌ; %s ÎÅ ÓËÏÐÉÒÏ×ÁÎ" + +#: src/copy.c:1013 src/ln.c:273 +#, c-format +msgid "cannot backup %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ÒÅÚÅÒ×ÎÕÀ ËÏÐÉÀ ÄÌÑ %s" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr " (ÒÅÚÅÒ×ÎÁÑ ËÏÐÉÑ: %s)" + +#: src/copy.c:1099 +#, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓËÏÐÉÒÏ×ÁÔØ ËÁÔÁÌÏÇ, %s, × ÓÁÍÏÇÏ ÓÅÂÑ, %s" + +#: src/copy.c:1106 +#, c-format +msgid "will not create hard link %s to directory %s" +msgstr "ÖÅÓÔËÁÑ ÓÓÙÌËÁ %s ÎÁ ËÁÔÁÌÏÇ %s ÎÅ ÂÕÄÅÔ ÓÏÚÄÁÎÁ" + +#: src/copy.c:1132 +#, c-format +msgid "cannot create hard link %s to %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ÖÅÓÔËÕÀ ÓÓÙÌËÕ %s ÎÁ %s" + +#: src/copy.c:1186 +#, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÎÅÓÔÉ %s × Ó×ÏÊ ÓÏÂÓÔ×ÅÎÎÙÊ ÐÏÄËÁÔÁÌÏÇ, %s" + +#: src/copy.c:1229 +#, c-format +msgid "cannot move %s to %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÍÅÓÔÉÔØ %s × %s" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "" +"ÐÅÒÅÍÅÝÅÎÉÅ Ó ÕÓÔÒÏÊÓÔ×Á %s ÎÁ ÕÓÔÒÏÊÓÔ×Ï %s ÎÅÕÓÐÅÛÎÏ: ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ " +"ÃÅÌÅ×ÏÅ" + +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓËÏÐÉÒÏ×ÁÔØ ÃÉËÌÉÞÅÓËÕÀ ÓÉÍ×ÏÌØÎÕÀ ÓÓÙÌËÕ %s" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "" +"%s: ×ÏÚÍÏÖÎÏ ÓÏÚÄÁ×ÁÔØ ÏÔÎÏÓÉÔÅÌØÎÙÅ ÓÉÍ×ÏÌÉÞÅÓËÉÅ ÓÓÙÌËÉ ÔÏÌØËÏ × ÔÅËÕÝÅÍ " +"ËÁÔÁÌÏÇÅ" + +#: src/copy.c:1353 +#, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ÓÉÍ×ÏÌØÎÕÀ ÓÓÙÌËÕ %s ÎÁ %s" + +#: src/copy.c:1364 +#, c-format +msgid "cannot create link %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ÓÓÙÌËÕ %s" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, c-format +msgid "cannot create fifo %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ÏÞÅÒÅÄØ %s" + +#: src/copy.c:1403 +#, c-format +msgid "cannot create special file %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ÓÐÅÃÉÁÌØÎÙÊ ÆÁÊÌ %s" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, c-format +msgid "cannot read symbolic link %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÞÉÔÁÔØ ÓÉÍÓÉÍ×ÏÌØÎÕÀ ÓÓÙÌËÕ %s" + +#: src/copy.c:1440 +#, c-format +msgid "cannot create symbolic link %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ÓÉÍ×ÏÌØÎÕÀ ÓÓÙÌËÕ %s" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, c-format +msgid "failed to preserve ownership for %s" +msgstr "ÎÅ ÕÄÁÌÏÓØ ÓÏÈÒÁÎÉÔØ ×ÌÁÄÅÌØÃÁ %s" + +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "ÔÉÐ ÆÁÊÌÁ %s ÎÅÉÚ×ÅÓÔÅÎ" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "ÓÏÈÒÁÎÅÎÉÅ ×ÒÅÍÅÎÎÏÊ ÏÔÍÅÔËÉ %s" + +#: src/copy.c:1531 +#, c-format +msgid "failed to preserve authorship for %s" +msgstr "ÎÅ ÕÄÁÌÏÓØ ÓÏÈÒÁÎÉÔØ Á×ÔÏÒÁ %s" + +#: src/copy.c:1549 +#, c-format +msgid "setting permissions for %s" +msgstr "ÕÓÔÁÎÏ×ËÁ ÐÒÁ× ÄÏÓÔÕÐÁ ÄÌÑ %s" + +#: src/copy.c:1571 src/ln.c:326 +#, c-format +msgid "cannot un-backup %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ×ÏÓÓÔÁÎÏ×ÉÔØ %s ÉÚ ÒÅÚÅÒ×ÎÏÊ ËÏÐÉÉ" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s -> %s (×ÏÓÓÔÁÎÏ×ÌÅÎÉÅ)\n" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "ôÏÒÂØ£ÒÎ çÒÁÎÌÕÎÄ, äÅ×ÉÄ íÁËëÅÎÚÉ É äÖÉÍ íÅÅÒÉÎÇ" + +#: src/cp.c:164 src/mv.c:311 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... éóôïþîéë îáúîáþåîéå\n" +" ÉÌÉ: %s [ëìàþ]... éóôïþîéë... ëáôáìïç\n" +" ÉÌÉ: %s [ëìàþ]... --target-directory=ëáôáìïç éóôïþîéë...\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"ëÏÐÉÒÕÅÔ SOURCE × DEST, ÉÌÉ ÎÅÓËÏÌØËÏ SOURCE × DIRECTORY.\n" +"\n" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" +"áÒÇÕÍÅÎÔÙ, ÏÂÑÚÁÔÅÌØÎÙÅ ÄÌÑ ÄÌÉÎÎÙÈ ËÌÀÞÅÊ, ÏÂÑÚÁÔÅÌØÎÙ É ÄÌÑ ËÏÒÏÔËÉÈ.\n" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" +" -a, --archive ÔÏÖÅ ÞÔÏ É -dpR\n" +" --backup[=CONTROL] ÓÏÚÄÁÔØ ÒÅÚÅÒ×ÎÕÀ ËÏÐÉÀ ÐÅÒÅÄ ÕÄÁÌÅÎÉÅÍ\n" +" -b ÔÏ ÖÅ, ÞÔÏ É --backup, ÎÏ ÂÅÚ ÁÒÇÕÍÅÎÔÁ\n" +" --copy-contents ËÏÐÉÒÕÅÔ ÓÏÄÅÒÖÉÍÏÅ ÓÐÅÃÉÁÌØÎÙÈ ÆÁÊÌÏ×, × " +"ÒÅËÕÒÓÉ×ÎÏÍ ÓÌÕÞÁÅ\n" +" -d ÔÏ ÖÅ, ÞÔÏ É --no-dereference --" +"preserve=link\n" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" +" --no-dereference ÎÅ ÓÌÅÄÏ×ÁÔØ ÓÉÍ×ÏÌØÎÙÍ ÓÓÙÌËÁÍ\n" +" -f, --force ÅÓÌÉ ÎÅÌØÚÑ ÏÔËÒÙÔØ ÓÕÝÅÓÔ×ÕÀÝÉÊ ÆÁÊÌ -\n" +" ÕÄÁÌÉÔØ ÅÇÏ É ÐÏÐÒÏÂÏ×ÁÔØ ÅÝÅ ÒÁÚ\n" +" -i, --interactive ÓÐÒÁÛÉ×ÁÔØ ÐÅÒÅÄ ÔÅÍ ËÁË ÐÅÒÅÐÉÓÙ×ÁÔØ\n" +" -H ÓÌÅÄÏ×ÁÔØ ÓÉÍ×ÏÌØÎÙÍ ÓÓÙÌËÁÍ × ËÏÍÍÁÎÄÎÏÊ " +"ÓÔÒÏËÅ\n" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" +" -l, --link ÓÏÚÄÁ×ÁÔØ ÖÅÓÔËÉÅ ÓÓÙÌËÉ ×ÍÅÓÔÏ ËÏÐÉÒÏ×ÁÎÉÑ\n" +" -L, --dereference ×ÓÅÇÄÁ ÓÌÅÄÏ×ÁÔØ ÓÉÍ×ÏÌØÎÙÍ ÓÓÙÌËÁÍ\n" +" -p ÔÏ ÖÅ, ÞÔÏ É --preserve=mode,ownership," +"timestamps\n" +" --preserve[=ATTR_LIST] ÓÏÈÒÁÎÑÔØ ÕËÁÚÁÎÎÙÅ ÁÔÒÉÂÕÔÙ (ÐÏ ÕÍÏÌÞÁÎÉÀ:\n" +" mode,ownership,timestamps), ÅÓÌÉ ×ÏÚÍÏÖÎÏ\n" +" ÄÏÐÏÌÎÉÔÅÌØÎÙÅ ÁÔÒÉÂÕÔÙ: links, all\n" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" +" --no-preserve=ATTR_LIST ÎÅ ÓÏÈÒÁÎÑÔØ ÕËÁÚÁÎÎÙÅ ÁÔÒÉÂÕÔÙ\n" +" --parents ÄÏÂÁ×ÉÔØ ÉÓÈÏÄÎÙÊ ÐÕÔØ Ë DIRECTORY\n" +" -P ÔÏ ÖÅ, ÞÔÏ É `--no-dereference'\n" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" +" -R, -r, --recursive ËÏÐÉÒÏ×ÁÔØ ÒÅËÕÒÓÉ×ÎÏ ËÁÔÁÌÏÇÉ\n" +" --remove-destination ÕÄÁÌÑÔØ ËÁÖÄÙÊ ÆÁÊÌ ÎÁÚÎÁÞÅÎÉÑ ÐÅÒÅÄ ÔÅÍ,\n" +" ËÁË ÐÏÐÙÔËÏÊ ÓËÏÐÉÒÏ×ÁÔØ ÅÇÏ (ÏÂÒÁÔÎÏ Ë --" +"force)\n" + +#: src/cp.c:209 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +" --reply={yes,no,query} ÕËÁÚÙ×ÁÅÔ ËÁË ÏÂÒÁÂÁÔÙ×ÁÔØ ÓÉÔÕÁÃÉÀ Ó\n" +" ÓÕÝÅÓÔ×ÕÀÝÉÍ ÆÁÊÌÏÍ ÎÁÚÎÁÞÅÎÉÑ\n" +" --sparse=WHEN ÕÐÒÁ×ÌÑÅÔ ÓÏÚÄÁÎÉÅÍ ÒÁÚÒÑÖÅÎÎÙÈ ÆÁÊÌÏ×\n" +" --strip-trailing-slashes ÕÄÁÌÑÅÔ ×ÓÅ ËÏÎÅÞÎÙÅ ÐÒÏÂÅÌÙ ÉÚ ËÁÖÄÏÇÏ\n" +" ÁÒÇÕÍÅÎÔÁ SOURCE\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" +" -s, --symbolic-link ÓÏÚÄÁ×ÁÔØ ÓÉÍ×ÏÌÉÞÅÓËÉÅ ÓÓÙÌËÉ ×ÍÅÓÔÏ\n" +" ËÏÐÉÒÏ×ÁÎÉÑ\n" +" -S, --suffix=SUFFUX ÕÓÔÁÎÏ×ÉÔØ ÓÕÆÆÉËÓ ÄÌÑ ÚÁÐÁÓÎÙÈ ËÏÐÉÊ ËÁË\n" +" SUFFIX\n" +" --target-directory=DIRECTORY ÐÅÒÅÍÅÓÔÉÔØ ×ÓÅ SOURCE × DIRECTORY\n" + +#: src/cp.c:221 +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +" -u, --update ËÏÐÉÒÏ×ÁÔØ ÔÏÌØËÏ ÔÏÇÄÁ ËÏÇÄÁ ÉÓÈÏÄÎÙÊ ÆÁÊÌ\n" +" ÎÏ×ÅÅ ÞÅÍ ÆÁÊÌ ÎÁÚÎÁÞÅÎÉÑ, ÉÌÉ ËÏÇÄÁ ÆÁÊÌ\n" +" ÎÁÚÎÁÞÅÎÉÑ ÏÔÓÕÔÓÔ×ÕÅÔ\n" +" -v, --verbose ÐÏÑÓÎÑÔØ ÞÔÏ ÂÕÄÅÔ ÓÄÅÌÁÎÏ\n" +" -x, --one-file-system ÏÓÔÁ×ÁÔØÓÑ × ÐÒÅÄÅÌÁÈ ÏÄÎÏÊ ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÙ\n" + +#: src/cp.c:230 +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +"\n" +"ðÏ ÕÍÏÌÞÁÎÉÀ `sparse' SOURCE ÒÁÓÐÏÚÎÁÅÔÓÑ ÐÒÉ ÐÏÍÏÝÉ ÇÒÕÂÏÊ\n" +"Ü×ÒÉÓÔÉÞÅÓËÏÊ ÐÒÏÃÅÄÕÒÙ É ÓÏÏÔ×ÅÔÓÔ×ÅÎÎÏ ÓÏÚÄÁÅÔÓÑ `sparse' DEST.\n" +"á×ÔÏÍÁÔÉÞÅÓËÏÅ ÏÐÒÅÄÅÌÅÎÉÅ ÍÏÖÎÏ ÔÁËÖÅ ÚÁÄÁÔØ ÐÒÉ ÐÏÍÏÝÉ ËÌÀÞÁ --" +"sparse=auto.\n" +"ó ËÌÀÞÏÍ --sparse=always SOURCE ×ÓÅÇÄÁ ÓÏÚÄÁÅÔÓÑ `sparse' ×ÎÅ ÚÁ×ÉÓÉÍÏÓÔÉ\n" +"ÏÔ ÔÏÇÏ ÓÏÄÅÒÖÉÔ ÌÉ SOURCE ÄÌÉÎÎÙÅ ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏÓÔÉ ÎÕÌÅ×ÙÈ ÂÁÊÔÏ×.\n" +"éÓÐÏÌØÚÕÊÔÅ ËÌÀÞ --sparse=never ÄÌÑ ÚÁÐÒÅÝÅÎÉÑ ÓÏÚÄÁÎÉÑ `sparse' ÆÁÊÌÏ×.\n" +"\n" + +#: src/cp.c:239 +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"ðÏ ÕÍÏÌÞÁÎÉÀ ÓÕÆÆÉËÓ ÄÌÑ ÚÁÐÁÓÎÙÈ ËÏÐÉÊ ~, ÅÓÌÉ ÔÏÌØËÏ ÎÅ ÕÓÔÁÎÏ×ÌÅÎÁ\n" +"ÐÅÒÅÍÅÎÎÁÑ ÏËÒÕÖÅÎÉÑ SIMPLE_BACKUP_SUFFIX ÉÌÉ ËÌÀÞ --suffix. óÐÏÓÏ " +"ËÏÎÔÒÏÌÑ\n" +"×ÅÒÓÉÊ ÍÏÖÅÔ ÂÙÔØ ÕÓÔÁÎÏ×ÌÅÎ ÐÒÉ ÐÏÍÏÝÉ ËÌÀÞÁ --backup ÉÌÉ ÐÅÒÅÍÅÎÎÏÊ\n" +"ÏËÒÕÖÅÎÉÑ VERSION_CONTROL. äÏÐÕÓÔÉÍÙÅ ÚÎÁÞÅÎÉÑ:\n" +"\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +" none, off ÎÉËÏÇÄÁ ÎÅ ÓÏÚÄÁ×ÁÔØ ÒÅÚÅÒ×ÎÙÈ ËÏÐÉÊ (ÄÁÖÅ ÅÓÌÉ\n" +" ÕËÁÚÁÎ ËÌÀÞ --backup)\n" +" numbered, t ÓÏÚÄÁ×ÁÔØ ÎÕÍÅÒÏ×ÁÎÎÙÅ ËÏÐÉÉ\n" +" existing, nil ÅÓÌÉ ÓÕÝÅÓÔ×ÕÀÔ ÎÕÍÅÒÏ×ÁÎÎÙÅ ËÏÐÉÉ, ÔÏ ÓÏÚÄÁ×ÁÔØ\n" +" ÎÕÍÅÒÏ×ÁÎÎÙÅ ÉÎÁÞÅ ÓÏÚÄÁ×ÁÔØ ÐÒÏÓÔÙÅ\n" +" simple. never ×ÓÅÇÄÁ ÓÏÚÄÁ×ÁÔØ ÐÒÏÓÔÙÅ ËÏÐÉÉ\n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +"ëÏÇÄÁ ÚÁÄÁÎÙ ËÌÀÞÉ -f É -b, É SOURCE ÓÏ×ÐÁÄÁÅÔ Ó DEST cp ÓÏÚÄÁÅÔ ÒÅÚÅÒ×ÎÕÀ\n" +"ËÏÐÉÀ DEST.\n" + +#: src/cp.c:325 +#, c-format +msgid "failed to preserve times for %s" +msgstr "ÎÅ ÕÄÁÌÏÓØ ÓÏÈÒÁÎÉÔØ ×ÒÅÍÅÎÎÙÅ ÍÅÔËÉ ÄÌÑ %s" + +#: src/cp.c:349 +#, c-format +msgid "failed to preserve permissions for %s" +msgstr "ÎÅ ÕÄÁÌÏÓØ ÓÏÈÒÁÎÉÔØ ÐÒÁ×Á ÄÏÓÔÕÐÁ ÄÌÑ %s" + +#: src/cp.c:434 +#, c-format +msgid "cannot make directory %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ËÁÔÁÌÏÇ %s" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +msgid "missing file argument" +msgstr "ÐÒÏÐÕÝÅÎ ÁÒÇÕÍÅÎÔ, ÚÁÄÁÀÝÉÊ ÆÁÊÌ" + +#: src/cp.c:498 +msgid "missing destination file" +msgstr "ÐÒÏÐÕÝÅÎ ÁÒÇÕÍÅÎÔ, ÚÁÄÁÀÝÉÊ ÃÅÌÅ×ÏÊ ÆÁÊÌ" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "ÏÂÒÁÝÅÎÉÅ Ë %s" + +#: src/cp.c:546 +#, c-format +msgid "%s: specified target is not a directory" +msgstr "%s: ÕËÁÚÁÎÎÏÅ ÎÁÚÎÁÞÅÎÉÅ ÎÅ Ñ×ÌÑÅÔÓÑ ËÁÔÁÌÏÇÏÍ" + +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "ËÏÐÉÒÕÀÔÓÑ ÎÅÓËÏÌØËÏ ÆÁÊÌÏ×, ÎÏ ÐÏÓÌÅÄÎÉÊ ÁÒÇÕÍÅÎÔ %s ÎÅ ËÁÔÁÌÏÇ" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "ÐÒÉ ÓÏÈÒÁÎÅÎÉÉ ÐÕÔÉ ÐÏÓÌÅÄÎÉÊ ÁÒÇÕÍÅÎÔ ÄÏÌÖÅÎ ÂÙÔØ ËÁÔÁÌÏÇÏÍ" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: ËÌÀÞ --version-control (-V) ÕÓÔÁÒÅÌ; ÐÏÄÄÅÒÖËÁ ÅÇÏ\n" +"ÂÕÄÅÔ ÕÄÁÌÅÎÁ × ÏÄÎÏÍ ÉÚ ÂÕÄÕÝÉÈ ×ÙÐÕÓËÏ×.\n" +"éÓÐÏÌØÚÕÊÔÅ ×ÍÅÓÔÏ ÎÅÇÏ --backup=%s." + +#: src/cp.c:972 src/ln.c:464 +msgid "symbolic links are not supported on this system" +msgstr "ÓÉÍ×ÏÌØÎÙÅ ÓÓÙÌËÉ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ ÎÁ ÜÔÏÊ ÓÉÓÔÅÍÅ" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ÖÅÓÔËÕÀ É ÓÉÍ×ÏÌÉÞÅÓËÕÀ ÓÓÙÌËÕ ÏÄÎÏ×ÒÅÍÅÎÎÏ" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "ÔÉÐ ÒÅÚÅÒ×ÎÏÊ ËÏÐÉÉ" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "óÔÀÁÒÔ ëÅÍÐ É äÅ×ÉÄ íÁËëÅÎÚÉ" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "ÏÛÉÂËÁ ÞÔÅÎÉÑ" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "××ÏÄ ÓÔÁÌ ÎÅÄÏÓÔÕÐÅÎ" + +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s: ÎÏÍÅÒ ÓÔÒÏËÉ ×ÎÅ ÄÏÐÕÓÔÉÍÙÈ ÐÒÅÄÅÌÏ×" + +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: `%s' ÎÏÍÅÒ ÓÔÒÏËÉ ×ÎÅ ÄÏÐÕÓÔÉÍÙÈ ÐÒÅÄÅÌÏ×" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr " ÐÒÉ ÐÏ×ÔÏÒÅ %d\n" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s: `%s': ÓÏ×ÐÁÄÅÎÉÅ ÎÅ ÎÁÊÄÅÎÏ" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "ÏÛÉÂËÁ ÐÏÉÓËÁ ÒÅÇÕÌÑÒÎÏÇÏ ×ÙÒÁÖÅÎÉÑ" + +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "ÏÛÉÂËÁ ÚÁÐÉÓÉ ÄÌÑ `%s'" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "%s: ÐÏÓÌÅ ÒÁÚÄÅÌÉÔÅÌÑ ÏÖÉÄÁÅÔÓÑ `+' ÉÌÉ `-'" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s: ÐÏÓÌÅ `%c' ÏÖÉÄÁÅÔÓÑ ÃÅÌÏÅ ÞÉÓÌÏ" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "%s: ÐÒÉ ÚÁÄÁÎÉÉ ÞÉÓÌÁ ÐÏ×ÔÏÒÏ× ÎÅÏÂÈÏÄÉÍÁ `}'" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "%s: ÍÅÖÄÕ `{' É `}' ÄÏÌÖÎÏ ÂÙÔØ ÃÅÌÏÅ ÞÉÓÌÏ" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s: ÐÒÏÐÕÝÅÎ ÚÁËÒÙ×ÁÀÝÉÊ ÒÁÚÄÅÌÉÔÅÌØ `%c'" + +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: ÎÅÄÏÐÕÓÔÉÍÏÅ ÒÅÇÕÌÑÒÎÏÅ ×ÙÒÁÖÅÎÉÅ: %s" + +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "%s: ÎÅÄÏÐÕÓÔÉÍÙÊ ÏÂÒÁÚÅÃ" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s: ÎÏÍÅÒ ÓÔÒÏËÉ ÄÏÌÖÅÎ ÂÙÔØ ÂÏÌØÛÅ ÎÕÌÑ" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "ÎÏÍÅÒ ÓÔÒÏËÉ `%s' ÍÅÎØÛÅ ÎÏÍÅÒÁ ÐÒÅÄÙÄÕÝÅÊ ÓÔÒÏËÉ, %s" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: ÎÏÍÅÒ ÓÔÒÏËÉ `%s' ÒÁ×ÅÎ ÐÒÅÄÙÄÕÝÅÍÕ ÎÏÍÅÒÕ ÓÔÒÏËÉ" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "ÐÒÏÐÕÝÅÎ ÏÐÉÓÁÔÅÌØ ÐÒÅÏÂÒÁÚÏ×ÁÎÉÑ × ÓÕÆÆÉËÓÅ" + +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "ÎÅ×ÅÒÎÙÊ ÏÐÉÓÁÔÅÌØ ÐÒÅÏÂÒÁÚÏ×ÁÎÉÑ × ÓÕÆÆÉËÓÅ: %c" + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "ÎÅ×ÅÒÎÙÊ ÏÐÉÓÁÔÅÌØ ÐÒÅÏÂÒÁÚÏ×ÁÎÉÑ × ÓÕÆÆÉËÓÅ: \\%.3o" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "ÐÒÏÐÕÝÅÎÏ ÏÐÉÓÁÎÉÅ ÐÒÅÏÂÒÁÚÏ×ÁÎÉÑ (%%) × ÓÕÆÆÉËÓÅ" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "ÓÌÉÛËÏÍ ÍÎÏÇÏ ÏÐÉÓÁÎÉÊ ÐÒÅÏÂÒÁÚÏ×ÁÎÉÑ (%%) × ÓÕÆÆÉËÓÅ" + +#: src/csplit.c:1441 +#, c-format +msgid "%s: invalid number" +msgstr "%s: ÎÅÄÏÐÕÓÔÉÍÏÅ ÞÉÓÌÏ" + +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... æáêì ïâòáúåã...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" +"÷Ù×ÏÄÉÔ ÞÁÓÔÉ æáêìá, ÒÁÚÄÅÌÅÎÎÙÅ ïâòáúãïí (ÏÂÒÁÚÃÁÍÉ) × ÆÁÊÌÙ `xx01', " +"`xx02',...,\n" +"É ÐÅÞÁÔÁÅÔ ÞÉÓÌÏ ÂÁÊÔ × ËÁÖÄÏÊ ÞÁÓÔÉ ÎÁ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ.\n" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" +" -b, --suffix-format=æïòíáô ÉÓÐÏÌØÚÏ×ÁÔØ æïòíáô ËÁË × sprintf ×ÍÅÓÔÏ %d\n" +" -f, --prefix=ðòåæéëó ÉÓÐÏÌØÚÏ×ÁÔØ ðòåæéëó ×ÍÅÓÔÏ `xx'\n" +" -k, --keep-files ÎÅ ÕÄÁÌÑÔØ ×ÙÈÏÄÎÙÅ ÆÁÊÌÙ ÐÒÉ ÏÛÉÂËÅ\n" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" +" -n, --digits=ãéæòù ÉÓÐÏÌØÚÏ×ÁÔØ ÚÁÄÁÎÎÏÅ ÞÉÓÌÏ ãéæò ×ÍÅÓÔÏ Ä×ÕÈ\n" +" -s, --quiet, --silent ÎÅ ÐÅÞÁÔÁÔØ ÒÁÚÍÅÒÙ ×ÙÈÏÄÎÙÈ ÆÁÊÌÏ×\n" +" -z, --elide-empty-files ÕÄÁÌÑÔØ ÐÕÓÔÙÅ ×ÙÈÏÄÎÙÅ ÆÁÊÌÙ\n" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" +"\n" +"åÓÌÉ æáêì ÚÁÄÁÎ ËÁË -, ÞÉÔÁÅÔ ÓÔÁÎÄÁÒÔÎÙÊ ××ÏÄ. ïâòáúåã ÚÁÄÁÅÔÓÑ ÓÌÅÄÕÀÝÉÍ\n" +"ÏÂÒÁÚÏÍ:\n" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" +"\n" +" ãåìïå ËÏÐÉÒÏ×ÁÔØ ÄÏ ÓÔÒÏËÉ Ó ÚÁÄÁÎÎÙÍ ÎÏÍÅÒÏÍ, ÎÏ ÎÅ " +"×ËÌÀÞÉÔÅÌØÎÏ\n" +" /REGEXP/[óä÷éç] ËÏÐÉÒÏ×ÁÔØ ÄÏ ÓÏ×ÐÁ×ÛÅÊ ÓÔÒÏËÉ, ÎÏ ÎÅ ×ËÌÀÞÉÔÅÌØÎÏ\n" +" %%REGEXP%%[óä÷éç] ÐÒÏÐÕÓÔÉÔØ ÄÏ ÓÏ×ÐÁ×ÛÅÊ ÓÔÒÏËÉ, ÎÏ ÎÅ ×ËÌÀÞÉÔÅÌØÎÏ\n" +" {ãåìïå} ÐÏ×ÔÏÒÉÔØ ÐÒÅÄÙÄÕÝÉÊ ÏÂÒÁÚÅà ÚÁÄÁÎÎÏÅ ÞÉÓÌÏ ÒÁÚ\n" +" {*} ÐÏ×ÔÏÒÉÔØ ÐÒÅÄÙÄÕÝÉÊ ÏÂÒÁÚÅà ÎÁÉÂÏÌØÛÅÅ ×ÏÚÍÏÖÎÏÅ ÞÉÓÌÏ " +"ÒÁÚ\n" +"\n" +"äÏÐÏÌÎÉÔÅÌØÎÙÊ óä÷éç ÓÔÒÏË -- ÜÔÏ ÏÂÑÚÁÔÅÌØÎÙÊ ÓÉÍ×ÏÌ `+' ÉÌÉ `-' Ó " +"ÐÏÓÌÅÄÕÀÝÉÍ\n" +"ÐÏÌÏÖÉÔÅÌØÎÙÍ ÃÅÌÙÍ ÞÉÓÌÏÍ.\n" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "äÅ×ÉÄ éÎÁÔ, äÅ×ÉÄ íÁËëÅÎÚÉ É äÖÉÍ íÅÅÒÉÎÇ" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... [æáêì]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" +"ðÅÞÁÔÁÅÔ ×ÙÂÒÁÎÎÙÅ ÞÁÓÔÉ ÓÔÒÏË ÉÚ ËÁÖÄÏÇÏ æáêìá ÎÁ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ.\n" +"\n" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" +" -b, --bytes=óðéóïë ×Ù×ÏÄÉÔØ ÔÏÌØËÏ ÚÁÄÁÎÎÙÅ ÂÁÊÔÙ\n" +" -c, --characters=óðéóïë ×Ù×ÏÄÉÔØ ÔÏÌØËÏ ÚÁÄÁÎÎÙÅ ÚÎÁËÉ\n" +" -d, --delimiter=òáúäåìéôåìø ÉÓÐÏÌØÚÏ×ÁÔØ ÄÌÑ ÒÁÚÄÅÌÅÎÉÑ ÐÏÌÅÊ " +"òáúäåìéôåìø\n" +" ×ÍÅÓÔÏ ÔÁÂÕÌÑÃÉÉ\n" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" +" -f, --fields=óðéóïë ×Ù×ÏÄÉÔØ ÔÏÌØËÏ ÚÁÄÁÎÎÙÅ ÐÏÌÑ; ÔÁËÖÅ " +"ÐÅÞÁÔÁÔØ\n" +" ×ÓÅ ÓÔÒÏËÉ, ÎÅ ÓÏÄÅÒÖÁÝÉÅ ÒÁÚÄÅÌÉÔÅÌÅÊ, " +"ÅÓÌÉ\n" +" ÔÏÌØËÏ ÎÅ ÚÁÄÁÎ ËÌÀÞ -s\n" +" -n (ÉÇÎÏÒÉÒÕÅÔÓÑ)\n" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" +" -s, --only-delimited ÎÅ ÐÅÞÁÔÁÔØ ÓÔÒÏËÉ, ÎÅ ÓÏÄÅÒÖÁÝÉÅ " +"ÒÁÚÄÅÌÉÔÅÌÅÊ\n" +" --output-delimiter=óôòïëá ÉÓÐÏÌØÚÏ×ÁÔØ óôòïëõ ÄÌÑ ÒÁÚÄÅÌÅÎÉÑ ÐÏÌÅÊ " +"ÐÒÉ\n" +" ×Ù×ÏÄÅ, ÐÏ ÕÍÏÌÞÁÎÉÀ ÉÓÐÏÌØÚÕÅÔÓÑ " +"ÒÁÚÄÅÌÉÔÅÌØ\n" +" ÄÌÑ ××ÏÄÁ\n" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"éÓÐÏÌØÚÕÊÔÅ ÏÄÉÎ É ÔÏÌØËÏ ÏÄÉÎ ÉÚ ËÌÀÞÅÊ -b, -c ÉÌÉ -f. óðéóëé ÓÏÓÔÏÑÔ ÉÚ\n" +"ÄÉÁÐÁÚÏÎÁ ÉÌÉ ÎÅÓËÏÌØËÉÈ ÄÉÁÐÁÚÏÎÏ×, ÒÁÚÄÅÌÅÎÎÙÈ ÚÁÐÑÔÙÍÉ. äÉÁÐÁÚÏÎ " +"ÚÁÄÁÅÔÓÑ\n" +"ÓÌÅÄÕÀÝÉÍ ÏÂÒÁÚÏÍ:\n" +"\n" +" î î-ÔÙÊ ÂÁÊÔ, ÚÎÁË ÉÌÉ ÐÏÌÅ, ÏÔÓÞÉÔÙ×ÁÅÔÓÑ ÏÔ 1\n" +" î- ÏÔ î-ÔÏÇÏ ÂÁÊÔÁ, ÚÎÁËÁ ÉÌÉ ÐÏÌÑ ÄÏ ËÏÎÃÁ ÓÔÒÏËÉ\n" +" î-í ÏÔ î-ÔÏÇÏ ÄÏ í-ÔÏÇÏ (×ËÌÀÞÉÔÅÌØÎÏ) ÂÁÊÔÁ, ÚÎÁËÁ ÉÌÉ ÐÏÌÑ\n" +" -í ÏÔ ÐÅÒ×ÏÇÏ ÄÏ í-ÔÏÇÏ (×ËÌÀÞÉÔÅÌØÎÏ) ÂÁÊÔÁ, ÚÎÁËÁ ÉÌÉ ÐÏÌÑ\n" +"\n" +"åÓÌÉ æáêì ÎÅ ÚÁÄÁÎ ÉÌÉ ÚÁÄÁÎ ËÁË -, ÞÉÔÁÅÔ ÓÔÁÎÄÁÒÔÎÙÊ ××ÏÄ.\n" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "ÎÅÐÒÁ×ÉÌØÎÙÊ ÓÐÉÓÏË ÂÁÊÔÏ× ÉÌÉ ÐÏÌÅÊ" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "ÍÏÖÎÏ ÚÁÄÁÔØ ÔÏÌØËÏ ÏÄÉÎ ÔÉÐ ÓÐÉÓËÁ" + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ÓÐÉÓÏË ÐÏÚÉÃÉÊ" + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ÓÐÉÓÏË ÐÏÌÅÊ" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "ÒÁÚÄÅÌÉÔÅÌØ ÄÏÌÖÅÎ ÂÙÔØ ÏÄÎÉÍ ÓÉÍ×ÏÌÏÍ" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "×Ù ÄÏÌÖÎÙ ÚÁÄÁÔØ ÓÐÉÓÏË ÂÁÊÔ, ÓÉÍ×ÏÌÏ× ÉÌÉ ÐÏÌÅÊ" + +#: src/cut.c:720 +msgid "an input delimiter may be specified only when operating on fields" +msgstr "" +"ÒÁÚÄÅÌÉÔÅÌØ ÄÌÑ ×ÈÏÄÎÙÈ ÄÁÎÎÙÈ ÍÏÖÎÏ ÚÁÄÁ×ÁÔØ ÔÏÌØËÏ ÐÒÉ ÏÂÒÁÂÏÔËÅ ÐÏÌÅÊ" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" +"ÚÁÐÒÅÝÅÎÉÅ ×Ù×ÏÄÁ ÓÔÒÏË, ÎÅ ÓÏÄÅÒÖÁÝÉÈ ÒÁÚÄÅÌÉÔÅÌÅÊ,\n" +"ÉÍÅÅÔ ÓÍÙÓÌ ÔÏÌØËÏ ÐÒÉ ÒÁÂÏÔÅ Ó ÐÏÌÑÍÉ" + +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... [+æïòíáô]\n" +" ÉÌÉ: %s [-u|--utc|--universal] [ííääÞÞÍÍ[[÷÷]çç][.ÓÓ]]\n" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" +"÷Ù×ÏÄÉÔ ÔÅËÕÝÅÅ ×ÒÅÍÑ × ÚÁÄÁÎÎÏÍ æïòíáôå, ÉÌÉ ÕÓÔÁÎÁ×ÌÉ×ÁÅÔ ÓÉÓÔÅÍÎÏÅ " +"×ÒÅÍÑ.\n" +"\n" +" -d, --date=óôòïëá ÐÏËÁÚÁÔØ ÎÅ ÔÅËÕÝÅÅ ×ÒÅÍÑ, Á ×ÒÅÍÑ, ÏÐÉÓÁÎÎÏÅ\n" +" ÚÁÄÁÎÎÏÊ óôòïëïê\n" +" -f, --file=æáêì ÓÏÏÔ×ÅÔÓÔ×ÕÅÔ ÐÒÉÍÅÎÅÎÉÀ --date ÄÌÑ ËÁÖÄÏÊ\n" +" ÓÔÒÏËÉ æáêìá\n" +" -Ióðåã, --iso-8601[=óðåã] ×Ù×ÅÓÔÉ ÄÁÔÕ/×ÒÅÍÑ × ×ÉÄÅ, ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÅÍ\n" +" ÓÔÁÎÄÁÒÔÕ ISO-8601.\n" +" óðåã=`date' ÄÌÑ ÐÏÌÕÞÅÎÉÑ ÔÏÌØËÏ ÄÁÔÙ,\n" +" `hours', `minutes' ÉÌÉ `seconds' ÄÌÑ ÐÏÌÕÞÅÎÉÑ\n" +" ÄÁÔÙ É ×ÒÅÍÅÎÉ Ó ÕËÁÚÁÎÎÏÊ ÔÏÞÎÏÓÔØÀ.\n" +" --iso-8601 ÂÅÚ óðåã ÜË×É×ÁÌÅÎÔÎÏ `date'.\n" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" +" -r, --reference=æáêì ÐÏËÁÚÁÔØ ×ÒÅÍÑ ÐÏÓÌÅÄÎÅÇÏ ÉÚÍÅÎÅÎÉÑ æáêìá\n" +" -R, --rfc-822 ×Ù×ÏÄÉÔØ ×ÒÅÍÑ × ÓÏÏÔ×ÅÔÓÔ×ÉÉ Ó RFC-822\n" +" -s, --set=óôòïëá ÕÓÔÁÎÏ×ÉÔØ ×ÒÅÍÑ, ÏÐÉÓÁÎÎÏÅ óôòïëïê\n" +" -u, --utc, --universal ÐÏËÁÚÁÔØ ÉÌÉ ÕÓÔÁÎÏ×ÉÔØ ÕÎÉ×ÅÒÓÁÌØÎÏÅ\n" +" ËÏÏÒÄÉÎÉÒÏ×ÁÎÎÏÅ ×ÒÅÍÑ\n" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" +"\n" +"æïòíáô ÕÐÒÁ×ÌÑÅÔ ×Ù×ÏÄÏÍ. åÄÉÎÓÔ×ÅÎÎÙÊ ËÌÀÞ, ÄÏÐÕÓÔÉÍÙÊ ÄÌÑ ×ÔÏÒÏÊ\n" +"ÆÏÒÍÙ, ÚÁÄÁÅÔ ËÏÏÒÄÉÎÉÒÏ×ÁÎÎÏÅ ÕÎÉ×ÅÒÓÁÌØÎÏÅ ×ÒÅÍÑ. ÷ÏÓÐÒÉÎÉÍÁÀÔÓÑ\n" +"ÓÌÅÄÕÀÝÉÅ ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏÓÔÉ:\n" +"\n" +" %% ÚÎÁË %\n" +" %a ÍÅÓÔÎÏÅ ÓÏËÒÁÝÅÎÎÏÅ ÎÁÚ×ÁÎÉÅ ÄÎÑ ÎÅÄÅÌÉ (ÐÏÎ..×ÓË)\n" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" +" %A ÍÅÓÔÎÏÅ ÐÏÌÎÏÅ ÎÁÚ×ÁÎÉÅ ÄÎÑ ÎÅÄÅÌÉ, ÐÅÒÅÍÅÎÎÏÊ ÄÌÉÎÙ (ÐÏÎÅÄÅÌØÎÉË.." +"×ÏÓËÒÅÓÅÎØÅ)\n" +" %b ÍÅÓÔÎÏÅ ÓÏËÒÁÝÅÎÎÏÅ ÎÁÚ×ÁÎÉÅ ÍÅÓÑÃÁ (ÑÎ×..ÄÅË)\n" +" %B ÍÅÓÔÎÏÅ ÐÏÌÎÏÅ ÎÁÚ×ÁÎÉÅ ÍÅÓÑÃÁ, ÐÅÒÅÍÅÎÎÏÊ ÄÌÉÎÙ (ÑÎ×ÁÒØ..ÄÅËÁÂÒØ)\n" +" %c ÍÅÓÔÎÏÅ ×ÒÅÍÑ É ÄÁÔÁ (óÒÄ æÅ× 16 16:28:09 MSK 2000)\n" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" +" %C ×ÅË (ÇÏÄ, ÄÅÌÅÎÎÙÊ ÎÁ 100 É ÏËÒÕÇÌÅÎÎÙÊ ÄÏ ÃÅÌÏÇÏ) [00-99]\n" +" %d ÄÅÎØ ÍÅÓÑÃÁ (01..31)\n" +" %D ÄÁÔÁ (ÍÍ/ÄÄ/ÇÇ)\n" +" %e ÄÅÎØ ÍÅÓÑÃÁ, ÐÒÏÂÅÌÙ ×ÍÅÓÔÏ ÎÕÌÅÊ ( 1..31)\n" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" +" %F ÜË×É×ÁÌÅÎÔÎÏ %Y-%m-%d\n" +" %g Ä×ÕÚÎÁÞÎÙÊ ÇÏÄ, ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÉÊ ÎÏÍÅÒÕ ÎÅÄÅÌÉ %V\n" +" %G ÞÅÔÙÒÅÈÚÎÁÞÎÙÊ ÇÏÄ, ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÉÊ ÎÏÍÅÒÕ ÎÅÄÅÌÉ %V\n" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" +" %h ÔÏ ÖÅ, ÞÔÏ É %b\n" +" %H ÞÁÓ (00..23)\n" +" %I ÞÁÓ (01..12)\n" +" %j ÎÏÍÅÒ ÄÎÑ × ÇÏÄÕ (001..366)\n" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" +" %k ÞÁÓ ( 0..23)\n" +" %l ÞÁÓ ( 1..12)\n" +" %m ÍÅÓÑà (01..12)\n" +" %M ÍÉÎÕÔÙ (00..59)\n" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" +" %n ÎÏ×ÁÑ ÓÔÒÏËÁ\n" +" %N ÎÁÎÏÓÅËÕÎÄÙ (000000000..999999999)\n" +" %p ÍÅÓÔÎÙÊ ÉÎÄÉËÁÔÏÒ AM ÉÌÉ PM ÚÁÇÌÁ×ÎÙÍÉ ÂÕË×ÁÍÉ (ÐÕÓÔÏ ×Ï ÍÎÏÇÉÈ " +"ÌÏËÁÌÑÈ)\n" +" %P ÍÅÓÔÎÙÊ ÉÎÄÉËÁÔÏÒ AM ÉÌÉ PM ÓÔÒÏÞÎÙÍÉ ÂÕË×ÁÍÉ (ÐÕÓÔÏ ×Ï ÍÎÏÇÉÈ " +"ÌÏËÁÌÑÈ)\n" +" %r ×ÒÅÍÑ, 12-ÞÁÓÏ×ÏÊ ÆÏÒÍÁÔ (ÞÞ:ÍÍ:ÓÓ [AP]M)\n" +" %R ×ÒÅÍÑ, 24-ÞÁÓÏ×ÏÊ ÆÏÒÍÁÔ (ÞÞ:ÍÍ)\n" +" %s ÞÉÓÌÏ ÓÅËÕÎÄ, ÉÓÔÅËÛÉÈ Ó `00:00:00 1970-01-01 UTC' (ÒÁÓÛÉÒÅÎÉÅ GNU)\n" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" +" %S ÓÅËÕÎÄÙ (00..60); 60-ÁÑ ÎÕÖÎÁ ÄÌÑ ×ÉÓÏËÏÓÎÏÊ ÓÅËÕÎÄÙ\n" +" %t ÇÏÒÉÚÏÎÔÁÌØÎÁÑ ÔÁÂÕÌÑÃÉÑ\n" +" %T ×ÒÅÍÑ, 24-ÞÁÓÏ×ÏÊ ÆÏÒÍÁÔ (ÞÞ:ÍÍ:ÓÓ)\n" +" %u ÄÅÎØ ÎÅÄÅÌÉ (1..7); 1 ÏÂÏÚÎÁÞÁÅÔ ÐÏÎÅÄÅÌØÎÉË\n" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" +" %U ÎÏÍÅÒ ÎÅÄÅÌÉ × ÇÏÄÕ, ÅÓÌÉ ÐÅÒ×ÙÊ ÄÅÎØ ÎÅÄÅÌÉ -- ×ÏÓËÒÅÓÅÎØÅ (00..53)\n" +" %V ÎÏÍÅÒ ÎÅÄÅÌÉ × ÇÏÄÕ, ÅÓÌÉ ÐÅÒ×ÙÊ ÄÅÎØ ÎÅÄÅÌÉ -- ÐÏÎÅÄÅÌØÎÉË (01..52)\n" +" %w ÄÅÎØ ÎÅÄÅÌÉ (0..6), 0 ÏÚÎÁÞÁÅÔ ×ÏÓËÒÅÓÅÎØÅ\n" +" %W ÎÏÍÅÒ ÎÅÄÅÌÉ × ÇÏÄÕ, ÅÓÌÉ ÐÅÒ×ÙÊ ÄÅÎØ ÎÅÄÅÌÉ -- ÐÏÎÅÄÅÌØÎÉË (00..53)\n" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" +" %x ÍÅÓÔÎÏÅ ÐÒÅÄÓÔÁ×ÌÅÎÉÅ ÄÁÔÙ (ÄÄ/ÍÍ/ÇÇ)\n" +" %X ÍÅÓÔÎÏÅ ÐÒÅÄÓÔÁ×ÌÅÎÉÅ ×ÒÅÍÅÎÉ (%H:%M:%S)\n" +" %y ÐÏÓÌÅÄÎÉÅ Ä×Å ÃÉÆÒÙ ÇÏÄÁ (00..99)\n" +" %Y ÇÏÄ (1970...)\n" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" +" %z ÞÁÓÏ×ÏÊ ÐÏÑÓ × ÓÔÉÌÅ RFC-822 (+0400) (ÎÅÓÔÁÎÄÁÒÔÎÏÅ ÒÁÓÛÉÒÅÎÉÅ)\n" +" %Z ÞÁÓÏ×ÏÊ ÐÏÑÓ (ÎÁÐÒÉÍÅÒ MSK), ÉÌÉ ÎÉÞÅÇÏ, ÅÓÌÉ ÅÇÏ ÎÅ×ÏÚÍÏÖÎÏ " +"ÏÐÒÅÄÅÌÉÔØ\n" +"\n" +"ðÏ ÕÍÏÌÞÁÎÉÀ date ÚÁÐÏÌÎÑÅÔ ÐÏÌÑ ÞÉÓÅÌ ÎÕÌÑÍÉ. GNU date ÒÁÓÐÏÚÎÁÅÔ " +"ÓÌÅÄÕÀÝÉÅ\n" +"ÍÏÄÉÆÉËÁÔÏÒÙ ÍÅÖÄÕ `%' É ÞÉÓÌÏ×ÏÊ ÄÉÒÅËÔÉ×ÏÊ:\n" +"\n" +" `-'(ÍÉÎÕÓ) ÎÅ ÚÁÐÏÌÎÑÔØ ÄÁÎÎÏÅ ÐÏÌÅ\n" +" `_'(ÐÏÄÞÅÒË) ÚÁÐÏÌÎÑÔØ ÐÒÏÂÅÌÁÍÉ\n" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "ÓÔÁÎÄÁÒÔÎÙÊ ××ÏÄ" + +#: src/date.c:268 src/date.c:460 +#, c-format +msgid "invalid date `%s'" +msgstr "ÄÁÔÁ `%s' ÚÁÄÁÎÁ ÎÅÐÒÁ×ÉÌØÎÏ" + +#: src/date.c:364 +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "ËÌÀÞÉ ÄÌÑ ×Ù×ÏÄÁ ÄÁÔÙ ×ÚÁÉÍÎÏ ÉÓËÌÀÞÁÀÔ ÄÒÕÇ ÄÒÕÇÁ" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "" +"ËÌÀÞÉ ÄÌÑ ÕÓÔÁÎÏ×ËÉ É ÄÌÑ ÏÔÏÂÒÁÖÅÎÉÑ ×ÒÅÍÅÎÉ ÎÅ ÍÏÇÕÔ ÐÒÉÍÅÎÑÔØÓÑ ×ÍÅÓÔÅ" + +#: src/date.c:377 +#, c-format +msgid "too many non-option arguments: %s%s" +msgstr "ÓÌÉÛËÏÍ ÍÎÏÇÏ ÎÅ Ñ×ÌÑÀÝÉÈÓÑ ËÌÀÞÁÍÉ ÁÒÇÕÍÅÎÔÏ×: %s%s" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" +"ÁÒÇÕÍÅÎÔ `%s' ÎÅ ÎÁÞÉÎÁÅÔÓÑ ÓÏ ÚÎÁËÁ `+';\n" +"ðÒÉ ÚÁÄÁÎÉÉ ÄÁÔÙ, ËÁÖÄÙÊ ÁÒÇÕÍÅÎÔ, ÎÅ Ñ×ÌÑÀÝÉÊÓÑ ËÌÀÞÏÍ, ÄÏÌÖÅÎ ÂÙÔØ " +"ÓÔÒÏËÏÊ\n" +"ÆÏÒÍÁÔÁ É ÎÁÞÉÎÁÔØÓÑ ÓÉÍ×ÏÌÏÍ `+'." + +#: src/date.c:397 +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "" +"ÐÒÉ ÉÓÐÏÌØÚÏ×ÁÎÉÉ ËÌÀÞÁ --rfc-822 (-R) ÎÅÌØÚÑ ÚÁÄÁ×ÁÔØ ÆÏÒÍÁÔÎÕÀ ÓÔÒÏËÕ" + +#: src/date.c:433 +msgid "undefined" +msgstr "ÎÅÏÐÒÅÄÅÌÅÎÏ" + +#: src/date.c:435 +msgid "cannot get time of day" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÕÚÎÁÔØ ×ÒÅÍÑ" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÕÓÔÁÎÏ×ÉÔØ ÄÁÔÕ" + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "ðÏÌ òÕÂÉÎ, äÅ×ÉÄ íÁËëÅÎÚÉ É óÔÀÁÒÔ ëÅÍÐ" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" +"ëÏÐÉÒÕÅÔ ÆÁÊÌ, ÐÒÅÏÂÒÁÚÕÅÔ É ÆÏÒÍÁÔÉÒÕÅÔ × ÚÁ×ÉÓÉÍÏÓÔÉ ÏÔ ËÌÀÞÅÊ.\n" +"\n" +" bs=BYTES ÕÓÔÁÎÏ×ÉÔØ ÒÁÚÍÅÒ ×ÈÏÄÎÏÇÏ É ×ÙÈÏÄÎÏÇÏ ÂÕÆÅÒÏ× × BYTES " +"ÂÁÊÔ\n" +" cbs=BYTES ÕÓÔÁÎÏ×ÉÔØ ÒÁÚÍÅÒ ÂÕÆÅÒÁ ÐÒÅÏÂÒÁÚÏ×ÁÎÉÑ × BYTES ÂÁÊÔ\n" +" conv=KEYWORDS ÐÒÅÏÂÒÁÚÏ×Ù×ÁÔØ ÆÁÊÌ × ÓÏÏÔ×ÅÔÓÔ×ÉÉ ÓÏ ÓÐÉÓËÏÍ. ïÔÄÅÌØÎÙÅ\n" +" ÜÌÅÍÅÎÔÙ ÐÅÒÅÞÉÓÌÑÀÔÓÑ ÞÅÒÅÚ ÚÁÐÑÔÕÀ\n" +" count=BLOCKS ËÏÐÉÒÏ×ÁÔØ ÔÏÌØËÏ BLOCKS ×ÈÏÄÎÙÈ ÂÌÏËÏ×\n" +" ibs=BYTES ÕÓÔÁÎÏ×ÉÔØ ÒÁÚÍÅÒ ×ÈÏÄÎÏÇÏ ÂÕÆÅÒÁ × BYTES ÂÁÊÔ\n" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" +" if=FILE ÞÉÔÁÔØ ÆÁÊÌ ÉÚ FILE ×ÍÅÓÔÏ ÓÔÁÎÄÁÒÔÎÏÇÏ ××ÏÄÁ\n" +" obs=BYTES ÕÓÔÁÎÏ×ÉÔØ ÒÁÚÍÅÒ ×ÙÈÏÄÎÏÇÏ ÂÕÆÅÒÁ × BYTES ÂÁÊÔ\n" +" of=FILE ÐÉÓÁÔØ × FILE ×ÍÅÓÔÏ ÓÔÁÎÄÁÒÔÎÏÇÏ ×Ù×ÏÄÁ,\n" +" ÎÅ ÏÂÎÕÌÑÔØ ÆÁÊÌ\n" +" seek=BLOCKS ÐÒÏÐÕÓÔÉÔØ BLOCKS ÂÌÏËÏ× ÏÔ ÎÁÞÁÌÁ ×ÙÈÏÄÎÏÇÏ ÆÁÊÌÁ\n" +" skip=BLOCKS ÐÒÏÐÕÓÔÉÔØ BLOCKS ÂÌÏËÏ× ÏÔ ÎÁÞÁÌÁ ×ÈÏÄÎÏÇÏ ÆÁÊÌÁ\n" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" +"\n" +"ðÏÓÌÅ BLOCKS É BYTES ÍÏÖÅÔ ÓÔÏÑÔØ ÕÍÎÏÖÁÀÝÉÊ ÓÕÆÆÉËÓ:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824 É ÔÁË ÄÁÌÅÅ ÄÌÑ T, P, E, Z, Y.\n" +"ëÁÖÄÙÊ KEYWORD ÍÏÖÅÔ ÂÙÔØ:\n" +"\n" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" +" ascii ÉÚ EBCDIC × ASCII\n" +" ebcdic ÉÚ ASCII × EBCDIC\n" +" ibm ÉÚ ASCII ÁÌØÔÅÒÎÁÔÉ×ÎÕÀ EBCDIC\n" +" block ÚÁÐÏÌÎÑÔØ ÚÁÐÉÓÉ ÚÁËÁÎÞÉ×ÁÀÝÉÅÓÑ ÐÅÒÅ×ÏÄÏÍ ÓÔÒÏËÉ ÐÒÏÂÅÌÁÍÉ\n" +" unblock ÚÁÍÅÎÑÔØ ÚÁ×ÅÒÛÁÀÝÉÅ ÐÒÏÂÅÌÙ ÎÁ ÐÅÒÅ×ÏÄ ÓÔÒÏËÉ\n" +" lcase ÉÚÍÅÎÑÔØ ÒÅÇÉÓÔÒ Ó ×ÅÒÈÎÅÇÏ ÎÁ ÎÉÖÎÉÊ\n" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" +" notrunc ÎÅ ÏÂÒÅÚÁÔØ ×ÙÈÏÄÎÏÊ ÆÁÊÌ\n" +" ucase ÉÚÍÅÎÑÔØ ÒÅÇÉÓÔÒ Ó ÎÉÖÎÅÇÏ ÎÁ ×ÅÒÈÎÉÊ\n" +" swab ÍÅÎÑÔØ ÍÅÓÔÁÍÉ ËÁÖÄÕÀ ÐÁÒÕ ×ÈÏÄÎÙÈ ÂÁÊÔÏ×\n" +" noerror ÐÒÏÄÏÌÖÁÔØ ÐÏÓÌÅ ÏÛÉÂËÉ ÞÔÅÎÉÑ\n" +" sync ÄÏÐÏÌÎÑÔØ ËÁÖÄÙÊ ×ÈÏÄÎÏÊ ÂÌÏË ÎÕÌÑÍÉ ÄÏ ÒÁÚÍÅÒÁ\n" +" ×ÈÏÄÎÏÇÏ ÂÕÆÅÒÁ; ÅÓÌÉ ÉÓÐÏÌØÚÕÅÔÓÑ Ó -block ÉÌÉ -unblock,\n" +" ÄÏÐÏÌÎÑÔØ ÐÒÏÂÅÌÁÍÉ\n" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "%s+%s ×ÈÏÄÎÙÈ ÚÁÐÉÓÅÊ\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "%s+%s ×ÙÈÏÄÎÙÈ ÚÁÐÉÓÅÊ\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "ÕÓÅÞÅÎÎÁÑ ÚÁÐÉÓØ" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "ÕÓÅÞÅÎÙ ÚÁÐÉÓÉ" + +#: src/dd.c:382 +#, c-format +msgid "closing input file %s" +msgstr "ÚÁËÒÙÔÉÅ ×ÈÏÄÎÏÇÏ ÆÁÊÌÁ %s" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "ÚÁËÒÙÔÉÅ ×ÙÈÏÄÎÏÇÏ ÆÁÊÌÁ %s" + +#: src/dd.c:469 +#, c-format +msgid "writing to %s" +msgstr "ÚÁÐÉÓØ × %s" + +#: src/dd.c:501 +#, c-format +msgid "invalid conversion: %s" +msgstr "ÎÅÄÏÐÕÓÔÉÍÏÅ ÐÒÅÏÂÒÁÚÏ×ÁÎÉÅ: %s" + +#: src/dd.c:557 +#, c-format +msgid "unrecognized option %s" +msgstr "ËÌÀÞ %s ÎÅ ÒÁÓÐÏÚÎÁÎ" + +#: src/dd.c:610 +#, c-format +msgid "unrecognized option %s=%s" +msgstr "ËÌÀÞ %s=%s ÎÅ ÒÁÓÐÏÚÎÁÎ" + +#: src/dd.c:616 +#, c-format +msgid "invalid number %s" +msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ %s" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"ÔÏÌØËÏ ÏÄÉÎ ×ÉÄ ÐÒÅÏÂÒÁÚÏ×ÁÎÉÑ ×ÉÄÁ ÉÚ {ascii,ebcdic,ibm}, {lcase,ucase}, " +"{block,unblock}, {unblock,sync}" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" +"×ÎÉÍÁÎÉÅ: ÏÂÈÏÄÉÍ ÏÛÉÂËÕ lseek × ÑÄÒÅ ÄÌÑ ÆÁÊÌÁ (%s)\n" +" mt_type=0x%0lx -- ÓÍ. ÄÌÑ ÓÐÉÓËÁ ÔÉÐÏ×" + +#: src/dd.c:1170 src/dd.c:1188 +#, c-format +msgid "opening %s" +msgstr "ÏÔËÒÙÔÉÅ %s" + +#: src/dd.c:1196 +msgid "file offset out of range" +msgstr "ÓÄ×ÉÇ × ÆÁÊÌÅ ×ÎÅ ÄÏÐÕÓÔÉÍÏÇÏ ÄÉÁÐÁÚÏÎÁ" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "ÄÏÓÔÉÇÌÉ %s ÂÁÊÔ × ×ÙÈÏÄÎÏÍ ÆÁÊÌÅ %s" + +#: src/df.c:49 +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "ôÏÒÂØ£ÒÎ çÒÁÎÌÕÎÄ, äÅ×ÉÄ íÁËëÅÎÚÉ, ìÁÒÒÉ íÁË÷ÏÊ É ðÏÌ üÇÇÅÒÔ" + +#: src/df.c:153 +msgid "Filesystem Type" +msgstr "æ. ÓÉÓÔÅÍÁ ôÉÐ " + +#: src/df.c:155 +msgid "Filesystem " +msgstr "æÁÊÌÏ×ÁÑ ÓÉÓÔÅÍÁ " + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr " éÎÏÄÏ× éÓÐÏÌ ó×Ï éÓÐ %%" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " òÁÚÍ éÓÐ äÏÓÔ éÓÐ%%" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " òÁÚÍ éÓÐ äÏÓÔ éÓÐ%%" + +#: src/df.c:167 +#, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr " %4s-ÂÌÏËÏ× éÓÐ äÏÓÔÕÐÎÏ ÷ÓÅÇÏ" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr " %4s-ÂÌÏËÏ× éÓÐ äÏÓÔÕÐÎÏ éÓÐ%%" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr " ÓÍÏÎÔÉÒÏ×ÁÎÁ ÎÁ\n" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" +"ðÏËÁÚÁÔØ ÉÎÆÏÒÍÁÃÉÀ Ï ÆÁÊÌÏ×ÙÈ ÓÉÓÔÅÍÁÈ ÎÁ ËÏÔÏÒÙÈ ÒÁÓÐÏÌÏÖÅÎ ËÁÖÄÙÊ FILE\n" +"ÉÌÉ ÏÂÏ ×ÓÅÈ ÆÁÊÌÏ×ÙÈ ÓÉÓÔÅÍÁÈ ÐÏ ÕÍÏÌÞÁÎÉÀ.\n" +"\n" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" +" -a, --all ×ËÌÀÞÁÔØ ÆÁÊÌÏ×ÙÅ ÓÉÓÔÅÍÙ Ó ÎÕÌÅ×ÙÍ ËÏÌÉÞÅÓÔ×ÏÍ " +"ÂÌÏËÏ×\n" +" -B, --block-size=SIZE ÉÓÐÏÌØÚÏ×ÁÔØ SIZE-ÂÁÊÔÎÙÅ ÂÌÏËÉ\n" +" -h, --human-readable ÐÅÞÁÔÁÔØ ÒÁÚÍÅÒÙ × ÕÄÏÂÎÏÍ ÄÌÑ ÞÅÌÏ×ÅËÁ ×ÉÄÅ\n" +" (ÎÁÐÒÉÍÅÒ, 1K 234M 2G)\n" +" -H, --si ÔÏ ÖÅ, ÎÏ ÉÓÐÏÌØÚÏ×ÁÔØ ÓÔÅÐÅÎÉ 1000, Á ÎÅ 1024\n" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" +" -i, --inodes list inode information instead of block usage\n" +" -k, --kilobytes like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" +"\n" +"SIZE ÍÏÖÅÔ ÂÙÔØ (ÉÌÉ ÍÏÖÅÔ ÞÉÓÌÏ ÎÅÏÂÑÚÁÔÅÌØÎÏ ÏËÁÎÞÉ×ÁÀÝÅÅÓÑ ÎÁ) ÏÄÎÏ ÉÚ:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, ÉÔÁË ÄÁÌÅÅ ÄÌÑ G, T, P, E, Z, " +"Y.\n" + +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "ÆÁÊÌÏ×ÁÑ ÓÉÓÔÅÍÁ ÔÉÐÁ %s É ×ÙÂÒÁÎÁ, É ÉÓËÌÀÞÅÎÁ" + +#: src/df.c:903 +msgid "Warning: " +msgstr "ïÓÔÏÒÏÖÎÏ: " + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "%sÏÛÉÂËÁ ÞÔÅÎÉÑ ÔÁÂÌÉÃÙ ÐÏÄËÌÀÞÅÎÎÙÈ ÆÁÊÌÏ×ÙÈ ÓÉÓÔÅÍ" + +#: src/dircolors.c:103 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... [æáêì]\n" + +#: src/dircolors.c:104 +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"÷ÙÄÁÅÔ ËÏÍÁÎÄÙ ÄÌÑ ÕÓÔÁÎÏ×ËÉ ÐÅÒÅÍÅÎÎÏÊ ÏËÒÕÖÅÎÉÑ LS_COLORS.\n" +"\n" +"úÁÄÁÔØ ÆÏÒÍÁÔ ×Ù×ÏÄÁ:\n" +" -b, --sh, --bourne-shell ×Ù×ÅÓÔÉ ËÏÄ ÄÌÑ ÕÓÔÁÎÏ×ËÉ LS_COLORS ×\n" +" Bourne shell \n" +" -c, --csh, --c-shell ×Ù×ÅÓÔÉ ËÏÄ ÄÌÑ ÕÓÔÁÎÏ×ËÉ LS_COLORS × C shell\n" +" -p, --print-database ×Ù×ÅÓÔÉ ÕÓÔÁÎÏ×ËÉ ÐÏ ÕÍÏÌÞÁÎÉÀ\n" +" --help ÐÏËÁÚÁÔØ ÐÏÍÏÝØ É ×ÙÊÔÉ\n" +" --version ×Ù×ÅÓÔÉ ÉÎÆÏÒÍÁÃÉÀ Ï ×ÅÒÓÉÉ É ×ÙÊÔÉ\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" +"\n" +"åÓÌÉ ÕËÁÚÁÎ FILE, ÔÏ ÞÉÔÁÔØ ÅÇÏ ÞÔÏÂÙ ÕÚÎÁÔØ ËÁËÉÅ Ã×ÅÔÁ ËÁËÉÍ ÒÁÓÛÉÒÅÎÉÑÍ\n" +"ÓÏÐÏÓÔÁ×ÌÅÎÙ. éÎÁÞÅ ÉÓÐÏÌØÚÏ×ÁÔØ ÂÁÚÕ ÄÁÎÎÙÈ ÐÏ ÕÍÏÌÞÁÎÉÀ. äÌÑ ÂÏÌÅÅ\n" +"ÄÅÔÁÌØÎÏÇÏ ÏÐÉÓÁÎÉÑ ÆÏÒÍÁÔÁ FILE ÚÁÐÕÓÔÉÔÅ dircolors --print-database.\n" + +#: src/dircolors.c:299 +#, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s:%lu: ÎÅÐÒÁ×ÉÌØÎÁÑ ÓÔÒÏËÁ; ÐÒÏÐÕÝÅÎÁ ×ÔÏÒÁÑ ÌÅËÓÅÍÁ" + +#: src/dircolors.c:371 +#, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s:%lu ËÌÀÞÅ×ÏÅ ÓÌÏ×Ï %s ÎÅ ÒÁÓÐÏÚÎÁÎÏ" + +#: src/dircolors.c:372 +msgid "" +msgstr "<×ÎÕÔÒÅÎÎÉÊ>" + +#: src/dircolors.c:467 +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" +"ËÌÀÞÉ ÄÌÑ ×Ù×ÏÄÁ ×ÎÕÔÒÅÎÎÅÊ ÂÁÚÙ ÄÁÎÎÙÈ dircolors É ËÌÀÞÉ ÄÌÑ ×ÙÂÏÒÁ\n" +"ÓÉÎÔÁËÓÉÓÁ ÏÂÏÌÏÞËÉ ×ÚÁÉÍÎÏ ÉÓËÌÀÞÁÀÔ ÄÒÕÇ ÄÒÕÇÁ" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" +"ÁÒÇÕÍÅÎÔ FILE ÎÅ ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎ ×ÍÅÓÔÅ Ó ËÌÀÞÁÍÉ ×Ù×ÅÓÔÉ\n" +"×ÎÕÔÒÅÎÎÀÀ ÂÁÚÕ ÄÁÎÎÙÈ" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "" +"ÌÉÂÏ ÐÅÒÅÍÅÎÎÁÑ ÏËÒÕÖÅÎÉÑ SHELL ÏÔÓÕÔÓÔ×ÕÅÔ, ÌÉÂÏ ÎÅ ÚÁÄÁÎ ÔÉÐ ÉÎÔÅÒÐÒÅÔÁÔÏÒÁ" + +#: src/dirname.c:33 src/pathchk.c:59 +msgid "David MacKenzie and Jim Meyering" +msgstr "äÅ×ÉÄ íÁËëÅÎÚÉ É äÖÉÍ íÅÅÒÉÎÇ" + +#: src/dirname.c:46 +#, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s éíñ\n" +" ÉÌÉ: %s ëìàþ\n" + +#: src/dirname.c:51 +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" +"÷Ù×ÏÄÉÔ éíñ, ÕÄÁÌÉ× ËÏÍÐÏÎÅÎÔÕ ÓÐÒÁ×Á ÏÔ ÐÏÓÌÅÄÎÅÊ ËÏÓÏÊ ÞÅÒÔÙ; ÅÓÌÉ éíñ ÎÅ\n" +"ÓÏÄÅÒÖÉÔ ËÏÓÏÊ ÞÅÒÔÙ, ×Ù×ÏÄÉÔ `.' (ÔÏ ÅÓÔØ ÔÅËÕÝÉÊ ËÁÔÁÌÏÇ).\n" +"\n" + +#: src/du.c:49 +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "" +"ôÏÒÂØ£ÒÎ çÒÁÎÌÕÎÄ, äÅ×ÉÄ íÁËëÅÎÚÉ, ìÁÒÒÉ íÁË÷ÏÊ, ðÏÌ üÇÇÅÒÔ É äÖÉÍ íÅÅÒÉÎÇ" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" +"óÕÍÍÉÒÕÅÔ ÉÓÐÏÌØÚÏ×ÁÎÉÅ ÄÉÓËÏ×ÏÇÏ ÐÒÏÓÔÒÁÎÓÔ×Á ËÁÖÄÏÇÏ FILE, Ó ËÁÔÁÌÏÇÁÍÉ.\n" +"\n" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" +" -a, --all ÐÅÞÁÔÁÔØ ÏÂßÅÍ ÄÌÑ ×ÓÅÈ ÆÁÊÌÏ×, Á ÎÅ ÔÏÌØËÏ " +"ËÁÔÁÌÏÇÏ×\n" +" --apparent-size ÐÅÞÁÔÁÔØ ÄÅÊÓÔ×ÉÔÅÌØÎÙÅ ÒÁÚÍÅÒÙ, Á ÎÅ ÚÁÎÉÍÁÅÍÏÅ ÎÁ\n" +" ÄÉÓËÅ ÍÅÓÔÏ; ÈÏÔÑ ÄÅÊÓÔ×ÉÔÅÌØÎÙÊ ÒÁÚÍÅÒ ÏÂÙÞÎÏ \n" +" ÍÅÎØÛÅ, ÉÎÏÇÄÁ ÏÎ ÍÏÖÅÔ ÂÙÔØ ÂÏÌØÛÅ ÉÚ-ÚÁ ÄÙÒ ×\n" +" ÆÁÊÌÁÈ, ×ÎÕÔÒÅÎÎÅÊ ÆÒÁÇÍÅÎÔÁÃÉÉ, ËÏÓ×ÅÎÎÙÈ ÂÌÏËÏ× " +"É ÔÐ\n" +" -B, --block-size=òáúíåò ÉÓÐÏÌØÚÏ×ÁÔØ ÂÌÏËÉ ÕËÁÚÁÎÎÏÇÏ òáúíåòá (× ÂÁÊÔÁÈ)\n" +" -b, --bytes ÐÅÞÁÔÁÔØ ÒÁÚÍÅÒ × ÂÁÊÔÁÈ\n" +" -c, --total ÐÏÄÓÞÉÔÙ×ÁÔØ ÉÔÏÇ\n" +" -D, --dereference-args ÒÁÚÙÍÅÎÏ×Ù×ÁÔØ ÓÉÍ×ÏÌØÎÙÅ ÓÓÙÌËÉ\n" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" +" -h, --human-readable ÐÅÞÁÔÁÔØ ÒÁÚÍÅÒÙ × ÕÄÏÂÎÏÍ ÄÌÑ ÞÅÌÏ×ÅËÁ ×ÉÄÅ\n" +" (ÎÁÐÒÉÍÅÒ, 1K 234M 2G)\n" +" -H, --si ÔÏ ÖÅ, ÎÏ ÉÓÐÏÌØÚÏ×ÁÔØ ÓÔÅÐÅÎÉ 1000, Á ÎÅ 1024\n" +" -k, --kilobytes ÉÓÐÏÌØÚÏ×ÁÔØ ÒÁÚÍÅÒ ÂÌÏËÁ 1024 ×ÍÅÓÔÏ 512\n" +" -l, --count-links ÓÞÉÔÁÔØ ËÁÖÄÕÀ ÖÅÓÔËÕÀ ÓÓÙÌËÕ ËÁË ÏÔÄÅÌØÎÙÊ ÆÁÊÌ\n" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" +" -L, --dereference ÒÁÓËÒÙ×ÁÔØ ÓÉÍ×ÏÌÉÞÅÓËÉÅ ÓÓÙÌËÉ\n" +" -S, --separate-dirs ÎÅ ×ËÌÀÞÁÔØ ÒÁÚÍÅÒ ËÁÔÁÌÏÇÏ×\n" +" -s, --summarize ÐÏËÁÚÙ×ÁÔØ ÔÏÌØËÏ ÉÔÏÇ ÄÌÑ ËÁÖÄÏÇÏ ÁÒÇÕÍÅÎÔÁ\n" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" +" -x, --one-file-system ÐÒÏÐÕÓËÁÔØ ËÁÔÁÌÏÇÉ ÎÁ ÄÒÕÇÉÈ ÆÁÊÌÏ×ÙÈ ÓÉÓÔÅÍÁÈ\n" +" -X FILE, --exclude-from=æáêì ÉÓËÌÀÞÁÔØ ÆÁÊÌÙ, ÓÏ×ÐÁÄÁÀÝÉÅ Ó ËÁËÉÍ-ÌÉÂÏ \n" +" ÏÂÒÁÚÃÏÍ ÉÚ æáêìá.\n" +" --exclude=ïâòáúåã ÉÓËÌÀÞÁÔØ ÆÁÊÌÙ, ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÉÅ ïâòáúãõ.\n" +" --max-depth=N ÐÏÄ×ÏÄÉÔØ ÉÔÏÇ ÄÌÑ ËÁÔÁÌÏÇÁ (ÉÌÉ ÆÁÊÌÁ, Ó -all)\n" +" ÔÏÌØËÏ ÅÓÌÉ ÏÎ ÎÁ N ÉÌÉ ÍÅÎØÛÅ ÕÒÏ×ÎÅÊ ÎÉÖÅ,\n" +" ÞÅÍ ÐÁÒÁÍÅÔÒ ËÏÍÁÎÄÎÏÊ ÓÔÒÏËÉ; --max-depth=0\n" +" ÜÔÏ ÔÏ ÖÅ ÓÁÍÏÅ, ÞÔÏ É --summarize\n" + +#: src/du.c:337 +#, c-format +msgid "cannot change to parent of directory %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÊÔÉ Ë ÒÏÄÉÔÅÌØÓËÏÍÕ ËÁÔÁÌÏÇÕ %s" + +#: src/du.c:345 +#, c-format +msgid "cannot change to directory %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÍÅÎÉÔØ ËÁÔÁÌÏÇ ÎÁ %s" + +#: src/du.c:352 +#, c-format +msgid "cannot read directory %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÞÉÔÁÔØ ËÁÔÁÌÏÇ %s" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "ÉÔÏÇÏ" + +#: src/du.c:641 +#, c-format +msgid "invalid maximum depth %s" +msgstr "ÎÅÄÏÐÕÓÔÉÍÁÑ ÍÁËÓÉÍÁÌØÎÁÑ ÇÌÕÂÉÎÁ %s" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÄÎÏ×ÒÅÍÅÎÎÏ ÐÏÄ×ÏÄÉÔØ ÉÔÏÇ É ÐÏËÁÚÙ×ÁÔØ ×ÓÅ ÜÌÅÍÅÎÔÙ" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: ÐÏÄ×ÅÄÅÎÉÅ ÉÔÏÇÁ ÜÔÏ ÔÏ ÖÅ ÓÁÍÏÅ, ÞÔÏ É --max-depth=0" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: ÐÏÄ×ÅÄÅÎÉÅ ÉÔÏÇÁ ËÏÎÆÌÉËÔÕÅÔ Ó --max-depth=%d" + +#: src/echo.c:77 +#, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... [óôòïëá]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" +"÷Ù×ÏÄÉÔ óôòïëõ(óôòïëé) ÎÁ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ.\n" +"\n" +" -n ÎÅ ×Ù×ÏÄÉÔØ ÚÁ×ÅÒÛÁÀÝÉÊ ÓÉÍ×ÏÌ ÐÅÒÅ×ÏÄÁ ÓÔÒÏËÉ\n" +" -e ÏÂÒÁÂÁÔÙ×ÁÔØ ÐÅÒÅÞÉÓÌÅÎÎÙÅ ÎÉÖÅ ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏÓÔÉ,\n" +" ÎÁÞÉÎÁÀÝÉÅÓÑ Ó ÏÂÒÁÔÎÏÊ ËÏÓÏÊ ÞÅÒÔÙ\n" +" -E ÎÅ ÏÂÒÁÂÁÔÙ×ÁÔØ ÜÔÉ ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏÓÔÉ × óôòïëå(óôòïëáè)\n" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" +"\n" +"åÓÌÉ ÎÅ ÕËÁÚÁÎ ËÌÀÞ -E, ÒÁÓÐÏÚÎÁÀÔÓÑ É ÏÂÒÁÂÁÔÙ×ÁÀÔÓÑ ÓÌÅÄÕÀÝÉÅ\n" +"ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏÓÔÉ:\n" +"\n" +" \\îîî ÓÉÍ×ÏÌ Ó ×ÏÓØÍÅÒÉÞÎÙÍ ASCII-ËÏÄÏÍ îîî\n" +" \\\\ ÏÂÒÁÔÎÁÑ ËÏÓÁÑ ÞÅÒÔÁ\n" +" \\a Ú×ÕËÏ×ÏÊ ÓÉÇÎÁÌ\n" +" \\b ÚÁÂÏÊ\n" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\c ÐÏÄÁ×ÉÔØ ÚÁ×ÅÒÛÁÀÝÉÊ ÓÉÍ×ÏÌ ÎÏ×ÏÊ ÓÔÒÏËÉ\n" +" \\f ÎÏ×ÁÑ ÓÔÒÁÎÉÃÁ\n" +" \\n ÎÏ×ÁÑ ÓÔÒÏËÁ\n" +" \\r ×ÏÚ×ÒÁÔ ËÁÒÅÔËÉ\n" +" \\t ÇÏÒÉÚÏÎÔÁÌØÎÁÑ ÔÁÂÕÌÑÃÉÑ\n" +" \\v ×ÅÒÔÉËÁÌØÎÁÑ ÔÁÂÕÌÑÃÉÑ\n" + +#: src/env.c:93 +msgid "Richard Mlynarik and David MacKenzie" +msgstr "òÉÞÁÒÄ íÌÉÎÁÒÉË É äÅ×ÉÄ íÁËëÅÎÚÉ" + +#: src/env.c:119 +#, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... [-] [éíñ=úîáþåîéå]... [ëïíáîäá [áòç]...]\n" + +#: src/env.c:122 +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" +"ðÒÉÓ×ÁÉ×ÁÅÔ ËÁÖÄÏÍÕ éíåîé ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÅÅ úîáþåîéå É ÚÁÐÕÓËÁÅÔ ëïíáîäõ × " +"ÜÔÏÊ\n" +"ÓÒÅÄÅ.\n" +"\n" +" -i, --ignore-environment ÎÁÞÁÔØ Ó ÐÕÓÔÏÊ ÓÒÅÄÏÊ\n" +" -u, --unset=éíñ ÕÄÁÌÉÔØ ÉÚ ÓÒÅÄÙ éíñ\n" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" +"\n" +"ðÒÏÓÔÏ `-' -- ÓÉÎÏÎÉÍ ÄÌÑ `-i'. åÓÌÉ ÎÅ ÚÁÄÁÎÁ ëïíáîäá, ÐÅÞÁÔÁÅÔ " +"ÐÏÌÕÞÉ×ÛÕÀÓÑ\n" +"ÓÒÅÄÕ.\n" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"ðÒÅÏÂÒÁÚÕÅÔ ÚÎÁËÉ ÔÁÂÕÌÑÃÉÉ × ËÁÖÄÏÍ æáêìå × ÐÒÏÂÅÌÙ É ÐÅÞÁÔÁÅÔ ÎÁ " +"ÓÔÁÎÄÁÒÔÎÙÊ\n" +"×Ù×ÏÄ. åÓÌÉ æáêì ÎÅ ÚÁÄÁÎ ÉÌÉ ÚÁÄÁÎ ËÁË -, ÞÉÔÁÅÔ ÓÔÁÎÄÁÒÔÎÙÊ ××ÏÄ.\n" +"\n" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" +" -i, --initial ÎÅ ÐÒÅÏÂÒÁÚÏ×Ù×ÁÔØ ÚÎÁËÉ ÔÁÂÕÌÑÃÉÉ ÐÏÓÌÅ ÐÒÏÂÅÌØÎÙÈ " +"ÚÎÁËÏ×\n" +" -t, --tabs=þéóìï ÕÓÔÁÎÁ×ÌÉ×ÁÅÔ þéóìï ÐÒÏÂÅÌÏ× × ÔÁÂÕÌÑÃÉÉ, ÐÏ ÕÍÏÌÞÁÎÉÀ " +"8\n" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" +" -t, --tabs=óðéóïë ÉÓÐÏÌØÚÏ×ÁÔØ ÒÁÚÄÅÌÅÎÎÙÊ ÚÁÐÑÔÙÍÉ ÓÐÉÓÏË ÐÏÚÉÃÉÊ " +"ÔÁÂÕÌÑÃÉÉ\n" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "ÒÁÚÍÅÒ ÔÁÂÕÌÑÃÉÉ ÓÏÄÅÒÖÉÔ ÎÅÄÏÐÕÓÔÉÍÙÊ ÚÎÁË" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "ÒÁÚÍÅÒ ÔÁÂÕÌÑÃÉÉ ÎÅ ÍÏÖÅÔ ÂÙÔØ ÒÁ×ÅÎ ÎÕÌÀ" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "ÎÏÍÅÒÁ ÐÏÚÉÃÉÊ ÔÁÂÕÌÑÃÉÉ ÄÏÌÖÎÙ ×ÏÚÒÁÓÔÁÔØ" + +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "ëÌÀÞ `-LIST' ÕÓÔÁÒÅÌ, ÉÓÐÏÌØÚÕÊÔÅ `-t LIST'" + +#: src/expr.c:90 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s ÷ùòáöåîéå\n" +" ÉÌÉ: %s ëìàþ\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" +"\n" +"ðÅÞÁÔÁÅÔ ÚÎÁÞÅÎÉÅ ÷ùòáöåîéñ ÎÁ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ. îÉÖÅ ÐÕÓÔÙÍÉ ÓÔÒÏËÁÍÉ\n" +"ÒÁÚÄÅÌÅÎÙ ÇÒÕÐÐÙ ÐÏ ×ÏÚÒÁÓÔÁÎÉÀ ÐÒÉÏÒÉÔÅÔÁ. äÏÐÕÓÔÉÍÙÅ ÷ùòáöåîéñ:\n" +"\n" +" áòç1 | áòç2 áòç1, ÅÓÌÉ ÏÎ ÏÔÌÉÞÅÎ ÏÔ ÎÕÌÑ, ÉÎÁÞÅ áòç2\n" +"\n" +" áòç1 & áòç2 áòç1, ÅÓÌÉ ÏÂÁ ÏÔÌÉÞÎÙ ÏÔ ÎÕÌÑ, ÉÎÁÞÅ 0\n" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" +"\n" +" áòç1 < áòç2 áòç1 ÍÅÎØÛÅ áòç2\n" +" áòç1 <= áòç2 áòç1 ÍÅÎØÛÅ ÉÌÉ ÒÁ×ÅÎ áòç2\n" +" áòç1 = áòç2 áòç1 ÒÁ×ÅÎ áòç2\n" +" áòç1 != áòç2 áòç1 ÎÅ ÒÁ×ÅÎ áòç2\n" +" áòç1 >= áòç2 áòç1 ÂÏÌØÛÅ ÉÌÉ ÒÁ×ÅÎ áòç2\n" +" áòç1 > áòç2 áòç1 ÂÏÌØÛÅ áòç2\n" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" +"\n" +" áòç1 + áòç2 ÁÒÉÆÍÅÔÉÞÅÓËÁÑ ÓÕÍÍÁ áòç1 É áòç2\n" +" áòç1 - áòç2 ÁÒÉÆÍÅÔÉÞÅÓËÁÑ ÒÁÚÎÏÓÔØ áòç1 É áòç2\n" + +#: src/expr.c:121 +#, fuzzy, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" +"\n" +" áòç1 * áòç2 ÁÒÉÆÍÅÔÉÞÅÓËÏÅ ÐÒÏÉÚ×ÅÄÅÎÉÅ áòç1 É áòç2\n" +" áòç1 / áòç2 ÁÒÉÆÍÅÔÉÞÅÓËÏÅ ÞÁÓÔÎÏÅ áòç1 É áòç2\n" +" áòç1 % áòç2 ÁÒÉÆÍÅÔÉÞÅÓËÉÊ ÏÓÔÁÔÏË ÏÔ ÄÅÌÅÎÉÑ áòç1 ÎÁ áòç2\n" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" +"\n" +" óôòïëá : REGEXP ÐÒÏ×ÅÒËÁ ÓÏ×ÐÁÄÅÎÉÑ REGEXP Ó ÎÁÞÁÌÏÍ ÉÌÉ ËÏÎÃÏÍ óôòïëé\n" +"\n" +" match óôòïëá REGEXP ÔÏ ÖÅ, ÞÔÏ É óôòïëá : REGEXP\n" +" substr óôòïëá ðïú äìéîá ÐÏÄÓÔÒÏËÁ óôòïëé, ÐÏÚÉÃÉÑ ÏÔÓÞÉÔÙ×ÁÅÔÓÑ ÏÔ 1\n" +" index óôòïëá óéí÷ïìù ÐÏÚÉÃÉÑ × óôòïëå, ÇÄÅ ÐÅÒ×ÙÍ ÎÁÊÄÅÎ ÌÀÂÏÊ ÉÚ\n" +" óéí÷ïìï÷, ÉÎÁÞÅ 0\n" +" length óôòïëá ÄÌÉÎÁ óôòïëé\n" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" +" + ìåëóåíá ×ÏÓÐÒÉÎÉÍÁÔØ ìåëóåíõ ËÁË ÓÔÒÏËÕ, ÄÁÖÅ ÅÓÌÉ ÜÔÏ\n" +" ËÌÀÞÅ×ÏÅ ÓÌÏ×Ï, ËÁË `match', ÉÌÉ ÏÐÅÒÁÔÏÒ, ËÁË " +"`/'\n" +"\n" +" ( ÷ùòáöåîéå ) ÚÎÁÞÅÎÉÅ ÷ùòáöåîéñ\n" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" +"\n" +"ðÏÍÎÉÔÅ, ÞÔÏ ÐÒÉ ÉÓÐÏÌØÚÏ×ÁÎÉÉ × ÏÂÏÌÏÞËÅ ÎÅËÏÔÏÒÙÅ ÏÐÅÒÁÔÏÒÙ ÄÏÌÖÎÙ ÂÙÔØ " +"×ÚÑÔÙ\n" +"× ËÁ×ÙÞËÉ. åÓÌÉ ÏÂÁ ÁÒÇÕÍÅÎÔÁ áòç Ñ×ÌÑÀÔÓÑ ÞÉÓÌÁÍÉ, ÔÏ ÐÒÏÉÚ×ÏÄÉÔÓÑ\n" +"ÁÒÉÆÍÅÔÉÞÅÓËÏÅ ÓÒÁ×ÎÅÎÉÅ, ÉÎÁÞÅ ÏÎÉ ÓÒÁ×ÎÉ×ÁÀÔÓÑ ËÁË ÓÔÒÏËÉ. óÏÐÏÓÔÁ×ÌÅÎÉÑ " +"Ó\n" +"ÏÂÒÁÚÃÏÍ ×ÏÚ×ÒÁÝÁÀÔ ÓÏ×ÐÁ×ÛÕÀ ÓÔÒÏËÕ ÍÅÖÄÕ \\( É \\) ÉÌÉ ÐÕÓÔÕÀ ÓÔÒÏËÕ;\n" +"ÅÓÌÉ \\( É \\) ÎÅ ÉÓÐÏÌØÚÏ×ÁÎÙ, ÔÏ ×ÏÚ×ÒÁÝÁÅÔÓÑ ÞÉÓÌÏ ÓÏ×ÐÁ×ÛÉÈ ÓÉÍ×ÏÌÏ×.\n" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +msgid "syntax error" +msgstr "ÓÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" +"ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: ÎÅÐÅÒÅÎÏÓÉÍÏÅ BRE: `%s': ÉÓÐÏÌØÚÏ×ÁÎÉÅ `^' ËÁË ÐÅÒ×ÏÇÏ\n" +"ÓÉÍ×ÏÌÁ BRE (ÂÁÚÏ×ÏÇÏ ÒÅÇÕÌÑÒÎÏÇÏ ×ÙÒÁÖÅÎÉÑ) ÎÅÐÅÒÅÎÏÓÉÍÏ; ÜÔÏÔ ÓÉÍ×ÏÌ " +"ÂÕÄÅÔ\n" +"ÉÇÎÏÒÉÒÏ×ÁÎ" + +#: src/expr.c:586 src/expr.c:625 +msgid "non-numeric argument" +msgstr "ÎÅÞÉÓÌÏ×ÏÊ ÁÒÇÕÍÅÎÔ" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "ÄÅÌÅÎÉÅ ÎÁ ÎÏÌØ" + +#: src/factor.c:74 +#, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [þéóìï]...\n" +" ÉÌÉ: %s ëìàþ\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" +"ðÅÞÁÔÁÅÔ ÐÒÏÓÔÙÅ ÍÎÏÖÉÔÅÌÉ ËÁÖÄÏÇÏ þéóìá.\n" +"\n" + +#: src/factor.c:85 +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" +"\n" +" ðÅÞÁÔÁÅÔ ÐÒÏÓÔÙÅ ÍÎÏÖÉÔÅÌÉ ÄÌÑ ËÁÖÄÏÇÏ ÚÁÄÁÎÎÏÇÏ ÃÅÌÏÇÏ þéóìá. åÓÌÉ\n" +" ÁÒÇÕÍÅÎÔÙ ÎÅ ÚÁÄÁÎÙ, ÞÉÔÁÅÔ ÞÉÓÌÁ ÓÏ ÓÔÁÎÄÁÒÔÎÏÇÏ ××ÏÄÁ.\n" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "`%s' ÎÅ Ñ×ÌÑÅÔÓÑ ×ÅÒÎÙÍ ÃÅÌÙÍ ÐÏÌÏÖÉÔÅÌØÎÙÍ ÞÉÓÌÏÍ" + +#: src/false.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ÉÇÎÏÒÉÒÕÅÍÙÅ ÁÒÇÕÍÅÎÔÙ ËÏÍÁÎÄÎÏÊ ÓÔÒÏËÉ]\n" +" ÉÌÉ: %s ëìàþ\n" +"÷ÙÈÏÄÉÔ ÓÏ ÓÔÁÔÕÓÏÍ ÚÁ×ÅÒÛÅÎÉÑ, ÏÂÏÚÎÁÞÁÀÝÉÍ ÎÅÕÓÐÅÈ.\n" +"\n" +"éÍÅÎÁ ÜÔÉÈ ËÌÀÞÅÊ ÎÅÌØÚÑ ÐÉÓÁÔØ ÓÏËÒÁÝÅÎÎÏ.\n" +"\n" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [-ãéæòù] [ëìàþ]... [æáêì]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" +"ðÅÒÅÆÏÒÍÁÔÉÒÕÅÔ ËÁÖÄÙÊ ÁÂÚÁÃ × æáêìå(ÁÈ) É ÐÅÞÁÔÁÅÔ ÎÁ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ.\n" +"åÓÌÉ æáêì ÎÅ ÚÁÄÁÎ ÉÌÉ ÚÁÄÁÎ ËÁË -, ÞÉÔÁÅÔ ÓÔÁÎÄÁÒÔÎÙÊ ××ÏÄ.\n" +"\n" + +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" +" -c, --crown-margin ÓÏÈÒÁÎÑÔØ ÏÔÓÔÕÐÙ Ä×ÕÈ ÐÅÒ×ÙÈ ÓÔÒÏË\n" +" -p, --prefix=óôòïëá ÓÏÅÄÉÎÑÔØ ÔÏÌØËÏ ÓÔÒÏËÉ, ÎÁÞÉÎÁÀÝÉÅÓÑ ÓÏ óôòïëé\n" +" -s, --split-only ÒÁÚÂÉ×ÁÔØ ÄÌÉÎÎÙÅ ÓÔÒÏËÉ, ÎÏ ÎÅ ÚÁÐÏÌÎÑÔØ\n" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" +" -t, --tagged-paragraph ÏÔÓÔÕÐ ÐÅÒ×ÏÊ ÓÔÒÏËÉ ÏÔÌÉÞÅÎ ÏÔ ÏÔÓÔÕÐÁ ×ÔÏÒÏÊ\n" +" -u, --uniform-spacing ÏÄÉÎ ÐÒÏÂÅÌ ÐÏÓÌÅ ÓÌÏ×Á, Ä×Á ÐÏÓÌÅ ÐÒÅÄÌÏÖÅÎÉÑ\n" +" -w, --width=þéóìï ÍÁËÓÉÍÁÌØÎÁÑ ÛÉÒÉÎÁ ÓÔÒÏËÉ (ÐÏ ÕÍÏÌÞÁÎÉÀ 75 " +"ÓÔÏÌÂÃÏ×)\n" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" +"\n" +"ðÒÉ ÚÁÄÁÎÉÉ ÛÉÒÉÎÙ Ó ÐÏÍÏÝØÀ -wþéóìï, ÂÕË×Õ `w' ÍÏÖÎÏ ÏÐÕÓÔÉÔØ.\n" + +#: src/fmt.c:345 +#, c-format +msgid "invalid width option: `%s'" +msgstr "ÎÅÄÏÐÕÓÔÉÍÙÊ ËÌÀÞ ÚÁÄÁÎÉÑ ÛÉÒÉÎÙ: `%s'" + +#: src/fmt.c:385 +#, c-format +msgid "invalid width: `%s'" +msgstr "ÎÅÄÏÐÕÓÔÉÍÁÑ ÛÉÒÉÎÁ: `%s'" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" +"òÁÚÂÉ×ÁÅÔ ÓÔÒÏËÉ × æáêìå(ÁÈ) (ÐÏ ÕÍÏÌÞÁÎÉÀ ÞÉÔÁÅÔ ÓÔÁÎÄÁÒÔÎÙÊ ××ÏÄ) É " +"ÐÅÞÁÔÁÅÔ\n" +"ÎÁ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ.\n" +"\n" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" +" -b, --bytes ÓÞÉÔÁÔØ ÂÁÊÔÙ, Á ÎÅ ÓÔÏÌÂÃÙ\n" +" -s, --spaces ÒÁÚÂÉ×ÁÔØ ÔÏÌØËÏ ÎÁ ÐÒÏÂÅÌÁÈ\n" +" -w, --width=þéóìï ÉÓÐÏÌØÚÏ×ÁÔØ ÕËÁÚÁÎÎÏÅ þéóìï ÓÔÏÌÂÃÏ×, Á ÎÅ 80\n" + +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "ëÌÀÞ `%s' ÕÓÔÁÒÅÌ, ÉÓÐÏÌØÚÕÊÔÅ `%s'" + +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "ÎÅ×ÅÒÎÏÅ ÞÉÓÌÏ ÓÔÏÌÂÃÏ×: %s" + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"ðÅÞÁÔÁÅÔ ÐÅÒ×ÙÅ 10 ÓÔÒÏË ËÁÖÄÏÇÏ æáêìá ÎÁ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ.\n" +"åÓÌÉ ÚÁÄÁÎÏ ÎÅÓËÏÌØËÏ æáêìï÷, ÓÎÁÞÁÌÁ ÐÅÞÁÔÁÅÔ ÚÁÇÏÌÏ×ÏË Ó ÉÍÅÎÅÍ ÆÁÊÌÁ.\n" +"åÓÌÉ æáêì ÎÅ ÚÁÄÁÎ ÉÌÉ ÚÁÄÁÎ ËÁË -, ÞÉÔÁÅÔ ÓÔÁÎÄÁÒÔÎÙÊ ××ÏÄ.\n" +"\n" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" +" -c, --bytes=þéóìï ÐÅÞÁÔÁÔØ ÚÁÄÁÎÎÏÅ þéóìï ÐÅÒ×ÙÈ ÂÁÊÔ\n" +" -n, --lines=þéóìï ÐÅÞÁÔÁÔØ ÚÁÄÁÎÎÏÅ þéóìï ÐÅÒ×ÙÈ ÓÔÒÏË (ÐÏ ÕÍÏÌÞÁÎÉÀ " +"10)\n" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" +" -q, --quiet, --silent ÎÅ ÐÅÞÁÔÁÔØ ÚÁÇÏÌÏ×ËÉ Ó ÉÍÅÎÁÍÉ ÆÁÊÌÏ×\n" +" -v, --verbose ×ÓÅÇÄÁ ÐÅÞÁÔÁÔØ ÚÁÇÏÌÏ×ËÉ Ó ÉÍÅÎÁÍÉ ÆÁÊÌÏ×\n" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" +"\n" +"ðÒÉ ÚÁÄÁÎÉÉ þéóìá ÂÁÊÔ ÍÏÖÎÏ ÉÓÐÏÌØÚÏ×ÁÔØ ÓÕÆÆÉËÓ: b ÏÚÎÁÞÁÅÔ 512b, k -- " +"1kb,\n" +"m -- 1Mb.\n" + +#: src/head.c:190 +#, c-format +msgid "cannot reposition file pointer for %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÍÅÓÔÉÔØ ÕËÁÚÁÔÅÌØ ÆÁÊÌÁ ÄÌÑ %s" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "%s: %s ÎÁÓÔÏÌØËÏ ×ÅÌÉËÏ, ÞÔÏ ÅÇÏ ÎÅ×ÏÚÍÏÖÎÏ ÍÁÛÉÎÎÏ ÐÒÅÄÓÔÁ×ÉÔØ" + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "ÞÉÓÌÏ ÓÔÒÏË" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "ÞÉÓÌÏ ÂÁÊÔ" + +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "ÎÅ×ÅÒÎÏÅ ÞÉÓÌÏ ÓÔÒÏË" + +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "ÎÅ×ÅÒÎÙÊ ÞÉÓÌÏ ÂÁÊÔ" + +#: src/head.c:341 +#, c-format +msgid "unrecognized option `-%c'" +msgstr "ËÌÀÞ `-%c' ÎÅ ÒÁÓÐÏÚÎÁÎ" + +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "ëÌÀÞ `%s' ÕÓÔÁÒÅÌ, ÉÓÐÏÌØÚÕÊÔÅ `-%c %.*s%.*s%s'" + +#: src/hostid.c:48 +#, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s\n" +" ÉÌÉ: %s ëìàþ\n" +"ðÅÞÁÔÁÅÔ ÞÉÓÌÏ×ÏÊ ÉÄÅÎÔÉÆÉËÁÔÏÒ (ÛÅÓÔÎÁÄÃÁÔÉÒÉÞÎÙÊ) ÔÅËÕÝÅÊ ÍÁÛÉÎÙ.\n" +"\n" + +#: src/hostname.c:67 +#, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [éíñ]\n" +" ÉÌÉ: %s ëìàþ\n" +"ðÅÞÁÔÁÅÔ ÉÌÉ ÕÓÔÁÎÁ×ÌÉ×ÁÅÔ ÉÍÑ ÄÁÎÎÏÊ ÓÉÓÔÅÍÙ.\n" +"\n" + +#: src/hostname.c:104 +#, c-format +msgid "cannot set hostname to `%s'" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÕÓÔÁÎÏ×ÉÔØ ÉÍÑ ÍÁÛÉÎÙ × ÚÎÁÞÅÎÉÅ `%s'" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "" +"ÎÅ×ÏÚÍÏÖÎÏ ÕÓÔÁÎÏ×ÉÔØ ÏÓÎÏ×ÎÏÅ ÉÍÑ -- ÜÔÁ ÓÉÓÔÅÍÁ ÎÅ ÏÂÌÁÄÁÅÔ ÔÁËÏÊ " +"ÓÐÏÓÏÂÎÏÓÔØÀ" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÐÒÅÄÅÌÉÔØ ÏÓÎÏ×ÎÏÅ ÉÍÑ" + +#: src/id.c:36 +msgid "Arnold Robbins and David MacKenzie" +msgstr "áÒÎÏÌØÄ òÏÂÂÉÎÓ É äÅ×ÉÄ íÁËëÅÎÚÉ" + +#: src/id.c:87 +#, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... [ðïìøúï÷áôåìø]\n" + +#: src/id.c:88 +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" +"ðÅÞÁÔÁÅÔ Ó×ÅÄÅÎÉÑ Ï ðïìøúï÷áôåìå, ÉÌÉ Ï ÔÅËÕÝÅÍ ÐÏÌØÚÏ×ÁÔÅÌÅ.\n" +"\n" +" -a ÉÇÎÏÒÉÒÕÅÔÓÑ, ××ÅÄÅÎÏ ÔÏÌØËÏ ÄÌÑ ÓÏ×ÍÅÓÔÉÍÏÓÔÉ\n" +" -g, --group ÐÅÞÁÔÁÔØ ÔÏÌØËÏ ID ÇÒÕÐÐÙ\n" +" -G, --groups ÐÅÞÁÔÁÔØ ÔÏÌØËÏ ÄÏÐÏÌÎÉÔÅÌØÎÙÅ ÇÒÕÐÐÙ\n" +" -n, --name ÐÅÞÁÔÁÔØ ÉÍÑ ×ÍÅÓÔÏ ÎÏÍÅÒÁ, ÄÌÑ ËÌÀÞÅÊ -ugG\n" +" -r, --real ÐÅÞÁÔÁÔØ ÄÅÊÓÔ×ÉÔÅÌØÎÙÅ, Á ÎÅ ÜÆÆÅËÔÉ×ÎÙÅ ID, ÄÌÑ ËÌÀÞÅÊ -" +"ugG\n" +" -u, --user ÐÅÞÁÔÁÔØ ÔÏÌØËÏ ID ÐÏÌØÚÏ×ÁÔÅÌÑ\n" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" +"\n" +"åÓÌÉ ëìàþé ÎÅ ÚÁÄÁÎÙ, ÐÅÞÁÔÁÅÔ ÎÅËÏÔÏÒÙÊ ÓÔÁÎÄÁÒÔÎÙÊ ÎÁÂÏÒ ÐÏÌÅÚÎÙÈ " +"Ó×ÅÄÅÎÉÊ.\n" + +#: src/id.c:162 +msgid "cannot print only user and only group" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÎÁÐÅÞÁÔÁÔØ ÔÏÌØËÏ ÐÏÌØÚÏ×ÁÔÅÌÑ É ÔÏÌØËÏ ÇÒÕÐÐÕ" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "" +"ÎÅ×ÏÚÍÏÖÎÏ ÎÁÐÅÞÁÔÁÔØ ÔÏÌØËÏ ÉÍÅÎÁ ÉÌÉ ÄÅÊÓÔ×ÉÔÅÌØÎÙÅ ID × ÆÏÒÍÁÔÅ ÐÏ " +"ÕÍÏÌÞÁÎÉÀ" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "%s: ôÁËÏÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ ÎÅÔ" + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÐÒÅÄÅÌÉÔØ ÉÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ ÄÌÑ ID %u" + +#: src/id.c:235 +#, c-format +msgid "cannot find name for group ID %u" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÐÒÅÄÅÌÉÔØ ÉÍÑ ÇÒÕÐÐÙ ÄÌÑ ID %u" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÓÐÉÓÏË ÄÏÐÏÌÎÉÔÅÌØÎÙÈ ÇÒÕÐÐ" + +#: src/id.c:385 +msgid " groups=" +msgstr " ÇÒÕÐÐÙ=" + +#: src/install.c:269 +msgid "the strip option may not be used when installing a directory" +msgstr "ÐÒÉ ÕÓÔÁÎÏ×ËÅ ËÁÔÁÌÏÇÁ ÎÅÌØÚÑ ÐÒÉÍÅÎÑÔØ ËÌÀÞ strip" + +#: src/install.c:292 src/mkdir.c:140 +#, c-format +msgid "invalid mode %s" +msgstr "ÎÅ×ÅÒÎÙÊ ÒÅÖÉÍ %s" + +#: src/install.c:307 src/install.c:371 +#, c-format +msgid "creating directory %s" +msgstr "ÓÏÚÄÁÎÉÅ ËÁÔÁÌÏÇÁ %s" + +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "ËÏÐÉÒÕÀÔÓÑ ÎÅÓËÏÌØËÏ ÆÁÊÌÏ×, ÎÏ ÐÏÓÌÅÄÎÉÊ ÁÒÇÕÍÅÎÔ %s ÎÅ ËÁÔÁÌÏÇ" + +#: src/install.c:435 +#, c-format +msgid "%s is a directory" +msgstr "%s Ñ×ÌÑÅÔÓÑ ËÁÔÁÌÏÇÏÍ" + +#: src/install.c:495 +#, c-format +msgid "cannot obtain time stamps for %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ×ÒÅÍÅÎÎÙÅ ÏÔÍÅÔËÉ ÄÌÑ %s" + +#: src/install.c:507 +#, c-format +msgid "cannot set time stamps for %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÕÓÔÁÎÏ×ÉÔØ ×ÒÅÍÅÎÎÙÅ ÏÔÍÅÔËÉ ÄÌÑ %s" + +#: src/install.c:528 +msgid "fork system call failed" +msgstr "ÓÉÓÔÅÍÎÙÊ ×ÙÚÏ× fork ÚÁ×ÅÒÛÉÌÓÑ ÎÅÕÓÐÅÈÏÍ" + +#: src/install.c:532 +msgid "cannot run strip" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÚÁÐÕÓÔÉÔØ strip" + +#: src/install.c:539 +msgid "strip failed" +msgstr "stip ÚÁ×ÅÒÛÉÌÁÓØ ÎÅÕÓÐÅÛÎÏ" + +#: src/install.c:560 +#, c-format +msgid "invalid user %s" +msgstr "ÎÅ×ÅÒÎÙÊ ÐÏÌØÚÏ×ÁÔÅÌØ %s" + +#: src/install.c:578 +#, c-format +msgid "invalid group %s" +msgstr "ÎÅ×ÅÒÎÁÑ ÇÒÕÐÐÁ %s" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [OPTION]... SOURCE DEST (1-ÙÊ ÆÏÒÍÁÔ)\n" +" ÉÌÉ: %s [OPTION]... SOURCE... DIRECTORY (2-ÏÊ ÆÏÒÍÁÔ)\n" +" ÉÌÉ: %s -d [OPTIONS]... DIRECTORY... (3-ÉÊ ÆÏÒÍÁÔ)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" +"÷ ÐÅÒ×ÙÈ Ä×ÕÈ ÆÏÒÍÁÔÁÈ, ËÏÐÉÒÕÅÔ SOURCE × DEST ÉÌÉ ÎÅÓËÏÌØËÏ SOURCE ×\n" +"DIRECTORY, ÕÓÔÁÎÁ×ÌÉ×ÁÅÔ ËÏÄÙ ÄÏÓÔÕÐÁ É ×ÌÁÄÅÌØÃÁ/ÇÒÕÐÐÕ. ÷ ÔÒÅÔØÅÍ ÆÏÒÍÁÔÅ\n" +"ÓÏÚÄÁÅÔ DIRECTORY.\n" +"\n" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" +" --backup[=CONTROL] ÓÏÚÄÁÔØ ÒÅÚÅÒ×ÎÕÀ ËÏÐÉÀ ÐÅÒÅÄ ÕÄÁÌÅÎÉÅÍ\n" +" -b ÔÏ ÖÅ, ÞÔÏ É --backup, ÎÏ ÂÅÚ ÁÒÇÕÍÅÎÔÁ\n" +" -c (ÉÇÎÏÒÉÒÕÅÔÓÑ)\n" +" -d, --directory ÒÁÓÓÍÁÔÒÉ×ÁÔØ ×ÓÅ ÁÒÇÕÍÅÎÔÙ ËÁË ËÁÔÁÌÏÇÉ; ÓÏÚÄÁ×ÁÔØ " +"×ÓÅ\n" +" ×ÓÅ ËÏÍÐÏÎÅÎÔÙ ÕËÁÚÁÎÎÙÈ ËÁÔÁÌÏÇÏ×\n" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" +" -D ÓÏÚÄÁ×ÁÔØ ×ÓÅ ÎÁÞÁÌØÎÙÅ ÓÏÓÔÁ×ÌÑÀÝÉÅ DEST ËÒÏÍÅ\n" +" ÐÏÓÌÅÄÎÅÇÏ, ÚÁÔÅÍ ËÏÐÉÒÏ×ÁÔØ SOURCE × DEST; ÐÏÌÅÚÎÏ\n" +" × ÓÌÕÞÁÅ ÐÅÒ×ÏÇÏ ÆÏÒÍÁÔÁ\n" +" -g, --group=GROUP ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ÇÒÕÐÐÕ, ×ÍÅÓÔÏ ÔÅËÕÝÅÊ ÇÒÕÐÐÙ ÐÒÏÃÅÓÓÁ\n" +" -m, --mode=MODE ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ËÏÄ ÐÒÁ× ÄÏÓÔÕÐÁ, ×ÍÅÓÔÏ rw-r--r--\n" +" -o, --owner=OWNER ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ×ÌÁÄÅÌØÃÁ (ÔÏÌØËÏ ÄÌÑ " +"ÓÕÐÅÒÐÏÌØÚÏ×ÁÔÅÌÑ)\n" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" +" -p, --preserve-timestamps ÓÏÈÒÁÎÑÔØ ×ÒÅÍÅÎÁ ÄÏÓÔÕÐÁ/ÉÚÍÅÎÅÎÉÑ SOURCE " +"ÆÁÊÌÏ×\n" +" ÐÒÉ ËÏÐÉÒÏ×ÁÎÉÉ\n" +" -s, --strip ÕÄÁÌÑÔØ ÏÔÌÁÄÏÞÎÕÀ ÉÎÆÏÒÍÁÃÉÀ; ÔÏÌØËÏ ÄÌÑ 1-ÏÇÏ É\n" +" 2-ÏÇÏ ÆÏÒÍÁÔÏ×\n" +" -S, --suffix=SUFFIX ÕÓÔÁÎÏ×ÉÔØ ÓÕÆÆÉËÓ ÄÌÑ ÚÁÐÁÓÎÙÈ ËÏÐÉÊ ËÁË SUFFIX\n" +" -v, --verbose ×Ù×ÏÄÉÔØ ÎÁÚ×ÁÎÉÅ ËÁÖÄÏÇÏ ÓÏÚÄÁ×ÁÅÍÏÇÏ ËÁÔÁÌÏÇÁ\n" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"\n" +"ðÏ ÕÍÏÌÞÁÎÉÀ ÓÕÆÆÉËÓ ÄÌÑ ÚÁÐÁÓÎÙÈ ËÏÐÉÊ ~, ÅÓÌÉ ÔÏÌØËÏ ÎÅ ÕÓÔÁÎÏ×ÌÅÎÁ\n" +"ÐÅÒÅÍÅÎÎÁÑ ÏËÒÕÖÅÎÉÑ SIMPLE_BACKUP_SUFFIX ÉÌÉ ËÌÀÞ --suffix. óÐÏÓÏ " +"ËÏÎÔÒÏÌÑ\n" +"×ÅÒÓÉÊ ÍÏÖÅÔ ÂÙÔØ ÕÓÔÁÎÏ×ÌÅÎ ÐÒÉ ÐÏÍÏÝÉ ËÌÀÞÁ --backup ÉÌÉ ÐÅÒÅÍÅÎÎÏÊ\n" +"ÏËÒÕÖÅÎÉÑ VERSION_CONTROL. äÏÐÕÓÔÉÍÙÅ ÚÎÁÞÅÎÉÑ:\n" +"\n" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... æáêì1 æáêì2\n" + +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" +"äÌÑ ËÁÖÄÏÊ ÐÁÒÙ ×ÈÏÄÎÙÈ ÓÔÒÏË Ó ÏÄÉÎÁËÏ×ÙÍÉ ÏÂÝÉÍÉ ÐÏÌÑÍÉ ×Ù×ÏÄÉÔ ÓÔÒÏËÕ ÎÁ\n" +"ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ. ðÏ ÕÍÏÌÞÁÎÉÀ ÏÂÝÅÅ ÐÏÌÅ ÓÞÉÔÁÅÔÓÑ ÐÅÒ×ÙÍ, ÐÏÌÑ " +"ÒÁÚÄÅÌÑÀÔÓÑ\n" +"ÐÒÏÂÅÌØÎÙÍÉ ÚÎÁËÁÍÉ. åÓÌÉ ÏÄÉÎ ÉÚ æáêìï÷ ÚÁÄÁÎ ËÁË -, ÞÉÔÁÅÔ ÓÔÁÎÄÁÒÔÎÙÊ\n" +"××ÏÄ.\n" +"\n" +" -a îïíåò ÐÅÞÁÔÁÔØ ÎÅ ÉÍÅÀÝÉÅ ÐÁÒÙ ÓÔÒÏËÉ ÉÚ ÆÁÊÌÁ Ó ÚÁÄÁÎÎÙÍ\n" +" ÎÏÍÅÒÏÍ (1 ÉÌÉ 2)\n" +" -e óôòïëá ÚÁÍÅÝÁÔØ ÐÒÉ ×Ù×ÏÄÅ ÐÕÓÔÙÅ ÓÔÒÏËÉ ÕËÁÚÁÎÎÏÊ óôòïëïê\n" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" +" -i, --ignore-case ÉÇÎÏÒÉÒÏ×ÁÔØ ÒÅÇÉÓÔÒ ÂÕË× ÐÒÉ ÓÒÁ×ÎÅÎÉÉ ÐÏÌÅÊ\n" +" -j ðïìå ÕÓÔÁÒÅ×ÛÁÑ ÆÏÒÍÁ `-1 ðïìå -2 ðïìå'\n" +" -j1 ðïìå ÕÓÔÁÒÅ×ÛÁÑ ÆÏÒÍÁ `-1 ðïìå'\n" +" -j2 ðïìå ÕÓÔÁÒÅ×ÛÁÑ ÆÏÒÍÁ `-2 ðïìå'\n" +" -o æïòíáô ×Ù×ÏÄÉÔØ × ÓÏÏÔ×ÅÔÓÔ×ÉÉ Ó æïòíáôïí\n" +" -t úîáë ÉÓÐÏÌØÚÏ×ÁÔØ úîáë ËÁË ÒÁÚÄÅÌÉÔÅÌØ ÐÏÌÅÊ ××ÏÄÁ É ×Ù×ÏÄÁ\n" + +#: src/join.c:165 +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" +" -v îïíåò ËÁË -Á îïíåò, ÎÏ ÎÅ ÐÅÞÁÔÁÔØ ÉÍÅÀÝÉÅ ÐÁÒÙ ÓÔÒÏËÉ\n" +" -1 ðïìå ÓÞÉÔÁÔØ ÏÂÝÉÍ ÚÁÄÁÎÎÏÅ ðïìå ÆÁÊÌÁ 1\n" +" -2 ðïìå ÓÞÉÔÁÔØ ÏÂÝÉÍ ÚÁÄÁÎÎÏÅ ðïìå ÆÁÊÌÁ 2\n" + +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" +"\n" +"åÓÌÉ ÎÅ ÚÁÄÁÎ -t úîáë, ÎÁÞÁÌØÎÙÅ ÐÒÏÂÅÌØÎÙÅ ÚÎÁËÉ ÒÁÚÄÅÌÑÀÔ ÐÏÌÑ É\n" +"ÉÇÎÏÒÉÒÕÀÔÓÑ, × ÐÒÏÔÉ×ÎÏÍ ÓÌÕÞÁÅ ÐÏÌÑ ÒÁÚÄÅÌÑÀÔÓÑ úîáëïí. ðïìå -- ÜÔÏ\n" +"ÎÏÍÅÒ ÐÏÌÑ, ÏÔÓÞÉÔÙ×ÁÅÍÙÊ ÏÔ 1. æïòíáô -- ÜÔÏ ÏÄÎÏ ÉÌÉ ÎÅÓËÏÌØËÏ\n" +"ÒÁÚÄÅÌÑÅÍÙÈ ÚÁÐÑÔÙÍÉ ÉÌÉ ÐÒÏÂÅÌØÎÙÍÉ ÚÎÁËÁÍÉ ÏÐÉÓÁÎÉÊ ÆÏÒÍÁÔÁ × ×ÉÄÅ\n" +"îïíåò.ðïìå ÉÌÉ `0'. ðÏ ÕÍÏÌÞÁÎÉÀ æïòíáô ×Ù×ÏÄÉÔ ÏÂÝÅÅ ÐÏÌÅ, ÏÓÔÁÌØÎÙÅ\n" +"ÐÏÌÑ ÉÚ æáêìá1 É ÏÓÔÁÌØÎÙÅ ÐÏÌÑ ÉÚ æáêìá2, ÒÁÚÄÅÌÅÎÎÙÅ úîáëïí.\n" + +#: src/join.c:645 +#, c-format +msgid "invalid field specifier: `%s'" +msgstr "ÎÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ ÐÏÌÑ: `%s'" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, c-format +msgid "invalid field number: `%s'" +msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÏÌÑ: `%s'" + +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÆÁÊÌÁ × ÓÐÅÃÉÆÉËÁÃÉÉ ÐÏÌÑ: `%s'" + +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÏÌÑ ÄÌÑ ÆÁÊÌÁ 1: `%s'" + +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÏÌÑ ÄÌÑ ÆÁÊÌÁ 2: `%s'" + +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "ÓÌÉÛËÏÍ ÍÎÏÇÏ ÎÅ Ñ×ÌÑÀÝÉÈÓÑ ËÌÀÞÁÍÉ ÁÒÇÕÍÅÎÔÏ×" + +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "ÎÅÄÏÓÔÁÔÏÞÎÏ ÎÅ Ñ×ÌÑÀÝÉÈÓÑ ËÌÀÞÁÍÉ ÁÒÇÕÍÅÎÔÏ×" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "ÏÂÁ ÆÁÊÌÁ ÎÅ ÍÏÇÕÔ ÂÙÔØ ÓÔÁÎÄÁÒÔÎÙÍ ××ÏÄÏÍ" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [-s óéçîáì | -óéçîáì] PID...\n" +" ÉÌÉ: %s -l [óéçîáì]...\n" +" ÉÌÉ: %s -t [óéçîáì]...\n" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" +"ðÏÓÙÌÁÅÔ ÐÒÏÃÅÓÓÁÍ ÓÉÇÎÁÌÙ ÉÌÉ ÐÅÒÅÞÉÓÌÑÅÔ ÓÉÇÎÁÌÙ.\n" +"\n" + +#: src/kill.c:106 +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" +" -s, --signal=óéçîáì, -óéçîáì\n" +" ÚÁÄÁÅÔ ÉÍÑ ÉÌÉ ÎÏÍÅÒ ÐÏÓÙÌÁÅÍÏÇÏ ÓÉÇÎÁÌÁ\n" +" -l, --list ÐÅÒÅÞÉÓÌÑÅÔ ÉÍÅÎÁ ÓÉÇÎÁÌÏ× ÉÌÉ ÐÅÒÅ×ÏÄÉÔ ÉÍÅÎÁ × ÎÏÍÅÒÁ É " +"ÎÁÏÂÏÒÏÔ\n" +" -t, --table ÐÅÞÁÔÁÅÔ ÔÁÂÌÉÃÕ Ó ÉÎÆÏÒÍÁÃÉÅÊ Ï ÓÉÇÎÁÌÁÈ\n" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" +"\n" +"óéçîáì ÍÏÖÅÔ ÂÙÔØ ÉÍÅÎÅÍ ÓÉÇÎÁÌÁ, ËÁË `HUP' ÉÌÉ ÎÏÍÅÒÏÍ ÓÉÇÎÁÌÁ, ËÁË\n" +"`1', ÉÌÉ ×ÙÈÏÄÎÙÍ ÚÎÁÞÅÎÉÅÍ ÐÒÏÃÅÓÓÁ, ÐÒÅÒ×ÁÎÎÏÇÏ ÓÉÇÎÁÌÏÍ.\n" +"PID Ñ×ÌÑÅÔÓÑ ÃÅÌÙÍ ÞÉÓÌÏÍ; ÅÓÌÉ ÏÎÏ ÏÔÒÉÃÁÔÅÌØÎÏ, ÔÏ ÏÂÏÚÎÁÞÁÅÔ ÇÒÕÐÐÕ\n" +"ÐÒÏÃÅÓÓÏ×.\n" + +#: src/kill.c:163 +#, c-format +msgid "%s: invalid signal" +msgstr "%s: ÎÅ×ÅÒÎÙÊ ÓÉÇÎÁÌ" + +#: src/kill.c:262 +#, c-format +msgid "missing operand after `%s'" +msgstr "ÐÒÏÐÕÝÅÎ ÏÐÅÒÁÎÄ ÐÏÓÌÅ `%s'" + +#: src/kill.c:274 +#, c-format +msgid "%s: invalid process id" +msgstr "%s: ÎÅ×ÅÒÎÙÊ ÉÄÅÎÔÉÆÉËÁÔÏÒ ÐÒÏÃÅÓÓÁ" + +#: src/kill.c:327 +#, c-format +msgid "invalid option -- %c" +msgstr "ÎÅ×ÅÒÎÙÊ ËÌÀÞ -- `%c'" + +#: src/kill.c:336 +#, c-format +msgid "%s: multiple signals specified" +msgstr "%s: ÚÁÄÁÎÏ ÎÅÓËÏÌØËÏ ÓÉÇÎÁÌÏ×" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "ÚÁÄÁÎÏ ÎÅÓËÏÌØËÏ ËÌÀÞÅÊ -l ÉÌÉ -t" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "ÎÅÌØÚÑ ÏÂßÅÄÉÎÑÔØ ÓÉÇÎÁÌ Ó -l ÉÌÉ -t" + +#: src/link.c:51 +#, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s æáêì1 æáêì2\n" +" ÉÌÉ: %s ëìàþ\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" +"÷ÙÚÙ×ÁÅÔ ÆÕÎËÃÉÀ link ÄÌÑ ÓÏÚÄÁÎÉÑ ÓÓÙÌËÉ Ó ÉÍÅÎÅÍ æáêì2 ÎÁ ÓÕÝÅÓÔ×ÕÀÝÉÊ " +"æáêì1.\n" +"\n" + +#: src/link.c:98 +#, c-format +msgid "cannot create link %s to %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ÓÓÙÌËÕ %s ÎÁ %s" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "íÁÊË ðÁÒËÅÒ É äÅ×ÉÄ íÁËëÅÎÚÉ" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "" +"%s: ÏÓÔÏÒÏÖÎÏ: ÓÏÚÄÁÎÉÅ ÖÅÓÔËÏÊ ÓÓÙÌËÉ ÎÁ ÓÉÍ×ÏÌØÎÕÀ ÓÓÙÌËÕ ÒÁÂÏÔÁÅÔ\n" +"ÎÅ ×ÅÚÄÅ" + +#: src/ln.c:174 +#, c-format +msgid "%s: hard link not allowed for directory" +msgstr "%s: ÎÅ ÄÏÐÕÓËÁÅÔÓÑ ÓÏÚÄÁ×ÁÔØ ÖÅÓÔËÉÅ ÓÓÙÌËÉ ÎÁ ËÁÔÁÌÏÇÉ" + +#: src/ln.c:246 +#, c-format +msgid "%s: cannot overwrite directory" +msgstr "%s: ÎÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÚÁÐÉÓÁÔØ ËÁÔÁÌÏÇ" + +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "%s: ÚÁÍÅÎÉÔØ %s? " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: æÁÊÌ ÓÕÝÅÓÔ×ÕÅÔ" + +#: src/ln.c:304 +#, c-format +msgid "create symbolic link %s to %s" +msgstr "ÓÏÚÄÁÎÉÅ ÓÉÍ×ÏÌØÎÏÊ ÓÓÙÌËÉ %s ÎÁ %s" + +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "ÓÏÚÄÁÔØ ÖÅÓÔËÕÀ ÓÓÙÌËÕ Ó %s ÎÁ %s" + +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "ÓÏÚÄÁÎÉÅ ÓÉÍ×ÏÌØÎÏÊ ÓÓÙÌËÉ Ó %s ÎÁ %s" + +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "ÓÏÚÄÁÎÉÅ ÖÅÓÔËÏÊ ÓÓÙÌËÉ Ó %s ÎÁ %s" + +#: src/ln.c:339 +#, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... ãåìø [éíñ_óóùìëé]\n" +" ÉÌÉ: %s [ëìàþ]... ãåìø... ëáôáìïç\n" +" ÉÌÉ: %s [ëìàþ]... --target-directory=ëáôáìïç ãåìø\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" +"óÏÚÄÁÅÔ ÓÓÙÌËÕ ÎÁ ÕËÁÚÁÎÎÙÊ TARGET Ó ÎÅÏÂÑÚÁÔÅÌØÎÙÍ ÉÍÅÎÅÍ LINK_NAME.\n" +"åÓÌÉ TARGET ÎÅÓËÏÌØËÏ, ÐÏÓÌÅÄÎÉÊ ÐÁÒÁÍÅÔÒ ÄÏÌÖÅÎ ÂÙÔØ ËÁÔÁÌÏÇÏÍ; ÓÏÚÄÁÅÔ\n" +"ÓÓÙÌËÉ DIRECTORY ÎÁ ËÁÖÄÙÊ TARGET. ðÏ ÕÍÏÌÞÁÎÉÀ ÓÏÚÄÁÅÔ ÖÅÓÔËÉÅ ÓÓÙÌËÉ,\n" +"ÓÉÍ×ÏÌØÎÙÅ Ó ËÌÀÞÏÍ --symbolic. ðÒÉ ÓÏÚÄÁÎÉÉ ÖÅÓÔËÉÈ ÓÓÙÌÏË ËÁÖÄÙÊ TARGET\n" +"ÏÂÑÚÁÎ ÐÒÉÓÕÔÓÔ×Ï×ÁÔØ.\n" +"\n" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" +" --backup[=CONTROL] ÓÏÚÄÁÔØ ÒÅÚÅÒ×ÎÕÀ ËÏÐÉÀ ÐÅÒÅÄ ÕÄÁÌÅÎÉÅÍ\n" +" -b ÔÏ ÖÅ, ÞÔÏ É --backup, ÎÏ ÂÅÚ ÁÒÇÕÍÅÎÔÁ\n" +" -d, -F, --directory ÓÏÚÄÁ×ÁÔØ ÖÅÓÔËÕÀ ÓÓÙÌËÕ ÎÁ ËÁÔÁÌÏÇÉ\n" +" (ÔÏÌØËÏ ÄÌÑ ÓÕÐÅÒÐÏÌØÚÏ×ÁÔÅÌÑ)\n" +" -f, --force ÐÅÒÅÐÉÓÙ×ÁÔØ ÓÕÝÅÓÔ×ÕÀÝÉÅ ÆÁÊÌÙ ÎÅ ÓÐÒÁÛÉ×ÁÑ\n" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" +" -n, --no-dereference ÒÁÓÓÍÁÔÒÉ×ÁÔØ ÓÉÍ×ÏÌØÎÕÀ ÓÓÙÌËÕ ËÁË " +"ÎÏÒÍÁÌØÎÙÊ\n" +" ÆÁÊÌ\n" +" -i, --interactive ÓÐÒÁÛÉ×ÁÔØ ÐÅÒÅÄ ÔÅÍ ËÁË ÐÅÒÅÐÉÓÙ×ÁÔØ\n" +" -s, --symbolic ÓÏÚÄÁ×ÁÔØ ÓÉÍ×ÏÌÉÞÅÓËÉÅ ÓÓÙÌËÉ\n" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" +" -S, --suffix=SUFFIX ÕÓÔÁÎÏ×ÉÔØ ÓÕÆÆÉËÓ ÄÌÑ ÚÁÐÁÓÎÙÈ ËÏÐÉÊ ËÁË\n" +" SUFFIX\n" +" --target-directory=DIRECTORY ÕËÁÚÙ×ÁÅÔ DIRECTORY × ËÏÔÏÒÏÍ ÓÏÚÄÁ×ÁÔØ\n" +" ÓÓÙÌËÉ\n" +" -v, --verbose ÐÏÑÓÎÑÔØ ÞÔÏ ÂÕÄÅÔ ÓÄÅÌÁÎÏ\n" + +#: src/ln.c:521 +#, c-format +msgid "%s: specified target directory is not a directory" +msgstr "%s: ÚÁÄÁÎÎÙÊ ÃÅÌÅ×ÏÊ ËÁÔÁÌÏÇ ÎÅ Ñ×ÌÑÅÔÓÑ ËÁÔÁÌÏÇÏÍ" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "" +"ÐÒÉ ÓÏÚÄÁÎÉÉ ÎÅÓËÏÌØËÉÈ ÓÓÙÌÏË ÐÏÓÌÅÄÎÉÍ ÁÒÇÕÍÅÎÔÏÍ ÄÏÌÖÅÎ ÂÙÔØ ËÁÔÁÌÏÇ" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" +"ðÅÞÁÔÁÅÔ ÉÍÑ ÔÅËÕÝÅÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ.\n" +"\n" + +#: src/logname.c:99 +#, c-format +msgid "%s: no login name\n" +msgstr "%s: ÒÅÇÉÓÔÒÁÃÉÏÎÎÏÅ ÉÍÑ ÏÔÓÕÔÓÔ×ÕÅÔ\n" + +#: src/ls.c:673 +msgid "%b %e %Y" +msgstr "%b %e %Y" + +#: src/ls.c:681 +msgid "%b %e %H:%M" +msgstr "%b %e %H:%M" + +#: src/ls.c:1307 +#, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "" +"ÐÒÏÉÇÎÏÒÉÒÏ×ÁÎÏ ÎÅ×ÅÒÎÏÅ ÚÎÁÞÅÎÉÅ ÐÅÒÅÍÅÎÎÏÊ ÏËÒÕÖÅÎÉÑ QUOTING_STYLE: %s" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "ÐÒÏÉÇÎÏÒÉÒÏ×ÁÎÁ ÎÅ×ÅÒÎÁÑ ÛÉÒÉÎÁ × ÐÅÒÅÍÅÎÎÏÊ ÏËÒÕÖÅÎÉÑ COLUMNS: %s" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "" +"ÐÒÏÉÇÎÏÒÉÒÏ×ÁÎ ÎÅ×ÅÒÎÙÊ ÒÁÚÍÅÒ ÔÁÂÕÌÑÃÉÉ × ÐÅÒÅÍÅÎÎÏÊ ÏËÒÕÖÅÎÉÑ TABSIZE: %s" + +#: src/ls.c:1482 +#, c-format +msgid "invalid line width: %s" +msgstr "ÎÅ×ÅÒÎÁÑ ÛÉÒÉÎÁ ÓÔÒÏËÉ: %s" + +#: src/ls.c:1556 +#, c-format +msgid "invalid tab size: %s" +msgstr "ÎÅ×ÅÒÎÙÊ ÒÁÚÍÅÒ ÔÁÂÕÌÑÃÉÉ: %s" + +#: src/ls.c:1722 +#, c-format +msgid "invalid time style format %s" +msgstr "ÎÅ×ÅÒÎÙÊ ÆÏÒÍÁÔ ×ÒÅÍÅÎÉ %s" + +#: src/ls.c:2054 +#, c-format +msgid "unrecognized prefix: %s" +msgstr "ÎÅ ÒÁÓÐÏÚÎÁÎ ÐÒÅÆÉËÓ: %s" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "ÎÅ ÁÎÁÌÉÚÉÒÕÅÍÏÅ ÚÎÁÞÅÎÉÅ × ÐÅÒÅÍÅÎÎÏÊ ÏËÒÕÖÅÎÉÑ LS_COLORS" + +#: src/ls.c:2145 +#, c-format +msgid "cannot determine device and inode of %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÐÒÅÄÅÌÉÔØ ÕÓÔÒÏÊÓÔ×Ï É inode ÄÌÑ %s" + +#: src/ls.c:2155 +#, c-format +msgid "not listing already-listed directory: %s" +msgstr "ÐÒÏÐÕÓË ÕÖÅ ÐÅÒÅÞÉÓÌÅÎÎÏÇÏ ËÁÔÁÌÏÇÁ: %s" + +#: src/ls.c:2208 src/remove.c:929 +#, c-format +msgid "reading directory %s" +msgstr "ÞÔÅÎÉÅ ËÁÔÁÌÏÇÁ %s" + +#: src/ls.c:2603 +#, c-format +msgid "cannot compare file names %s and %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÒÁ×ÎÉÔØ ÉÍÅÎÁ ÆÁÊÌÏ× %s É %s" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" +"÷ÙÄÁÅÔ ÉÎÆÏÒÍÁÃÉÀ Ï FILE (ÔÅËÕÝÉÊ ËÁÔÁÌÏÇ ÐÏ ÕÍÏÌÞÁÎÉÀ).\n" +"óÏÒÔÉÒÕÅÔ × ÁÌÆÁ×ÉÔÎÏÍ ÐÏÒÑÄËÅ ÅÓÌÉ ÎÉ ÏÄÉÎ ÉÚ ËÌÀÞÅÊ -cftuSUX --sort ÎÅ\n" +"ÚÁÄÁÎ.\n" +"\n" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" +" -a, --all ÎÅ ÓËÒÙ×ÁÔØ ÆÁÊÌÙ ÎÁÞÉÎÁÀÝÉÅÓÑ Ó .\n" +" -A, --almost-all ÎÅ ×ÙÄÁ×ÁÔØ . É ..\n" +" --author ÐÅÞÁÔÁÔØ Á×ÔÏÒÁ ËÁÖÄÏÇÏ ÆÁÊÌÁ\n" +" -b, --escape ÐÅÞÁÔÁÔØ ×ÏÓØÍÅÒÉÞÎÙÅ escape-" +"ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏÓÔÉ\n" +" ×ÍÅÓÔÏ ÎÅÇÒÁÆÉÞÅÓËÉÈ ÓÉÍ×ÏÌÏ×\n" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" +" --block-size=SIZE ÉÓÐÏÌØÚÏ×ÁÔØ ÂÌÏËÉ ÒÁÚÍÅÒÏÍ SIZE ÂÁÊÔ\n" +" -B, --ignore-backups ÎÅ ×ÙÄÁ×ÁÔØ ÆÁÊÌÙ ÏËÁÎÞÉ×ÁÀÝÉÅÓÑ ÎÁ ~\n" +" -c Ó -lt: ÓÏÒÔÉÒÏ×ÁÔØ ÐÏ ×ÒÅÍÅÎÉ ÉÚÍÅÎÅÎÉÑ; Ó -l:\n" +" ×ÙÄÁ×ÁÔØ ×ÒÅÍÑ ÉÚÍÅÎÅÎÉÑ É ÓÏÒÔÉÒÏ×ÁÔØ ÐÏ " +"ÉÍÅÎÉ,\n" +" ÉÎÁÞÅ ÓÏÒÔÉÒÏ×ÁÔØ ÐÏ ×ÒÅÍÅÎÉ ÉÚÍÅÎÅÎÉÑ\n" + +#: src/ls.c:3784 +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" +" -C ×ÙÄÁ×ÁÔØ ÓÐÉÓÏË × ÎÅÓËÏÌØËÏ ËÏÌÏÎÏË\n" +" --color[=ëïçäá] ÕËÁÚÙ×ÁÅÔ, ÎÕÖÎÏ ÌÉ ×ÙÄÅÌÑÔØ ÔÉÐÙ ÆÁÊÌÏ× " +"Ã×ÅÔÏÍ.\n" +" ëïçäá ÍÏÖÅÔ ÂÙÔØ `never' (ÎÅ ×ÙÄÅÌÑÔØ), " +"`always'\n" +" (×ÙÄÅÌÑÔØ) ÉÌÉ `auto' (ÚÁ×ÉÓÉÔ ÏÔ ÔÅÒÍÉÎÁÌÁ)\n" +" -d, --directory ×ÙÄÁ×ÁÔØ ÉÍÅÎÁ ËÁÔÁÌÏÇÏ×, Á ÎÅ ÉÈ ÓÏÄÅÒÖÉÍÏÅ, " +"Á \n" +" ÔÁËÖÅ ÎÅ ÓÌÅÄÏ×ÁÔØ ÐÏ ÓÉÍ×ÏÌØÎÙÍ ÓÓÙÌËÁÍ\n" +" -D, --dired ÇÅÎÅÒÉÒÏ×ÁÔØ ×Ù×ÏÄ ÄÌÑ ÒÅÖÉÍÁ Emacs Dired\n" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" +" -f ÎÅ ÓÏÒÔÉÒÏ×ÁÔØ, ×ËÌÀÞÁÅÔ -aU, ×ÙËÌÀÞÁÅÔ -lst\n" +" -F, --classify ÄÏÂÁ×ÌÑÔØ ÓÉÍ×ÏÌ ÄÌÑ ÏÐÏÚÎÁ×ÁÎÉÑ ÔÉÐÁ ÆÁÊÌÁ\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time ×Ù×ÏÄÉÔØ ÐÏÌÎÕÀ ÄÁÔÕ É ×ÒÅÍÑ\n" + +#: src/ls.c:3799 +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" +" -g ËÁË -l, ÎÏ ÎÅ ÐÏËÁÚÙ×ÁÔØ ×ÌÁÄÅÌØÃÁ\n" +" -G, --no-group ÎÅ ÏÔÏÂÒÁÖÁÔØ ÉÎÆÏÒÍÁÃÉÀ Ï ÇÒÕÐÐÁÈ\n" +" -h, --human-readable ÐÅÞÁÔÁÔØ ÒÁÚÍÅÒÙ × ÕÄÏÂÎÏÍ ÄÌÑ ÞÅÌÏ×ÅËÁ ×ÉÄÅ\n" +" (ÎÁÐÒÉÍÅÒ, 1K 234M 2G)\n" +" --si ÔÏ ÖÅ, ÎÏ ÉÓÐÏÌØÚÏ×ÁÔØ ÓÔÅÐÅÎÉ 1000, Á ÎÅ 1024\n" +" -H, --dereference-command-line \n" +" ÓÌÅÄÏ×ÁÔØ ÐÏ ÓÉÍ×ÏÌØÎÙÍ ÓÓÙÌËÁÍ × ËÏÍÍÁÎÄÎÏÊ " +"ÓÔÒÏËÅ\n" +" --dereference-command-line-symlink-to-dir\n" +" ÓÌÅÄÏ×ÁÔØ ÐÏ ×ÓÅÍ ÓÉÍ×ÏÌØÎÙÍ ÓÓÙÌËÁÍ × " +"ËÏÍÍÁÎÄÎÏÊ\n" +" ÓÔÒÏËÅ, ËÏÔÏÒÙÅ ÕËÁÚÙ×ÁÀÔ ÎÁ ËÁÔÁÌÏÇ\n" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" +" --indicator-style=WORD ÄÏÂÁ×ÌÑÔØ ÉÎÄÉËÁÔÏÒ ÓÏ ÓÔÉÌÅÍ WORD Ë ÉÍÅÎÁÍ\n" +" ÜÌÅÍÅÎÔÏ×: none (ÐÏ ÕÍÏÌÞÁÎÉÀ), classify (-F), " +"file-type (-p)\n" +" -i, --inode ÐÅÞÁÔÁÔØ ÎÏÍÅÒ ÕÚÌÁ ËÁÖÄÏÇÏ ÆÁÊÌÁ\n" +" -I, --ignore=PATTERN ÎÅ ×Ù×ÏÄÉÔØ ÆÁÊÌÙ ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÉÅ PATTERN\n" +" -k, --kilobytes ÔÏ ÖÅ, ÞÔÏ É --block-size=1K\n" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" +" -l ÉÓÐÏÌØÚÏ×ÁÔØ ÛÉÒÏËÉÊ ÆÏÒÍÁÔ\n" +" -L, --dereference ÐÏËÁÚÙ×ÁÑ ÉÎÆÏÒÍÁÃÉÀ ÄÌÑ ÓÉÍ×ÏÌØÎÏÊ ÓÓÙÌËÅ,\n" +" ÐÏËÁÚÙ×ÁÔØ ÉÎÆÏÒÍÁÃÉÀ Ï ÆÁÊÌÅ, ÎÁ ËÏÔÏÒÙÊ " +"ÓÓÙÌËÁ\n" +" ÓÓÙÌÁÅÔÓÑ\n" +" -m ×ÙÄÁ×ÁÔØ ÓÐÉÓÏË ÎÁ ×ÓÀ ÛÉÒÉÎÕ ÞÅÒÅÚ ÚÁÐÑÔÕÀ\n" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" +" -n, --numeric-uid-gid ×ÙÄÁ×ÁÔØ ÃÉÆÒÏ×ÙÅ UIDÙ É GIDÙ ×ÍÅÓÔÏ ÉÍÅÎ\n" +" -N, --literal ÐÅÞÁÔÁÔØ ÓÉÍ×ÏÌÙ ËÁË ÅÓÔØ\n" +" -o ÉÓÐÏÌØÚÏ×ÁÔØ ÛÉÒÏËÉÊ ÆÏÒÍÁÔ ÂÅÚ ÉÎÆÏÒÍÁÃÉÉ Ï\n" +" ÇÒÕÐÐÅ\n" +" -p, --file-type ÄÏÂÁ×ÌÑÔØ ÏÔÍÅÔËÕ (ÏÄÎÕ ÉÚ /=@|) Ë ÜÌÅÍÅÎÔÁÍ\n" + +#: src/ls.c:3831 +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -q, --hide-control-chars ÐÅÞÁÔÁÔØ ? ×ÍÅÓÔÏ ÎÅ ÇÒÁÆÉÞÅÓËÉÈ ÓÉÍ×ÏÌÏ×\n" +" --show-control-chars ÐÏËÁÚÙ×ÁÔØ ÎÅÐÅÞÁÔÁÅÍÙÅ ÓÉÍ×ÏÌÙ (ÐÏ ÕÍÏÌÞÁÎÉÀ\n" +" ÅÓÌÉ ÐÒÏÇÒÁÍÍÁ ÎÅ `ls' É ×Ù×ÏÄ ÉÄÅÔ ÎÅ ÎÁ\n" +" ÔÅÒÍÉÎÁÌ).\n" +" -Q, --quote-name ÚÁËÌÀÞÁÔØ ÉÍÑ ÆÁÊÌÁ × ËÁ×ÙÞËÉ\n" +" --quoting-style=WORD ÉÓÐÏÌØÚÏ×ÁÔØ ÔÉÐ ÚÁËÌÀÞÅÎÉÑ × ËÁ×ÙÞËÉ WORD:\n" +" literal, shell, shell-always, c, escape\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" +" -r, --reverse ÏÂÒÁÔÎÙÊ ÐÏÒÑÄÏË ÓÏÒÔÉÒÏ×ËÉ\n" +" -R, --recursive Ó ËÁÔÁÌÏÇÁÍÉ\n" +" -s, --size ÐÅÞÁÔÁÔØ ÒÁÚÍÅÒ × ÂÌÏËÁÈ\n" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" +" -S ÓÏÒÔÉÒÏ×ÁÔØ ÐÏ ÒÁÚÍÅÒÕ ÆÁÊÌÁ\n" +" --sort=WORD ÓÏÒÔÉÒÏ×ÁÔØ ÐÏ: ×ÒÅÍÅÎÉ ÉÚÍÅÎÅÎÉÑ -c,\n" +" ÒÁÓÛÉÒÅÎÉÀ -X, ÎÅÔ -U, ÒÁÚÍÅÒÕ -S,\n" +" ÓÔÁÔÕÓÕ -c, ×ÒÅÍÅÎÉ -t, ×ÒÅÍÅÎÉ ÄÏÓÔÕÐÁ -u, " +"access -u,\n" +" ÉÓÐÏÌØÚÏ×ÁÎÉÀ -u\n" +" --time=WORD ÐÏËÁÚÙ×ÁÔØ ×ÒÅÍÑ WORD ×ÍÅÓÔÏ ×ÒÅÍÅÎÉ " +"ÉÚÍÅÎÅÎÉÑ:\n" +" atime, access, use, ctime ÉÌÉ status\n" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" +" --time-style=óôéìø ÐÏËÁÚÙ×ÁÔØ ×ÒÅÍÑ ÉÓÐÏÌØÚÕÑ ÕËÁÚÁÎÎÙÊ óôéìø:\n" +" full-iso, long-iso, iso, locale, +æïòíáô\n" +" æïòíáô ÉÎÔÅÒÐÒÅÔÉÒÕÅÔÓÑ ËÁË × `date'; ÅÓÌÉ " +"æïòíáô \n" +" -- ÜÔÏ æïòíáô1<ÐÅÒÅ×ÏÄ-ÓÔÒÏËÉ>æïòíáô2, æïòíáô1\n" +" ÐÒÉÍÅÎÑÅÔÓÑ Ë ÓÔÁÒÙÍ ÆÁÊÌÁÍ, Á æïòíáô2 Ë " +"ÎÏ×ÙÍ;\n" +" ÅÓÌÉ Ë óôéìà ÄÏÂÁ×ÌÅÎ ÐÒÅÆÉËÓ `posix-', ÔÏ ÏÎ\n" +" ÄÅÊÓÔ×ÕÅÔ ÔÏÌØËÏ × ÌÏËÁÌÉ, ÏÔÌÉÞÎÏÊ ÏÔ POSIX\n" +" -t ÓÏÒÔÉÒÏ×ÁÔØ ÐÏ ×ÒÅÍÅÎÉ ÉÚÍÅÎÅÎÉÑ\n" +" -T, --tabsize=þéóìï ÕÓÔÁÎÏ×ÉÔØ ÛÁÇ ÔÁÂÕÌÑÃÉÉ ÒÁ×ÎÙÍ þéóìõ ×ÍÅÓÔÏ 8\n" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" +" -u Ó -lt: ÓÏÒÔÉÒÏ×ÁÔØ É ÐÏËÁÚÙ×ÁÔØ ×ÒÅÍÑ ÄÏÓÔÕÐÁ\n" +" c -l: ÐÏËÁÚÙ×ÁÔØ ×ÒÅÍÑ ÄÏÓÔÕÐÁ É ÓÏÒÔÉÒÏ×ÁÔØ " +"ÐÏ ÉÍÅÎÉ\n" +" ÉÎÁÞÅ: ÓÏÒÔÉÒÏ×ÁÔØ ÐÏ ×ÒÅÍÅÎÉ ÄÏÓÔÕÐÁ\n" +" -U ÎÅ ÓÏÒÔÉÒÏ×ÁÔØ; ÐÅÞÁÔÁÔØ × ÓÏÏÔ×ÅÔÓÔ×ÉÉ Ó\n" +" ÆÉÚÉÞÅÓËÉÍ ÒÁÓÐÏÌÏÖÅÎÉÅÍ\n" +" -v ÓÏÒÔÉÒÏ×ÁÔØ ÐÏ ×ÅÒÓÉÉ\n" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" +" -w, --width=þéóìï ÚÁÄÁÅÔ ÛÉÒÉÎÕ ÜËÒÁÎÁ ×ÍÅÓÔÏ ÔÅËÕÝÅÇÏ ÚÎÁÞÅÎÉÑ\n" +" -x ÐÅÒÅÞÉÓÌÑÅÔ ×ÈÏÖÄÅÎÉÑ ÐÏ ÓÔÒÏËÁÍ, Á ÎÅ ÐÏ " +"ÓÔÏÌÂÃÁÍ\n" +" -X ÓÏÒÔÉÒÏ×ÁÔØ ÐÏ ÒÁÓÛÉÒÅÎÉÀ × ÁÌÆÁ×ÉÔÎÏÍ ÐÏÒÑÄËÅ\n" +" -1 ÐÅÒÅÞÉÓÌÑÔØ ÐÏ ÏÄÎÏÍÕ ÆÁÊÌÕ ÎÁ ÓÔÒÏËÅ\n" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" +"\n" +"ðÏ ÕÍÏÌÞÁÎÉÀ Ã×ÅÔ ÎÅ ÉÓÐÏÌØÚÕÅÔÓÑ ÄÌÑ ÒÁÚÌÉÞÅÎÉÑ ÆÁÊÌÏ×. üÔÏ ÜË×É×ÁÌÅÎÔÎÏ\n" +"--color=none. éÓÐÏÌØÚÏ×ÁÎÉÅ ËÌÀÞÁ --color ÂÅÚ ÁÒÇÕÍÅÎÔÁ ÜË×É×ÁÌÅÎÔÎÏ\n" +"--color=always. ó --color=auto, ËÏÄÙ Ã×ÅÔÁ ÂÕÄÕÔ ×ÙÄÁ×ÁÔØÓÑ ÔÏÌØËÏ ÎÁ\n" +"ÔÅÒÍÉÎÁÌ (tty).\n" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "õÌØÒÉÈ äÒÅÐÐÅÒ É óËÏÔÔ íÉÌÌÅÒ" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ] [æáêì]...\n" +" ÉÌÉ: %s [ëìàþ] --check [æáêì]\n" +"ðÅÞÁÔÁÅÔ ÉÌÉ ÐÒÏ×ÅÒÑÅÔ ËÏÎÔÒÏÌØÎÙÅ ÓÕÍÍÙ %s (%d-ÂÉÔÎÙÅ).\n" +"åÓÌÉ æáêì ÎÅ ÚÁÄÁÎ ÉÌÉ ÚÁÄÁÎ ËÁË -, ÞÉÔÁÅÔ ÓÔÁÎÄÁÒÔÎÙÊ ××ÏÄ.\n" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" +"\n" +" -b, --binary ÞÉÔÁÔØ ÆÁÊÌÙ × Ä×ÏÉÞÎÏÍ ×ÉÄÅ (ÉÓÐÏÌØÚÕÅÔÓÑ ÐÏ \n" +" ÕÍÏÌÞÁÎÉÀ × DOS É Windows)\n" +" -c, --check Ó×ÅÒÉÔØ ËÏÎÔÒÏÌØÎÙÅ ÓÕÍÍÙ %s Ó ÚÁÄÁÎÎÙÍÉ × ÓÐÉÓËÅ\n" +" -t, --text ÞÉÔÁÔØ ÆÁÊÌÙ × ÔÅËÓÔÏ×ÏÍ ×ÉÄÅ (ÐÏ ÕÍÏÌÞÁÎÉÀ)\n" +"\n" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" +"ä×Á ÓÌÅÄÕÀÝÉÈ ËÌÀÞÁ ÉÓÐÏÌØÚÕÀÔÓÑ ÔÏÌØËÏ ÐÒÉ ÐÒÏ×ÅÒËÅ ËÏÎÔÒÏÌØÎÙÈ ÓÕÍÍ:\n" +" --status ÎÅ ÐÒÏÉÚ×ÏÄÉÔØ ×Ù×ÏÄ, ×ÙÈÏÄÎÏÅ ÚÎÁÞÅÎÉÅ " +"ÐÏËÁÚÙ×ÁÅÔ\n" +" ÕÓÐÅÈ ÐÒÏ×ÅÒËÉ\n" +" -w, --warn ÐÒÅÄÕÐÒÅÖÄÁÔØ Ï ÎÅÐÒÁ×ÉÌØÎÏ ÓÏÓÔÁ×ÌÅÎÎÙÈ ÓÔÒÏËÁÈ " +"×\n" +" ÓÐÉÓËÅ ËÏÎÔÒÏÌØÎÙÈ ÓÕÍÍ\n" +"\n" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" +"\n" +"íÅÔÏÄ ×ÙÞÉÓÌÅÎÉÑ ËÏÎÔÒÏÌØÎÙÈ ÓÕÍÍ ÏÐÉÓÁÎ × %s. ÷ÈÏÄÎÙÍÉ ÄÁÎÎÙÍÉ ÐÒÉ\n" +"ÐÒÏ×ÅÒËÅ ÄÏÌÖÎÙ ÂÙÔØ ÐÏÌÕÞÅÎÎÙÅ ÒÁÎÅÅ ×ÙÈÏÄÎÙÅ ÄÁÎÎÙÅ ÜÔÏÊ ÐÒÏÇÒÁÍÍÙ.\n" +"ðÏ ÕÍÏÌÞÁÎÉÀ ÐÅÞÁÔÁÅÔ ÓÔÒÏËÕ Ó ËÏÎÔÒÏÌØÎÏÊ ÓÕÍÍÏÊ, ÚÎÁË, ÐÏËÁÚÙ×ÁÀÝÉÊ\n" +"ÔÉÐ ÆÁÊÌÁ (`*' ÄÌÑ Ä×ÏÉÞÎÙÈ, ` ' ÄÌÑ ÔÅËÓÔÏ×ÙÈ), É ÉÍÑ ËÁÖÄÏÇÏ æáêìá.\n" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "%s: %lu: ÎÅÐÒÁ×ÉÌØÎÏ ÓÏÓÔÁ×ÌÅÎÎÁÑ ÓÔÒÏËÁ ËÏÎÔÒÏÌØÎÏÊ ÓÕÍÍÙ %s" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "%s: ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÉÌÉ ÐÒÏÞÉÔÁÔØ\n" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "îåõóðåûîï" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "õÓÐÅÈ" + +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%s: ÏÛÉÂËÁ ÞÔÅÎÉÑ" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "%s: ÎÅ ÎÁÊÄÅÎÏ ×ÅÒÎÏ ÓÏÓÔÁ×ÌÅÎÎÙÈ ÓÔÒÏË ËÏÎÔÒÏÌØÎÙÈ ÓÕÍÍ %s" + +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "ðòåäõðòåöäåîéå: ÎÅ ÕÄÁÌÏÓØ ÐÒÏÞÉÔÁÔØ %d ÉÚ %d ÐÅÒÅÞÉÓÌÅÎÎÙÈ %s" + +#: src/md5sum.c:473 +msgid "file" +msgstr "ÆÁÊÌÁ" + +#: src/md5sum.c:473 +msgid "files" +msgstr "ÆÁÊÌÏ×" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: %d ÉÚ %d ÏÂÒÁÂÏÔÁÎÎÙÈ %s îå ÓÏ×ÐÁÄÁÅÔ" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "ËÏÎÔÒÏÌØÎÁÑ ÓÕÍÍÁ" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "ËÏÎÔÒÏÌØÎÙÈ ÓÕÍÍ" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "ËÌÀÞÉ --binary É --text ÂÅÓÓÍÙÓÌÅÎÎÙ ÐÒÉ ÐÒÏ×ÅÒËÅ ËÏÎÔÒÏÌØÎÙÈ ÓÕÍÍ" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "ËÌÀÞÉ --string É --check ×ÚÁÉÍÎÏ ÉÓËÌÀÞÁÀÔ ÄÒÕÇ ÄÒÕÇÁ" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "ËÌÀÞ --status ÉÍÅÅÔ ÓÍÙÓÌ ÔÏÌØËÏ ÐÒÉ ÐÒÏ×ÅÒËÅ ËÏÎÔÒÏÌØÎÙÈ ÓÕÍÍ" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "ËÌÀÞ --warn ÉÍÅÅÔ ÓÍÙÓÌ ÔÏÌØËÏ ÐÒÉ ÐÒÏ×ÅÒËÅ ËÏÎÔÒÏÌØÎÙÈ ÓÕÍÍ" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "ÐÒÉ ÉÓÐÏÌØÚÏ×ÁÎÉÉ ËÌÀÞÁ --string ÎÅÌØÚÑ ÚÁÄÁ×ÁÔØ ÆÁÊÌÙ" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "ÐÒÉ ÉÓÐÏÌØÚÏ×ÁÎÉÉ ËÌÀÞÁ --check ÍÏÖÎÏ ÚÁÄÁÔØ ÔÏÌØËÏ ÏÄÉÎ ÁÒÇÕÍÅÎÔ" + +#: src/mkdir.c:61 +#, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ] ëáôáìïç...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" +"óÏÚÄÁÅÔ DIRECTORY, ÅÓÌÉ ÏÎÁ ÅÝÅ ÎÅ ÓÕÝÅÓÔ×ÕÅÔ.\n" +"\n" + +#: src/mkdir.c:69 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +" -m, --mode=MODE ÕÓÔÁÎÏ×ÉÔØ ËÏÄ ÄÏÓÔÕÐÁ (ËÁË × chmod)\n" +" -p, --parents ÎÅ ×ÙÄÁ×ÁÔØ ÏÛÉÂÏË ÅÓÌÉ ÓÕÝÅÓÔ×ÕÅÔ, ÓÏÚÄÁ×ÁÔØ\n" +" ÒÏÄÉÔÅÌØÓËÉÅ ËÁÔÁÌÏÇÉ ÅÓÌÉ ÎÅÏÂÈÏÄÉÍÏ\n" +" -v, --verbose ÐÅÞÁÔÁÔØ ÓÏÏÂÝÅÎÉÅ Ï ËÁÖÄÏÍ ÓÏÚÄÁÎÎÏÍ ËÁÔÁÌÏÇÅ\n" + +#: src/mkdir.c:113 +#, c-format +msgid "created directory %s" +msgstr "ÓÏÚÄÁÎ ËÁÔÁÌÏÇ %s" + +#: src/mkdir.c:190 +#, c-format +msgid "cannot set permissions of directory %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÉÚÍÅÎÉÔØ ÐÒÁ×Á ÄÏÓÔÕÐÁ ÄÌÑ ËÁÔÁÌÏÇÁ %s" + +#: src/mkfifo.c:55 +#, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ] éíñ...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" +"óÏÚÄÁÅÔ ÉÍÅÎÏ×ÁÎÎÙÅ ËÁÎÁÌÙ (FIFO) ÄÌÑ ÚÁÄÁÎÎÏÇÏ NAME.\n" +"\n" + +#: src/mkfifo.c:63 src/mknod.c:64 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" +" -m, --mode=MODE ÕÓÔÁÎÏ×ÉÔØ ÐÒÁ×Á ÄÏÓÔÕÐÁ (ËÁË × chmod). ÷ÓÅ ÂÉÔÙ ËÒÏÍÅ\n" +" a=rw ÉÇÎÏÒÉÒÕÀÔÓÑ\n" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "ÉÍÅÎÏ×ÁÎÎÙÅ ËÁÎÁÌÙ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ" + +#: src/mkfifo.c:123 src/mknod.c:127 +msgid "invalid mode" +msgstr "ÎÅ×ÅÒÎÙÊ ÒÅÖÉÍ" + +#: src/mkfifo.c:142 +#, c-format +msgid "cannot set permissions of fifo %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÉÚÍÅÎÉÔØ ÐÒÁ×Á ÄÏÓÔÕÐÁ ÄÌÑ ÏÞÅÒÅÄÉ %s" + +#: src/mknod.c:55 +#, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... éíñ ôéð [ïóîï÷îïê ÷ôïòïóôåðåîîùê]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" +"óÏÚÄÁÅÔ ÓÐÅÃÉÁÌØÎÙÊ ÆÁÊÌ Ó ÉÍÅÎÅÍ NAME É ÔÉÐÏÍ TYPE.\n" +"\n" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" +"\n" +"åÓÌÉ ôéð -- ÜÔÏ b, c ÉÌÉ u, ÎÅÏÂÈÏÄÉÍÏ ÚÁÄÁ×ÁÔØ ËÁË ïóîï÷îïê, ÔÁË É\n" +"÷ôïòïóôåðåîîùê, Á ÅÓÌÉ ôéð ÒÁ×ÅÎ p, ÉÈ ÎÅÌØÚÑ ÚÁÄÁ×ÁÔØ. åÓÌÉ ïóîï÷îïê\n" +"ÉÌÉ ÷ôïòïóôåðåîîùê ÎÁÞÉÎÁÀÔÓÑ ÎÁ 0x ÉÌÉ 0X, ÏÎÉ ÉÎÔÅÒÐÒÅÔÉÒÕÀÔÓÑ ËÁË\n" +"ÛÅÓÔÎÁÄÃÁÔÉÒÉÞÎÙÅ ÞÉÓÌÁ; ÅÓÌÉ ÎÁÞÉÎÁÀÔÓÑ ÎÁ 0, ÔÏ ËÁË ×ÏÓØÍÅÒÉÞÎÙÅ;\n" +"ÉÎÁÞÅ ËÁË ÄÅÓÑÔÉÞÎÙÅ. ôéð ÍÏÖÅÔ ÐÒÉÎÉÍÁÔØ ÓÌÅÄÕÀÝÉÅ ÚÎÁÞÅÎÉÑ:\n" + +#: src/mknod.c:76 +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"\n" +" b ÓÏÚÄÁÔØ ÆÁÊÌ ÂÌÏÞÎÏÇÏ ÕÓÔÒÏÊÓÔ×Á (ÂÕÆÅÒÉÚÏ×ÁÎÎÙÊ)\n" +" c, u ÓÏÚÄÁÔØ ÆÁÊÌ ÓÉÍ×ÏÌØÎÏÇÏ ÕÓÔÒÏÊÓÔ×Á (ÎÅÂÕÆÅÒÉÚÏ×ÁÎÎÙÊ)\n" +" p ÓÏÚÄÁÔØ ÉÍÅÎÏ×ÁÎÎÙÊ ËÁÎÁÌ\n" + +#: src/mknod.c:141 +msgid "wrong number of arguments" +msgstr "ÎÅÐÒÁ×ÉÌØÎÏÅ ÞÉÓÌÏ ÁÒÇÕÍÅÎÔÏ×" + +#: src/mknod.c:153 +msgid "block special files not supported" +msgstr "ÂÌÏÞÎÙÅ ÓÐÅÃÉÁÌØÎÙÅ ÆÁÊÌÙ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ" + +#: src/mknod.c:162 +msgid "character special files not supported" +msgstr "ÚÎÁËÏ×ÙÅ ÓÐÅÃÉÁÌØÎÙÅ ÆÁÊÌÙ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ" + +#: src/mknod.c:171 +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" +"ËÏÇÄÁ ÓÏÚÄÁÅÔÓÑ ÆÁÊÌ ÂÌÏÞÎÏÇÏ ÕÓÔÒÏÊÓÔ×Á ÄÏÌÖÎÙ ÂÙÔØ ÕËÁÚÁÎÙ ÓÔÁÒÛÉÊ\n" +"É ÍÌÁÄÛÉÊ ÎÏÍÅÒÁ" + +#: src/mknod.c:186 +#, c-format +msgid "invalid major device number %s" +msgstr "ÎÅ×ÅÒÎÏÅ ÏÓÎÏ×ÎÏÅ ÞÉÓÌÏ ÕÓÔÒÏÊÓÔ×Á %s" + +#: src/mknod.c:191 +#, c-format +msgid "invalid minor device number %s" +msgstr "ÎÅ×ÅÒÎÏÅ ×ÔÏÒÏÓÔÅÐÅÎÎÏÅ ÞÉÓÌÏ ÕÓÔÒÏÊÓÔ×Á %s" + +#: src/mknod.c:196 +#, c-format +msgid "invalid device %s %s" +msgstr "ÎÅ×ÅÒÎÏÅ ÕÓÔÒÏÊÓÔ×Ï %s %s" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "" +"ÓÔÁÒÛÉÊ É ÍÌÁÄÛÉÊ ÎÏÍÅÒÁ ÕÓÔÒÏÊÓÔ×Á ÎÅ ÍÏÇÕÔ ÂÙÔØ ÕËÁÚÁÎÙ ÄÌÑ ÉÍÅÎÏ×ÁÎÎÙÈ " +"ËÁÎÁÌÏ×" + +#: src/mknod.c:231 +#, c-format +msgid "cannot set permissions of %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÕÓÔÁÎÏ×ÉÔØ ÐÒÁ×Á ÄÏÓÔÕÐÁ ÄÌÑ %s" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "íÁÊË ðÁÒËÅÒ, äÅ×ÉÄ íÁËëÅÎÚÉ É äÖÉÍ íÅÅÒÉÎÇ" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"ðÅÒÅÉÍÅÎÏ×Ù×ÁÅÔ SOURCE × DEST, ÉÌÉ ÐÅÒÅÎÏÓÉÔ SOURCE(Ù) × DIRECTORY.\n" +"\n" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" +" --backup[=CONTROL] ÓÏÚÄÁÔØ ÒÅÚÅÒ×ÎÕÀ ËÏÐÉÀ ÐÅÒÅÄ ÕÄÁÌÅÎÉÅÍ\n" +" -b ÔÏ ÖÅ, ÞÔÏ É --backup, ÎÏ ÂÅÚ ÁÒÇÕÍÅÎÔÁ\n" +" -f, --force ÐÅÒÅÐÉÓÙ×ÁÔØ ÓÕÝÅÓÔ×ÕÀÝÉÅ ÆÁÊÌÙ ÎÅ ÓÐÒÁÛÉ×ÁÑ\n" +" ÔÏ ÖÅ ÞÔÏ É --reply=yes\n" +" -i, --interactive ÓÐÒÁÛÉ×ÁÔØ ÐÅÒÅÄ ÔÅÍ ËÁË ÐÅÒÅÐÉÓÙ×ÁÔØ\n" +" ÔÏ ÖÅ ÞÔÏ É --reply=query\n" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" +" --reply={yes,no,query} ÕËÁÚÙ×ÁÅÔ ËÁË ÏÂÒÁÂÁÔÙ×ÁÔØ ÓÉÔÕÁÃÉÀ Ó\n" +" ÓÕÝÅÓÔ×ÕÀÝÉÍ ÆÁÊÌÏÍ ÎÁÚÎÁÞÅÎÉÑ\n" +" --strip-trailing-slashes ÕÄÁÌÑÅÔ ×ÓÅ ËÏÎÅÞÎÙÅ ÐÒÏÂÅÌÙ ÉÚ ËÁÖÄÏÇÏ\n" +" ÁÒÇÕÍÅÎÔÁ SOURCE\n" +" -S, --suffix=SUFFUX ÕÓÔÁÎÏ×ÉÔØ ÓÕÆÆÉËÓ ÄÌÑ ÚÁÐÁÓÎÙÈ ËÏÐÉÊ ËÁË\n" +" SUFFIX\n" + +#: src/mv.c:339 +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +" --target-directory=DIRECTORY ÐÅÒÅÍÅÓÔÉÔØ ×ÓÅ SOURCE × DIRECTORY\n" +" -u, --update ËÏÐÉÒÏ×ÁÔØ ÔÏÌØËÏ ÔÏÇÄÁ ËÏÇÄÁ ÉÓÈÏÄÎÙÊ ÆÁÊÌ\n" +" ÎÏ×ÅÅ ÞÅÍ ÆÁÊÌ ÎÁÚÎÁÞÅÎÉÑ, ÉÌÉ ËÏÇÄÁ ÆÁÊÌ\n" +" ÎÁÚÎÁÞÅÎÉÑ ÏÔÓÕÔÓÔ×ÕÅÔ\n" +" -v, --verbose ÐÏÑÓÎÑÔØ ÞÔÏ ÂÕÄÅÔ ÓÄÅÌÁÎÏ\n" + +#: src/mv.c:467 +#, c-format +msgid "specified target, %s is not a directory" +msgstr "ÕËÁÚÁÎÎÁÑ ÃÅÌØ %s ÎÅ Ñ×ÌÑÅÔÓÑ ËÁÔÁÌÏÇÏÍ" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "ÐÒÉ ÐÅÒÅÎÏÓÅ ÎÅÓËÏÌØËÏ ÆÁÊÌÏ× ÐÏÓÌÅÄÎÉÍ ÁÒÇÕÍÅÎÔÏÍ ÄÏÌÖÅÎ ÂÙÔØ ËÁÔÁÌÏÇ" + +#: src/nice.c:67 +#, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ] [ëïíáîäá [áòç]...]\n" + +#: src/nice.c:68 +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" +"úÁÐÕÓËÁÅÔ ëïíáîäõ Ó ÉÚÍÅÎÅÎÎÙÍ ÐÒÉÏÒÉÔÅÔÏÍ.\n" +"åÓÌÉ ëïíáîäá ÎÅ ÚÁÄÁÎÁ, ÐÅÞÁÔÁÅÔ ÔÅËÕÝÉÊ ÐÒÉÏÒÉÔÅÔ. ðÏ ÕÍÏÌÞÁÎÉÀ ðïðòá÷ëá\n" +"ÒÁ×ÎÁ 10. äÏÐÕÓÔÉÍÙÅ ÐÒÅÄÅÌÙ ÏÔ -20 (ÎÁÉÂÏÌØÛÉÊ ÐÒÉÏÒÉÔÅÔ) ÄÏ 19 " +"(ÎÁÉÍÅÎØÛÉÊ).\n" +"\n" +" -n, --adjustment=ðïðòá÷ëá Õ×ÅÌÉÞÉÔØ ÐÒÉÏÒÉÔÅÔ ÎÁ ðïðòá÷ëõ\n" + +#: src/nice.c:109 src/nice.c:122 +#, c-format +msgid "invalid option `%s'" +msgstr "ËÌÀÞ `%s' ÎÅÐÒÁ×ÉÌÅÎ" + +#: src/nice.c:147 +#, c-format +msgid "invalid priority `%s'" +msgstr "ÐÒÉÏÒÉÔÅÔ `%s' ÎÅÐÒÁ×ÉÌÅÎ" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "ÅÓÌÉ ÚÁÄÁÎÁ ÐÏÐÒÁ×ËÁ, ÄÏÌÖÎÁ ÂÙÔØ ÕËÁÚÁÎÁ ËÏÍÁÎÄÁ" + +#: src/nice.c:178 src/nice.c:187 +msgid "cannot get priority" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÕÚÎÁÔØ ÐÒÉÏÒÉÔÅÔ" + +#: src/nice.c:192 +msgid "cannot set priority" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÕÓÔÁÎÏ×ÉÔØ ÐÒÉÏÒÉÔÅÔ" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "óËÏÔÔ âÁÒÔÒÁÍ É äÅ×ÉÄ íÁËëÅÎÚÉ" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"ðÅÞÁÔÁÅÔ ËÁÖÄÙÊ æáêì ÎÁ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ, ÄÏÂÁ×ÌÑÑ ÎÏÍÅÒÁ ÓÔÒÏË.\n" +"åÓÌÉ æáêì ÎÅ ÚÁÄÁÎ ÉÌÉ ÚÁÄÁÎ ËÁË -, ÞÉÔÁÅÔ ÓÔÁÎÄÁÒÔÎÙÊ ××ÏÄ.\n" +"\n" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" +" -b, --body-numbering=óôéìø ÉÓÐÏÌØÚÏ×ÁÔØ óôéìø ÎÕÍÅÒÏ×ÁÎÉÑ ÓÔÒÏË ÔÅÌÁ\n" +" -d, --section-delimiter=óó ÉÓÐÏÌØÚÏ×ÁÔØ óó ÄÌÑ ÒÁÚÄÅÌÅÎÉÑ ÌÏÇÉÞÅÓËÉÈ\n" +" ÓÔÒÁÎÉÃ\n" +" -f, --footer-numbering=óôéìø ÉÓÐÏÌØÚÏ×ÁÔØ óôéìø ÎÕÍÅÒÏ×ÁÎÉÑ ÓÔÒÏË " +"ÎÉÖÎÅÇÏ\n" +" ËÏÌÏÎÔÉÔÕÌÁ\n" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" +" -h, --header-numbering=óôéìø ÉÓÐÏÌØÚÏ×ÁÔØ óôéìø ÎÕÍÅÒÏ×ÁÎÉÑ ÓÔÒÏË " +"×ÅÒÈÎÅÇÏ\n" +" ËÏÌÏÎÔÉÔÕÌÁ\n" +" -i, --page-increment=þéóìï ÛÁÇ Õ×ÅÌÉÞÅÎÉÑ ÎÏÍÅÒÏ× ÓÔÒÏË\n" +" -l, --join-blank-lines=þéóìï ÚÁÄÁÎÎÏÅ þéóìï ÐÕÓÔÙÈ ÓÔÒÏË ÓÞÉÔÁÔØ ÏÄÎÏÊ\n" +" -n, --number-format=æïòíáô ÉÓÐÏÌØÚÏ×ÁÔØ æïòíáô ÄÌÑ ÎÏÍÅÒÏ× ÓÔÒÏË\n" +" -p, --no-renumber ÎÅ ÎÁÞÉÎÁÔØ ÎÕÍÅÒÁÃÉÀ ÚÁÎÏ×Ï ÐÏÓÌÅ ËÁÖÄÏÊ\n" +" ÌÏÇÉÞÅÓËÏÊ ÓÔÒÁÎÉÃÙ\n" +" -s, --number-separator=óôòïëá ÄÏÂÁ×ÌÑÔØ óôòïëõ ÐÏÓÌÅ ÎÏÍÅÒÁ\n" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" +" -v, --first-page=þéóìï ÐÅÒ×ÙÊ ÎÏÍÅÒ ÓÔÒÏËÉ ÄÌÑ ËÁÖÄÏÊ ÌÏÇÉÞÅÓËÏÊ\n" +" ÓÔÒÁÎÉÃÙ\n" +" -w, --number-width=þéóìï ÉÓÐÏÌØÚÏ×ÁÔØ ÚÁÄÁÎÎÏÅ þéóìï ÓÔÏÌÂÃÏ× ÄÌÑ\n" +" ÎÏÍÅÒÏ× ÓÔÒÏË\n" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" +"\n" +"ðÏ ÕÍÏÌÞÁÎÉÀ ÉÓÐÏÌØÚÕÀÔÓÑ -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. óó -- ÜÔÏ " +"Ä×Á\n" +"ÚÎÁËÁ, ÒÁÚÄÅÌÑÀÝÉÅ ÌÏÇÉÞÅÓËÉÅ ÓÔÒÁÎÉÃÙ; ÅÓÌÉ ÚÁÄÁÎ ÔÏÌØËÏ ÏÄÉÎ, ÔÏ × " +"ËÁÞÅÓÔ×Å\n" +"×ÔÏÒÏÇÏ ÉÓÐÏÌØÚÕÅÔÓÑ :. ÷×ÏÄÉÔÅ \\\\ ÞÔÏÂÙ ÐÏÌÕÞÉÔØ \\. óôéìø ÚÁÄÁÅÔÓÑ ËÁË " +"ÏÄÉÎ\n" +"ÉÚ ÓÌÅÄÕÀÝÉÈ:\n" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" +"\n" +" a ÎÕÍÅÒÏ×ÁÔØ ×ÓÅ ÓÔÒÏËÉ\n" +" t ÎÕÍÅÒÏ×ÁÔØ ÔÏÌØËÏ ÎÅÐÕÓÔÙÅ ÓÔÒÏËÉ\n" +" n ÎÅ ÎÕÍÅÒÏ×ÁÔØ ÓÔÒÏËÉ\n" +" pREGEXP ÎÕÍÅÒÏ×ÁÔØ ÔÏÌØËÏ ÓÔÒÏËÉ, ÞÁÓÔØ ËÏÔÏÒÙÈ ÓÏ×ÐÁÄÁÅÔ Ó ÒÅÇÕÌÑÒÎÙÍ\n" +" ×ÙÒÁÖÅÎÉÅÍ\n" +"\n" +"æïòíáô ÚÁÄÁÅÔÓÑ ËÁË ÏÄÉÎ ÉÚ ÓÌÅÄÕÀÝÉÈ:\n" +" ln ×ÙÒÁ×ÎÉ×ÁÔØ ÐÏ ÌÅ×ÏÍÕ ËÒÁÀ, ÎÅ ×Ù×ÏÄÉÔØ ÎÁÞÁÌØÎÙÅ ÎÕÌÉ\n" +" rn ×ÙÒÁ×ÎÉ×ÁÔØ ÐÏ ÐÒÁ×ÏÍÕ ËÒÁÀ, ÎÅ ×Ù×ÏÄÉÔØ ÎÁÞÁÌØÎÙÅ ÎÕÌÉ\n" +" rz ×ÙÒÁ×ÎÉ×ÁÔØ ÐÏ ÐÒÁ×ÏÍÕ ËÒÁÀ, ×Ù×ÏÄÉÔØ ÎÁÞÁÌØÎÙÅ ÎÕÌÉ\n" +"\n" + +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÎÁÞÁÌØÎÏÊ ÓÔÒÏËÉ: `%s'" + +#: src/nl.c:514 +#, c-format +msgid "invalid line number increment: `%s'" +msgstr "ÎÅ×ÅÒÎÏÅ ÐÒÉÒÁÝÅÎÉÅ ÎÏÍÅÒÁ ÓÔÒÏËÉ: `%s'" + +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "ÎÅ×ÅÒÎÏÅ ÞÉÓÌÏ ÐÕÓÔÙÈ ÓÔÒÏË: `%s'" + +#: src/nl.c:541 +#, c-format +msgid "invalid line number field width: `%s'" +msgstr "ÎÅ×ÅÒÎÁÑ ÛÉÒÉÎÁ ÐÏÌÑ ÄÌÑ ÎÏÍÅÒÁ ÓÔÒÏËÉ: `%s'" + +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... [æáêì]...\n" +" ÉÌÉ: %s --traditional [æáêì] [[+]óíåýåîéå [[+]íåôëá]]\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"\n" +"ðÅÞÁÔÁÅÔ ÏÄÎÏÚÎÁÞÎÏÅ (ÐÏ ÕÍÏÌÞÁÎÉÀ ÂÁÊÔÏ×ÏÅ ×ÏÓØÍÅÒÉÞÎÏÅ) ÐÒÅÄÓÔÁ×ÌÅÎÉÅ " +"æáêìá\n" +"ÎÁ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ. åÓÌÉ æáêì ÎÅ ÚÁÄÁÎ ÉÌÉ ÚÁÄÁÎ ËÁË -, ÞÉÔÁÅÔ " +"ÓÔÁÎÄÁÒÔÎÙÊ\n" +"××ÏÄ.\n" +"\n" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "÷ÓÅ ÁÒÇÕÍÅÎÔÙ ÄÌÑ ÄÌÉÎÎÙÈ ËÌÀÞÅÊ ÏÂÑÚÁÔÅÌØÎÙ ÄÌÑ ËÏÒÏÔËÉÈ.\n" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" +" -A, --address-radix=ïóîï÷áîéå ×Ù×ÏÄÉÔØ ÓÍÅÝÅÎÉÑ × ÆÁÊÌÁÈ × ÚÁÄÁÎÎÏÊ " +"ÓÉÓÔÅÍÅ\n" +" ÓÞÉÓÌÅÎÉÑ\n" +" -j, --skip-bytes=î ÐÒÏÐÕÓÔÉÔØ ÐÅÒ×ÙÅ î ÂÁÊÔ\n" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" +" -N, --read-bytes=î ÓÞÉÔÙ×ÁÔØ ÔÏÌØËÏ î ÂÁÊÔ × ËÁÖÄÏÍ ÆÁÊÌÅ\n" +" -s, --strings[=î] ×Ù×ÏÄÉÔØ ÓÔÒÏËÉ ÄÌÉÎÏÊ ÐÏ ÍÅÎØÛÅÊ ÍÅÒÅ î\n" +" ÐÅÞÁÔÎÙÈ ÓÉÍ×ÏÌÏ×\n" +" -t, --format=æïòíáô ×Ù×ÏÄÉÔØ × ÚÁÄÁÎÎÏÍ ÆÏÒÍÁÔÅ\n" +" -v, --output-duplicates ÎÅ ÐÏÍÅÞÁÔØ ÎÅ ×Ù×ÏÄÉÍÙÅ ÓÔÒÏËÉ " +"Ú×ÅÚÄÏÞËÁÍÉ\n" +" -w, --width[=î] ×Ù×ÏÄÉÔØ î ÂÁÊÔ × ËÁÖÄÏÊ ×ÙÈÏÄÎÏÊ ÓÔÒÏËÅ\n" +" --traditional ÐÒÉÎÉÍÁÔØ ÁÒÇÕÍÅÎÔÙ × ÔÒÁÄÉÃÉÏÎÎÏÊ ÆÏÒÍÅ\n" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" +"\n" +"ôÒÁÄÉÃÉÏÎÎÙÅ ÓÐÅÃÉÆÉËÁÃÉÉ ÆÏÒÍÁÔÁ ÍÏÖÎÏ ÐÉÓÁÔØ ×ÐÅÒÅÍÅÛËÕ, \n" +"ÏÎÉ ×ËÌÀÞÁÀÔ:\n" +" -a ÓÉÎÏÎÉÍ -t a, ÉÍÅÎÏ×ÁÎÙÅ ÚÎÁËÉ\n" +" -b ÓÉÎÏÎÉÍ -t oC, ×ÏÓØÍÅÒÉÞÎÙÅ ÂÁÊÔÏ×ÙÅ\n" +" -c ÓÉÎÏÎÉÍ -t c, ASCII-ÚÎÁËÉ ÉÌÉ ÕÐÒÁ×ÌÑÀÝÉÅ ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏÓÔÉ Ó `\\'\n" +" -d ÓÉÎÏÎÉÍ -t u2, ÂÅÚÚÎÁËÏ×ÙÅ ÄÅÓÑÔÉÞÎÙÅ ËÏÒÏÔËÉÅ\n" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" +" -f ÓÉÎÏÎÉÍ -t fF, ÞÉÓÌÁ Ó ÐÌÁ×ÁÀÝÅÊ ÔÏÞËÏÊ\n" +" -h ÓÉÎÏÎÉÍ -t x2, ÛÅÓÔÎÁÄÃÁÔÅÒÉÞÎÙÅ ËÏÒÏÔËÉÅ\n" +" -i ÓÉÎÏÎÉÍ -t d2, ÄÅÓÑÔÉÞÎÙÅ ËÏÒÏÔËÉÅ\n" +" -l ÓÉÎÏÎÉÍ -t d4, ÄÅÓÑÔÉÞÎÙÅ ÄÌÉÎÎÙÅ\n" +" -o ÓÉÎÏÎÉÍ -t o2, ×ÏÓØÍÅÒÉÞÎÙÅ ËÏÒÏÔËÉÅ\n" +" -x ÓÉÎÏÎÉÍ -t x2, ÛÅÓÔÎÁÄÃÁÔÅÒÉÞÎÙÅ ËÏÒÏÔËÉÅ\n" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" +"\n" +"ðÒÉ ÉÓÐÏÌØÚÏ×ÁÎÉÉ ÓÔÁÒÏÇÏ ÓÉÎÔÁËÓÉÓÁ (×ÔÏÒÁÑ ÆÏÒÍÁ ×ÙÚÏ×Á), óíåýåîéå\n" +"ÏÚÎÁÞÁÅÔ -j óíåýåîéå. íåôëá -- ÜÔÏ ÐÓÅ×ÄÏÁÄÒÅÓ ÐÅÒ×ÏÇÏ ÎÁÐÅÞÁÔÁÎÎÏÇÏ\n" +"ÂÁÊÔÁ, Õ×ÅÌÉÞÉ×ÁÅÔÓÑ × ÐÒÏÃÅÓÓÅ ×Ù×ÏÄÁ. ðÒÅÆÉËÓ 0x ÉÌÉ 0X ÚÁÄÁÅÔ\n" +"óíåýåîéå ÉÌÉ íåôëõ ËÁË ÛÅÓÔÎÁÄÃÁÔÅÒÉÞÎÙÅ ÞÉÓÌÁ, ÓÕÆÆÉËÓ . -- ËÁË\n" +"×ÏÓØÍÅÒÉÞÎÙÅ, Á ÓÕÆÆÉËÓ b ÕÍÎÏÖÁÅÔ ÎÁ 512.\n" +"\n" +"æïòíáô ÍÏÖÅÔ ÓÏÓÔÏÑÔØ ÉÚ ÏÄÎÏÇÏ ÉÌÉ ÂÏÌÅÅ ÓÌÅÄÕÀÝÉÈ ÏÐÉÓÁÎÉÊ:\n" +"\n" +" a ÉÍÅÎÏ×ÁÎÙÊ ÚÎÁË\n" +" c ASCII-ÚÎÁË ÉÌÉ ÕÐÒÁ×ÌÑÀÝÁÑ ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏÓÔØ Ó `\\'\n" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" +" d[þéóìï] ÚÎÁËÏ×ÏÅ ÄÅÓÑÔÉÞÎÏÅ ÃÅÌÏÅ ÒÁÚÍÅÒÏÍ ÚÁÄÁÎÎÏÅ þéóìï ÂÁÊÔ\n" +" f[þéóìï] ÞÉÓÌÏ Ó ÐÌÁ×ÁÀÝÅÊ ÔÏÞËÏÊ ÒÁÚÍÅÒÏÍ ÚÁÄÁÎÎÏÅ þéóìï ÂÁÊÔ\n" +" o[þéóìï] ×ÏÓØÍÅÒÉÞÎÏÅ ÃÅÌÏÅ ÒÁÚÍÅÒÏÍ ÚÁÄÁÎÎÏÅ þéóìï ÂÁÊÔ\n" +" u[þéóìï] ÂÅÚÚÎÁËÏ×ÏÅ ÄÅÓÑÔÉÞÎÏÅ ÃÅÌÏÅ ÒÁÚÍÅÒÏÍ ÚÁÄÁÎÎÏÅ þéóìï ÂÁÊÔ\n" +" x[þéóìï] ÛÅÓÔÎÁÄÃÁÔÅÒÉÞÎÏÅ ÃÅÌÏÅ ÒÁÚÍÅÒÏÍ ÚÁÄÁÎÎÏÅ þéóìï ÂÁÊÔ\n" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" +"\n" +"åÓÌÉ æïòíáô -- ÏÄÎÏ ÉÚ [doux], þéóìï ÍÏÖÅÔ ÚÁÄÁ×ÁÔØÓÑ ËÁË C (char), S " +"(short),\n" +"I (int) ÉÌÉ L (long), ÅÓÌÉ æïòíáô ÒÁ×ÅÎ f, ÔÏ þéóìï ÔÁËÖÅ ÍÏÖÅÔ ÂÙÔØ F " +"(float),\n" +"D (double) ÉÌÉ L (long double).\n" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" +"\n" +"ïóîï÷áîéå ÍÏÖÅÔ ÂÙÔØ d (ÄÅÓÑÔÉÞÎÙÍ), o (×ÏÓØÍÅÒÉÞÎÙÍ), x (ÛÅÓÔÎÁÄÃÁÔÅÒÉÞÎÙÍ) " +"ÉÌÉ\n" +"n (ÎÅ ×Ù×ÏÄÉÔØ ÓÍÅÝÅÎÉÑ). î Ó ÐÒÅÆÉËÓÏÍ 0x ÉÌÉ 0X ×ÏÓÐÒÉÎÉÍÁÅÔÓÑ ËÁË\n" +"ÛÅÓÔÎÁÄÃÁÔÅÒÉÞÎÏÅ, Ó ÓÕÆÆÉËÓÏÍ b ÕÍÎÏÖÁÅÔÓÑ ÎÁ 512, Ó ÓÕÆÆÉËÓÏÍ k -- ÎÁ 1024 " +"É\n" +"ÓÕÆÆÉËÓÏÍ m -- ÎÁ 1048576. åÓÌÉ ÄÏÂÁ×ÉÔØ Ë ÌÀÂÏÍÕ ÆÏÒÍÁÔÕ ÓÕÆÆÉËÓ z, ÔÏ × " +"ËÏÎÃÅ\n" +"ËÁÖÄÏÊ ÓÔÒÏËÉ ÂÕÄÕÔ ×Ù×ÏÄÉÔØÓÑ ÐÅÞÁÔÎÙÅ ÓÉÍ×ÏÌÙ. " + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" +"--string ÂÅÚ ÐÁÒÁÍÅÔÒÁ\n" +"ÐÏÄÒÁÚÕÍÅ×ÁÅÔ 3, --width ÐÏÄÒÁÚÕÍÅ×ÁÅÔ 32. ðÏ ÕÍÏÌÞÁÎÉÀ ÉÓÐÏÌØÚÕÀÔÓÑ ËÌÀÞÉ\n" +"-A o -t d2 -w 16.\n" + +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "ÎÅ×ÅÒÎÁÑ ÓÔÒÏËÁ ÔÉÐÁ `%s'" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" +"ÎÅ×ÅÒÎÏ ÚÁÄÁÎ ÔÉÐ `%s';\n" +"ÄÁÎÎÁÑ ÓÉÓÔÅÍÁ ÎÅ ÐÒÅÄÏÓÔÁ×ÌÑÅÔ %lu-ÂÁÊÔÎÏÇÏ ÃÅÌÏÇÏ ÔÉÐÁ" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" +"ÎÅ×ÅÒÎÏ ÚÁÄÁÎ ÔÉÐ `%s';\n" +"ÄÁÎÎÁÑ ÓÉÓÔÅÍÁ ÎÅ ÐÒÅÄÏÓÔÁ×ÌÑÅÔ %lu-ÂÁÊÔÎÏÇÏ ÔÉÐÁ Ó ÐÌÁ×ÁÀÝÅÊ ÔÏÞËÏÊ" + +#: src/od.c:917 +#, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "ÎÅ×ÅÒÎÙÊ ÚÎÁË `%c' × ÓÔÒÏËÅ ÔÉÐÁ `%s'" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÍÅÓÔÉÔØÓÑ ÚÁ ÐÒÅÄÅÌ ÐÏÓÌÅÄÎÅÇÏ ×ÈÏÄÎÏÇÏ ÆÁÊÌÁ" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "ÕÓÔÁÒÅ×ÛÁÑ ÚÁÐÉÓØ ÓÍÅÝÅÎÉÑ" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "" +"ÎÅ×ÅÒÎÏ ÚÁÄÁÎÏ ÏÓÎÏ×ÁÎÉÅ ÓÉÓÔÅÍÙ ÓÞÉÓÌÅÎÉÑ `%c',\n" +"ÄÏÌÖÎÏ ÂÙÔØ ÏÄÎÉÍ ÉÚ ÓÉÍ×ÏÌÏ× [doxn]" + +#: src/od.c:1717 +msgid "skip argument" +msgstr "ÁÒÇÕÍÅÎÔ, ÚÁÄÁÀÝÉÊ ÐÒÏÐÕÓË," + +#: src/od.c:1725 +msgid "limit argument" +msgstr "ÁÒÇÕÍÅÎÔ, ÚÁÄÁÀÝÉÊ ÏÇÒÁÎÉÞÅÎÉÅ," + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "ÍÉÎÉÍÁÌØÎÁÑ ÄÌÉÎÁ ÓÔÒÏËÉ" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "%s ÓÌÉÛËÏÍ ×ÅÌÉË" + +#: src/od.c:1804 +msgid "width specification" +msgstr "ÚÁÄÁÎÉÅ ÛÉÒÉÎÙ" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "ÐÒÉ ÄÁÍÐÅ ÓÔÒÏË ÎÅÌØÚÑ ÚÁÄÁ×ÁÔØ ÔÉÐ" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "ÎÅ×ÅÒÎÙÊ ×ÔÏÒÏÊ ÏÐÅÒÁÎÄ `%s' × ÒÅÖÉÍÅ ÓÏ×ÍÅÓÔÉÍÏÓÔÉ" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "" +"× ÒÅÖÉÍÅ ÓÏ×ÍÅÓÔÉÍÏÓÔÉ ÐÏÓÌÅÄÎÉÅ Ä×Á ÁÒÇÕÍÅÎÔÁ ÄÏÌÖÎÙ ÚÁÄÁ×ÁÔØ ÓÍÅÝÅÎÉÅ" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "× ÒÅÖÉÍÅ ÓÏ×ÍÅÓÔÉÍÏÓÔÉ ÍÏÖÎÏ ÕËÁÚÁÔØ ÔÏÌØËÏ ÔÒÉ ÁÒÇÕÍÅÎÔÁ" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: ÎÅ×ÅÒÎÁÑ ÛÉÒÉÎÁ %lu; ÂÕÄÅÔ ÉÓÐÏÌØÚÏ×ÁÎÁ %d" + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "%d: ÆÏÒÍÁÍ=\"%s\" ÛÉÒÉÎÁ=%d\n" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "äÅ×ÉÄ í. éÎÁÔ É äÅ×ÉÄ íÁËëÅÎÚÉ" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "ÓÔÁÎÄÁÒÔÎÙÊ ××ÏÄ ÚÁËÒÙÔ" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"ðÅÞÁÔÁÅÔ ÎÁ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ ÓÔÒÏËÉ, ÓÏÓÔÁ×ÌÅÎÎÙÅ ÉÚ ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÉÈ ÓÔÒÏË\n" +"×ÈÏÄÎÙÈ æáêìï÷, ÒÁÚÄÅÌÅÎÎÙÈ ÔÁÂÕÌÑÃÉÅÊ.\n" +"åÓÌÉ æáêì ÎÅ ÚÁÄÁÎ ÉÌÉ ÚÁÄÁÎ ËÁË -, ÞÉÔÁÅÔ ÓÔÁÎÄÁÒÔÎÙÊ ××ÏÄ.\n" +"\n" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" +" -d, --delimiters=óðéóïë ÉÓÐÏÌØÚÏ×ÁÔØ ×ÍÅÓÔÏ ÔÁÂÕÌÑÃÉÉ ÚÎÁËÉ ÉÚ óðéóëá\n" +" -s, --serial ÏÂÒÁÂÁÔÙ×ÁÔØ ÆÁÊÌÙ ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏ\n" + +#: src/pathchk.c:146 +#, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... éíñ...\n" + +#: src/pathchk.c:147 +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" +"îÁÈÏÄÉÔ ÎÅÐÅÒÅÎÏÓÉÍÙÅ ËÏÎÓÔÒÕËÃÉÉ × ëáôáìïçå.\n" +"\n" +" -p, --portability ÐÒÏ×ÅÒÑÔØ ÄÌÑ ×ÓÅÈ POSIX ÓÉÓÔÅÍ, Á ÎÅ ÔÏÌØËÏ ÄÌÑ ÜÔÏÊ\n" + +#: src/pathchk.c:237 +#, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "ÐÕÔØ `%s' ÓÏÄÅÒÖÉÔ ÎÅÐÅÒÅÎÏÓÉÍÙÊ ÓÉÍ×ÏÌ `%c'" + +#: src/pathchk.c:257 +#, c-format +msgid "`%s' is not a directory" +msgstr "`%s' ÎÅ Ñ×ÌÑÅÔÓÑ ËÁÔÁÌÏÇÏÍ" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "ËÁÔÁÌÏÇ `%s' ÎÅÄÏÓÔÕÐÅÎ ÄÌÑ ÐÏÉÓËÁ" + +#: src/pathchk.c:355 +#, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "ÉÍÑ `%s' ÉÍÅÅÔ ÄÌÉÎÕ %ld, ÞÔÏ ÐÒÅ×ÙÛÁÅÔ ÐÒÅÄÅÌØÎÏÅ ÚÎÁÞÅÎÉÅ %ld" + +#: src/pathchk.c:381 +#, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "ÐÕÔØ `%s' ÉÍÅÅÔ ÄÌÉÎÕ %d, ÞÔÏ ÐÒÅ×ÙÛÁÅÔ ÐÒÅÄÅÌØÎÏÅ ÚÎÁÞÅÎÉÅ %ld" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "äÖÏÚÅÆ áÒÓÅÎÏ, äÅ×ÉÄ íÁËëÅÎÚÉ É ëÁ×Å çÁÚÉ" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "òÅÇÉÓÔÒÁÃÉÏÎÎÏÅ ÉÍÑ: " + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "÷ ÒÅÁÌØÎÏÊ ÖÉÚÎÉ: " + +#: src/pinky.c:298 +msgid "???\n" +msgstr "???\n" + +#: src/pinky.c:318 +msgid "Directory: " +msgstr "ëÁÔÁÌÏÇ: " + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "ïÂÏÌÏÞËÁ: " + +#: src/pinky.c:341 +msgid "Project: " +msgstr "ðÒÏÅËÔ: " + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "ðÌÁÎ:\n" + +#: src/pinky.c:386 +msgid "Login" +msgstr "éÍÑ" + +#: src/pinky.c:388 +msgid "Name" +msgstr "éÍÑ" + +#: src/pinky.c:389 +msgid " TTY" +msgstr " ôÅÒÍÉÎÁÌ" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "îÅÁËÔÉ×ÅÎ" + +#: src/pinky.c:392 +msgid "When" +msgstr "ëÏÇÄÁ" + +#: src/pinky.c:395 +msgid "Where" +msgstr "çÄÅ" + +#: src/pinky.c:469 +#, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... [ðïìøúï÷áôåìø]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" +"\n" +" -l ÉÓÐÏÌØÚÏ×ÁÔØ ÐÏÄÒÏÂÎÙÊ ÆÏÒÍÁÔ ×Ù×ÏÄÁ\n" +" -b ÏÐÕÓÔÉÔØ × ÐÏÄÒÏÂÎÏÍ ÆÏÒÍÁÔÅ ÎÁÞÁÌØÎÙÊ ËÁÔÁÌÏÇ É " +"ÏÂÏÌÏÞËÕ \n" +" ÜÔÏÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ\n" +" -h ÏÐÕÓÔÉÔØ × ÐÏÄÒÏÂÎÏÍ ÆÏÒÍÁÔÅ ÆÁÊÌ ÐÒÏÅËÔÁ ÜÔÏÇÏ " +"ÐÏÌØÚÏ×ÁÔÅÌÑ\n" +" -p ÏÐÕÓÔÉÔØ × ÐÏÄÒÏÂÎÏÍ ÆÏÒÍÁÔÅ ÆÁÊÌ ÐÌÁÎÁ ÜÔÏÇÏ " +"ÐÏÌØÚÏ×ÁÔÅÌÑ\n" +" -s ÉÓÐÏÌØÚÏ×ÁÔØ ËÒÁÔËÉÊ ÆÏÒÍÁÔ ×Ù×ÏÄÁ, ÐÒÉÎÉÍÁÅÔÓÑ ÐÏ " +"ÕÍÏÌÞÁÎÉÀ\n" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" +" -f ÏÐÕÓÔÉÔØ × ËÒÁÔËÏÍ ÆÏÒÍÁÔÅ ÓÔÒÏËÕ Ó ÚÁÇÏÌÏ×ËÁÍÉ ËÏÌÏÎÏË\n" +" -w ÏÐÕÓÔÉÔØ × ËÒÁÔËÏÍ ÆÏÒÍÁÔÅ ÐÏÌÎÏÅ ÉÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ\n" +" -i ÏÐÕÓÔÉÔØ × ËÒÁÔËÏÍ ÆÏÒÍÁÔÅ ÐÏÌÎÏÅ ÉÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ É ÉÍÑ \n" +" ÕÄÁÌÅÎÎÏÊ ÍÁÛÉÎÙ\n" +" -q ÏÐÕÓÔÉÔØ × ËÒÁÔËÏÍ ÆÏÒÍÁÔÅ ÐÏÌÎÏÅ ÉÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ, ÉÍÑ \n" +" ÕÄÁÌÅÎÎÏÊ ÍÁÛÉÎÙ É ×ÒÅÍÑ ÎÅÁËÔÉ×ÎÏÓÔÉ\n" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" +"\n" +"õÐÒÏÝÅÎÎÁÑ ÐÒÏÇÒÁÍÍÁ `finger'; ÐÅÞÁÔÁÅÔ Ó×ÅÄÅÎÉÑ Ï ÐÏÌØÚÏ×ÁÔÅÌÅ.\n" +"÷ ËÁÞÅÓÔ×Å ÆÁÊÌÁ utmp ÂÕÄÅÔ ÉÓÐÏÌØÚÏ×ÁÔØÓÑ %s.\n" + +#: src/pinky.c:574 +msgid "no username specified; at least one must be specified when using -l" +msgstr "" +"ÎÅ ÚÁÄÁÎÏ ÉÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ; ÐÒÉ ÉÓÐÏÌØÚÏ×ÁÎÉÉ ËÌÀÞÁ -l ÎÕÖÎÏ ÚÁÄÁÔØ ÈÏÔÑ ÂÙ " +"ÏÄÎÏ" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "ðÅÔÅ ôÅÒíÁÁÔ É òÏÌÁÎÄ èÀÂÎÅÒ" + +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "`--pages' ÎÅ×ÅÒÎÙÊ ÄÉÁÐÁÚÏÎ ÎÏÍÅÒÏ× ÓÔÒÁÎÉÃ: `%s'" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "`--pages' ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÎÁÞÁÌØÎÏÊ ÓÔÒÁÎÉÃÙ: `%s'" + +#: src/pr.c:829 +#, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "`--pages' ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ËÏÎÅÞÎÏÊ ÓÔÒÁÎÉÃÙ: `%s'" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "`--pages' ÎÏÍÅÒ ÎÁÞÁÌØÎÏÊ ÓÔÒÁÎÉÃÙ ÂÏÌØÛÅ ÎÏÍÅÒÁ ÐÏÓÌÅÄÎÅÊ ÓÔÒÁÎÉÃÙ" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "`--pages=ðåò÷áñ_óôò[:ðïóìåäîññ_óôò]' ÐÒÏÐÕÝÅÎ ÁÒÇÕÍÅÎÔ" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "`--columns=þéóìï' ÎÅ×ÅÒÎÏÅ ÞÉÓÌÏ ÓÔÏÌÂÃÏ×: `%s'" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "`-l äìéîá_óôòáîéãù' ÎÅ×ÅÒÎÏÅ ÞÉÓÌÏ ÓÔÒÏË: `%s'" + +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "`-N îïíåò' ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÎÁÞÁÌØÎÏÊ ÓÔÒÏËÉ: `%s'" + +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "`-o ðïìå' ÎÅ×ÅÒÎÏÅ ÓÍÅÝÅÎÉÅ: `%s'" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "`-w ûéòéîá_óôòáîéãù' ÎÅ×ÅÒÎÏÅ ÞÉÓÌÏ ÚÎÁËÏ×: `%s'" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "`-W ûéòéîá_óôòáîéãù' ÎÅ×ÅÒÎÏÅ ÞÉÓÌÏ ÚÎÁËÏ×: `%s'" + +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "%b %e %H:%M %Y" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÞÉÓÌÏ ÓÔÏÌÂÃÏ× ÐÒÉ ÐÁÒÁÌÌÅÌØÎÏÊ ÐÅÞÁÔÉ." + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÄÎÏ×ÒÅÍÅÎÎÏ ÐÅÞÁÔÁÔØ ×ÄÏÌØ É ÐÁÒÁÌÌÅÌØÎÏ." + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "`-%c' ÌÉÛÎÉÅ ÓÉÍ×ÏÌÙ ÉÌÉ ÎÅ×ÅÒÎÏÅ ÞÉÓÌÏ × ÁÒÇÕÍÅÎÔÅ: `%s'" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "ÓÔÒÁÎÉÃÁ ÓÌÉÛËÏÍ ÕÚËÁÑ" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "ÎÏÍÅÒ ÎÁÞÁÌØÎÏÊ ÓÔÒÁÎÉÃÙ ÂÏÌØÛÅ ÏÂÝÅÇÏ ÞÉÓÌÁ ÓÔÒÁÎÉÃ: `%d'" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "óÔÒ. %d" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" +"òÁÚÂÉ×ÁÅÔ æáêì(Ù) ÎÁ ÓÔÒÁÎÉÃÙ ÉÌÉ ËÏÌÏÎËÉ ÄÌÑ ÐÅÞÁÔÉ.\n" +"\n" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" +" +ðåò÷áñ_óôòáîéãá[:ðïóìåäîññ_óôòáîéãá], --pages=ðåò÷áñ_óôòáîéãá[:" +"ðïóìåäîññ_óôòáîéãá]\n" +" ÎÁÞÁÔØ [ÚÁ×ÅÒÛÉÔØ] ÐÅÞÁÔØ ÎÁ ðåò÷ïê_[ðïóìåäîåê_]" +"óôòáîéãå\n" +" -þéóìï, --columns=þéóìï\n" +" ×Ù×ÏÄÉÔØ ÚÁÄÁÎÎÏÅ þéóìï ËÏÌÏÎÏË É ÐÅÞÁÔÁÔØ ÉÈ ×ÎÉÚ, " +"ÅÓÌÉ\n" +" ÔÏÌØËÏ ÎÅ ÕËÁÚÁÎ ËÌÀÞ -a. âÁÌÁÎÓÉÒÏ×ÁÔØ ÞÉÓÌÏ ÓÔÒÏË ×\n" +" ËÏÌÏÎËÅ ÎÁ ËÁÖÄÏÊ ÓÔÒÁÎÉÃÅ.\n" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" +" -a, --across ×Ù×ÏÄÉÔØ ËÏÌÏÎËÉ ×ÄÏÌØ, Á ÎÅ ×ÎÉÚ; ÉÓÐÏÌØÚÕÅÔÓÑ ×ÍÅÓÔÅ " +"Ó\n" +" ËÌÀÞÏÍ -þéóìï\n" +" -c, --show-control-chars\n" +" ÉÓÐÏÌØÚÏ×ÁÔØ ÚÁÐÉÓØ Ó ÛÁÐÏÞËÏÊ (^G) ÉÌÉ ÏÂÒÁÔÎÏÊ ËÏÓÏÊ\n" +" ÞÅÒÔÏÊ (É ×ÏÓØÍÅÒÉÞÎÙÍ ËÏÄÏÍ)\n" +" -d, --double-space\n" +" ×ÓÔÁ×ÌÑÔØ ÐÕÓÔÕÀ ÓÔÒÏËÕ ÐÏÓÌÅ ËÁÖÄÏÊ ×ÙÈÏÄÎÏÊ ÓÔÒÏËÉ\n" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" +" -D, --date-format=æïòíáô\n" +" ÉÓÐÏÌØÚÏ×ÁÔØ ÄÌÑ ÄÁÔÙ × ÚÁÇÏÌÏ×ËÅ ÕËÁÚÁÎÎÙÊ æïòíáô\n" +" -e[úîáë[þéóìï]], --expand-tabs[=úîáë[þéóìï]] \n" +" ÐÒÅÏÂÒÁÚÏ×Ù×ÁÔØ ×ÈÏÄÎÙÅ úîáëé (ÔÁÂÕÌÑÃÉÀ) × ÚÁÄÁÎÎÏÅ " +"þéóìï \n" +" ÐÒÏÂÅÌÏ× (8)\n" +" -F, -f, --form-feed\n" +" ÉÓÐÏÌØÚÏ×ÁÔØ ÄÌÑ ÒÁÚÄÅÌÅÎÉÑ ÓÔÒÁÎÉà ÚÎÁË ÐÅÒÅ×ÏÄÁ " +"ÓÔÒÁÎÉÃÙ,\n" +" Á ÎÅ ÎÏ×ÏÊ ÓÔÒÏËÉ (Ó ÔÒÅÈÓÔÒÏÞÎÙÍ ÚÁÇÏÌÏ×ËÏÍ, ÅÓÌÉ " +"ÅÓÔØ \n" +" ËÌÀÞ -F, É ÐÑÔÉÓÔÒÏÞÎÙÍ ÚÁÇÏÌÏ×ËÏÍ É ÚÁ×ÅÒÛÉÔÅÌÅÍ, " +"ÅÓÌÉ \n" +" ËÌÀÞ -F ÎÅ ÚÁÄÁÎ)\n" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" +" -h úáçïìï÷ïë, --header=úáçïìï÷ïë \n" +" ÉÓÐÏÌØÚÏ×ÁÔØ ÄÌÑ ÓÔÒÁÎÉà ÃÅÎÔÒÉÒÏ×ÁÎÎÙÊ úáçïìï÷ïë, Á ÎÅ\n" +" ÉÍÑ ÆÁÊÌÁ; -h \"\" ×Ù×ÏÄÉÔ ÐÕÓÔÕÀ ÓÔÒÏËÕ; ÎÅ ÉÓÐÏÌØÚÕÊÔÅ " +"-h \"\"\n" +" -i[úîáë[ûéòéîá]], --output-tabs[=úîáë[ûéòéîá]]\n" +" ÚÁÍÅÎÉÔØ ÐÒÏÂÅÌÙ ÎÁ úîáëé (ÔÁÂÕÌÑÃÉÀ) ÚÁÄÁÎÎÏÊ ûéòéîù " +"(8)\n" +" -J, --join-lines ÏÂßÅÄÉÎÑÔØ ÐÏÌÎÙÅ ÓÔÒÏËÉ, ÏÔËÌÀÞÉÔØ ÕÓÅÞÅÎÉÅ ÓÔÒÏË (-W), " +"ÎÅ\n" +" ×ÙÒÁ×ÎÉ×ÁÔØ ËÏÌÏÎËÉ, --sep-string[=óôòïëá] ÚÁÄÁÅÔ " +"ÒÁÚÄÅÌÉÔÅÌÉ\n" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" +" -l äìéîá_óôòáîéãù, --length=äìéîá_óôòáîéãù\n" +" ÕÓÔÁÎÏ×ÉÔØ äìéîõ_óôòáîéãù (66) \n" +" (ÐÏ ÕÍÏÌÞÁÎÉÀ ÞÉÓÌÏ ÓÔÒÏË ÔÅËÓÔÁ ÒÁ×ÎÏ 56, Á Ó -F -- " +"63)\n" +" -m, --merge ÐÅÞÁÔÁÔØ ×ÓÅ ÆÁÊÌÙ ÐÁÒÁÌÌÅÌØÎÏ, ÐÏ ÏÄÎÏÍÕ × ËÏÌÏÎËÅ,\n" +" ÕÓÅËÁÔØ ÓÔÒÏËÉ, ÎÏ ÓÏÅÄÉÎÑÔØ ÐÏÌÎÙÅ ÓÔÒÏËÉ ÐÒÉ -J\n" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" +" -n[òáúä[þéóìï]], --number-lines[=òáúä[þéóìï]]\n" +" ÎÕÍÅÒÏ×ÁÔØ ÓÔÒÏËÉ, ÉÓÐÏÌØÚÕÑ ÚÁÄÁÎÎÏÅ þéóìï (5) ÃÉÆÒ É\n" +" òáúäÅÌÉÔÅÌØ (ÔÁÂÕÌÑÃÉÀ); ÐÏ ÕÍÏÌÞÁÎÉÀ ÎÕÍÅÒÁÃÉÑ " +"ÎÁÞÉÎÁÅÔÓÑ\n" +" Ó ÐÅÒ×ÏÊ ×ÈÏÄÎÏÊ ÓÔÒÏËÉ\n" +" -N îïíåò, --first-line-number=îïíåò\n" +" ÎÁÞÁÔØ ÎÕÍÅÒÁÃÉÀ Ó îïíåòá Ó ÐÅÒ×ÏÊ ÓÔÒÏËÉ ÐÅÒ×ÏÊ " +"×Ù×ÏÄÉÍÏÊ\n" +" ÓÔÒÁÎÉÃÙ (ÓÍÏÔÒÉ +ðåò÷áñ_óôòáîéãá)\n" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" +" -o ðïìå, --indent=ðïìå \n" +" ÓÄ×ÉÇÁÔØ ËÁÖÄÕÀ ÓÔÒÏËÕ ÎÁ ðïìå (ÎÕÌØ) ÐÒÏÂÅÌÏ× (ÎÅ " +"×ÌÉÑÅÔ \n" +" ÎÁ -w ÉÌÉ -W); ðïìå ÄÏÂÁ×ÌÑÅÔÓÑ Ë ûéòéîå_óôòáîéãù\n" +" -r, --no-file-warnings \n" +" ÎÅ ÐÒÅÄÕÐÒÅÖÄÁÔØ Ï ÎÅ×ÏÚÍÏÖÎÏÓÔÉ ÏÔËÒÙÔÉÑ ÆÁÊÌÁ\n" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" +" -s[úîáë],--separator[=úîáë]\n" +" ÒÁÚÄÅÌÑÔØ ËÏÌÏÎËÉ ÏÄÎÉÍ ÚÎÁËÏÍ, ÐÏ ÕÍÏÌÞÁÎÉÀ úîáë ÒÁ×ÅÎ\n" +" ÔÁÂÕÌÑÃÉÉ, ÅÓÌÉ ÎÅÔ ËÌÀÞÁ -w, É ÐÕÓÔ, ÅÓÌÉ ÅÓÔØ ËÌÀÞ -w\n" +" -s[úîáë] ×ÙËÌÀÞÁÅÔ ÕÓÅÞÅÎÉÅ ÓÔÒÏË ÄÌÑ ×ÓÅÈ ÔÒÅÈ ËÌÀÞÅÊ " +"ÄÌÑ\n" +" ËÏÌÏÎÏË (-þéóìï |-a -þéóìï|-m), ÅÓÌÉ ÔÏÌØËÏ ÎÅÔ ËÌÀÞÁ -" +"w\n" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr " -S[óôòïëá], --sep-string[=óôòïëá]\n" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" +" ÒÁÚÄÅÌÑÔØ ËÏÌÏÎËÉ ÎÅÏÂÑÚÁÔÅÌØÎÏÊ óôòïëïê, ÎÅ " +"ÉÓÐÏÌØÚÕÊÔÅ\n" +" -S \"óôòïëá\"; ÔÏÌØËÏ -S: ÎÅ ÉÓÐÏÌØÚÏ×ÁÔØ ÒÁÚÄÅÌÉÔÅÌØ; " +"ÂÅÚ\n" +" -S: ÒÁÚÄÅÌÉÔÅÌØ ÐÏ ÕÍÏÌÞÁÎÉÀ -- ÔÁÂÕÌÑÃÉÑ, ÅÓÌÉ " +"ÉÓÐÏÌØÚÏ×ÁÎ \n" +" ËÌÀÞ -J, ÉÎÁÞÅ ÐÒÏÂÅÌ (ÔÏ ÖÅ, ÞÔÏ -S\"\"); ÎÅ ×ÌÉÑÅÔ " +"ÎÁ \n" +" ËÌÀÞÉ ÄÌÑ ËÏÌÏÎÏË\n" +" -t, --omit-header ÎÅ ×Ù×ÏÄÉÔØ ÚÁÇÏÌÏ×ËÉ\n" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" +" -T, --omit-pagination\n" +" ÎÅ ×Ù×ÏÄÉÔØ ÚÁÇÏÌÏ×ËÉ É ÉÇÎÏÒÉÒÏ×ÁÔØ ÓÉÍ×ÏÌÙ ÐÅÒÅ×ÏÄÁ\n" +" ÓÔÒÁÎÉÃÙ ×Ï ×ÈÏÄÎÙÈ ÆÁÊÌÁÈ\n" +" -v, --show-nonprinting\n" +" ÉÓÐÏÌØÚÏ×ÁÔØ ÚÁÐÉÓØ Ó `\\' É ×ÏÓØÍÅÒÉÞÎÙÍ ËÏÄÏÍ\n" +" -w ûéòéîá_óôòáîéãù, --width=ûéòéîá_óôòáîéãù \n" +" ÕÓÔÁÎÏ×ÉÔØ ûéòéîõ_óôòáîéãù (72) × ÓÔÏÌÂÃÁÈ ÄÌÑ \n" +" ×Ù×ÏÄÁ × ÎÅÓËÏÌØËÏ ËÏÌÏÎÏË, -s[ÚÎÁË] ×ÙËÌÀÞÁÅÔ (72)\n" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" +" -W ûéòéîá_óôòáîéãù, --page-width=ûéòéîá_óôòáîéãù \n" +" ÕÓÔÁÎÏ×ÉÔØ ûéòéîõ_óôòáîéãù (72) × ÓÔÏÌÂÃÁÈ, ÕÓÅËÁÔØ " +"ÓÔÒÏËÉ,\n" +" ÅÓÌÉ ÔÏÌØËÏ ÎÅÔ ËÌÀÞÁ -J; ÎÅ ÚÁÔÒÁÇÉ×ÁÅÔÓÑ ËÌÀÞÁÍÉ -S " +"ÉÌÉ -s\n" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" +"\n" +"-T ÐÏÄÒÁÚÕÍÅ×ÁÅÔÓÑ ÐÒÉ ÚÁÄÁÎÎÏÍ ËÌÀÞÅ -l ÎÎ, ÇÄÅ ÎÎ <= 10 ÉÌÉ <= 3, ÅÓÌÉ " +"ÅÓÔØ\n" +"ËÌÀÞ -F. åÓÌÉ æáêì ÎÅ ÚÁÄÁÎ ÉÌÉ ÚÁÄÁÎ ËÁË -, ÞÉÔÁÅÔ ÓÔÁÎÄÁÒÔÎÙÊ ××ÏÄ.\n" + +#: src/printenv.c:43 +msgid "David MacKenzie and Richard Mlynarik" +msgstr "äÅ×ÉÄ íÁËëÅÎÚÉ É òÉÞÁÒÄ íÌÉÎÁÒÉË" + +#: src/printenv.c:63 +#, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ðåòåíåîîáñ]...\n" +" ÉÌÉ: %s ëìàþ\n" +"åÓÌÉ ÎÅ ÚÁÄÁÎÁ ðåòåíåîîáñ ÓÒÅÄÙ, ÐÅÞÁÔÁÅÔ ÉÈ ×ÓÅ.\n" +"\n" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "" +"ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: %s: ÓÉÍ×ÏÌÙ, ÓÌÅÄÕÀÝÉÅ ÚÁ ÓÉÍ×ÏÌØÎÏÊ ËÏÎÓÔÁÎÔÏÊ, ÉÇÎÏÒÉÒÏ×ÁÎÙ" + +#: src/printf.c:100 +#, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s æïòíáô [áòçõíåîô]...\n" +" ÉÌÉ: %s ëìàþ\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" +"ðÅÞÁÔÁÅÔ áòçõíåîô(Ù) × ÚÁÄÁÎÎÏÍ æïòíáôå.\n" +"\n" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" +"\n" +"æïòíáô ÕÐÒÁ×ÌÑÅÔ ×Ù×ÏÄÏÍ ÔÁË ÖÅ, ËÁË × C-ÆÕÎËÃÉÉ printf. ÷ÏÓÐÒÉÎÉÍÁÀÔÓÑ\n" +"ÓÌÅÄÕÀÝÉÅ ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏÓÔÉ:\n" +"\n" +" \\\" Ä×ÏÊÎÙÅ ËÁ×ÙÞËÉ\n" +" \\0îîî ÚÎÁË Ó ×ÏÓØÍÅÒÉÞÎÙÍ ËÏÄÏÍ îîî (ÏÔ 0 ÄÏ 3 ÃÉÆÒ)\n" +" \\\\ ÏÂÒÁÔÎÁÑ ËÏÓÁÑ ÞÅÒÔÁ\n" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" +" \\a Ú×ÕËÏ×ÏÊ ÓÉÇÎÁÌ\n" +" \\b ÚÁÂÏÊ\n" +" \\c ÐÏÄÁ×ÉÔØ ÐÏÓÌÅÄÕÀÝÉÊ ×Ù×ÏÄ\n" +" \\f ÐÅÒÅ×ÏÄ ÓÔÒÁÎÉÃÙ\n" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\n ÎÏ×ÁÑ ÓÔÒÏËÁ\n" +" \\r ×ÏÚ×ÒÁÔ ËÁÒÅÔËÉ\n" +" \\t ÇÏÒÉÚÏÎÔÁÌØÎÁÑ ÔÁÂÕÌÑÃÉÑ\n" +" \\v ×ÅÒÔÉËÁÌØÎÁÑ ÔÁÂÕÌÑÃÉÑ\n" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" +" \\xîî ÂÁÊÔ Ó ÛÅÓÔÎÁÄÃÁÔÉÒÉÞÎÙÍ ËÏÄÏÍ îî (ÏÔ 1 ÄÏ 2 ÃÉÆÒ)\n" +" \\uNNNN ÚÎÁË Ó ÛÅÓÔÎÁÄÃÁÔÉÒÉÞÎÙÍ ËÏÄÏÍ îîîî (4 ÃÉÆÒÙ)\n" +" \\UNNNNNNNN ÚÎÁË Ó ÛÅÓÔÎÁÄÃÁÔÉÒÉÞÎÙÍ ËÏÄÏÍ îîîîîîîî (8 ÃÉÆÒ)\n" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" +" %% ÏÄÉÎ ÚÎÁË %\n" +" %b ÉÎÔÅÒÐÒÅÔÉÒÏ×ÁÔØ escape-ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏÓÔÉ × áòçõíåîôå,\n" +"\n" +"Á ÔÁËÖÅ ×ÓÅ ÓÐÅÃÉÆÉËÁÃÉÉ ÆÏÒÍÁÔÁ × ÓÔÉÌÅ C, ÚÁËÁÎÞÉ×ÁÀÝÉÅÓÑ ÏÄÎÉÍ ÉÚ ÚÎÁËÏ×\n" +"diouxXfeEgGcs; áòçõíåîô ÐÒÉ×ÏÄÉÔÓÑ Ë ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÅÍÕ ÔÉÐÕ. ïÂÒÁÂÁÔÙ×ÁÀÔcÑ\n" +"ÔÁËÖÅ ÚÎÁËÉ ÐÅÒÅÍÅÎÎÏÊ ÛÉÒÉÎÙ.\n" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "%s: ÏÖÉÄÁÅÔÓÑ ÞÉÓÌÏ×ÏÅ ÚÎÁÞÅÎÉÅ" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "%s: ÚÎÁÞÅÎÉÅ ÐÒÅÏÂÒÁÚÏ×ÁÎÏ ÎÅ ÐÏÌÎÏÓÔØÀ" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "ÎÅ×ÅÒÎÏÅ ÛÅÓÔÎÁÄÃÁÔÉÒÉÞÎÏÅ ÞÉÓÌÏ × escape-ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏÓÔÉ" + +#: src/printf.c:292 +#, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "ÎÅ×ÅÒÎÏÅ ÕÎÉ×ÅÒÓÁÌØÎÏÅ ÉÍÑ ÚÎÁËÁ \\%c%0*x" + +#: src/printf.c:472 +#, c-format +msgid "invalid field width: %s" +msgstr "ÎÅ×ÅÒÎÁÑ ÛÉÒÉÎÁ ÐÏÌÑ: %s" + +#: src/printf.c:498 +#, c-format +msgid "invalid precision: %s" +msgstr "ÎÅ×ÅÒÎÁÑ ÔÏÞÎÏÓÔØ: %s" + +#: src/printf.c:519 +#, c-format +msgid "%%%c: invalid directive" +msgstr "%%%c: ÎÅ×ÅÒÎÁÑ ÄÉÒÅËÔÉ×Á" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s ÆÏÒÍÁÔ [ÁÒÇÕÍÅÎÔ...]\n" + +#: src/printf.c:594 +#, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: ÉÚÂÙÔÏÞÎÙÅ ÁÒÇÕÍÅÎÔÙ ÉÇÎÏÒÉÒÏ×ÁÎÙ, ÎÁÞÉÎÁÑ Ó `%s'" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "%s (ÄÌÑ ÒÅÇÕÌÑÒÎÏÇÏ ×ÙÒÁÖÅÎÉÑ `%s')" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... [÷èïä]... (ÂÅÚ -G)\n" +" ÉÌÉ: %s -G [ëìàþ]... [÷èïä [÷ùèïä]]\n" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" +"ðÅÞÁÔÁÅÔ ÐÅÒÅÍÅÛÁÎÎÙÊ ÁÌÆÁ×ÉÔÎÙÊ ÕËÁÚÁÔÅÌØ ÓÌÏ× ×ÈÏÄÎÙÈ ÆÁÊÌÏ×, ×ËÌÀÞÁÑ " +"ËÏÎÔÅËÓÔ.\n" +"\n" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" +" -A, --auto-reference ×Ù×ÏÄÉÔØ Á×ÔÏÍÁÔÉÞÅÓËÉ ÓÇÅÎÅÒÉÒÏ×ÁÎÎÙÅ " +"ÓÓÙÌËÉ\n" +" -C, --copyright ÐÏËÁÚÁÔØ ÉÎÆÏÒÍÁÃÉÀ Ï Á×ÔÏÒÓËÉÈ ÐÒÁ×ÁÈ É\n" +" ÕÓÌÏ×ÉÑ ËÏÐÉÒÏ×ÁÎÉÑ\n" +" -G, --traditional ÒÁÂÏÔÁÔØ × ÒÅÖÉÍÅ ÂÏÌØÛÅÊ ÓÏ×ÍÅÓÔÉÍÏÓÔÉ Ó\n" +" ÐÒÏÇÒÁÍÍÏÊ `ptx' ÉÚ System V\n" +" -F, --flag-truncation=óôòïëá ÉÓÐÏÌØÚÏ×ÁÔØ óôòïëõ ÄÌÑ ÐÏÍÅÔËÉ ÕÓÅÞÅÎÉÑ " +"ÓÔÒÏË\n" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" +" -M, --macro-name=óôòïëá ÉÍÑ ÍÁËÒÏ, ËÏÔÏÒÏÅ ÓÌÅÄÕÅÔ ÉÓÐÏÌØÚÏ×ÁÔØ \n" +" ×ÍÅÓÔÏ `xx'\n" +" -O, --format=roff ÇÅÎÅÒÉÒÏ×ÁÔØ ×Ù×ÏÄ × ×ÉÄÅ ÄÉÒÅËÔÉ× roff\n" +" -R, --right-side-refs ÐÏÍÅÝÁÔØ ÓÓÙÌËÉ ÓÐÒÁ×Á, ÎÅ ÕÞÉÔÙ×ÁÅÔÓÑ ÐÒÉ -" +"w\n" +" -S, --sentence-regexp=REGEXP ÄÌÑ ËÏÎÃÁ ÓÔÒÏË ÉÌÉ ËÏÎÃÁ ÐÒÅÄÌÏÖÅÎÉÊ\n" +" -T, --format=tex ÇÅÎÅÒÉÒÏ×ÁÔØ ×Ù×ÏÄ × ×ÉÄÅ ÄÉÒÅËÔÉ× TeX\n" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" +" -W, --word-regexp=REGEXP ÒÅÇÕÌÑÒÎÏÅ ×ÙÒÁÖÅÎÉÅ ÄÌÑ ËÌÀÞÅ×ÙÈ ÓÌÏ×\n" +" -b, --break-file=æáêì æáêì Ó ÓÉÍ×ÏÌÁÍÉ-ÒÁÚÄÅÌÉÔÅÌÑÍÉ ÓÌÏ×\n" +" -f, --ignore-case ÐÒÅÏÂÒÁÚÏ×Ù×ÁÔØ Ë ×ÅÒÈÎÅÍÕ ÒÅÇÉÓÔÒÕ ÐÒÉ \n" +" ÓÏÒÔÉÒÏ×ËÅ\n" +" -g, --gap-size=þéóìï ÒÁÚÍÅÒ ÐÒÏÍÅÖÕÔËÁ ÍÅÖÄÕ ÐÏÌÑÍÉ ×Ù×ÏÄÁ, \n" +" ×ÙÒÁÖÅÎÎÙÊ × ÓÔÏÌÂÃÁÈ\n" +" -i, --ignore-file=æáêì ÓÞÉÔÁÔØ ÐÅÒÅÞÅÎØ ÉÇÎÏÒÉÒÕÅÍÙÈ ÓÌÏ× ÉÚ " +"æáêìá\n" +" -o, --only-file=æáêì ÔÏÌØËÏ ÓÞÉÔÁÔØ ÓÐÉÓÏË ÓÌÏ× ÉÚ ÚÁÄÁÎÎÏÇÏ " +"æáêìá\n" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" +" -r, --references ÐÅÒ×ÏÅ ÐÏÌÅ × ËÁÖÄÏÊ ÓÔÒÏËÅ Ñ×ÌÑÅÔÓÑ " +"ÓÓÙÌËÏÊ\n" +" -t, --typeset-mode - ÎÅ ÒÅÁÌÉÚÏ×ÁÎÏ -\n" +" -w, --width=þéóìï ÛÉÒÉÎÁ ×Ù×ÏÄÁ × ÓÔÏÌÂÃÁÈ, ÎÅ ÓÞÉÔÁÑ ÓÓÙÌËÉ\n" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" +"\n" +"åÓÌÉ æáêì ÎÅ ÚÁÄÁÎ ÉÌÉ ÚÁÄÁÎ ËÁË -, ÞÉÔÁÅÔ ÓÔÁÎÄÁÒÔÎÙÊ ××ÏÄ.\n" +"ðÏ ÕÍÏÌÞÁÎÉÀ ÐÒÅÄÐÏÌÁÇÁÅÔÓÑ `-F /'.\n" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" +"üÔÏ Ó×ÏÂÏÄÎÁÑ ÐÒÏÇÒÁÍÍÁ; ×Ù ÍÏÖÅÔÅ ÒÁÓÐÒÏÓÔÒÁÎÑÔØ É/ÉÌÉ ÉÚÍÅÎÑÔØ ÅÅ ÐÒÉ\n" +"ÓÏÂÌÀÄÅÎÉÉ ÕÓÌÏ×ÉÊ õÎÉ×ÅÒÓÁÌØÎÏÊ ïÂÝÅÓÔ×ÅÎÎÏÊ ìÉÃÅÎÚÉÉ GNU, ÏÐÕÂÌÉËÏ×ÁÎÎÏÊ \n" +"æÏÎÄÏÍ ó×ÏÂÏÄÎÏÇÏ ðÒÏÇÒÁÍÍÎÏÇÏ ïÂÅÓÐÅÞÅÎÉÑ, ×ÅÒÓÉÉ 2 ÉÌÉ ÌÀÂÏÊ ÂÏÌÅÅ " +"ÐÏÚÄÎÅÊ \n" +"(ÐÏ ×ÁÛÅÍÕ ÕÓÍÏÔÒÅÎÉÀ).\n" +"\n" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" +"üÔÁ ÐÒÏÇÒÁÍÍÁ ÒÁÓÐÒÏÓÔÒÁÎÑÅÔÓÑ × ÎÁÄÅÖÄÅ, ÞÔÏ ÏÎÁ ÂÕÄÅÔ ÐÏÌÅÚÎÏÊ, ÎÏ âåú\n" +"ëáëéè-ìéâï çáòáîôéê; ÄÁÖÅ ÂÅÚ ÐÏÄÒÁÚÕÍÅ×ÁÅÍÙÈ ÇÁÒÁÎÔÉÊ ëïííåòþåóëïê ãåîîïóôé " +"ÉÌÉ\n" +"ðòéçïäîïóôé äìñ ëïîëòåôîïê ãåìé. äÌÑ ÐÏÌÕÞÅÎÉÑ ÂÏÌÅÅ ÐÏÄÒÏÂÎÏÊ ÉÎÆÏÒÍÁÃÉÉ\n" +"ÓÍÏÔÒÉÔÅ õÎÉ×ÅÒÓÁÌØÎÕÀ ïÂÝÅÓÔ×ÅÎÎÕÀ ìÉÃÅÎÚÉÀ GNU.\n" +"\n" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" +"÷Ù ÄÏÌÖÎÙ ÂÙÌÉ ÐÏÌÕÞÉÔØ ËÏÐÉÀ õÎÉ×ÅÒÓÁÌØÎÏÊ ïÂÝÅÓÔ×ÅÎÎÏÊ ìÉÃÅÎÚÉÉ GNU ×ÍÅÓÔÅ " +"Ó\n" +"ÜÔÏÊ ÐÒÏÇÒÁÍÍÏÊ, ÅÓÌÉ ÎÅÔ, ÎÁÐÉÛÉÔÅ Free Software Foundation, Inc., 59 " +"Temple \n" +"Place - Suite 330, Boston, MA 02111-1307, USA.\n" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" +"ðÅÞÁÔÁÅÔ ÐÏÌÎÏÅ ÉÍÑ ÔÅËÕÝÅÇÏ ÒÁÂÏÞÅÇÏ ËÁÔÁÌÏÇÁ.\n" +"\n" + +#: src/pwd.c:74 +msgid "ignoring non-option arguments" +msgstr "ÎÅ Ñ×ÌÑÀÝÉÅÓÑ ËÌÀÞÁÍÉ ÁÒÇÕÍÅÎÔÙ ÉÇÎÏÒÉÒÏ×ÁÎÙ" + +#: src/pwd.c:78 +msgid "cannot get current directory" +msgstr "ÔÅËÕÝÉÊ ËÁÔÁÌÏÇ ÎÅÄÏÓÔÕÐÅÎ" + +#: src/readlink.c:69 +#, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... [æáêì]\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" +"ðÅÞÁÔÁÅÔ ÚÎÁÞÅÎÉÅ ÓÉÍ×ÏÌØÎÏÊ ÓÓÙÌËÉ ÎÁ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ.\n" +"\n" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" +" -f, --canonicalize ÐÏÌÕÞÁÔØ ËÁÎÏÎÉÞÅÓËÉÅ ÉÍÅÎÁ, ÐÕÔÅÍ ÒÅËÕÒÓÉ×ÎÏÇÏ\n" +" ÓÌÅÄÏ×ÁÎÉÑ ÐÏ ×ÓÅÍ ÓÉÍ×ÏÌØÎÙÍ ÓÓÙÌËÁÍ ×\n" +" ËÁÖÄÏÍ ËÏÍÐÏÎÅÎÔÅ ÚÁÄÁÎÎÏÇÏ ÐÕÔÉ\n" +" -n, --no-newline ÎÅ ×Ù×ÏÄÉÔØ ÚÁ×ÅÒÛÁÀÝÉÊ ÐÅÒÅ×ÏÄ ÓÔÒÏËÉ\n" +" -q, --quiet,\n" +" -s, --silent ÐÏÄÁ×ÌÑÅÔ ×Ù×ÏÄ ÂÏÌØÛÉÎÓÔ×Á ÓÏÏÂÝÅÎÉÊ Ï ÏÛÉÂÏË\n" +" -v, --verbose ÓÏÏÂÝÁÔØ Ï ÏÛÉÂËÁÈ\n" + +#: src/remove.c:394 +#, c-format +msgid "cannot chdir from %s to .." +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÊÔÉ ÉÚ ËÁÔÁÌÏÇÁ %s × .." + +#: src/remove.c:407 src/remove.c:488 +#, c-format +msgid "cannot lstat `.' in %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ×ÙÐÏÌÎÉÔØ lstat ÄÌÑ `.' × %s" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "%s ÓÍÅÎÉÌ dev/ino" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, c-format +msgid "cannot lstat %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ×ÙÐÏÌÎÉÔØ lstat ÄÌÑ %s" + +#: src/remove.c:603 +#, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "%s: ÓÐÕÓÔÉÔØÓÑ × ÚÁÝÉÝÅÎÎÙÊ ÏÔ ÚÁÐÉÓÉ ËÁÔÁÌÏÇ %s? " + +#: src/remove.c:604 +#, c-format +msgid "%s: descend into directory %s? " +msgstr "%s: ÓÐÕÓÔÉÔØÓÑ × ËÁÔÁÌÏÇ %s? " + +#: src/remove.c:614 +#, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: ÕÄÁÌÉÔØ ÚÁÝÉÝÅÎÎÙÊ ÏÔ ÚÁÐÉÓÉ %s %s? " + +#: src/remove.c:615 +#, c-format +msgid "%s: remove %s %s? " +msgstr "%s: ÕÄÁÌÉÔØ %s %s? " + +#: src/remove.c:639 +#, c-format +msgid "removed %s\n" +msgstr "ÕÄÁÌÅÎ %s\n" + +#: src/remove.c:654 src/remove.c:1059 +#, c-format +msgid "removed directory: %s\n" +msgstr "ÕÄÁÌÅÎ ËÁÔÁÌÏÇ: %s\n" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, c-format +msgid "cannot remove directory %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ ËÁÔÁÌÏÇ %s" + +#: src/remove.c:815 +#, c-format +msgid "cannot open directory %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ËÁÔÁÌÏÇ %s" + +#: src/remove.c:896 src/remove.c:1002 +#, c-format +msgid "cannot chdir from %s to %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÍÅÎÉÔØ ËÁÔÁÌÏÇ Ó %s ÎÁ %s" + +#: src/remove.c:904 +#, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +"÷îéíáîéå: ãÉËÌÉÞÅÓËÁÑ ÓÔÒÕËÔÕÒÁ ËÁÔÁÌÏÇÁ.\n" +"óËÏÒÅÅ ×ÓÅÇÏ, ÜÔÏ ÏÚÎÁÞÁÅÔ, ÞÔÏ ×ÁÛÁ ÆÁÊÌÏ×ÁÑ ÓÉÓÔÅÍÁ ÐÏ×ÒÅÖÄÅÎÁ.\n" +"õ÷åäïíéôå ÷áûåçï óéóôåíîïçï áäíéîéóôòáôïòá.\n" +"óÌÅÄÕÀÝÉÊ ËÁÔÁÌÏÇ Ñ×ÌÑÅÔÓÑ ÞÁÓÔØÀ ÃÉËÌÁ:\n" +" %s\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ `.' ÉÌÉ `..'" + +#: src/rm.c:60 +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "ðÏÌ òÕÂÉÎ, äÅ×ÉÄ íÁËëÅÎÚÉ, òÉÞÁÒÄ óÔÏÌÌÍÅÎ É äÖÉÍ íÅÅÒÉÎÇ" + +#: src/rm.c:99 src/touch.c:244 +#, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... æáêì...\n" + +#: src/rm.c:100 +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"õÄÁÌÑÅÔ FILE.\n" +"\n" +" -d, --directory ÕÄÁÌÑÅÔ ËÁÔÁÌÏÇ, ÄÁÖÅ ÅÓÌÉ ÏÎ ÎÅ ÐÕÓÔÏÊ (ÔÏÌØËÏ\n" +" ÄÌÑ ÓÕÐÅÒÐÏÌØÚÏ×ÁÔÅÌÑ)\n" +" -f, --force ÉÇÎÏÒÉÒÏ×ÁÔØ ÎÅÓÕÝÅÓÔ×ÕÀÝÉÅ ÆÁÊÌÙ, ÎÅ ÚÁÐÒÁÛÉ×ÁÔØ\n" +" -i, --interactive ÚÁÐÒÁÛÉ×ÁÔØ ÐÅÒÅÄ ËÁÖÄÙÍ ÕÄÁÌÅÎÉÅÍ\n" +" -r, -R, --recursive ÒÅËÕÒÓÉ×ÎÏ ÕÄÁÌÉÔØ ÓÏÄÅÒÖÁÎÉÅ ËÁÔÁÌÏÇÁ\n" +" -v, --verbose ÐÏÑÓÎÑÔØ ÞÔÏ ÂÕÄÅÔ ÓÄÅÌÁÎÏ\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" +"\n" +"äÌÑ ÕÄÁÌÅÎÉÑ ÆÁÊÌÁ, ÎÁÞÉÎÁÀÝÅÇÏÓÑ Ó `-' (ÎÁÐÒÉÍÅÒ: `-foo'),\n" +"ÉÓÐÏÌØÚÕÊÔÅ ÏÄÎÕ ÉÚ ÓÌÅÄÕÀÝÉÈ ËÏÍÁÎÄ:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" +"\n" +"éÍÅÊÔÅ × ×ÉÄÕ, ÞÔÏ ÐÒÉ ÉÓÐÏÌØÚÏ×ÁÎÉÉ rm ÄÌÑ ÕÄÁÌÅÎÉÑ ÆÁÊÌÁ ÅÇÏ ÓÏÄÅÒÖÉÍÏÅ\n" +"ÏÂÙÞÎÏ ÍÏÖÎÏ ×ÏÓÓÔÁÎÏ×ÉÔØ. éÓÐÏÌØÚÕÊÔÅ shred, ÅÓÌÉ ÷ÁÍ ÎÅÏÂÈÏÄÉÍÁ ÂÏÌØÛÁÑ\n" +"Õ×ÅÒÅÎÎÏÓÔØ × ÎÅ×ÏÚÍÏÖÎÏÓÔÉ ×ÏÓÓÔÁÎÏ×ÌÅÎÉÑ ÓÏÄÅÒÖÉÍÏÇÏ.\n" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, c-format +msgid "removing directory, %s" +msgstr "ÕÄÁÌÅÎÉÅ ËÁÔÁÌÏÇÁ, %s" + +#: src/rmdir.c:146 +#, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... ëáôáìïç...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" +"õÄÁÌÑÅÔ DIRECTORY, ÅÓÌÉ ÏÎÉ ÐÕÓÔÙ.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ÉÇÎÏÒÉÒÏ×ÁÔØ ×ÓÅ ÏÛÉÂËÉ, ËÏÔÏÒÙÅ ×ÏÚÎÉËÁÀÔ ÉÚ-ÚÁ ÔÏÇÏ, " +"ÞÔÏ\n" +" ËÁÔÁÌÏÇ ÎÅ ÐÕÓÔ\n" + +#: src/rmdir.c:154 +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +" -p, --parents ÕÄÁÌÑÔØ ×ÓÅ ÄÅÒÅ×Ï, ÅÓÌÉ ÐÕÓÔÏÅ\n" +" ðÒ.: `rmdir -p a/b/c' is\n" +" ÄÅÌÁÅÔ ÔÏ ÖÅ, ÞÔÏ É `rmdir a/b/c a/b a'.\n" +" -v, --verbose ×Ù×ÏÄÉÔØ ÓÏÏÂÝÅÎÉÅ ÄÌÑ ËÁÖÄÏÇÏ ÏÂÒÁÂÁÔÙ×ÁÅÍÏÇÏ ËÁÔÁÌÏÇÁ\n" + +#: src/seq.c:82 +#, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... ðïóìåäîéê\n" +" ÉÌÉ: %s [ëìàþ]... ðåò÷ùê ðïóìåäîéê\n" +" ÉÌÉ: %s [ëìàþ]... ðåò÷ùê ðòéòïóô ðïóìåäîéê\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" +"ðÅÞÁÔÁÅÔ ÞÉÓÌÁ ÏÔ ðåò÷ïçï ÄÏ ðïóìåäîåçï Ó ÛÁÇÏÍ ðòéòïóô.\n" +"\n" +" -f, --format æïòíáô ÉÓÐÏÌØÚÏ×ÁÔØ æïòíáô × ÓÔÉÌÅ printf (ÐÏ ÕÍÏÌÞÁÎÉÀ %" +"g)\n" +" -s, --separator óôòïëá ÉÓÐÏÌØÚÏ×ÁÔØ óôòïëõ ËÁË ÒÁÚÄÅÌÉÔÅÌØ (ÐÏ ÕÍÏÌÞÁÎÉÀ " +"\\n)\n" +" -w, --equal-width ×ÙÒÁ×ÎÉ×ÁÔØ ÐÏ ÛÉÒÉÎÅ, ÄÏÂÁ×ÌÑÑ × ÎÁÞÁÌÏ ÎÕÌÉ\n" + +#: src/seq.c:96 +#, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" +"\n" +"åÓÌÉ ÎÅ ÚÁÄÁÎÙ ðåò÷ùê ÉÌÉ ðòéòïóô, ÐÏ ÕÍÏÌÞÁÎÉÀ ÉÓÐÏÌØÚÕÅÔÓÑ 1.\n" +"ðåò÷ùê, ðïóìåäîéê É ðòéòïóô ÓÞÉÔÁÀÔÓÑ ÞÉÓÌÁÍÉ Ó ÐÌÁ×ÁÀÝÅÊ ÔÏÞËÏÊ.\n" +"ðòéòïóô ÄÏÌÖÅÎ ÂÙÔØ ÐÏÌÏÖÉÔÅÌØÎÙÍ, ÅÓÌÉ ðåò÷ùê ÍÅÎØÛÅ ðïóìåäîåçï, É\n" +"ÏÔÒÉÃÁÔÅÌØÎÙÍ × ÐÒÏÔÉ×ÎÏÍ ÓÌÕÞÁÅ. åÓÌÉ ÚÁÄÁÎ æïòíáô, ÏÎ ÄÏÌÖÅÎ\n" +"ÚÁÄÁ×ÁÔØ ÒÏ×ÎÏ ÏÄÉÎ ÉÚ ÆÏÒÍÁÔÏ× ÞÉÓÅÌ Ó ÐÌÁ×ÁÀÝÅÊ ÔÏÞËÏÊ × ÓÔÉÌÅ\n" +"prinft: %e, %f ÉÌÉ %g.\n" + +#: src/seq.c:119 +#, c-format +msgid "invalid floating point argument: %s" +msgstr "ÎÅ×ÅÒÎÙÊ ÁÒÇÕÍÅÎÔ Ó ÐÌÁ×ÁÀÝÅÊ ÔÏÞËÏÊ: %s" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" +"ÅÓÌÉ ÎÁÞÁÌØÎÏÅ ÚÎÁÞÅÎÉÅ ÂÏÌØÛÅ ËÏÎÅÞÎÏÇÏ, ÐÒÉÒÏÓÔ ÄÏÌÖÅÎ ÂÙÔØ ÏÔÒÉÃÁÔÅÌØÎÙÍ." + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" +"ÅÓÌÉ ÎÁÞÁÌØÎÏÅ ÚÎÁÞÅÎÉÅ ÍÅÎØÛÅ ËÏÎÅÞÎÏÇÏ, ÐÒÉÒÏÓÔ ÄÏÌÖÅÎ ÂÙÔØ ÐÏÌÏÖÉÔÅÌØÎÙÍ." + +#: src/seq.c:423 +#, c-format +msgid "invalid format string: `%s'" +msgstr "ÎÅ×ÅÒÎÁÑ ÓÔÒÏËÁ ÆÏÒÍÁÔÁ: `%s'" + +#: src/seq.c:445 +msgid "format string may not be specified when printing equal width strings" +msgstr "ÐÒÉ ×Ù×ÏÄÅ ÓÔÒÏË ÏÄÉÎÁËÏ×ÏÊ ÛÉÒÉÎÙ ÆÏÒÍÁÔ ÍÏÖÎÏ ÎÅ ÕËÁÚÙ×ÁÔØ" + +#: src/shred.c:160 +#, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþé] æáêì [...]\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" +"ðÅÒÅÐÉÓÙ×ÁÅÔ ÎÅÓËÏÌØËÏ ÒÁÚ ÕËÁÚÁÎÎÙÅ ÆÁÊÌÙ ÄÌÑ ÔÏÇÏ, ÞÔÏÂÙ ÓÄÅÌÁÔØ ÂÏÌÅÅ\n" +"ÓÌÏÖÎÙÍ ×ÏÓÓÔÁÎÏ×ÌÅÎÉÅ ÄÁÖÅ Ó ÉÓÐÏÌØÚÏ×ÁÎÉÅÍ ÏÞÅÎØ ÄÏÒÏÇÏÇÏ ÏÂÏÒÕÄÏ×ÁÎÉÑ.\n" +"\n" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" +" -f, --force ÉÚÍÅÎÑÔØ ÐÒÁ×Á, ÒÁÚÒÅÛÁÑ ÚÁÐÉÓØ, ÅÓÌÉ ÎÅÏÂÈÏÄÉÍÏ\n" +" -n, --iterations=N ÐÅÒÅÐÉÓÁÔØ N ÒÁÚ ×ÍÅÓÔÏ (%d) ÐÏ ÕÍÏÌÞÁÎÉÀ\n" +" -s, --size=N ÏÞÉÓÔÉÔØ N ÂÁÊÔ (×ÏÚÍÏÖÎÙ ÓÕÆÆÉËÓÙ ×ÉÄÁ K, M, G)\n" + +#: src/shred.c:174 +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" +" -u, --remove ÏÂÒÅÚÁÔØ É ÕÄÁÌÑÔØ ÆÁÊÌ ÐÏÓÌÅ ÐÅÒÅÚÁÐÉÓÉ\n" +" -v, --verbose ÐÏËÁÚÙ×ÁÔØ ÐÒÏÇÒÅÓÓ\n" +" -x, --exact ÎÅ ÏËÒÕÇÌÑÔØ ÒÁÚÍÅÒÙ ÆÁÊÌÏ× ÄÏ ÓÌÅÄÕÀÝÅÇÏ ÃÅÌÏÇÏ ÂÌÏËÁ;\n" +" ÐÏ ÕÍÏÌÞÁÎÉÀ ÄÌÑ ÎÅÏÂÙÞÎÙÈ ÆÁÊÌÏ×\n" +" -z, --zero ÄÏÂÁ×ÉÔØ × ËÏÎÃÅ ÚÁÐÉÓØ ÎÕÌÅÊ, ÞÔÏÂÙ ÓËÒÙÔØ ÐÅÒÅÍÅÛÉ×ÁÎÉÅ\n" +" - ÐÅÒÅÍÅÛÉ×ÁÔØ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ\n" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" +"\n" +"õÄÁÌÉÔØ ÆÁÊÌ(Ù), ÅÓÌÉ ÕËÁÚÁÎ --remove (-u). ðÏÕÍÏÌÞÁÎÉÀ ÆÁÊÌÙ ÎÅ\n" +"ÕÄÁÌÑÀÔÓÑ, ÔÁË ËÁË ÏÂÙÞÎÏ ÏÂÒÁÂÁÔÙ×ÁÅÔÓÑ ÕÓÔÒÏÊÓÔ×Ï ÔÉÐÁ /dev/hda,\n" +"É ÜÔÉ ÆÁÊÌÙ ÎÅ ÄÏÌÖÎÙ ÕÄÁÌÑÔØÓÑ. ðÒÉ ÏÂÒÁÂÏÔËÅ ÏÂÙÞÎÙÈ ÆÁÊÌÏ×\n" +"ÂÏÌØÛÉÎÓÔ×Ï ÌÀÄÅÊ ÉÓÐÏÌØÚÕÀÔ ËÌÀÞ --remove.\n" +"\n" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" +"÷îéíáîéå: shred ÏÐÉÒÁÅÔÓÑ ÎÁ ÏÞÅÎØ ×ÁÖÎÙÅ ÐÒÅÄÐÏÌÏÖÅÎÉÑ,\n" +"ÞÔÏ ÆÁÊÌÏ×ÁÑ ÓÉÓÔÅÍÁ ÐÅÒÅÐÉÓÙ×ÁÅÔ ÆÁÊÌÙ ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏ.\n" +"ïÂÙÞÎÏ ÜÔÏ ÔÁË, ÎÏ ÎÅËÏÔÏÒÙÅ ÓÏ×ÒÅÍÅÎÎÙÅ ÆÁÊÌÏ×ÙÅ ÓÉÓÔÅÍÙ ÎÅ\n" +"ÕÄÏ×ÌÅÔ×ÏÒÑÀÔ ÜÔÉÍ ÐÒÅÄÐÏÌÏÖÅÎÉÑÍ. üÔÏ ÐÒÉÍÅÒÙ ÆÁÊÌÏ×ÙÈ ÓÉÓÔÅÍ,\n" +"ÎÁ ËÏÔÏÒÙÈ shred ÎÅ ÜÆÆÅËÔÉ×ÅÎ:\n" +"\n" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" +"* ÖÕÒÎÁÌÉÒÕÅÍÙÊ ÆÁÊÌÏ×ÙÅ ÓÉÓÔÅÍÙ, ÎÁÐÒÉÍÅÒ ËÏÔÏÒÙÅ ÉÄÕÔ × ËÏÍÌÅËÔÅ\n" +" AIX É Solaris (É JFS, ReiserFS, XFS, Ext3 É ÄÒ.)\n" +"\n" +"* ÆÁÊÌÏ×ÙÅ ÓÉÓÔÅÍÙ: ËÏÔÏÒÙÅ ÚÁÐÉÓÙ×ÁÀÔ ÉÚÂÙÔÏÞÎÙÅ ÄÁÎÎÙÅ, É ÚÁÂÏÔÑÔÓÑ\n" +" Ï ÓÉÔÕÁÃÉÑÈ ÎÅÕÄÁÞÎÏÊ ÚÁÐÉÓÉ, ÎÁÐÒÉÍÅÒ RAID-Ï×ÙÅ ÆÁÊÌÏ×ÙÅ ÓÉÓÔÅÍÙ\n" +"\n" +"* ÆÁÊÌÏ×ÙÅ ÓÉÓÔÅÍÙ, ËÏÔÏÒÙÅ ÓÏÚÄÁÀÔ ËÏÐÉÉ ÓÏÓÔÏÑÎÉÑ; ÎÁÐÒÉÍÅÒ NFS ÓÅÒ×ÅÒ ÏÔ\n" +" Network Appliance\n" +"\n" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" +"* ÆÁÊÌÏ×ÙÅ ÓÉÓÔÅÍÙ, ËÏÔÏÒÙÅ ÚÁÐÏÍÉÎÁÀÔ ÆÁÊÌÙ ×Ï ×ÒÅÍÅÎÎÙÈ ËÁÔÁÌÏÇÁÈ, " +"ÎÁÐÒÉÍÅÒ\n" +" ËÌÉÅÎÔÙ NFS ×ÅÒÓÉÉ 3\n" +"\n" +"* ÓÖÁÔÙÅ ÆÁÊÌÏ×ÙÅ ÓÉÓÔÅÍÙ\n" +"\n" +"ëÒÏÍÅ ÔÏÇÏ ÒÅÚÅÒ×ÎÙÅ ËÏÐÉÉ É ÕÄÁÌÅÎÎÙÅ ÚÅÒËÁÌÁ ÍÏÇÕÔ ÓÏÄÅÒÖÁÔØ ËÏÐÉÉ\n" +"ÆÁÊÌÁ, ËÏÔÏÒÙÅ ÎÅÌØÚÑ ÕÄÁÌÉÔØ, É ËÏÔÏÒÙÅ ÐÏÚ×ÏÌÑÔ ×ÏÓÓÔÁÎÏ×ÉÔØ ÕÎÉÞÔÏÖÅÎÎÙÊ " +"ÆÁÊÌ.\n" + +#: src/shred.c:808 +#, c-format +msgid "%s: cannot rewind" +msgstr "%s: ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÁÔÉÔØÓÑ" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "%s: ÐÒÏÈÏÄ %lu/%lu (%s)..." + +#: src/shred.c:868 +#, c-format +msgid "%s: error writing at offset %s" +msgstr "%s: ÏÛÉÂËÁ ÚÁÐÉÓÉ ÐÏ ÓÍÅÝÅÎÉÀ %s" + +#: src/shred.c:897 +#, c-format +msgid "%s: file too large" +msgstr "%s: ÆÁÊÌ ÓÌÉÛËÏÍ ×ÅÌÉË" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "%s: ÐÒÏÈÏÄ %lu/%lu (%s)...%s" + +#: src/shred.c:936 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "%s: ÐÒÏÈÏÄ %lu/%lu (%s)...%s/%s %d%%" + +#: src/shred.c:1195 +#, c-format +msgid "%s: invalid file type" +msgstr "%s: ÎÅ×ÅÒÎÙÊ ÔÉÐ ÆÁÊÌÁ" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s: Õ ÆÁÊÌÁ ÏÔÒÉÃÁÔÅÌØÎÙÊ ÒÁÚÍÅÒ" + +#: src/shred.c:1265 +#, c-format +msgid "%s: error truncating" +msgstr "%s: ÏÛÉÂËÁ ÐÒÉ ÕÓÅÞÅÎÉÉ" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "" +"%s: ÎÅ×ÏÚÍÏÖÎÏ ÎÁÒÅÚÁÔØ ÆÁÊÌÏ×ÙÊ ÄÅÓËÒÉÐÔÏÒ Ó ÔÏÌØËÏ Ó ÐÒÁ×ÏÍ ÄÏÂÁ×ÌÅÎÉÑ" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "%s: ÕÄÁÌÅÎÉÅ" + +#: src/shred.c:1412 +#, c-format +msgid "%s: renamed to %s" +msgstr "%s: ÐÅÒÅÉÍÅÎÏ×ÁÎ × %s" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s: ÕÄÁÌÅÎ" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "%s: ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ" + +#: src/shred.c:1551 +#, c-format +msgid "%s: invalid number of passes" +msgstr "%s: ÎÅ×ÅÒÎÏÅ ÞÉÓÌÏ ÐÒÏÈÏÄÏ×" + +#: src/shred.c:1568 +#, c-format +msgid "%s: invalid file size" +msgstr "%s: ÎÅ×ÅÒÎÙÊ ÒÁÚÍÅÒ ÆÁÊÌÁ" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "äÖÉÍ íÅÅÒÉÎÇ É ðÏÌ üÇÇÅÒÔ" + +#: src/sleep.c:52 +#, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s þéóìï[óõææéëó]\n" +" ÉÌÉ: %s ëìàþ\n" +"ðÒÉÏÓÔÁÎÁ×ÌÉ×ÁÅÔ ×ÙÐÏÌÎÅÎÉÅ ÎÁ ÚÁÄÁÎÎÏÅ þéóìï ÓÅËÕÎÄ. óõææéëóá ÍÏÖÅÔ\n" +"ÐÒÉÎÉÍÁÔØ ÚÎÁÞÅÎÉÅ `s', ÞÔÏ ÏÚÎÁÞÁÅÔ ÓÅËÕÎÄÙ (ÐÒÉÍÅÎÑÅÔÓÑ ÐÏ\n" +"ÕÍÏÌÞÁÎÉÀ), `m' -- ÍÉÎÕÔÙ, `h' -- ÞÁÓÙ É `d' -- ÄÎÉ. ÷ ÏÔÌÉÞÉÅ ÏÔ\n" +"ÄÒÕÇÉÈ ÒÅÁÌÉÚÁÃÉÊ, ËÏÔÏÒÙÅ ÔÒÅÂÕÀÔ, ÞÔÏÂÙ þéóìï ÂÙÌÏ ÃÅÌÙÍ, ÚÄÅÓØ ÏÎÏ\n" +"ÍÏÖÅÔ ÂÙÔØ ÐÒÏÉÚ×ÏÌØÎÙÍ ÞÉÓÌÏÍ Ó ÐÌÁ×ÁÀÝÅÊ ÚÁÐÑÔÏÊ.\n" +"\n" + +#: src/sleep.c:155 +#, c-format +msgid "invalid time interval `%s'" +msgstr "ÎÅ×ÅÒÎÙÊ ×ÒÅÍÅÎÎÏÊ ÉÎÔÅÒ×ÁÌ `%s'" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÔÁÊÍÅÒ ÒÅÁÌØÎÏÇÏ ×ÒÅÍÅÎÉ" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "íÁÊË èÜÒÔÅÌ É ðÏÌ üÇÇÅÒÔ" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" +"ðÅÞÁÔÁÅÔ ÓÏÒÔÉÒÏ×ÁÎÎÏÅ ÓÌÉÑÎÉÅ ×ÓÅÈ æáêì(Ï×) ÎÁ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ.\n" +"\n" +"ëÌÀÞÉ, ÚÁÄÁÀÝÉÅ ÐÏÒÑÄÏË:\n" +"\n" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" +" -b, --ignore-leading-blanks ÉÇÎÏÒÉÒÏ×ÁÔØ ÎÁÞÁÌØÎÙÅ ÐÒÏÐÕÓËÉ\n" +" -d, --dictionary-order ÒÁÓÓÍÁÔÒÉ×ÁÔØ ÔÏÌØËÏ ÐÒÏÐÕÓËÉ, ÂÕË×Ù É ÃÉÆÒÙ\n" +" -f, --ignore-case ÉÇÎÏÒÉÒÏ×ÁÔØ ÒÅÇÉÓÔÒ ÂÕË×\n" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" +" -g, --general-numeric-sort ÓÒÁ×ÎÉ×ÁÔØ ÞÉÓÌÁ × ÏÂÝÅÍ ×ÉÄÅ\n" +" -i, --ignore-nonprinting ÒÁÓÓÍÁÔÒÉ×ÁÔØ ÔÏÌØËÏ ÐÅÞÁÔÎÙÅ ÚÎÁËÉ\n" +" -M, --month-sort ÓÒÁ×ÎÉ×ÁÔØ (ÎÅÉÚ×ÅÓÔÎÏ) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort ÓÒÁ×ÎÉ×ÁÔØ ÞÉÓÌÅÎÎÙÅ ÚÎÁÞÅÎÉÑ ÓÔÒÏË\n" +" -r, --reverse ÏÂÒÁÔÉÔØ ÒÅÚÕÌØÔÁÔÙ ÓÒÁ×ÎÅÎÉÑ\n" +"\n" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" +"ïÓÔÁÌØÎÙÅ ËÌÀÞÉ:\n" +"\n" +" -c, --check ÐÒÏ×ÅÒÑÔØ, ÓÏÒÔÉÒÏ×ÁÎÙ ÌÉ ×ÈÏÄÎÙÅ ÆÁÊÌÙ; ÎÅ ÓÏÒÔÉÒÏ×ÁÔØ\n" +" -k, --key=POS1[,POS2]\n" +" ÎÁÞÉÎÁÔØ ËÌÀÞ × ðïú1 É ÚÁ×ÅÒÛÁÔØ ÎÁ ðïú2 (ÏÔÓÞÅÔ ÏÔ 1)\n" +" -m, --merge ÏÂßÅÄÉÎÑÔØ ÕÖÅ ÓÏÒÔÉÒÏ×ÁÎÎÙÅ ÆÁÊÌÙ, ÎÅ ÓÏÒÔÉÒÏ×ÁÔØ\n" +" -o, --output=æáêì\n" +" ×Ù×ÏÄÉÔØ × æáêì, Á ÎÅ ÎÁ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ\n" +" -s, --stable ÎÅ ÐÒÏÉÚ×ÏÄÉÔØ ÐÏÓÌÅÄÎÀÀ ÓÏÒÔÉÒÏ×ËÕ, ÓÏÈÒÁÎÑÑ ÐÏÒÑÄÏË " +"ÓÔÒÏË\n" +" -S, --buffer-size=òáúíåò\n" +" ÉÓÐÏÌØÚÏ×ÁÔØ × ÏÓÎÏ×ÎÏÊ ÐÁÍÑÔÉ ÂÕÆÅÒ ÕËÁÚÁÎÎÏÇÏ òáúíåòá\n" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" +" -t, --field-separator=òáúäåìéôåìø\n" +" ÉÓÐÏÌØÚÏ×ÁÔØ ÐÒÉ ÐÏÉÓËÅ ËÌÀÞÅ×ÙÈ ÐÏÌÅÊ òáúäåìéôåìø, Á ÎÅ\n" +" ÐÅÒÅÈÏÄ ÏÔ ÐÒÏÂÅÌØÎÙÈ ÚÎÁËÏ× Ë ÎÅÐÒÏÂÅÌØÎÙÍ\n" +" -T, --temporary-directory=ëáôáìïç\n" +" ÉÓÐÏÌØÚÏ×ÁÔØ ÄÌÑ ×ÒÅÍÅÎÎÙÈ ÆÁÊÌÏ× ëáôáìïç, Á ÎÅ $TMPDIR\n" +" ÉÌÉ %s. îÅÓËÏÌØËÏ ÔÁËÉÈ ËÌÀÞÅÊ ÚÁÄÁÀÔ ÎÅÓËÏÌØËÏ " +"ËÁÔÁÌÏÇÏ×.\n" +" -u, --unique Ó -c: ÐÒÏ×ÅÒÑÔØ ÐÏÒÑÄÏË ÓÔÒÏÇÏ;\n" +" ÉÎÁÞÅ: ×Ù×ÏÄÉÔØ ÔÏÌØËÏ ÏÄÎÕ ÉÚ ÓÏ×ÐÁ×ÛÉÈ ÓÔÒÏË\n" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" +" -z, --zero-terminated ÚÁ×ÅÒÛÁÔØ ÓÔÒÏËÉ ÎÕÌÅ×ÙÍ ÂÁÊÔÏÍ, Á ÎÅ ÎÏ×ÏÊ " +"ÓÔÒÏËÏÊ\n" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" +"\n" +"ðïúÉÃÉÑ ÚÁÄÁÅÔÓÑ ËÁË ð[.ú][ëìàþ], ÇÄÅ ð -- ÎÏÍÅÒ ÐÏÌÑ, Á ú -- ÐÏÚÉÃÉÑ\n" +"ÚÎÁËÁ × ÜÔÏÍ ÐÏÌÅ. ëìàþ ÓÏÓÔÁ×ÌÑÅÔÓÑ ÉÚ ÏÄÎÏÊ ÉÌÉ ÎÅÓËÏÌØËÉÈ ÂÕË×,\n" +"ÚÁÄÁÀÝÉÈ ÐÏÒÑÄÏË ÓÏÒÔÉÒÏ×ËÉ; ÏÎ ÏÔÍÅÎÑÅÔ ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÉÅ ÇÌÏÂÁÌØÎÙÅ\n" +"ËÌÀÞÉ ÄÌÑ ÄÁÎÎÏÇÏ ËÌÀÞÅ×ÏÇÏ ÐÏÌÑ. åÓÌÉ ËÌÀÞÅ×ÏÅ ÐÏÌÅ ÎÅ ÚÁÄÁÎÏ, ×\n" +"ËÁÞÅÓÔ×Å ËÌÀÞÁ ÉÓÐÏÌØÚÕÅÔÓÑ ÓÔÒÏËÁ ÃÅÌÉËÏÍ.\n" +"\n" +"ðÏÓÌÅ òáúíåòá ÍÏÖÎÏ ÐÉÓÁÔØ ÓÌÅÄÕÀÝÉÅ ÓÕÆÆÉËÓÙ-ÍÕÌØÔÉÐÌÉËÁÔÏÒÙ:\n" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" +"% 1% ÐÁÍÑÔÉ, b 1, k 1024 (ÐÏ ÕÍÏÌÞÁÎÉÀ), É ÔÁË ÄÁÌÅÅ ÄÌÑ M, G, T, P, E, Z, " +"Y.\n" +"\n" +"åÓÌÉ æáêì ÎÅ ÚÁÄÁÎ ÉÌÉ ÚÁÄÁÎ ËÁË -, ÞÉÔÁÅÔ ÓÔÁÎÄÁÒÔÎÙÊ ××ÏÄ.\n" +"\n" +"*** ðòåäõðòåöäåîéå ***\n" +"õÓÔÁÎÏ×ÌÅÎÎÁÑ × ÓÒÅÄÅ ÌÏËÁÌØ ×ÌÉÑÅÔ ÎÁ ÐÏÒÑÄÏË ÓÏÒÔÉÒÏ×ËÉ. \n" +"þÔÏÂÙ ÐÏÌÕÞÉÔØ ÔÒÁÄÉÃÉÏÎÎÙÊ ÐÏÒÑÄÏË, ÉÓÐÏÌØÚÕÀÝÉÊ ÓÉÓÔÅÍÎÙÅ ÚÎÁÞÅÎÉÑ ÂÁÊÔ,\n" +"ÕÓÔÁÎÏ×ÉÔÅ LC_ALL=C.\n" + +#: src/sort.c:444 +msgid "cannot create temporary file" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ×ÒÅÍÅÎÎÙÊ ÆÁÊÌ" + +#: src/sort.c:467 +msgid "open failed" +msgstr "ÏÐÅÒÁÃÉÑ ÏÔËÒÙÔÉÑ ÚÁ×ÅÒÛÉÌÁÓØ ÎÅÕÓÐÅÈÏÍ" + +#: src/sort.c:487 src/sort.c:2496 +msgid "close failed" +msgstr "ÚÁËÒÙÔÉÅ ÎÅÕÓÐÅÛÎÏ" + +#: src/sort.c:495 +msgid "write failed" +msgstr "ÚÁÐÉÓØ ÎÅÕÓÐÅÛÎÁ" + +#: src/sort.c:641 +msgid "sort size" +msgstr "ÒÁÚÍÅÒ ÓÏÒÔÉÒÏ×ËÉ" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "ÏÐÅÒÁÃÉÑ stat ÚÁ×ÅÒÛÉÌÁÓØ ÎÅÕÓÐÅÈÏÍ" + +#: src/sort.c:972 +msgid "read failed" +msgstr "ÞÔÅÎÉÅ ÎÅÕÓÐÅÛÎÏ" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "%s: %s:%s: ÎÅÐÒÁ×ÉÌØÎÙÊ ÐÏÒÑÄÏË: " + +#: src/sort.c:1574 +msgid "standard error" +msgstr "ÓÔÁÎÄÁÒÔÎÁÑ ÏÛÉÂËÁ" + +#: src/sort.c:2032 +#, c-format +msgid "%s: invalid field specification `%s'" +msgstr "%s: ÎÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ ÐÏÌÑ `%s'" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "%s: ÓÞÅÔÞÉË `%.*s' ÓÌÉÛËÏÍ ×ÅÌÉË" + +#: src/sort.c:2064 +#, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "%s: ÎÅ×ÅÒÎÙÊ ÓÞÅÔÞÉË × ÎÁÞÁÌÅ `%s'" + +#: src/sort.c:2298 +msgid "invalid number after `-'" +msgstr "ÎÅ×ÅÒÎÏÅ ÞÉÓÌÏ ÐÏÓÌÅ `-'" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +msgid "invalid number after `.'" +msgstr "ÎÅ×ÅÒÎÏÅ ÞÉÓÌÏ ÐÏÓÌÅ `.'" + +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "ÌÉÛÎÉÊ ÚÎÁË × ÓÐÅÃÉÆÉËÁÃÉÉ ÐÏÌÑ" + +#: src/sort.c:2338 +msgid "invalid number at field start" +msgstr "ÎÅ×ÅÒÎÏÅ ÞÉÓÌÏ × ÎÁÞÁÌÅ ÐÏÌÑ" + +#: src/sort.c:2342 src/sort.c:2370 +msgid "field number is zero" +msgstr "ÎÕÌÅ×ÏÊ ÎÏÍÅÒ ÐÏÌÑ" + +#: src/sort.c:2351 +msgid "character offset is zero" +msgstr "ÎÕÌÅ×ÏÊ ÚÎÁËÏ×ÙÊ ÓÄ×ÉÇ" + +#: src/sort.c:2366 +msgid "invalid number after `,'" +msgstr "ÎÅ×ÅÒÎÏÅ ÞÉÓÌÏ ÐÏÓÌÅ `,'" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "ÍÎÏÇÏÚÎÁËÏ×ÁÑ ÔÁÂÕÌÑÃÉÑ `%s'" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "ÄÏÐÏÌÎÉÔÅÌØÎÙÊ ÏÐÅÒÁÎÄ `%s' ÎÅÄÏÐÕÓÔÉÍ Ó -c" + +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ] [÷èïä [ðòåæéëó]]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" +"÷Ù×ÏÄÉÔ ÆÉËÓÉÒÏ×ÁÎÎÏÇÏ ÒÁÚÍÅÒÁ ÞÁÓÔÉ æáêìá × ÆÁÊÌÙ ðòåæéëóaa, " +"ðòåæéëóab, ...; ÐÏ\n" +"ÕÍÏÌÞÁÎÉÀ ðòåæéëó ÒÁ×ÅÎ `x'. åÓÌÉ æáêì ÎÅ ÚÁÄÁÎ ÉÌÉ ÚÁÄÁÎ ËÁË -, ÞÉÔÁÅÔ\n" +"ÓÔÁÎÄÁÒÔÎÙÊ ××ÏÄ.\n" +"\n" + +#: src/split.c:108 +#, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" +" -a, --suffix-length=î ÉÓÐÏÌØÚÏ×ÁÔØ ÓÕÆÆÉËÓÙ ÄÌÉÎÙ î (ÐÏ ÕÍÏÌÞÁÎÉÀ %d)\n" +" -b, --bytes=þéóìï ÚÁÐÉÓÙ×ÁÔØ × ËÁÖÄÙÊ ×ÙÈÏÄÎÏÊ ÆÁÊÌ ÚÁÄÁÎÎÏÅ þéóìï " +"ÂÁÊÔ\n" +" -C, --line-bytes=þéóìï ÚÁÐÉÓÙ×ÁÔØ ÎÅ ÂÏÌÅÅ ÚÁÄÁÎÎÏÇÏ þéóìá ÂÁÊÔ ÉÚ " +"ÓÔÒÏËÉ\n" +" -l, --lines=þéóìï ÚÁÐÉÓÙ×ÁÔØ × ËÁÖÄÙÊ ×ÙÈÏÄÎÏÊ ÆÁÊÌ ÚÁÄÁÎÎÏÅ þéóìï " +"ÓÔÒÏË\n" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" +" --verbose ÐÅÞÁÔÁÔØ ÓÏÏÂÝÅÎÉÅ × ÓÔÁÎÄÁÒÔÎÙÊ ÐÏÔÏË ÏÛÉÂÏË " +"ÐÅÒÅÄ\n" +" ÏÔËÒÙÔÉÅÍ ÏÞÅÒÅÄÎÏÇÏ ×ÙÈÏÄÎÏÇÏ ÆÁÊÌÁ\n" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "éÓÞÅÒÐÁÎÙ ÓÕÆÆÉËÓÙ ÄÌÑ ×ÙÈÏÄÎÙÈ ÆÁÊÌÏ×" + +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "ÓÏÚÄÁÎÉÅ ÆÁÊÌÁ `%s'\n" + +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÒÁÚÂÉ×ÁÔØ ÎÅÓËÏÌØËÉÍÉ ÍÅÔÏÄÁÍÉ ÓÒÁÚÕ" + +#: src/split.c:394 +#, c-format +msgid "%s: invalid suffix length" +msgstr "%s: ÎÅ×ÅÒÎÁÑ ÄÌÉÎÁ ÓÕÆÆÉËÓÁ" + +#: src/split.c:408 src/split.c:434 +#, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: ÎÅ×ÅÒÎÏÅ ÞÉÓÌÏ ÂÁÊÔ" + +#: src/split.c:421 +#, c-format +msgid "%s: invalid number of lines" +msgstr "%s: ÎÅ×ÅÒÎÏÅ ÞÉÓÌÏ ÓÔÒÏË" + +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "ëÌÀÞ `-%d' ÕÓÔÁÒÅÌ, ÉÓÐÏÌØÚÕÊÔÅ `-l %d'" + +#: src/split.c:483 +msgid "invalid number" +msgstr "ÎÅ×ÅÒÎÏÅ ÞÉÓÌÏ" + +#: src/stat.c:326 +msgid "*** invalid date/time ***" +msgstr "*** ÎÅÐÒÁ×ÉÌØÎÁÑ ÄÁÔÁ/×ÒÅÍÑ ***" + +#: src/stat.c:608 +#, c-format +msgid "cannot read file system information for %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÞÉÔÁÔØ ÉÎÆÏÒÍÁÃÉÀ ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÙ ÄÌÑ %s" + +#: src/stat.c:684 +#, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ] æáêì...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" +"ïÔÏÂÒÁÖÁÅÔ ÓÏÓÔÏÑÎÉÅ ÆÁÊÌÁ ÉÌÉ ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÙ.\n" +"\n" +" -f, --filesystem ÐÏËÁÚÁÔØ ÓÏÓÔÏÑÎÉÅ ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÙ, Á ÎÅ ÆÁÊÌÁ\n" +" -c --format=æïòíáô ÉÓÐÏÌØÚÏ×ÁÔØ ÕËÁÚÁÎÎÙÊ æïòíáô, Á ÎÅ ÐÒÉÎÉÍÁÅÍÙÊ ÐÏ " +"ÕÍÏÌÞÁÎÉÀ\n" +" -L, --dereference ÓÌÅÄÏ×ÁÔØ ÐÏ ÓÓÙÌËÁÍ\n" +" -t, --terse ×Ù×ÏÄÉÔØ ÉÎÆÏÒÍÁÃÉÀ × ËÏÍÐÁËÔÎÏÊ ÆÏÒÍÅ\n" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" +"\n" +"äÏÐÕÓÔÉÍÙÅ ÆÏÒÍÁÔÎÙÅ ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏÓÔÉ ÄÌÑ ÆÁÊÌÏ× (ÂÅÚ --filesystem):\n" +"\n" +" %A ðÒÁ×Á ÄÏÓÔÕÐÁ × ÞÉÔÁÅÍÏÊ ÆÏÒÍÅ\n" +" %a ðÒÁ×Á ÄÏÓÔÕÐÁ × ×ÏÓØÍÅÒÉÞÎÏÊ ÆÏÒÍÅ\n" +" %B òÁÚÍÅÒ ÂÌÏËÁ, ÓÏÏÂÝÁÅÍÏÇÏ `%b', × ÂÁÊÔÁÈ\n" +" %b þÉÓÌÏ ×ÙÄÅÌÅÎÎÙÈ ÂÌÏËÏ×\n" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" +" %D îÏÍÅÒ ÕÓÔÒÏÊÓÔ×Á, ÛÅÓÔÎÁÄÃÁÔÉÒÉÞÎÙÊ\n" +" %d îÏÍÅÒ ÕÓÔÒÏÊÓÔ×Á, ÄÅÓÑÔÉÞÎÙÊ\n" +" %F ôÉÐ ÆÁÊÌÁ\n" +" %f îÉÚËÏÕÒÏ×ÎÅ×ÙÊ ÒÅÖÉÍ, ÛÅÓÔÎÁÄÃÁÔÉÒÉÞÎÙÊ\n" +" %G éÍÑ ÇÒÕÐÐÙ-×ÌÁÄÅÌØÃÁ\n" +" %g ID ÇÒÕÐÐÙ-×ÌÁÄÅÌØÃÁ\n" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" +" %h þÉÓÌÏ ÖÅÓÔËÉÈ ÓÓÙÌÏË\n" +" %i þÉÓÌÏ Inode\n" +" %N üËÒÁÎÉÒÏ×ÁÎÎÏÅ ÉÍÑ ÆÁÊÌÁ, ÓÉÍ×ÏÌØÎÙÅ ÓÓÙÌËÉ ÒÁÚÙÍÅÎÏ×Ù×ÁÀÔÓÑ\n" +" %n éÍÑ ÆÁÊÌÁ\n" +" %o òÁÚÍÅÒ ÂÌÏËÁ ××ÏÄÁ/×Ù×ÏÄÁ\n" +" %s ðÏÌÎÙÊ ÒÁÚÍÅÒ, × ÂÁÊÔÁÈ\n" +" %T ÷ÔÏÒÏÓÔÅÐÅÎÎÙÊ ÔÉÐ ÕÓÔÒÏÊÓÔ×Á, ÛÅÓÔÎÁÄÃÁÔÉÒÉÞÎÙÊ\n" +" %t ïÓÎÏ×ÎÏÊ ÔÉÐ ÕÓÔÒÏÊÓÔ×Á, ÛÅÓÔÎÁÄÃÁÔÉÒÉÞÎÙÊ\n" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" +" %U éÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ-×ÌÁÄÅÌØÃÁ\n" +" %u ID ÐÏÌØÚÏ×ÁÔÅÌÑ-×ÌÁÄÅÌØÃÁ\n" +" %X ÷ÒÅÍÑ ÐÏÓÌÅÄÎÅÇÏ ÄÏÓÔÕÐÁ × ÓÅËÕÎÄÁÈ Ó ÎÁÞÁÌÁ üÐÏÈÉ\n" +" %x ÷ÒÅÍÑ ÐÏÓÌÅÄÎÅÇÏ ÄÏÓÔÕÐÁ\n" +" %Y ÷ÒÅÍÑ ÐÏÓÌÅÄÎÅÊ ÍÏÄÉÆÉËÁÃÉÉ × ÓÅËÕÎÄÁÈ Ó ÎÁÞÁÌÁ üÐÏÈÉ\n" +" %y ÷ÒÅÍÑ ÐÏÓÌÅÄÎÅÊ ÍÏÄÉÆÉËÁÃÉÉ\n" +" %Z ÷ÒÅÍÑ ÐÏÓÌÅÄÎÅÇÏ ÉÚÍÅÎÅÎÉÑ × ÓÅËÕÎÄÁÈ Ó ÎÁÞÁÌÁ üÐÏÈÉ\n" +" %z ÷ÒÅÍÑ ÐÏÓÌÅÄÎÅÇÏ ÉÚÍÅÎÅÎÉÑ\n" +"\n" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" +"äÏÐÕÓÔÉÍÙÅ ÆÏÒÍÁÔÎÙÅ ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏÓÔÉ ÄÌÑ ÆÁÊÌÏ×ÙÈ ÓÉÓÔÅÍ:\n" +"\n" +" %a þÉÓÌÏ Ó×ÏÂÏÄÎÙÈ ÂÌÏËÏ×, ÄÏÓÔÕÐÎÙÈ ÄÌÑ ÏÂÙÞÎÏÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ\n" +" %b ðÏÌÎÏÅ ÞÉÓÌÏ ÂÌÏËÏ× ÄÁÎÎÙÈ × ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÅ\n" +" %c ðÏÌÎÏÅ ÞÉÓÌÏ ÎÏÄ × ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÅ\n" +" %d þÉÓÌÏ Ó×ÏÂÏÄÎÙÈ ÆÁÊÌÏ×ÙÈ ÎÏÄ × ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÅ\n" +" %f þÉÓÌÏ Ó×ÏÂÏÄÎÙÈ ÂÌÏËÏ× × ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÅ\n" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" +" %i éÄÅÎÔÉÆÉËÁÔÏÒ ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÙ, ÛÅÓÔÎÁÄÃÁÔÉÒÉÞÎÙÊ\n" +" %l íÁËÓÉÍÁÌØÎÁÑ ÄÌÉÎÁ ÉÍÅÎÉ ÆÁÊÌÁ\n" +" %n éÍÑ ÆÁÊÌÁ\n" +" %s ïÐÔÉÍÁÌØÎÙÊ ÒÁÚÍÅÒ ÂÌÏËÁ ÐÅÒÅÄÁÞÉ\n" +" %T ôÉÐ × ÞÉÔÁÅÍÏÊ ÆÏÒÍÅ\n" +" %t ôÉÐ, ÛÅÓÔÎÁÄÃÁÔÉÒÉÞÎÙÊ\n" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [-F õóôòïêóô÷ï] [--file=õóôòïêóô÷ï] [õóôáîï÷ëá]...\n" +" ÉÌÉ: %s [-F õóôòïêóô÷ï] [--file=õóôòïêóô÷ï] [-a|--all]\n" +" ÉÌÉ: %s [-F õóôòïêóô÷ï] [--file=õóôòïêóô÷ï] [-g|--save]\n" + +#: src/stty.c:504 +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" +"ðÅÞÁÔÁÅÔ ÉÌÉ ÉÚÍÅÎÑÅÔ ÕÓÔÁÎÏ×ËÉ ÔÅÒÍÉÎÁÌÁ.\n" +"\n" +" -a, --all ÎÁÐÅÞÁÔÁÔØ ×ÓÅ ÔÅËÕÝÉÅ ÕÓÔÁÎÏ×ËÉ × ÆÏÒÍÅ, ÐÏÎÑÔÎÏÊ " +"ÞÅÌÏ×ÅËÕ\n" +" -g, --save ÎÁÐÅÞÁÔÁÔØ ×ÓÅ ÔÅËÕÝÉÅ ÕÓÔÁÎÏ×ËÉ × ÆÏÒÍÅ, ÐÏÎÑÔÎÏÊ " +"ÐÒÏÇÒÁÍÍÅ\n" +" stty\n" +" -F, --file=õóôòïêóô÷ï \n" +" ÏÔËÒÙÔØ É ÉÓÐÏÌØÚÏ×ÁÔØ ÕËÁÚÁÎÎÏÅ ÕÓÔÒÏÊÓÔ×Ï ×ÍÅÓÔÏ \n" +" ÓÔÁÎÄÁÒÔÎÏÇÏ ××ÏÄÁ\n" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" +"\n" +"îÅÏÂÑÚÁÔÅÌØÎÙÊ ÚÎÁË ÍÉÎÕÓ ÐÅÒÅÄ õóôáîï÷ëïê ÏÚÎÁÞÁÅÔ ÏÔÒÉÃÁÎÉÅ. ú×ÅÚÄÏÞËÏÊ\n" +"ÏÔÍÅÞÅÎÙ ÕÓÔÁÎÏ×ËÉ, ÎÅ ÏÐÉÓÁÎÎÙÅ × ÓÔÁÎÄÁÒÔÅ POSIX. äÏÓÔÕÐÎÏÓÔØ ÔÏÊ ÉÌÉ " +"ÉÎÏÊ\n" +"ÕÓÔÁÎÏ×ËÉ ÏÐÒÅÄÅÌÑÅÔÓÑ ÉÓÐÏÌØÚÕÅÍÏÊ ÓÉÓÔÅÍÏÊ.\n" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" +"\n" +"óÐÅÃÉÁÌØÎÙÅ ÓÉÍ×ÏÌÙ:\n" +"* dsusp óéí÷ïì óéí÷ïì ÂÕÄÅÔ ÐÏÓÙÌÁÔØ ÔÅÒÍÉÎÁÌÕ ÓÉÇÎÁÌ ÏÓÔÁÎÏ×Á ÐÒÉ " +"ÚÁ×ÅÒÛÅÎÉÉ\n" +" ××ÏÄÁ\n" +" eof óéí÷ïì óéí÷ïì ÂÕÄÅÔ ÏÚÎÁÞÁÔØ ËÏÎÅà ÆÁÊÌÁ (ÐÒÅËÒÁÝÁÔØ ××ÏÄ)\n" +" eol óéí÷ïì óéí÷ïì ÂÕÄÅÔ ÏÚÎÁÞÁÔØ ËÏÎÅà ÓÔÒÏËÉ\n" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" +"* eol2 óéí÷ïì ÄÒÕÇÏÊ óéí÷ïì ÄÌÑ ËÏÎÃÁ ÓÔÒÏËÉ\n" +" erase óéí÷ïì óéí÷ïì ÂÕÄÅÔ ÓÔÉÒÁÔØ ÐÏÓÌÅÄÎÉÊ ××ÅÄÅÎÎÙÊ ÄÏ ÎÅÇÏ\n" +" intr óéí÷ïì óéí÷ïì ÂÕÄÅÔ ÐÏÓÙÌÁÔØ ÓÉÇÎÁÌ ÐÒÅÒÙ×ÁÎÉÑ\n" +" kill óéí÷ïì óéí÷ïì ÂÕÄÅÔ ÓÔÉÒÁÔØ ÔÅËÕÝÕÀ ÓÔÒÏËÕ\n" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" +"* lnext óéí÷ïì óéí÷ïì ÂÕÄÅÔ ××ÏÄÉÔØ ÓÌÅÄÕÀÝÉÊ ÓÉÍ×ÏÌ, ÏÔÍÅÎÑÑ ÅÇÏ " +"ÓÐÅÃÉÁÌØÎÏÅ\n" +" ÄÅÊÓÔ×ÉÅ\n" +" quit óéí÷ïì óéí÷ïì ÂÕÄÅÔ ÐÏÓÙÌÁÔØ ÓÉÇÎÁÌ ×ÙÈÏÄÁ\n" +"* rprnt óéí÷ïì óéí÷ïì ÂÕÄÅÔ ÐÅÒÅÒÉÓÏ×Ù×ÁÔØ ÔÅËÕÝÕÀ ÓÔÒÏËÕ\n" +" start óéí÷ïì óéí÷ïì ÂÕÄÅÔ ×ÏÚÏÂÎÏ×ÌÑÔØ ××ÏÄ\n" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" +" stop óéí÷ïì óéí÷ïì ÂÕÄÅÔ ÐÒÉÏÓÔÁÎÁ×ÌÉ×ÁÔØ ××ÏÄ\n" +" susp óéí÷ïì óéí÷ïì ÂÕÄÅÔ ÐÏÓÙÌÁÔØ ÔÅÒÍÉÎÁÌÕ ÓÉÇÎÁÌ ÏÓÔÁÎÏ×Á\n" +"* swtch óéí÷ïì óéí÷ïì ÂÕÄÅÔ ÐÅÒÅËÌÀÞÁÔØ ÕÒÏ×ÅÎØ ×ÌÏÖÅÎÎÏÓÔÉ ÏÂÏÌÏÞËÉ\n" +"* werase óéí÷ïì óéí÷ïì ÓÔÉÒÁÔØ ÐÏÓÌÅÄÎÉÅ ××ÅÄÅÎÎÏÅ ÓÌÏ×Ï\n" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" +"\n" +"óÐÅÃÉÁÌØÎÙÅ ÕÓÔÁÎÏ×ËÉ:\n" +"\n" +" î ÕÓÔÁÎÏ×ÉÔØ ÓËÏÒÏÓÔÉ ××ÏÄÁ É ×Ù×ÏÄÁ ÒÁ×ÎÙÍÉ î ÂÏÄ\n" +"* cols î ÓÏÏÂÝÉÔØ ÑÄÒÕ, ÞÔÏ ÔÅÒÍÉÎÁÌ ÉÍÅÅÔ î ÓÔÏÌÂÃÏ×\n" +"* columns î ÓÉÎÏÎÉÍ cols\n" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" +" ispeed î ÕÓÔÁÎÏ×ÉÔØ ÓËÏÒÏÓÔØ ××ÏÄÁ\n" +"* line î ÉÓÐÏÌØÚÏ×ÁÔØ ÐÒÏÔÏËÏÌ ÌÉÎÉÉ î\n" +" min î ÉÓÐÏÌØÚÕÅÔÓÑ Ó -icanon, ÕÓÔÁÎÏ×ÉÔØ î ÍÉÎÉÍÁÌØÎÙÍ ÞÉÓÌÏÍ " +"ÓÉÍ×ÏÌÏ×\n" +" ÄÌÑ ÚÁ×ÅÒÛÅÎÉÑ ÏÐÅÒÁÃÉÉ ÞÔÅÎÉÑ\n" +" ospeed î ÕÓÔÁÎÏ×ÉÔØ ÓËÏÒÏÓÔØ ×Ù×ÏÄÁ\n" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" +"* rows î ÓÏÏÂÝÉÔØ ÑÄÒÕ, ÞÔÏ ÔÅÒÍÉÎÁÌ ÉÍÅÅÔ î ÓÔÒÏË\n" +"* size ÎÁÐÅÞÁÔÁÔØ ÞÉÓÌÁ ÓÔÏÌÂÃÏ× É ÓÔÒÏË, ÉÚ×ÅÓÔÎÙÅ ÑÄÒÕ\n" +" speed ÎÁÐÅÞÁÔÁÔØ ÓËÏÒÏÓÔØ ÔÅÒÍÉÎÁÌÁ\n" +" time î ÉÓÐÏÌØÚÕÅÔÓÑ Ó -icanon, ÕÓÔÁÎÏ×ÉÔØ ×ÒÅÍÅÎÎÏÊ ÐÒÅÄÅÌ ÄÌÑ " +"ÏÐÅÒÁÃÉÉ\n" +" ÞÔÅÎÉÑ ÒÁ×ÎÙÍ î ÄÅÓÑÔÙÍ ÓÅËÕÎÄÙ\n" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" +"\n" +"õÓÔÁÎÏ×ËÉ ÕÐÒÁ×ÌÅÎÉÑ:\n" +" [-]clocal ÏÔÍÅÎÉÔØ ÕÐÒÁ×ÌÑÀÝÉÅ ÓÉÇÎÁÌÙ ÍÏÄÅÍÁ\n" +" [-]cread ÒÁÚÒÅÛÉÔØ ××ÏÄ\n" +"* [-]crtscts ÒÁÚÒÅÛÉÔØ ÕÐÒÁ×ÌÅÎÉÅ ÐÏÔÏËÏÍ ÄÁÎÎÙÈ Ó ÐÏÄÔ×ÅÒÖÄÅÎÉÅÍ " +"ÇÏÔÏ×ÎÏÓÔÉ\n" +" csî ÕÓÔÁÎÏ×ÉÔØ ÒÁÚÍÅÒ ÓÉÍ×ÏÌÁ ÒÁ×ÎÙÍ î ÂÉÔ, î ÏÔ 5 ÄÏ 8\n" + +#: src/stty.c:570 +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" +" [-]cstopb ÉÓÐÏÌØÚÏ×ÁÔØ Ä×Á ÒÁÚÄÅÌÑÀÝÉÈ ÂÉÔÁ ÎÁ ÓÉÍ×ÏÌ (ÏÄÉÎ, ÅÓÌÉ Ó " +"`-')\n" +" [-]hup ÐÏÓÙÌÁÔØ ÓÉÇÎÁÌ ÏÂÒÙ×Á ÔÅÒÍÉÎÁÌØÎÏÊ ÌÉÎÉÉ, ËÏÇÄÁ ÐÏÓÌÅÄÎÉÊ\n" +" ÐÒÏÃÅÓÓ ÚÁËÒÙ×ÁÅÔ ÔÅÒÍÉÎÁÌ\n" +" [-]hupcl ÓÉÎÏÎÉÍ [-]hup\n" +" [-]parenb ÇÅÎÅÒÉÒÏ×ÁÔØ ÐÒÉ ×Ù×ÏÄÅ ÂÉÔ ÞÅÔÎÏÓÔÉ É ÏÖÉÄÁÔØ ÂÉÔ ÞÅÔÎÏÓÔÉ " +"ÎÁ\n" +" ××ÏÄÅ\n" +" [-]parodd ÕÓÔÁÎÏ×ÉÔØ ÐÒÏ×ÅÒËÕ ÎÁ ÎÅÞÅÔÎÏÓÔØ (ÄÁÖÅ Ó `-')\n" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" +"\n" +"õÓÔÁÎÏ×ËÉ ××ÏÄÁ:\n" +" [-]brkint ÓÉÍ×ÏÌ break ÂÕÄÅÔ ×ÙÚÙ×ÁÔØ ÓÉÇÎÁÌ ÐÒÅÒÙ×ÁÎÉÑ\n" +" [-]icrnl ÐÒÅÏÂÒÁÚÏ×Ù×ÁÔØ ×ÏÚ×ÒÁÔ ËÁÒÅÔËÉ × ÐÅÒÅ×ÏÄ ÓÔÒÏËÉ\n" +" [-]ignbrk ÉÇÎÏÒÉÒÏ×ÁÔØ ÓÉÍ×ÏÌÙ ÐÒÅÒÙ×ÁÎÉÑ\n" +" [-]igncr ÉÇÎÏÒÉÒÏ×ÁÔØ ÓÉÍ×ÏÌÙ ×ÏÚ×ÒÁÔÁ ËÁÒÅÔËÉ\n" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" +" [-]ignpar ÉÇÎÏÒÉÒÏ×ÁÔØ ÓÉÍ×ÏÌÙ Ó ÏÛÉÂËÁÍÉ ÞÅÔÎÏÓÔÉ\n" +"* [-]imaxbel ÐÒÉ ÐÅÒÅÐÏÌÎÅÎÎÏÍ ÂÕÆÅÒÅ ××ÏÄÁ ÐÏÄÁ×ÁÔØ Ú×ÕËÏ×ÏÊ ÓÉÇÎÁÌ É " +"ÎÅ\n" +" ÓÂÒÁÓÙ×ÁÔØ ÂÕÆÅÒ, ÉÇÎÏÒÉÒÕÑ ÄÁÌØÎÅÊÛÉÊ ××ÏÄ\n" +" [-]inlcr ÐÒÅÏÂÒÁÚÏ×Ù×ÁÔØ ÐÅÒÅ×ÏÄ ÓÔÒÏËÉ × ×ÏÚ×ÒÁÔ ËÁÒÅÔËÉ\n" +" [-]inpck ÉÓÐÏÌØÚÏ×ÁÔØ ÐÒÏ×ÅÒËÕ ÞÅÔÎÏÓÔÉ ××ÏÄÁ\n" +" [-]istrip ÏÞÉÝÁÔØ ÓÔÁÒÛÉÊ (×ÏÓØÍÏÊ) ÂÉÔ ××ÏÄÉÍÙÈ ÓÉÍ×ÏÌÏ×\n" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" +"* [-]iuclc ÐÒÅÏÂÒÁÚÏ×Ù×ÁÔØ ÚÁÇÌÁ×ÎÙÅ ÂÕË×Ù × ÓÔÒÏÞÎÙÅ\n" +"* [-]ixany ÐÏÚ×ÏÌÉÔØ ÌÀÂÏÍÕ ÓÉÍ×ÏÌÕ ×ÏÚÏÂÎÏ×ÉÔØ ××ÏÄ\n" +" [-]ixoff ÒÁÚÒÅÛÉÔØ ÐÏÓÙÌËÕ ÓÉÍ×ÏÌÏ× ÐÒÉÏÓÔÁÎÏ×ËÉ/×ÏÚÏÂÎÏ×ÌÅÎÉÑ\n" +" [-]ixon ÒÁÚÒÅÛÉÔØ ÕÐÒÁ×ÌÅÎÉÅ ÐÏÔÏËÏÍ ÄÁÎÎÙÈ\n" +" [-]parmrk ÏÔÍÅÞÁÔØ ÏÛÉÂËÉ ÞÅÔÎÏÓÔÉ (ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏÓÔØÀ ÉÚ 255 ÎÕÌÅÊ)\n" +" [-]tandem ÓÉÎÏÎÉÍ [-]xioff\n" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" +"\n" +"õÓÔÁÎÏ×ËÉ ×Ù×ÏÄÁ:\n" +"* bsî ÚÎÁÞÅÎÉÅ ÐÁÕÚÙ ÐÏÓÌÅ ÚÁÂÏÑ, ÄÏÐÕÓÔÉÍÙÅ î [0..1]\n" +"* crî ÚÎÁÞÅÎÉÅ ÐÁÕÚÙ ÐÏÓÌÅ ×ÏÚ×ÒÁÔÁ ËÁÒÅÔËÉ, ÄÏÐÕÓÔÉÍÙÅ î [0..3]\n" +"* ffî ÚÎÁÞÅÎÉÅ ÐÁÕÚÙ ÐÏÓÌÅ ÐÅÒÅ×ÏÄÁ ÓÔÒÁÎÉÃÙ, ÄÏÐÕÓÔÉÍÙÅ î [0..1]\n" +"* nlî ÚÎÁÞÅÎÉÅ ÐÁÕÚÙ ÐÏÓÌÅ ÎÏ×ÏÊ ÓÔÒÏËÉ, ÄÏÐÕÓÔÉÍÙÅ î [0..1]\n" + +#: src/stty.c:608 +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" +"* [-]ocrnl ÐÒÅÏÂÒÁÚÏ×Ù×ÁÔØ ×ÏÚ×ÒÁÔ ËÁÒÅÔËÉ × ÐÅÒÅ×ÏÄ ÓÔÒÏËÉ\n" +"* [-]ofdel ÉÓÐÏÌØÚÏ×ÁÔØ ÓÉÍ×ÏÌÙ ÓÔÉÒÁÎÉÑ ×ÍÅÓÔÏ ÎÕÌÅÊ ÄÌÑ ÚÁÐÏÌÎÅÎÉÑ\n" +"* [-]ofill ÉÓÐÏÌØÚÏ×ÁÔØ ÓÉÍ×ÏÌÙ ÚÁÐÏÌÎÅÎÉÑ ÄÌÑ ÚÁÄÅÒÖÅË\n" +"* [-]olcuc ÐÒÅÏÂÒÁÚÏ×Ù×ÁÔØ ÓÔÒÏÞÎÙÅ ÂÕË×Ù × ÚÁÇÌÁ×ÎÙÅ\n" +"* [-]onlcr ÐÒÅÏÂÒÁÚÏ×Ù×ÁÔØ ÐÅÒÅ×ÏÄ ÓÔÒÏËÉ × ×ÏÚ×ÒÁÔ ËÁÒÅÔËÉ É ÎÏ×ÕÀ " +"ÓÔÒÏËÕ\n" +"* [-]onlret ÐÅÒÅ×ÏÄ ÓÔÒÏËÉ ÐÒÏÉÚ×ÏÄÉÔ ×ÏÚ×ÒÁÔ ËÁÒÅÔËÉ\n" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" +"* [-]onocr ÎÅ ÐÅÞÁÔÁÔØ ×ÏÚ×ÒÁÔ ËÁÒÅÔËÉ × ÐÅÒ×ÏÍ ÓÔÏÌÂÃÅ\n" +" [-]opost ÆÏÒÍÁÔÉÒÏ×ÁÔØ ×Ù×ÏÄ\n" +"* tabî ÚÎÁÞÅÎÉÅ ÐÁÕÚÙ ÐÏÓÌÅ ÇÏÒÉÚÏÎÔÁÌØÎÏÊ ÔÁÂÕÌÑÃÉÉ,\n" +" ÄÏÐÕÓÔÉÍÙÅ î [0..3]\n" +"* tabs ÓÉÎÏÎÉÍ tab0\n" +"* -tabs ÓÉÎÏÎÉÍ tab3\n" +"* vtî ÚÎÁÞÅÎÉÅ ÐÁÕÚÙ ÐÏÓÌÅ ×ÅÒÔÉËÁÌØÎÏÊ ÔÁÂÕÌÑÃÉÉ, ÄÏÐÕÓÔÉÍÙÅ î " +"[0..1]\n" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" +"\n" +"ìÏËÁÌØÎÙÅ ÕÓÔÁÎÏ×ËÉ:\n" +" [-]crterase ÓÔÉÒÁÔØ ÓÉÍ×ÏÌÙ ËÁË ÚÁÂÏÊ-ÐÒÏÂÅÌ-ÚÁÂÏÊ\n" +"* crtkill ÓÔÉÒÁÔØ ×ÓÀ ÓÔÒÏËÕ, ÐÏÄÞÉÎÑÑÓØ ÕÓÔÁÎÏ×ËÁÍ echoprt É echoe\n" +"* -crtkill ÓÔÉÒÁÔØ ×ÓÀ ÓÔÒÏËÕ, ÐÏÄÞÉÎÑÑÓØ ÕÓÔÁÎÏ×ËÁÍ echoctl É echok\n" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" +"* [-]ctlecho ÏÔÏÂÒÁÖÁÔØ ÕÐÒÁ×ÌÑÀÝÉÅ ÓÉÍ×ÏÌÙ Ó ÛÁÐÏÞËÏÊ (`^c')\n" +" [-]echo ÏÔÏÂÒÁÖÁÔØ ××ÏÄÉÍÙÅ ÓÉÍ×ÏÌÙ\n" +"* [-]echoctl ÓÉÎÏÎÉÍ [-]ctlecho\n" +" [-]echoe ÓÉÎÏÎÉÍ [-]crterase\n" +" [-]echok ÏÔÏÂÒÁÖÁÔØ ÐÅÒÅ×ÏÄ ÓÔÒÏËÉ ÐÏÓÌÅ ÓÉÍ×ÏÌÁ ÕÎÉÞÔÏÖÅÎÉÑ\n" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" +"* [-]echoke ÓÉÎÏÎÉÍ [-]crtkill\n" +" [-]echonl ÏÔÏÂÒÁÖÁÔØ ÐÅÒÅ×ÏÄ ÓÔÒÏËÉ, ÄÁÖÅ ÅÓÌÉ ÄÒÕÇÉÅ ÓÉÍ×ÏÌÙ ÎÅ\n" +" ÏÔÏÂÒÁÖÁÀÔÓÑ\n" +"* [-]echoprt ×Ù×ÏÄÉÔØ ÓÔÉÒÁÅÍÙÅ ÓÉÍ×ÏÌÙ × ÏÂÒÁÔÎÏÍ ÐÏÒÑÄËÅ, ÍÅÖÄÕ `\\` É " +"'/'\n" +" [-]icanon ÉÓÐÏÌØÚÏ×ÁÔØ ÓÐÅÃÉÁÌØÎÙÅ ÓÉÍ×ÏÌÙ erase, kill, werase, É " +"rprnt\n" +" [-]iexten ÉÓÐÏÌØÚÏ×ÁÔØ ÓÐÅÃÉÁÌØÎÙÅ ÓÉÍ×ÏÌÙ, ÎÅ ÏÐÉÓÁÎÎÙÅ × ÓÔÁÎÄÁÒÔÅ " +"POSIX\n" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" +" [-]isig ÉÓÐÏÌØÚÏ×ÁÔØ ÓÐÅÃÉÁÌØÎÙÅ ÓÉÍ×ÏÌÙ interrupt, quit, É suspend\n" +" [-]noflsh ÚÁÐÒÅÔÉÔØ ÓÂÒÏÓ ÂÕÆÅÒÁ ÐÏÓÌÅ ÐÒÉÅÍÁ ÓÐÅÃÉÁÌØÎÙÈ ÓÉÍ×ÏÌÏ× " +"interrupt\n" +" É quit\n" +"* [-]prterase ÓÉÎÏÎÉÍ [-]echoprt\n" +"* [-]tostop ÐÒÉÏÓÔÁÎÁ×ÌÉ×ÁÔØ ÆÏÎÏ×ÙÅ ÐÒÏÇÒÁÍÍÅ, ÐÙÔÁÀÝÉÅÓÑ ÐÒÏÉÚ×ÅÓÔÉ " +"ÚÁÐÉÓØ\n" +" ÎÁ ÔÅÒÍÉÎÁÌ\n" +"* [-]xcase ÏÔÏÂÒÁÖÁÔØ `\\' ÄÌÑ ÚÁÇÌÁ×ÎÙÈ ÂÕË×, ÉÓÐÏÌØÚÕÅÔÓÑ Ó icanon\n" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" +"\n" +"ïÂßÅÄÉÎÅÎÎÙÅ ÕÓÔÁÎÏ×ËÉ:\n" +"* [-]LCASE ÓÉÎÏÎÉÍ [-]lcase\n" +" cbreak ÓÉÎÏÎÉÍ -icanon\n" +" -cbreak ÓÉÎÏÎÉÍ icanon\n" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" +" cooked ÓÉÎÏÎÉÍ brkint ignpar istrip icrnl ixon opost isig icanon,\n" +" ÓÉÍ×ÏÌÙ eof and eol ÉÍÅÀÔ ÚÎÁÞÅÎÉÑ ÐÏ ÕÍÏÌÞÁÎÉÀ\n" +" -cooked ÓÉÎÏÎÉÍ raw\n" +" crt ÓÉÎÏÎÉÍ echoe echoctl echoke\n" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" +" dec ÓÉÎÏÎÉÍ echoe echoctl echoke -ixany intr ^c erase 0177 kill " +"^u\n" +"* [-]decctlq ÓÉÎÏÎÉÍ [-]ixany\n" +" ek ÕÓÔÁÎÏ×ÉÔØ ÄÌÑ ÓÉÍ×ÏÌÏ× erase and kill ÚÎÁÞÅÎÉÑ ÐÏ " +"ÕÍÏÌÞÁÎÉÀ\n" +" evenp ÓÉÎÏÎÉÍ parenb -parodd cs7\n" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" +" -evenp ÓÉÎÏÎÉÍ -parenb cs8\n" +"* [-]lcase ÓÉÎÏÎÉÍ xcase iuclc olcuc\n" +" litout ÓÉÎÏÎÉÍ -parenb -istrip -opost cs8\n" +" -litout ÓÉÎÏÎÉÍ parenb istrip opost cs7\n" +" nl ÓÉÎÏÎÉÍ -icrnl -onlcr\n" +" -nl ÓÉÎÏÎÉÍ icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" +" oddp ÓÉÎÏÎÉÍ parenb parodd cs7\n" +" -oddp ÓÉÎÏÎÉÍ -parenb cs8\n" +" [-]parity ÓÉÎÏÎÉÍ [-]evenp\n" +" pass8 ÓÉÎÏÎÉÍ -parenb -istrip cs8\n" +" -pass8 ÓÉÎÏÎÉÍ parenb istrip cs7\n" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" +" raw ÓÉÎÏÎÉÍ -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw ÓÉÎÏÎÉÍ cooked\n" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" +" sane ÓÉÎÏÎÉÍ cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, ×ÓÅ ÓÐÅÃÉÁÌØÎÙÅ " +"ÓÉÍ×ÏÌÙ\n" +" ÉÍÅÀÔ ÚÎÁÞÅÎÉÑ ÐÏ ÕÍÏÌÞÁÎÉÀ\n" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" +"\n" +"õÐÒÁ×ÌÑÅÔ ÔÅÒÍÉÎÁÌØÎÏÊ ÌÉÎÉÅÊ, ÐÏÄËÌÀÞÅÎÎÏÊ Ë ÓÔÁÎÄÁÒÔÎÏÍÕ ××ÏÄÕ. " +"úÁÐÕÝÅÎÎÁÑ\n" +"ÂÅÚ ÁÒÇÕÍÅÎÔÏ×, ÐÅÞÁÔÁÅÔ ÓËÏÒÏÓÔØ ÐÅÒÅÄÁÞÉ ÉÎÆÏÒÍÁÃÉÉ, line discipline É\n" +"ÏÔÌÉÞÉÑ ÏÔ ÏÂÙÞÎÙÈ ÕÓÔÁÎÏ×ÏË. ðÒÉ ÕÓÔÁÎÏ×ËÅ, óéí÷ïìù ÔÒÁËÔÕÀÔÓÑ ÂÕË×ÁÌØÎÏ\n" +"ÉÌÉ ÚÁÄÁÀÔÓÑ × ËÁË ^c, 0x37, 0177 ÉÌÉ 127; ÄÌÑ ÏÔÍÅÎÙ ÓÐÅÃÉÁÌØÎÙÈ ÓÉÍ×ÏÌÏ×\n" +"ÓÌÕÖÁÔ ÚÎÁÞÅÎÉÑ ^- É undef.\n" + +#: src/stty.c:787 +msgid "only one device may be specified" +msgstr "ÍÏÖÎÏ ÚÁÄÁÔØ ÔÏÌØËÏ ÏÄÎÏ ÕÓÔÒÏÊÓÔ×Ï" + +#: src/stty.c:882 +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "" +"ËÌÀÞÉ ÄÌÑ ×Ù×ÏÄÁ × ×ÉÄÅ, ÞÉÔÁÅÍÏÍ ÞÅÌÏ×ÅËÏÍ É ÞÉÔÁÅÍÏÍ ÐÒÏÇÒÁÍÍÏÊ stty,\n" +"×ÚÁÉÍÏÉÓËÌÀÞÁÀÝÉ" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "ÐÒÉ ÚÁÄÁÎÉÉ ÓÔÉÌÑ ×Ù×ÏÄÁ ÎÅÌØÚÑ ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ÒÅÖÉÍ" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "%s: ÎÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÉÎÉÃÉÁÌÉÚÉÒÏ×ÁÔØ ÎÅÂÌÏËÉÒÕÀÝÉÊ ÒÅÖÉÍ" + +#: src/stty.c:957 src/stty.c:1064 +#, c-format +msgid "invalid argument `%s'" +msgstr "ÎÅ×ÅÒÎÙÊ ÁÒÇÕÍÅÎÔ `%s'" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, c-format +msgid "missing argument to `%s'" +msgstr "ÐÒÏÐÕÝÅÎ ÁÒÇÕÍÅÎÔ ÄÌÑ `%s'" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "%s: ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÉÚ×ÅÓÔÉ ×ÓÅ ÚÁÐÒÏÛÅÎÎÙÅ ÄÅÊÓÔ×ÉÑ" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "ÎÏ×ÙÊ_ÒÅÖÉÍ: ÒÅÖÉÍ\n" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "%s: ÄÌÑ ÜÔÏÇÏ ÕÓÔÒÏÊÓÔ×Á ÎÅÔ Ó×ÅÄÅÎÉÊ Ï ÒÁÚÍÅÒÁÈ" + +#: src/stty.c:1944 +#, c-format +msgid "invalid integer argument `%s'" +msgstr "ÎÅ×ÅÒÎÙÊ ÃÅÌÙÊ ÁÒÇÕÍÅÎÔ `%s'" + +#: src/su.c:289 +msgid "Password:" +msgstr "ðÁÒÏÌØ:" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "getpass: ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ /dev/tty" + +#: src/su.c:350 +msgid "cannot set groups" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÕÓÔÁÎÏ×ÉÔØ ÇÒÕÐÐÙ" + +#: src/su.c:354 +msgid "cannot set group id" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÕÓÔÁÎÏ×ÉÔØ ÇÒÕÐÐÏ×ÏÊ id" + +#: src/su.c:356 +msgid "cannot set user id" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÕÓÔÁÎÏ×ÉÔØ ÐÏÌØÚÏ×ÁÔÅÌØÓËÉÊ id" + +#: src/su.c:437 +#, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... [-] [ðïìøúï÷áôåìø [áòç]...]\n" + +#: src/su.c:438 +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" +"õÓÔÁÎÁ×ÌÉ×ÁÅÔ ÜÆÆÅËÔÉ×ÎÙÅ id ÐÏÌØÚÏ×ÁÔÅÌÑ É ÇÒÕÐÐÙ ËÁË Õ ðïìøúï÷áôåìñ.\n" +"\n" +" -, -l, --login ÉÓÐÏÌØÚÏ×ÁÔØ ÏÂÏÌÏÞËÕ ËÁË ÏÂÏÌÏÞËÕ ×ÈÏÄÁ\n" +" -c, --commmand=ëïíáîäá ÐÅÒÅÄÁÔØ ÏÂÏÌÏÞËÅ ëïíáîäõ Ó ÐÏÍÏÝØÀ -c\n" +" -f, --fast ÐÅÒÅÄÁÔØ ÏÂÏÌÏÞËÅ -f (ÄÌÑ csh ÉÌÉ tcsh)\n" +" -m, --preserve-environment ÎÅ ÐÅÒÅÕÓÔÁÎÁ×ÌÉ×ÁÔØ ÐÅÒÅÍÅÎÎÙÅ ÓÒÅÄÙ\n" +" -p ÓÉÎÏÎÉÍ ÄÌÑ -m\n" +" -s, --shell=ïâïìïþëá ÚÁÐÕÓÔÉÔØ ïâïìïþëõ, ÅÓÌÉ ÐÏÚ×ÏÌÑÅÔ /etc/" +"shells\n" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" +"\n" +"ðÒÏÓÔÏ ÚÎÁË ÍÉÎÕÓ ÐÏÄÒÁÚÕÍÅ×ÁÅÔ -l. åÓÌÉ ðïìøúï÷áôåìø ÎÅ ÚÁÄÁÎ,\n" +"ÐÏÄÒÁÚÕÍÅ×ÁÅÔÓÑ root.\n" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "ÎÅÐÒÁ×ÉÌØÎÙÊ ÐÁÒÏÌØ" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "ÉÓÐÏÌØÚÕÅÔÓÑ ÏÇÒÁÎÉÞÅÎÎÁÑ ÏÂÏÌÏÞËÁ %s" + +#: src/su.c:580 +#, c-format +msgid "warning: cannot change directory to %s" +msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: ÎÅ×ÏÚÍÏÖÎÏ ÓÍÅÎÉÔØ ËÁÔÁÌÏÇ ÎÁ %s" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "ëÁÊ×ÁÎ áÇÁÊÅÐÕÒ É äÅ×ÉÄ íÁËëÅÎÚÉ" + +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" +"ðÅÞÁÔÁÅÔ ËÏÎÔÒÏÌØÎÕÀ ÓÕÍÍÕ É ÞÉÓÌÏ ÂÌÏËÏ× ÄÌÑ ËÁÖÄÏÇÏ æáêìá.\n" +"\n" +" -r ÉÓÐÏÌØÚÏ×ÁÔØ ÍÅÔÏÄ ×ÙÞÉÓÌÅÎÉÑ ËÏÎÔÒÏÌØÎÙÈ ÓÕÍÍ ËÁË × BSD,\n" +" ÒÁÚÍÅÒ ÂÌÏËÁ 1K\n" +" -s, --sysv ÉÓÐÏÌØÚÏ×ÁÔØ ÍÅÔÏÄ ×ÙÞÉÓÌÅÎÉÑ ËÏÎÔÒÏÌØÎÙÈ ÓÕÍÍ ËÁË × " +"System V,\n" +" ÒÁÚÍÅÒ ÂÌÏËÁ 512 ÂÁÊÔ\n" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" +"úÁÐÉÓÙ×ÁÅÔ ÉÚÍÅÎÅÎÎÙÅ ÂÌÏËÉ ÎÁ ÄÉÓË, ÏÂÎÏ×ÌÑÅÔ ÓÕÐÅÒÂÌÏË\n" +"\n" + +#: src/sync.c:70 src/tty.c:112 +msgid "ignoring all arguments" +msgstr "×ÓÅ ÁÒÇÕÍÅÎÔÙ ÉÇÎÏÒÉÒÏ×ÁÎÙ" + +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr " --help ÐÏËÁÚÁÔØ ÜÔÕ ÓÐÒÁ×ËÕ É ×ÙÊÔÉ\n" + +#: src/sys2.h:494 +msgid " --version output version information and exit\n" +msgstr "" +" --version ÐÏËÁÚÁÔØ ÉÎÆÏÒÍÁÃÉÀ Ï ×ÅÒÓÉÉ É ×ÙÊÔÉ\n" +"\n" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "äÖÅÊ ìÅÐÒÅ É äÅ×ÉÄ íÁËëÅÎÚÉ" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"ðÅÞÁÔÁÅÔ æáêìù ÎÁ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ, ÎÁÞÉÎÁÑ Ó ÐÏÓÌÅÄÎÅÊ ÓÔÒÏËÉ.\n" +"åÓÌÉ æáêì ÎÅ ÚÁÄÁÎ ÉÌÉ ÚÁÄÁÎ ËÁË -, ÞÉÔÁÅÔ ÓÔÁÎÄÁÒÔÎÙÊ ××ÏÄ.\n" +"\n" + +#: src/tac.c:139 +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" +" -b, --before ÐÒÉÓÏÅÄÉÎÑÔØ ÒÁÚÄÅÌÉÔÅÌØ Ë ÎÁÞÁÌÕ, Á ÎÅ Ë ËÏÎÃÕ\n" +" -r, --regex ×ÏÓÐÒÉÎÉÍÁÔØ ÒÁÚÄÅÌÉÔÅÌØ ËÁË ÒÅÇÕÌÑÒÎÏÅ " +"×ÙÒÁÖÅÎÉÅ\n" +" -s, --separator=óôòïëá ÉÓÐÏÌØÚÏ×ÁÔØ ËÁË ÒÁÚÄÅÌÉÔÅÌØ óôòïëõ, Á ÎÅ ÚÎÁË `" +"\\n'\n" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "ÓÔÁÎÄÁÒÔÎÙÊ ××ÏÄ: ÏÛÉÂËÁ ÞÔÅÎÉÑ" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "ÒÁÚÄÅÌÉÔÅÌØ ÎÅ ÍÏÖÅÔ ÂÙÔØ ÐÕÓÔÙÍ" + +#: src/tail.c:49 +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "ðÏÌ òÕÂÉÎ, äÅ×ÉÄ íÁËëÅÎÚÉ, ñÎ ìÁÎÓ ôÅÊÌÏÒ É äÖÉÍ íÅÅÒÉÎÇ" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"ðÅÞÁÔÁÅÔ ÐÏÓÌÅÄÎÉÅ %d ÓÔÒÏË ËÁÖÄÏÇÏ ÉÚ æáêìï÷ ÎÁ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ.\n" +"åÓÌÉ ÚÁÄÁÎÏ ÎÅÓËÏÌØËÏ æáêìï÷, ÓÎÁÞÁÌÁ ÐÅÞÁÔÁÅÔ ÚÁÇÏÌÏ×ÏË Ó ÉÍÅÎÅÍ ÆÁÊÌÁ.\n" +"åÓÌÉ æáêì ÎÅ ÚÁÄÁÎ ÉÌÉ ÚÁÄÁÎ ËÁË -, ÞÉÔÁÅÔ ÓÔÁÎÄÁÒÔÎÙÊ ××ÏÄ.\n" +"\n" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" +" --retry ÐÒÏÄÏÌÖÁÔØ ÐÏÐÙÔËÉ ÏÔËÒÙÔÉÑ ÆÁÊÌÁ, ÄÁÖÅ ÅÓÌÉ ÏÎ \n" +" ÎÅÄÏÓÔÕÐÅÎ, ËÏÇÄÁ tail ÚÁÐÕÓËÁÅÔÓÑ, ÉÌÉ ÅÓÌÉ " +"ÏÎ \n" +" ÓÔÁÌ ÎÅÄÏÓÔÕÐÅÎ ÐÏÚÄÎÅÅ -- ÐÏÌÅÚÎÏ ÔÏÌØËÏ Ó -f\n" +" -c, --bytes=î ×Ù×ÏÄÉÔØ ÐÏÓÌÅÄÎÉÅ î ÂÁÊÔ\n" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" +" -f, --follow[={name|descriptor}]\n" +" ×Ù×ÏÄÉÔØ ÐÏÓÔÕÐÁÀÝÉÅ ÄÁÎÎÙÅ ÐÏ ÍÅÒÅ ÒÏÓÔÁ ÆÁÊÌÁ;\n" +" -f, --follow É --follow=descriptor " +"ÜË×É×ÁÌÅÎÔÎÙ\n" +" -F ÜË×É×ÁÌÅÎÔ --follow=name --retry\n" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" +" -n, --lines=î ×Ù×ÏÄÉÔØ ÐÏÓÌÅÄÎÉÅ î ÓÔÒÏË, Á ÎÅ ÐÏÓÌÅÄÎÉÅ %d\n" +" --max-unchanged-stats=î \n" +" c ËÌÀÞÏÍ --follow=name, ÐÏ×ÔÏÒÎÏ ÏÔËÒÙ×ÁÔØ æáêì,\n" +" ËÏÔÏÒÙÊ ÎÅ ÉÚÍÅÎÑÌÓÑ ÐÏÓÌÅÄÎÉÅ î (ÐÏ ÕÍÏÌÞÁÎÉÀ %" +"d)\n" +" ÉÔÅÒÁÃÉÊ, ÞÔÏÂÙ ÐÒÏ×ÅÒÉÔØ, ÎÅ ÂÙÌ ÌÉ ÏÎ ÕÄÁÌÅÎ " +"ÉÌÉ\n" +" ÐÅÒÅÉÍÅÎÏ×ÁÎ (ÔÁËÏÅ ÏÂÙÞÎÏ ÂÙ×ÁÅÔ ÐÒÉ ÒÏÔÁÃÉÉ \n" +" ÓÉÓÔÅÍÎÙÈ ÐÒÏÔÏËÏÌØÎÙÈ ÆÁÊÌÏ×)\n" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" +" --pid=PID Ó ËÌÀÞÏÍ -f, ÐÒÅÒ×ÁÔØÓÑ, ËÏÇÄÁ ÐÒÏÃÅÓÓ PID \n" +" ÚÁ×ÅÒÛÁÅÔ ÒÁÂÏÔÕ\n" +" -q, --quiet, --silent ÎÅ ×Ù×ÏÄÉÔØ ÚÁÇÏÌÏ×ËÉ Ó ÉÍÅÎÁÍÉ ÆÁÊÌÏ×\n" +" -s, --sleep-interval=ó Ó ËÌÀÞÏÍ -f, ÐÒÏ×ÅÒÑÔØ ÐÏÓÔÕÐÌÅÎÉÅ ÎÏ×ÙÈ ÄÁÎÎÙÈ\n" +" ÐÒÉÍÅÒÎÏ ËÁÖÄÙÅ ó ÓÅËÕÎÄ (ÐÏ ÕÍÏÌÞÁÎÉÀ 1)\n" +" -v, --verbose ×ÓÅÇÄÁ ×Ù×ÏÄÉÔØ ÚÁÇÏÌÏ×ËÉ Ó ÉÍÅÎÁÍÉ ÆÁÊÌÏ×\n" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" +"\n" +"åÓÌÉ ÐÅÒ×ÙÍ ÚÎÁËÏÍ × î (ÞÉÓÌÅ ÂÁÊÔ ÉÌÉ ÓÔÒÏË) Ñ×ÌÑÅÔÓÑ `+', ÔÏ ×Ù×ÏÄÉÔ\n" +"Ó î-ÎÏÇÏ ÂÁÊÔÁ (ÉÌÉ ÓÔÒÏËÉ) ÄÏ ËÏÎÃÁ ÆÁÊÌÁ, ÉÎÁÞÅ ×Ù×ÏÄÉÔ ÐÏÓÌÅÄÎÉÅ î\n" +"ÂÁÊÔ (ÉÌÉ ÓÔÒÏË). î ÍÏÖÅÔ ÉÍÅÔØ ÓÕÆÆÉËÓ-ÍÎÏÖÉÔÅÌØ: b ÏÚÎÁÞÁÅÔ 512, \n" +"k -- 1024, m -- 1048576 (1 íÅÇ).\n" +"\n" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" +"ó ËÌÀÞÏÍ --follow (-f), tail ÐÏ ÕÍÏÌÞÁÎÉÀ ÓÌÅÄÕÅÔ ÚÁ ÄÅÓËÒÉÐÔÏÒÏÍ ÆÁÊÌÁ, " +"ÞÔÏ\n" +"ÏÚÎÁÞÁÅÔ, ÞÔÏ ÄÁÖÅ ÅÓÌÉ ÆÁÊÌ ÐÅÒÅÉÍÅÎÏ×ÁÎ, tail ÂÕÄÅÔ É ÄÁÌÅÅ ÓÌÅÄÉÔØ ÚÁ " +"ÅÇÏ\n" +"ËÏÎÃÏÍ. " + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" +"üÔÏ ÐÏ×ÅÄÅÎÉÅ, ÐÒÉÎÉÍÁÅÍÏÅ ÐÏ ÕÍÏÌÞÁÎÉÀ, ÎÅÖÅÌÁÔÅÌØÎÏ, ÅÓÌÉ ×Ù ÎÁ\n" +"ÓÁÍÏÍ ÄÅÌÅ ÈÏÔÉÔÅ ÓÌÅÄÉÔØ ÚÁ ÄÅÊÓÔ×ÉÔÅÌØÎÙÍ ÉÍÅÎÅÍ ÆÁÊÌÁ, Á ÎÅ ÚÁ " +"ÄÅÓËÒÉÐÔÏÒÏÍ\n" +"(ÐÒÉÍÅÒ -- ×ÒÁÝÅÎÉÅ ÐÒÏÔÏËÏÌØÎÙÈ ÆÁÊÌÏ×). ÷ ÔÁËÏÍ ÓÌÕÞÁÅ ÉÓÐÏÌØÚÕÊÔÅ\n" +"--follow=name. üÔÏ ÚÁÓÔÁ×ÉÔ tail ÓÌÅÄÏ×ÁÔØ ÚÁ ÕËÁÚÁÎÎÙÍ ÆÁÊÌÏÍ, ÐÏ×ÔÏÒÎÏ\n" +"ÏÔËÒÙ×ÁÑ ÅÇÏ ÐÅÒÉÏÄÉÞÅÓËÉ, ÞÔÏÂÙ ÕÚÎÁÔØ, ÎÅ ÂÙÌ ÌÉ ÏÎ ÕÄÁÌÅÎ É ÚÁÎÏ×Ï " +"ÓÏÚÄÁÎ\n" +"ËÁËÏÊ-ÔÏ ÄÒÕÇÏÊ ÐÒÏÇÒÁÍÍÏÊ.\n" + +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "ÚÁËÒÙÔÉÅ %s (fd=%d)" + +#: src/tail.c:391 +#, c-format +msgid "%s: cannot seek to offset %s" +msgstr "%s: ÎÅ×ÏÚÍÏÖÎÏ ÓÍÅÓÔÉÔØÓÑ Ë ÐÏÚÉÃÉÉ %s" + +#: src/tail.c:395 +#, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "%s: ÎÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÍÅÓÔÉÔØ ÕËÁÚÁÔÅÌØ ÐÏÚÉÃÉÉ ÎÁ %s" + +#: src/tail.c:400 +#, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "%s: ÎÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÍÅÓÔÉÔØ ÕËÁÚÁÔÅÌØ ÐÏÚÉÃÉÉ ÎÁ %s ÏÔÎÏÓÉÔÅÌØÎÏ ËÏÎÃÁ" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "`%s' ÓÔÁÌ ÎÅÄÏÓÔÕÐÅÎ" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "" +"`%s' ÂÙÌ ÚÁÍÅÝÅÎ ÆÁÊÌÏÍ, ÄÌÑ ËÏÔÏÒÏÇÏ tail ÎÅÐÒÉÍÅÎÉÍ; ×Ù×ÏÄ ÐÒÏÄÏÌÖÁÅÔÓÑ " +"ÄÌÑ ÎÏ×ÏÇÏ ÆÁÊÌÁ" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "`%s' ÓÔÁÌ ÄÏÓÔÕÐÅÎ" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "`%s' ÐÏÑ×ÉÌÓÑ; ÎÁÞÁÔ ×Ù×ÏÄ ÄÌÑ ÎÏ×ÏÇÏ ÆÁÊÌÁ" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "`%s' ÂÙÌ ÚÁÍÅÝÅÎ; ×Ù×ÏÄ ÐÒÏÄÏÌÖÁÅÔÓÑ ÄÌÑ ÎÏ×ÏÇÏ ÆÁÊÌÁ" + +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "%s: ÆÁÊÌ ÕÓÅÞÅÎ" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "ÂÏÌØÛÅ ÎÅÔ ÆÁÊÌÏ×" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "" +"%s: ÎÅ×ÏÚÍÏÖÎÏ ÓÌÅÄÉÔØ ÚÁ ËÏÎÃÏÍ ÆÁÊÌÁ ÔÁËÏÇÏ ÔÉÐÁ; ×Ù×ÏÄ ÐÒÏÄÏÌÖÁÅÔÓÑ ÄÌÑ " +"ÎÏ×ÏÇÏ ÆÁÊÌÁ" + +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "%c: ÎÅ×ÅÒÎÙÊ ÓÕÆÆÉËÓ × ÕÓÔÁÒÅ×ÛÅÍ ËÌÀÞÅ" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"ÓÌÉÛËÏÍ ÍÎÏÇÏ ÁÒÇÕÍÅÎÔÏ×. ðÒÉ ÉÓÐÏÌØÚÏ×ÁÎÉÉ ÓÔÁÒÏÊ ÆÏÒÍÙ ÚÁÐÉÓÉ ËÌÀÞÅÊ (%" +"s)\n" +"ÎÅ ÍÏÖÅÔ ÂÙÔØ ÚÁÄÁÎÏ ÂÏÌÅÅ ÏÄÎÏÇÏ ÆÁÊÌÁ. ÷ÍÅÓÔÏ ÓÔÁÒÏÊ ÉÓÐÏÌØÚÕÊÔÅ\n" +"ÜË×É×ÁÌÅÎÔÎÕÀ ÚÁÐÉÓØ -n ÉÌÉ -c." + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"ðÒÅÄÕÐÒÅÖÄÅÎÉÅ: ÚÁÄÁÎÉÅ ÂÏÌÅÅ ÏÄÎÏÇÏ ÆÁÊÌÁ ÐÒÉ ÉÓÐÏÌØÚÏ×ÁÎÉÉ ÓÔÁÒÏÊ ÆÏÒÍÙ " +"ÚÁÐÉÓÉ\n" +"ËÌÀÞÅÊ (%s) ÎÅÐÅÒÅÎÏÓÉÍÏ. ÷ÍÅÓÔÏ ÓÔÁÒÏÊ ÉÓÐÏÌØÚÕÊÔÅ ÜË×É×ÁÌÅÎÔÎÕÀ ÚÁÐÉÓØ -n " +"ÉÌÉ\n" +"-c." + +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "ëÌÀÞ `%s' ÕÓÔÁÒÅÌ, ÉÓÐÏÌØÚÕÊÔÅ `%s-%c %.*s'" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "%s ÐÒÅ×ÙÛÁÅÔ ÍÁËÓÉÍÁÌØÎÙÊ ÒÁÚÍÅÒ ÆÁÊÌÁ ÎÁ ÄÁÎÎÏÊ ÓÉÓÔÅÍÅ" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "" +"%s: ÎÅ×ÅÒÎÏÅ ÍÁËÓÉÍÁÌØÎÏÅ ÞÉÓÌÏ ÎÅÉÚÍÅÎÑ×ÛÉÈÓÑ ÐÁÒÁÍÅÔÒÏ× ÍÅÖÄÕ ÏÔËÒÙÔÉÑÍÉ" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "%s: ÎÅ×ÅÒÎÏÅ ÍÁËÓÉÍÁÌØÎÏÅ ÞÉÓÌÏ ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÙÈ ÉÚÍÅÎÅÎÉÊ ÒÁÚÍÅÒÁ" + +#: src/tail.c:1534 +#, c-format +msgid "%s: invalid PID" +msgstr "%s: ÎÅ×ÅÒÎÙÊ PID" + +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: ÎÅ×ÅÒÎÏÅ ÞÉÓÌÏ ÓÅËÕÎÄ" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "×ÎÉÍÁÎÉÅ: ËÌÀÞ --retry ÐÏÌÅÚÅÎ ÔÏÌØËÏ ÐÒÉ ÓÌÅÄÏ×ÁÎÉÉ ÐÏ ÉÍÅÎÉ ÆÁÊÌÁ" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "" +"×ÎÉÍÁÎÉÅ: PID ÉÇÎÏÒÉÒÏ×ÁÎ; ËÌÀÞ --pid=PID ÐÏÌÅÚÅÎ ÔÏÌØËÏ ÐÒÉ ÓÌÅÄÏ×ÁÎÉÉ" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: --pid=PID ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ ÎÁ ÜÔÏÊ ÓÉÓÔÅÍÅ" + +#: src/tee.c:33 +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "íÁÊË ðÁÒËÅÒ, òÉÞÁÒÄ í. óÔÏÌÌÍÅÎ É äÅ×ÉÄ íÁËëÅÎÚÉ" + +#: src/tee.c:64 +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" +"ëÏÐÉÒÕÅÔ ÓÔÁÎÄÁÒÔÎÙÊ ××ÏÄ × ËÁÖÄÙÊ æáêì, Á ÔÁËÖÅ × ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ.\n" +"\n" +" -a, --append ÄÏÐÉÓÁÔØ × ÚÁÄÁÎÎÙÅ æáêìù\n" +" -i, --ignore-interrupts ÉÇÎÏÒÉÒÏ×ÁÔØ ÓÉÇÎÁÌÙ ÐÒÅÒÙ×ÁÎÉÑ\n" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "ÏÖÉÄÁÅÔÓÑ ÁÒÇÕÍÅÎÔ\n" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "ÏÖÉÄÁÅÔÓÑ ÃÅÌÏÅ ×ÙÒÁÖÅÎÉÅ %s\n" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "ÏÖÉÄÁÅÔÓÑ `)'\n" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "ÏÖÉÄÁÅÔÓÑ `)', ×ÓÔÒÅÞÅÎÏ %s\n" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "%s: ÏÖÉÄÁÅÔÓÑ ÕÎÁÒÎÙÊ ÏÐÅÒÁÔÏÒ\n" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "%s: ÏÖÉÄÁÅÔÓÑ ÂÉÎÁÒÎÙÊ ÏÐÅÒÁÔÏÒ\n" + +#: src/test.c:424 +msgid "before -lt" +msgstr "ÐÅÒÅÄ -lt" + +#: src/test.c:432 +msgid "after -lt" +msgstr "ÐÏÓÌÅ -lt" + +#: src/test.c:446 +msgid "before -le" +msgstr "ÐÅÒÅÄ -le" + +#: src/test.c:453 +msgid "after -le" +msgstr "ÐÏÓÌÅ -le" + +#: src/test.c:469 +msgid "before -gt" +msgstr "ÐÅÒÅÄ -gt" + +#: src/test.c:476 +msgid "after -gt" +msgstr "ÐÏÓÌÅ -gt" + +#: src/test.c:490 +msgid "before -ge" +msgstr "ÐÅÒÅÄ -ge" + +#: src/test.c:497 +msgid "after -ge" +msgstr "ÐÏÓÌÅ -ge" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "-nt ÎÅ ÄÏÐÕÓËÁÅÔ -l\n" + +#: src/test.c:526 +msgid "before -ne" +msgstr "ÐÅÒÅÄ -ne" + +#: src/test.c:533 +msgid "after -ne" +msgstr "ÐÏÓÌÅ -ne" + +#: src/test.c:549 +msgid "before -eq" +msgstr "ÐÅÒÅÄ -eq" + +#: src/test.c:556 +msgid "after -eq" +msgstr "ÐÏÓÌÅ -eq" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "-ef ÎÅ ÄÏÐÕÓËÁÅÔ -l\n" + +#: src/test.c:586 +msgid "-ot does not accept -l\n" +msgstr "-ot ÎÅ ÄÏÐÕÓËÁÅÔ -l\n" + +#: src/test.c:593 +msgid "unknown binary operator" +msgstr "ÎÅÉÚ×ÅÓÔÎÙÊ ÂÉÎÁÒÎÙÊ ÏÐÅÒÁÔÏÒ" + +#: src/test.c:781 +msgid "after -t" +msgstr "ÐÏÓÌÅ -t" + +#: src/test.c:979 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s ÷ùòáöåîéå\n" +" ÉÌÉ: [ ÷ùòáöåîéå ]\n" +" ÉÌÉ: %s ëìàþ\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" +"úÁ×ÅÒÛÁÅÔÓÑ Ó ×ÙÈÏÄÎÙÍ ÚÎÁÞÅÎÉÅÍ, ÏÐÒÅÄÅÌÑÅÍÙÍ ÷ùòáöåîéåí.\n" +"\n" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" +"\n" +"÷ùòáöåîéå ÍÏÖÅÔ ÂÙÔØ ÉÓÔÉÎÎÏ ÌÉÂÏ ÌÏÖÎÏ. ÷ÙÈÏÄÎÏÅ ÚÎÁÞÅÎÉÅ ÏÐÒÅÄÅÌÑÅÔÓÑ\n" +"ÓÌÅÄÕÀÝÉÍ ÏÂÒÁÚÏÍ:\n" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" +"\n" +" ( ÷ùòáöåîéå ) ÷ùòáöåîéå ÉÓÔÉÎÎÏ\n" +" ! ÷ùòáöåîéå ÷ùòáöåîéå ÌÏÖÎÏ\n" +" ÷ùòáöåîéå1 -a ÷ùòáöåîéå2 ÷ùòáöåîéå1 É ÷ùòáöåîéå2 ÏÂÁ ÉÓÔÉÎÎÙ\n" +" ÷ùòáöåîéå1 -o ÷ùòáöåîéå2 ÷ùòáöåîéå1 ÉÌÉ ÷ùòáöåîéå2 ÉÓÔÉÎÎÏ\n" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" +"\n" +" [-n] óôòïëá ÄÌÉÎÁ óôòïëé ÏÔÌÉÞÎÁ ÏÔ ÎÕÌÑ\n" +" -z óôòïëá ÄÌÉÎÁ óôòïëé ÒÁ×ÎÁ ÎÕÌÀ\n" +" óôòïëá1 = óôòïëá2 ÓÔÒÏËÉ ÒÁ×ÎÙ\n" +" óôòïëá1 != óôòïëá2 ÓÔÒÏËÉ ÎÅ ÒÁ×ÎÙ\n" + +#: src/test.c:1009 +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" +"\n" +" ãåìïå1 -eq ãåìïå2 ãåìïå1 ÒÁ×ÎÏ ãåìïíõ2\n" +" ãåìïå1 -ge ãåìïå2 ãåìïå1 ÂÏÌØÛÅ ÉÌÉ ÒÁ×ÎÏ ãåìïíõ2\n" +" ãåìïå1 -gt ãåìïå2 ãåìïå1 ÂÏÌØÛÅ ãåìïçï2\n" +" ãåìïå1 -le ãåìïå2 ãåìïå1 ÍÅÎØÛÅ ÉÌÉ ÒÁ×ÎÏ ãåìïíõ2\n" +" ãåìïå1 -lt ãåìïå2 ãåìïå1 ÍÅÎØÛÅ ãåìïçï2\n" +" ãåìïå1 -ne ãåìïå2 ãåìïå1 ÏÔÌÉÞÎÏ ÏÔ ãåìïçï2\n" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" +"\n" +" æáêì1 -ef æáêì2 æáêì1 É æáêì2 ÉÍÅÀÔ ÏÄÉÎÁËÏ×ÙÅ ÕÓÔÒÏÊÓÔ×Á É ÎÏÍÅÒÁ " +"inode\n" +" æáêì1 -nt æáêì2 æáêì1 ÉÚÍÅÎÑÌÓÑ ÐÏÚÖÅ, ÞÅÍ æáêì2\n" +" æáêì1 -ot æáêì2 æáêì1 ÂÙÌ ÓÏÚÄÁÎ ÐÏÚÖÅ, ÞÅÍ æáêì2\n" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" +"\n" +" -b æáêì æáêì ÓÕÝÅÓÔ×ÕÅÔ É Ñ×ÌÑÅÔÓÑ ÓÐÅÃÉÁÌØÎÙÍ Ó ÐÏÂÌÏÞÎÙÍ ÄÏÓÔÕÐÏÍ\n" +" -c æáêì æáêì ÓÕÝÅÓÔ×ÕÅÔ É Ñ×ÌÑÅÔÓÑ ÓÐÅÃÉÁÌØÎÙÍ Ó ÐÏÓÉÍ×ÏÌØÎÙÍ " +"ÄÏÓÔÕÐÏÍ\n" +" -d æáêì æáêì ÓÕÝÅÓÔ×ÕÅÔ É Ñ×ÌÑÅÔÓÑ ËÁÔÁÌÏÇÏÍ\n" +" -e æáêì æáêì ÓÕÝÅÓÔ×ÕÅÔ\n" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" +" -f æáêì æáêì ÓÕÝÅÓÔ×ÕÅÔ É Ñ×ÌÑÅÔÓÑ ÏÂÙÞÎÙÍ ÆÁÊÌÏÍ\n" +" -g æáêì æáêì ÓÕÝÅÓÔ×ÕÅÔ É ÉÍÅÅÔ ÆÌÁÇ set-group-ID\n" +" -h FILE æáêì ÓÕÝÅÓÔ×ÕÅÔ É Ñ×ÌÑÅÔÓÑ ÓÉÍ×ÏÌØÎÏÊ ÓÓÙÌËÏÊ (ÜË×É×ÁÌÅÎÔ -L)\n" +" -G æáêì æáêì ÓÕÝÅÓÔ×ÕÅÔ É ÐÒÉÎÁÄÌÅÖÉÔ ÔÅËÕÝÅÊ ÜÆÆÅËÔÉ×ÎÏÊ ÇÒÕÐÐÅ\n" +" -k æáêì æáêì ÓÕÝÅÓÔ×ÕÅÔ É ÉÍÅÅÔ ÆÌÁÇ sticky\n" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" +" -L æáêì æáêì ÓÕÝÅÓÔ×ÕÅÔ É Ñ×ÌÑÅÔÓÑ ÓÉÍ×ÏÌØÎÏÊ ÓÓÙÌËÏÊ\n" +" -O æáêì æáêì ÓÕÝÅÓÔ×ÕÅÔ É ÐÒÉÎÁÄÌÅÖÉÔ ÔÅËÕÝÅÍÕ ÜÆÆÅËÔÉ×ÎÏÍÕ " +"ÐÏÌØÚÏ×ÁÔÅÌÀ\n" +" -p æáêì æáêì ÓÕÝÅÓÔ×ÕÅÔ É Ñ×ÌÑÅÔÓÑ ÉÍÅÎÏ×ÁÎÙÍ ËÁÎÁÌÏÍ\n" +" -r æáêì æáêì ÓÕÝÅÓÔ×ÕÅÔ ÄÏÓÔÕÐÅÎ ÄÌÑ ÞÔÅÎÉÑ\n" +" -s æáêì æáêì ÓÕÝÅÓÔ×ÕÅÔ É ÉÍÅÅÔ ÎÅÎÕÌÅ×ÏÊ ÒÁÚÍÅÒ\n" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" +" -S æáêì æáêì ÓÕÝÅÓÔ×ÕÅÔ É Ñ×ÌÑÅÔÓÑ ÓÏËÅÔÏÍ\n" +" -t [æä] ÆÁÊÌ-ÄÅÓËÒÉÐÔÏÒ æä (ÐÏ ÕÍÏÌÞÁÎÉÀ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ) ÏÔËÒÙÔ\n" +" ÎÁ ÔÅÒÍÉÎÁÌÅ\n" +" -u æáêì æáêì ÓÕÝÅÓÔ×ÕÅÔ É ÉÍÅÅÔ ÆÌÁÇ set-user-ID\n" +" -w æáêì æáêì ÓÕÝÅÓÔ×ÕÅÔ É ÄÏÓÔÕÐÅÎ ÄÌÑ ÚÁÐÉÓÉ\n" +" -x æáêì æáêì ÓÕÝÅÓÔ×ÕÅÔ É Ñ×ÌÑÅÔÓÑ ÉÓÐÏÌÎÑÅÍÙÍ\n" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" +"\n" +"ðÏÍÎÉÔÅ, ÞÔÏ ×Ù ÄÏÌÖÎÙ ÏÔÍÅÎÉÔØ ÓÐÅÃÉÁÌØÎÏÅ ÚÎÁÞÅÎÉÅ ÓËÏÂÏË ÄÌÑ ËÏÍÁÎÄÎÏÇÏ\n" +"ÉÎÔÅÒÐÒÅÔÁÔÏÒÁ (ÎÁÐÒÉÍÅÒ, Ó ÐÏÍÏÝØÀ `\\'). ãåìïå ÍÏÖÅÔ ÔÁËÖÅ ÂÙÔØ ÚÁÄÁÎÏ " +"ËÁË\n" +"\"-l óôòïëá\", ÐÒÉ ÜÔÏÍ ÏÎÏ ÐÒÉÎÉÍÁÅÔ ÚÎÁÞÅÎÉÅ ÄÌÉÎÙ óôòïëé.\n" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "FIXME: ksb and mjb" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "ÐÒÏÐÕÝÅÎÁ `]'\n" + +#: src/test.c:1125 +msgid "too many arguments\n" +msgstr "ÓÌÉÛËÏÍ ÍÎÏÇÏ ÁÒÇÕÍÅÎÔÏ×\n" + +#: src/touch.c:39 +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "ðÏÌ òÕÂÉÎ, áÒÎÏÌØÄ òÏÂÂÉÎÓ, äÖÉÍ ëÉÎÇÄÏÎ, äÅ×ÉÄ íÁËëÅÎÚÉ É òÜÎÄÉ óÍÉÔ" + +#: src/touch.c:164 src/touch.c:179 +#, c-format +msgid "creating %s" +msgstr "ÓÏÚÄÁÎÉÅ %s" + +#: src/touch.c:222 +#, c-format +msgid "cannot touch %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ×ÙÐÏÌÎÉÔØ touch ÄÌÑ %s" + +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "ÕÓÔÁÎÏ×ËÁ ×ÒÅÍÅÎÎÙÈ ÏÔÍÅÔÏË %s" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" +"ïÂÎÏ×ÉÔØ ×ÒÅÍÅÎÁ ÄÏÓÔÕÐÁ É ÍÏÄÉÆÉËÁÃÉÉ ËÁÖÄÏÇÏ ÆÁÊÌÁ ÄÏ ÔÕËÅÝÅÇÏ ×ÒÅÍÅÎÉ\n" +"\n" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" +" -a ÉÚÍÅÎÑÔØ ÔÏÌØËÏ ×ÒÅÍÑ ÄÏÓÔÕÐÁ\n" +" -c, --no-create ÎÅ ÓÏÚÄÁ×ÁÔØ ÆÁÊÌÏ×\n" +" -d, --date=STRING ÐÒÏÁÎÁÌÉÚÉÒÏ×ÁÔØ STRING É ÉÓÐÏÌØÚÏ×ÁÔØ ×ÍÅÓÔÏ\n" +" ÔÅËÕÝÅÇÏ ×ÒÅÍÅÎÉ\n" +" -f (ÉÇÎÏÒÉÒÕÅÔÓÑ)\n" +" -m ÉÚÍÅÎÑÔØ ÔÏÌØËÏ ×ÒÅÍÑ ÉÚÍÅÎÅÎÉÑ\n" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" +" -r, --reference=FILE ÉÓÐÏÌØÚÏ×ÁÔØ ×ÒÅÍÑ FILE'Á ×ÍÅÓÔÏ ÔÅËÕÝÅÇÏ\n" +" -t STAMP ÉÓÐÏÌØÚÏ×ÁÔØ [[CC]YY]MMDDhhmm[.ss] ×ÍÅÓÔÏ\n" +" ÔÅËÕÝÅÇÏ ×ÒÅÍÅÎÉ\n" +" --time=WORD ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ×ÒÅÍÑ ÏÐÒÅÄÅÌÑÅÍÏÅ WORD\n" +" ×ÒÅÍÑ ÄÏÓÔÕÐ -a, atime -a, mtime -m, ÉÚÍÅÎÅÎÉÑ -m\n" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" +"\n" +"úÁÍÅÔØÔÅ, ÞÔÏ ËÌÀÞÉ -d É -t ×ÏÓÐÒÉÎÉÍÁÀÔ ÒÁÚÎÙÅ ÆÏÒÍÁÔÙ ÄÁÔÙ É ×ÒÅÍÅÎÉ.\n" + +#: src/touch.c:311 src/touch.c:331 +#, c-format +msgid "invalid date format %s" +msgstr "ÎÅ×ÅÒÎÙÊ ÆÏÒÍÁÔ ÄÁÔÙ %s" + +#: src/touch.c:355 +msgid "cannot specify times from more than one source" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ×ÒÅÍÑ ÉÚ ÎÅÓËÏÌØËÉÈ ÉÓÔÏÞÎÉËÏ×" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "" +"×ÎÉÍÁÎÉÅ: `touch %s' ÕÓÔÁÒÅÌ; ÉÓÐÏÌØÚÕÊÔÅ `touch -t %04d%02d%02d%02d%02d.%" +"02d'" + +#: src/touch.c:399 +msgid "file arguments missing" +msgstr "ÐÒÏÐÕÝÅÎÙ ÁÒÇÕÍÅÎÔÙ, ÚÁÄÁÀÝÉÅ ÆÁÊÌÙ" + +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... îáâïò1 [îáâïò2]\n" + +#: src/tr.c:331 +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" +"ðÒÅÏÂÒÁÚÕÅÔ, ÕÐÌÏÔÎÑÅÔ É/ÉÌÉ ÕÄÁÌÑÅÔ ÚÎÁËÉ ÓÏ ÓÔÁÎÄÁÒÔÎÏÇÏ ××ÏÄÁ É\n" +"ÐÅÞÁÔÁÅÔ ÎÁ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ.\n" +"\n" +" -c, --complement ÓÎÁÞÁÌÁ ÐÏÌÕÞÉÔØ ÄÏÐÏÌÎÅÎÉÅ ôáâìéãù1\n" +" -d, --delete ÕÄÁÌÑÔØ ÚÎÁËÉ ÉÚ ôáâìéãù1\n" +" -s, --squeeze-repeats ÚÁÍÅÝÁÔØ ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏÓÔÉ ÐÏ×ÔÏÒÑÀÝÉÈÓÑ ÚÎÁËÏ× " +"ÉÚ \n" +" ÐÅÒÅÞÉÓÌÅÎÎÙÈ × ôáâìéãå1 ÎÁ ÅÄÉÎÓÔ×ÅÎÎÙÊ ÔÁËÏÊ " +"ÚÎÁË\n" +" -t, --truncate-set1 ÓÎÁÞÁÌÁ ÓÏËÒÁÔÉÔØ ôáâìéãõ1 ÄÏ ÒÁÚÍÅÒÁ ôáâìéãù2\n" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" +"\n" +"ôáâìéãÙ ÚÁÄÁÀÔÓÑ ËÁË ÚÎÁËÏ×ÙÅ ÓÔÒÏËÉ. ÷Ï ÍÎÏÇÉÈ ÓÌÕÞÁÑÈ ÚÎÁËÉ ÐÒÅÄÓÔÁ×ÌÑÀÔ\n" +"ÓÁÍÉ ÓÅÂÑ. ÷ÏÓÐÒÉÎÉÍÁÀÔÓÑ ÓÌÅÄÕÀÝÉÅ ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏÓÔÉ:\n" +"\n" +" \\îîî ÚÎÁË Ó ×ÏÓØÍÅÒÉÞÎÙÍ ËÏÄÏÍ îîî (ÏÔ 1 ÄÏ 3 ÃÉÆÒ)\n" +" \\\\ ÏÂÒÁÔÎÁÑ ËÏÓÁÑ ÞÅÒÔÁ\n" +" \\a Ú×ÕËÏ×ÏÊ ÓÉÇÎÁÌ\n" +" \\b ÚÁÂÏÊ\n" +" \\f ÐÅÒÅ×ÏÄ ÓÔÒÁÎÉÃÙ\n" +" \\n ÎÏ×ÁÑ ÓÔÒÏËÁ\n" +" \\r ×ÏÚ×ÒÁÔ ËÁÒÅÔËÉ\n" +" \\t ÇÏÒÉÚÏÎÔÁÌØÎÁÑ ÔÁÂÕÌÑÃÉÑ\n" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" +" \\v ×ÅÒÔÉËÁÌØÎÁÑ ÔÁÂÕÌÑÃÉÑ\n" +" úîáë1-úîáë2 ×ÓÅ ÚÎÁËÉ ÏÔ úîáë1 ÄÏ úîáë2 × ÐÏÒÑÄËÅ ×ÏÚÒÁÓÔÁÎÉÑ\n" +" [úîáë*] úîáë ÚÁÐÏÌÎÑÅÔ ôáâìéãõ2 ÄÏ ÄÌÉÎÙ ôáâìéãù1\n" +" [úîáë*þéóìï] ÚÁÄÁÎÎÏÅ þéóìï ÏÄÉÎÁËÏ×ÙÈ úîáëï÷; þéóìï ×ÏÓØÍÅÒÉÞÎÏÅ, " +"ÅÓÌÉ\n" +" ÎÁÞÉÎÁÅÔÓÑ Ó 0\n" +" [:alnum:] ×ÓÅ ÂÕË×Ù É ÃÉÆÒÙ\n" +" [:alpha:] ×ÓÅ ÂÕË×Ù\n" +" [:blank:] ×ÓÅ ÇÏÒÉÚÏÎÔÁÌØÎÙÅ ÐÒÏÂÅÌØÎÙÅ ÚÎÁËÉ\n" +" [:cntrl:] ×ÓÅ ÕÐÒÁ×ÌÑÀÝÉÅ ÚÎÁËÉ\n" +" [:digit:] ×ÓÅ ÃÉÆÒÙ\n" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" +" [:graph:] ×ÓÅ ÐÅÞÁÔÎÙÅ ÚÎÁËÉ, ÉÓËÌÀÞÁÑ ÐÒÏÂÅÌ\n" +" [:lower:] ×ÓÅ ÓÔÒÏÞÎÙÅ ÂÕË×Ù\n" +" [:print:] ×ÓÅ ÐÅÞÁÔÎÙÅ ÚÎÁËÉ, ×ËÌÀÞÁÑ ÐÒÏÂÅÌ\n" +" [:punct:] ×ÓÅ ÚÎÁËÉ ÐÒÅÐÉÎÁÎÉÑ\n" +" [:space:] ×ÓÅ ×ÅÒÔÉËÁÌØÎÙÅ ÉÌÉ ÇÏÒÉÚÏÎÔÁÌØÎÙÅ ÐÒÏÂÅÌØÎÙÅ ÚÎÁËÉ\n" +" [:upper:] ×ÓÅ ÚÁÇÌÁ×ÎÙÅ ÂÕË×Ù\n" +" [:xdigit:] ×ÓÅ ÛÅÓÔÎÁÄÃÁÔÅÒÉÞÎÙÅ ÃÉÆÒÙ\n" +" [=úîáë=] ×ÓÅ ÚÎÁËÉ, ÜË×É×ÁÌÅÎÔÎÙÅ úîáëõ\n" + +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" +"\n" +"åÓÌÉ ÚÁÄÁÎÙ ÏÂÅ ôáâìéãÙ, É ÎÅ ÕËÁÚÁÎ -d, ÐÒÏÉÚ×ÏÄÉÔÓÑ ÐÒÅÏÂÒÁÚÏ×ÁÎÉÅ. ëÌÀÞ -" +"t\n" +"ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎ ÔÏÌØËÏ ÐÒÉ ÐÒÅÏÂÒÁÚÏ×ÁÎÉÉ. ôáâìéãá2 ÒÁÓÛÉÒÑÅÔÓÑ ÄÏ\n" +"ÒÁÚÍÅÒÁ ôáâìéãù1 ÐÕÔÅÍ ÐÏ×ÔÏÒÅÎÉÑ ÐÏÓÌÅÄÎÅÇÏ ÚÎÁËÁ. " + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" +"éÚÂÙÔÏÞÎÙÅ ÚÎÁËÉ\n" +"ôáâìéãù2 ÉÇÎÏÒÉÒÕÀÔÓÑ. ôÏÌØËÏ [:lower:] É [:upper:] ÇÁÒÁÎÔÉÒÏ×ÁÎÏ " +"ÓÏÒÔÉÒÏ×ÁÎÙ ×\n" +"ÐÏÒÑÄËÅ ×ÏÚÒÁÓÔÁÎÉÑ, ÉÈ ÍÏÖÎÏ ÉÓÐÏÌØÚÏ×ÁÔØ ÔÏÌØËÏ ÐÁÒÎÏ, ÄÌÑ ÏÂÏÚÎÁÞÅÎÉÑ " +"ÓÍÅÎÙ\n" +"ÒÅÇÉÓÔÒÁ. " + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" +"åÓÌÉ ÎÅ ÚÁÐÒÏÛÅÎÏ ÎÉ ÐÒÅÏÂÒÁÚÏ×ÁÎÉÅ, ÎÉ ÕÄÁÌÅÎÉÅ, ËÌÀÞ -s ÉÓÐÏÌØÚÕÅÔ\n" +"ôáâìéãõ1, ÉÎÁÞÅ ÐÒÉ ÕÐÌÏÔÎÅÎÉÉ ÉÓÐÏÌØÚÕÅÔÓÑ ôáâìéãá2. õÐÌÏÔÎÅÎÉÅ " +"ÐÒÏÉÚ×ÏÄÉÔÓÑ\n" +"ÐÏÓÌÅ ÐÒÅÏÂÒÁÚÏ×ÁÎÉÑ ÉÌÉ ÕÄÁÌÅÎÉÑ.\n" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" +"ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: ÎÅÏÄÎÏÚÎÁÞÎÁÑ ×ÏÓØÍÅÒÉÞÎÁÑ ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏÓÔØ \\%c%c%c " +"ÔÒÁËÔÕÅÔÓÑ\n" +"ËÁË Ä×ÕÈÂÁÊÔÎÁÑ ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏÓÔØ \\0%c%c, `%c'" + +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "ÏÂÒÁÔÎÁÑ ËÏÓÁÑ ÞÅÒÔÁ × ËÏÎÃÅ ÓÔÒÏËÉ" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "ÎÅ×ÅÒÎÁÑ ÕÐÒÁ×ÌÑÀÝÁÑ ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏÓÔØ `\\%c'" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "ÎÅ×ÅÒÎÙÊ ÐÏÒÑÄÏË ÇÒÁÎÉà ÄÉÁÐÁÚÏÎÁ `%s-%s'" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "ÎÅ×ÅÒÎÏ ÚÁÄÁÎÏ ÞÉÓÌÏ ÐÏ×ÔÏÒÏ× `%s' × ËÏÎÓÔÒÕËÃÉÉ [c*n]" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "ÐÒÏÐÕÝÅÎÏ ÉÍÑ ËÌÁÓÓÁ ÚÎÁËÏ× `[::]'" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "ÐÒÏÐÕÝÅÎ ÚÎÁË ËÌÁÓÓÁ ÜË×É×ÁÌÅÎÔÎÏÓÔÉ `[==]'" + +#: src/tr.c:1025 +#, c-format +msgid "invalid character class `%s'" +msgstr "ÎÅ×ÅÒÎÙÊ ËÌÁÓÓ ÚÎÁËÏ× `%s'" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "" +"%s: ÎÅÏÂÈÏÄÉÍÏ ÚÁÄÁÔØ ÏÄÉÎ ÓÉÍ×ÏÌ, ÏÐÒÅÄÅÌÑÀÝÉÊ ËÌÁÓÓ ÜË×É×ÁÌÅÎÔÎÙÈ ÅÍÕ" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "ËÏÎÓÔÒÕËÃÉÑ [c*] ÎÅ ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ × ôáâìéãå1" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "× ôáâìéãå2 ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÏÄÎÁ ËÏÎÓÔÒÕËÃÉÑ [c*]" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "" +"×ÙÒÁÖÅÎÉÅ [=c=] ÎÅ ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÏ × ôáâìéãå2 ÐÒÉ ÐÒÅÏÂÒÁÚÏ×ÁÎÉÉ" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "ÅÓÌÉ ÞÁÓÔØ ÔÁÂÌÉÃÙ1 ÎÅ ÏÔÂÒÁÓÙ×ÁÅÔÓÑ, ÔÁÂÌÉÃÁ2 ÄÏÌÖÎÁ ÂÙÔØ ÎÅÐÕÓÔÏÊ" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" +"ÐÒÉ ÐÒÅÏÂÒÁÚÏ×ÁÎÉÉ Ó ÄÏÐÏÌÎÅÎÉÅÍ ËÌÁÓÓÏ× ÓÉÍ×ÏÌÏ×, ôáâìéãá2 ÄÏÌÖÎÁ\n" +"ÓÔÁ×ÉÔØ × ÓÏÏÔ×ÅÔÓÔ×ÉÅ ×ÓÅÍ ÓÉÍ×ÏÌÁÍ ÄÏÐÏÌÎÅÎÉÑ ÒÏ×ÎÏ ÏÄÉÎ ÓÉÍ×ÏÌ" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" +"ÐÒÉ ÐÒÅÏÂÒÁÚÏ×ÁÎÉÉ, × ôáâìéãå2 ÍÏÇÕÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÙ ÔÏÌØËÏ\n" +"ËÌÁÓÓÙ `upper' É `lower'" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "" +"ËÏÎÓÔÒÕËÃÉÑ [c*] ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ × ôáâìéãå2 ÔÏÌØËÏ ÐÒÉ ÐÒÅÏÂÒÁÚÏ×ÁÎÉÉ" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "ÐÒÉ ÐÒÅÏÂÒÁÚÏ×ÁÎÉÉ ÎÅÏÂÈÏÄÉÍÏ ÚÁÄÁÔØ Ä×Å ÔÁÂÌÉÃÙ" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "ÐÒÉ ÕÄÁÌÅÎÉÉ É ÕÐÌÏÔÎÅÎÉÉ ÐÏ×ÔÏÒÏ× ÎÅÏÂÈÏÄÉÍÏ ÚÁÄÁÔØ Ä×Å ÔÁÂÌÉÃÙ" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" +"ÐÒÉ ÕÄÁÌÅÎÉÉ ÂÅÚ ÕÐÌÏÔÎÅÎÉÑ ÐÏ×ÔÏÒÏ× ÍÏÖÎÏ ÚÁÄÁÔØ Ä×Å ÔÏÌØËÏ ÏÄÎÕ ÔÁÂÌÉÃÕ" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "ÐÒÉ ÕÐÌÏÔÎÅÎÉÉ ÐÏ×ÔÏÒÏ× ÎÅÏÂÈÏÄÉÍÏ ÚÁÄÁÔØ ÈÏÔÑ ÂÙ ÏÄÎÕ ÔÁÂÌÉÃÕ" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "ÎÅÐÁÒÎÙÅ ËÏÎÓÔÒÕËÃÉÉ [:upper:] É/ÉÌÉ [:lower:]" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" +"ÎÅÔÏÖÄÅÓÔ×ÅÎÎÏÅ ÓÏÏÔ×ÅÔÓÔ×ÉÅ: ÐÒÉ ÐÒÅÏÂÒÁÚÏ×ÁÎÉÉ ËÁÖÄÁÑ ËÏÎÓÔÒÕËÃÉÑ [:" +"lower:]\n" +"ÉÌÉ [:upper:] × ÔÁÂÌÉÃÅ1 ÄÏÌÖÎÁ ÂÙÔØ ×ÙÒÏ×ÎÅÎÁ Ó ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÅÊ " +"ËÏÎÓÔÒÕËÃÉÅÊ\n" +"[:upper:] ÉÌÉ [:lower:] × ÔÁÂÌÉÃÅ2" + +#: src/true.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ÉÇÎÏÒÉÒÕÅÍÙÅ ÁÒÇÕÍÅÎÔÙ ËÏÍÁÎÄÎÏÊ ÓÔÒÏËÉ]\n" +" ÉÌÉ: %s ëìàþ\n" +"÷ÙÈÏÄÉÔ ÓÏ ÓÔÁÔÕÓÏÍ ÚÁ×ÅÒÛÅÎÉÑ, ÏÂÏÚÎÁÞÁÀÝÉÍ ÕÓÐÅÈ.\n" +"\n" +"éÍÅÎÁ ÜÔÉÈ ËÌÀÞÅÊ ÎÅÌØÚÑ ÐÉÓÁÔØ ÓÏËÒÁÝÅÎÎÏ.\n" +"\n" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ] [æáêì]\n" +"ðÅÞÁÔÁÅÔ ÐÏÌÎÏÓÔØÀ ÓÏÒÔÉÒÏ×ÁÎÎÙÊ ÓÐÉÓÏË, ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÉÊ ÞÁÓÔÉÞÎÏÊ " +"ÓÏÒÔÉÒÏ×ËÅ \n" +"× ÚÁÄÁÎÎÏÍ æáêìå. åÓÌÉ æáêì ÎÅ ÚÁÄÁÎ ÉÌÉ ÚÁÄÁÎ ËÁË -, ÞÉÔÁÅÔ ÓÔÁÎÄÁÒÔÎÙÊ " +"××ÏÄ.\n" +"\n" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "%s: ÎÁ ×ÈÏÄÅ ÓÏÄÅÒÖÉÔÓÑ ÃÉËÌ:" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "ÍÏÖÎÏ ÚÁÄÁÔØ ÔÏÌØËÏ ÏÄÉÎ ÁÒÇÕÍÅÎÔ" + +#: src/tty.c:63 +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" +"ðÅÞÁÔÁÅÔ ÉÍÑ ÆÁÊÌÁ ÄÌÑ ÔÅÒÍÉÎÁÌÁ, ÐÒÉÓÏÅÄÉÎÅÎÎÏÇÏ Ë ÓÔÁÎÄÁÒÔÎÏÍÕ ××ÏÄÕ.\n" +"\n" +" -s, --silent, --quiet ÎÅ ÐÅÞÁÔÁÔØ, ÔÏÌØËÏ ×ÅÒÎÕÔØ ×ÙÈÏÄÎÏÅ ÚÎÁÞÅÎÉÅ\n" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "ÎÅ ÔÅÌÅÔÁÊÐ" + +#: src/uname.c:111 +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" +"ðÅÞÁÔÁÅÔ ÏÐÒÅÄÅÌÅÎÎÙÅ Ó×ÅÄÅÎÉÑ Ï ÓÉÓÔÅÍÅ. åÓÌÉ ëìàþ ÎÅ ÚÁÄÁÎ,\n" +"ÐÏÄÒÁÚÕÍÅ×ÁÅÔÓÑ -s.\n" +"\n" +" -a, --all ÎÁÐÅÞÁÔÁÔØ ×ÓÀ ÉÎÆÏÒÍÁÃÉÀ, × ÓÌÅÄÕÀÝÅÍ ÐÏÒÑÄËÅ:\n" +" -s, --kernel-name ÎÁÐÅÞÁÔÁÔØ ÉÍÑ ÑÄÒÁ\n" +" -n, --nodename ÎÁÐÅÞÁÔÁÔØ ÉÍÑ ÍÁÛÉÎÙ × ÓÅÔÉ\n" +" -r, --release ÎÁÐÅÞÁÔÁÔØ ÎÏÍÅÒ ×ÙÐÕÓËÁ ÏÐÅÒÁÃÉÏÎÎÏÊ ÓÉÓÔÅÍÙ\n" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" +" -v, --kernel-version ÎÁÐÅÞÁÔÁÔØ ×ÅÒÓÉÀ ÑÄÒÁ\n" +" -m, --machine ÎÁÐÅÞÁÔÁÔØ ÔÉÐ ÍÁÛÉÎÙ\n" +" -p, --processor ÎÁÐÅÞÁÔÁÔØ ÔÉÐ ÐÒÏÃÅÓÓÏÒÁ\n" +" -i, --hardware-platform ÎÁÐÅÞÁÔÁÔØ ÔÉÐ ÁÐÐÁÒÁÔÎÏÊ ÐÌÁÔÆÏÒÍÙ\n" +" -o, --operating-system ÎÁÐÅÞÁÔÁÔØ ÉÍÑ ÏÐÅÒÁÃÉÏÎÎÏÊ ÓÉÓÔÅÍÙ\n" + +#: src/uname.c:226 +msgid "cannot get system name" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÕÚÎÁÔØ ÎÁÚ×ÁÎÉÅ ÓÉÓÔÅÍÙ" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"ðÒÅÏÂÒÁÚÕÅÔ ÐÒÏÂÅÌÙ × æáêìáè × ÓÉÍ×ÏÌÙ ÔÁÂÕÌÑÃÉÉ É ÐÅÞÁÔÁÅÔ ÎÁ ÓÔÁÎÄÁÒÔÎÙÊ\n" +"×Ù×ÏÄ. åÓÌÉ æáêì ÎÅ ÚÁÄÁÎ ÉÌÉ ÚÁÄÁÎ ËÁË -, ÞÉÔÁÅÔ ÓÔÁÎÄÁÒÔÎÙÊ ××ÏÄ.\n" +"\n" + +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" +" -a, --all ÐÒÅÏÂÒÁÚÏ×Ù×ÁÔØ ×ÓÅ ÐÒÏÂÅÌØÎÙÅ ÚÎÁËÉ, Á ÎÅ ÔÏÌØËÏ " +"ÎÁÞÁÌØÎÙÅ\n" +" --first-only ÐÒÅÏÂÒÁÚÏ×Ù×ÁÔØ ÔÏÌØËÏ ÎÁÞÁÌØÎÙÅ ÐÒÏÂÅÌØÎÙÅ ÚÎÁËÉ\n" +" (ÐÅÒÅËÒÙ×ÁÅÔ -a)\n" +" -t, --tabs=þéóìï ÉÓÐÏÌØÚÏ×ÁÔØ ÔÁÂÕÌÑÃÉÀ ÚÁÄÁÎÎÏÊ ÛÉÒÉÎÙ (×ËÌÀÞÁÅÔ -a)\n" +" -t, --tabs=óðéóïë ÉÓÐÏÌØÚÏ×ÁÔØ ÚÁÄÁÎÎÙÊ óðéóïë (ÒÁÚÄÅÌÅÎÎÙÊ ÚÁÐÑÔÙÍÉ) " +"ÐÏÚÉÃÉÊ\n" +" ÔÁÂÕÌÑÃÉÉ (×ËÌÀÞÁÅÔ -a)\n" + +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "ëÌÀÞ `-LIST' ÕÓÔÁÒÅÌ, ÉÓÐÏÌØÚÕÊÔÅ `--first-only -t LIST'" + +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... [÷èïä [÷ùèïä]]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" +"õÄÁÌÑÅÔ ×ÓÅ ËÒÏÍÅ ÏÄÎÏÊ ÐÏ×ÔÏÒÑÀÝÉÅÓÑ ÓÔÒÏËÉ ÷èïäá (ÉÌÉ ÓÔÁÎÄÁÒÔÎÏÇÏ ××ÏÄÁ) " +"É\n" +"ÐÅÞÁÔÁÅÔ ÎÁ ÷ùèïä (ÉÌÉ ÎÁ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ).\n" +"\n" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" +" -c, --count ×Ù×ÏÄÉÔØ ÞÉÓÌÏ ÐÏ×ÔÏÒÏ× × ÎÁÞÁÌÅ ËÁÖÄÏÊ ÓÔÒÏËÉ\n" +" -d, --repeated ×Ù×ÏÄÉÔØ ÔÏÌØËÏ ÐÏ×ÔÏÒÑÀÝÉÅÓÑ ÓÔÒÏËÉ\n" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" +" -D, --all-repeated[=delimit-method] ÎÁÐÅÞÁÔÁÔØ ×ÓÅ ÐÏ×ÔÏÒÑÀÝÉÅÓÑ ÓÔÒÏËÉ\n" +" delimit-method={none(ÐÏ ÕÍÏÌÞÁÎÉÀ),prepend," +"separate)}\n" +" òÁÚÄÅÌÅÎÉÅ ÄÅÌÁÅÔÓÑ ÐÏ ÐÕÓÔÙÍ ÓÔÒÏËÁÍ.\n" +" -f, --skip-fields=î ÎÅ ÓÒÁ×ÎÉ×ÁÔØ ÐÅÒ×ÙÅ î ÐÏÌÅÊ\n" +" -i, --ignore-case ÉÇÎÏÒÉÒÏ×ÁÔØ ÐÒÉ ÓÒÁ×ÎÅÎÉÉ ÒÅÇÉÓÔÒ\n" +" -s, --skip-chars=î ÎÅ ÓÒÁ×ÎÉ×ÁÔØ ÐÅÒ×ÙÅ î ÚÎÁËÏ×\n" +" -u, --unique ×Ù×ÏÄÉÔØ ÔÏÌØËÏ ÎÅÐÏ×ÔÏÒÑÀÝÉÅÓÑ ÓÔÒÏËÉ\n" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr " -w, --check-chars=î ÓÒÁ×ÎÉ×ÁÔØ ÐÅÒ×ÙÅ î ÚÎÁËÏ× ÓÔÒÏË\n" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" +"\n" +"ðÏÌÅÍ ÓÞÉÔÁÅÔÓÑ ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏÓÔØ ÐÒÏÂÅÌØÎÙÈ ÚÎÁËÏ×, ÚÁ ËÏÔÏÒÏÊ\n" +"ÓÌÅÄÕÀÔ ÎÅÐÒÏÂÅÌØÎÙÅ ÚÎÁËÉ. óÎÁÞÁÌÁ ÐÒÏÐÕÓËÁÀÔÓÑ ÐÏÌÑ, ÐÏÔÏÍ ÚÎÁËÉ.\n" + +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "ÏÛÉÂËÁ ÞÔÅÎÉÑ %s" + +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "ÏÛÉÂËÁ ÚÁÐÉÓÉ %s" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "ÌÉÛÎÉÊ ÏÐÅÒÁÎÄ `%s'" + +#: src/uniq.c:473 src/uniq.c:498 +msgid "invalid number of fields to skip" +msgstr "ÎÅ×ÅÒÎÏÅ ÞÉÓÌÏ ÐÒÏÐÕÓËÁÅÍÙÈ ÐÏÌÅÊ" + +#: src/uniq.c:507 +msgid "invalid number of bytes to skip" +msgstr "ÎÅ×ÅÒÎÏÅ ÞÉÓÌÏ ÐÒÏÐÕÓËÁÅÍÙÈ ÂÁÊÔ" + +#: src/uniq.c:516 +msgid "invalid number of bytes to compare" +msgstr "ÎÅ×ÅÒÎÏÅ ÞÉÓÌÏ ÓÒÁ×ÎÉ×ÁÅÍÙÈ ÂÁÊÔ" + +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "ëÌÀÞ `-%lu' ÕÓÔÁÒÅÌ, ÉÓÐÏÌØÚÕÊÔÅ `-f %lu'" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "ÐÅÞÁÔØ ×ÓÅÈ ÐÏ×ÔÏÒÑÀÝÉÈÓÑ ÓÔÏË É ÞÉÓÌÁ ÐÏ×ÔÏÒÅÎÉÊ ÂÅÓÓÍÙÓÌÅÎÎÁ" + +#: src/unlink.c:51 +#, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s æáêì\n" +" ÉÌÉ: %s ëìàþ\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" +"÷ÙÚÙ×ÁÅÔ ÆÕÎËÃÉÀ unlink ÄÌÑ ÕÄÁÌÅÎÉÑ ÕËÁÚÁÎÎÏÇÏ æáêìá.\n" +"\n" + +#: src/unlink.c:99 +#, c-format +msgid "cannot unlink %s" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ ÓÓÙÌËÕ %s" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÕÚÎÁÔØ ×ÒÅÍÑ ÐÅÒ×ÏÎÁÞÁÌØÎÏÊ ÚÁÇÒÕÚËÉ" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr " %2d:%02d%s ×ËÌÀÞÅÎ " + +#: src/uptime.c:140 +msgid "am" +msgstr "am" + +#: src/uptime.c:140 +msgid "pm" +msgstr "pm" + +#: src/uptime.c:142 +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "ÄÅÎØ" +msgstr[1] "ÄÎÑ" +msgstr[2] "ÄÎÅÊ" + +#: src/uptime.c:144 +#, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "ÐÏÌØÚÏ×ÁÔÅÌØ" +msgstr[1] "ÐÏÌØÚÏ×ÁÔÅÌÑ" +msgstr[2] "ÐÏÌØÚÏ×ÁÔÅÌÅÊ" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr ", ÓÒÅÄÎÑÑ ÚÁÇÒÕÖÅÎÎÏÓÔØ: %.2f" + +#: src/uptime.c:191 src/users.c:118 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... [ æáêì ]\n" + +#: src/uptime.c:192 +#, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"÷Ù×ÏÄÉÔ ÔÅËÕÝÅÅ ×ÒÅÍÑ, ÏÂÝÅÅ ×ÒÅÍÑ ÎÅÐÒÅÒÙ×ÎÏÊ ÒÁÂÏÔÙ ÓÉÓÔÅÍÙ, ÞÉÓÌÏ \n" +"ÐÏÌØÚÏ×ÁÔÅÌÅÊ × ÓÉÓÔÅÍÅ É ÓÒÅÄÎÅÅ ÞÉÓÌÏ ÚÁÄÁÎÉÊ × ÏÞÅÒÅÄÉ ÚÁÐÕÓËÁ ÚÁ \n" +"ÐÏÓÌÅÄÎÉÅ 1, 5 É 15 ÍÉÎÕÔ. \n" +"åÓÌÉ æáêì ÎÅ ÚÁÄÁÎ, ÉÓÐÏÌØÚÕÅÔÓÑ %s. þÁÓÔÏ × ËÁÞÅÓÔ×Å æáêìá ÚÁÄÁÀÔ %s.\n" +"\n" + +#: src/users.c:35 +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "äÖÏÚÅÆ áÒÓÅÎÏ É äÅ×ÉÄ íÁËëÅÎÚÉ" + +#: src/users.c:119 +#, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"÷Ù×ÏÄÉÔ ÓÐÉÓÏË ÐÏÄËÌÀÞÅÎÎÙÈ ÐÏÌØÚÏ×ÁÔÅÌÅÊ × ÓÏÏÔ×ÅÔÓÔ×ÉÉ Ó æáêìïí.\n" +"åÓÌÉ æáêì ÎÅ ÚÁÄÁÎ, ÉÓÐÏÌØÚÕÅÔÓÑ %s. þÁÓÔÏ × ËÁÞÅÓÔ×Å æáêìá\n" +"ÚÁÄÁÀÔ %s.\n" +"\n" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "ðÏÌ òÕÂÉÎ É äÅ×ÉÄ íÁËëÅÎÚÉ" + +#: src/wc.c:129 +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" +"ðÅÞÁÔÁÅÔ ÞÉÓÌÏ ÂÁÊÔ, ÓÌÏ× É ÐÅÒÅ×ÏÄÏ× ÓÔÒÏË ÄÌÑ ËÁÖÄÏÇÏ æáêìá É\n" +"ÉÔÏÇÏ×ÕÀ ÓÔÒÏËÕ, ÅÓÌÉ ÂÙÌÏ ÚÁÄÁÎÏ ÎÅÓËÏÌØËÏ æáêìï÷. åÓÌÉ æáêì ÎÅ\n" +"ÚÁÄÁÎ ÉÌÉ ÚÁÄÁÎ ËÁË -, ÞÉÔÁÅÔ ÓÔÁÎÄÁÒÔÎÙÊ ××ÏÄ.\n" +" -c, --bytes ÎÁÐÅÞÁÔÁÔØ ÞÉÓÌÏ ÂÁÊÔ\n" +" -m, --chars ÎÁÐÅÞÁÔÁÔØ ÞÉÓÌÏ ÚÎÁËÏ×\n" +" -l, --lines ÎÁÐÅÞÁÔÁÔØ ÞÉÓÌÏ ÐÅÒÅ×ÏÄÏ× ÓÔÒÏË\n" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" +" -L, --max-line-length ÎÁÐÅÞÁÔÁÔØ ÄÌÉÎÕ ÎÁÉÂÏÌØÛÅÊ ÓÔÒÏËÉ\n" +" -w, --words ÎÁÐÅÞÁÔÁÔØ ÞÉÓÌÏ ÓÌÏ×\n" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "äÖÏÚÅÆ áÒÓÅÎÏ, äÅ×ÉÄ íÁËëÅÎÚÉ É íÁÊËÌ óÔÏÕÎ" + +#: src/who.c:223 +msgid " old " +msgstr "ÄÁ×ÎÏ" + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "id=" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "ÔÅÒÍÉÎÁÌ=" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "×ÙÈÏÄ=" + +#: src/who.c:446 +msgid "clock change" +msgstr "ÉÚÍÅÎÅÎÉÅ ×ÒÅÍÅÎÉ" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "ÕÒÏ×ÅÎØ ×ÙÐÏÌÎÅÎÉÑ" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "ÐÒÅÄÙÄÕÝÉÊ=" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" +"\n" +"ÞÉÓÌÏ ÐÏÌØÚÏ×ÁÔÅÌÅÊ=%u\n" + +#: src/who.c:498 +msgid "NAME" +msgstr "éíñ" + +#: src/who.c:498 +msgid "LINE" +msgstr "ìéîéñ" + +#: src/who.c:498 +msgid "TIME" +msgstr "÷òåíñ" + +#: src/who.c:498 +msgid "IDLE" +msgstr "îåáëôé÷åî" + +#: src/who.c:498 +msgid "PID" +msgstr "PID" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "ëïííåîôáòéê" + +#: src/who.c:499 +msgid "EXIT" +msgstr "÷ùèïä" + +#: src/who.c:574 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþ]... [ æáêì | áòç1 áòç2]\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" +"\n" +" -a, --all ÜË×É×ÁÌÅÎÔ -b -d --login -p -r -t -T -u\n" +" -b, --boot ×ÒÅÍÑ ÐÏÓÌÅÄÎÅÊ ÚÁÇÒÕÚËÉ ÓÉÓÔÅÍÙ\n" +" -d, --dead ÐÅÞÁÔÁÔØ ÍÅÒÔ×ÙÅ ÐÒÏÃÅÓÓÙ\n" +" -H, --heading ÐÅÞÁÔÁÔØ ÓÔÒÏËÕ Ó ÚÁÇÏÌÏ×ËÁÍÉ ÓÔÏÌÂÃÏ×\n" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" +" -i, --idle ×Ù×ÏÄÉÔØ ×ÒÅÍÑ ÐÒÏÓÔÏÑ ËÁË þáóù:íéîõôù, . ÉÌÉ \"ÄÁ×ÎÏ\"\n" +" (ÕÓÔÁÒÅÌÏ, ÉÓÐÏÌØÚÕÊÔÅ -u)\n" +" --login ÐÅÞÁÔÁÔØ ÐÒÏÃÅÓÓÙ ×ÈÏÄÁ × ÓÉÓÔÅÍÕ (ÜË×É×ÁÌÅÎÔÎÏSUS -l)\n" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" +" -l, --lookup ÐÙÔÁÔØÓÑ ËÁÎÏÎÉÚÉÒÏ×ÁÔØ ÉÍÅÎÁ ÈÏÓÔÏ× ÞÅÒÅÚ DNS\n" +" (-l ÕÓÔÁÒÅÌÏ, ÉÓÐÏÌØÚÕÊÔÅ --lookup)\n" +" -m ÔÏÌØËÏ ÉÍÑ ÈÏÓÔÁ É ÐÏÌØÚÏ×ÁÔÅÌØ, Ó×ÑÚÁÎÎÙÅ ÓÏ\n" +" ÓÔÁÎÄÁÒÔÎÙÍ ××ÏÄÏÍ\n" +" -p, --process ÐÅÞÁÔÁÔØ ÁËÔÉ×ÎÙÅ ÐÒÏÃÅÓÓÙ, ËÏÔÏÒÙÅ ÐÏÒÏÄÉÌ init\n" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" +" -q, --count ×ÓÅ ÉÍÅÎÁ É ÞÉÓÌÏ ÐÏÄËÌÀÞÅÎÎÙÈ ÐÏÌØÚÏ×ÁÔÅÌÅÊ\n" +" -r, --runlevel ÐÅÞÁÔÁÔØ ÔÅËÕÝÉÊ ÕÒÏ×ÅÎØ ×ÙÐÏÌÎÅÎÉÑ\n" +" -s, --short ÐÅÞÁÔÁÔØ ÔÏÌØËÏ ÉÍÑ, ÌÉÎÉÀ É ×ÒÅÍÑ (ÐÒÉÎÉÍÁÅÔÓÑ ÐÏ " +"ÕÍÏÌÞÁÎÉÀ)\n" +" -t, --time ÐÅÞÁÔÁÔØ ÐÏÓÌÅÄÎÅÅ ÉÚÍÅÎÅÎÉÅ ÓÉÓÔÅÍÎÏÇÏ ×ÒÅÍÅÎÉ\n" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" +" -T, -w, --mesg ÄÏÂÁ×ÌÑÔØ ÓÔÁÔÕÓ ÐÒÉÅÍÁ ÓÏÏÂÝÅÎÉÊ ËÁË +, - ÉÌÉ ?\n" +" -u, --users ÐÅÒÅÞÉÓÌÉÔØ ÐÏÄËÌÀÞÅÎÎÙÈ ÐÏÌØÚÏ×ÁÔÅÌÅÊ\n" +" --message ÜË×É×ÁÌÅÎÔ -T\n" +" --writable ÜË×É×ÁÌÅÎÔ -T\n" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" +"\n" +"åÓÌÉ æáêì ÎÅ ÚÁÄÁÎ, ÉÓÐÏÌØÚÕÅÔÓÑ %s. þÁÓÔÏ × ËÁÞÅÓÔ×Å æáêìá ÚÁÄÁÀÔ %s.\n" +"åÓÌÉ ÚÁÄÁÎÙ áòç1 É áòç2, ÐÏÌÁÇÁÅÔÓÑ ÉÓÐÏÌØÚÏ×ÁÎÉÅ -m: ÎÁÐÒÉÍÅÒ `am i'\n" +"É `mom likes'.\n" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "" +"ðÒÅÄÕÐÒÅÖÄÅÎÉÅ: ËÌÀÞ -i ÂÕÄÅÔ ÕÄÁÌÅÎ × ÂÕÄÕÝÅÍ ×ÙÐÕÓËÅ; ÉÓÐÏÌØÚÕÊÔÅ\n" +"×ÍÅÓÔÏ ÎÅÇÏ -u" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" +"ðÒÅÄÕÐÒÅÖÄÅÎÉÅ: ÓÍÙÓÌ ËÌÀÞÁ '-l' ÂÕÄÅÔ ÉÚÍÅÎÅÎÏ × ÂÕÄÕÝÅÍ ×ÙÐÕÓËÅ ÄÌÑ\n" +"ÓÏÏÔ×ÅÔÓÔ×ÉÑ Ó POSIX" + +#: src/whoami.c:53 +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" +"îÁÐÅÞÁÔÁÔØ ÉÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ, ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÅÅ ÔÅËÕÝÅÍÕ ÜÆÆÅËÔÉ×ÎÏÍÕ id\n" +"ÐÏÌØÚÏ×ÁÔÅÌÑ. áÎÁÌÏÇÉÞÎÏ ×ÙÚÏ×Õ id -un.\n" +"\n" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "%s: ÎÅ×ÏÚÍÏÖÎÏ ÏÐÒÅÄÅÌÉÔØ ÉÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ ÄÌÑ UID %u\n" + +#: src/yes.c:49 +#, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [óôòïëá]...\n" +" ÉÌÉ: %s ëìàþ\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" +"îÅÐÒÅÒÙ×ÎÏ ÐÅÞÁÔÁÅÔ ÚÁÄÁÎÎÕÀ óôòïëõ (óôòïëé) ÉÌÉ, ÅÓÌÉ óôòïë ÎÅ ÚÁÄÁÎÏ, " +"`y'.\n" +"\n" diff --git a/src/apps/bin/coreutils-5.0/po/sk.gmo b/src/apps/bin/coreutils-5.0/po/sk.gmo new file mode 100644 index 0000000000..a84beb4e4d Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/sk.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/sk.po b/src/apps/bin/coreutils-5.0/po/sk.po new file mode 100644 index 0000000000..58ef56d6fb --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/sk.po @@ -0,0 +1,10710 @@ +# Slovak translations for GNU textutils +# Copyright (C) 1996 Free Software Foundation, Inc. +# Miroslav Vasko , 1999 +# +msgid "" +msgstr "" +"Project-Id-Version: textutils 2.0.14\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2001-06-08 22:10 +02:00\n" +"Last-Translator: Stanislav Meduna \n" +"Language-Team: Slovak \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8-bit\n" + +#: lib/argmatch.c:135 +#, fuzzy, c-format +msgid "invalid argument %s for %s" +msgstr "chybný argument %s pre `%s'" + +#: lib/argmatch.c:136 +#, fuzzy, c-format +msgid "ambiguous argument %s for %s" +msgstr "nejednoznaèný argument %s pre `%s'" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "Platné argumenty sú:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "chyba pri zápise" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "Neznáma systémová chyba" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "" + +#: lib/file-type.c:42 +#, fuzzy +msgid "regular file" +msgstr "zlyhalo èítanie" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "" + +#: lib/file-type.c:48 +#, fuzzy +msgid "block special file" +msgstr "veµkos» bloku" + +#: lib/file-type.c:51 +#, fuzzy +msgid "character special file" +msgstr "pozícia znaku je nula" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "" + +#: lib/file-type.c:71 +#, fuzzy +msgid "weird file" +msgstr "zlyhalo èítanie" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: voµba `%s' nie je jednoznaèná\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: prepínaè `--%s' nepovoµuje argument\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: prepínaè `%c%s' nepovoµuje argument\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: prepínaè `%s' vy¾aduje argument\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: neznámy prepínaè `--%s'\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: neznámy prepínaè `%c%s'\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: nepovolený prepínaè -- %c\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: chybný prepínaè -- %c\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: prepínaè vy¾aduje argument -- %c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: prepínaè `-W %s' nie je jednoznaèný\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: prepínaè `-W %s' nepovoµuje argument\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "veµkos» bloku" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%s existuje, ale nie je adresárom" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "nie je mo¾né zmeni» pou¾ívateµa a/alebo skupinu %s" + +#: lib/makepath.c:338 +#, fuzzy, c-format +msgid "cannot chdir to directory %s" +msgstr "nie je mo¾né vojs» do adresára, %s" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "nie je mo¾né zmeni» práva %s" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "vyèerpaná pamä»" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "`" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "'" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[yYaAáÁ]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[nN]" + +#: lib/unicodeio.c:155 +#, fuzzy +msgid "iconv function not usable" +msgstr "nie je mo¾né vypísa» U+%04X: funkcia iconv nie je pou¾iteµná" + +#: lib/unicodeio.c:157 +#, fuzzy +msgid "iconv function not available" +msgstr "nie je mo¾né vypísa» U+%04X: funkcia iconv nie je dostupná" + +#: lib/unicodeio.c:164 +#, fuzzy +msgid "character out of range" +msgstr "U+%04X: znak je mimo rozsah" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "nie je mo¾né konvertova» U+%04X do lokálnej znakovej sady" + +#: lib/unicodeio.c:229 +#, fuzzy, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "nie je mo¾né konvertova» U+%04X do lokálnej znakovej sady" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "neplatný pou¾ívateµ" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "neplatná skupina" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "nie je mo¾né urèi» skupinu èíselného UID" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "nie je mo¾né vynecha» pou¾ívateµa aj skupinu" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "Napísal %s.\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +"Toto je voµne ¹íriteµný softvér - pre podmienky ¹írenia pozri zdrojový\n" +"kód. Neexistuje ®IADNA ZÁRUKA, ani OBCHODOVATE¥NOSTI alebo VHODNOSTI\n" +"PRE KONKRÉTNY ÚÈEL.\n" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "" + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "" + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Viac informácií získate príkazom `%s --help'.\n" + +#: src/basename.c:54 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"Pou¾itie: %s [SÚBOR]...\n" +" alebo: %s [VO¥BA]\n" + +#: src/basename.c:59 +#, fuzzy +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" +"Vypísa» NÁZOV bez adresárov vedúcich k nemu.\n" +"Odstráni» aj PRÍPONU, pokiaµ bola zadaná.\n" +"\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, fuzzy, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +" Chyby v programe oznamujte na adrese (iba\n" +"anglicky), pripomienky k prekladu zasielajte na adresu " +"(slovensky)." + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "príli¹ málo argumentov" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "príli¹ veµa argumentov" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ] [SÚBOR]...\n" + +#: src/cat.c:96 +#, fuzzy +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" +" Vypisuje SÚBOR(Y) na ¹tandardný výstup. Ak je uvedených viacero súborov,\n" +"vypisuje ich postupne. Toho sa dá vyu¾i» na spojenie viacerých súborov do " +"jedného.\n" +"\n" +" -A, --show-all rovnaké ako -vET\n" +" -b, --number-nonblank èísluje neprázdne výstupné riadky\n" +" -e rovnaké ako -vE\n" +" -E, --show-ends vypí¹e $ na konci ka¾dého riadku\n" +" -n, --number èísluje v¹etky výstupné riadky\n" +" -s, --squeeze-blank prázdne riadky idúce po sebe redukuje na jediný\n" +" -t rovnaké ako -vT\n" +" -T, --show-tabs vypisuje znak TAB ako ^I\n" +" -u (ignorované)\n" +" -v, --show-nonprinting pou¾ije zápis ^ a M-, okrem znakov LF a TAB\n" +" --help vypí¹e túto nápovedu a skonèí\n" +" --version vypí¹e oznaèenie verzie a skonèí\n" +"\n" +"Ak SÚBOR nebude zadaný alebo bude -, potom bude èítaný ¹tandardný vstup.\n" + +#: src/cat.c:106 +#, fuzzy +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" +" Vypisuje SÚBOR(Y) na ¹tandardný výstup. Ak je uvedených viacero súborov,\n" +"vypisuje ich postupne. Toho sa dá vyu¾i» na spojenie viacerých súborov do " +"jedného.\n" +"\n" +" -A, --show-all rovnaké ako -vET\n" +" -b, --number-nonblank èísluje neprázdne výstupné riadky\n" +" -e rovnaké ako -vE\n" +" -E, --show-ends vypí¹e $ na konci ka¾dého riadku\n" +" -n, --number èísluje v¹etky výstupné riadky\n" +" -s, --squeeze-blank prázdne riadky idúce po sebe redukuje na jediný\n" +" -t rovnaké ako -vT\n" +" -T, --show-tabs vypisuje znak TAB ako ^I\n" +" -u (ignorované)\n" +" -v, --show-nonprinting pou¾ije zápis ^ a M-, okrem znakov LF a TAB\n" +" --help vypí¹e túto nápovedu a skonèí\n" +" --version vypí¹e oznaèenie verzie a skonèí\n" +"\n" +"Ak SÚBOR nebude zadaný alebo bude -, potom bude èítaný ¹tandardný vstup.\n" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" +"\n" +" -B, --binary pou¾ije mód binárneho zápisu na zariadenie " +"konzoly\n" +"\n" + +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "ioctl na `%s' nie je mo¾né vykona»" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "¹tandardný výstup" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s: vstupný súbor je zároveò výstupným" + +#: src/cat.c:858 +#, fuzzy +msgid "closing standard input" +msgstr "¹tandardný vstup" + +#: src/cat.c:861 +#, fuzzy +msgid "closing standard output" +msgstr "¹tandardný výstup" + +#: src/chgrp.c:93 +#, fuzzy +msgid "cannot change to null group" +msgstr "nie je mo¾né zmeni» pou¾ívateµa a/alebo skupinu %s" + +#: src/chgrp.c:102 +#, fuzzy, c-format +msgid "invalid group name %s" +msgstr "neplatná skupina" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "èíslo skupiny" + +#: src/chgrp.c:109 +#, fuzzy, c-format +msgid "invalid group number %s" +msgstr "neplatné èíslo" + +#: src/chgrp.c:126 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Pou¾itie: %s [PREPÍNAÈ]... [SÚBOR]...\n" +" alebo: %s --traditional [SÚBOR] [[+]POSUN [[+]NÁVESTIE]]\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, fuzzy, c-format +msgid "failed to get attributes of %s" +msgstr "zis»ujem atribúty %s" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "zis»ujem nové atribúty %s" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "práva súboru %s boli zmenené na %04lo (%s)\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "zmena práv súboru %s na %04lo (%s) zlyhala\n" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "práva súboru %s zostali %04lo (%s)\n" + +#: src/chmod.c:179 +#, fuzzy, c-format +msgid "changing permissions of %s" +msgstr "nie je mo¾né zmeni» práva %s" + +#: src/chmod.c:242 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Pou¾itie: %s [VO¥BA]... KONIEC\n" +" alebo: %s [VO¥BA]... ZAÈIATOK KONIEC\n" +" alebo: %s [VO¥BA]... ZAÈIATOK KROK LAST\n" + +#: src/chmod.c:248 +#, fuzzy +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"Zmeni» práva ka¾dého SÚBORu na PRÁVA.\n" +"\n" +" -c, --changes ako voµba 'verbose', ale zobrazi» iba zmeny\n" +" -f, --silent, --quiet potlaèi» väè¹inu chybových správ\n" +" -v, --verbose vypísa» informáciu o ka¾dom spracovanom súbore\n" +" --reference=RSÚBOR pou¾i» práva RSÚBORu namiesto PRÁV\n" +" -R, --recursive vykona» operáciu aj vo vnorených adresároch\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" +"\n" +"Ka¾dé PRÁVO je tvorené jedným alebo viacerými písmenami z ugoa, jedným " +"symbolom\n" +"z +-= a jedným alebo viacerými písmenami z rwxXstugo.\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" + +#: src/chmod.c:320 +#, fuzzy, c-format +msgid "invalid character %s in mode string %s" +msgstr "znak `%c' v re»azci typu `%s' je chybný" + +#: src/chmod.c:361 +#, fuzzy, c-format +msgid "invalid mode string: %s" +msgstr "chybný typ re»azca `%s'" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "symbolický odkaz %s ani odkazovaný súbor neboli zmenené\n" + +#: src/chown-core.c:143 +#, c-format +msgid "changed ownership of %s to %s\n" +msgstr "vlastníka %s zmenený na %s\n" + +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "skupina %s zmenená na %s\n" + +#: src/chown-core.c:148 +#, fuzzy, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "nie je mo¾né zmeni» práva %s" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "zmena skupiny %s na %s zlyhala\n" + +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "vlastník %s zostal %s\n" + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "skupina súboru %s zostala %s\n" + +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "mením vlastníctvo %s" + +#: src/chown-core.c:327 +#, fuzzy, c-format +msgid "changing group of %s" +msgstr "nie je mo¾né zmeni» pou¾ívateµa a/alebo skupinu %s" + +#: src/chown-core.c:345 +#, fuzzy, c-format +msgid "unable to restore permissions of %s" +msgstr "nie je mo¾né zmeni» práva %s" + +#: src/chown.c:99 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Pou¾itie: %s [VO¥BA]... KONIEC\n" +" alebo: %s [VO¥BA]... ZAÈIATOK KONIEC\n" +" alebo: %s [VO¥BA]... ZAÈIATOK KROK LAST\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" + +#: src/chown.c:133 +#, fuzzy +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" +"Vlastník nie je zmenený, pokiaµ nebol zadaný. Skupina nie je zmenená,\n" +"pokiaµ nie je zadaná, ale bude zmenená na prihlasovaciu skupinu,\n" +"pokiaµ je to vy¾iadané dvojbodkou. VLASTNÍK aj SKUPINA mô¾u by»\n" +"tak èíselné, ako aj symbolické.\n" + +#: src/chroot.c:45 +#, fuzzy, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"Pou¾itie: %s [SÚBOR]...\n" +" alebo: %s [VO¥BA]\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" + +#: src/chroot.c:84 +#, fuzzy, c-format +msgid "cannot change root directory to %s" +msgstr "nie je mo¾né vojs» do adresára, %s" + +#: src/chroot.c:87 +#, fuzzy +msgid "cannot chdir to root directory" +msgstr "nie je mo¾né vojs» do adresára, %s" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "%s: súbor je príli¹ dlhý" + +#: src/cksum.c:282 +#, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"Pou¾itie: %s [SÚBOR]...\n" +" alebo: %s [VO¥BA]\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ]... ¥AVÝ_SÚBOR PRAVÝ_SÚBOR\n" + +#: src/comm.c:77 +#, fuzzy +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" +" Porovnáva súbory ¥AVÝ_SÚBOR a PRAVÝ_SÚBOR, ktorých riadky sú usporiadané\n" +"podµa nejakého kµúèa, riadok po riadku. Výstupom sú tri ståpce, riadky " +"obsiahnuté\n" +"iba v µavom súbore, riadky obsiahnuté iba v pravom súbore, riadky spoloèné\n" +"obom súborom.\n" +"\n" +" -1 neukazuje riadky obsiahnuté iba v µavom súbore\n" +" -2 neukazuje riadky obsiahnuté iba v pravom súbore\n" +" -3 neukazuje riadky spoloèné obom súborom\n" +" --help vypí¹e tuto nápovedu a skonèí\n" +" --version vypí¹e oznaèenie verzie a skonèí\n" + +#: src/copy.c:162 src/du.c:332 +#, fuzzy, c-format +msgid "cannot access %s" +msgstr "nie je mo¾né spusti» %s" + +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "nie je mo¾né otvori» %s pre èítanie" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, fuzzy, c-format +msgid "cannot fstat %s" +msgstr "nie je mo¾né nastavi» dátum" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, fuzzy, c-format +msgid "cannot remove %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/copy.c:277 +#, fuzzy, c-format +msgid "cannot create regular file %s" +msgstr "nie je mo¾né vytvori» doèasný súbor" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, fuzzy, c-format +msgid "reading %s" +msgstr "chyba pri èítaní %s" + +#: src/copy.c:362 +#, fuzzy, c-format +msgid "cannot lseek %s" +msgstr "nie je mo¾né spusti» %s" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, fuzzy, c-format +msgid "writing %s" +msgstr "chyba pri zápise %s" + +#: src/copy.c:409 src/copy.c:415 +#, fuzzy, c-format +msgid "closing %s" +msgstr "uzatváranie %s (fd=%d)" + +#: src/copy.c:610 +#, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: prepísa» %s bez ohµadu na práva %04lo? " + +#: src/copy.c:616 +#, c-format +msgid "%s: overwrite %s? " +msgstr "%s: prepísa» %s? " + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, fuzzy, c-format +msgid "cannot stat %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/copy.c:820 +#, fuzzy, c-format +msgid "omitting directory %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "" + +#: src/copy.c:866 src/ln.c:237 +#, c-format +msgid "%s and %s are the same file" +msgstr "%s a %s predstavujú ten istý súbor" + +#: src/copy.c:876 +#, fuzzy, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "nie je mo¾né vojs» do adresára, %s" + +#: src/copy.c:893 +#, fuzzy, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "nie je mo¾né prepísa» ne-adresár %s adresárom %s" + +#: src/copy.c:904 +#, fuzzy, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/copy.c:965 +#, fuzzy, c-format +msgid "cannot overwrite directory %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/copy.c:974 +#, fuzzy, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "nie je mo¾né vojs» do adresára, %s" + +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "vytvorenie zálo¾nej kópie %s by znièilo zdroj; %s nebol presunutý" + +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "vytvorenie zálo¾nej kópie %s by znièilo zdroj; %s nebol skopírovaný" + +#: src/copy.c:1013 src/ln.c:273 +#, fuzzy, c-format +msgid "cannot backup %s" +msgstr "nie je mo¾né spusti» %s" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr "(záloha: %s)" + +#: src/copy.c:1099 +#, fuzzy, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/copy.c:1106 +#, fuzzy, c-format +msgid "will not create hard link %s to directory %s" +msgstr "nie je mo¾né vojs» do adresára, %s" + +#: src/copy.c:1132 +#, fuzzy, c-format +msgid "cannot create hard link %s to %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/copy.c:1186 +#, fuzzy, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "nie je mo¾né vojs» do adresára, %s" + +#: src/copy.c:1229 +#, fuzzy, c-format +msgid "cannot move %s to %s" +msgstr "ioctl na `%s' nie je mo¾né vykona»" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "" + +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "nie je mo¾né skopírova» zacyklený symbolický odkaz %s" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "" +"%s: relatívne symbolické odkazy je mo¾né vytvori» iba v aktuálnom adresári" + +#: src/copy.c:1353 +#, fuzzy, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/copy.c:1364 +#, fuzzy, c-format +msgid "cannot create link %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, fuzzy, c-format +msgid "cannot create fifo %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/copy.c:1403 +#, fuzzy, c-format +msgid "cannot create special file %s" +msgstr "pozícia znaku je nula" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, fuzzy, c-format +msgid "cannot read symbolic link %s" +msgstr "ioctl na `%s' nie je mo¾né vykona»" + +#: src/copy.c:1440 +#, fuzzy, c-format +msgid "cannot create symbolic link %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, fuzzy, c-format +msgid "failed to preserve ownership for %s" +msgstr "zachovávam vlastníctvo %s" + +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "%s je neznámy typ souboru" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "zachovávam èasy %s" + +#: src/copy.c:1531 +#, fuzzy, c-format +msgid "failed to preserve authorship for %s" +msgstr "zachovávam vlastníctvo %s" + +#: src/copy.c:1549 +#, fuzzy, c-format +msgid "setting permissions for %s" +msgstr "nie je mo¾né zmeni» práva %s" + +#: src/copy.c:1571 src/ln.c:326 +#, fuzzy, c-format +msgid "cannot un-backup %s" +msgstr "nie je mo¾né spusti» %s" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s -> %s (obnovenie zálohy)\n" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/cp.c:164 src/mv.c:311 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"Pou¾itie: %s [VO¥BA]... KONIEC\n" +" alebo: %s [VO¥BA]... ZAÈIATOK KONIEC\n" +" alebo: %s [VO¥BA]... ZAÈIATOK KROK LAST\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" + +#: src/cp.c:209 +#, fuzzy +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +" --sparse=KEDY tvorba nesúvislých (deravých) súborov\n" +" -R, --recursive kopírova» adresáre rekurzívne\n" +" --strip-trailing-slashes odstráni» z ka¾dého ZDROJa koncové lomítko\n" +" -s, --symbolic-link namiesto odkazov vytvori» symbolické odkazy\n" +" -S, --suffix=PRÍPONA zmeni» obvyklú príponu zálohových súborov\n" +" na PRÍPONU\n" +" --target-directory=ADR presunú» v¹etky ZDROJe do ADResára\n" +" -u, --update kopírova» iba pokiaµ je zdrojový súbor nov¹í\n" +" ako cieµový alebo pokiaµ cieµový súbor " +"neexistuje\n" +" -v, --verbose vypisova» informácie o vykonaných operáciách\n" +" -x, --one-file-system zosta» v tomto súborovom systéme\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" +"\n" +"Pokiaµ nie je zadané inak, nesúvislé (deravé) súbory sú detekované\n" +"a zodpovedajúci cieµový súbor je vytvorený taktie¾ ako nesúvislý.\n" +"Toto je tie¾ správanie sa pri voµbe --sparse=auto. Pri zadaní voµby\n" +"--sparse=always bude vytvorený nesúvislý súbor v¾dy ak zdrojový\n" +"súbor obsahuje dostatoène dlhú postupnos» nulových bajtov. Voµba\n" +"--sparse=never zabráni tvoreniu nesúvislých súborov.\n" +"\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" + +#: src/cp.c:221 +#, fuzzy +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +"Premenovanie ZDROJa na CIE¥ alebo premiestnenie ZDROJa(ov) do ADRESÁRa.\n" +"\n" +" --backup[=CONTROL] vytvori» zálo¾nú kópiu ka¾dého existujúceho\n" +" CIE¥a\n" +" -b ako --backup, ale nepovoµuje argument\n" +" -f, --force prepísa» existujúce ciele bez opýtania\n" +" -i, --interactive pred prepísaním súboru sa opýta»\n" +" --strip-trailing-slashes odstráni» koncové lomítka z ka¾dého\n" +" ZDROJa\n" +" -S, --suffix=PRÍPONA zmeni» obvyklú príponu zálo¾ných kópií\n" +" --target-directory=ADR presunú» v¹etky ZDROJe do ADResára\n" +" -u, --update premiestni» iba nov¹ie a úplne nové soubory\n" +" -v, --verbose vypisova» informácie o priebehu\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" +"\n" + +#: src/cp.c:230 +#, fuzzy +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +" --sparse=KEDY tvorba nesúvislých (deravých) súborov\n" +" -R, --recursive kopírova» adresáre rekurzívne\n" +" --strip-trailing-slashes odstráni» z ka¾dého ZDROJa koncové lomítko\n" +" -s, --symbolic-link namiesto odkazov vytvori» symbolické odkazy\n" +" -S, --suffix=PRÍPONA zmeni» obvyklú príponu zálohových súborov\n" +" na PRÍPONU\n" +" --target-directory=ADR presunú» v¹etky ZDROJe do ADResára\n" +" -u, --update kopírova» iba pokiaµ je zdrojový súbor nov¹í\n" +" ako cieµový alebo pokiaµ cieµový súbor " +"neexistuje\n" +" -v, --verbose vypisova» informácie o vykonaných operáciách\n" +" -x, --one-file-system zosta» v tomto súborovom systéme\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" +"\n" +"Pokiaµ nie je zadané inak, nesúvislé (deravé) súbory sú detekované\n" +"a zodpovedajúci cieµový súbor je vytvorený taktie¾ ako nesúvislý.\n" +"Toto je tie¾ správanie sa pri voµbe --sparse=auto. Pri zadaní voµby\n" +"--sparse=always bude vytvorený nesúvislý súbor v¾dy ak zdrojový\n" +"súbor obsahuje dostatoène dlhú postupnos» nulových bajtov. Voµba\n" +"--sparse=never zabráni tvoreniu nesúvislých súborov.\n" +"\n" + +#: src/cp.c:239 +#, fuzzy +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"Prípona zálo¾ných súborov je ~, pokiaµ nie je nastavená voµbou --suffix " +"alebo\n" +"premennou SIMPLE_BACKUP_SUFFIX. Spôsob tvorby zálo¾ných kópií súborov mô¾e " +"by»\n" +"nastavený premennou VERSION_CONTROL, prípustné hodnoty sú:\n" +"\n" +" none, off nikdy nevytvára» zálo¾né kópie (ani ak bolo zadané --" +"backup)\n" +" numbered, t tvori» èíslované zálo¾né kópie\n" +" existing, nil tvori» èíslované, pokiaµ u¾ èíslované zálo¾né kópie\n" +" existujú, inak tvori» jednoduché\n" +" simple, never v¾dy tvori» jednoduché zálo¾né kópie súborov \n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +#, fuzzy +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +"Prípona zálo¾ných súborov je ~, pokiaµ nie je nastavená voµbou --suffix " +"alebo\n" +"premennou SIMPLE_BACKUP_SUFFIX. Spôsob tvorby zálo¾ných kópií súborov mô¾e " +"by»\n" +"nastavený premennou VERSION_CONTROL, prípustné hodnoty sú:\n" +"\n" +" none, off nikdy nevytvára» zálo¾né kópie (ani ak bolo zadané --" +"backup)\n" +" numbered, t tvori» èíslované zálo¾né kópie\n" +" existing, nil tvori» èíslované, pokiaµ u¾ èíslované zálo¾né kópie\n" +" existujú, inak tvori» jednoduché\n" +" simple, never v¾dy tvori» jednoduché zálo¾né kópie súborov \n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +"Ako ¹peciálny prípad, cp tvorí zálo¾né kópie ZDROJa, pokiaµ sú zadané voµby\n" +"force a backup a ZDROJ a CIE¥ sú rovnakým menom pre existujúci be¾ný súbor.\n" + +#: src/cp.c:325 +#, fuzzy, c-format +msgid "failed to preserve times for %s" +msgstr "zachovávam èasy %s" + +#: src/cp.c:349 +#, fuzzy, c-format +msgid "failed to preserve permissions for %s" +msgstr "nie je mo¾né zmeni» práva %s" + +#: src/cp.c:434 +#, fuzzy, c-format +msgid "cannot make directory %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +#, fuzzy +msgid "missing file argument" +msgstr "preskakujem argument" + +#: src/cp.c:498 +#, fuzzy +msgid "missing destination file" +msgstr "chýba zoznam polo¾iek" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "pristupujem k %s" + +#: src/cp.c:546 +#, fuzzy, c-format +msgid "%s: specified target is not a directory" +msgstr "%s existuje, ale nie je adresárom" + +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "" +"je po¾adované kopírovanie viacerých súborov, ale posledný argument %s nie je " +"adresár" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "pokiaµ je po¾adované zachovanie ciest, cieµ musí by» adresárom" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"varovanie: voµba --version-control (-V) je zastaralá a jej\n" +"podpora bude v niektorej budúcej verzii odstránená. Namiesto\n" +"nej pou¾ite --backup=%s." + +#: src/cp.c:972 src/ln.c:464 +#, fuzzy +msgid "symbolic links are not supported on this system" +msgstr "varovanie: --pid=PID nie je na tomto systéme podporované" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "nie je mo¾né zároveò vytvori» pevný a symbolický odkaz" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "typ zálohy" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "chyba pri èítaní" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "vstup sa stratil" + +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s: èíslo riadku je mimo rozsah" + +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: `%s': èíslo riadku je mimo rozsah" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr " v %d. opakovaní\n" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s: `%s': nenájdené" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "chyba pri vyhµadávaní pomocou regulárneho výrazu" + +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "chyba pri zápise do `%s'" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "%s: po oddeµovaèi je oèakávané `+' alebo `-'" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s: po `%c' je oèakávané celé èíslo" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "%s: '}' je po¾adovaná v poèítadle opakovaní" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "%s}: medzi `{' a `}' musí by» celé èíslo" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s: chýba koncový oddeµovaè `%c'" + +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: chybný regulárny výraz: %s" + +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "%s: chybný vzor" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s: èíslo riadku musí by» väè¹ie ako nula" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "èíslo riadku `%s' je men¹ie ako èíslo predchádzajúceho riadku, %s" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "" +"varovanie: èíslo riadku `%s' je rovnaké ako èíslo predcházajúceho riadku" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "v parametri prepínaèa chýba urèenie typu konverzie" + +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "chybne zadaný typ konverzie v parametri prepínaèa: %c" + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "chybne zadaný typ konverzie v parametri prepínaèa: \\%.3o" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "v parametri prepínaèa chýba zadanie typu konverzie pomocou %%" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "príli¹ mnoho typov konverzie %% v parametri prepínaèa" + +#: src/csplit.c:1441 +#, c-format +msgid "%s: invalid number" +msgstr "%s: chybné èíslo" + +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ]... SÚBOR VZOROV...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ]... [SÚBOR]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" + +#: src/cut.c:185 +#, fuzzy +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" +" Zalamuje vstupné riadky ka¾dého SÚBORu (implicitne ¹tandardného vstupu),\n" +"zapisujúc výstup na ¹tandardný výstup.\n" +"\n" +" -b, --bytes pre zalamovanie poèíta bajty na riadku namiesto " +"ståpcov\n" +" -s, --spaces zalamuje riadky v medzerách\n" +" -w, --width=©ÍRKA pou¾íva ©ÍRKA ståpcov namiesto 80\n" +" --help vypí¹e túto nápovedu a skonèí\n" +" --version vypí¹e oznaèenie verzie a skonèí\n" +"\n" +"V ståpcoch nie sú zahrnuté kontrolné znaky na rozdiel od bytov.\n" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "chybný zoznam bytov alebo polo¾iek" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "mô¾e by» zadaný iba jeden typ zoznamu" + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "chýba zoznam pozícií" + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "chýba zoznam polo¾iek" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "oddeµovaè musí by» jediný znak" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "musíte zadat zoznam bytov, znakov alebo polo¾iek" + +#: src/cut.c:720 +#, fuzzy +msgid "an input delimiter may be specified only when operating on fields" +msgstr "oddeµovaè mô¾e by» zadaný iba pri práci s polo¾kami" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" +"potlaèenie riadkov neobsahujúcich oddeµovaè, má význam iba\n" +"\tpri pou¾ití pracuje s poµami" + +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" +"Pou¾itie: %s [VO¥BA]... [+FORMÁT]\n" +" alebo: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "¹tandardný vstup" + +#: src/date.c:268 src/date.c:460 +#, fuzzy, c-format +msgid "invalid date `%s'" +msgstr "chybné èíslo polo¾ky: `%s'" + +#: src/date.c:364 +#, fuzzy +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "prepínaèe --string a --check sa vzájomne vyluèujú" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "voµby pre výpis a nastavenie èasu nemô¾u by» pou¾ité spoloène" + +#: src/date.c:377 +#, fuzzy, c-format +msgid "too many non-option arguments: %s%s" +msgstr "príli¹ mnoho argumentov, ktoré nie sú prepínaèmi" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" +"argumentu `%s' chýba úvodný znak `+';\n" +"Pokiaµ je pre ¹pecifikáciu dátumu pou¾itá voµba, v¹etky argumenty,\n" +"ktoré nie sú voµbami, musia by» formátovacím re»azcom s úvodným `+'." + +#: src/date.c:397 +#, fuzzy +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "pri pou¾ití prepínaèa --string nemô¾u by» zadané súbory" + +#: src/date.c:433 +msgid "undefined" +msgstr "nedefinovaný" + +#: src/date.c:435 +#, fuzzy +msgid "cannot get time of day" +msgstr "súbor sa nedá rozdeli» viacerými spôsobmi" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "nie je mo¾né nastavi» dátum" + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ] [SÚBOR]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "%s+%s záznamov dnu\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "%s+%s záznamov von\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "skrátený záznam" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "skrátených záznamov" + +#: src/dd.c:382 +#, fuzzy, c-format +msgid "closing input file %s" +msgstr "vytváram súbor `%s'\n" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "zatváram výstupný súbor %s" + +#: src/dd.c:469 +#, fuzzy, c-format +msgid "writing to %s" +msgstr "chyba pri zápise %s" + +#: src/dd.c:501 +#, fuzzy, c-format +msgid "invalid conversion: %s" +msgstr "chybný typ re»azca `%s'" + +#: src/dd.c:557 +#, fuzzy, c-format +msgid "unrecognized option %s" +msgstr "neznámy prepínaè `-%c'" + +#: src/dd.c:610 +#, fuzzy, c-format +msgid "unrecognized option %s=%s" +msgstr "neznámy prepínaè `-%c'" + +#: src/dd.c:616 +#, fuzzy, c-format +msgid "invalid number %s" +msgstr "neplatné èíslo" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"prípustná je iba jedna z konverzií {ascii,ebcdic,ibm}, {lcase,ucase},\n" +"{block,unblock}, {unblock,sync}" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" + +#: src/dd.c:1170 src/dd.c:1188 +#, fuzzy, c-format +msgid "opening %s" +msgstr "chyba pri èítaní %s" + +#: src/dd.c:1196 +#, fuzzy +msgid "file offset out of range" +msgstr "%s: èíslo riadku je mimo rozsah" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "presúvam sa za %s bajtov vo výstupnom súbore %s" + +#: src/df.c:49 +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "" + +#: src/df.c:153 +#, fuzzy +msgid "Filesystem Type" +msgstr "Súborový systém " + +#: src/df.c:155 +#, fuzzy +msgid "Filesystem " +msgstr "Súborový systém " + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr " I-uzly IPou¾ IVoµ IPou%%" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Veµk Pou¾ Dost Pou%%" + +#: src/df.c:164 +#, fuzzy, c-format +msgid " Size Used Avail Use%%" +msgstr " Veµk Pou¾ Dost Pou%%" + +#: src/df.c:167 +#, fuzzy, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr " %4d-blokov Pou¾ Dostupné Kapacita" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr " %4s-bloky Pou¾ Dostupné Pou%%" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr " Namontovaný na\n" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" + +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "súborový systém %s je zároveò vybratý a vylúèený" + +#: src/df.c:903 +msgid "Warning: " +msgstr "Varovanie: " + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "%snie je mo¾né preèíta» tabuµku namontovaných súborových systémov" + +#: src/dircolors.c:103 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ]... [SÚBOR]...\n" + +#: src/dircolors.c:104 +#, fuzzy +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"Príkaz pre nastavenie premennej prostredia LS_COLOR.\n" +"\n" +"©pecifikova» výstupný formát:\n" +" -b, --sh, --bourne-shell výstupom je Bourne shellový príkaz\n" +" pre nastavenie LS_COLORS\n" +" -c, --csh, --c-shell výstupom je C shellový príkaz\n" +" pre nastavenie LS_COLORS\n" +" -p, --print-database vypísa» ¹tandardné nastavenia\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" + +#: src/dircolors.c:299 +#, fuzzy, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s: neplatný poèet sekúnd" + +#: src/dircolors.c:371 +#, fuzzy, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s: neznámy prepínaè `%c%s'\n" + +#: src/dircolors.c:372 +msgid "" +msgstr "" + +#: src/dircolors.c:467 +#, fuzzy +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" +"voµby pre podrobný a stty-èitateµný formát výstupu\n" +"sa navzájom vyluèujú" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" +"pokiaµ je po¾adovaný výpis vnútornej databázy 'dircolors', nie\n" +"je mo¾né pou¾i» argumenty pre súbor" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "nie je nastavená premenná prostredia SHELL a typ shellu nie je zadaný" + +#: src/dirname.c:33 src/pathchk.c:59 +msgid "David MacKenzie and Jim Meyering" +msgstr "" + +#: src/dirname.c:46 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"Pou¾itie: %s [SÚBOR]...\n" +" alebo: %s [VO¥BA]\n" + +#: src/dirname.c:51 +#, fuzzy +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" +"Vypísa» NÁZOV s odstráneným koncovým komponentom a predchádzajúcim " +"lomítkom.\n" +"Pokiaµ NÁZOV neobsahuje lomítko, vypísa» `.' (s významom aktuálneho " +"adresára).\n" +"\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" + +#: src/du.c:49 +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" + +#: src/du.c:337 +#, fuzzy, c-format +msgid "cannot change to parent of directory %s" +msgstr "nie je mo¾né vojs» do adresára, %s" + +#: src/du.c:345 +#, fuzzy, c-format +msgid "cannot change to directory %s" +msgstr "nie je mo¾né vojs» do adresára, %s" + +#: src/du.c:352 +#, fuzzy, c-format +msgid "cannot read directory %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "celkom" + +#: src/du.c:641 +#, fuzzy, c-format +msgid "invalid maximum depth %s" +msgstr "chybné èíslo polo¾ky: `%s'" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "nie je mo¾né súèasne sumarizova» a vypisova» v¹etky polo¾ky" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "varovanie: sumarizácia je to isté ako --max-depth=0" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "varovanie: sumarizácia je v konflikte s --max-depth=%d" + +#: src/echo.c:77 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ]... [SÚBOR]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/env.c:93 +msgid "Richard Mlynarik and David MacKenzie" +msgstr "" + +#: src/env.c:119 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ]... [SÚBOR]...\n" + +#: src/env.c:122 +#, fuzzy +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" +"Nastavi» v prostredí ka¾dú PREMENNÚ na HODNOTU a spusti» PRÍKAZ.\n" +"\n" +" -i, --ignore-environment zaèa» s prázdnym prostredím\n" +" -u, --unset=NAME odstráni» premennú z prostredia\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" +"\n" +"Samotné - implikuje -i. Pokiaµ nebol zadaný PRÍKAZ, výsledné prostredie sa " +"vypí¹e.\n" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "veµkos» tabulátoru obsahuje neplatný znak" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "veµkos» tabulátoru nemô¾e by» 0" + +# sizes or positions? - rzm +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "postupnos» pozíc tabulátorov musí by» rastúca" + +#: src/expand.c:386 +#, fuzzy +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "varovanie: chybná ¹írka %lu; namiesto nej pou¾ijem %d" + +#: src/expr.c:90 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"Pou¾itie: %s [SÚBOR]...\n" +" alebo: %s [VO¥BA]\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" +"\n" +"Pozor na to, ¾e veµa operátorov musí by» v shelli citovaných. Porovnania sú\n" +"aritmetické, pokiaµ sú oba argumenty èíselné, inak sú lexikografické.\n" +" Hµadanievzoru vracia vyhovujúci re»azec medzi \\( a \\) alebo prázdny " +"re»azec; pokiaµ\n" +"\\( a \\) nie sú pou¾ité, vracia poèet vyhovujúcich znakov alebo 0.\n" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +#, fuzzy +msgid "syntax error" +msgstr "¹tandardná chyba" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" +"varovanie: neprenositeµný BRE (základný regulérny výraz): `%s': pou¾itie\n" +"znaku `^' na zaèiatku nie je prenositeµné a je ignorovaný" + +#: src/expr.c:586 src/expr.c:625 +#, fuzzy +msgid "non-numeric argument" +msgstr "argument orezaný" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "" + +#: src/factor.c:74 +#, fuzzy, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"Pou¾itie: %s [SÚBOR]...\n" +" alebo: %s [VO¥BA]\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" + +#: src/factor.c:85 +#, fuzzy +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" +"Rozlo¾i» ka¾dé ÈÍSLO na prvoèinitele; bez argumento èíta ¹tandardný vstup\n" +"\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" +"\n" +" Vypí¹e prvoèinitele v¹etkých zadaných celých ÈÍSIEL. Pokiaµ na príkazovom\n" +" riadku nie sú zadané ¾iadne argumenty, budú naèítané zo ¹tandardného " +"vstupu.\n" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "`%s' nie je platné kladné celé èíslo" + +#: src/false.c:34 +#, fuzzy, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Pou¾itie: %s [ignorované argumenty]\n" +" alebo: %s VO¥BA\n" +"Skonèi» s výstupným kódom indikujúcim chybu.\n" +"\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "Pou¾itie: %s [-ÈÍSLICA] [PREPÍNAÈ]... [SÚBOR]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" + +#: src/fmt.c:280 +#, fuzzy +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" +" Preformátuje ka¾dý odstavec v SÚBORe(och) a výsledok zapí¹e na ¹tandardný\n" +"výstup. Ak SÚBOR nebude zadaný alebo bude -, bude èítaný ¹tandardný vstup.\n" +"\n" +"Argumenty po¾adované dlhými prepínaèmi, sú tie¾ po¾adované krátkymi.\n" +" -c, --crown-margin zachová odsadenie prvých dvoch riadkov\n" +" -p, --prefix=RE«AZEC pracuje iba s riadkami majúcimi RE«AZEC ako " +"prefix\n" +" -s, --split-only iba rozdelí dlhé riadky\n" +" -t, --tagged-paragraph odsadí prvý riadok rozdielne od druhého\n" +" -u, --uniform-spacing jedna medzera medzi slovami, dve za vetou\n" +" -w, --width=©ÍRKA maximálna ¹írka riadku (implicitne 75)\n" +" --help vypí¹e túto nápovedu a skonèí\n" +" --version vypí¹e oznaèenie verzie a skonèí\n" +"\n" +"Pri prepínaèi -w©ÍRKA je mo¾né vynecha» znak `w'.\n" + +#: src/fmt.c:286 +#, fuzzy +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" +" Preformátuje ka¾dý odstavec v SÚBORe(och) a výsledok zapí¹e na ¹tandardný\n" +"výstup. Ak SÚBOR nebude zadaný alebo bude -, bude èítaný ¹tandardný vstup.\n" +"\n" +"Argumenty po¾adované dlhými prepínaèmi, sú tie¾ po¾adované krátkymi.\n" +" -c, --crown-margin zachová odsadenie prvých dvoch riadkov\n" +" -p, --prefix=RE«AZEC pracuje iba s riadkami majúcimi RE«AZEC ako " +"prefix\n" +" -s, --split-only iba rozdelí dlhé riadky\n" +" -t, --tagged-paragraph odsadí prvý riadok rozdielne od druhého\n" +" -u, --uniform-spacing jedna medzera medzi slovami, dve za vetou\n" +" -w, --width=©ÍRKA maximálna ¹írka riadku (implicitne 75)\n" +" --help vypí¹e túto nápovedu a skonèí\n" +" --version vypí¹e oznaèenie verzie a skonèí\n" +"\n" +"Pri prepínaèi -w©ÍRKA je mo¾né vynecha» znak `w'.\n" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" + +#: src/fmt.c:345 +#, fuzzy, c-format +msgid "invalid width option: `%s'" +msgstr "chybný typ re»azca `%s'" + +#: src/fmt.c:385 +#, fuzzy, c-format +msgid "invalid width: `%s'" +msgstr "chybné èíslo polo¾ky: `%s'" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" + +#: src/fold.c:267 +#, fuzzy, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "varovanie: chybná ¹írka %lu; namiesto nej pou¾ijem %d" + +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "neplatný poèet ståpcov: `%s'" + +#: src/head.c:92 +#, fuzzy +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +" Vypí¹e prvých 10 riadkov ka¾dého súboru na ¹tandardný výstup. S viac ako\n" +"jedným súborom, bude pred vypísaním ka¾dého uvedená hlavièka obsahujúca " +"meno\n" +"súboru. Ak SÚBOR nebude zadaný alebo bude -, bude èítaný ¹tandardný vstup.\n" +"\n" +" -c, --bytes=VE¥KOS« vypí¹e prvých VE¥KOS« bytov\n" +" -n, --lines=POÈET vypí¹e prvých POÈET riadkov namiesto prvých 10\n" +" -q, --quiet, --silent nikdy nevypisuje hlavièky s názvami súborov\n" +" -v, --verbose vypisuje hlavièky s názvami súborov v¾dy\n" +" --help vypí¹e túto nápovedu a skonèí\n" +" --version vypí¹e oznaèenie verzie a skonèí\n" +"\n" +" VE¥KOS« mô¾e ma» násobiacu príponu: b pre 512, k pre 1K, m pre 1M. Pokiaµ\n" +"prvý prepínaè bude -HODNOTA a ak bude pou¾itá násobiaca prípona, potom bude " +"braný\n" +"ako -c HODNOTA. Inak bude prepínaè braný ako -n HODNOTA.\n" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" + +#: src/head.c:190 +#, fuzzy, c-format +msgid "cannot reposition file pointer for %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +# src/tail.c:968 +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "%s: %s je príli¹ veµký, preto nie je reprezentovateµný" + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "poèet riadkov" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "poèet bytov" + +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "chybný poèet riadkov" + +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "chybný poèet bytov" + +#: src/head.c:341 +#, c-format +msgid "unrecognized option `-%c'" +msgstr "neznámy prepínaè `-%c'" + +#: src/head.c:348 +#, fuzzy, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "varovanie: chybná ¹írka %lu; namiesto nej pou¾ijem %d" + +#: src/hostid.c:48 +#, fuzzy, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" +"Pou¾itie: %s\n" +" alebo: %s VO¥BA\n" +"Vypísa» numerický (hexadecimálny) identifikátor aktuálneho poèítaèa.\n" +"\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" +"\n" + +#: src/hostname.c:67 +#, fuzzy, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" +"Pou¾itie: %s [NÁZOV]\n" +" alebo: %s VO¥BA\n" +"Vypísa» názov tohoto systému.\n" +"\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" + +#: src/hostname.c:104 +#, fuzzy, c-format +msgid "cannot set hostname to `%s'" +msgstr "ioctl na `%s' nie je mo¾né vykona»" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "nie je mo¾né nastavi» názov; tento systém to neumo¾òuje" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "nie je mo¾né zisti» názov systému" + +#: src/id.c:36 +msgid "Arnold Robbins and David MacKenzie" +msgstr "" + +#: src/id.c:87 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ]... MNO®INA1 [MNO®INA2]\n" + +#: src/id.c:88 +#, fuzzy +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" +"Vypísa» informáciu o POU®ÍVATE¥OVI, alebo o aktuálnom pou¾ívateµovi.\n" +"\n" +" -a ignorované, kvôli kompatibilite s inými verziami\n" +" -g, --group vypísa» iba identifikáciu skupiny\n" +" -G, --groups vypísa» iba identifikáciu doplnkových skupín\n" +" -n, --name namiesto èísla vypísa» meno, pre -ugG\n" +" -r, --real vypísa» reálne ID namiesto efektívneho ID, pre -ugG\n" +" -u, --user vypísa» iba ID pou¾ívateµa\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" + +#: src/id.c:162 +#, fuzzy +msgid "cannot print only user and only group" +msgstr "nie je mo¾né vynecha» pou¾ívateµa aj skupinu" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "v implicitnom formáte nie je mo¾né vypísa» iba mená alebo reálne ID" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "%s: Pou¾ívateµ neexistuje" + +#: src/id.c:212 +#, fuzzy, c-format +msgid "cannot find name for user ID %u" +msgstr "nie je mo¾né zisti» meno pre ID pou¾ívateµa %u\n" + +#: src/id.c:235 +#, fuzzy, c-format +msgid "cannot find name for group ID %u" +msgstr "nie je mo¾né zmeni» pou¾ívateµa a/alebo skupinu %s" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "nie je mo¾né zisti» zoznam doplnkových skupín" + +#: src/id.c:385 +msgid " groups=" +msgstr " skupiny=" + +#: src/install.c:269 +#, fuzzy +msgid "the strip option may not be used when installing a directory" +msgstr "" +"formátovací re»azec nemô¾e by» pou¾itý, pokiaµ je po¾adovaná rovnaká ¹írka" + +#: src/install.c:292 src/mkdir.c:140 +#, fuzzy, c-format +msgid "invalid mode %s" +msgstr "chybné èíslo polo¾ky: `%s'" + +#: src/install.c:307 src/install.c:371 +#, fuzzy, c-format +msgid "creating directory %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "" +"je po¾adovaná in¹talácia viacerých súborov, ale posledný argument %s nie je " +"adresár" + +#: src/install.c:435 +#, fuzzy, c-format +msgid "%s is a directory" +msgstr "%s existuje, ale nie je adresárom" + +#: src/install.c:495 +#, fuzzy, c-format +msgid "cannot obtain time stamps for %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/install.c:507 +#, fuzzy, c-format +msgid "cannot set time stamps for %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/install.c:528 +#, fuzzy +msgid "fork system call failed" +msgstr "veµkos» bloku" + +#: src/install.c:532 +#, fuzzy +msgid "cannot run strip" +msgstr "nie je mo¾né spusti» %s" + +#: src/install.c:539 +#, fuzzy +msgid "strip failed" +msgstr "zlyhal stat" + +#: src/install.c:560 +#, fuzzy, c-format +msgid "invalid user %s" +msgstr "neplatný pou¾ívateµ" + +#: src/install.c:578 +#, fuzzy, c-format +msgid "invalid group %s" +msgstr "neplatná skupina" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"Pou¾itie: %s [VO¥BA]... ZDROJ CIE¥ (1. formát)\n" +" alebo: %s [VO¥BA]... ZDROJ... ADRESÁR (2. formát)\n" +" alebo: %s -d [VO¥BA]... ADRESÁR... (3. formát)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +#, fuzzy +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"Prípona zálo¾ných súborov je ~, pokiaµ nie je nastavená voµbou --suffix " +"alebo\n" +"premennou SIMPLE_BACKUP_SUFFIX. Spôsob tvorby zálo¾ných kópií súborov mô¾e " +"by»\n" +"nastavený premennou VERSION_CONTROL, prípustné hodnoty sú:\n" +"\n" +" none, off nikdy nevytvára» zálo¾né kópie (ani ak bolo zadané --" +"backup)\n" +" numbered, t tvori» èíslované zálo¾né kópie\n" +" existing, nil tvori» èíslované, pokiaµ u¾ èíslované zálo¾né kópie\n" +" existujú, inak tvori» jednoduché\n" +" simple, never v¾dy tvori» jednoduché zálo¾né kópie súborov \n" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ]... SÚBOR1 SÚBOR2\n" + +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" + +#: src/join.c:165 +#, fuzzy +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" +" Porovnáva súbory ¥AVÝ_SÚBOR a PRAVÝ_SÚBOR, ktorých riadky sú usporiadané\n" +"podµa nejakého kµúèa, riadok po riadku. Výstupom sú tri ståpce, riadky " +"obsiahnuté\n" +"iba v µavom súbore, riadky obsiahnuté iba v pravom súbore, riadky spoloèné\n" +"obom súborom.\n" +"\n" +" -1 neukazuje riadky obsiahnuté iba v µavom súbore\n" +" -2 neukazuje riadky obsiahnuté iba v pravom súbore\n" +" -3 neukazuje riadky spoloèné obom súborom\n" +" --help vypí¹e tuto nápovedu a skonèí\n" +" --version vypí¹e oznaèenie verzie a skonèí\n" + +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" + +#: src/join.c:645 +#, c-format +msgid "invalid field specifier: `%s'" +msgstr "chybne zadaná polo¾ka: `%s'" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, c-format +msgid "invalid field number: `%s'" +msgstr "chybné èíslo polo¾ky: `%s'" + +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "chybné èíslo súboru v popise polo¾ky: `%s'" + +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "chybné èíslo polo¾ky pre súbor 1: `%s'" + +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "chybné èíslo polo¾ky pre súbor 2: `%s'" + +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "príli¹ mnoho argumentov, ktoré nie sú prepínaèmi" + +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "príli¹ málo argumentov, ktoré nie sú prepínaèmi" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "obidva súbory nemô¾u by» ¹tandardným vstupom" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" + +#: src/kill.c:106 +#, fuzzy +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" +"Kopírova» ¹tandardný vstup do ka¾dého SÚBORU a tie¾ na ¹tandardný výstup.\n" +"\n" +" -a, --append prida» na koniec SÚBORU, neprepisova»\n" +" -i, --ignore-interrupts ignorova» signály preru¹enia\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" + +#: src/kill.c:163 +#, fuzzy, c-format +msgid "%s: invalid signal" +msgstr "%s: chybné PID" + +#: src/kill.c:262 +#, fuzzy, c-format +msgid "missing operand after `%s'" +msgstr "%s: po `%c' je oèakávané celé èíslo" + +#: src/kill.c:274 +#, fuzzy, c-format +msgid "%s: invalid process id" +msgstr "%s: chybný vzor" + +#: src/kill.c:327 +#, fuzzy, c-format +msgid "invalid option -- %c" +msgstr "%s: chybný prepínaè -- %c\n" + +#: src/kill.c:336 +#, fuzzy, c-format +msgid "%s: multiple signals specified" +msgstr "\\%c: neprípustná sekvencia" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "" + +#: src/link.c:51 +#, fuzzy, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"Pou¾itie: %s [SÚBOR]...\n" +" alebo: %s [VO¥BA]\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" + +#: src/link.c:98 +#, fuzzy, c-format +msgid "cannot create link %s to %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "%s: varovanie: pevný odkaz na symbolický odkaz nie je prenositeµný" + +#: src/ln.c:174 +#, fuzzy, c-format +msgid "%s: hard link not allowed for directory" +msgstr "`%s' nie je adresár" + +#: src/ln.c:246 +#, fuzzy, c-format +msgid "%s: cannot overwrite directory" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "%s: prepísa» %s? " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: Súbor existuje" + +#: src/ln.c:304 +#, c-format +msgid "create symbolic link %s to %s" +msgstr "vytvori» symbolický odkaz %s na %s" + +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "vytvori» pevný odkaz %s na %s" + +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "vytváram symbolický odkaz %s na %s" + +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "vytváram pevný odkaz %s na %s" + +#: src/ln.c:339 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"Pou¾itie: %s [VO¥BA]... KONIEC\n" +" alebo: %s [VO¥BA]... ZAÈIATOK KONIEC\n" +" alebo: %s [VO¥BA]... ZAÈIATOK KROK LAST\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" + +#: src/ln.c:521 +#, fuzzy, c-format +msgid "%s: specified target directory is not a directory" +msgstr "%s existuje, ale nie je adresárom" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "pri vytváraní viacerých odkazov musí by» posledným argumentom adresár" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ] [SÚBOR]...\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" + +#: src/logname.c:99 +#, fuzzy, c-format +msgid "%s: no login name\n" +msgstr "%s: chybné èíslo" + +#: src/ls.c:673 +#, fuzzy +msgid "%b %e %Y" +msgstr "%b %e %H:%M %Y" + +#: src/ls.c:681 +#, fuzzy +msgid "%b %e %H:%M" +msgstr "%b %e %H:%M %Y" + +#: src/ls.c:1307 +#, fuzzy, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "" +"ignorujem chybný rozostup tabulátorov v premennej prostredia TABSIZE: %s" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "ignorujem chybnú ¹írku v premennej prostredia COLUMNS: %s" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "" +"ignorujem chybný rozostup tabulátorov v premennej prostredia TABSIZE: %s" + +#: src/ls.c:1482 +#, fuzzy, c-format +msgid "invalid line width: %s" +msgstr "chybné èíslo polo¾ky: `%s'" + +#: src/ls.c:1556 +#, fuzzy, c-format +msgid "invalid tab size: %s" +msgstr "chybný typ re»azca `%s'" + +#: src/ls.c:1722 +#, fuzzy, c-format +msgid "invalid time style format %s" +msgstr "chybný argument %s pre `%s'" + +#: src/ls.c:2054 +#, fuzzy, c-format +msgid "unrecognized prefix: %s" +msgstr "neznámy prepínaè `-%c'" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "nezrozumiteµná hodnota v premennej prostredia LS_COLORS" + +#: src/ls.c:2145 +#, fuzzy, c-format +msgid "cannot determine device and inode of %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/ls.c:2155 +#, fuzzy, c-format +msgid "not listing already-listed directory: %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/ls.c:2208 src/remove.c:929 +#, fuzzy, c-format +msgid "reading directory %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/ls.c:2603 +#, fuzzy, c-format +msgid "cannot compare file names %s and %s" +msgstr "nie je mo¾né vytvori» odkaz %s" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" + +#: src/ls.c:3784 +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" + +#: src/ls.c:3799 +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" + +#: src/ls.c:3831 +#, fuzzy +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -g (ignorované)\n" +" -G, --no-group nevypisova» informácie o skupinách\n" +" -h, --human-readable veµkosti v µahko èitateµnom formáte\n" +" (napr. 1K 234M 2G)\n" +" --si podobne, ale pou¾i» mocniny 1000 namiesto 1024\n" +" -H zatiaµ to isté ako --si; èoskoro sa zmení\n" +" kvôli kompatibilite s POSIX-om\n" +" --indicator-style=©TÝL pripoji» indikátor ¹týlu ©TÝL k názvom:\n" +" none (predvoµba), classify (-F), file-type (-" +"p)\n" +" -i, --inode ku ka¾dému súboru vypísa» aj èíslo jeho i-uzlu\n" +" -I, --ignore=VZOR nevypisova» súbory vyhovujúce shellovému VZORu\n" +" -k, --kilobytes ako --block-size=1024\n" +" -l pou¾i» dlhý formát\n" +" -L, --dereference v prípade symbolických odkazov vypísa» " +"vlastnosti,\n" +" súboru, na ktorý odkaz odkazuje\n" +" -m oddeµova» súbory èiarkami\n" +" -n, --numeric-uid-gid namiesto mena vlastníka (UID) a skupiny (GID)\n" +" vypísa» èísla\n" +" -N, --literal nespracováva» riadiace znaky v názvoch súborov\n" +" -o pou¾i» dlhý formát bez informácií o skupinách\n" +" -p, --file-type doplni» znak urèujúci typ ka¾dého souboru " +"(jeden z /=@|)\n" +" -q, --hide-control-chars namiesto negrafických znakov vypísa» '?'\n" +" --show-control-chars vypísa» aj negrafické znaku (predvolené)\n" +" -Q, --quote-name vlo¾i» názvy do úvodzoviek (citácia)\n" +" --quoting-style=SLOVO citova» mená ¹týlom SLOVO:\n" +" literal, shell, shell-always, c, escape\n" +" -r, --reverse usporiada» v opaènom poradí\n" +" -R, --recursive vypísa» adresáre rekurzívne\n" +" -s, --size vypísa» veµkos» ka¾dého súboru v blokoch\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "%s: %lu: nesprávne sformátovaný riadok %s kontrolného súètu" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "%s: ZLYHALO otvorenie alebo èítanie\n" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "CHYBNÝ" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "V PORIADKU" + +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%s: chyba pri èítaní" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "%s: nenájdené správne sformátované riadky %s kontrolného súètu" + +# that's a case where cases are needed in Slavic languages +# podanych/podanego are plural/singular Genitive, I moved them to +# next messages hoping it doesn't spoil anything - rzm +# +# see also md5sum.c:430. it is somewhat surprising that we need +# such things only in two places in this file - rzm 960902 +# +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "VAROVANIE: %d z %d %s nie je mo¾né èíta»" + +# in Genitive - rzm +#: src/md5sum.c:473 +msgid "file" +msgstr "zadaného súboru" + +# in Genitive - rzm +#: src/md5sum.c:473 +msgid "files" +msgstr "zadaných súborov" + +# once more `of computed checksum(s)' is `wyliczonej sumy' or +# `wyliczonych sum' in sing. or plural Genitive; how to handle? - rzm +# +# it is better now but the word `wyliczonych' should also change according +# to the number too (what a horrible language! - but there are worse) +# so I'm moving it to the changing part; fortunately it is Genitive +# so we don't need to use two forms for plural (depending on number: nn[234] +# are different that the other ones) - rzm 960902 +# +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "VAROVANIE: %d z %d %s NEBOLI vyhodnotené" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "kontrolného súètu" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "kontrolných súètov" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" +"prepínaèe --binary a --text sú bezvýznamné pri overovaní kontrolných súètov" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "prepínaèe --string a --check sa vzájomne vyluèujú" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "prepínaè --status má význam iba pri overovaní kontrolných súètov" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "prepínaè --warn má význam iba pri overovaní kontrolných súètov" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "pri pou¾ití prepínaèa --string nemô¾u by» zadané súbory" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "iba jeden argument mô¾e by» zadaný pri pou¾ití prepínaèa --check" + +#: src/mkdir.c:61 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ] [SÚBOR]...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" + +#: src/mkdir.c:69 +#, fuzzy +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +"Vytvori» ADRESÁR(e), pokiaµ u¾ neexistuje.\n" +"\n" +" -m, --mode=PRÁVA nastavi» prístupové práva (ako s 'chmod'), nie rwxrwxrwx " +"-\n" +" umask\n" +" -p, --parents existencia nie je chybou, vytvori» rodièovské adresáre,\n" +" pokiaµ je to potrebné.\n" +" --verbose vypísa» správu o ka¾dom vytváranom adresári\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" + +#: src/mkdir.c:113 +#, fuzzy, c-format +msgid "created directory %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/mkdir.c:190 +#, fuzzy, c-format +msgid "cannot set permissions of directory %s" +msgstr "nie je mo¾né zmeni» práva %s" + +#: src/mkfifo.c:55 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ] [SÚBOR]...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" + +#: src/mkfifo.c:63 src/mknod.c:64 +#, fuzzy +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" +"Vytvori» pomenované rúry (FIFO) s menami NÁZOV.\n" +"\n" +" -m, --mode=PRÁVA nastavi» prístupové práva (ako s 'chmod'), nie a=rw - " +"umask\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "tento systém nepodporuje rúry" + +#: src/mkfifo.c:123 src/mknod.c:127 +#, fuzzy +msgid "invalid mode" +msgstr "neplatné èíslo" + +#: src/mkfifo.c:142 +#, fuzzy, c-format +msgid "cannot set permissions of fifo %s" +msgstr "nie je mo¾né zmeni» práva %s" + +#: src/mknod.c:55 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ]... MNO®INA1 [MNO®INA2]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" + +#: src/mknod.c:76 +#, fuzzy +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"Vytvori» ¹peciálny súbor NÁZOV zadaného TYPu.\n" +"\n" +" -m, --mode=PRÁVA nastavi» prístupové práva (ako s 'chmod'), nie a=rw - " +"umask\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" +"\n" +"HLAVNÉ a VED¥AJ©IE èíslo nie je povolené pri TYPe p, inak je povinné.\n" +"TYP mô¾e by»:\n" +"\n" +" b vytvori» blokový (vyrovnávaný) ¹peciálny súbor\n" +" c, u vytvori» znakový (nevyrovnávaný) ¹peciálny súbor\n" +" p vytvori» rúru (FIFO)\n" + +#: src/mknod.c:141 +#, fuzzy +msgid "wrong number of arguments" +msgstr "príli¹ málo argumentov" + +#: src/mknod.c:153 +#, fuzzy +msgid "block special files not supported" +msgstr "veµkos» bloku" + +#: src/mknod.c:162 +#, fuzzy +msgid "character special files not supported" +msgstr "pozícia znaku je nula" + +#: src/mknod.c:171 +#, fuzzy +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" +"pri vytváraní ¹peciálneho blokového súboru musí by» zadané\n" +"hlavné a vedµaj¹ie èíslo zariadenia" + +#: src/mknod.c:186 +#, fuzzy, c-format +msgid "invalid major device number %s" +msgstr "chybné poèiatoèné èíslo riadku: `%s'" + +#: src/mknod.c:191 +#, fuzzy, c-format +msgid "invalid minor device number %s" +msgstr "chybné poèiatoèné èíslo riadku: `%s'" + +#: src/mknod.c:196 +#, fuzzy, c-format +msgid "invalid device %s %s" +msgstr "chybný argument %s pre `%s'" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "pre rúry nie je potrebné zadáva» hlavné a vedµaj¹ie èíslo zariadenia" + +#: src/mknod.c:231 +#, fuzzy, c-format +msgid "cannot set permissions of %s" +msgstr "nie je mo¾né zmeni» práva %s" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" + +#: src/mv.c:339 +#, fuzzy +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Premenovanie ZDROJa na CIE¥ alebo premiestnenie ZDROJa(ov) do ADRESÁRa.\n" +"\n" +" --backup[=CONTROL] vytvori» zálo¾nú kópiu ka¾dého existujúceho\n" +" CIE¥a\n" +" -b ako --backup, ale nepovoµuje argument\n" +" -f, --force prepísa» existujúce ciele bez opýtania\n" +" -i, --interactive pred prepísaním súboru sa opýta»\n" +" --strip-trailing-slashes odstráni» koncové lomítka z ka¾dého\n" +" ZDROJa\n" +" -S, --suffix=PRÍPONA zmeni» obvyklú príponu zálo¾ných kópií\n" +" --target-directory=ADR presunú» v¹etky ZDROJe do ADResára\n" +" -u, --update premiestni» iba nov¹ie a úplne nové soubory\n" +" -v, --verbose vypisova» informácie o priebehu\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" +"\n" + +#: src/mv.c:467 +#, fuzzy, c-format +msgid "specified target, %s is not a directory" +msgstr "%s existuje, ale nie je adresárom" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "" +"pri premiestòovaní viacerých súborov musí by» posledným argumentom adresár" + +#: src/nice.c:67 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ] [SÚBOR]...\n" + +#: src/nice.c:68 +#, fuzzy +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" +"Spusti» PRÍKAZ s upravenou plánovacou prioritou.\n" +"Bez PRÍKAZU vypí¹e aktuálnu prioritu. ÚPRAVA je implicitne 10.\n" +"Rozsah je od -20 (najvy¹¹ia priorita) po 19 (najni¾¹ia).\n" +"\n" +" -ÚPRAVA najprv pripoèíta» k priorite ÚPRAVU\n" +" -n, --adjustment=ÚPRAVA ako -ADJUST\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" + +#: src/nice.c:109 src/nice.c:122 +#, fuzzy, c-format +msgid "invalid option `%s'" +msgstr "chybný typ re»azca `%s'" + +#: src/nice.c:147 +#, fuzzy, c-format +msgid "invalid priority `%s'" +msgstr "chybné èíslo polo¾ky: `%s'" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "s úpravou musí by» zadaný príkaz" + +#: src/nice.c:178 src/nice.c:187 +#, fuzzy +msgid "cannot get priority" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/nice.c:192 +#, fuzzy +msgid "cannot set priority" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/nl.c:188 +#, fuzzy +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" +" Vypí¹e ka¾dý SÚBOR na ¹tandardný výstup. Posledný riadok ako prvý.\n" +"Pokiaµ SÚBOR nebude zadaný alebo bude -, bude èítaný ¹tandardný vstup.\n" +"\n" +" -b, --before pripojí oddeµovaè riadkov pred riadky namiesto\n" +" za ne\n" +" -r, --regex interpretuje oddeµovaè ako regulárny výraz\n" +" -s, --separator=RE«AZEC pou¾ije RE«AZEC ako oddeµovaè namiesto nového " +"riadku\n" +" --help vypí¹e túto nápovedu a skonèí\n" +" --version vypí¹e oznaèenie verzie a skonèí\n" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" + +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "chybné poèiatoèné èíslo riadku: `%s'" + +#: src/nl.c:514 +#, c-format +msgid "invalid line number increment: `%s'" +msgstr "chybná hodnota prírastku èísla riadku: `%s'" + +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "chybný poèet prázdnych riadkov: `%s'" + +#: src/nl.c:541 +#, c-format +msgid "invalid line number field width: `%s'" +msgstr "chybná ¹írka èísla riadku: `%s'" + +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"Pou¾itie: %s [PREPÍNAÈ]... [SÚBOR]...\n" +" alebo: %s --traditional [SÚBOR] [[+]POSUN [[+]NÁVESTIE]]\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" + +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "chybný typ re»azca `%s'" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "chybný typ `%s'; tento systém nemá %lu-bytové celé èísla" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" +"chybný typ `%s'; tento systém nemá %lu-bytové èísla s plávajúcou radovou\n" +"èiarkou" + +#: src/od.c:917 +#, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "znak `%c' v re»azci typu `%s' je chybný" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "nemo¾no preskoèi» koniec kombinovaného vstupu" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "posunutie v starom ¹týle" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "" +"chybný základ výstupnej adresy `%c'; musí to by» jeden zo znakov [doxn]" + +#: src/od.c:1717 +msgid "skip argument" +msgstr "preskakujem argument" + +#: src/od.c:1725 +msgid "limit argument" +msgstr "argument orezaný" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "minimálna då¾ka re»azca" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "%s je príli¹ veµa" + +#: src/od.c:1804 +msgid "width specification" +msgstr "specifikácia ¹írky" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "pri vypisovaní re»azcov nemo¾no zada» typ" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "chybný druhý argument '%s' v starom formáte" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "v kompatibilnom móde musia by» posledné dva argumenty posuny" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "v kompatibilnom móde nemô¾u by» viac ako tri argumenty" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "varovanie: chybná ¹írka %lu; namiesto nej pou¾ijem %d" + +# should this be translated? - rzm +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "%d: formát='%s' ¹írka=%d\n" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "¹tandardný vstup je uzavrený" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" + +#: src/pathchk.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ]... [SÚBOR]...\n" + +#: src/pathchk.c:147 +#, fuzzy +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" +"Diagnostikova» neprenositeµné prvky v NÁZVE.\n" +"\n" +" -p, --portability skontrolova» pre v¹etky POSIX systémy, nielen tento\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" + +#: src/pathchk.c:237 +#, fuzzy, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "veµkos» tabulátoru obsahuje neplatný znak" + +#: src/pathchk.c:257 +#, fuzzy, c-format +msgid "`%s' is not a directory" +msgstr "%s existuje, ale nie je adresárom" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "adresár `%s' nie je mo¾né prehµadáva»" + +#: src/pathchk.c:355 +#, fuzzy, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "názov `%s' má då¾ku %d; presahuje limit %d" + +#: src/pathchk.c:381 +#, fuzzy, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "cesta `%s' má då¾ku %d; presahuje limit %d" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "Prihlasovacie meno: " + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "V reáli: " + +#: src/pinky.c:298 +msgid "???\n" +msgstr "???\n" + +#: src/pinky.c:318 +msgid "Directory: " +msgstr "Adresár: " + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "Shell: " + +#: src/pinky.c:341 +msgid "Project: " +msgstr "Projekt: " + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "Plán:\n" + +#: src/pinky.c:386 +msgid "Login" +msgstr "Login" + +#: src/pinky.c:388 +#, fuzzy +msgid "Name" +msgstr " Meno" + +#: src/pinky.c:389 +#, fuzzy +msgid " TTY" +msgstr "TTY" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "Neèin" + +#: src/pinky.c:392 +msgid "When" +msgstr "Kedy" + +#: src/pinky.c:395 +msgid "Where" +msgstr "Kde " + +#: src/pinky.c:469 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ]... [SÚBOR]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" + +#: src/pinky.c:574 +#, fuzzy +msgid "no username specified; at least one must be specified when using -l" +msgstr "pri pou¾ití prepínaèa --string nemô¾u by» zadané súbory" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "" + +# c-format +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "`--pages' - chybný rozsah èísiel stránok: `%s'" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "`--pages' - chybné èíslo poèiatoènej stránky: `%s'" + +#: src/pr.c:829 +#, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "`--pages' - chybné èíslo koncovej stránky: `%s'" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "" +"`--pages' - èíslo poèiatoènej stránky je väè¹ie ako èíslo koncovej stránky" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "`--pages=PRVÁ_STRÁNKA[:POSLEDNÁ_STRÁNKA]' chýbajúci parameter" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "`--columns=STÅPCOV' neplatný poèet ståpcov: `%s'" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "`-l DÅ®KA_STRÁNKY' chybný poèet riadkov na stranu: `%s'" + +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "`-N ÈÍSLO'chybné èíslo poèiatoèného riadku: `%s'" + +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "`-o OKRAJ' chybný posun riadku: `%s'" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "`-w ©ÍRKA_STRÁNKY' - chybný poèet riadkov na stranu: `%s'" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "`-W ©ÍRKA_STRÁNKY' - chybný poèet riadkov na stranu: `%s'" + +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "%b %e %H:%M %Y" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "Pri výpise vedµa seba, nie je mo¾né zada» poèet ståpcov." + +# wzdluz? - rzm +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "Nie je mo¾né zada» výpis súborov po sebe a vedµa seba." + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "`-%c' nadbytoèné znaky alebo zlé èíslo v argumente: `%s'" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "¹írka stránky je príli¹ malá" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "èíslo poèiatoènej stránky je väè¹ie ako poèet stránok: `%d'" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "Stránka %d" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr "" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" + +#: src/pr.c:2849 +#, fuzzy +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" +" Porovnáva súbory ¥AVÝ_SÚBOR a PRAVÝ_SÚBOR, ktorých riadky sú usporiadané\n" +"podµa nejakého kµúèa, riadok po riadku. Výstupom sú tri ståpce, riadky " +"obsiahnuté\n" +"iba v µavom súbore, riadky obsiahnuté iba v pravom súbore, riadky spoloèné\n" +"obom súborom.\n" +"\n" +" -1 neukazuje riadky obsiahnuté iba v µavom súbore\n" +" -2 neukazuje riadky obsiahnuté iba v pravom súbore\n" +" -3 neukazuje riadky spoloèné obom súborom\n" +" --help vypí¹e tuto nápovedu a skonèí\n" +" --version vypí¹e oznaèenie verzie a skonèí\n" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" + +#: src/printenv.c:43 +msgid "David MacKenzie and Richard Mlynarik" +msgstr "" + +#: src/printenv.c:63 +#, fuzzy, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" +"Pou¾itie: %s [PREMENNÁ]...\n" +" alebo: %s VO¥BA\n" +"Pokiaµ nie je zadaná PREMENNÁ, vypísa» v¹etky.\n" +"\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "" +"varovanie: %s: znak (znaky) nasledujúce za znakovou kon¹tantou boli " +"ignorované" + +#: src/printf.c:100 +#, fuzzy, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"Pou¾itie: %s [SÚBOR]...\n" +" alebo: %s [VO¥BA]\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "%s: oèakávaná numerická hodnota" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "%s: hodnota nebola úplne prevedená" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "v sekvencii chýba hexadecimálne èíslo" + +#: src/printf.c:292 +#, fuzzy, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "chybná trieda znaku `%s'" + +#: src/printf.c:472 +#, fuzzy, c-format +msgid "invalid field width: %s" +msgstr "chybné èíslo polo¾ky: `%s'" + +#: src/printf.c:498 +#, fuzzy, c-format +msgid "invalid precision: %s" +msgstr "chybný typ re»azca `%s'" + +#: src/printf.c:519 +#, fuzzy, c-format +msgid "%%%c: invalid directive" +msgstr "%s: chybný vzor" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "Pou¾itie: %s formát [argument...]\n" + +#: src/printf.c:594 +#, fuzzy, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "varovanie: nadbytoèné argumenty boli ignorované" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "%s (pre regvýr `%s')" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"Pou¾itie: %s [PREPÍNAÈ]... [VSTUP]... (bez -G)\n" +" alebo: %s -G [PREPÍNAÈ]... [VSTUP [VÝSTUP]]\n" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" + +#: src/ptx.c:1978 +#, fuzzy +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" +" Tento program je voµné programové vybavenie; mô¾ete ho ¹íri» a " +"modifikova»\n" +"podµa podmienok V¹eobecnej verejnej licencie GNU, vydávanej Free Software\n" +"Foundation; a to buï verzie 2 tejto licencie alebo (podµa vá¹ho uvá¾enia),\n" +"ktorejkoµvek neskor¹ej verzie.\n" +"\n" +" Tento program je roz¹irovaný v nádeji, ¾e bude u¾itoèný, av¹ak BEZ " +"AKEJKO¥VEK\n" +"ZÁRUKY; neposkytujú sa ani odvodené záruky PREDAJNOSTI alebo VHODNOSTI PRE\n" +"NEJAKÝ KONKRÉTNY ÚÈEL. Ïaµ¹ie podrobnosti nájdete vo V¹eobecnej verejnej\n" +"licencii GNU.\n" +"\n" +" Kópia V¹eobecnej verejnej licencie GNU mala by» dodaná spolu s týmto\n" +"programom; pokiaµ sa tak nestalo, napí¹te do Free Software Foundation, " +"Inc.,\n" +"59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" + +#: src/ptx.c:1992 +#, fuzzy +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" +" Tento program je voµné programové vybavenie; mô¾ete ho ¹íri» a " +"modifikova»\n" +"podµa podmienok V¹eobecnej verejnej licencie GNU, vydávanej Free Software\n" +"Foundation; a to buï verzie 2 tejto licencie alebo (podµa vá¹ho uvá¾enia),\n" +"ktorejkoµvek neskor¹ej verzie.\n" +"\n" +" Tento program je roz¹irovaný v nádeji, ¾e bude u¾itoèný, av¹ak BEZ " +"AKEJKO¥VEK\n" +"ZÁRUKY; neposkytujú sa ani odvodené záruky PREDAJNOSTI alebo VHODNOSTI PRE\n" +"NEJAKÝ KONKRÉTNY ÚÈEL. Ïaµ¹ie podrobnosti nájdete vo V¹eobecnej verejnej\n" +"licencii GNU.\n" +"\n" +" Kópia V¹eobecnej verejnej licencie GNU mala by» dodaná spolu s týmto\n" +"programom; pokiaµ sa tak nestalo, napí¹te do Free Software Foundation, " +"Inc.,\n" +"59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" + +#: src/pwd.c:74 +#, fuzzy +msgid "ignoring non-option arguments" +msgstr "príli¹ mnoho argumentov, ktoré nie sú prepínaèmi" + +#: src/pwd.c:78 +#, fuzzy +msgid "cannot get current directory" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/readlink.c:69 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ]... [SÚBOR]...\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" + +#: src/remove.c:394 +#, fuzzy, c-format +msgid "cannot chdir from %s to .." +msgstr "nie je mo¾né vojs» do adresára, %s" + +#: src/remove.c:407 src/remove.c:488 +#, fuzzy, c-format +msgid "cannot lstat `.' in %s" +msgstr "nie je mo¾né spusti» %s" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, fuzzy, c-format +msgid "cannot lstat %s" +msgstr "nie je mo¾né nastavi» dátum" + +#: src/remove.c:603 +#, fuzzy, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/remove.c:604 +#, fuzzy, c-format +msgid "%s: descend into directory %s? " +msgstr "nie je mo¾né vojs» do adresára, %s" + +#: src/remove.c:614 +#, fuzzy, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: zmaza» súbor chránený proti zápisu %s? " + +#: src/remove.c:615 +#, fuzzy, c-format +msgid "%s: remove %s %s? " +msgstr "%s: zmaza» %s? " + +#: src/remove.c:639 +#, fuzzy, c-format +msgid "removed %s\n" +msgstr "ma¾em %s\n" + +#: src/remove.c:654 src/remove.c:1059 +#, fuzzy, c-format +msgid "removed directory: %s\n" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, fuzzy, c-format +msgid "cannot remove directory %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/remove.c:815 +#, fuzzy, c-format +msgid "cannot open directory %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/remove.c:896 src/remove.c:1002 +#, fuzzy, c-format +msgid "cannot chdir from %s to %s" +msgstr "nie je mo¾né vojs» do adresára, %s" + +#: src/remove.c:904 +#, fuzzy, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +"%s: VAROVANIE: Zacyklená ¹truktúra adresárov.\n" +"To skoro urèite znamená, ¾e máte po¹kodený súborový systém.\n" +"INFORMUJTE VÁ©HO SPRÁVCU SYSTÉMU.\n" +"Nasledujúce adresáre majú rovnaké èíslo i-uzlu:\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "nie je mo¾né zmaza» `.' alebo `..'" + +#: src/rm.c:60 +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "" + +#: src/rm.c:99 src/touch.c:244 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ]... [SÚBOR]...\n" + +#: src/rm.c:100 +#, fuzzy +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Zmaza» SÚBOR(y).\n" +"\n" +" -d, --directory zmaza» adresár, aj pokiaµ nie je prázdny (iba\n" +" superu¾ívateµ)\n" +" -f, --force ignorova» neexistujúce soubory, nikdy sa nepýta»\n" +" -i, --interactive pred ka¾dým zmazaním sa opýta»\n" +" -r, -R, --recursive rekurzívne zmaza» obsah adresárov\n" +" -v, --verbose vypisova» infomácie o priebehu\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" +"\n" +"Súbor s menom zaèínajúcim `-' (napr. `-foo') zma¾ete nasledovne:\n" +" %s -- -foo\n" +" %s ./-foo\n" +"\n" +"Pamätajte na to, ¾e pri zmazaní súboru pomocou rm je obvykle mo¾né obsah\n" +"daného súboru obnovi». Pokiaµ sa chete lep¹ie uisti», ¾e obsah nebude\n" +"mo¾né obnovi», uvá¾te pou¾itie pomôcky shred.\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, fuzzy, c-format +msgid "removing directory, %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/rmdir.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ]... [SÚBOR]...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" + +#: src/rmdir.c:154 +#, fuzzy +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +"Zmaza» ADRESÁR(e), pokiaµ sú prázdne.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignorova» ka¾dú chybu spôsobenú výluène tým, ¾e\n" +" adresár nie je prázdny\n" +" -p, --parents zmaza» adresár a potom v¹etky elementy cesty k nemu.\n" +" Napr. `rmdir -p a/b/c' je podobný ako `rmdir a/b/c a/b " +"a'.\n" +" --verbose vypísa» správu pre ka¾dý spracovaný adresár\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" + +#: src/seq.c:82 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"Pou¾itie: %s [PREPÍNAÈ]... [VSTUP]... (bez -G)\n" +" alebo: %s -G [PREPÍNAÈ]... [VSTUP [VÝSTUP]]\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" + +#: src/seq.c:96 +#, fuzzy, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" +"Vypísa» èísla od ZAÈIATKU do KONCA s prírastkom KROK.\n" +"\n" +" -f, --format FORMÁT pou¾i» printf(3) FORMÁT (implicitne %%g)\n" +" -s, --separator RE«AZEC pou¾i» RE«AZEC pre oddelenie èísiel (implicitne " +"\\n)\n" +" -w, --equal-width vyrovnaj då¾ky pou¾itím úvodných núl\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" +"\n" +"Pokiaµ je ZAÈIATOK alebo KONIEC vynechaný, pou¾ije sa 1.\n" +"ZAÈIATOK, KONIEC a KROK sú interpretované ako èísla s pohyblivou rádovou " +"èiarkou.\n" +"KROK by mal by» kladný, pokiaµ je ZAÈIATOK men¹í ako KONIEC, inak záporný.\n" +"Pokiaµ je zadaný, FORMÁT musí obsahova» práve jeden z výstupných\n" +"printf-formátov pre èísla v pohyblivej rádovej èiarke %%e, %%f alebo %%g.\n" + +#: src/seq.c:119 +#, fuzzy, c-format +msgid "invalid floating point argument: %s" +msgstr "chybné poèiatoèné èíslo riadku: `%s'" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" +"pokiaµ je poèiatoèná hodnota väè¹ia ako koneèná,\n" +"krok musí by» záporný" + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" +"pokiaµ je poèiatoèná hodnota men¹ia ako koneèná,\n" +"krok musí by» kladný" + +#: src/seq.c:423 +#, fuzzy, c-format +msgid "invalid format string: `%s'" +msgstr "chybný typ re»azca `%s'" + +#: src/seq.c:445 +#, fuzzy +msgid "format string may not be specified when printing equal width strings" +msgstr "pri vypisovaní re»azcov nemo¾no zada» typ" + +#: src/shred.c:160 +#, fuzzy, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ] [SÚBOR]...\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" + +#: src/shred.c:174 +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" + +#: src/shred.c:808 +#, fuzzy, c-format +msgid "%s: cannot rewind" +msgstr "nie je mo¾né spusti» %s" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "%s: prechod %lu/%lu (%s)..." + +#: src/shred.c:868 +#, fuzzy, c-format +msgid "%s: error writing at offset %s" +msgstr "chyba pri zápise %s" + +#: src/shred.c:897 +#, fuzzy, c-format +msgid "%s: file too large" +msgstr "%s: súbor je príli¹ dlhý" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "%s: prechod %lu/%lu (%s)...%s" + +#: src/shred.c:936 +#, fuzzy, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "%s: prechod %lu/%lu (%s)...%s/%s" + +#: src/shred.c:1195 +#, fuzzy, c-format +msgid "%s: invalid file type" +msgstr "%s: chybný poèet riadkov" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s: súbor má zápornú då¾ku" + +#: src/shred.c:1265 +#, fuzzy, c-format +msgid "%s: error truncating" +msgstr "%s: súbor bol skrátený" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "%s: nie je mo¾né skartova» deskriptor urèený iba pre pridávanie" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "%s: ma¾e sa" + +#: src/shred.c:1412 +#, fuzzy, c-format +msgid "%s: renamed to %s" +msgstr "%s: chyba pri èítaní" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s: zmazaný" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "%s: nie je mo¾né zmaza»" + +#: src/shred.c:1551 +#, fuzzy, c-format +msgid "%s: invalid number of passes" +msgstr "%s: neplatný poèet sekúnd" + +#: src/shred.c:1568 +#, fuzzy, c-format +msgid "%s: invalid file size" +msgstr "%s: chybný poèet riadkov" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "" + +#: src/sleep.c:52 +#, fuzzy, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" +"Pou¾itie: %s ÈÍSLO[PRÍPONA]...\n" +" alebo: %s VO¥BA\n" +"Poèka» POÈET sekúnd.\n" +"PRÍPONA mô¾e by» s pre sekundy, m pre minúty, h pre hodiny alebo d pre dni.\n" +"Na rozdiel od väè¹iny implementácií vy¾adujúcich, aby ÈÍSLO bolo celé, tu\n" +"mô¾e by» zadané aj ako desatinné.\n" +"\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" + +#: src/sleep.c:155 +#, fuzzy, c-format +msgid "invalid time interval `%s'" +msgstr "chybné èíslo polo¾ky: `%s'" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "nie je mo¾né preèíta» hodiny reálneho èasu" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" + +#: src/sort.c:289 +#, fuzzy +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" +"Spojí v¹etky SÚBORy a zotriedený výsledok zapí¹e na ¹tandardný výstup.\n" +"\n" +"Voµby zoraïovania:\n" +"\n" +" -b, --ignore-leading-blanks ignoruje úvodné medzery\n" +" -d, --dictionary-order zohµadòuje iba medzery a alfanumerické znaky\n" +" -f, --ignore-case zamení v kµúèoch malé písmená za veµké\n" +" -g, --general-numeric-sort porovnáva podµa v¹eobecnej veµkosti èísiel\n" +" -i, --ignore-nonprinting zohµadòuje iba tlaèiteµné znaky\n" +" -M, --month-sort porovná podµa mesiacov (neznámy) < `JAN' <\n" +" ... < `DEC'\n" +" -n, --numeric-sort porovná podµa re»azcovej veµkosti èísiel\n" +" -r, --reverse obrátený výsledok porovnávania\n" + +#: src/sort.c:294 +#, fuzzy +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" +"Spojí v¹etky SÚBORy a zotriedený výsledok zapí¹e na ¹tandardný výstup.\n" +"\n" +"Voµby zoraïovania:\n" +"\n" +" -b, --ignore-leading-blanks ignoruje úvodné medzery\n" +" -d, --dictionary-order zohµadòuje iba medzery a alfanumerické znaky\n" +" -f, --ignore-case zamení v kµúèoch malé písmená za veµké\n" +" -g, --general-numeric-sort porovnáva podµa v¹eobecnej veµkosti èísiel\n" +" -i, --ignore-nonprinting zohµadòuje iba tlaèiteµné znaky\n" +" -M, --month-sort porovná podµa mesiacov (neznámy) < `JAN' <\n" +" ... < `DEC'\n" +" -n, --numeric-sort porovná podµa re»azcovej veµkosti èísiel\n" +" -r, --reverse obrátený výsledok porovnávania\n" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" + +#: src/sort.c:324 +#, fuzzy +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" +"POZ je F[.C][PREPÍNAÈE], kde F je èíslo polo¾ky a C pozícia znaku v " +"polo¾ke,\n" +"obidvoje poèítané od 1 s -k, od 0 so zastaranou formou. PREPÍNAÈE sú " +"vytvorené\n" +"z jedného alebo viacerých písmen radenia, ktoré zablokujú globálne " +"nastavenie\n" +"pre tento kµúè. Ak nebude kµúè zadaný, ako kµúè sa pou¾ije celý riadok.\n" +"Ak nebude SÚBOR zadaný alebo bude -, bude èítaný ¹tandardný vstup.\n" +"\n" +"VE¥KOS« mô¾e by» nasledovaná nasledovnými príponami násobkov:\n" +"%% 1%% pamäti, b 1, k 1024 (implicitné), atï pre M, G, T, P, E, Z, Y.\n" +"\n" +"*** VAROVANIE ***\n" +"Nastavené národné prostredie ovplyvòuje triedenie. Pokiaµ si ¾eláte.\n" +"triedenie s pou¾itím tradièných bajtových hodnôt znakov, nastavte LC_ALL=C.\n" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" + +#: src/sort.c:444 +msgid "cannot create temporary file" +msgstr "nie je mo¾né vytvori» doèasný súbor" + +#: src/sort.c:467 +msgid "open failed" +msgstr "zlyhalo otvorenie" + +#: src/sort.c:487 src/sort.c:2496 +msgid "close failed" +msgstr "zlyhalo zatvorenie súboru" + +#: src/sort.c:495 +msgid "write failed" +msgstr "chyba pri zápise" + +#: src/sort.c:641 +msgid "sort size" +msgstr "veµkos» triedenia" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "zlyhal stat" + +#: src/sort.c:972 +msgid "read failed" +msgstr "zlyhalo èítanie" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "%s: %s:%s: nezotriediteµné: " + +#: src/sort.c:1574 +msgid "standard error" +msgstr "¹tandardná chyba" + +#: src/sort.c:2032 +#, c-format +msgid "%s: invalid field specification `%s'" +msgstr "%s: chybne zadaná polo¾ka `%s'" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "%s: poèet `%.*s' príli¹ veµký" + +#: src/sort.c:2064 +#, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "%s: chybný poèet na zaèiatku `%s'" + +#: src/sort.c:2298 +msgid "invalid number after `-'" +msgstr "chybné èíslo za `-'" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +msgid "invalid number after `.'" +msgstr "chybné èíslo za `.'" + +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "neoèakávaný znak v ¹pecifikácii polo¾ky" + +#: src/sort.c:2338 +msgid "invalid number at field start" +msgstr "chybné èíslo na zaèiatku polo¾ky" + +#: src/sort.c:2342 src/sort.c:2370 +msgid "field number is zero" +msgstr "èíslo polo¾ky je nula" + +#: src/sort.c:2351 +msgid "character offset is zero" +msgstr "pozícia znaku je nula" + +#: src/sort.c:2366 +msgid "invalid number after `,'" +msgstr "chybné èíslo za `,'" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "viacznakový tabulátor `%s'" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "nadbytoèný operand `%s' nie je povolený, pokiaµ je pou¾ité -c" + +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ] [SÚBOR [PREDPONA]]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" + +#: src/split.c:108 +#, fuzzy, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" +" Rozdelí SÚBOR do súborov PREDPONAaa, PREDPONAab, ... s pevnou då¾kou.\n" +"Implicitná PREDPONA je `x'. Pokiaµ SÚBOR nebude zadaný alebo bude -, bude " +"èítaný\n" +"¹tandardný vstup.\n" +"\n" +" -b, --bytes=VE¥KOS« zapí¹e VE¥KOST bytov do výstupného súboru\n" +" -C, --line-bytes=VE¥KOS« zapí¹e najviac VE¥KOST bytov na výstupný riadok\n" +" -l, --lines=POÈET zapí¹e POÈET riadkov do výstupného súboru\n" +" -POÈET to isté ako -l POÈET\n" +" --verbose pred otvorením ka¾dého výstupného súboru vypí¹e\n" +" o tom oznámenie na ¹tandardný výstup\n" +" --help vypí¹e túto nápovedu a skonèí\n" +" --version vypí¹e oznaèenei verzie a skonèí\n" +"\n" +"VE¥KOS« mô¾e ma» násobiacu príponu: b - 512, k - 1024, m - 1 Mega.\n" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "" + +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "vytváram súbor `%s'\n" + +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "súbor sa nedá rozdeli» viacerými spôsobmi" + +#: src/split.c:394 +#, fuzzy, c-format +msgid "%s: invalid suffix length" +msgstr "%s: chybný poèet riadkov" + +#: src/split.c:408 src/split.c:434 +#, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: chybný poèet bytov" + +#: src/split.c:421 +#, c-format +msgid "%s: invalid number of lines" +msgstr "%s: chybný poèet riadkov" + +#: src/split.c:470 +#, fuzzy, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "varovanie: chybná ¹írka %lu; namiesto nej pou¾ijem %d" + +#: src/split.c:483 +msgid "invalid number" +msgstr "neplatné èíslo" + +#: src/stat.c:326 +#, fuzzy +msgid "*** invalid date/time ***" +msgstr "chybné èíslo polo¾ky: `%s'" + +#: src/stat.c:608 +#, fuzzy, c-format +msgid "cannot read file system information for %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/stat.c:684 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ] [SÚBOR]...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" +"Pou¾itie: %s [-F ZARIADENIE] [--file=ZARIADENIE] [NASTAVENIE]...\n" +" alebo: %s [-F ZARIADENIE] [--file=ZARIADENIE] [-a|--all]\n" +" alebo: %s [-F ZARIADENIE] [--file=ZARIADENIE] [-g|--save]\n" + +#: src/stty.c:504 +#, fuzzy +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" +"Nastavi» alebo zmeni» charakteristiku terminálu.\n" +"\n" +" -a, --all vypísa» v¹etky aktuálne nastavenia vo formáte\n" +" èitateµnom pre èloveka\n" +" -g, --save vypísa» v¹etky aktuálne nastavenia vo formáte\n" +" èitateµnom pre stty\n" +" -F, --file=ZARIADENIE otvori» a pou¾íva» zadané zariadenie namiesto\n" +" ¹tandardného vstupu\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" +"\n" +"Voliteµné - pred NASTAVENÍM oznaèuje negáciu. Hviezdièka oznaèuje " +"nastavenia,\n" +"ktoré nie sú súèas»ou POSIX-u. Konkrétny systém urèuje, ktoré nastavenia\n" +"sú prístupné.\n" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" + +#: src/stty.c:570 +#, fuzzy +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" +"\n" +"Riadiace nastavenia:\n" +" [-]clocal zakáza» signály riadenia modemu\n" +" [-]cread povoli» príjem vstupu\n" +"* [-]crtscts povoli» RTS/CTS protokol\n" +" csN nastavi» då¾ku znaku na N bitov, N in [5..8]\n" +" [-]cstopb pou¾íva» dva stop bity (jeden s `-')\n" +" [-]hup posla» signál zavesenia, keï posledný proces zatvorí " +"terminál\n" +" [-]hupcl ako [-]hup\n" +" [-]parenb generova» paritný bit na výstupa a oèakáva» ho na vstupe\n" +" [-]parodd nastavi» nepárnu paritu (aj s `-')\n" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:608 +#, fuzzy +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" +"\n" +"Nastavenia výstupu:\n" +"* bsN oneskorenie znaku kroku spä», N je z [0..1]\n" +"* crN oneskorenie znaku prechodu na zaèiatok riadku, N je z " +"[0..3]\n" +"* ffN oneskorenie znaku novej stránky, N je z [0..1]\n" +"* nlN oneskorenie znaku nového riadku, N je z [0..1]\n" +"* [-]ocrnl preklada» znaky návratu na zaèiatok riadku na nové riadky\n" +"* [-]ofdel pre vyplnenie pou¾í» znaky vymazania namiesto nulových " +"znakov\n" +"* [-]ofill pou¾í» výplòové znaku namiesto oneskorení\n" +"* [-]olcuc preklada» malé znaky na veµké\n" +"* [-]onlcr preklada» nové riadky na znaky návratu na zaèiatok riadku\n" +"* [-]onlret znak nového riadku prejde na zaèiatok riadku\n" +"* [-]onocr nevraca» sa na zaèiatok riadku z prvého ståpca\n" +" [-]opost následne spracováva» výstup\n" +"* tabN oneskorenie horizontálneho tabulátora, N je z [0..3]\n" +"* tabs ako tab0\n" +"* -tabs ako tab3\n" +"* vtN oneskorenie vertikálneho tabulátora, N je z [0..1]\n" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" +"\n" +"Ovládanie terminálu pripojeného na ¹tandardný vstup. Bez argumentov\n" +"vypí¹e baudovú rýchlos», linkovú disciplínu a odchylky od stty sane.\n" +"V nastaveniach sa ZNAK ¹pecifikuje tak ako je, alebo kódovaný spôsobom\n" +"^c, 0x37, 0177 alebo 127; pre zákaz ¹peciálneho znaku treba pou¾i»\n" +"^- alebo undef.\n" + +#: src/stty.c:787 +#, fuzzy +msgid "only one device may be specified" +msgstr "mô¾e by» zadaný iba jeden argument" + +#: src/stty.c:882 +#, fuzzy +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "prepínaèe --string a --check sa vzájomne vyluèujú" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "" +"nastavenia nemô¾u by» ¹pecifikované, pokiaµ je po¾adovaný výpis nastavení" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "%s: nie je mo¾né opusti» neblokovací re¾im" + +#: src/stty.c:957 src/stty.c:1064 +#, fuzzy, c-format +msgid "invalid argument `%s'" +msgstr "chybný argument %s pre `%s'" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, fuzzy, c-format +msgid "missing argument to `%s'" +msgstr "nejednoznaèný argument %s pre `%s'" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "%s: nie je mo¾né vykona» v¹etky po¾adované operácie" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "new_mode: mode\n" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "%s: neexistuje informácia o veµkosti tohoto zariadenia" + +#: src/stty.c:1944 +#, fuzzy, c-format +msgid "invalid integer argument `%s'" +msgstr "chybná hodnota prírastku èísla riadku: `%s'" + +#: src/su.c:289 +msgid "Password:" +msgstr "Heslo:" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "getpass: nie je mo¾né otvori» /dev/tty" + +#: src/su.c:350 +#, fuzzy +msgid "cannot set groups" +msgstr "nie je mo¾né vynecha» pou¾ívateµa aj skupinu" + +#: src/su.c:354 +#, fuzzy +msgid "cannot set group id" +msgstr "nie je mo¾né vynecha» pou¾ívateµa aj skupinu" + +#: src/su.c:356 +#, fuzzy +msgid "cannot set user id" +msgstr "nie je mo¾né vynecha» pou¾ívateµa aj skupinu" + +#: src/su.c:437 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ]... [SÚBOR]...\n" + +#: src/su.c:438 +#, fuzzy +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" +"Zmeni» efektívne id pou¾ívateµa a skupiny na id POU®ÍVATE¥A.\n" +"\n" +" -, -l, --login urobi» tento shell prihlasovacím\n" +" -c, --commmand=PRÍKAZ odovzda» shellu PRÍKAZ pomocou -c\n" +" -f, --fast odovzda» shellu -f (pre csh alebo tcsh)\n" +" -m, --preserve-environment zachova» premenné prostredia\n" +" -p same as -m\n" +" -s, --shell=SHELL spusti» SHELL, pokiaµ to /etc/shells " +"povoµuje\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" +"\n" +"Samotné - implikuje -l. Ak POU®ÍVATE¥ nebol zadaný, predpokladá sa root.\n" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "pou¾ívateµ %s neexistuje" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "nesprávne heslo" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "pou¾itý obmedzený shell %s" + +#: src/su.c:580 +#, fuzzy, c-format +msgid "warning: cannot change directory to %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "" + +#: src/sum.c:64 +#, fuzzy +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" +"Ku ka¾dému SÚBORu vypí¹e kontrolný súèet a poèet blokov.\n" +"\n" +" -r pou¾ije algoritmus BSD a bloky veµkosti 1 KB\n" +" -s, --sysv pou¾ije algoritmus System V a bloky veµkosti 512 bytov\n" +" --help vypí¹e tuto nápovedu a skonèí\n" +" --version vypí¹e oznaèenie verzie a skonèí\n" +"\n" +"Pokiaµ SÚBOR nebude zadaný alebo bude -, bude èítaný ¹tandardný vstup.\n" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" + +#: src/sync.c:70 src/tty.c:112 +#, fuzzy +msgid "ignoring all arguments" +msgstr "príli¹ veµa argumentov" + +#: src/sys2.h:492 +#, fuzzy +msgid " --help display this help and exit\n" +msgstr "" +"Vypí¹e CRC kontrolný súèet a då¾ku v bytoch ka¾dého SÚBORu.\n" +"\n" +" --help vypí¹e túto nápovedu a skonèí\n" +" --version vypí¹e oznaèenie verzie a skonèí\n" + +#: src/sys2.h:494 +#, fuzzy +msgid " --version output version information and exit\n" +msgstr "" +"Vypí¹e CRC kontrolný súèet a då¾ku v bytoch ka¾dého SÚBORu.\n" +"\n" +" --help vypí¹e túto nápovedu a skonèí\n" +" --version vypí¹e oznaèenie verzie a skonèí\n" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tac.c:139 +#, fuzzy +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" +" Vypí¹e ka¾dý SÚBOR na ¹tandardný výstup. Posledný riadok ako prvý.\n" +"Pokiaµ SÚBOR nebude zadaný alebo bude -, bude èítaný ¹tandardný vstup.\n" +"\n" +" -b, --before pripojí oddeµovaè riadkov pred riadky namiesto\n" +" za ne\n" +" -r, --regex interpretuje oddeµovaè ako regulárny výraz\n" +" -s, --separator=RE«AZEC pou¾ije RE«AZEC ako oddeµovaè namiesto nového " +"riadku\n" +" --help vypí¹e túto nápovedu a skonèí\n" +" --version vypí¹e oznaèenie verzie a skonèí\n" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "stdin: chyba pri èítaní" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "oddeµovaè nemô¾e by» prázdny" + +#: src/tail.c:49 +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "" + +#: src/tail.c:238 +#, fuzzy, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +" Vypí¹e prvých 10 riadkov ka¾dého súboru na ¹tandardný výstup. S viac ako\n" +"jedným súborom, bude pred vypísaním ka¾dého uvedená hlavièka obsahujúca " +"meno\n" +"súboru. Ak SÚBOR nebude zadaný alebo bude -, bude èítaný ¹tandardný vstup.\n" +"\n" +" -c, --bytes=VE¥KOS« vypí¹e prvých VE¥KOS« bytov\n" +" -n, --lines=POÈET vypí¹e prvých POÈET riadkov namiesto prvých 10\n" +" -q, --quiet, --silent nikdy nevypisuje hlavièky s názvami súborov\n" +" -v, --verbose vypisuje hlavièky s názvami súborov v¾dy\n" +" --help vypí¹e túto nápovedu a skonèí\n" +" --version vypí¹e oznaèenie verzie a skonèí\n" +"\n" +" VE¥KOS« mô¾e ma» násobiacu príponu: b pre 512, k pre 1K, m pre 1M. Pokiaµ\n" +"prvý prepínaè bude -HODNOTA a ak bude pou¾itá násobiaca prípona, potom bude " +"braný\n" +"ako -c HODNOTA. Inak bude prepínaè braný ako -n HODNOTA.\n" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" + +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "uzatváranie %s (fd=%d)" + +#: src/tail.c:391 +#, fuzzy, c-format +msgid "%s: cannot seek to offset %s" +msgstr "ioctl na `%s' nie je mo¾né vykona»" + +#: src/tail.c:395 +#, fuzzy, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "nie je mo¾né vytvori» adresár %s" + +#: src/tail.c:400 +#, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "`%s' sa stal nedostupným" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "súbor `%s' bol nahradený iným, neumo¾òujúcim sledovanie jeho konca." + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "`%s' sa stal dostupným" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "súbor %s sa objavil. Sledovanie konca súboru pokraèuje." + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "" +"súbor %s bol nahradený iným. Sledovanie konca súboru\n" +"pokraèuje." + +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "%s: súbor bol skrátený" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "u¾ nezostávajú ¾iadne súbory" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "%s: nie je mo¾né sledova» koniec tohoto typu súboru" + +# src/tail.c:938 +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "%c: neplatný znak v zastaralom prepínaèi" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"príli¹ mnoho argumentov; Pri pou¾ití zastaralej syntaxe prepínaèa %s,\n" +"mô¾e by» uvedený iba jeden súborový argument. Rad¹ej pou¾ite\n" +"ekvivalentný prepínaè -n alebo -c." + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"Varovanie: pou¾itie dvoch alebo viacerých súborových argumentov so " +"zastaralou\n" +"syntaxou prepínaèa %s nie je prenosné. Rad¹eji pou¾ite ekvivalentný " +"prepínaè\n" +"-n alebo -c." + +#: src/tail.c:1423 +#, fuzzy, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "varovanie: chybná ¹írka %lu; namiesto nej pou¾ijem %d" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "%s je viac ako maximálna veµkos» súboru na tomto systéme" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "" +"%s: neplatné èíslo maximálneho poètu nezmenených výsledkov funkcie stat\n" +"medzi otvoreniami" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "%s: neplatné èíslo maximálneho poètu po sebe idúcich zmien veµkosti" + +#: src/tail.c:1534 +#, c-format +msgid "%s: invalid PID" +msgstr "%s: chybné PID" + +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: neplatný poèet sekúnd" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "varovanie: --retry je u¾itoèné iba pri sledovaní podµa názvu" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "" +"varovanie: PID bolo ignorované; --pid=PID je u¾itoèné iba pri nasledovaní" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "varovanie: --pid=PID nie je na tomto systéme podporované" + +#: src/tee.c:33 +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "" + +#: src/tee.c:64 +#, fuzzy +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" +"Kopírova» ¹tandardný vstup do ka¾dého SÚBORU a tie¾ na ¹tandardný výstup.\n" +"\n" +" -a, --append prida» na koniec SÚBORU, neprepisova»\n" +" -i, --ignore-interrupts ignorova» signály preru¹enia\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "oèakávaný argument\n" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "oèakávaný celoèíselný výraz %s\n" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "oèakávaný znak ')'\n" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "oèakávaný znak ')', nájdený %s\n" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "%s: oèakávaný unárny operátor\n" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "%s: oèakávaný binárny operátor\n" + +#: src/test.c:424 +msgid "before -lt" +msgstr "pred -lt" + +#: src/test.c:432 +msgid "after -lt" +msgstr "po -lt" + +#: src/test.c:446 +msgid "before -le" +msgstr "pred -le" + +#: src/test.c:453 +msgid "after -le" +msgstr "po -le" + +#: src/test.c:469 +msgid "before -gt" +msgstr "pred -gt" + +#: src/test.c:476 +msgid "after -gt" +msgstr "po -gt" + +#: src/test.c:490 +msgid "before -ge" +msgstr "pred -ge" + +#: src/test.c:497 +msgid "after -ge" +msgstr "po -ge" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "-nt neakceptuje -l\n" + +#: src/test.c:526 +msgid "before -ne" +msgstr "pred -ne" + +#: src/test.c:533 +msgid "after -ne" +msgstr "po -ne" + +#: src/test.c:549 +msgid "before -eq" +msgstr "pred -eq" + +#: src/test.c:556 +msgid "after -eq" +msgstr "po -eq" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "-ef neakceptuje -l\n" + +#: src/test.c:586 +#, fuzzy +msgid "-ot does not accept -l\n" +msgstr "-nt neakceptuje -l\n" + +#: src/test.c:593 +#, fuzzy +msgid "unknown binary operator" +msgstr "Neznáma systémová chyba" + +#: src/test.c:781 +msgid "after -t" +msgstr "po -t" + +#: src/test.c:979 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"Pou¾itie: %s [SÚBOR]...\n" +" alebo: %s [VO¥BA]\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" + +#: src/test.c:1009 +#, fuzzy +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" +"\n" +" ( VÝRAZ ) VÝRAZ je pravdivý\n" +" ! VÝRAZ VÝRAZ je nepravdivý\n" +" VÝRAZ1 -a VÝRAZ2 VÝRAZ1 aj VÝRAZ2 sú pravdivé\n" +" VÝRAZ1 -o VÝRAZ2 VÝRAZ1 alebo VÝRAZ2 je pravdivý\n" +"\n" +" [-n] RE«AZEC då¾ka RE«AZCA je nenulová\n" +" -z RE«AZEC då¾ka RE«AZCA je nulová\n" +" RE«AZEC1 = RE«AZEC2 re»azce sa rovnajú\n" +" RE«AZEC1 != RE«AZEC2 re»azce sa nerovnajú\n" +"\n" +" CELÉÈÍSLO1 -eq CELÉÈÍSLO2 CELÉÈÍSLO1 sa rovná CELÉÈÍSLO2\n" +" CELÉÈÍSLO1 -ge CELÉÈÍSLO2 CELÉÈÍSLO1 je väè¹ie alebo rové CELÉÈÍSLO2\n" +" CELÉÈÍSLO1 -gt CELÉÈÍSLO2 CELÉÈÍSLO1 je väè¹ie ako CELÉÈÍSLO2\n" +" CELÉÈÍSLO1 -le CELÉÈÍSLO2 CELÉÈÍSLO1 je men¹ie alebo rovné CELÉÈÍSLO2\n" +" CELÉÈÍSLO1 -lt CELÉÈÍSLO2 CELÉÈÍSLO1 je men¹ie ako CELÉÈÍSLO2\n" +" CELÉÈÍSLO1 -ne CELÉÈÍSLO2 CELÉÈÍSLO1 sa nerovná CELÉÈÍSLO2\n" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" +"\n" +"Pozor na to, ¾e zátvorky musia by» v shelli chránené (napr. spätnými\n" +"lomítkami. CELÉÈÍSLO mô¾e by» tie¾ -l RE«AZEC, èo sa vyhodnotí na\n" +"då¾ku RE«AZCA.\n" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "chýbajúca `]'\n" + +#: src/test.c:1125 +#, fuzzy +msgid "too many arguments\n" +msgstr "príli¹ veµa argumentov" + +#: src/touch.c:39 +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "" + +#: src/touch.c:164 src/touch.c:179 +#, fuzzy, c-format +msgid "creating %s" +msgstr "vytváram súbor `%s'\n" + +#: src/touch.c:222 +#, fuzzy, c-format +msgid "cannot touch %s" +msgstr "ioctl na `%s' nie je mo¾né vykona»" + +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "nastavujem èasy %s" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" + +#: src/touch.c:311 src/touch.c:331 +#, fuzzy, c-format +msgid "invalid date format %s" +msgstr "chybný argument %s pre `%s'" + +#: src/touch.c:355 +#, fuzzy +msgid "cannot specify times from more than one source" +msgstr "súbor sa nedá rozdeli» viacerými spôsobmi" + +#: src/touch.c:378 +#, fuzzy, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "varovanie: chybná ¹írka %lu; namiesto nej pou¾ijem %d" + +#: src/touch.c:399 +#, fuzzy +msgid "file arguments missing" +msgstr "príli¹ málo argumentov" + +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ]... MNO®INA1 [MNO®INA2]\n" + +#: src/tr.c:331 +#, fuzzy +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" +" Nahradzuje, komprimuje a/alebo ma¾e znaky zo ¹tandardného vstupu, " +"výsledok\n" +"je zapisovaný na ¹tandardný výstup.\n" +"\n" +" -c, --complement najprv vytvorí doplnok MNO®INY1\n" +" -d, --delete iba ma¾e znaky z MNO®INY1\n" +" -s, --squeeze-repeats nahradí postupnosti jedného znaku iba jedným\n" +" -t, --truncate-set1 najprv skráti MNO®INU1 na då¾ku MNO®INY2\n" +" --help vypí¹e túto nápovedu a skonèí\n" +" --version vypí¹e oznaèenie verzie a skonèí\n" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" + +#: src/tr.c:379 +#, fuzzy +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" +"\n" +" Nahradenie nastane, ak nie je zadaný prepínaè -d a sú zadané obe\n" +"mno¾iny. -t mô¾e by» pou¾ité iba pri nahradzovaní. V prípade potreby je\n" +"MNO®INA2 roz¹írená na då¾ku MNO®INY1 opakovaním posledného znaku. " +"Prebytoèné\n" +"znaky MNO®INY2 sú ignorované. Iba pri [:lower:] a [:upper:] je garantované,\n" +"¾e budú rozpísané vzostupne; pri pou¾ití v MNO®INE2 pri nahradzovaní mô¾u " +"by»\n" +"pou¾ívané iba v pároch pre zmenu veµkosti písmen. -s pou¾íva MNO®INU2\n" +"pri nahradzovaní alebo mazaní a kompresia je vykonaná a¾ po tomto. Inak -s\n" +"pou¾íva MNO®INU1.\n" + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" + +#: src/tr.c:391 +#, fuzzy +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" +"\n" +" Nahradenie nastane, ak nie je zadaný prepínaè -d a sú zadané obe\n" +"mno¾iny. -t mô¾e by» pou¾ité iba pri nahradzovaní. V prípade potreby je\n" +"MNO®INA2 roz¹írená na då¾ku MNO®INY1 opakovaním posledného znaku. " +"Prebytoèné\n" +"znaky MNO®INY2 sú ignorované. Iba pri [:lower:] a [:upper:] je garantované,\n" +"¾e budú rozpísané vzostupne; pri pou¾ití v MNO®INE2 pri nahradzovaní mô¾u " +"by»\n" +"pou¾ívané iba v pároch pre zmenu veµkosti písmen. -s pou¾íva MNO®INU2\n" +"pri nahradzovaní alebo mazaní a kompresia je vykonaná a¾ po tomto. Inak -s\n" +"pou¾íva MNO®INU1.\n" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" +"varovanie: nejednoznaèný osmièkový zápis \\%c%c%c bude\n" +"\tinterpretovaný ako 2-bytová sekvencia \\0%c%c, `%c'" + +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "chybne pou¾ité spätné lomítko na konci re»azca" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "chybný zápis `\\%c'" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "konce rozsahu `%s-%s' sú v obrátenom poradí" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "chybný poèet opakovania `%s' v kon¹trukcii [c*n]" + +#: src/tr.c:999 +#, fuzzy +msgid "missing character class name `[::]'" +msgstr "chybná trieda znaku `%s'" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "" + +#: src/tr.c:1025 +#, c-format +msgid "invalid character class `%s'" +msgstr "chybná trieda znaku `%s'" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "%s: operand v triede [=c=] musí by» jediný znak" + +# should it be string1 or SET1? +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "zadanie opakovania [c*] nemô¾e by» v MNO®INE1" + +# string2 or SET2? +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "opakovanie znaku [c*] mô¾e by» v MNO®INE2 iba raz" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "výraz [=c=] nemô¾e by» v MNO®INE2 pri nahradzovaní" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "pokiaµ MNO®INA1 nie je skracovaná, potom MNO®INA2 nesmie by» prázdna" + +# ? - rzm +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" +"pri nahradzovaní s doplnkom mno¾iny znakov, MNO®INA2 musí mapov»t v¹etky\n" +"znaky z tejto oblasti do jedného" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" +"pri nahradzovaní mô¾u by» v MNO®INE2 iba triedy znakov [:upper:]\n" +"a [:lower:]" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "výraz [c*] mô¾e by» v MNO®INE2 iba pri nahradzovaní" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "obidve mno¾iny musia by» zadané pri nahradzovaní" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "" +"dve mno¾iny musia by» zadané pri mazaní a komprimovaní opakujúcich sa znakov" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" +"iba jedna mno¾ina mô¾e by» zadaná pri mazaní bez komprimovania\n" +"opakujúcich sa znakov" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "" +"najmenej jedna mno¾ina musí by» zadaná pri komprimovaní opakujúcich sa znakov" + +# ? - rzm +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "nezarovnané(á) kon¹trukcie(a) [:upper:] a/alebo [:lower:]" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" +"nie je mo¾né identifikova» mapovanie: pri nahradzovaní, µubovoµná " +"kon¹trukcia\n" +"[:lower:] alebo [:upper:] v MNO®INE1 musí by» zarovnaná so zodpovedajúcou\n" +"kon¹trukciou ([:upper:] alebo [:lower:]) v MNO®INE2." + +#: src/true.c:34 +#, fuzzy, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Pou¾itie: %s [ignorované argumenty]...\n" +" alebo: %s VO¥BA\n" +"Skonèi» s výstupným kódom indikujúcim úspech.\n" +"\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" + +#: src/tsort.c:97 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Pou¾itie: %s [PREPÍNAÈ] [SÚBOR]\n" +" Výstupom je totálne zotriedený zoznam v¹etkých polo¾iek zo v¹etkých\n" +"vstupných riadkov, na ktorých sú polo¾ky zotriedené, vstupného SÚBORu.\n" +"Jednotlivé polo¾ky sú na riadku oddelené medzerou.\n" +" Pokiaµ nie je SÚBOR zadaný, bude èítaný ¹tandardný vstup.\n" +"\n" +" --help vypí¹e túto nápovedu a skonèí\n" +" --version vypí¹e oznaèenie verzie a skonèí\n" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "%s: vstup obsahuje cyklus:" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "mô¾e by» zadaný iba jeden argument" + +#: src/tty.c:63 +#, fuzzy +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" +"Vypísa» názov súboru terminálu spojeného so ¹tandardným vstupom.\n" +"\n" +" -s, --silent, --quiet nevypisova» niè, iba vráti» výstupný stav\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "nie je terminál" + +#: src/uname.c:111 +#, fuzzy +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" +"Vypísa» niektoré systémové informácie. ®iadna VO¥BA zodpovedá -s.\n" +"\n" +" -a, --all vypísa» v¹etky informácie\n" +" -m, --machine vypísa» typ (hardware) poèítaèa\n" +" -n, --nodename vypísa» názov poèítaèa v sieti\n" +" -r, --release vypísa» verziu jadra operaèného systému\n" +" -s, --sysname vypísa» názov operaèného systému\n" +" -p, --processor vypísa» typ procesora\n" +" -v vypísa» verziu zostavenia operaèného systému\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" + +#: src/uname.c:226 +#, fuzzy +msgid "cannot get system name" +msgstr "nie je mo¾né vytvori» doèasný súbor" + +#: src/unexpand.c:379 +#, fuzzy +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +" V ka¾dom SÚBORe konvertuje medzery na tabulátory a výsledok vypisuje\n" +"na ¹tandardný výstup. Ak nebude SÚBOR zadaný alebo bude -, bude èítaný\n" +"¹tandardný vstup.\n" +"\n" +" -a, --all konvertuje v¹etky medzery, namiesto iba úvodných\n" +" -t, --tabs=POÈET nastaví tabulátor na POÈET medzier (8)\n" +" -t, --tabs=ZOZNAM pou¾ije èiarkami oddelený zoznam pre pozície " +"tabulátorov\n" +" --help vypí¹e tuto nápovedu a skonèí\n" +" --version vypí¹e oznaèenie verzie a skonèí\n" +"\n" +"Namiesto -t POÈET alebo -t ZOZNAM je mo¾né pou¾i» -POÈET alebo -ZOZNAM.\n" + +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" + +#: src/unexpand.c:464 +#, fuzzy +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "varovanie: chybná ¹írka %lu; namiesto nej pou¾ijem %d" + +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ]... [VSTUP [VÝSTUP]]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr "" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" + +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "chyba pri èítaní %s" + +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "chyba pri zápise %s" + +#: src/uniq.c:433 src/uniq.c:450 +#, fuzzy, c-format +msgid "extra operand `%s'" +msgstr "nadbytoèný operand `%s' nie je povolený, pokiaµ je pou¾ité -c" + +#: src/uniq.c:473 src/uniq.c:498 +#, fuzzy +msgid "invalid number of fields to skip" +msgstr "chybný poèet polo¾iek na preskoèenie: `%s'" + +# bytes to skip? we were talking about chars? - rzm +#: src/uniq.c:507 +#, fuzzy +msgid "invalid number of bytes to skip" +msgstr "chybný poèet znakov na preskoèenie: `%s'" + +#: src/uniq.c:516 +#, fuzzy +msgid "invalid number of bytes to compare" +msgstr "chybný poèet znakov pre porovnanie: `%s'" + +#: src/uniq.c:530 +#, fuzzy, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "varovanie: chybná ¹írka %lu; namiesto nej pou¾ijem %d" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "" +"výpis v¹etkých opakujúcich sa riadkov a poèítadla opakovania nemá zmysel" + +#: src/unlink.c:51 +#, fuzzy, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"Pou¾itie: %s [SÚBOR]...\n" +" alebo: %s [VO¥BA]\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" + +#: src/unlink.c:99 +#, fuzzy, c-format +msgid "cannot unlink %s" +msgstr "ioctl na `%s' nie je mo¾né vykona»" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "nie je mo¾né zisti» èas zavedenia systému" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr " %2d:%02d%s be¾í " + +#: src/uptime.c:140 +msgid "am" +msgstr " " + +#: src/uptime.c:140 +msgid "pm" +msgstr " " + +#: src/uptime.c:142 +#, fuzzy, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "deò" +msgstr[1] "deò" + +#: src/uptime.c:144 +#, fuzzy, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "neplatný pou¾ívateµ" +msgstr[1] "neplatný pou¾ívateµ" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr ", priemerná zá»a¾: %.2f" + +#: src/uptime.c:191 src/users.c:118 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ]... [SÚBOR]...\n" + +#: src/uptime.c:192 +#, fuzzy, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Vypísa» aktuálny èas, èas od spustenia systému, poèet pou¾ívateµov\n" +"v systéme a priemerný poèet úloh vo fronte za poslednú minútu,\n" +"5 minút a 15 minút.\n" +"Pokiaµ nie je zadaný SÚBOR, pou¾i» %s. %s ako SÚBOR je obvyklý.\n" +"\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" + +#: src/users.c:35 +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "" + +#: src/users.c:119 +#, fuzzy, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Vypísa», kto je momentálne prihlásený podµa SÚBORU.\n" +"Pokiaµ nie je zadaný SÚBOR, pou¾i» %s. %s ako SÚBOR je obvyklý.\n" +"\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "" + +#: src/wc.c:129 +#, fuzzy +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" +" Ku ka¾dému SÚBORu vypí¹e poèet riadkov, slov a bytov. Ak bude zadaný viac\n" +"ako jeden SÚBOR, vypí¹e aj celkové údaje. Pokiaµ SÚBOR nebude zadaný alebo\n" +"bude -, bude èítaný ¹tandardný vstup.\n" +"\n" +" -c, --bytes vypí¹e poèet bytov\n" +" -m, --chars vypí¹e poèet znakov\n" +" -l, --lines vypí¹e poèet riadkov\n" +" -L, --max-line-length vypí¹e då¾ku najdlh¹ieho riadku\n" +" -w, --words vypí¹e poèet slov\n" +" --help vypí¹e túto nápovedu a skonèí\n" +" --version vypí¹e oznaèenie verzie a skonèí\n" + +#: src/wc.c:137 +#, fuzzy +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" +"Vypí¹e CRC kontrolný súèet a då¾ku v bytoch ka¾dého SÚBORu.\n" +"\n" +" --help vypí¹e túto nápovedu a skonèí\n" +" --version vypí¹e oznaèenie verzie a skonèí\n" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "" + +#: src/who.c:223 +msgid " old " +msgstr " dávno " + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "" + +#: src/who.c:446 +msgid "clock change" +msgstr "" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" +"\n" +"# pou¾ívateµov=%u\n" + +#: src/who.c:498 +msgid "NAME" +msgstr "" + +#: src/who.c:498 +msgid "LINE" +msgstr "TERM" + +#: src/who.c:498 +msgid "TIME" +msgstr "" + +#: src/who.c:498 +#, fuzzy +msgid "IDLE" +msgstr "CHYBNÝ" + +#: src/who.c:498 +msgid "PID" +msgstr "" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "" + +#: src/who.c:499 +msgid "EXIT" +msgstr "" + +#: src/who.c:574 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "Pou¾itie: %s [PREPÍNAÈ]... SÚBOR1 SÚBOR2\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" + +#: src/whoami.c:53 +#, fuzzy +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" +"Vypísa» meno pou¾ívateµa spojené s aktuálnym efektívnym id pou¾ívateµa.\n" +"Rovnaké ako id -un.\n" +"\n" +" --help vypísa» túto pomoc a skonèi»\n" +" --version vypísa» informáciu o verzii a skonèi»\n" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "%s: nie je mo¾né zisti» meno pou¾ívateµa pre UID %u\n" + +#: src/yes.c:49 +#, fuzzy, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"Pou¾itie: %s [SÚBOR]...\n" +" alebo: %s [VO¥BA]\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" + +#, fuzzy +#~ msgid "\\%c: invalid escape" +#~ msgstr "%s: chybný vzor" + +#, fuzzy +#~ msgid "program error" +#~ msgstr "chyba pri èítaní" + +#~ msgid " Type" +#~ msgstr " Typ" + +#, fuzzy +#~ msgid "cannot convert time" +#~ msgstr "nie je mo¾né nastavi» dátum" + +#, fuzzy +#~ msgid "cannot format time" +#~ msgstr "nie je mo¾né spusti» %s" + +#, fuzzy +#~ msgid "cannot change to `..' from directory %s" +#~ msgstr "nie je mo¾né vojs» do adresára, %s" + +#, fuzzy +#~ msgid "missing file arguments" +#~ msgstr "príli¹ málo argumentov" + +#, fuzzy +#~ msgid "environment variable, QUOTING_STYLE" +#~ msgstr "" +#~ "ignorujem chybný rozostup tabulátorov v premennej prostredia TABSIZE: %s" + +# src/tail.c:968 +#~ msgid "%s: is so large that it is not representable" +#~ msgstr "%s: je tak veµký, ¾e nie je reprezentovateµný" + +#, fuzzy +#~ msgid "cannot execute %s" +#~ msgstr "nie je mo¾né vytvori» adresár %s" + +#, fuzzy +#~ msgid "Try %s --help' for more information.\n" +#~ msgstr "Viac informácií získate príkazom `%s --help'.\n" + +#, fuzzy +#~ msgid "preserving permissions for %s" +#~ msgstr "nie je mo¾né zmeni» práva %s" + +#, fuzzy +#~ msgid "cannot lstat `.'" +#~ msgstr "nie je mo¾né nastavi» dátum" + +#, fuzzy +#~ msgid "closing directory %s" +#~ msgstr "nie je mo¾né vojs» do adresára, %s" + +#, fuzzy +#~ msgid "%s: remove directory %s? " +#~ msgstr "nie je mo¾né vytvori» adresár %s" + +#~ msgid "%s: directory %s is write protected; descend into it anyway? " +#~ msgstr "" +#~ "%s: adresár %s je chránený proti zápisu; zostúpi» napriek tomu do neho? " + +#~ msgid "removing all entries of directory %s\n" +#~ msgstr "ma¾em v¹etky záznamy adresára `%s'\n" + +#~ msgid "continue? " +#~ msgstr "pokraèova»? " + +#, fuzzy +#~ msgid "cannot change back to directory %s via `..'" +#~ msgstr "nie je mo¾né vojs» do adresára, %s" + +#, fuzzy +#~ msgid "%s: remove directory %s%s? " +#~ msgstr "nie je mo¾né vytvori» adresár %s" + +#~ msgid " (might be nonempty)" +#~ msgstr " (mô¾e by» neprázdny)" + +#, fuzzy +#~ msgid "removing the directory itself: %s\n" +#~ msgstr "varovanie: nie je mo¾né zmeni» adresár na %s" + +#, fuzzy +#~ msgid "" +#~ "ERROR: the source file %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after opening it), the numbers\n" +#~ "are %lu/%lu. That means that while this program was running,\n" +#~ "the file was replaced with another one. Skipping this file." +#~ msgstr "" +#~ "CHYBA: adresár %s mal pôvodne èíslo zariadenia/i-uzlu %lu/%lu,\n" +#~ "ale teraz (po vojdení do neho prostredníctvom chdir) sú èísla\n" +#~ "pre `.' %lu/%lu. To znamená, ¾e poèas behu rm bol adresár buï\n" +#~ "vymenený za iný, alebo nahradený odkazom na iný adresár." + +#~ msgid "" +#~ "ERROR: the directory %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after a chdir into it), the numbers for `.'\n" +#~ "are %lu/%lu. That means that while rm was running, the directory\n" +#~ "was replaced with either another directory or a link to another directory." +#~ msgstr "" +#~ "CHYBA: adresár %s mal pôvodne èíslo zariadenia/i-uzlu %lu/%lu,\n" +#~ "ale teraz (po vojdení do neho prostredníctvom chdir) sú èísla\n" +#~ "pre `.' %lu/%lu. To znamená, ¾e poèas behu rm bol adresár buï\n" +#~ "vymenený za iný, alebo nahradený odkazom na iný adresár." + +#, fuzzy +#~ msgid "" +#~ "ERROR: the directory %s initially had device/inode\n" +#~ "numbers %lu/%lu, but now (after changing into at least one subdirectory\n" +#~ "and changing back via `..'), the numbers for `.' are %lu/%lu.\n" +#~ "That means that while rm was running, a partially-removed subdirectory\n" +#~ "was moved to a different position in the file system hierarchy." +#~ msgstr "" +#~ "CHYBA: adresár %s mal pôvodne èíslo zariadenia/i-uzlu %lu/%lu,\n" +#~ "ale teraz (po vojdení do neho prostredníctvom chdir) sú èísla\n" +#~ "pre `.' %lu/%lu. To znamená, ¾e poèas behu rm bol adresár buï\n" +#~ "vymenený za iný, alebo nahradený odkazom na iný adresár." + +#, fuzzy +#~ msgid " or: %s [-acm] MMDDhhmm[YY] FILE... (obsolete)\n" +#~ msgstr " alebo: %s [-acm] MMDDhhmm[RR] SÚBOR... (zastaralé)\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolný súèet a då¾ku v bytoch ka¾dého SÚBORu.\n" +#~ "\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolný súèet a då¾ku v bytoch ka¾dého SÚBORu.\n" +#~ "\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolný súèet a då¾ku v bytoch ka¾dého SÚBORu.\n" +#~ "\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolný súèet a då¾ku v bytoch ka¾dého SÚBORu.\n" +#~ "\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolný súèet a då¾ku v bytoch ka¾dého SÚBORu.\n" +#~ "\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolný súèet a då¾ku v bytoch ka¾dého SÚBORu.\n" +#~ "\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolný súèet a då¾ku v bytoch ka¾dého SÚBORu.\n" +#~ "\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolný súèet a då¾ku v bytoch ka¾dého SÚBORu.\n" +#~ "\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolný súèet a då¾ku v bytoch ka¾dého SÚBORu.\n" +#~ "\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolný súèet a då¾ku v bytoch ka¾dého SÚBORu.\n" +#~ "\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolný súèet a då¾ku v bytoch ka¾dého SÚBORu.\n" +#~ "\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" + +#~ msgid "" +#~ "Change the group membership of each FILE to GROUP.\n" +#~ "\n" +#~ " -c, --changes like verbose but report only when a change is " +#~ "made\n" +#~ " --dereference affect the referent of each symbolic link, " +#~ "rather\n" +#~ " than the symbolic link itself\n" +#~ " -h, --no-dereference affect symbolic links instead of any referenced " +#~ "file\n" +#~ " (available only on systems that can change the\n" +#~ " ownership of a symlink)\n" +#~ " -f, --silent, --quiet suppress most error messages\n" +#~ " --reference=RFILE use RFILE's group rather than the specified\n" +#~ " GROUP value\n" +#~ " -R, --recursive operate on files and directories recursively\n" +#~ " -v, --verbose output a diagnostic for every file processed\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Zmena skupinového vlastníka ka¾dého SÚBORu na SKUPINU.\n" +#~ "\n" +#~ " -c, --changes ako voµba 'verbose', ale zobrazi» iba zmeny\n" +#~ " --dereference pôsobi» na odkazované súbory namiesto na\n" +#~ " samotný odkaz\n" +#~ " -h, --no-dereference pôsobi» na symbolické odkazy namiesto na " +#~ "súbor,\n" +#~ " na ktorý odkaz odkazuje (dostupné iba na\n" +#~ " systémoch umo¾òujúcich zmeni» vlastníka\n" +#~ " symbolického odkazu)\n" +#~ " -f, --silent, --quiet potlaèi» väè¹inu chybových správ\n" +#~ " --reference=SÚBOR2 pou¾i» skupinu SÚBORU2 namiesto SKUPINy\n" +#~ " -R, --recursive rekurzívne zmeni» skupinu aj vo vnorených " +#~ "adresároch\n" +#~ " -v, --verbose vypísa» informáciu o ka¾dom spracovanom súbore\n" +#~ " --help vypísa» túto pomoc a skonèi»\n" +#~ " --version vypísa» informáciu o verzii a skonèi»\n" + +#~ msgid "" +#~ "Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +#~ "\n" +#~ " -c, --changes like verbose but report only when a change is " +#~ "made\n" +#~ " --dereference affect the referent of each symbolic link, " +#~ "rather\n" +#~ " than the symbolic link itself\n" +#~ " -h, --no-dereference affect symbolic links instead of any referenced " +#~ "file\n" +#~ " (available only on systems that can change the\n" +#~ " ownership of a symlink)\n" +#~ " --from=CURRENT_OWNER:CURRENT_GROUP\n" +#~ " change the owner and/or group of each file only " +#~ "if\n" +#~ " its current owner and/or group match those " +#~ "specified\n" +#~ " here. Either may be omitted, in which case a " +#~ "match\n" +#~ " is not required for the omitted attribute.\n" +#~ " -f, --silent, --quiet suppress most error messages\n" +#~ " --reference=RFILE use RFILE's owner and group rather than\n" +#~ " the specified OWNER:GROUP values\n" +#~ " -R, --recursive operate on files and directories recursively\n" +#~ " -v, --verbose output a diagnostic for every file processed\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Zmena vlastníka a/alebo skupinového vlastníka ka¾dého SÚBORu na VLASTNÍKa " +#~ "a/alebo SKUPINU.\n" +#~ "\n" +#~ " -c, --changes ako voµba 'verbose', ale zobrazi» iba zmeny\n" +#~ " --dereference pôsobi» na odkazovaný súbor namiesto na\n" +#~ " samotný symbolický odkaz\n" +#~ " -h, --no-dereference pôsobi» na symbolické odkazy namiesto na " +#~ "súbor,\n" +#~ " na ktorý odkaz odkazuje (dostupné iba na\n" +#~ " systémoch umo¾òujúcich zmeni» vlastníka\n" +#~ " symbolického odkazu)\n" +#~ " --from=SÚÈASNÝ_VLASTNÍK:SÚÈASNÁ_SKUPINA\n" +#~ " zmeni» vlastníka a/alebo skupinu iba pokiaµ\n" +#~ " sa súèasný vlastník a/alebo skupina zhoduje\n" +#~ " so zadanými. Vlastník alebo skupina mô¾u\n" +#~ " by» vynechané, v takom prípade sa pre\n" +#~ " vynechaný atribút zhoda nevy¾aduje.\n" +#~ " -f, --silent, --quiet potlaèi» väè¹inu chybových správ\n" +#~ " --reference=RSÚBOR pou¾i» vlastníka a skupinu RSÚBORU namiesto\n" +#~ " explicitných hodnôt VLASTNÍK:SKUPINA\n" +#~ " -R, --recursive vykona» operáciu aj vo vnorených adresároch\n" +#~ " -v, --verbose vypísa» informáciu o ka¾dom spracovanom súbore\n" +#~ " --help vypísa» túto pomoc a skonèi»\n" +#~ " --version vypísa» informáciu o verzii a skonèi»\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ " -l, --link link files instead of copying\n" +#~ " -L, --dereference always follow symbolic links\n" +#~ " -p same as --preserve=mode,ownership," +#~ "timestamps\n" +#~ " --preserve[=ATTR_LIST] preserve the specified attributes " +#~ "(default:\n" +#~ " mode,ownership,timestamps), if possible\n" +#~ " additional attributes: links, all\n" +#~ " --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +#~ " --parents append source path to DIRECTORY\n" +#~ " -P same as `--no-dereference'\n" +#~ " -r copy recursively, non-directories as " +#~ "files\n" +#~ " WARNING: use -R instead when you might " +#~ "copy\n" +#~ " special files like FIFOs or /dev/zero\n" +#~ " --remove-destination remove each existing destination file " +#~ "before\n" +#~ " attempting to open it (contrast with --" +#~ "force)\n" +#~ msgstr "" +#~ "Kópia ZDROJa do CIE¥a alebo viac ZDROJov do ADRESÁRA.\n" +#~ "\n" +#~ " -a, --archive ekvivalent volieb '-dpR'\n" +#~ " --backup[=CONTROL] vytvori» zálohu ka¾dého existujúceho " +#~ "cieµového\n" +#~ " súboru\n" +#~ " -b ako --backup, ale nepovoµuje argument\n" +#~ " -d, --no-dereference nikdy nenasledova» symbolické odkazy\n" +#~ " -f, --force pokiaµ existujúci CIE¥ nemô¾e by» " +#~ "otvorený,\n" +#~ " zmaza» ho a skúsi» znovu\n" +#~ " -i, --interactive pred prepísaním sa opýta»\n" +#~ " -H nasledova» symbolické odkazy z " +#~ "príkazového\n" +#~ " riadku\n" +#~ " -l, --link namiesto kópií vytvori» odkazy\n" +#~ " -L, --dereference v¾dy nasledova» symbolické odkazy\n" +#~ " -p, --preserve pokiaµ je to mo¾né, zachova» práva a èasy " +#~ "súborov\n" +#~ " --parents prida» cestu k zdroju k cieµovému " +#~ "ADRESÁRu\n" +#~ " -P zatiaµ to isté ako --parents; èoskoro sa\n" +#~ " ale zmení na --no-dereference kvôli\n" +#~ " kompatibilite s POSIX-om\n" +#~ " -r kopírova» rekurzívne, v¹etko èo nie je " +#~ "adresárom\n" +#~ " kopírova» ako keby to bol súbor.\n" +#~ " VAROVANIE: pokiaµ by ste mohli " +#~ "kopírova»\n" +#~ " ¹peciálne súbory ako FIFO alebo /dev/" +#~ "zero,\n" +#~ " pou¾ite -R.\n" +#~ " --remove-destination odstráni» ka¾dý existujúci CIE¥ pred " +#~ "pokusom\n" +#~ " o jeho otvorenie (porovnaj s --force)\n" + +#~ msgid "" +#~ "Copy a file, converting and formatting according to the options.\n" +#~ "\n" +#~ " bs=BYTES force ibs=BYTES and obs=BYTES\n" +#~ " cbs=BYTES convert BYTES bytes at a time\n" +#~ " conv=KEYWORDS convert the file as per the comma separated keyword " +#~ "list\n" +#~ " count=BLOCKS copy only BLOCKS input blocks\n" +#~ " ibs=BYTES read BYTES bytes at a time\n" +#~ " if=FILE read from FILE instead of stdin\n" +#~ " obs=BYTES write BYTES bytes at a time\n" +#~ " of=FILE write to FILE instead of stdout\n" +#~ " seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +#~ " skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "BLOCKS and BYTES may be followed by the following multiplicative " +#~ "suffixes:\n" +#~ "xM M, c 1, w 2, b 512, kD 1000, k 1024, MD 1,000,000, M 1,048,576,\n" +#~ "GD 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +#~ "Each KEYWORD may be:\n" +#~ "\n" +#~ " ascii from EBCDIC to ASCII\n" +#~ " ebcdic from ASCII to EBCDIC\n" +#~ " ibm from ASCII to alternated EBCDIC\n" +#~ " block pad newline-terminated records with spaces to cbs-size\n" +#~ " unblock replace trailing spaces in cbs-size records with newline\n" +#~ " lcase change upper case to lower case\n" +#~ " notrunc do not truncate the output file\n" +#~ " ucase change lower case to upper case\n" +#~ " swab swap every pair of input bytes\n" +#~ " noerror continue after read errors\n" +#~ " sync pad every input block with NULs to ibs-size; when used\n" +#~ " with block or unblock, pad with spaces rather than NULs\n" +#~ msgstr "" +#~ "Kopírovanie súboru, konverzia a formátovanie podµa volieb.\n" +#~ "\n" +#~ " bs=BAJTOV vnúti» ibs=BAJTOV a obs=BAJTOV\n" +#~ " cbs=BAJTOV konvertova» BAJTOV bajtov naraz\n" +#~ " conv=K¥ÚÈ_SLOVÁ konvertova» podµa èiarkami oddeleného zoznamu " +#~ "kµúèových slov\n" +#~ " count=BLOKOV kopírova» iba BLOKOV vstupných blokov\n" +#~ " ibs=BAJTOV èíta» BAJTOV bajtov naraz\n" +#~ " if=SÚBOR èíta» zo súboru SÚBOR namiesto zo ¹tandardného vstupu\n" +#~ " obs=BAJTOV zapisova» BAJTOV bajtov naraz\n" +#~ " of=SÚBOR zapisova» do súboru SÚBOR namiesto na ¹tandardný " +#~ "výstup\n" +#~ " seek=BLOKOV preskoèi» prvých BLOKOV výstupných blokov veµkosti " +#~ "obs\n" +#~ " skip=BLOKOV preskoèi» prvých BLOKOV vstupných blokov veµkosti ibs\n" +#~ " --help vypísa» túto pomoc a skonèi»\n" +#~ " --version vypísa» informáciu o verzii a skonèi»\n" +#~ "\n" +#~ "Poèet BAJTOV mô¾e ma» nasledovné prípony násobku:\n" +#~ "xM M, c 1, w 2, b 512, kD 1000, k 1024, MD 1 000 000, M 1 048 576,\n" +#~ "GD 1 000 000 000, G 1 073 741 824, atï. pre T, P, E, Z, Y.\n" +#~ "Ka¾dé K¥ÚÈ_SLOVO mô¾e by»:\n" +#~ "\n" +#~ " ascii z EBCDIC do ASCII\n" +#~ " ebcdic z ASCII do EBCDIC\n" +#~ " ibm z ASCII do alternatívneho EBCDIC\n" +#~ " block doplni» záznamy ukonèené zn. nového riadku medzerami do " +#~ "veµkosti cbs\n" +#~ " unblock zameni» koncové medzery v záznamoch då¾ky cbs za zn. nového\n" +#~ " riadku\n" +#~ " lcase zmeni» veµké písmená na malé\n" +#~ " notrunc neskracova» výstupný súbor\n" +#~ " ucase zmeni» malé písmená na veµké\n" +#~ " swab zameni» ka¾dý pár vstupných bajtov\n" +#~ " noerror pokraèova» aj v prípade chyby pri èítaní\n" +#~ " sync doplni» ka¾dý vstupný blok nulovými bajtami do veµkosti ibs\n" + +#~ msgid "" +#~ "Show information about the filesystem on which each FILE resides,\n" +#~ "or all filesystems by default.\n" +#~ "\n" +#~ " -a, --all include filesystems having 0 blocks\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " -H, --si likewise, but use powers of 1000 not 1024\n" +#~ " -i, --inodes list inode information instead of block usage\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l, --local limit listing to local filesystems\n" +#~ " -m, --megabytes like --block-size=1048576\n" +#~ " --no-sync do not invoke sync before getting usage info " +#~ "(default)\n" +#~ " -P, --portability use the POSIX output format\n" +#~ " --sync invoke sync before getting usage info\n" +#~ " -t, --type=TYPE limit listing to filesystems of type TYPE\n" +#~ " -T, --print-type print filesystem type\n" +#~ " -x, --exclude-type=TYPE limit listing to filesystems not of type " +#~ "TYPE\n" +#~ " -v (ignored)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Výpis informácie o súborových systémoch, v ktorých sa SÚBORy nachádzajú\n" +#~ "alebo o v¹etkých súborových systémoch.\n" +#~ "\n" +#~ " -a, --all aj súborové systémy s 0 blokmi\n" +#~ " --block-size=VE¥KOS« pou¾i» bloky då¾ky VE¥KOS« bajtov\n" +#~ " -h, --human-readable veµkosti v µahko èitateµnom formáte\n" +#~ " (napr. 1K 234M 2G)\n" +#~ " -H, --si podobne, ale pou¾i» mocniny 1000 namiesto " +#~ "1024\n" +#~ " -i, --inodes vypísa» informácie o i-uzloch namiesto " +#~ "veµkosti v blokoch\n" +#~ " -k, --kilobytes ako --block-size=1024\n" +#~ " -l, --local obmedzi» výpis na lokálne súborové systémy\n" +#~ " -m, --megabytes ako --block-size=1048576\n" +#~ " --no-sync nevykona» 'sync' pred získaním informácií " +#~ "(¹tandard)\n" +#~ " -P, --portability pou¾i» formát definovaný normou POSIX\n" +#~ " --sync vykona» 'sync' pred získaním informácií\n" +#~ " -t, --type=TYP obmedzi» výstup na súborové systémy typu TYP\n" +#~ " -T, --print-type vypísa» typ súborového systému\n" +#~ " -x, --exclude-type=TYP vo výstupe nebudú súborové systémy typu TYP\n" +#~ " -v (ignorované)\n" +#~ " --help vypísa» túto pomoc a skonèi»\n" +#~ " --version vypísa» informáciu o verzii a skonèi»\n" + +#~ msgid "" +#~ "Summarize disk usage of each FILE, recursively for directories.\n" +#~ "\n" +#~ " -a, --all write counts for all files, not just directories\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -b, --bytes print size in bytes\n" +#~ " -c, --total produce a grand total\n" +#~ " -D, --dereference-args dereference PATHs when symbolic link\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " -H, --si likewise, but use powers of 1000 not 1024\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l, --count-links count sizes many times if hard linked\n" +#~ " -L, --dereference dereference all symbolic links\n" +#~ " -m, --megabytes like --block-size=1048576\n" +#~ " -S, --separate-dirs do not include size of subdirectories\n" +#~ " -s, --summarize display only a total for each argument\n" +#~ " -x, --one-file-system skip directories on different filesystems\n" +#~ " -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +#~ "FILE.\n" +#~ " --exclude=PAT Exclude files that match PAT.\n" +#~ " --max-depth=N print the total for a directory (or file, with --" +#~ "all)\n" +#~ " only if it is N or fewer levels below the " +#~ "command\n" +#~ " line argument; --max-depth=0 is the same as\n" +#~ " --summarize\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Sumarizácia miesta na disku zabraného ka¾dým SÚBORom, adresáre prechádza\n" +#~ "rekurzívne.\n" +#~ "\n" +#~ " -a, --all vypísa» diskový priestor pre v¹etky súbory,\n" +#~ " nie iba pre adresáre\n" +#~ " --block-size=VE¥KOS« pou¾i» bloky då¾ky VE¥KOS« bajtov\n" +#~ " -b, --bytes vypísa» veµkosti v bajtoch\n" +#~ " -c, --total vypísa» aj celkový súèet\n" +#~ " -D, --dereference-args pokiaµ je ako argument zadaný symbolický\n" +#~ " odkaz, nasledova» ho\n" +#~ " -h, --human-readable veµkosti v µahko èitateµnom formáte\n" +#~ " (napr. 1K 234M 2G)\n" +#~ " -H, --si podobne, ale pou¾i» mocniny 1000 namiesto " +#~ "1024\n" +#~ " -k, --kilobytes ako --block-size=1024\n" +#~ " -l, --count-links zapoèíta» veµkosti pevných odkazov viackrát\n" +#~ " -L, --dereference nasledova» v¹etky symbolické odkazy\n" +#~ " -m, --megabytes ako --block-size=1048576\n" +#~ " -S, --separate-dirs nezapoèíta» do veµkosti adresárov veµkosti " +#~ "ich\n" +#~ " podadresárov\n" +#~ " -s, --summarize vypísa» iba celkový súèet pre ka¾dý argument\n" +#~ " -x, --one-file-system preskoèi» adresáre na iných súborových " +#~ "systémoch\n" +#~ " -X SÚBOR, --exclude-from=SÚBOR vynecha» súbory definované vzormi v " +#~ "SÚBORe\n" +#~ " --exclude=VZOR vynecha» súbory definované VZORom\n" +#~ " --max-depth=N vypísa» súèet pre adresár (alebo súbor pre --" +#~ "all)\n" +#~ " iba pokiaµ je N alebo menej úrovní pod " +#~ "argumentom\n" +#~ " príkazového riadku; --max-depth=0 je to " +#~ "isté ako\n" +#~ " --summarize\n" +#~ " --help vypísa» túto pomoc a skonèi»\n" +#~ " --version vypísa» informáciu o verzii a skonèi»\n" + +#~ msgid "" +#~ "In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +#~ "the existing DIRECTORY, while setting permission modes and owner/group.\n" +#~ "In the third format, create all components of the given DIRECTORY(ies).\n" +#~ "\n" +#~ " --backup[=CONTROL] make a backup of each existing destination file\n" +#~ " -b like --backup but does not accept an argument\n" +#~ " -c (ignored)\n" +#~ " -d, --directory treat all arguments as directory names; create all\n" +#~ " components of the specified directories\n" +#~ " -D create all leading components of DEST except the " +#~ "last,\n" +#~ " then copy SOURCE to DEST; useful in the 1st " +#~ "format\n" +#~ " -g, --group=GROUP set group ownership, instead of process' current " +#~ "group\n" +#~ " -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-" +#~ "xr-x\n" +#~ " -o, --owner=OWNER set ownership (super-user only)\n" +#~ " -p, --preserve-timestamps apply access/modification times of SOURCE " +#~ "files\n" +#~ " to corresponding destination files\n" +#~ " -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +#~ " -S, --suffix=SUFFIX override the usual backup suffix\n" +#~ " -v, --verbose print the name of each directory as it is created\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Prvé dva formáty skopírujú ZDROJ do CIE¥a alebo viac ZDROJov do " +#~ "existujúceho\n" +#~ "ADRESÁRa vrátane nastavenia práv, vlastníka a/alebo skupiny. Tretí " +#~ "formát\n" +#~ "vytvorí ADRESÁR vrátane adresárov v jeho ceste.\n" +#~ "\n" +#~ " --backup=CONTROL pred zmazaním vytvori» zálo¾nú kópiu\n" +#~ " -b ako --backup, ale nepovoµuje argument\n" +#~ " -c (ignorované)\n" +#~ " -d, --directory vytvori» v¹etky prvky cesty k adresárom;\n" +#~ " povinné pre 3. formát\n" +#~ " -D vytvori» v¹etky prvky cesty okrem posledného, " +#~ "potom\n" +#~ " skopírova» ZDROJ do CIE¥a; u¾itoèné v 1. " +#~ "formáte\n" +#~ " -g, --group=SKUPINA nastavi» SKUPINU ako vlastníka namiesto skupiny " +#~ "procesu\n" +#~ " -m, --mode=PRÁVA nastavi» prístupové práva PRÁVA (ako s 'chmod') " +#~ "namiesto\n" +#~ " rwxr-xr-x\n" +#~ " -o, --owner=VLASTNÍK nastavi» vlastníka (iba superu¾ívateµ - root)\n" +#~ " -p, --preserve-timestamps nastavi» èas prístupu a zmeny podµa ZDROJa\n" +#~ " -s, --strip odstráni» tabuµku symbolov (iba 1. a 2. formát)\n" +#~ " -S, --suffix=PRÍPONA nastavi» novú príponu zálo¾ných súborov\n" +#~ " --verbose vypísa» názov ka¾dého vytváraného adresára\n" +#~ " --help vypísa» túto pomoc a skonèi»\n" +#~ " --version vypísa» informáciu o verzii a skonèi»\n" +#~ "\n" + +#~ msgid "" +#~ "Create a link to the specified TARGET with optional LINK_NAME.\n" +#~ "If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +#~ "created in the current directory. When using the second form with more\n" +#~ "than one TARGET, the last argument must be a directory; create links\n" +#~ "in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +#~ "links with --symbolic. When creating hard links, each TARGET must " +#~ "exist.\n" +#~ "\n" +#~ " --backup[=CONTROL] make a backup of each existing destination " +#~ "file\n" +#~ " -b like --backup but does not accept an " +#~ "argument\n" +#~ " -d, -F, --directory hard link directories (super-user only)\n" +#~ " -f, --force remove existing destination files\n" +#~ " -n, --no-dereference treat destination that is a symlink to a\n" +#~ " directory as if it were a normal file\n" +#~ " -i, --interactive prompt whether to remove destinations\n" +#~ " -s, --symbolic make symbolic links instead of hard links\n" +#~ " -S, --suffix=SUFFIX override the usual backup suffix\n" +#~ " --target-directory=DIRECTORY specify the DIRECTORY in which to " +#~ "create\n" +#~ " the links\n" +#~ " -v, --verbose print name of each file before linking\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Vytvori» odkaz na CIE¥, voliteµne so zadaným MENOM_ODKAZU. Pokiaµ\n" +#~ "je MENO_ODKAZU vynechané, vytvorí sa odkaz s rovnakým menom ako\n" +#~ "CIE¥ v aktuálnom adresári. Pri pou¾ití druhej formy s viac ako\n" +#~ "jedným CIE¥om musí by» posledný argument adresár, v ktorom majú\n" +#~ "by» odkazy vytvorené. Pokiaµ nie je zadané inak, budú vytvorené\n" +#~ "pevné odkazy, pri zadaní --symbolic budú vytvorené symbolické.\n" +#~ "Pokiaµ sú vytvárané pevné odkazy, ka¾dý CIE¥ musí existova».\n" +#~ "\n" +#~ "\n" +#~ " --backup[=CONTROL] vytvori» zálohu ka¾dého existujúceho " +#~ "cieµového\n" +#~ " súboru\n" +#~ " -b ako --backup, ale nepovoµuje argument\n" +#~ " -d, -F, --directory pevný odkaz na adresár (len " +#~ "superu¾ívateµ)\n" +#~ " -f, --force zmaza» existujúce súbory\n" +#~ " -n, --no-dereference pokiaµ je MENO_ODKAZU symbolický odkaz na " +#~ "adresár,\n" +#~ " zachádza» s ním ako s obyèajným súborom\n" +#~ " -i, --interactive pred prípadným zmazaním súboru sa opýta»\n" +#~ " -s, --symbolic vytvori» symbolický odkaz namiesto pevného " +#~ "odkazu\n" +#~ " -S, --suffix=PRÍPONA zmeni» obvyklú príponu zálo¾ných kópií\n" +#~ " --target-directory=ADR presunú» v¹etky ZDROJe do ADResára\n" +#~ " -v, --verbose pred vytvorením odkazu vypísa» meno " +#~ "ka¾dého súboru\n" +#~ " --help vypísa» túto pomoc a skonèi»\n" +#~ " --version vypísa» informáciu o verzii a skonèi»\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "List information about the FILEs (the current directory by default).\n" +#~ "Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +#~ "\n" +#~ " -a, --all do not hide entries starting with .\n" +#~ " -A, --almost-all do not list implied . and ..\n" +#~ " -b, --escape print octal escapes for nongraphic " +#~ "characters\n" +#~ " --block-size=SIZE use SIZE-byte blocks\n" +#~ " -B, --ignore-backups do not list implied entries ending with ~\n" +#~ " -c with -lt: sort by, and show, ctime (time of " +#~ "last\n" +#~ " modification of file status information)\n" +#~ " with -l: show ctime and sort by name\n" +#~ " otherwise: sort by ctime\n" +#~ " -C list entries by columns\n" +#~ " --color[=WHEN] control whether color is used to distinguish " +#~ "file\n" +#~ " types. WHEN may be `never', `always', or " +#~ "`auto'\n" +#~ " -d, --directory list directory entries instead of contents\n" +#~ " -D, --dired generate output designed for Emacs' dired " +#~ "mode\n" +#~ " -f do not sort, enable -aU, disable -lst\n" +#~ " -F, --classify append indicator (one of */=@|) to entries\n" +#~ " --format=WORD across -x, commas -m, horizontal -x, long -" +#~ "l,\n" +#~ " single-column -1, verbose -l, vertical -C\n" +#~ " --full-time like -l --time-style=full-iso\n" +#~ msgstr "" +#~ "Výpis informácií o SÚBORoch (v aktuálnom adresári, pokiaµ nie sú " +#~ "zadané).\n" +#~ "Pokiaµ nie je zadaná ¾iadna z volieb -cftuSUX alebo --sort, bude výstup\n" +#~ "usporiadaný abecedne.\n" +#~ "\n" +#~ " -a, --all vypísa» aj súbory zaèínajúce bodkou\n" +#~ " -A, --almost-all vypísa» v¹etky súbory okrem . a ..\n" +#~ " -b, --escape vypísa» negrafické znaky osmièkovo\n" +#~ " --block-size=VE¥KOS« pou¾i» bloky då¾ky VE¥KOS« bajtov\n" +#~ " -B, --ignore-backups nevypisova» súbory konèiace ~\n" +#~ " -c spoloène s -lt: zobrazi» ctime a zoradi» " +#~ "podµa neho\n" +#~ " (èas poslednej zmeny stavovej informácie " +#~ "súboru)\n" +#~ " spoloène s -l: zobrazi» ctime a zoradi» " +#~ "podµa mena\n" +#~ " inak: zoradi» podµa ctime\n" +#~ " -C vypísa» súbory v ståpcoch\n" +#~ " --color[=KEDY] urèi», ako sú pou¾ité farby pre rozlí¹enie " +#~ "typov\n" +#~ " súborov. KEDY mô¾e by» `never', `always' " +#~ "alebo\n" +#~ " `auto'\n" +#~ " -d, --directory vypísa» názvy adresárov namiesto ich obsahu\n" +#~ " -D, --dired generova» výstup pre Emacsový dired mód\n" +#~ " -f neusporiada», povoli» -aU, zakáza» -lst\n" +#~ " -F, --classify doplni» znak urèujúci typ súborov (jeden z */" +#~ "=@|)\n" +#~ " --format=SLOVO across -x, commas -m, horizontal -x, long -" +#~ "l,\n" +#~ " single-column -1, verbose -l, vertical -C\n" +#~ " --full-time vypísa» plný dátum aj èas\n" + +#, fuzzy +#~ msgid "" +#~ " -g like -l, but do not list owner\n" +#~ " -G, --no-group inhibit display of group information\n" +#~ " -h, --human-readable print sizes in human readable format (e.g., 1K " +#~ "234M 2G)\n" +#~ " --si likewise, but use powers of 1000 not 1024\n" +#~ " -H, --dereference-command-line follow symbolic links on the command " +#~ "line\n" +#~ " --indicator-style=WORD append indicator with style WORD to entry " +#~ "names:\n" +#~ " none (default), classify (-F), file-type (-" +#~ "p)\n" +#~ " -i, --inode print index number of each file\n" +#~ " -I, --ignore=PATTERN do not list implied entries matching shell " +#~ "PATTERN\n" +#~ " -k, --kilobytes like --block-size=1024\n" +#~ " -l use a long listing format\n" +#~ " -L, --dereference when showing file information for a " +#~ "symbolic\n" +#~ " link, show information for the file the " +#~ "link\n" +#~ " references rather than for the link " +#~ "itself\n" +#~ " -m fill width with a comma separated list of " +#~ "entries\n" +#~ msgstr "" +#~ " -g (ignorované)\n" +#~ " -G, --no-group nevypisova» informácie o skupinách\n" +#~ " -h, --human-readable veµkosti v µahko èitateµnom formáte\n" +#~ " (napr. 1K 234M 2G)\n" +#~ " --si podobne, ale pou¾i» mocniny 1000 namiesto " +#~ "1024\n" +#~ " -H zatiaµ to isté ako --si; èoskoro sa zmení\n" +#~ " kvôli kompatibilite s POSIX-om\n" +#~ " --indicator-style=©TÝL pripoji» indikátor ¹týlu ©TÝL k názvom:\n" +#~ " none (predvoµba), classify (-F), file-type " +#~ "(-p)\n" +#~ " -i, --inode ku ka¾dému súboru vypísa» aj èíslo jeho i-" +#~ "uzlu\n" +#~ " -I, --ignore=VZOR nevypisova» súbory vyhovujúce shellovému " +#~ "VZORu\n" +#~ " -k, --kilobytes ako --block-size=1024\n" +#~ " -l pou¾i» dlhý formát\n" +#~ " -L, --dereference v prípade symbolických odkazov vypísa» " +#~ "vlastnosti,\n" +#~ " súboru, na ktorý odkaz odkazuje\n" +#~ " -m oddeµova» súbory èiarkami\n" +#~ " -n, --numeric-uid-gid namiesto mena vlastníka (UID) a skupiny " +#~ "(GID)\n" +#~ " vypísa» èísla\n" +#~ " -N, --literal nespracováva» riadiace znaky v názvoch " +#~ "súborov\n" +#~ " -o pou¾i» dlhý formát bez informácií o " +#~ "skupinách\n" +#~ " -p, --file-type doplni» znak urèujúci typ ka¾dého souboru " +#~ "(jeden z /=@|)\n" +#~ " -q, --hide-control-chars namiesto negrafických znakov vypísa» '?'\n" +#~ " --show-control-chars vypísa» aj negrafické znaku (predvolené)\n" +#~ " -Q, --quote-name vlo¾i» názvy do úvodzoviek (citácia)\n" +#~ " --quoting-style=SLOVO citova» mená ¹týlom SLOVO:\n" +#~ " literal, shell, shell-always, c, escape\n" +#~ " -r, --reverse usporiada» v opaènom poradí\n" +#~ " -R, --recursive vypísa» adresáre rekurzívne\n" +#~ " -s, --size vypísa» veµkos» ka¾dého súboru v blokoch\n" + +#, fuzzy +#~ msgid "" +#~ " -S sort by file size\n" +#~ " --sort=WORD extension -X, none -U, size -S, time -t,\n" +#~ " version -v\n" +#~ " status -c, time -t, atime -u, access -u, use " +#~ "-u\n" +#~ " --time=WORD show time as WORD instead of modification " +#~ "time:\n" +#~ " atime, access, use, ctime or status; use\n" +#~ " specified time as sort key if --sort=time\n" +#~ " --time-style=WORD show times using style WORD:\n" +#~ " full-iso, iso, locale, posix-iso\n" +#~ " -t sort by modification time\n" +#~ " -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +#~ " -u with -lt: sort by, and show, access time\n" +#~ " with -l: show access time and sort by " +#~ "name\n" +#~ " otherwise: sort by access time\n" +#~ " -U do not sort; list entries in directory " +#~ "order\n" +#~ " -v sort by version\n" +#~ " -w, --width=COLS assume screen width instead of current " +#~ "value\n" +#~ " -x list entries by lines instead of by columns\n" +#~ " -X sort alphabetically by entry extension\n" +#~ " -1 list one file per line\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "By default, color is not used to distinguish types of files. That is\n" +#~ "equivalent to using --color=none. Using the --color option without the\n" +#~ "optional WHEN argument is equivalent to using --color=always. With\n" +#~ "--color=auto, color codes are output only if standard output is " +#~ "connected\n" +#~ "to a terminal (tty).\n" +#~ msgstr "" +#~ " -S uspoiada» podµa då¾ky súborov\n" +#~ " --sort=SLOVO extension -X, none -U, size -S, time -t,\n" +#~ " version -v\n" +#~ " status -c, time -t, atime -u, access -u, use " +#~ "-u\n" +#~ " --time=SLOVO zobrazi» èas ako SLOVO namiesto èasu zmeny:\n" +#~ " atime, access, use, ctime alebo status; " +#~ "pou¾i\n" +#~ " zadaný èas pre triedenie, pokiaµ --" +#~ "sort=time\n" +#~ " -t usporiada» podµa èasu poslednej zmeny\n" +#~ " -T, --tabsize=ROZOSTUP nastavi» tabulátory ka¾dých ROZOSTUP znakov\n" +#~ " -u spoloène s -lt: zobrazi» èas posledného " +#~ "prístupu\n" +#~ " (atime) a zoradi» podµa neho\n" +#~ " spoloène s -l: zobrazi» atime a zoradi» " +#~ "podµa mena\n" +#~ " inak: zoradi» podµa atime\n" +#~ " -U neusporiadava» - vypísa» v poradí, aké je\n" +#~ " v adresári\n" +#~ " -v usporiada» podµa verzie\n" +#~ " -w, --width=STÅPCOV pou¾i» túto ¹írku obrazovky pri vypisovaní\n" +#~ " -x vypisova» názvy po riadkoch namiesto po " +#~ "ståpcoch\n" +#~ " -X usporiada» podµa prípon\n" +#~ " -1 vypísa» jeden súbor na jednom riadku\n" +#~ " --help vypísa» túto pomoc a skonèi»\n" +#~ " --version vypísa» informáciu o verzii a skonèi»\n" +#~ "Pokiaµ nie je nastavené inak, farba sa pre oznaèenie typov súborov " +#~ "nepou¾ije,\n" +#~ "èo je rovnocenné s voµbou --color=none. Pou¾itie voµby --color bez " +#~ "argumentu\n" +#~ "KEDY je rovnocenné s pou¾itím voµby --color=always. Voµba --color=auto " +#~ "spôsobí,\n" +#~ "¾e farby budú pou¾ité iba pokiaµ je ¹tandardný výstup pripojený k " +#~ "terminálu\n" +#~ "(tty).\n" + +#, fuzzy +#~ msgid "" +#~ "Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +#~ "for even very expensive hardware probing to recover the data.\n" +#~ "\n" +#~ " -f, --force change permissions to allow writing if necessary\n" +#~ " -n, --iterations=N Overwrite N times instead of the default (%d)\n" +#~ " -s, --size=N shred this many bytes (suffixes like k, M, G accepted)\n" +#~ " -u, --remove truncate and remove file after overwriting\n" +#~ " -v, --verbose show progress\n" +#~ " -x, --exact do not round file sizes up to the next full block\n" +#~ " -z, --zero add a final overwrite with zeros to hide shredding\n" +#~ " - shred standard output\n" +#~ " --help display this help and exit\n" +#~ " --version print version information and exit\n" +#~ "\n" +#~ "Delete FILE(s) if --remove (-u) is specified. The default is not to " +#~ "remove\n" +#~ "the files because it is common to operate on device files like /dev/hda,\n" +#~ "and those files usually should not be removed. When operating on " +#~ "regular\n" +#~ "files, most people use the --remove option.\n" +#~ "\n" +#~ "CAUTION: Note that shred relies on a very important assumption:\n" +#~ "that the filesystem overwrites data in place. This is the traditional\n" +#~ "way to do things, but many modern filesystem designs do not satisfy this\n" +#~ "assumption. The following are examples of filesystems on which shred is\n" +#~ "not effective:\n" +#~ "\n" +#~ "* log-structured or journaled filesystems, such as those supplied with\n" +#~ " AIX and Solaris (and JFS, ReiserFS, XFS, etc.)\n" +#~ "\n" +#~ "* filesystems that write redundant data and carry on even if some writes\n" +#~ " fail, such as RAID-based filesystems\n" +#~ "\n" +#~ "* filesystems that make snapshots, such as Network Appliance's NFS " +#~ "server\n" +#~ "\n" +#~ "* filesystems that cache in temporary locations, such as NFS\n" +#~ " version 3 clients\n" +#~ "\n" +#~ "* compressed filesystems\n" +#~ "\n" +#~ "In addition, file system backups and remote mirrors may contain copies\n" +#~ "of the file that cannot be removed, and that will allow a shredded file\n" +#~ "to be recovered later.\n" +#~ msgstr "" +#~ "Opakovane prepisuje SÚBOR(y), aby sa aj veµmi nákladnému hardvéru\n" +#~ "maximálne s»a¾ili pokusy o obnovu údajov.\n" +#~ "\n" +#~ " -f, --force zmeni» práva pre povolenie zápisu, ak je to potrebné\n" +#~ " -n, --iterations=N prepísa» N-krát namiesto prednastavených (%d)\n" +#~ " -s, --size=N prepísa» N bajtov (prípony ako k, M, G sú mo¾né)\n" +#~ " -u, --remove skráti» a odstráni» súbor po prepísaní\n" +#~ " -v, --verbose zobrazi» postup\n" +#~ " -x, --exact nezaokrúhµova» veµkosti súborov na ïal¹í úplný blok\n" +#~ " -z, --zero na záver prepísa» nulami, aby sa prepisovanie skrylo\n" +#~ " - prepisova» ¹tandardný výstup\n" +#~ " --help vypísa» túto pomoc a skonèi»\n" +#~ " --version vypísa» informáciu o verzii a skonèi»\n" +#~ "\n" +#~ "SÚBOR bude zmazaný, pokiaµ bolo zadané --remove (-u). Inak sa nema¾e,\n" +#~ "keï¾e je obvyklé prepisova» súbory zariadení ako /dev/hda a tieto\n" +#~ "obvykle vymazané by» nemajú. Pre obyèajné súbory väè¹ina µudí pou¾íva\n" +#~ "voµbu --remove.\n" +#~ "\n" +#~ "POZOR: Prepisovanie funguje len pokiaµ je splnený dôle¾itý predpoklad:\n" +#~ "¾e súborový systém prepisuje údaje na mieste. Tak sa to obvykle aj " +#~ "robí,\n" +#~ "ale pre veµa moderných súborových systémoch to splnené nie je.\n" +#~ "Nasledujúce súborové systémy sú príkladom takých, kde shred nie je\n" +#~ "úèinný:\n" +#~ "\n" +#~ "* systémy zalo¾ené na log-súboroch alebo ¾urnáli, ako napr. systémy\n" +#~ " obsiahnuté v systémoch AIX, Solaris (a JFS, ReiserFS, XFS, atï.)\n" +#~ "\n" +#~ "* systémy zapisujúce redundantné údaje a sú schopné fungova» aj keï\n" +#~ " niektoré zo zápisov zlyhajú, ako napr. systémy zalo¾ené na RAID\n" +#~ "\n" +#~ "* systémy tvoriace 'snímky', ako napr. NFS server Network Appliance\n" +#~ "\n" +#~ "* systémy vyu¾ívajúce cache na doèasných miestach, ako napr. klienti\n" +#~ " NFS verzie 3\n" +#~ "\n" +#~ "* komprimované súborové systémy\n" + +#~ msgid "" +#~ "Update the access and modification times of each FILE to the current " +#~ "time.\n" +#~ "\n" +#~ " -a change only the access time\n" +#~ " -c, --no-create do not create any files\n" +#~ " -d, --date=STRING parse STRING and use it instead of current time\n" +#~ " -f (ignored)\n" +#~ " -m change only the modification time\n" +#~ " -r, --reference=FILE use this file's times instead of current time\n" +#~ " -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current " +#~ "time\n" +#~ " --time=WORD set time given by WORD: access atime use (same " +#~ "as -a)\n" +#~ " modify mtime (same as -m)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Note that the three time-date formats recognized for the -d and -t " +#~ "options\n" +#~ "and for the obsolescent argument are all different.\n" +#~ msgstr "" +#~ "Aktualizova» èas posledného prístupu a poslednej zmeny ka¾dého SÚBORu\n" +#~ "na aktuálny èas\n" +#~ "\n" +#~ " -a zmeni» iba èas posledného prístupu\n" +#~ " -c nevytvára» nové súbory\n" +#~ " -d, --date=RE«AZEC analyzova» RE«AZEC a pou¾i» ho namiesto " +#~ "aktuálneho èasu\n" +#~ " -f (ignorované)\n" +#~ " -m zmeni» iba èas poslednej zmeny súboru\n" +#~ " -r, --reference=SÚBOR pou¾i» èasy SÚBORu namiesto aktuálneho èasu\n" +#~ " -t ÈAS pou¾i» [[SS]RR]MMDDhhmm[.ss] namiesto aktuálneho " +#~ "èasu\n" +#~ " --time=SLOVO aktualizova» èas zadaný SLOVOm - access, atime,\n" +#~ " use (to isté ako -a); modify, mtime (ako -m)\n" +#~ " --help vypísa» túto pomoc a skonèi»\n" +#~ " --version vypísa» informáciu o verzii a skonèi»\n" +#~ "\n" +#~ "Zoberte na vedomie, ¾e tri formáty dátumu a èasu (rozpoznávané \n" +#~ "voµbami -d a -t a zastaralým spôsobom ich zadania) sú v¹etky rozdielne.\n" + +#~ msgid "" +#~ "Warning: the meaning of `-P' will change in the future to conform to " +#~ "POSIX.\n" +#~ "Use `--parents' for the old meaning, and `--no-dereference' for the new " +#~ "one." +#~ msgstr "" +#~ "Varovanie: význam `-P' sa v budúcnosti zmení, aby bolo vyhovené POSIX-u.\n" +#~ "Pre pôvodný význam pou¾ite `--parents' a pre nový `--no-dereference'." + +#, fuzzy +#~ msgid "Copyright (C) 2001 Free Software Foundation, Inc." +#~ msgstr "Copyright (C) 2001 Free Software Foundation, Inc." + +#, fuzzy +#~ msgid "%a %b %d %H:%M:%S %Y" +#~ msgstr "%b %e %H:%M %Y" + +#~ msgid "" +#~ "when creating character special files, major and minor device\n" +#~ "numbers must be specified" +#~ msgstr "" +#~ "pri vytváraní ¹peciálneho znakového súboru musí by» zadané\n" +#~ "hlavné a vedµaj¹ie èíslo zariadenia" + +#~ msgid "days" +#~ msgstr "dni" + +#~ msgid "users" +#~ msgstr "pou¾ív." + +#, fuzzy +#~ msgid "%s: only one signal specififier allowed" +#~ msgstr "mô¾e by» zadaný iba jeden argument" + +#, fuzzy +#~ msgid "" +#~ "Display the current time in the given FORMAT, or set the system date.\n" +#~ "\n" +#~ " -d, --date=STRING display time described by STRING, not `now'\n" +#~ " -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +#~ msgstr "" +#~ "Vypísa» aktuálny èas v zadanom FORMÁTE alebo nastavi» systémový èas.\n" +#~ "\n" +#~ " -d, --date=RE«AZEC zobrazi» èas zadaný RE«AZCOM namiesto `teraz'\n" +#~ " -f, --file=SÚBOR ako --date pre ka¾dý riadok SÚBORU\n" +#~ " -I, --iso-8601[=©PEC] vypísa» dátum/èas v ISO-8601 formáte.\n" +#~ " ©PEC=`date' (alebo niè) pre samotný dátum,\n" +#~ " `hours', `minutes', alebo `seconds' pre dátum\n" +#~ " a èas po zadanú presnos».\n" +#~ " -r, --reference=SÚBOR zobrazi» èas poslednej zmeny SÚBORU\n" +#~ " -R, --rfc-822 vypísa» èas vo formáte vyhovujúcom RFC-822\n" +#~ " -s, --set=RE«AZEC nastavi» èas zadaný RE«AZCOM\n" +#~ " -u, --utc, --universal vypísa» alebo nastavi» univerzálny svetový " +#~ "èas\n" +#~ " --help vypísa» túto pomoc a skonèi»\n" +#~ " --version vypísa» informáciu o verzii a skonèi»\n" + +#, fuzzy +#~ msgid "" +#~ "Run COMMAND with root directory set to NEWROOT.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolný súèet a då¾ku v bytoch ka¾dého SÚBORu.\n" +#~ "\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "FORMAT controls the output. The only valid option for the second form\n" +#~ "specifies Coordinated Universal Time. Interpreted sequences are:\n" +#~ "\n" +#~ " %%%% a literal %%\n" +#~ " %%a locale's abbreviated weekday name (Sun..Sat)\n" +#~ " %%A locale's full weekday name, variable length (Sunday..Saturday)\n" +#~ " %%b locale's abbreviated month name (Jan..Dec)\n" +#~ " %%B locale's full month name, variable length (January..December)\n" +#~ " %%c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +#~ " %%C century (year divided by 100 and truncated to an integer) [00-" +#~ "99]\n" +#~ " %%d day of month (01..31)\n" +#~ " %%D date (mm/dd/yy)\n" +#~ " %%e day of month, blank padded ( 1..31)\n" +#~ " %%h same as %%b\n" +#~ " %%H hour (00..23)\n" +#~ " %%I hour (01..12)\n" +#~ " %%j day of year (001..366)\n" +#~ " %%k hour ( 0..23)\n" +#~ " %%l hour ( 1..12)\n" +#~ " %%m month (01..12)\n" +#~ " %%M minute (00..59)\n" +#~ " %%n a newline\n" +#~ " %%p locale's AM or PM\n" +#~ " %%r time, 12-hour (hh:mm:ss [AP]M)\n" +#~ " %%s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +#~ " %%S second (00..60)\n" +#~ " %%t a horizontal tab\n" +#~ " %%T time, 24-hour (hh:mm:ss)\n" +#~ " %%u day of week (1..7); 1 represents Monday\n" +#~ " %%U week number of year with Sunday as first day of week (00..53)\n" +#~ " %%V week number of year with Monday as first day of week (01..53)\n" +#~ " %%w day of week (0..6); 0 represents Sunday\n" +#~ " %%W week number of year with Monday as first day of week (00..53)\n" +#~ " %%x locale's date representation (mm/dd/yy)\n" +#~ " %%X locale's time representation (%%H:%%M:%%S)\n" +#~ " %%y last two digits of year (00..99)\n" +#~ " %%Y year (1970...)\n" +#~ " %%z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +#~ " %%Z time zone (e.g., EDT), or nothing if no time zone is " +#~ "determinable\n" +#~ "\n" +#~ "By default, date pads numeric fields with zeroes. GNU date recognizes\n" +#~ "the following modifiers between `%%' and a numeric directive.\n" +#~ "\n" +#~ " `-' (hyphen) do not pad the field\n" +#~ " `_' (underscore) pad the field with spaces\n" +#~ msgstr "" +#~ "\n" +#~ "FORMÁT urèuje výstup. Pre druhú formu je jedinou povolenou voµbou\n" +#~ "¹pecifikácia univerzálneho èasu. Platné formátovacie sekvencie sú:\n" +#~ "\n" +#~ " %%%% znak %%\n" +#~ " %%a skratka dòa v tý¾dni podµa aktuálneho národného prostredia (Po.." +#~ "Ne)\n" +#~ " %%A úplný názov dòa podµa národného prostredia, premenná då¾ka " +#~ "(Pondelok..Nedeµa)\n" +#~ " %%b skratka mesiaca podµa národného prostredia (Jan..Dec)\n" +#~ " %%B úplný názov mesiaca podµa národného prostredia, premenná då¾ka " +#~ "(Január..December)\n" +#~ " %%c dátum a èas podµa národného prostredia (Ne 28. február 1999, " +#~ "18:48:59 CET)\n" +#~ " %%d de+n v mesiaci (01..31)\n" +#~ " %%D dátum (mm/dd/rr)\n" +#~ " %%e deò v mesiaci, zarovnanie medzerou ( 1..31)\n" +#~ " %%h ako %%b\n" +#~ " %%H hodina (00..23)\n" +#~ " %%I hodina (01..12)\n" +#~ " %%j deò v roku (001..366)\n" +#~ " %%k hodina ( 0..23)\n" +#~ " %%l hodina ( 1..12)\n" +#~ " %%m mesiac (01..12)\n" +#~ " %%M minúta (00..59)\n" +#~ " %%n prechod na nový riadok\n" +#~ " %%p doobeda alebo poobede (podµa národného prostredia)\n" +#~ " %%r èas, 12-hodinový formát (hh:mm:ss [AP]M)\n" +#~ " %%s sekundy od 00:00:00, Jan 1, 1970 (GNU roz¹írenie)\n" +#~ " %%S sekunda (00..60)\n" +#~ " %%t horizontálny tabulátor\n" +#~ " %%T èas, 24-hodinový formát (hh:mm:ss)\n" +#~ " %%U èíslo tý¾dòa v roku s nedeµou ako prvým dòom tý¾dòa (00..53)\n" +#~ " %%V èíslo tý¾dòa v roku s pondelkom ako prvým dòom tý¾dòa (01..52)\n" +#~ " %%w deò v tý¾dni (0..6); 0 reprezentuje nedeµu\n" +#~ " %%W èíslo tý¾dòa v roku s pondelkom ako prvým dòom tý¾dòa (00..53)\n" +#~ " %%x dátum podµa národného prostredia (dd.mm.rrrr)\n" +#~ " %%X èas podµa národného prostredia (%%H:%%M:%%S)\n" +#~ " %%y posledné dve èíslice roku (00..99)\n" +#~ " %%Y rok (1970...)\n" +#~ " %%z èíselné èasové pásmo podµa RFC-822 (+0100) (ne¹tandardné " +#~ "roz¹írenie)\n" +#~ " %%Z èasové pásmo (napr. CET) alebo prázdny re»azec, pokiaµ sa nedá " +#~ "urèi»\n" +#~ "\n" +#~ "Èíselné údaje sú implicitne zarovnávané nulami. GNU date rozpoznáva\n" +#~ "medzi `%%' a èíselnou direktívou nasledovné modifikátory:\n" +#~ "\n" +#~ " `-' (pomlèka) nezarovnáva»\n" +#~ " `_' (podèiarnik) zarovnáva» medzerami\n" + +#~ msgid "" +#~ "Echo the STRING(s) to standard output.\n" +#~ "\n" +#~ " -n do not output the trailing newline\n" +#~ " -e enable interpretation of the backslash-escaped " +#~ "characters\n" +#~ " listed below\n" +#~ " -E disable interpretation of those sequences in STRINGs\n" +#~ " --help display this help and exit (should be alone)\n" +#~ " --version output version information and exit (should be alone)\n" +#~ "\n" +#~ "Without -E, the following sequences are recognized and interpolated:\n" +#~ "\n" +#~ " \\NNN the character whose ASCII code is NNN (octal)\n" +#~ " \\\\ backslash\n" +#~ " \\a alert (BEL)\n" +#~ " \\b backspace\n" +#~ " \\c suppress trailing newline\n" +#~ " \\f form feed\n" +#~ " \\n new line\n" +#~ " \\r carriage return\n" +#~ " \\t horizontal tab\n" +#~ " \\v vertical tab\n" +#~ msgstr "" +#~ "Vypísa» RE«AZEC (RE«AZCE) na ¹tandardný výstup.\n" +#~ "\n" +#~ " -n po výpise neprejs» na nový riadok\n" +#~ " -e povoli» rozpoznanie znakov uvádzaných spätným " +#~ "lomítkom,\n" +#~ " popísaných ïalej\n" +#~ " -E zakáza» spracovanie takýchto sekvencií\n" +#~ " --help vypísa» túto pomoc a skonèi»\n" +#~ " --version vypísa» informáciu o verzii a skonèi»\n" +#~ "\n" +#~ "Bez -E sú rozpoznávané a spracované nasledujúce sekvencie:\n" +#~ "\n" +#~ " \\NNN znak, ktorého ASCII kód je NNN (oktalovo)\n" +#~ " \\\\ spätné lomítko\n" +#~ " \\a pípnutie (BEL)\n" +#~ " \\b krok spä»\n" +#~ " \\c potlaèi» koncový znak nového riadku\n" +#~ " \\f prechod na novú stránku\n" +#~ " \\n prechod na nový riadok\n" +#~ " \\r návrat na zaèiatok riadku\n" +#~ " \\t horizontálny tabulátor\n" +#~ " \\v vertikálny tabulátor\n" + +#, fuzzy +#~ msgid "" +#~ "Print the value of EXPRESSION to standard output. A blank line below\n" +#~ "separates increasing precedence groups. EXPRESSION may be:\n" +#~ "\n" +#~ " ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +#~ "\n" +#~ " ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +#~ "\n" +#~ " ARG1 < ARG2 ARG1 is less than ARG2\n" +#~ " ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +#~ " ARG1 = ARG2 ARG1 is equal to ARG2\n" +#~ " ARG1 != ARG2 ARG1 is unequal to ARG2\n" +#~ " ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +#~ " ARG1 > ARG2 ARG1 is greater than ARG2\n" +#~ "\n" +#~ " ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +#~ " ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +#~ "\n" +#~ " ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +#~ " ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +#~ " ARG1 %% ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +#~ "\n" +#~ " STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +#~ "\n" +#~ " match STRING REGEXP same as STRING : REGEXP\n" +#~ " substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +#~ " index STRING CHARS index in STRING where any CHARS is found, or " +#~ "0\n" +#~ " length STRING length of STRING\n" +#~ " + TOKEN interpret TOKEN as a string, even if it is " +#~ "a\n" +#~ " keyword like `match' or an operator like " +#~ "`/'\n" +#~ "\n" +#~ " ( EXPRESSION ) value of EXPRESSION\n" +#~ msgstr "" +#~ "Vypísa» hodnotu VÝRAZU na ¹tandardný výstup. V nasledujúcom texte\n" +#~ "prázdny riadok oddeµuje skupiny podµa stúpajúcej priority. VÝRAZ mô¾e " +#~ "by»:\n" +#~ "\n" +#~ " ARG1 | ARG2 ARG1 ak nie je prázdny ani 0, inak ARG2\n" +#~ "\n" +#~ " ARG1 & ARG2 ARG1 ak ¾iadny argument nie je prázdny ani nula, " +#~ "otherwise 0\n" +#~ "\n" +#~ " ARG1 < ARG2 ARG1 je men¹í ako ARG2\n" +#~ " ARG1 <= ARG2 ARG1 je men¹í alebo rovný ARG2\n" +#~ " ARG1 = ARG2 ARG1 je rovný ARG2\n" +#~ " ARG1 != ARG2 ARG1 nie je rovný ARG2\n" +#~ " ARG1 >= ARG2 ARG1 je väè¹í alebo rovný ARG2\n" +#~ " ARG1 > ARG2 ARG1 je väè¹í ako ARG2\n" +#~ "\n" +#~ " ARG1 + ARG2 aritmetický súèet ARG1 a ARG2\n" +#~ " ARG1 - ARG2 aritmetický rozdiel ARG1 a ARG2\n" +#~ "\n" +#~ " ARG1 * ARG2 aritmetický súèin ARG1 a ARG2\n" +#~ " ARG1 / ARG2 aritmetický podiel ARG1 a ARG2\n" +#~ " ARG1 %% ARG2 aritmetický zvy¹ok po delení ARG1 ARG2\n" +#~ "\n" +#~ " RE«AZEC : REGEXP výskyt vzoru REGEXP v RE«AZCI\n" +#~ "\n" +#~ " match RE«AZEC REGEXP ako RE«AZEC : REGEXP\n" +#~ " substr RE«AZEC POS DÅ®KA podre»azec RE«AZCA, POS poèítaná od 1\n" +#~ " index RE«AZEC ZNAKY index v RE«AZCI, kde bol nájdený niektorý " +#~ "ZNAK, inak 0\n" +#~ " length RE«AZEC då¾ka RE«AZCA\n" +#~ " quote TOKEN interpretuj TOKEN ako re»azec, aj pokiaµ je " +#~ "kµúèovým\n" +#~ " slovom ako `match' alebo operátorom ako " +#~ "`/'\n" +#~ "\n" +#~ " ( VÝRAZ ) hodnota of VÝRAZU\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " -l produce long format output for the specified USERs\n" +#~ " -b omit the user's home directory and shell in long " +#~ "format\n" +#~ " -h omit the user's project file in long format\n" +#~ " -p omit the user's plan file in long format\n" +#~ " -s do short format output, this is the default\n" +#~ " -f omit the line of column headings in short format\n" +#~ " -w omit the user's full name in short format\n" +#~ " -i omit the user's full name and remote host in short " +#~ "format\n" +#~ " -q omit the user's full name, remote host and idle time\n" +#~ " in short format\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "A lightweight `finger' program; print user information.\n" +#~ "The utmp file will be %s.\n" +#~ msgstr "" +#~ "\n" +#~ " -l dlhá forma výstupu\n" +#~ " -b vynecha» domovský adresár a shell pou¾ívateµa v dlhej " +#~ "forme\n" +#~ " -h vynecha» projektový súbor pou¾ívateµa v dlhej forme\n" +#~ " -p vynecha» súbor s plánom pou¾ívateµa v dlhej forme\n" +#~ " -s krátka forma (implicitná)\n" +#~ " -f vynecha» nadpisy ståpcov v krátkej forme\n" +#~ " -w vynecha» úplné meno pou¾ívateµa v krátkej forme\n" +#~ " -i vynecha» úplné meno pou¾ívateµa a vzdialený systém v " +#~ "krátkej forme\n" +#~ " -q vynecha» úplné meno pou¾ívateµa, vzdialený systém a èas " +#~ "neèinnosti\n" +#~ " v krátkej forme\n" +#~ " --help vypísa» túto pomoc a skonèi»\n" +#~ " --version vypísa» informáciu o verzii a skonèi»\n" +#~ "\n" +#~ "Odµahèený program `finger'; výpis informácie o pou¾ívateµovi.\n" +#~ "utmp súbor bude %s.\n" + +#~ msgid "" +#~ "Print ARGUMENT(s) according to FORMAT.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "FORMAT controls the output as in C printf. Interpreted sequences are:\n" +#~ "\n" +#~ " \\\" double quote\n" +#~ " \\0NNN character with octal value NNN (0 to 3 digits)\n" +#~ " \\\\ backslash\n" +#~ " \\a alert (BEL)\n" +#~ " \\b backspace\n" +#~ " \\c produce no further output\n" +#~ " \\f form feed\n" +#~ " \\n new line\n" +#~ " \\r carriage return\n" +#~ " \\t horizontal tab\n" +#~ " \\v vertical tab\n" +#~ " \\xNNN byte with hexadecimal value NNN (1 to 3 digits)\n" +#~ "\n" +#~ " \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +#~ " \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +#~ " %%%% a single %%\n" +#~ " %%b ARGUMENT as a string with `\\' escapes interpreted\n" +#~ "\n" +#~ "and all C format specifications ending with one of diouxXfeEgGcs, with\n" +#~ "ARGUMENTs converted to proper type first. Variable widths are handled.\n" +#~ msgstr "" +#~ "Vypísa» ARGUMENT(y) podµa FORMÁTU.\n" +#~ "\n" +#~ " --help vypísa» túto pomoc a skonèi»\n" +#~ " --version vypísa» informáciu o verzii a skonèi»\n" +#~ "FORMÁT riadi výstup analogicky C-funkcii printf. Spracovávané sekvencie " +#~ "sú:\n" +#~ "\n" +#~ " \\\" úvodzovky\n" +#~ " \\0NNN znak s oktalovou hodnotou NNN (0 a¾ 3 èíslice)\n" +#~ " \\\\ spätné lomítko\n" +#~ " \\a pípnutie (BEL)\n" +#~ " \\b krok spä»\n" +#~ " \\c neprodukova» ïal¹í výstup\n" +#~ " \\f nová stránka\n" +#~ " \\n nový riadok\n" +#~ " \\r návrat na zaèiatok riadku\n" +#~ " \\t horizontálny tabulátor\n" +#~ " \\v vertikálny tabulátor\n" +#~ " \\xNNN znak s hexadecimálnou hodnotou NNN (1 a¾ 3 èíslice)\n" +#~ " \\uNNNN znak s hexadecimálnou hodnotou NNNN (4 èíslice)\n" +#~ " \\UNNNNNNNN znak s hexadecimálnou hodnotou NNNNNNNN (8 èíslic)\n" +#~ "\n" +#~ " %%%% znak %%\n" +#~ " %%b ARGUMENT ako re»azec s interpretovanými `\\' sekvenciami\n" +#~ "\n" +#~ "a v¹etky C ¹pecifikácie formátu konèiace jedným znakov diouxXfeEgGcs, s " +#~ "ARGUMENTAMI\n" +#~ "najprv prevedenými na správny typ. Premenné ¹írky budú spracované.\n" + +#, fuzzy +#~ msgid "" +#~ "Print the full filename of the current working directory.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolný súèet a då¾ku v bytoch ka¾dého SÚBORu.\n" +#~ "\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Special characters:\n" +#~ " * dsusp CHAR CHAR will send a terminal stop signal once input " +#~ "flushed\n" +#~ " eof CHAR CHAR will send an end of file (terminate the input)\n" +#~ " eol CHAR CHAR will end the line\n" +#~ " * eol2 CHAR alternate CHAR for ending the line\n" +#~ " erase CHAR CHAR will erase the last character typed\n" +#~ " intr CHAR CHAR will send an interrupt signal\n" +#~ " kill CHAR CHAR will erase the current line\n" +#~ " * lnext CHAR CHAR will enter the next character quoted\n" +#~ " quit CHAR CHAR will send a quit signal\n" +#~ " * rprnt CHAR CHAR will redraw the current line\n" +#~ " start CHAR CHAR will restart the output after stopping it\n" +#~ " stop CHAR CHAR will stop the output\n" +#~ " susp CHAR CHAR will send a terminal stop signal\n" +#~ " * swtch CHAR CHAR will switch to a different shell layer\n" +#~ " * werase CHAR CHAR will erase the last word typed\n" +#~ msgstr "" +#~ "\n" +#~ "Special characters:\n" +#~ "* dsusp ZNAK ZNAK po¹le signál zastavenia terminálu po zahodení\n" +#~ " nepreèítaného vstupu\n" +#~ " eof ZNAK ZNAK po¹le koniec súboru (ukonèenie vstupu)\n" +#~ " eol ZNAK ZNAK ukonèuje riadok\n" +#~ "* eol2 ZNAK alternatívny ZNAK pre ukonèenie riadku\n" +#~ " erase ZNAK ZNAK zma¾e posledný napísaný znak\n" +#~ " intr ZNAK ZNAK po¹le signál preru¹enia\n" +#~ " kill ZNAK ZNAK zma¾e aktuálny riadok\n" +#~ "* lnext ZNAK ZNAK spôsobí citáciu nasledujúceho znaku\n" +#~ " quit ZNAK ZNAK po¹le signál ukonèenia\n" +#~ "* rprnt ZNAK ZNAK znovu vykreslí aktuálny riadok\n" +#~ " start ZNAK ZNAK spustí výstup po jeho zastavení\n" +#~ " stop ZNAK ZNAK zastaví výstup\n" +#~ " susp ZNAK ZNAK po¹le signál zastavenia terminálu\n" +#~ "* swtch ZNAK ZNAK prepne do odli¹nej úrovne shellu\n" +#~ "* werase ZNAK ZNAK zma¾e posledné napísané slovo\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Special settings:\n" +#~ " N set the input and output speeds to N bauds\n" +#~ " * cols N tell the kernel that the terminal has N columns\n" +#~ " * columns N same as cols N\n" +#~ " ispeed N set the input speed to N\n" +#~ " * line N use line discipline N\n" +#~ " min N with -icanon, set N characters minimum for a completed " +#~ "read\n" +#~ " ospeed N set the output speed to N\n" +#~ " * rows N tell the kernel that the terminal has N rows\n" +#~ " * size print the number of rows and columns according to the " +#~ "kernel\n" +#~ " speed print the terminal speed\n" +#~ " time N with -icanon, set read timeout of N tenths of a second\n" +#~ msgstr "" +#~ "\n" +#~ "©peciálne nastavenia:\n" +#~ " N nastavi» rýchlos» vstupu a výstupu na N baudov\n" +#~ "* cols N oznámi» jadru, ¾e terminál má N ståpcov\n" +#~ "* columns N ako cols N\n" +#~ " ispeed N nastavi» rýchlos» vstupu N\n" +#~ "* line N pou¾i» linkovú disciplínu N\n" +#~ " min N s -icanon nastavi» minimum N znakov pre ukonèené èítanie\n" +#~ " ospeed N nastavi» rýchlos» výstupu N\n" +#~ "* rows N oznámi» jadru, ¾e terminál má N riadkov\n" +#~ "* size vypísa» poèet riadkov a ståpcov podµa údajov jadra\n" +#~ " speed vypísa» rýchlos» terminálu\n" +#~ " time N s -icanon nastavi» èasový limit vstupu na N desatín " +#~ "sekundy\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Input settings:\n" +#~ " [-]brkint breaks cause an interrupt signal\n" +#~ " [-]icrnl translate carriage return to newline\n" +#~ " [-]ignbrk ignore break characters\n" +#~ " [-]igncr ignore carriage return\n" +#~ " [-]ignpar ignore characters with parity errors\n" +#~ " * [-]imaxbel beep and do not flush a full input buffer on a " +#~ "character\n" +#~ " [-]inlcr translate newline to carriage return\n" +#~ " [-]inpck enable input parity checking\n" +#~ " [-]istrip clear high (8th) bit of input characters\n" +#~ " * [-]iuclc translate uppercase characters to lowercase\n" +#~ " * [-]ixany let any character restart output, not only start " +#~ "character\n" +#~ " [-]ixoff enable sending of start/stop characters\n" +#~ " [-]ixon enable XON/XOFF flow control\n" +#~ " [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +#~ " [-]tandem same as [-]ixoff\n" +#~ msgstr "" +#~ "\n" +#~ "Nastavenia vstupu:\n" +#~ " [-]brkint break vyvolá signál preru¹enia\n" +#~ " [-]icrnl preklada» znaky návratu na zaèiatok riadku na nové " +#~ "riadky\n" +#~ " [-]ignbrk ignorova» break znaku\n" +#~ " [-]igncr ignorova» znaky návratu na zaèiatok riadku\n" +#~ " [-]ignpar ignorova» znaky s chybou parity\n" +#~ "* [-]imaxbel pokiaµ príde znak a vyrovnávacia pamä» je plná, pípnu»\n" +#~ " a nezahodi» vstup\n" +#~ " [-]inlcr preklada» nové riadky na znaky návratu na zaèiatok " +#~ "riadku\n" +#~ " [-]inpck povoli» kontrolu parity na vstupe\n" +#~ " [-]istrip vynulova» najvy¹¹í (ôsmy) bit vstupujúcich znakov\n" +#~ "* [-]iuclc preklada» veµké znaky na malé\n" +#~ "* [-]ixany znovu spusti» výstup µubovoµným znakom, nielen znakom " +#~ "¹tart\n" +#~ " [-]ixoff povoli» posielanie ¹tart/stop znakom\n" +#~ " [-]ixon povoli» XON/XOFF riadenie toku\n" +#~ " [-]parmrk oznaèi» chyby parity (postupnos»ou znakov 255-0)\n" +#~ " [-]tandem ako [-]ixoff\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Local settings:\n" +#~ " [-]crterase echo erase characters as backspace-space-backspace\n" +#~ " * crtkill kill all line by obeying the echoprt and echoe settings\n" +#~ " * -crtkill kill all line by obeying the echoctl and echok settings\n" +#~ " * [-]ctlecho echo control characters in hat notation (`^c')\n" +#~ " [-]echo echo input characters\n" +#~ " * [-]echoctl same as [-]ctlecho\n" +#~ " [-]echoe same as [-]crterase\n" +#~ " [-]echok echo a newline after a kill character\n" +#~ " * [-]echoke same as [-]crtkill\n" +#~ " [-]echonl echo newline even if not echoing other characters\n" +#~ " * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +#~ " [-]icanon enable erase, kill, werase, and rprnt special " +#~ "characters\n" +#~ " [-]iexten enable non-POSIX special characters\n" +#~ " [-]isig enable interrupt, quit, and suspend special characters\n" +#~ " [-]noflsh disable flushing after interrupt and quit special " +#~ "characters\n" +#~ " * [-]prterase same as [-]echoprt\n" +#~ " * [-]tostop stop background jobs that try to write to the terminal\n" +#~ " * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +#~ msgstr "" +#~ "\n" +#~ "Lokálne nastavenia:\n" +#~ " [-]crterase echova» znaky zmazania ako krok spä»-medzera-krok spä»\n" +#~ "* crtkill vymaza» riadok s re¹pektovaním nastavení echoprt a echoe\n" +#~ "* -crtkill vymaza» riadok s re¹pektovaním nastavení echoctl a echok\n" +#~ "* [-]ctlecho echova» riadiace znaky v strie¹kovej notácii (`^c')\n" +#~ " [-]echo echova» vstupujúce znaky\n" +#~ "* [-]echoctl ako [-]ctlecho\n" +#~ " [-]echoe ako [-]crterase\n" +#~ " [-]echok echova» nový riadok po znaku vymazania riadku\n" +#~ "* [-]echoke ako [-]crtkill\n" +#~ " [-]echonl echova» nový riadok aj pokiaµ sa ostatné znaky neechujú\n" +#~ "* [-]echoprt echova» vymazané znaky v obrátenom poradí medzi `\\' a " +#~ "'/'\n" +#~ " [-]icanon povoli» ¹peciálne znaky erase, kill, werase, a rprnt\n" +#~ " [-]iexten povoli» ¹peciálne ne-POSIX-ové znaky\n" +#~ " [-]isig povoli» ¹peciálne znaky interrupt, quit a suspend\n" +#~ " [-]noflsh zakáza» zahodenie vstupu po znakoch interrupt and quit\n" +#~ "* [-]prterase ako [-]echoprt\n" +#~ "* [-]tostop zastavi» úlohy v pozadí, keï skúsia zapisova» na " +#~ "terminál\n" +#~ "* [-]xcase s icanon, predradi» `\\' pre veµké písmená\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Combination settings:\n" +#~ " * [-]LCASE same as [-]lcase\n" +#~ " cbreak same as -icanon\n" +#~ " -cbreak same as icanon\n" +#~ " cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +#~ " icanon, eof and eol characters to their default values\n" +#~ " -cooked same as raw\n" +#~ " crt same as echoe echoctl echoke\n" +#~ " dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +#~ " kill ^u\n" +#~ " * [-]decctlq same as [-]ixany\n" +#~ " ek erase and kill characters to their default values\n" +#~ " evenp same as parenb -parodd cs7\n" +#~ " -evenp same as -parenb cs8\n" +#~ " * [-]lcase same as xcase iuclc olcuc\n" +#~ " litout same as -parenb -istrip -opost cs8\n" +#~ " -litout same as parenb istrip opost cs7\n" +#~ " nl same as -icrnl -onlcr\n" +#~ " -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +#~ " oddp same as parenb parodd cs7\n" +#~ " -oddp same as -parenb cs8\n" +#~ " [-]parity same as [-]evenp\n" +#~ " pass8 same as -parenb -istrip cs8\n" +#~ " -pass8 same as parenb istrip cs7\n" +#~ " raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +#~ " -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +#~ " -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +#~ " -raw same as cooked\n" +#~ " sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +#~ " -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +#~ " -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +#~ " isig icanon iexten echo echoe echok -echonl -noflsh\n" +#~ " -xcase -tostop -echoprt echoctl echoke, all special\n" +#~ " characters to their default values.\n" +#~ msgstr "" +#~ "\n" +#~ "Kombinované nastavenia:\n" +#~ "* [-]LCASE ako [-]lcase\n" +#~ " cbreak ako -icanon\n" +#~ " -cbreak ako icanon\n" +#~ " cooked ako brkint ignpar istrip icrnl ixon opost isig\n" +#~ " znaky icanon, eof a eol sa nastavia na implicitné " +#~ "hodnoty\n" +#~ " -cooked ako raw\n" +#~ " crt ako echoe echoctl echoke\n" +#~ " dec ako echoe echoctl echoke -ixany intr ^c erase 0177\n" +#~ " kill ^u\n" +#~ "* [-]decctlq ako [-]ixany\n" +#~ " ek znaky erase a kill sa nastavia na implicitné hodnoty\n" +#~ " evenp ako parenb -parodd cs7\n" +#~ " -evenp ako -parenb cs8\n" +#~ "* [-]lcase ako xcase iuclc olcuc\n" +#~ " litout ako -parenb -istrip -opost cs8\n" +#~ " -litout ako parenb istrip opost cs7\n" +#~ " nl ako -icrnl -onlcr\n" +#~ " -nl ako icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +#~ " oddp ako parenb parodd cs7\n" +#~ " -oddp ako -parenb cs8\n" +#~ " [-]parity ako [-]evenp\n" +#~ " pass8 ako -parenb -istrip cs8\n" +#~ " -pass8 ako parenb istrip cs7\n" +#~ " raw ako -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +#~ " -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +#~ " -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +#~ " -raw ako cooked\n" +#~ " sane ako cread -ignbrk brkint -inlcr -igncr icrnl\n" +#~ " -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +#~ " -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +#~ " isig icanon iexten echo echoe echok -echonl -noflsh\n" +#~ " -xcase -tostop -echoprt echoctl echoke, v¹etky ¹peciálne\n" +#~ " znaky sa nastavia na implicitné hodnoty.\n" + +#, fuzzy +#~ msgid "" +#~ "Exit with the status determined by EXPRESSION.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "EXPRESSION is true or false and sets exit status. It is one of:\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolný súèet a då¾ku v bytoch ka¾dého SÚBORu.\n" +#~ "\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode " +#~ "numbers\n" +#~ " FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +#~ " FILE1 -ot FILE2 FILE1 is older than FILE2\n" +#~ "\n" +#~ " -b FILE FILE exists and is block special\n" +#~ " -c FILE FILE exists and is character special\n" +#~ " -d FILE FILE exists and is a directory\n" +#~ " -e FILE FILE exists\n" +#~ " -f FILE FILE exists and is a regular file\n" +#~ " -g FILE FILE exists and is set-group-ID\n" +#~ " -h FILE FILE exists and is a symbolic link (same as -L)\n" +#~ " -G FILE FILE exists and is owned by the effective group ID\n" +#~ " -k FILE FILE exists and has its sticky bit set\n" +#~ " -L FILE FILE exists and is a symbolic link (same as -h)\n" +#~ " -O FILE FILE exists and is owned by the effective user ID\n" +#~ " -p FILE FILE exists and is a named pipe\n" +#~ " -r FILE FILE exists and is readable\n" +#~ " -s FILE FILE exists and has a size greater than zero\n" +#~ " -S FILE FILE exists and is a socket\n" +#~ " -t [FD] file descriptor FD (stdout by default) is opened on a " +#~ "terminal\n" +#~ " -u FILE FILE exists and its set-user-ID bit is set\n" +#~ " -w FILE FILE exists and is writable\n" +#~ " -x FILE FILE exists and is executable\n" +#~ msgstr "" +#~ "\n" +#~ " SÚBOR1 -ef SÚBOR2 SÚBOR1 a SÚBOR2 majú rovnaké èísla zariadenia a " +#~ "inode\n" +#~ " SÚBOR1 -nt SÚBOR2 SÚBOR1 je nov¹í (èas zmeny) ako SÚBOR2\n" +#~ " SÚBOR1 -ot SÚBOR2 SÚBOR1 je star¹í ako SÚBOR2\n" +#~ "\n" +#~ " -b SÚBOR SÚBOR existuje a je blokový ¹peciálny súbor\n" +#~ " -c SÚBOR SÚBOR existuje a je znakový ¹peciálny súbor\n" +#~ " -d SÚBOR SÚBOR existuje a je adresár\n" +#~ " -e SÚBOR SÚBOR existuje\n" +#~ " -f SÚBOR SÚBOR existuje a je be¾ný súbor\n" +#~ " -g SÚBOR SÚBOR existuje a má nastavný set-group-ID bit\n" +#~ " -G SÚBOR SÚBOR existuje a je vlastnený efektívnym skupinovým ID\n" +#~ " -k SÚBOR SÚBOR existuje a má nastavený sticky bit\n" +#~ " -L SÚBOR SÚBOR existuje a je symbolický odkaz\n" +#~ " -O SÚBOR SÚBOR existuje a je vlastnený efektívnym ID pou¾ívateµa\n" +#~ " -p SÚBOR SÚBOR existuje a je pomenovaná rúra\n" +#~ " -r SÚBOR SÚBOR existuje a je èitateµný\n" +#~ " -s SÚBOR SÚBOR existuje a má nenulovú då¾ku\n" +#~ " -S SÚBOR SÚBOR existuje a je socket\n" +#~ " -t [FD] deskriptor súboru FD (implicitne ¹tandardný výstup)\n" +#~ " je otvorený na termináli\n" +#~ " -u SÚBOR SÚBOR existuje a má nastavený set-user-ID bit\n" +#~ " -w SÚBOR SÚBOR existuje a je zapisovateµný\n" +#~ " -x SÚBOR SÚBOR existuje a je vykonateµný\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " -a, --all same as -b -d --login -p -r -t -T -u\n" +#~ " -b, --boot time of last system boot\n" +#~ " -d, --dead print dead processes\n" +#~ " -H, --heading print line of column headings\n" +#~ " -i, --idle add idle time as HOURS:MINUTES, . or old\n" +#~ " (deprecated, use -u)\n" +#~ " --login print system login processes\n" +#~ " (equivalent to SUS -l)\n" +#~ " -l, --lookup attempt to canonicalize hostnames via DNS\n" +#~ " (-l is deprecated, use --lookup)\n" +#~ " -m only hostname and user associated with stdin\n" +#~ " -p, --process print active processes spawned by init\n" +#~ " -q, --count all login names and number of users logged on\n" +#~ " -r, --runlevel print current runlevel\n" +#~ " -s, --short print only name, line, and time (default)\n" +#~ " -t, --time print last system clock change\n" +#~ " -T, -w, --mesg add user's message status as +, - or ?\n" +#~ " -u, --users lists users logged in\n" +#~ " --message same as -T\n" +#~ " --writable same as -T\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "If FILE is not specified, use %s. %s as FILE is common.\n" +#~ "If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +#~ msgstr "" +#~ "\n" +#~ " -H, --heading vypísa» hlavièky ståpcov\n" +#~ " -i, -u, --idle vypísa» èas neèinnosti ako HOD:MIN, . alebo dávno\n" +#~ " -l, --lookup pokúsi» sa o kanonizáciu mien prostredníctvom DNS\n" +#~ " -m iba meno poèítaèa a pou¾ívateµa spojené so ¹tand. " +#~ "vstupom\n" +#~ " -q, --count v¹etky mená pou¾ívateµov a ich poèet\n" +#~ " -s (ignorované)\n" +#~ " -T, -w, --mesg prida» stav povolenia príjmu správ ako +, - or ?\n" +#~ " --message ako -T\n" +#~ " --writable ako -T\n" +#~ " --help vypísa» túto pomoc a skonèi»\n" +#~ " --version vypísa» informáciu o verzii a skonèi»\n" +#~ "\n" +#~ "Ak SÚBOR nebol zadaný, pou¾íje sa %s. %s ako SÚBOR je obvyklý.\n" +#~ "Pokiaµ sú zadané ARG1 a ARG2, predpokladá sa -m: `am i' alebo `mom " +#~ "likes'\n" +#~ "sú obvyklé.\n" + +#, fuzzy +#~ msgid "" +#~ "Repeatedly output a line with all specified STRING(s), or `y'.\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolný súèet a då¾ku v bytoch ka¾dého SÚBORu.\n" +#~ "\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" + +#~ msgid "cannot get processor type" +#~ msgstr "nie je mo¾né zisti» typ procesora" + +#~ msgid "USER" +#~ msgstr "U®ÍV" + +#~ msgid "MESG " +#~ msgstr "SPR " + +#~ msgid "LOGIN-TIME " +#~ msgstr "ÈAS-PRIHLÁS " + +#~ msgid "FROM\n" +#~ msgstr "Z\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "(obsolete) If -VALUE is used as first OPTION, same as -c VALUE when one " +#~ "of\n" +#~ "multipliers bkm follows concatenated, else same as -n VALUE.\n" +#~ msgstr "" +#~ " Vypí¹e prvých 10 riadkov ka¾dého súboru na ¹tandardný výstup. S viac " +#~ "ako\n" +#~ "jedným súborom, bude pred vypísaním ka¾dého uvedená hlavièka obsahujúca " +#~ "meno\n" +#~ "súboru. Ak SÚBOR nebude zadaný alebo bude -, bude èítaný ¹tandardný " +#~ "vstup.\n" +#~ "\n" +#~ " -c, --bytes=VE¥KOS« vypí¹e prvých VE¥KOS« bytov\n" +#~ " -n, --lines=POÈET vypí¹e prvých POÈET riadkov namiesto prvých " +#~ "10\n" +#~ " -q, --quiet, --silent nikdy nevypisuje hlavièky s názvami súborov\n" +#~ " -v, --verbose vypisuje hlavièky s názvami súborov v¾dy\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" +#~ "\n" +#~ " VE¥KOS« mô¾e ma» násobiacu príponu: b pre 512, k pre 1K, m pre 1M. " +#~ "Pokiaµ\n" +#~ "prvý prepínaè bude -HODNOTA a ak bude pou¾itá násobiaca prípona, potom " +#~ "bude braný\n" +#~ "ako -c HODNOTA. Inak bude prepínaè braný ako -n HODNOTA.\n" + +#, fuzzy +#~ msgid "warning: `od -w' is obsolete; use `od --width'" +#~ msgstr "varovanie: chybná ¹írka %lu; namiesto nej pou¾ijem %d" + +#, fuzzy +#~ msgid "warning: `pr -S' is obsolete; use `pr --sep-string'" +#~ msgstr "varovanie: chybná ¹írka %lu; namiesto nej pou¾ijem %d" + +#, fuzzy +#~ msgid "" +#~ " +POS1 [-POS2] start a key at POS1, end it before POS2 " +#~ "(origin 0)\n" +#~ " Warning: this option is obsolete\n" +#~ msgstr "" +#~ " Porovnáva súbory ¥AVÝ_SÚBOR a PRAVÝ_SÚBOR, ktorých riadky sú " +#~ "usporiadané\n" +#~ "podµa nejakého kµúèa, riadok po riadku. Výstupom sú tri ståpce, riadky " +#~ "obsiahnuté\n" +#~ "iba v µavom súbore, riadky obsiahnuté iba v pravom súbore, riadky " +#~ "spoloèné\n" +#~ "obom súborom.\n" +#~ "\n" +#~ " -1 neukazuje riadky obsiahnuté iba v µavom súbore\n" +#~ " -2 neukazuje riadky obsiahnuté iba v pravom súbore\n" +#~ " -3 neukazuje riadky spoloèné obom súborom\n" +#~ " --help vypí¹e tuto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" + +#, fuzzy +#~ msgid "warning: `sort -y' is obsolete; omit `-y'" +#~ msgstr "varovanie: chybná ¹írka %lu; namiesto nej pou¾ijem %d" + +#, fuzzy +#~ msgid "warning: `tail %s' is obsolete; use -n or -c instead" +#~ msgstr "varovanie: chybná ¹írka %lu; namiesto nej pou¾ijem %d" + +#, fuzzy +#~ msgid "warning: `uniq %s' is obsolete; use `uniq -s %s' instead" +#~ msgstr "varovanie: chybná ¹írka %lu; namiesto nej pou¾ijem %d" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolný súèet a då¾ku v bytoch ka¾dého SÚBORu.\n" +#~ "\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolný súèet a då¾ku v bytoch ka¾dého SÚBORu.\n" +#~ "\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolný súèet a då¾ku v bytoch ka¾dého SÚBORu.\n" +#~ "\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolný súèet a då¾ku v bytoch ka¾dého SÚBORu.\n" +#~ "\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ "Vypí¹e CRC kontrolný súèet a då¾ku v bytoch ka¾dého SÚBORu.\n" +#~ "\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ "Convert tabs in each FILE to spaces, writing to standard output.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -i, --initial do not convert TABs after non whitespace\n" +#~ " -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +#~ msgstr "" +#~ " Konvertuje tabulátory v ka¾dom SÚBORe na medzery, výstup ide na " +#~ "¹tandardný\n" +#~ "výstup. Ak nebude SÚBOR zadaný alebo ak bude -, bude èítaný ¹tandardný " +#~ "vstup.\n" +#~ "\n" +#~ " -i, --initial konvertuje iba tabulátory pred prvým znakom na " +#~ "riadku\n" +#~ " -t, --tabs=POÈET tabulátor pova¾uje za POÈET (8) medzier\n" +#~ " -t, --tabs=ZOZNAM pou¾ije èiarkami oddelený zoznam pozícií " +#~ "tabulátorov\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" +#~ "\n" +#~ "Namiesto -t POÈET alebo -t ZOZNAM mô¾ete pou¾i» -POÈET alebo -ZOZNAM.\n" + +#, fuzzy +#~ msgid "" +#~ " -t, --tabs=LIST use comma separated list of explicit tab positions\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n" +#~ msgstr "" +#~ " Konvertuje tabulátory v ka¾dom SÚBORe na medzery, výstup ide na " +#~ "¹tandardný\n" +#~ "výstup. Ak nebude SÚBOR zadaný alebo ak bude -, bude èítaný ¹tandardný " +#~ "vstup.\n" +#~ "\n" +#~ " -i, --initial konvertuje iba tabulátory pred prvým znakom na " +#~ "riadku\n" +#~ " -t, --tabs=POÈET tabulátor pova¾uje za POÈET (8) medzier\n" +#~ " -t, --tabs=ZOZNAM pou¾ije èiarkami oddelený zoznam pozícií " +#~ "tabulátorov\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" +#~ "\n" +#~ "Namiesto -t POÈET alebo -t ZOZNAM mô¾ete pou¾i» -POÈET alebo -ZOZNAM.\n" + +#, fuzzy +#~ msgid "" +#~ "Wrap input lines in each FILE (standard input by default), writing to\n" +#~ "standard output.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --bytes count bytes rather than columns\n" +#~ " -s, --spaces break at spaces\n" +#~ " -w, --width=WIDTH use WIDTH columns instead of 80\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ msgstr "" +#~ " Zalamuje vstupné riadky ka¾dého SÚBORu (implicitne ¹tandardného " +#~ "vstupu),\n" +#~ "zapisujúc výstup na ¹tandardný výstup.\n" +#~ "\n" +#~ " -b, --bytes pre zalamovanie poèíta bajty na riadku namiesto " +#~ "ståpcov\n" +#~ " -s, --spaces zalamuje riadky v medzerách\n" +#~ " -w, --width=©ÍRKA pou¾íva ©ÍRKA ståpcov namiesto 80\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" +#~ "\n" +#~ "V ståpcoch nie sú zahrnuté kontrolné znaky na rozdiel od bytov.\n" + +#, fuzzy +#~ msgid "" +#~ "Write lines consisting of the sequentially corresponding lines from\n" +#~ "each FILE, separated by TABs, to standard output.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +#~ " -s, --serial paste one file at a time instead of in " +#~ "parallel\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ " Vypí¹e riadky skladajúce sa z riadkov jednotlivých SÚBORov, v zadanom " +#~ "poradí,\n" +#~ "a oddelených tabulátormi na ¹tandardný výstup. Pokiaµ SÚBOR nebude " +#~ "zadaný\n" +#~ "alebo bude -, bude èítaný ¹tandardný vstup.\n" +#~ "\n" +#~ " -d, --delimiters=ZOZNAM pou¾ije znaky zo ZOZNAMU ako oddeµovaèe " +#~ "(namiesto TAB)\n" +#~ " -s, --serial vypí¹e súbory za sebou namiesto vedµa seba\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ " -NUMBER same as -l NUMBER\n" +#~ " --verbose print a diagnostic to standard error just\n" +#~ " before each output file is opened\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +#~ msgstr "" +#~ " Rozdelí SÚBOR do súborov PREDPONAaa, PREDPONAab, ... s pevnou då¾kou.\n" +#~ "Implicitná PREDPONA je `x'. Pokiaµ SÚBOR nebude zadaný alebo bude -, bude " +#~ "èítaný\n" +#~ "¹tandardný vstup.\n" +#~ "\n" +#~ " -b, --bytes=VE¥KOS« zapí¹e VE¥KOST bytov do výstupného súboru\n" +#~ " -C, --line-bytes=VE¥KOS« zapí¹e najviac VE¥KOST bytov na výstupný " +#~ "riadok\n" +#~ " -l, --lines=POÈET zapí¹e POÈET riadkov do výstupného súboru\n" +#~ " -POÈET to isté ako -l POÈET\n" +#~ " --verbose pred otvorením ka¾dého výstupného súboru " +#~ "vypí¹e\n" +#~ " o tom oznámenie na ¹tandardný výstup\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenei verzie a skonèí\n" +#~ "\n" +#~ "VE¥KOS« mô¾e ma» násobiacu príponu: b - 512, k - 1024, m - 1 Mega.\n" + +#, fuzzy +#~ msgid "" +#~ "Write each FILE to standard output, last line first.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --before attach the separator before instead of after\n" +#~ msgstr "" +#~ " Vypí¹e ka¾dý SÚBOR na ¹tandardný výstup. Posledný riadok ako prvý.\n" +#~ "Pokiaµ SÚBOR nebude zadaný alebo bude -, bude èítaný ¹tandardný vstup.\n" +#~ "\n" +#~ " -b, --before pripojí oddeµovaè riadkov pred riadky " +#~ "namiesto\n" +#~ " za ne\n" +#~ " -r, --regex interpretuje oddeµovaè ako regulárny výraz\n" +#~ " -s, --separator=RE«AZEC pou¾ije RE«AZEC ako oddeµovaè namiesto nového " +#~ "riadku\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" + +#, fuzzy +#~ msgid "" +#~ "Print the last %d lines of each FILE to standard output.\n" +#~ "With more than one FILE, precede each with a header giving the file " +#~ "name.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " --retry keep trying to open a file even if it is\n" +#~ " inaccessible when tail starts or if it " +#~ "becomes\n" +#~ " inaccessible later -- useful only with -f\n" +#~ msgstr "" +#~ " Vypí¹e prvých 10 riadkov ka¾dého súboru na ¹tandardný výstup. S viac " +#~ "ako\n" +#~ "jedným súborom, bude pred vypísaním ka¾dého uvedená hlavièka obsahujúca " +#~ "meno\n" +#~ "súboru. Ak SÚBOR nebude zadaný alebo bude -, bude èítaný ¹tandardný " +#~ "vstup.\n" +#~ "\n" +#~ " -c, --bytes=VE¥KOS« vypí¹e prvých VE¥KOS« bytov\n" +#~ " -n, --lines=POÈET vypí¹e prvých POÈET riadkov namiesto prvých " +#~ "10\n" +#~ " -q, --quiet, --silent nikdy nevypisuje hlavièky s názvami súborov\n" +#~ " -v, --verbose vypisuje hlavièky s názvami súborov v¾dy\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" +#~ "\n" +#~ " VE¥KOS« mô¾e ma» násobiacu príponu: b pre 512, k pre 1K, m pre 1M. " +#~ "Pokiaµ\n" +#~ "prvý prepínaè bude -HODNOTA a ak bude pou¾itá násobiaca prípona, potom " +#~ "bude braný\n" +#~ "ako -c HODNOTA. Inak bude prepínaè braný ako -n HODNOTA.\n" + +#, fuzzy +#~ msgid "" +#~ " -t, --tabs=NUMBER have tabs NUMBER characters apart instead of 8\n" +#~ " -t, --tabs=LIST use comma separated list of explicit tab positions\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n" +#~ msgstr "" +#~ " V ka¾dom SÚBORe konvertuje medzery na tabulátory a výsledok vypisuje\n" +#~ "na ¹tandardný výstup. Ak nebude SÚBOR zadaný alebo bude -, bude èítaný\n" +#~ "¹tandardný vstup.\n" +#~ "\n" +#~ " -a, --all konvertuje v¹etky medzery, namiesto iba úvodných\n" +#~ " -t, --tabs=POÈET nastaví tabulátor na POÈET medzier (8)\n" +#~ " -t, --tabs=ZOZNAM pou¾ije èiarkami oddelený zoznam pre pozície " +#~ "tabulátorov\n" +#~ " --help vypí¹e tuto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" +#~ "\n" +#~ "Namiesto -t POÈET alebo -t ZOZNAM je mo¾né pou¾i» -POÈET alebo -ZOZNAM.\n" + +#, fuzzy +#~ msgid "" +#~ "Output pieces of FILE separated by PATTERN(s) to files `xx01', " +#~ "`xx02', ...,\n" +#~ "and output byte counts of each piece to standard output.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --suffix-format=FORMAT use sprintf FORMAT instead of %%d\n" +#~ " -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +#~ " -k, --keep-files do not remove output files on errors\n" +#~ " -n, --digits=DIGITS use specified number of digits instead of 2\n" +#~ " -s, --quiet, --silent do not print counts of output file sizes\n" +#~ " -z, --elide-empty-files remove empty output files\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Read standard input if FILE is -. Each PATTERN may be:\n" +#~ "\n" +#~ " INTEGER copy up to but not including specified line number\n" +#~ " /REGEXP/[OFFSET] copy up to but not including a matching line\n" +#~ " %%REGEXP%%[OFFSET] skip to, but not including a matching line\n" +#~ " {INTEGER} repeat the previous pattern specified number of " +#~ "times\n" +#~ " {*} repeat the previous pattern as many times as " +#~ "possible\n" +#~ "\n" +#~ "A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +#~ msgstr "" +#~ " Rozdeµuje SÚBOR v miestach VZORu(ov) do súborov `xx01', `xx02', ...\n" +#~ "a vypisuje veµkosti ka¾dého súboru na ¹tandardný výstup.\n" +#~ "\n" +#~ " -b, --suffix-format=FORMÁT pou¾ije sprintf FORMÁT namiesto %%d\n" +#~ " -f, --prefix=PREDPONA pou¾ije PREDPONU namiesto `xx'\n" +#~ " -k, --keep-files nema¾e výstupné súbory pri chybách\n" +#~ " -n, --digits=ÈÍSLIC pou¾ije zadaný poèet èíslic namiesto 2\n" +#~ " -s, --quiet, --silent nevypisuje veµkosti výstupných súborov\n" +#~ " -z, --elide-empty-files ma¾e prázdne výstupné súbory\n" +#~ " --help vypí¹e tuto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" +#~ "\n" +#~ "Ak SÚBOR bude -, bude èítaný ¹tandardný vstup. Ka¾dý VZOR mô¾e by»:\n" +#~ "\n" +#~ " CELÉ_ÈÍSLO kopíruje v¹etko a¾ do riadku tohto èísla, ale bez " +#~ "neho\n" +#~ " /REGVÝR/[POSUN] kopíruje v¹etko do riadku zodpovedajúceho " +#~ "regulárnemu výrazu,\n" +#~ " ale bez neho\n" +#~ " %%REGVÝR%%[POSUN] preskoèí v¹etko a¾ do riadku zodpovedajúceho " +#~ "regulárnemu\n" +#~ " výrazu, ale bez neho\n" +#~ " {CELÉ_ÈÍSLO} opakuje predchádzajúci vzor toµkokrát, koµko je tu " +#~ "uvedené\n" +#~ " {*} opakuje predchádzajúci vzor toµkokrát, koµko je to " +#~ "mo¾né\n" +#~ "\n" +#~ " POSUN musí zaèína» s `+' alebo `-', nasledovaný celým kladným èíslom. " +#~ "Posun\n" +#~ "urèuje koµko znakov se e¹te zahrnie do bloku v mieste vyhodnotenia " +#~ "REGVÝR.\n" + +#, fuzzy +#~ msgid "" +#~ "Print selected parts of lines from each FILE to standard output.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --bytes=LIST output only these bytes\n" +#~ " -c, --characters=LIST output only these characters\n" +#~ " -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +#~ " -f, --fields=LIST output only these fields; also print any line\n" +#~ " that contains no delimiter character, unless\n" +#~ " the -s option is specified\n" +#~ " -n (ignored)\n" +#~ " -s, --only-delimited do not print lines not containing delimiters\n" +#~ " --output-delimiter=STRING use STRING as the output delimiter\n" +#~ " the default is to use the input delimiter\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +#~ "range, or many ranges separated by commas. Each range is one of:\n" +#~ "\n" +#~ " N N'th byte, character or field, counted from 1\n" +#~ " N- from N'th byte, character or field, to end of line\n" +#~ " N-M from N'th to M'th (included) byte, character or field\n" +#~ " -M from first to M'th (included) byte, character or field\n" +#~ "\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ msgstr "" +#~ "Vypí¹e iba vybrané èasti riadkov z ka¾dého SÚBORu na ¹tandardný výstup.\n" +#~ "\n" +#~ " -b, --bytes=ZOZNAM vypí¹e iba tieto byty\n" +#~ " -c, --characters=ZOZNAM vypí¹e iba tieto znaky\n" +#~ " -d, --delimiter=ODDE¥OVAÈ ako oddeµovaè pou¾ije ODDE¥OVAÈ (namiesto " +#~ "TAB)\n" +#~ " -f, --fields=ZOZNAM vypí¹e iba tieto polo¾ky; pokiaµ nie je " +#~ "zadaná\n" +#~ " voµba -s, vypí¹e aj v¹etky riadky " +#~ "neobsahujúce\n" +#~ " ¾iadny oddeµovaè\n" +#~ " -n (ignorované)\n" +#~ " -s, --only-delimited potlaèí riadky neobsahujúce znak oddeµovaèa\n" +#~ " --output-delimiter=RE«AZEC RE«AZEC sa pou¾ije ako výstupný " +#~ "oddeµovaè.\n" +#~ " Implicitne je ako tento oddeµovaè pou¾itý " +#~ "vstupný\n" +#~ " oddeµovaè.\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" +#~ "\n" +#~ "Pou¾ite jeden a iba jeden z prepínaèov -b, -c a -f. Ka¾dý zoznam sa " +#~ "skladá\n" +#~ "z jedného rozsahu alebo z viac rozsahov oddelených èiarkami. Ka¾dý rozsah " +#~ "mô¾e\n" +#~ "by»:\n" +#~ "\n" +#~ " N N-tý byt, znak alebo polo¾ka, poèítané od 1\n" +#~ " N- od N-tého bytu, znaku alebo polo¾ky, do konca riadku\n" +#~ " N-M od N-tého do M-tého (vrátane) bytu, znaku alebo polo¾ky\n" +#~ " -M od prvního do M-tého (vrátane) bytu, znaku alebo polo¾ky\n" +#~ "\n" +#~ "Ak SÚBOR nie je zadaný alebo je `-', bude èítaný zo ¹tandardného vstupu.\n" + +#~ msgid "" +#~ "For each pair of input lines with identical join fields, write a line to\n" +#~ "standard output. The default join field is the first, delimited\n" +#~ "by whitespace. When FILE1 or FILE2 (not both) is -, read standard " +#~ "input.\n" +#~ "\n" +#~ " -a SIDE print unpairable lines coming from file SIDE\n" +#~ " -e EMPTY replace missing input fields with EMPTY\n" +#~ " -i, --ignore-case ignore differences in case when comparing fields\n" +#~ " -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +#~ " -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +#~ " -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +#~ " -o FORMAT obey FORMAT while constructing output line\n" +#~ " -t CHAR use CHAR as input and output field separator\n" +#~ " -v SIDE like -a SIDE, but suppress joined output lines\n" +#~ " -1 FIELD join on this FIELD of file 1\n" +#~ " -2 FIELD join on this FIELD of file 2\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +#~ "else fields are separated by CHAR. Any FIELD is a field number counted\n" +#~ "from 1. FORMAT is one or more comma or blank separated specifications,\n" +#~ "each being `SIDE.FIELD' or `0'. Default FORMAT outputs the join field,\n" +#~ "the remaining fields from FILE1, the remaining fields from FILE2, all\n" +#~ "separated by CHAR.\n" +#~ msgstr "" +#~ " Pre ka¾dý pár vstupných riadkov s rovnakými prepojovacími polo¾kami, " +#~ "zapí¹e\n" +#~ "riadok na ¹tandardný výstup. Implicitne je prepojovacou polo¾kou polo¾ka " +#~ "prvá\n" +#~ "a oddeµovaè je medzera. Pokiaµ SÚBOR1 alebo SÚBOR2 bude -, potom tento " +#~ "bude\n" +#~ "èítaný zo ¹tandardného vstupu.\n" +#~ "\n" +#~ " -a STRANA vypí¹e nepárové riadky pochádzajúce zo súboru STRANA\n" +#~ " -e PRÁZDN nahradí chýbajúce vstupné polo¾ky znakom PRÁZDN\n" +#~ " -i, --ignore-case pri porovnávaní polo¾iek ignoruje rozdiely medzi " +#~ "malými\n" +#~ " a veµkými písmenami\n" +#~ " -j POLO®KA (zastarané) rovnocenné s `-1 POLE -2 POLE'\n" +#~ " -j1 POLO®KA (zastarané) rovnocenné s `-1 POLE'\n" +#~ " -j2 POLO®KA (zastarané) rovnocenné s `-2 POLE'\n" +#~ " -o FORMÁT riadi sa FORMÁTom pri tvorbe výstupného riadku\n" +#~ " -t ZNAK pou¾ije ZNAK ako oddeµovaè polo¾iek na vstupe aj " +#~ "výstupe.\n" +#~ " -v STRANA ako -a STRANA, ale bez spojených riadkov.\n" +#~ " -1 POLO®KA spája pomocou tejto POLO®KY súboru 1\n" +#~ " -2 POLO®KA spája pomocou tejto POLO®KY súboru 2\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" +#~ "\n" +#~ " Pokiaµ prepínaè -t ZNAK nebude zadaný, ako oddeµovaè bude pou¾itá " +#~ "medzera\n" +#~ "a prázdne polo¾ky na zaèiatku riadku budú ignorované. Inak bude " +#~ "oddeµovaèom\n" +#~ "polo¾iek ZNAK. ¥ubovoµná POLO®KA je poradie polo¾ky poèítané od 1. FORMÁT " +#~ "je\n" +#~ "jedna alebo viac èiarkami alebo medzerami oddelených popisovaèov, ka¾dý " +#~ "mô¾e by»\n" +#~ "'STRANA.POLO®KA' alebo '0'. Implicitný FORMÁT vypisuje prepojovaciu " +#~ "polo¾ku,\n" +#~ "zbytok polo¾iek zo súboru 1, zbytok polo¾iek zo súboru 2. V¹etky sú " +#~ "oddelené\n" +#~ "znakom ZNAK.\n" + +#~ msgid "" +#~ "Usage: %s [OPTION] [FILE]...\n" +#~ " or: %s [OPTION] --check [FILE]\n" +#~ "Print or check %s (%d-bit) checksums.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ " -b, --binary read files in binary mode (default on DOS/" +#~ "Windows)\n" +#~ " -c, --check check %s sums against given list\n" +#~ " -t, --text read files in text mode (default)\n" +#~ "\n" +#~ "The following two options are useful only when verifying checksums:\n" +#~ " --status don't output anything, status code shows " +#~ "success\n" +#~ " -w, --warn warn about improperly formated checksum lines\n" +#~ "\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "The sums are computed as described in %s. When checking, the input\n" +#~ "should be a former output of this program. The default mode is to print\n" +#~ "a line with checksum, a character indicating type (`*' for binary, ` ' " +#~ "for\n" +#~ "text), and name for each FILE.\n" +#~ msgstr "" +#~ "Pou¾itie: %s [PREPÍNAÈ] [SÚBOR]...\n" +#~ " alebo: %s [PREPÍNAÈ] --check [SÚBOR]\n" +#~ "\n" +#~ " Vypí¹e alebo kontroluje %s (%d-bitové) kontrolné súèty. Pokiaµ SÚBOR\n" +#~ "nebude zadaný alebo bude -, bude èítaný ¹tandardný vstup.\n" +#~ "\n" +#~ " -b, --binary èíta súbory v binárnom móde (implicitné\n" +#~ " v DOSe/Windows)\n" +#~ " -c, --check porovnáva %s súèty so zadaným zoznamom\n" +#~ " -t, --text èíta súbory v textovom móde (implicitné)\n" +#~ "\n" +#~ "Nasledujúce prepínaèe sú u¾itoèné iba pri overovaní kontrolných súètov:\n" +#~ " --status nevypisuje niè, status kód ukazuje úspe¹nos»\n" +#~ " -w, --warn varovanie o nesprávne formátovaných riadkoch\n" +#~ " kontrolných súètov\n" +#~ "\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" +#~ "\n" +#~ " Súèty sú poèítané podµa definície v %s. Pri testovaní by vstup mal\n" +#~ "by» skor¹ím výstupom tohoto programu. Implicitné nastavenie je výpis " +#~ "jedného\n" +#~ "riadku pre ka¾dý SÚBOR. Formát riadku je kontrolný súèet, znak indikujúci " +#~ "typ\n" +#~ "('*' pre binárny, ' ' pre textový) a meno SÚBORu.\n" + +#, fuzzy +#~ msgid "" +#~ "Write each FILE to standard output, with line numbers added.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +#~ " -d, --section-delimiter=CC use CC for separating logical pages\n" +#~ " -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +#~ " -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +#~ " -i, --page-increment=NUMBER line number increment at each line\n" +#~ " -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +#~ "one\n" +#~ " -n, --number-format=FORMAT insert line numbers according to " +#~ "FORMAT\n" +#~ " -p, --no-renumber do not reset line numbers at logical " +#~ "pages\n" +#~ " -s, --number-separator=STRING add STRING after (possible) line " +#~ "number\n" +#~ " -v, --first-page=NUMBER first line number on each logical page\n" +#~ " -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +#~ "two delimiter characters for separating logical pages, a missing\n" +#~ "second character implies :. Type \\\\ for \\. STYLE is one of:\n" +#~ "\n" +#~ " a number all lines\n" +#~ " t number only nonempty lines\n" +#~ " n number no lines\n" +#~ " pREGEXP number only lines that contain a match for REGEXP\n" +#~ "\n" +#~ "FORMAT is one of:\n" +#~ "\n" +#~ " ln left justified, no leading zeros\n" +#~ " rn right justified, no leading zeros\n" +#~ " rz right justified, leading zeros\n" +#~ "\n" +#~ msgstr "" +#~ " Prepí¹e ka¾dý SÚBOR na ¹tandardný výstup a ku ka¾dému riadku pridá " +#~ "jeho\n" +#~ "èíslo. Pokiaµ SÚBOR nebude zadaný alebo bude -, bude èítaný ¹tandardný " +#~ "vstup.\n" +#~ "\n" +#~ " -b, --body-numbering=©TÝL pou¾ije ©TÝL na èíslovanie riadkov v " +#~ "tele\n" +#~ " -d, --section-delimiter=CC pou¾ije CC pre oddelenie logických " +#~ "stránok\n" +#~ " -f, --footer-numbering=©TÝL pou¾ije ©TÝL na èíslovanie riadkov v " +#~ "pätièke\n" +#~ " -h, --header-numbering=©TÝL pou¾ije ©TÝL na èíslovanie riadkov v " +#~ "hlavièke\n" +#~ " -i, --page-increment=ÈÍSLO o koµko zvy¹ova» èíslo riadkov\n" +#~ " -l, --join-blank-lines=POÈET berie POÈET prázdnych riadkov ako " +#~ "jeden\n" +#~ " -n, --number-format=FORMÁT èísla riadkov vypisuje podµa FORMÁTu\n" +#~ " -p, --no-renumber nenuluje èíslo riadku na zaèiatku " +#~ "logickej\n" +#~ " stránky\n" +#~ " -s, --number-separator=RE«AZEC pridá re»azec za èíslo riadku " +#~ "(oddeµovaè\n" +#~ " èísla od ïaµ¹ieho riadku)\n" +#~ " -v, --first-page=ÈÍSLO èíslo prvého riadku na logickej " +#~ "stránke\n" +#~ " -w, --number-width=POÈET èísla riadkov vypisuje na POÈET miest\n" +#~ " --help vypí¹e tuto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" +#~ "\n" +#~ " Implicitné sú parametre -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC sú\n" +#~ "dva znaky, ktoré sú pou¾ité na oddeµovanie logických stránok. Pre zadanie " +#~ "'\\'\n" +#~ "je treba napísa» '\\\\'. ©TÝL je jeden z:\n" +#~ "\n" +#~ " a èísluje v¹etky riadky\n" +#~ " t èísluje iba neprázdne riadky\n" +#~ " n riadky neèísluje\n" +#~ " pREGVÝR èísluje iba riadky vyhovujúce REGVÝR\n" +#~ "\n" +#~ "FORMÁT je jeden z:\n" +#~ "\n" +#~ " ln zarovnáva vµavo, bez úvodných núl\n" +#~ " rn zarovnáva vpravo, bez úvodných núl\n" +#~ " rz zarovnáva vpravo, s úvodnými nulami\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Write an unambiguous representation, octal bytes by default,\n" +#~ "of FILE to standard output. With more than one FILE argument,\n" +#~ "concatenate them in the listed order to form the input.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -A, --address-radix=RADIX decide how file offsets are printed\n" +#~ " -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +#~ " -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +#~ " -s, --strings[=BYTES] output strings of at least BYTES graphic " +#~ "chars\n" +#~ " -t, --format=TYPE select output format or formats\n" +#~ " -v, --output-duplicates do not use * to mark line suppression\n" +#~ " -w, --width[=BYTES] output BYTES bytes per output line\n" +#~ " --traditional accept arguments in pre-POSIX form\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "Pre-POSIX format specifications may be intermixed, they accumulate:\n" +#~ " -a same as -t a, select named characters\n" +#~ " -b same as -t oC, select octal bytes\n" +#~ " -c same as -t c, select ASCII characters or backslash escapes\n" +#~ " -d same as -t u2, select unsigned decimal shorts\n" +#~ " -f same as -t fF, select floats\n" +#~ " -h same as -t x2, select hexadecimal shorts\n" +#~ " -i same as -t d2, select decimal shorts\n" +#~ " -l same as -t d4, select decimal longs\n" +#~ " -o same as -t o2, select octal shorts\n" +#~ " -x same as -t x2, select hexadecimal shorts\n" +#~ msgstr "" +#~ " Vypí¹e SÚBOR v zadanom formáte, implicitný je osmièkový výpis, na\n" +#~ "¹tandardný výstup. Pokiaµ SÚBOR nebude zadaný alebo bude -, bude èítaný\n" +#~ "¹tandardný vstup.\n" +#~ "\n" +#~ " -A, --address-radix=ZÁKLAD pozíciu v súbore vypisuje v zadanej " +#~ "sústave\n" +#~ " -j, --skip-bytes=POÈET preskoèí prvých POÈET bytov ka¾dého súboru\n" +#~ " -N, --read-bytes=POÈET vypí¹e iba POÈET bytov ka¾dého súboru\n" +#~ " -s, --strings[=POÈET] vypí¹e iba re»azce obsahujúce najmenej " +#~ "POÈET\n" +#~ " znakov\n" +#~ " -t, --format=TYP vyberie výstupný formát alebo formáty\n" +#~ " -v, --output-duplicates vypisuje aj za sebou sa opakujúce rovnaké " +#~ "riadky\n" +#~ " -w, --width[=POÈET] vypí¹e POÈET bytov na výstupný riadok\n" +#~ " --traditional akceptuje argumenty v pred-POSIXovom tvare\n" +#~ " --help vypí¹e tuto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" +#~ "\n" +#~ "Pred-POSIXové formáty mô¾u by» pou¾ívané spolu s POSIXovými, to zahàòa:\n" +#~ " -a rovnaké ako -t a, názvy znakov\n" +#~ " -b rovnaké ako -t oC, byty osmièkovo\n" +#~ " -c rovnaké ako -t c, ASCII znaky alebo kódy znakov so spätným " +#~ "lomítkom\n" +#~ " -d rovnaké ako -t u2, desiatkové bez znamienka (dvoj bytové - short)\n" +#~ " -f rovnaké ako -t fF, èísla s plávajúcou radovou èiarkou\n" +#~ " -h rovnaké ako -t x2, ¹estnástkové (dvoj bytové - short)\n" +#~ " -i rovnaké ako -t d2, desiatkové so znamienkom (dvoj bytové - short)\n" +#~ " -l rovnaké ako -t d4, desiatkové so znamienkom (¹tvor bytové - long)\n" +#~ " -o rovnaké ako -t o2, osmièkové (dvoj bytové - short)\n" +#~ " -x rovnaké ako -t x2, ¹estnástkové (dvoj bytové - short)\n" + +# `maybe' or `may be'? - rzm +#~ msgid "" +#~ "\n" +#~ "For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +#~ "is the pseudo-address at first byte printed, incremented when dump is\n" +#~ "progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +#~ "hexadecimal, suffixes maybe . for octal and b multiply by 512.\n" +#~ "\n" +#~ "TYPE is made up of one or more of these specifications:\n" +#~ "\n" +#~ " a named character\n" +#~ " c ASCII character or backslash escape\n" +#~ " d[SIZE] signed decimal, SIZE bytes per integer\n" +#~ " f[SIZE] floating point, SIZE bytes per integer\n" +#~ " o[SIZE] octal, SIZE bytes per integer\n" +#~ " u[SIZE] unsigned decimal, SIZE bytes per integer\n" +#~ " x[SIZE] hexadecimal, SIZE bytes per integer\n" +#~ "\n" +#~ "SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +#~ "sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +#~ "sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +#~ "for sizeof(double) or L for sizeof(long double).\n" +#~ "\n" +#~ "RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +#~ "BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +#~ "with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix " +#~ "to\n" +#~ "any type adds a display of printable characters to the end of each line\n" +#~ "of output. -s without a number implies 3. -w without a number implies " +#~ "32.\n" +#~ "By default, od uses -A o -t d2 -w 16.\n" +#~ msgstr "" +#~ "\n" +#~ " Pri starej syntaxi (druhý spôsob volania), POSUN znamená -j POSUN. " +#~ "NÁVESTIE\n" +#~ "je pseudo-adresa vypísaná pri prvom byte a zväè¹ovaná behom výpisu. " +#~ "POSUN\n" +#~ "a NÁVESTIE sú brané ako osmièkové èísla. Pokiaµ èíslo zaèína 0x alebo " +#~ "0X,\n" +#~ "oznaèuje ¹estnástkové èíslo. Pokiaµ èíslo konèí desatinnou èiarkou '.', " +#~ "oznaèuje\n" +#~ "desiatkové èíslo. Pokiaµ èíslo konèí znakom 'b', znamená to, ¾e bude " +#~ "násobené\n" +#~ "512-timi.\n" +#~ "\n" +#~ "TYP je tvorené z jednej alebo viacerých týchto mo¾ností:\n" +#~ "\n" +#~ " a názvy znakov\n" +#~ " c ASCII znaky alebo kódy znakov so spätným lomítkom\n" +#~ " d[BYTOV] desiatkové so znamienkovm s poètom BYTOV na èíslo\n" +#~ " f[BYTOV] s plávajúcou radovou èiarkou s poètom BYTOV na èíslo\n" +#~ " o[BYTOV] osmièkové s poètom BYTOV na èíslo\n" +#~ " u[BYTOV] desiatkové bez znamienka s poètom BYTOV na èíslo\n" +#~ " x[BYTOV] ¹estnástkové s poètom BYTOV na èíslo\n" +#~ "\n" +#~ " BYTOV je èíslo. Pre TYPy d, o, u, x mô¾e by» BYTOV tie¾ C ako\n" +#~ "sizeof(char), S ako sizeof(short), I ako sizeof(int) alebo L ako\n" +#~ "sizeof(long). Pokiaµ je TYP f, BYTOV mô¾e by» tie¾ F ako sizeof(float),\n" +#~ "D ako sizeof(double) alebo L ako sizeof(long double).\n" +#~ "\n" +#~ " ZÁKLAD je d pre dekadické, o - osmièkové, x - ¹estnástkové, n - " +#~ "¾iadne.\n" +#~ "POÈET je braný ako ¹estnástkové èíslo ak zaèína 0x alebo 0X, ak konèí " +#~ "znakom\n" +#~ "'b', bude násobeno 512-ti, k - 1024-mi, m - 1048576-ti. -s bez zadaného " +#~ "èísla\n" +#~ "je brané ako -s 3. -w bez èísla je brané ako -w 32. Implicitné sú tieto\n" +#~ "hodnoty -A o -t d2 -w 16.\n" + +#, fuzzy +#~ msgid "" +#~ "Paginate or columnate FILE(s) for printing.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +#~ " begin [stop] printing with page FIRST_[LAST_]PAGE\n" +#~ " -COLUMN, --columns=COLUMN\n" +#~ " produce COLUMN-column output and print columns down,\n" +#~ " unless -a is used. Balance number of lines in the\n" +#~ " columns on each page.\n" +#~ " -a, --across print columns across rather than down, used together\n" +#~ " with -COLUMN\n" +#~ " -c, --show-control-chars\n" +#~ " use hat notation (^G) and octal backslash notation\n" +#~ " -d, --double-space\n" +#~ " double space the output\n" +#~ " -D, --date-format=FORMAT\n" +#~ " use FORMAT for the header date\n" +#~ " -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +#~ " expand input CHARs (TABs) to tab WIDTH (8)\n" +#~ " -F, -f, --form-feed\n" +#~ " use form feeds instead of newlines to separate pages\n" +#~ " (by a 3-line page header with -F or a 5-line header\n" +#~ " and trailer without -F)\n" +#~ msgstr "" +#~ "Nastránkuje alebo naståpcuje SÚBOR(y) pre tlaè.\n" +#~ "\n" +#~ " +PRVÁ_STRANA[:POSLEDNÁ_STRANA], --pages=PRVÁ_STRANA[:POSLEDNÁ_STRANA]\n" +#~ " zaène [skonèí] výpis na strane PRVNÁ_[POSLEDNÁ_]" +#~ "STRANA\n" +#~ " -STÅPCOV, --columns=STÅPCOV\n" +#~ " produkuje STÅPCOV-ståpcový výstup. Riadky vypisuje\n" +#~ " na stránku do ståpcov, pokiaµ nie je ¹pecifikovaná\n" +#~ " voµba -a. Vyva¾uje poèet riadkov v ståpcoch na " +#~ "ka¾dej\n" +#~ " strane.\n" +#~ " -a, --across vypisuje ståpce vodorovne miesto nadol. Pou¾íva sa " +#~ "spolu\n" +#~ " s prepínaèom -STÅPCOV.\n" +#~ " -c, --show-control-chars\n" +#~ " pou¾ije strie¹kovú notáciu (^G) a osmièkovú so " +#~ "spätným lomítkom\n" +#~ " -d, --double-space\n" +#~ " za ka¾dý riadok vlo¾í jeden prázdny\n" +#~ " -D, --date-format=FORMÁT\n" +#~ " pou¾ije FORMÁT pre dátum v hlavièke\n" +#~ " -e[ZNAK[©ÍRKA]], --expand-tabs[=ZNAK[©ÍRKA]]\n" +#~ " expanduje vstupné ZNAKy(tabulátory) na ©ÍRKA(8) " +#~ "medzier\n" +#~ " -F, -f, --form-feed\n" +#~ " pou¾ije znak novej strany (FF) namiesto nových " +#~ "riadkov (CR)\n" +#~ " na oddelenie stránok (a 3-riadkovú hlavièku strany " +#~ "pri -F\n" +#~ " alebo 5-riadkovú hlavièku s pätièkou bez -F).\n" + +#~ msgid "" +#~ " -h HEADER, --header=HEADER\n" +#~ " use a centered HEADER instead of filename in page " +#~ "header,\n" +#~ " -h \"\" prints a blank line, don't use -h\"\"\n" +#~ " -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +#~ " replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +#~ " -J, --join-lines merge full lines, turns off -W line truncation, no " +#~ "column\n" +#~ " alignment, -S[STRING] sets separators\n" +#~ " -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +#~ " set the page length to PAGE_LENGTH (66) lines\n" +#~ " (default number of lines of text 56, and with -F 63)\n" +#~ " -m, --merge print all files in parallel, one in each column,\n" +#~ " truncate lines, but join lines of full length with -" +#~ "J\n" +#~ " -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +#~ " number lines, use DIGITS (5) digits, then SEP (TAB),\n" +#~ " default counting starts with 1st line of input file\n" +#~ " -N NUMBER, --first-line-number=NUMBER\n" +#~ " start counting with NUMBER at 1st line of first\n" +#~ " page printed (see +FIRST_PAGE)\n" +#~ " -o MARGIN, --indent=MARGIN\n" +#~ " offset each line with MARGIN (zero) spaces, do not\n" +#~ " affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +#~ " -r, --no-file-warnings\n" +#~ " omit warning when a file cannot be opened\n" +#~ msgstr "" +#~ " -h HLAVIÈKA, --header=HLAVIÈKA\n" +#~ " pou¾ije vycentrovanú HLAVIÈKU namiesto mena súboru.\n" +#~ " Pri dlhej hlavièke bude µavá strana orezaná.\n" +#~ " -h \"\" vypí¹e prázdnu hlavièku. Nepou¾ívajte -h\"\"\n" +#~ " -i[ZNAK[©ÍRKA]], --output-tabs[=ZNAK[©ÍRKA]]\n" +#~ " nahradí ©ÍRKA (8) medzier ZNAKom (tabulátorom)\n" +#~ " -J, --join-lines spája celé riadky, vyradí -W skracovanie riadkov,\n" +#~ " ru¹í ståpce, -S[RE«AZEC] nastaví oddeµovaè\n" +#~ " -l DÅ®KA_STRÁNKY, --length=DÅ®KA_STRÁNKY\n" +#~ " nastaví då¾ku strany na DÅ®KA_STRÁNKY riadkov.\n" +#~ " (implicitne je 56 riadkov textu, s -F 63)\n" +#~ " -m, --merge vypí¹e súbory vedµa seba, ka¾dý v jednom ståpci,\n" +#~ " skracuje riadky, ale spolu s prepínaèom -J ich " +#~ "vypisuje celé\n" +#~ " -n[ODDE¥[ÈÍSLIC]], --number-lines[=ODDE¥[ÈÍSLIC]]\n" +#~ " èísluje riadky, vypisuje ÈÍSLIC (5) èíslic a potom " +#~ "ODDE¥\n" +#~ " (TAB). Implicitne poèítanie zaèína od jednotky prvým\n" +#~ " vstupným riadkom\n" +#~ " -N ÈÍSLO, --first-line-number=ÈÍSLO\n" +#~ " zaène poèítanie èíslom ÈÍSLO prvého riadku prvej\n" +#~ " vypisovanej strany (viï +PRVÁ_STRANA)\n" +#~ " -o OKRAJ, --indent=OKRAJ\n" +#~ " odsadzuje ka¾dý riadok s OKRAJ (nula) medzerami,\n" +#~ " neovplyvní -w alebo -W, OKRAJ bude pridaný do " +#~ "©ÍRKA_STRÁNKY\n" +#~ " -r, --no-file-warnings\n" +#~ " potlaèí varovanie, keï súbor nemô¾e by» otvorený\n" + +#~ msgid "" +#~ " -s[CHAR],--separator[=CHAR]\n" +#~ " separate columns by a single character, default for " +#~ "CHAR\n" +#~ " is the character without -w and 'no char' with -" +#~ "w\n" +#~ " -s[CHAR] turns off line truncation of all 3 column\n" +#~ " options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +#~ " -S[STRING], --sep-string[=STRING]\n" +#~ " separate columns by an optional STRING, don't use\n" +#~ " -S \"STRING\", -S only: No separator used (same as -S" +#~ "\"\"),\n" +#~ " without -S: Default separator with -J and " +#~ "\n" +#~ " otherwise (same as -S\" \"), no effect on column " +#~ "options\n" +#~ " -t, --omit-header omit page headers and trailers\n" +#~ " -T, --omit-pagination\n" +#~ " omit page headers and trailers, eliminate any " +#~ "pagination\n" +#~ " by form feeds set in input files\n" +#~ " -v, --show-nonprinting\n" +#~ " use octal backslash notation\n" +#~ " -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +#~ " set page width to PAGE_WIDTH (72) characters for\n" +#~ " multiple text-column output only, -s[char] turns off " +#~ "(72)\n" +#~ " -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +#~ " set page width to PAGE_WIDTH (72) characters always,\n" +#~ " truncate lines, except -J option is set, no " +#~ "interference\n" +#~ " with -S or -s\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +#~ "FILE is -, read standard input.\n" +#~ msgstr "" +#~ " -s[ZNAK], --separator[=ZNAK]\n" +#~ " oddelí ståpce jedným ZNAKom, ¹tandardná hodnota pre " +#~ "ZNAK\n" +#~ " je znak bez -w a '¾iadny znak' s -w\n" +#~ " -s[CHAR] vypína orezávanie riadkov vo v¹etkých troch\n" +#~ " ståpcových voµbách (-COLUMN|-a -COLUMN|-m), okrem " +#~ "prípadu,\n" +#~ " ¾e je zapnuté -w\n" +#~ " -S[RE«AZEC], --sep-string[=RE«AZEC]\n" +#~ " oddeµuje ståpce s voliteµným RE«AZCOM, nepou¾ívajte\n" +#~ " -S \"RE«AZEC\", iba -S: nepou¾itý ¾iadny oddeµovaè " +#~ "(rovnako\n" +#~ " ako -S\"\", bez -S: ¹tandardný oddeµovaè s -J, " +#~ "inak\n" +#~ " (rovnako ako -S\" \"), ¾iadny efekt na " +#~ "ståpcové\n" +#~ " voµby\n" +#~ " -t, --omit-header nevypisuje hlavièky a pätièky stránok\n" +#~ " -T, --omit-pagination\n" +#~ " nevypisuje hlavièky a pätièky, odstráni stránkovanie\n" +#~ " vstupného súboru (ignoruje znak novej stránky 'form " +#~ "feed')\n" +#~ " -v, --show-nonprinting\n" +#~ " pou¾ije osmièkovú notáciu so spätným lomítkom\n" +#~ " -w ©ÍRKA_STRÁNKY, --width=©ÍRKA_STRANY\n" +#~ " nastaví ¹írku strany na ©ÍRKA_STRANY (72) znakov,\n" +#~ " iba pre viacståpcový výstup, -s[ZNAK] vypína (72)\n" +#~ " -W ©ÍRKA_STRÁNKY, --page-width=©ÍRKA_STRANY\n" +#~ " nastaví ¹írku strany na ©ÍRKA_STRANY (72) znakov " +#~ "v¾dy,\n" +#~ " orezáva riadky, pokiaµ nie je ¹pecifikovaná voµba -" +#~ "J,\n" +#~ " ¾iadne konflikty s -S alebo -s\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" +#~ "\n" +#~ "-T mlèky predopkladané voµbou -l nn, keï nn <= 10 alebo <= 3 s -F. So " +#~ "¾iadnym\n" +#~ "SÚBOROM, alebo keï je SÚBOR rovný -, èíta ¹tandardný vstup.\n" + +#, fuzzy +#~ msgid "" +#~ "Output a permuted index, including context, of the words in the input " +#~ "files.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -A, --auto-reference output automatically generated " +#~ "references\n" +#~ " -C, --copyright display Copyright and copying " +#~ "conditions\n" +#~ " -G, --traditional behave more like System V `ptx'\n" +#~ " -F, --flag-truncation=STRING use STRING for flagging line " +#~ "truncations\n" +#~ " -M, --macro-name=STRING macro name to use instead of `xx'\n" +#~ " -O, --format=roff generate output as roff directives\n" +#~ " -R, --right-side-refs put references at right, not counted in -" +#~ "w\n" +#~ " -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +#~ " -T, --format=tex generate output as TeX directives\n" +#~ " -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +#~ " -b, --break-file=FILE word break characters in this FILE\n" +#~ " -f, --ignore-case fold lower case to upper case for " +#~ "sorting\n" +#~ " -g, --gap-size=NUMBER gap size in columns between output " +#~ "fields\n" +#~ " -i, --ignore-file=FILE read ignore word list from FILE\n" +#~ " -o, --only-file=FILE read only word list from this FILE\n" +#~ " -r, --references first field of each line is a reference\n" +#~ " -t, --typeset-mode - not implemented -\n" +#~ " -w, --width=NUMBER output width in columns, reference " +#~ "excluded\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +#~ msgstr "" +#~ " Povinné argumenty dlhých prepínaèov, sú tie¾ povinné aj pri " +#~ "zodpovedajúcich\n" +#~ "krátkych prepínaèoch.\n" +#~ "\n" +#~ " -A, --auto-reference vo výstupe sú automaticky generované " +#~ "odkazy\n" +#~ " -C, --copyright vypí¹e autorské práva a podmeinky " +#~ "kopírovania\n" +#~ " -G, --traditional spôsobí chovanie ako System V `ptx'\n" +#~ " -F, --flag-truncation=RE«AZEC pou¾ije RE«AZEC na urèenie skracovania " +#~ "riadkov\n" +#~ " -M, --macro-name=RE«AZEC meno makra, ktoré sa má pou¾i» namiesto " +#~ "`xx'\n" +#~ " -O, --format=roff generuje výstup pre program roff\n" +#~ " -R, --right-side-refs vlo¾í odkazy vpravo, nepoèítané v -w\n" +#~ " -S, --sentence-regexp=REGVÝR pre koniec riadkov a koniec viet\n" +#~ " -T, --format=tex generuje výstup pre TeX\n" +#~ " -W, --word-regexp=REGVÝR pou¾ije REGVÝR na urèenie ka¾dého slova\n" +#~ " -b, --break-file=SÚBOR znaky preru¹ujúce slovo v tomto SÚBORe\n" +#~ " -f, --ignore-case prepísanie malých písmen na veµké pre " +#~ "triedenie\n" +#~ " -g, --gap-size=ÈÍSLO veµkos» medzery v ståpcoch medzi " +#~ "výstupnými\n" +#~ " polo¾kami\n" +#~ " -i, --ignore-file=SÚBOR preèíta slová, ktoré sa majú ignorova»\n" +#~ " zo SÚBORu\n" +#~ " -o, --only-file=SÚBOR preèítanie zoznamu slov iba zo SÚBORu\n" +#~ " -r, --references prvná polo¾ka ka¾dého riadku je odkaz\n" +#~ " -t, --typeset-mode - neimplementované -\n" +#~ " -w, --width=ÈÍSLO ¹írka výstupu v ståpcoch, bez odkazov\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" +#~ "\n" +#~ "Pokiaµ nie je SÚBOR zadaný alebo je -, bude èítaný ¹tandardný vstup. " +#~ "Implicitné\n" +#~ "prepínaèe: `-F /'\n" + +#~ msgid "" +#~ "Other options:\n" +#~ "\n" +#~ " -c, --check check whether input is sorted; do not sort\n" +#~ " -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin " +#~ "1)\n" +#~ " -m, --merge merge already sorted files; do not sort\n" +#~ " -o, --output=FILE write result to FILE instead of standard " +#~ "output\n" +#~ " -s, --stable stabilize sort by disabling last-resort " +#~ "comparison\n" +#~ " -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +#~ " -t, --field-separator=SEP use SEP instead of non- to whitespace " +#~ "transition\n" +#~ " -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %" +#~ "s\n" +#~ " multiple options specify multiple " +#~ "directories\n" +#~ " -u, --unique with -c: check for strict ordering\n" +#~ " otherwise: output only the first of an " +#~ "equal run\n" +#~ " -z, --zero-terminated end lines with 0 byte, not newline\n" +#~ " +POS1 [-POS2] start a key at POS1, end it before POS2 " +#~ "(origin 0)\n" +#~ " Warning: this option is obsolescent\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ "Ostatné voµby:\n" +#~ "\n" +#~ " -c, --check v prípade, ¾e vstupné súbory sú u¾ " +#~ "zoradené,\n" +#~ " netriedi ich\n" +#~ " -k, --key=POZ1[,POZ2] kµúè zaèína od POZ1, konèí na POZ2 (zaè. " +#~ "je 1)\n" +#~ " -m, --merge spojí u¾ zoradené súbory, netriedi ich\n" +#~ " -o, --output=SÚBOR výsledok zapí¹e do SÚBORu namiesto na " +#~ "¹tandardný\n" +#~ " výstup\n" +#~ " -s, --stable stabilizuje triedenie zakázaním koneèného\n" +#~ " triedenia rovnakých polo¾iek\n" +#~ " -S, --buffer-size=VE¥KOS« pou¾i VE¥KOS« pre buffer v hlavnej pamäti\n" +#~ " -t, --field-separator=ODDE¥ pou¾ije ODDE¥ovaè namiesto hranice\n" +#~ " medzera/nemedzera\n" +#~ " -T, --temporary-directory=ADRESÁR pou¾ije ADRESÁR na doèasné súbory,\n" +#~ " nepou¾íva $TMPDIR ani %s.\n" +#~ " Viac volieb znamená viac adresárov.\n" +#~ " -u s -c testuje striktné usporiadanie\n" +#~ " inak vypí¹e iba prvú z rovnakých " +#~ "postupností\n" +#~ " -z vstupné riadky budú ukonèené bytom 0 " +#~ "namiesto\n" +#~ " nového riadku\n" +#~ " +POZ1 [-POZ2] zaèni kµúè na pozícii POZ1, ukonèi pred " +#~ "POZ2\n" +#~ " (zaè. 0). Pozor: táto voµba je zastaraná\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" +#~ "\n" + +#, fuzzy +#~ msgid "" +#~ "Print the last %d lines of each FILE to standard output.\n" +#~ "With more than one FILE, precede each with a header giving the file " +#~ "name.\n" +#~ "With no FILE, or when FILE is -, read standard input.\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " --retry keep trying to open a file even if it is\n" +#~ " inaccessible when tail starts or if it " +#~ "becomes\n" +#~ " inaccessible later -- useful only with -f\n" +#~ " -c, --bytes=N output the last N bytes\n" +#~ " -f, --follow[={name|descriptor}]\n" +#~ " output appended data as the file grows;\n" +#~ " -f, --follow, and --follow=descriptor are\n" +#~ " equivalent\n" +#~ " -F same as --follow=name --retry\n" +#~ " -n, --lines=N output the last N lines, instead of the last %" +#~ "d\n" +#~ " --max-unchanged-stats=N\n" +#~ " with --follow=name, reopen a FILE which has " +#~ "not\n" +#~ " changed size after N (default %d) iterations\n" +#~ " to see if it has been unlinked or renamed\n" +#~ " (this is the usual case of rotated log files)\n" +#~ " --pid=PID with -f, terminate after process ID, PID dies\n" +#~ " -q, --quiet, --silent never output headers giving file names\n" +#~ " -s, --sleep-interval=S with -f, each iteration lasts approximately S\n" +#~ " (default 1) seconds\n" +#~ " -v, --verbose always output headers giving file names\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ msgstr "" +#~ " Vypí¹e na ¹tandardný výstup, posledných %d riadkov ka¾dého SÚBORu. " +#~ "Pokiaµ\n" +#~ "bude zadaný viac ako jeden súbor, predchádza výpisu ka¾dého súboru jeho " +#~ "názov.\n" +#~ "Pokiaµ SÚBOR nebude zadaný alebo bude -, bude èítaný ¹tandardný vstup.\n" +#~ "\n" +#~ " --retry skú¹a opakovane otvori» súbor, pokiaµ je " +#~ "nedostupný\n" +#~ " v èase spustenia tail-u, prípadne pokiaµ sa " +#~ "stane\n" +#~ " nedostupným neskôr - u¾itoèné iba s -f\n" +#~ " -c, --bytes=N vypí¹e posledných N bytov\n" +#~ " -f, --follow[={name|descriptor}]\n" +#~ " vypisuje iba dáta pridávané do súboru\n" +#~ " -f, --follow a --follow=descriptor sú " +#~ "ekvivalenty\n" +#~ " -n, --lines=N vypí¹e posledných N riadkov namiesto %d\n" +#~ " --max-unchanged-stats=N\n" +#~ " s --follow=name znovu otvorí SÚBOR, ktorý " +#~ "nezmenil\n" +#~ " veµkos» po N (implicitne %d) iteráciách, " +#~ "aby\n" +#~ " zistil, èi nebol zmazaný alebo premenovaný\n" +#~ " (èo je zvykom pri rotovaných log súboroch)\n" +#~ " --pid=PID s -f skonèí po tom, ako proces PID skonèí\n" +#~ " -q, --quiet, --silent nevypisuje názvy súborov\n" +#~ " -s, --sleep-interval=S spolu s -f èaká pribli¾ne S sekúnd medzi " +#~ "výpismi\n" +#~ " (implicitne 1)\n" +#~ " -v, --verbose v¾dy vypisuje názvy súborov\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" +#~ "\n" + +#~ msgid "" +#~ "If the first character of N (the number of bytes or lines) is a `+',\n" +#~ "print beginning with the Nth item from the start of each file, " +#~ "otherwise,\n" +#~ "print the last N items in the file. N may have a multiplier suffix:\n" +#~ "b for 512, k for 1024, m for 1048576 (1 Meg). A first OPTION of -VALUE\n" +#~ "or +VALUE is treated like -n VALUE or -n +VALUE unless VALUE has one of\n" +#~ "the [bkm] suffix multipliers, in which case it is treated like -c VALUE\n" +#~ "or -c +VALUE. Warning: a first option of +VALUE is obsolescent, and " +#~ "support\n" +#~ "for it will be withdrawn.\n" +#~ "\n" +#~ "With --follow (-f), tail defaults to following the file descriptor, " +#~ "which\n" +#~ "means that even if a tail'ed file is renamed, tail will continue to " +#~ "track\n" +#~ "its end. This default behavior is not desirable when you really want to\n" +#~ "track the actual name of the file, not the file descriptor (e.g., log\n" +#~ "rotation). Use --follow=name in that case. That causes tail to track " +#~ "the\n" +#~ "named file by reopening it periodically to see if it has been removed " +#~ "and\n" +#~ "recreated by some other program.\n" +#~ "\n" +#~ msgstr "" +#~ " Pokiaµ prvný znak N (poèet bytov alebo riadkov) je `+', výpis zaèína\n" +#~ "od N-tého elementu od zaèiatku ka¾dého súboru. Inak sa vypisuje " +#~ "posledných\n" +#~ "N elementov súboru. N mô¾e ma» násobiacu príponu: b - 512, k - 1024 " +#~ "alebo\n" +#~ "m - 1048576 (1 Mega). Ak je prvý prepínaè -HODNOTA alebo +HODNOTA, potom " +#~ "je\n" +#~ "bran ako -n HODNOTA alebo -n +HODNOTA, pokiaµ HODNOTA nemá násobiacu\n" +#~ "príponu [bkm]. Pokiaµ ju má, potom je HODNOTA braná ako -c HODNOTA \n" +#~ "alebo -c +HODNOTA. Varovanie: prvá mo¾nos» +HODNOTA je zastaralá\n" +#~ "a jej podpora bude odstránená.\n" +#~ "\n" +#~ "Pri pou¾ití --follow (-f) tail implicitne sleduje deskriptor súboru, t." +#~ "j.\n" +#~ "vypisuje ten istý súbor aj v prípade jeho premenovania. Toto správanie\n" +#~ "sa nie je vhodné v prípade, pokiaµ skutoène chcete sledova» konkrétny\n" +#~ "názov súboru a nie deskriptor súboru (napr. pri rotácii log súborov).\n" +#~ "V takom prípade pou¾ite --follow=name - tail bude znovu otvára» daný\n" +#~ "súbor, aby mohol zisti» jeho prípadné odstránenie a znovuvytvorenie\n" +#~ "iným programom.\n" +#~ "\n" + +#~ msgid "" +#~ "\n" +#~ "SETs are specified as strings of characters. Most represent themselves.\n" +#~ "Interpreted sequences are:\n" +#~ "\n" +#~ " \\NNN character with octal value NNN (1 to 3 octal digits)\n" +#~ " \\\\ backslash\n" +#~ " \\a audible BEL\n" +#~ " \\b backspace\n" +#~ " \\f form feed\n" +#~ " \\n new line\n" +#~ " \\r return\n" +#~ " \\t horizontal tab\n" +#~ " \\v vertical tab\n" +#~ " CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +#~ " [CHAR*] in SET2, copies of CHAR until length of SET1\n" +#~ " [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +#~ " [:alnum:] all letters and digits\n" +#~ " [:alpha:] all letters\n" +#~ " [:blank:] all horizontal whitespace\n" +#~ " [:cntrl:] all control characters\n" +#~ " [:digit:] all digits\n" +#~ " [:graph:] all printable characters, not including space\n" +#~ " [:lower:] all lower case letters\n" +#~ " [:print:] all printable characters, including space\n" +#~ " [:punct:] all punctuation characters\n" +#~ " [:space:] all horizontal or vertical whitespace\n" +#~ " [:upper:] all upper case letters\n" +#~ " [:xdigit:] all hexadecimal digits\n" +#~ " [=CHAR=] all characters which are equivalent to CHAR\n" +#~ msgstr "" +#~ "\n" +#~ " MNO®INY sú zadané ako re»azce znakov. Väè¹ina znakov reprezentuje ich " +#~ "samých,\n" +#~ "¹peciálny význam majú tieto:\n" +#~ "\n" +#~ " \\NNN znak v hodnote NNN (zadané v osmièkovej sústave)\n" +#~ " \\\\ spätné lomítko\n" +#~ " \\a znak BEL (pípnutie)\n" +#~ " \\b backspace - vyma¾e znak vµavo od kurzoru\n" +#~ " \\f nová strana (form feed)\n" +#~ " \\n nový riadok (line feed)\n" +#~ " \\r návrat vozíku (return)\n" +#~ " \\t horizontálny tabulátor\n" +#~ " \\v vertikálny tabulátor\n" +#~ " ZNAK1-ZNAK2 v¹etky znaky od ZNAKu1 po ZNAK2, vzostupne\n" +#~ " [ZNAK1-ZNAK2] rovnakné ako ZNAK1-ZNAK2, ak je pou¾ité v oboch " +#~ "mno¾inách\n" +#~ " [ZNAK*] v MNO®INE2 kopíruje ZNAK toµkokrát, aby bola MNO®INA2 " +#~ "rovnako\n" +#~ " dlhá ako MNO®INA1\n" +#~ " [ZNAK*KO¥KOKRÁT] KO¥KOKRÁT kópií ZNAKu, osmièkovo, keï zaèína èíslicou " +#~ "0\n" +#~ " [:alnum:] v¹etky písmená a èíslice\n" +#~ " [:alpha:] v¹etky písmená\n" +#~ " [:blank:] v¹etky horizontálne medzery\n" +#~ " [:cntrl:] v¹etky riadiace znaky\n" +#~ " [:digit:] v¹etky èíslice\n" +#~ " [:graph:] v¹etky tlaèiteµné znaky bez medzier\n" +#~ " [:lower:] v¹etky malé písmená\n" +#~ " [:print:] v¹etky tlaèiteµné znaky vrátane medzier\n" +#~ " [:punct:] v¹etky interpunkèné znaky\n" +#~ " [:space:] v¹etky horizontálne a vertikálne medzery\n" +#~ " [:upper:] v¹etky veµké písmená\n" +#~ " [:xdigit:] v¹etky ¹estnástkové èíslice\n" +#~ " [=ZNAK=] v¹etky znaky rovnocenné so ZNAKom\n" + +#, fuzzy +#~ msgid "" +#~ "Discard all but one of successive identical lines from INPUT (or\n" +#~ "standard input), writing to OUTPUT (or standard output).\n" +#~ "\n" +#~ "Mandatory arguments to long options are mandatory for short options too.\n" +#~ " -c, --count prefix lines by the number of occurrences\n" +#~ " -d, --repeated only print duplicate lines\n" +#~ " -D, --all-repeated[=delimit-method] print all duplicate lines\n" +#~ " delimit-method={none(default),prepend,separate)}\n" +#~ " Delimiting is done with blank lines.\n" +#~ " -f, --skip-fields=N avoid comparing the first N fields\n" +#~ " -i, --ignore-case ignore differences in case when comparing\n" +#~ " -s, --skip-chars=N avoid comparing the first N characters\n" +#~ " -u, --unique only print unique lines\n" +#~ " -w, --check-chars=N compare no more than N characters in lines\n" +#~ " -N same as -f N\n" +#~ " +N same as -s N (obsolescent; will be withdrawn)\n" +#~ " --help display this help and exit\n" +#~ " --version output version information and exit\n" +#~ "\n" +#~ "A field is a run of whitespace, then non-whitespace characters.\n" +#~ "Fields are skipped before chars.\n" +#~ msgstr "" +#~ " Zo v¹etkých po sebe idúcich rovnakých vstupných riadkov, vypí¹e na " +#~ "výstup\n" +#~ "v¾dy iba jeden. Implicitne je ako VSTUP braný ¹tandardný vstup a ako " +#~ "VÝSTUP\n" +#~ "¹tandardný výstup.\n" +#~ "\n" +#~ " -c, --count pred ka¾dý riadok vlo¾í poèet opakovania\n" +#~ " -d, --repeated vypisuje iba opakujúce sa riadky\n" +#~ " -D, --all-repeated vypisuje v¹etky opakujúce sa riadky\n" +#~ " -f, --skip-fields=N neporovnáva prvých N polo¾iek\n" +#~ " -i, --ignore-case ignoruje rozdiel medzi malými a veµkými " +#~ "písmenami\n" +#~ " -s, --skip-chars=N neporovnáva prvých N znakov\n" +#~ " -u, --unique vypisuje iba neopakujúce sa riadky\n" +#~ " -w, --check-chars=N porovnává najviac N prvých znakov ka¾dého riadku\n" +#~ " -N rovnaké ako -f N\n" +#~ " +N rovnaké ako -s N (zastaralé, bude zru¹ené)\n" +#~ " --help vypí¹e túto nápovedu a skonèí\n" +#~ " --version vypí¹e oznaèenie verzie a skonèí\n" +#~ "\n" +#~ " Polo¾kou je chápaný neprázdny re»azec znakov, ktoré nie sú medzerami " +#~ "alebo\n" +#~ "tabulátormi. Polo¾ky sú oddelené medzerami a tabulátormi. Polo¾ky budú\n" +#~ "preskoèené pred znakmi.\n" diff --git a/src/apps/bin/coreutils-5.0/po/sl.gmo b/src/apps/bin/coreutils-5.0/po/sl.gmo new file mode 100644 index 0000000000..3ffa381ab8 Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/sl.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/sl.po b/src/apps/bin/coreutils-5.0/po/sl.po new file mode 100644 index 0000000000..c6e5dc63f4 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/sl.po @@ -0,0 +1,8408 @@ +# -*- mode: po; -*- Slovenian message catalog for GNU coreutils. +# Copyright (C) 1996, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. +# Primo¾ Peterlin , 1996, 1999, 2000, 2001, 2002, 2003. +# $Id: sl.po,v 1.1 2004/03/02 00:29:15 michaelphipps Exp $ +# +msgid "" +msgstr "" +"Project-Id-Version: GNU coreutils 4.5.10\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2003-03-14 12:43+0100\n" +"Last-Translator: Primo¾ Peterlin \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8-bit\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n" +"%100==4 ? 3 : 0);\n" + +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "neveljaven argument %s za %s" + +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "dvoumen argument %s za %s" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "Veljavni argumenti so:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "napaka pri pisanju" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "Neznana sistemska napaka" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "navadna prazna datoteka" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "navadna datoteka" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "imenik" + +#: lib/file-type.c:48 +msgid "block special file" +msgstr "bloèna enota" + +#: lib/file-type.c:51 +msgid "character special file" +msgstr "znakovna enota" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "FIFO" + +# ! INEXACT +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "simbolna povezava" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "vtiè" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "vrsta sporoèil" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "semafor" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "deljen pomnilni¹ki predmet" + +#: lib/file-type.c:71 +msgid "weird file" +msgstr "èudna datoteka" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: izbira ,%s` je dvoumna\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: izbira ,--%s` ne dovoljuje argumenta\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: izbira ,%c%s` ne dovoljuje argumenta\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: izbira ,%s` zahteva argument\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: neprepoznana izbira ,--%s`\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: neprepoznana izbira ,%c%s`\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: nedovoljena izbira -- %c\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: neveljavna izbira -- %c\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: izbira zahteva argument -- %c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: izbira ,-W %s` je dvoumna\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: izbira ,-W %s` ne dovoljuje argumenta\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "velikost bloka" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "vrnitev v zaèetni delovni imenik neuspe¹na" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "imenika %s ni mogoèe ustvariti" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%s obstaja, vendar ni imenik" + +# ! INEXACT +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "lastnika in/ali skupine %s ni mogoèe spremeniti" + +#: lib/makepath.c:338 +#, c-format +msgid "cannot chdir to directory %s" +msgstr "dostop do imenika %s ni mogoè" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "dovoljenj %s ni mogoèe spremeniti" + +# ! INEXACT +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "zmanjkalo pomnilnika" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "," + +#: lib/quotearg.c:237 +msgid "'" +msgstr "`" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[jJdD]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[nN]" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "funkcija iconv ne deluje" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "funkcija iconv ni na voljo" + +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "koda znaka izven obsega" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "znaka s kodo U+%04X ni mogoèe pretvoriti v lokalni nabor znakov" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "znaka s kodo U+%04X ni moè pretvoriti v lokalni nabor znakov: %s" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "neveljavno uporabni¹ko ime" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "neveljavno ime skupine" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "imena skupine, ki pripada ¹tevilènemu UID, ni mogoèe ugotoviti" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "ni mogoèe obenem izpustiti uporabnika in skupine" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "Avtor(ica): %s.\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +"To je prost program; pogoji, pod katerimi ga lahko razmno¾ujete in\n" +"raz¹irjate so navedeni v izvorni kodi. Za program ni NOBENEGA jamstva,\n" +"niti jamstev USTREZNOSTI ZA PRODAJO ali PRIMERNOSTI ZA UPORABO.\n" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "primerjanje nizov ni uspelo" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "Nastavite LC_ALL='C', da bi odpravili te¾avo." + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "Primerjana niza sta bila %s in %s." + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Poskusite ,%s --help` za izèrpnej¹a navodila\n" + +#: src/basename.c:54 +#, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"Uporaba: %s IME [PRIPONA]\n" +" ali: %s IZBIRA\n" + +#: src/basename.c:59 +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" +"Izpi¹emo IME datoteke brez celotne poti do nje. Èe je podana PRIPONA,\n" +"izpi¹emo ime datoteke brez pripone.\n" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"Poroèila o napakah javite na <%s>.\n" + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "premalo argumentov" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "preveè argumentov" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "Torbjorn Granlund in Richard M. Stallman" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "Uporaba: %s [IZBIRA] [DATOTEKA]...\n" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" +"Prepi¹emo eno ali veè DATOTEK na standardni izhod, ali std. vhod na std. " +"izhod.\n" +"\n" +" -A, --show-all enakovredno sestavljeni izbiri -vET\n" +" -b, --number-nonblank o¹tevilèi neprazne izpisane vrstice\n" +" -e enakovredno sestavljeni izbiri -vE\n" +" -E, --show-ends izpi¹i $ na koncu vsake vrstice\n" +" -n, --number o¹tevilèi vse izpisane vrstice\n" +" -s, --squeeze-blank zaporedje veè praznih vrstic skrèi v eno\n" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" +" -t enakovredno sestavljeni izbiri -vT\n" +" -T, --show-tabs prika¾i znake TAB kot ^I\n" +" -u (ignorirano)\n" +" -v, --show-nonprinting krmilne znake razen LF in TAB izpi¹i kot ^ and " +"M-\n" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"Èe DATOTEKA ni podana, ali pa je enaka -, beremo s standardnega vhoda.\n" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" +"\n" +" -B, --binary pi¹i binarno na konzolo.\n" +"\n" + +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "ioctl na ,%s` ni mogoè" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "standardni izhod" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s: vhodna in izhodna datoteka sta isti" + +#: src/cat.c:858 +msgid "closing standard input" +msgstr "zapiramo standardni vhod" + +#: src/cat.c:861 +msgid "closing standard output" +msgstr "zapiramo standardni izhod" + +# Je to res v redu? +# ! INEXACT +#: src/chgrp.c:93 +msgid "cannot change to null group" +msgstr "ni mogoèe spremeniti na skupino niè" + +# ! INEXACT +#: src/chgrp.c:102 +#, c-format +msgid "invalid group name %s" +msgstr "neveljavno ime skupine %s" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "èlan skupine" + +# ! INEXACT +#: src/chgrp.c:109 +#, c-format +msgid "invalid group number %s" +msgstr "neveljavna ¹tevilka skupine %s" + +#: src/chgrp.c:126 +#, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Uporaba: %s [IZBIRA]... SKUPINA DATOTEKA...\n" +" ali: %s [IZBIRA]... --reference=ZGLED DATOTEKA...\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Vsem DATOTEKAM spremenimo èlanstvo v navedeno SKUPINO.\n" +"\n" +" -c, --changes kot ,verbose`, a samo ob spremembah\n" +" --deferefence deluje na ciljne datoteke, ne na simbolne " +"povezave\n" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" +" -h, --no-dereference deluje na simbolne povezave, ne na ciljne " +"datoteke\n" +" (na voljo samo na sistemih, ki dovoljujejo " +"spremembo\n" +" lastni¹tva simbolne povezave)\n" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet brez veèine opozoril o napakah\n" +" --reference=ZGLED skupino nastavimo enako, kot jo ima ZGLED\n" +" -R, --recursive rekurzivno obdelaj imenike in datoteke\n" +" -v, --verbose z diagnostiko za vsako obdelano datoteko\n" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, c-format +msgid "failed to get attributes of %s" +msgstr "branje prilastkov (atributov) %s neuspe¹no" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "beremo nove prilastke (atribute) %s" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "za¹èita datoteke %s spremenjena v %04lo (%s)\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "poskus spremembe za¹èite datoteke %s v %04lo (%s) neuspe¹en\n" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "za¹èita datoteke %s ohranjena kot %04lo (%s)\n" + +#: src/chmod.c:179 +#, c-format +msgid "changing permissions of %s" +msgstr "spreminjamo dovoljenja %s" + +#: src/chmod.c:242 +#, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Uporaba: %s [IZBIRA]... ZA©ÈITA[,ZA©ÈITA]... DATOTEKA...\n" +" ali: %s [IZBIRA]... OKTALNA_KODA DATOTEKA...\n" +" ali: %s [IZBIRA]... --reference=ZGLED DATOTEKA...\n" + +#: src/chmod.c:248 +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"Spremenimo ZA©ÈITO za DATOTEKO.\n" +"\n" +" -c, --changes kot ,verbose`, a samo ob izvedenih spremembah\n" +" -f, --silent, --quiet brez veèine opozoril o napakah\n" +" -v, --verbose z diagnostiko za vsako obdelano datoteko\n" +" --reference=ZGLED za¹èito nastavimo enako, kot jo ima ZGLED\n" +" -R, --recursive rekurzivno obdelaj imenike in datoteke\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" +"\n" +"ZA©ÈITA je ena ali veè èrk iz ,ugoa`, eden od znakov +-= in\n" +"ena ali veè èrk iz ,rwxXstugo`.\n" + +#: src/chmod.c:320 +#, c-format +msgid "invalid character %s in mode string %s" +msgstr "neveljaven znak %s v nizu naèina %s" + +#: src/chmod.c:361 +#, c-format +msgid "invalid mode string: %s" +msgstr "neveljaven naèin %s" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "" +"tako simbolna povezava %s kot sklicevana datoteka/imenik sta nespremenjena\n" + +#: src/chown-core.c:143 +#, c-format +msgid "changed ownership of %s to %s\n" +msgstr "neuspe¹na zamenava lastnika %s na %s\n" + +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "skupina %s spremenjena na %s\n" + +#: src/chown-core.c:148 +#, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "neuspe¹na zamenava lastnika %s na %s\n" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "zamenjava skupine %s na %s ni uspela\n" + +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "lastnik datoteke %s ostaja %s\n" + +# ! INEXACT +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "skupina datoteke %s ohranjen kot %s\n" + +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "spreminjamo lastni¹tvo %s" + +#: src/chown-core.c:327 +#, c-format +msgid "changing group of %s" +msgstr "spreminjamo skupino %s" + +#: src/chown-core.c:345 +#, c-format +msgid "unable to restore permissions of %s" +msgstr "dovoljenj %s ni mogoèe povrniti" + +#: src/chown.c:99 +#, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Uporaba: %s [IZBIRA]... LASTNIK[:[SKUPINA]] DATOTEKA...\n" +" ali: %s [IZBIRA]... :SKUPINA DATOTEKA...\n" +" ali: %s [IZBIRA]... --reference=ZGLED DATOTEKA...\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Spremeni lastnika in/ali skupino DATOTEKE na LASTNIKA in/ali SKUPINO.\n" +"\n" +" -c, --changes informativna obvestila ob spremembah\n" +" --dereference deluje na ciljne datoteke simbolnih povezav, ne " +"pa\n" +" na same simbolne povezave\n" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" +" --from=TRENUTNI_LASTNIK:TRENUTNA_SKUPINA\n" +" lastnika in/ali skupino zamenjamo samo pri tistih\n" +" datotekah, pri katerih trenutni lastnik in " +"skupina\n" +" ustrezata navedenima. Èe lastnika ali skupino \n" +" izpustimo, ujemanje tega ni veè pogoj.\n" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet brez veèine obvestil o napakah\n" +" --reference=ZGLED lastnika/skupino spremenimo na vrednost, kot jo\n" +" ima ZGLED, namesto da podamo par LASTNIK:SKUPINA\n" +" -R, --recursive rekurzivno obdelamo imenike in datoteke\n" +" -v, --verbose z izpisom diagnostike ob vsaki obdelani datoteki\n" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" +"\n" +"Èe ni podan, lastnik datoteke ostane isti. Skupina se ohrani, èe ni podana,\n" +"spremeni pa v skupino lastnika, èe lastniku sledi dvopièje (:). LASTNIK in\n" +"SKUPINA sta lahko podana s simbolno ali numerièno vrednostjo.\n" + +#: src/chroot.c:45 +#, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"Uporaba: %s [NOVI_KOREN] [UKAZ...]\n" +" ali: %s IZBIRA\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" +"Izvedemo UKAZ tako, da korenski imenik postavimo na KOREN.\n" +"\n" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" +"\n" +"Èe UKAZ ni podan, izvedemo ,,${SHELL] -i`` (privzeto /bin/sh).\n" + +#: src/chroot.c:84 +#, c-format +msgid "cannot change root directory to %s" +msgstr "korenskega imenika ni mo¾no prestaviti na %s" + +#: src/chroot.c:87 +msgid "cannot chdir to root directory" +msgstr "korenski imenik ni dosegljiv s chdir" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "%s: datoteka je predolga" + +#: src/cksum.c:282 +#, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"Uporaba: %s [DATOTEKA]...\n" +" ali: %s [IZBIRA]\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" +"Izpi¹emo nadzorno vsoto in dol¾ino v bajtih za vsako DATOTEKO.\n" +"\n" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "Richard Stallman in David MacKenzie" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "Uporaba: %s [IZBIRA]... LEVA DESNA\n" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" +"Urejeni datoteki LEVA in DESNA primerjamo vrstico za vrstico.\n" +"\n" +" -1 izpusti vrstice, ki se pojavijo samo v levi datoteki\n" +" -2 izpusti vrstice, ki se pojavijo samo v desni datoteki\n" +" -3 izpusti vrstice, ki se pojavijo v obeh datotekah\n" + +#: src/copy.c:162 src/du.c:332 +#, c-format +msgid "cannot access %s" +msgstr "dostop do %s ni mogoè" + +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "datotek %s ni mogoèe odpreti za branje" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, c-format +msgid "cannot fstat %s" +msgstr "statusa %s ni moè ugotoviti s fstat" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "datoteko %s izpustimo, ker je bila med prepisom zamenjana" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, c-format +msgid "cannot remove %s" +msgstr "ni mogoèe odstraniti %s" + +#: src/copy.c:277 +#, c-format +msgid "cannot create regular file %s" +msgstr "ni mogoèe ustvariti navadne datoteke %s" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, c-format +msgid "reading %s" +msgstr "beremo %s" + +#: src/copy.c:362 +#, c-format +msgid "cannot lseek %s" +msgstr "premikanje z lseek po %s ni mogoèe" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, c-format +msgid "writing %s" +msgstr "zapisujemo %s" + +#: src/copy.c:409 src/copy.c:415 +#, c-format +msgid "closing %s" +msgstr "zapiramo %s" + +#: src/copy.c:610 +#, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: naj pi¹emo prek %s navzlic za¹èiti %04lo? " + +#: src/copy.c:616 +#, c-format +msgid "%s: overwrite %s? " +msgstr "%s: naj pi¹emo prek %s? " + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, c-format +msgid "cannot stat %s" +msgstr "statusa %s ni moè ugotoviti s stat" + +#: src/copy.c:820 +#, c-format +msgid "omitting directory %s" +msgstr "izpu¹èamo imenik %s" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "opozorilo: izvorna datoteka %s je podana veè kot enkrat" + +#: src/copy.c:866 src/ln.c:237 +#, c-format +msgid "%s and %s are the same file" +msgstr "%s in %s sta ena in ista datoteka" + +#: src/copy.c:876 +#, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "prek ne-imenika %s ne moremo pisati imenika %s" + +#: src/copy.c:893 +#, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "prek pravkar ustvarjene datoteke %s ne moremo zapisati %s" + +#: src/copy.c:904 +#, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "prek imenika %s ne moremo zapisati ne-imenika" + +#: src/copy.c:965 +#, c-format +msgid "cannot overwrite directory %s" +msgstr "ni mogoèe pisati prek imenika %s" + +#: src/copy.c:974 +#, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "imenika ne moremo premakniti v ne-imenik: %s -> %s" + +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "varnostna kopija %s bi unièila izvirnik; %s ni premaknjen" + +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "varnostna kopija %s bi unièila izvirnik; %s ni prepisan" + +#: src/copy.c:1013 src/ln.c:273 +#, c-format +msgid "cannot backup %s" +msgstr "ni mogoèe izdelati varnostne kopije %s" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr " (varnostna kopija: %s)" + +#: src/copy.c:1099 +#, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "imenika %s se ne da prepisati vase, v %s" + +#: src/copy.c:1106 +#, c-format +msgid "will not create hard link %s to directory %s" +msgstr "ni mogoèe ustvariti trde povezave %s na imenik %s" + +#: src/copy.c:1132 +#, c-format +msgid "cannot create hard link %s to %s" +msgstr "ni mogoèe ustvariti trde povezave %s na %s" + +#: src/copy.c:1186 +#, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "imenika %s se ne da premakniti v %s, ki je podimenik prvega" + +#: src/copy.c:1229 +#, c-format +msgid "cannot move %s to %s" +msgstr "ni mogoèe premakniti %s v %s" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "premik med enotami ni uspel: %s v %s; cilja ni moè odstraniti" + +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "ni mogoèe prepisati cikliène simbolne povezave %s" + +# ! INEXACT +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "%s: relativne simbolne povezave so mogoèe samo znotraj imenika" + +#: src/copy.c:1353 +#, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "ni mogoèe ustvariti simbolne povezave %s na %s" + +#: src/copy.c:1364 +#, c-format +msgid "cannot create link %s" +msgstr "ni mogoèe ustvariti povezave %s" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, c-format +msgid "cannot create fifo %s" +msgstr "ni mogoèe ustvariti FIFO %s" + +#: src/copy.c:1403 +#, c-format +msgid "cannot create special file %s" +msgstr "ni mogoèe ustvariti posebne datoteke %s" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, c-format +msgid "cannot read symbolic link %s" +msgstr "ni mogoèe prebrati simbolne povezave %s" + +#: src/copy.c:1440 +#, c-format +msgid "cannot create symbolic link %s" +msgstr "ni mogoèe ustvariti simbolne povezave %s" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, c-format +msgid "failed to preserve ownership for %s" +msgstr "lastni¹tvo za %s ni bilo ohranjeno" + +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "%s ima neznan tip datoteke" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "ohranjeni èasi za %s" + +#: src/copy.c:1531 +#, c-format +msgid "failed to preserve authorship for %s" +msgstr "avtorstvo datoteke %s ni bilo ohranjeno" + +#: src/copy.c:1549 +#, c-format +msgid "setting permissions for %s" +msgstr "nastavljena dovoljenja za %s" + +#: src/copy.c:1571 src/ln.c:326 +#, c-format +msgid "cannot un-backup %s" +msgstr "ni mogoèe odstraniti varnostne kopije %s" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s -> %s (brez varnostne kopije)\n" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "Torbjorn Granlund, David MacKenzie in Jim Meyering" + +# ! INEXACT +#: src/cp.c:164 src/mv.c:311 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"Uporaba: %s [IZBIRA]... IZVOR CILJ\n" +" ali: %s [IZBIRA]... IZVOR... IMENIK\n" +" ali: %s [IZBIRA]... --target-directory=IMENIK IZVOR...\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Prepi¹emo IZVOR v CILJ, ali veè IZVOROV v IMENIK.\n" +"\n" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" +"Obvezni argumenti, navedeni pri dolgi obliki izbire, veljajo tudi za " +"kratko.\n" + +# ! INEXACT +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" +" -a, --archive isto kot -dpR\n" +" --backup[=TIP] pred pisanjem prek obstojeèe ciljne " +"datoteke \n" +" izdelamo varnostno kopijo podanega TIPA\n" +" -b enako kot --backup, vendar ne sprejema " +"argumenta\n" +" --copy-contents pri rekurzivnem prepisovanju prepi¹emo " +"vsebino\n" +" posebnih datotek\n" +" -d isto kot --no-dereference --preserve=link\n" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" +" --no-dereference ne sledimo simbolnim povezavam\n" +" -f, --force èe ciljne datoteke ni mogoèe odpreti, jo\n" +" odstranimo in poskusimo znova\n" +" -i, --interactive poziv, preden zapi¹emo novo datoteko prek " +"stare\n" +" -H sledimo simbolnim povezavam v ukazni vrstici\n" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" +" -l, --link ustvarimo trde povezave namesto kopij " +"datotek\n" +" -L, --dereference vedno sledimo simbolnim povezavam\n" +" -p isto kot --preserve=mode,ownership," +"timestamps\n" +" --preserve[=SEZN_PRIL] èe je mogoèe, ohranimo navedene prilastke\n" +" (atribute) datotek (privzeto: mode, " +"ownership,\n" +" timestamps; dodatne mo¾nosti: links, all)\n" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" +" --no-preserve=SEZN_PRIL ne ohranimo navedenih prilastkov\n" +" --parents pot do vira dodaj v IMENIK\n" +" -P isto kot ,--no-dereference`\n" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" +" -R, -r, --recursive imenike prepi¹emo rekurzivno\n" +" --remove-destination vsako ciljno datoteko vedno zbri¹emo, preden\n" +" poskusimo pisati vanjo (prim. --force)\n" + +#: src/cp.c:209 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +" --reply={yes,no,query} doloèimo, kako ravnamo s pozivnikom ob\n" +" obstojeèih ciljnih datotekah\n" +" --sparse=KDAJ kdaj ustvarimo razpr¹ene datoteke\n" +" --strip-trailing-slashes odstrani zakljuène po¹evnice iz vseh " +"podanih\n" +" IZVOROV\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" +" -s, --symbolic-link ustvarimo simbolne povezave namesto kopij\n" +" -S, --suffix=PRIPONA pripona varnostne kopije naj bo PRIPONA\n" +" --target-directory=IMENIK vse IZVORE premakni v IMENIK\n" + +#: src/cp.c:221 +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +" -u, --update prepi¹i samo. èe je IZVOR novej¹i od CILJA " +"ali\n" +" kadar CILJ ¹e ne obstaja\n" +" -v, --verbose z razlago poteka\n" +" -x, --one-file-system samo krajevni datoteèni sistem\n" + +# ! INEXACT +#: src/cp.c:230 +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +"\n" +"Po privzeti izbiri razpr¹ene IZVORE ugotovimo z grobo hevristiko, ustrezni\n" +"CILJI pa bodo tudi razpr¹eni. Isto dose¾emo tudi z izbiro --sparse=auto.\n" +"Z izbiro --sparse=always bo CILJ razpr¹en vedno, kadar IZVOR vsebuje dovolj\n" +"dolgo zaporedje znakov niè. Izbira --sparse=never vedno prepreèi " +"ustvarjanje\n" +"razpr¹enih datotek.\n" +"\n" + +#: src/cp.c:239 +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"Varnostna kopija ima pripono ,~`, razen èe ni z izbiro --suffix ali\n" +"spremenljivko SIMPLE_BACKUP_SUFFIX nastavljeno drugaèe. Vrsto varnostnih\n" +"kopij lahko nastavimo z izbiro --backup ali spremenljivko\n" +"VERSION_CONTROL. Mo¾nosti so:\n" +"\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +" none, off nikoli ne delamo varnostne kopije, niti z izbiro --backup\n" +" numbered, t o¹tevilèene varnostne kopije\n" +" existing, nil o¹tevilèene varnostne kopije, èe take ¾e obstajajo,\n" +" sicer enostavne\n" +" simple, never vedno enostavne varnostne kopije\n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +"V posebnem primeru napravi cp varnostno kopijo IZVORa, kadar sta podani " +"izbiri\n" +"--force in --backup, IZVOR in CILJ pa sta isto ime za obstojeèo navadno\n" +"datoteko.\n" + +#: src/cp.c:325 +#, c-format +msgid "failed to preserve times for %s" +msgstr "èasi za %s niso bili ohranjeni" + +#: src/cp.c:349 +#, c-format +msgid "failed to preserve permissions for %s" +msgstr "dovoljenja datoteke %s niso ohranjena" + +#: src/cp.c:434 +#, c-format +msgid "cannot make directory %s" +msgstr "ni mogoèe ustvariti imenika %s" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +msgid "missing file argument" +msgstr "datoteka ni podana" + +#: src/cp.c:498 +msgid "missing destination file" +msgstr "manjka ciljna datoteka" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "dostopamo do %s" + +#: src/cp.c:546 +#, c-format +msgid "%s: specified target is not a directory" +msgstr "%s: navedeni cilj ni imenik" + +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "prepisujemo veè datotek, vendar zadnji argument %s ni imenik" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "pri ohranitvi poti mora biti cilj imenik" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"opozorilo: --version-control (-V) je zastarela oblika izbire, ki bo v\n" +"eni od naslednjih izdaj odpravljena. Uporabljajte --backup=%s." + +#: src/cp.c:972 src/ln.c:464 +msgid "symbolic links are not supported on this system" +msgstr "ta sistem ne podpira simbolnih povezav" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "hkratne trde in simbolne povezave niso mogoèe" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "vrsta varnostne kopije" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "Stuart Kemp in David MacKenzie" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "napaka pri branju" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "vhod je izginil" + +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s: ¹tevilka vrstice izven intervala" + +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: ,%s`: ¹tevilka vrstice izven intervala" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr " pri ponovitvi %d\n" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s: ,%s`: ujemanja ni" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "napaka pri iskanju z regularnimi izrazi" + +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "napaka pri pisanju za ,%s`" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "%s: po razmejilniku prièakovana ,*` ali ,-`" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s: za ,%c` prièakovano celo ¹tevilo" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "%s: pri ponovitvah je zahtevan ,}`" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "%s}: med ,{` in ,}` je zahtevano celo ¹tevilo" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s: zakljuèni razmejilnik ,%c` manjka" + +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: neveljaven regularni izraz: %s" + +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "%s: neveljavni vzorec" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s: ¹tevilo vrstice mora biti pozitivno" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "¹tevilka vrstice ,%s` je ni¾ja od ¹tevilke vrstice pred njo, %s" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "opozorilo: ¹tevilka vrstice ,%s` je ista kot tista pred njo" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "manjkajoèe doloèilo pretvorbe v priponi" + +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "neveljavno doloèilo pretvorbe v priponi: %c" + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "neveljavno doloèilo pretvorbe v priponi: \\\\%.3o" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "manjkajoèe doloèilo pretvorbe %% v priponi" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "preveè doloèil pretvorbe %% v priponi" + +#: src/csplit.c:1441 +#, c-format +msgid "%s: invalid number" +msgstr "%s: neveljavno ¹tevilo" + +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "Uporaba: %s [IZBIRA]... DATOTEKA VZOREC...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" +"Kose DATOTEKE loèimo z VZORCEM in zapi¹emo v datoteke ,xx01`, ,xx02`...,\n" +"¹tevilo bajtov za posamièen kos pa izpi¹emo na standardni izhod.\n" +"\n" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" +" -b, --suffix-format=OBLIKA uporabi OBLIKO spritntf namesto %d\n" +" -f, --prefix=PREDPONA uporabi podano PREDPONO namesto ,xx`\n" +" -k, --keep-files ob napaki ne pobri¹i nepopolno zapisanih " +"datotek\n" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" +" -n, --digits=©TEVKE uporabi navedeno ¹tevilo ¹tevk namesto " +"privzetih 2\n" +" -s, --quiet, --silent brez izpisa velikosti na standardni izhod\n" +" -z, --elide-empty-files odstrani prazne izhodne datoteke\n" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" +"\n" +"Èe je DATOTEKA -, beremo s standardnega vhoda. VZOREC je lahko eden od:\n" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" +"\n" +" CELO_©TEVILO prepi¹i do navedene vrstice, ne v¹tev¹i te vrstice\n" +" /REGIZR/[ODMIK] prepi¹i do ODMIKA, ne v¹tev¹i ujemajoèe se vrstice\n" +" %%REGIZR%%[ODMIK] preskoèi na ODMIK, ne v¹tev¹i ujemajoèe se vrstice\n" +" {CELO_©TEVILO} ponovi prej¹nji regularni izraz navedenokrat\n" +" {*} ponovi prej¹nji regularni izraz, kolikorkrat gre\n" +"\n" +"Zapis vrstice ODMIKA je znak ,+` ali ,-`, ki mu sledi pozitivno celo " +"¹tevilo.\n" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie in Jim Meyering" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "Uporaba: %s [IZBIRA]... [DATOTEKA]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" +"Izbrane dele vrstic iz vsake od navedenih DATOTEK izpi¹emo na standardni " +"izhod.\n" +"\n" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" +" -b, --bytes=SEZNAM izpi¹i samo navedene bajte\n" +" -c, --characters=SEZNAM izpi¹i samo navedene znake\n" +" -d, --delimiter=RAZMEJ polja so razmejena z znakom RAZMEJ namesto s TAB\n" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" +" -f, --fields=SEZNAM izpi¹i samo navedena polja; izpi¹i tudi vse " +"vrstice,\n" +" ki ne vsebujejo razmejevalnika, razen èe je v " +"rabi\n" +" izbira -s\n" +" -n (prezrto)\n" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" +" -s, --only-delimited ne izpi¹i vrstic, ki ne vsebujejo razmejevalnika\n" +" --output-delimiter=NIZ naj bo NIZ razmejevalnik na izhodu\n" +" privzeti izhodni razmejevalnik je enak vhodnemu\n" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"Izbire -b, -c in -f se medsebojno izkljuèujejo. Vsak SEZNAM lahko sestavlja " +"en\n" +"ali veè razponov, ki so med seboj loèeni z vejico. Vsak razpon ima lahko " +"obliko:\n" +"\n" +" N N-ti bajt, znak ali polje, ¹teto od 1 dalje\n" +" N- od N-tega bajta, znaka ali polja do konca vrstice\n" +" N-M od N-tega do vkljuèno M-tega bajta, znaka ali polja\n" +" -M od prvega do vkljuèno M-tega bajta, znaka ali polja\n" +"\n" +"Èe DATOTEKA ni podana, ali èe je enaka - (minusu), se bere standardni vhod.\n" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "neveljaven seznam bajtov ali polj" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "doloèen je lahko samo en tip seznama" + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "seznam polo¾ajev manjka" + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "seznam polj manjka" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "razmejilnik mora biti en sam znak" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "podati je treba seznam bajtov, znakov ali polj" + +#: src/cut.c:720 +msgid "an input delimiter may be specified only when operating on fields" +msgstr "vhodni razmejilnik se sme doloèiti le, kadar delamo s polji" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" +"neizpisovanje vrstic, ki ne vsebujejo razmejilnika\n" +"\tje smiselno le, kadar delamo s polji" + +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" +"Uporaba: %s [IZBIRA]... [+OBLIKA]\n" +" ali: %s [-u|--utc|--universal] [MMDDuumm[[SS]LL][.ss]]\n" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" +"Izpi¹emo trenutni èas v podanem ZAPISU, ali pa nastavimo sistemski èas.\n" +"\n" +" -d, --date=NIZ izpi¹i èas podan v NIZU namesto trenutnega\n" +" -f, --file=DATOTEKA enako kot --date za vsako vrstico v DATOTEKI\n" +" -IDOLOÈILO, --iso-8601[=DOLOÈILO] datum v obliki skladni s standardom \n" +" ISO 8601 DOLOÈILO je lahko ,date` za sam " +"datum, \n" +" ali ,hours`, ,minutes` ali ,seconds` za datum " +"in \n" +" uro v navedeni natanènosti.\n" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" +" -r, --reference=DATOTEKA izpi¹i èas zadnje spremembe za navedeno " +"DATOTEKO\n" +" -R, --rfc-822 èas izpi¹i skladno s priporoèilom RFC-822\n" +" -s, --set=NIZ nastavi èas na v NIZU podano vrednost\n" +" -u, --utc, --universal izpis ali nastavitev èasa v UTC namesto v " +"lokalnem\n" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" +"\n" +"Izpis doloèa izbrani ZAPIS. Edina veljavna izbira pri drugi obliki ukaza\n" +"doloèa èas v UTC. Tolmaè razume naslednja zaporedja:\n" +"\n" +" %% dobesedni znak za procent %%\n" +" %a lokalizirano okraj¹ano ime dneva v tednu (ned..sob)\n" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" +" %A lokalizirano polno ime dneva v tednu, spremen. ¹irine (nedelja.." +"sobota)\n" +" %b lokalizirano okraj¹ano ime meseca (jan..dec)\n" +" %B lokalizirano polno ime meseca, spremenljive ¹irine (januar.." +"december)\n" +" %c lokaliziran izpis datuma in ure (sob 04 nov 1989 12:02:33 CET)\n" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" +" %C stoletje (leto, deljeno s 100 in zaokro¾eno na celo ¹tevilo) [00-99]\n" +" %d dan v mesecu (01..31)\n" +" %D datum (mm/dd/ll)\n" +" %e dan v mesecu, dopolnjen s presledki ( 1..31)\n" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" +" %F isto kot %Y-%m-%d\n" +" %g dvo¹tevilèno leto, ustrezajoèe ¹tevilki tedna %V\n" +" %G ¹tiri¹tevilèno leto, ustrezajoèe ¹tevilki tedna %V\n" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" +" %h isto kot %b\n" +" %H ura (00..23)\n" +" %I ura (01..12)\n" +" %j dan v letu (001..366)\n" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" +" %k ura ( 0..23)\n" +" %l ura ( 1..12)\n" +" %m mesec (01..12)\n" +" %M minuta (00..59)\n" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" +" %n nova vrstica\n" +" %N nanosekunde (000000000..999999999)\n" +" %p lokalizirana oznaka za dopoldanske (AM) ali popoldanske (PM) ure\n" +" %P lokalizirana oznaka za dopoldanske (am) ali popoldanske (pm) ure\n" +" %r èas v 12-urnem zapisu (hh:mm:ss [AP]M)\n" +" %R èas v 24-urnem zapisu (hh:mm)\n" +" %s sekunde od 00:00:00, 1970-01-01 UTC (raz¹iritev GNU)\n" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" +" %S sekunde (00..60) (60 samo v primeru prestopne sekunde)\n" +" %t vodoravni tabulator\n" +" %T èas v 24-urnem zapisu (hh:mm:ss)\n" +" %U ¹tevilka tedna v letu z nedeljo kot prvim dnevom v tednu (00..53)\n" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" +" %U ¹tevilka tedna v letu z nedeljo kot prvim dnevom v tednu (00..53)\n" +" %V ¹tevilka tedna v letu s ponedeljkom kot prvim dnevom v tednu " +"(01..53)\n" +" %w dan v tednu (0..6); 0 predstavlja nedeljo\n" +" %W ¹tevilka tedna v letu s ponedeljkom kot prvim dnevom v tednu " +"(00..53)\n" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" +" %x lokaliziran zapis datuma (dd.mm.llll)\n" +" %X lokaliziran zapis ure (%H:%M:%S)\n" +" %y zadnji dve ¹tevki leta (00..99)\n" +" %Y leto (1970...)\n" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" +" %z zapis èasovnega pasu skladno z RFC-822 (-0500) (nestandardna " +"raz¹iritev)\n" +" %Z èasovni pas (npr. CET); prazno, èe èasovni pas ni doloèen\n" +"\n" +"Privzeto so ¹tevilèna polja v datumu do polne dol¾ine polja dopolnjena\n" +"z nièlami. GNU date pozna ¹e naslednji doloèili med znakom ,%%` in\n" +"numeriènim doloèilom:\n" +"\n" +" ,-` (minus) ne dopolnjuj polja\n" +" ,_` (podèrtaj) dopolni polje s presledki\n" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "standardni vhod" + +#: src/date.c:268 src/date.c:460 +#, c-format +msgid "invalid date `%s'" +msgstr "neveljavni datum ,%s`" + +#: src/date.c:364 +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "izbire pri doloèanju datumov za izpis se medsebojno izkljuèujejo" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "izbiri za izpis in nastavitev datuma se medsebojno izkljuèujeta" + +#: src/date.c:377 +#, c-format +msgid "too many non-option arguments: %s%s" +msgstr "preveè ne-izbirnih argumentov: %s%s" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" +"argumentu ,%s` manjka vodilni ,+`;\n" +"Kadar doloèamo datum, morajo biti vsi argumenti, ki niso izbire,\n" +"doloèitelji oblike datuma in se morajo zaèeti s ,+`." + +#: src/date.c:397 +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "pri izbiri --rfc-822 (-R) ni dovoljeno podati oblikovnega niza" + +#: src/date.c:433 +msgid "undefined" +msgstr "nedoloèeno" + +#: src/date.c:435 +msgid "cannot get time of day" +msgstr "ni mo¾no izvedeti trenutnega èasa" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "datuma ni mo¾no nastaviti" + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "Paul Rubin, David MacKenzie in Stuart Kemp" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "Uporaba: %s [IZBIRA]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" +"Prepi¹i datoteko in jo pretvori in preoblikuj glede na izbire.\n" +"\n" +" bs=ZLOGOV zahtevamo ibs=ZLOGOV in obs=ZLOGOV\n" +" cbs=ZLOGOV pretvori zahtevano ¹tevilo ZLOGOV naenkrat\n" +" conv=PRETVORBA pretvori datoteko, kot zahteva PRETVORBA (seznam gesel,\n" +" loèen z vejicami)\n" +" count=BLOKOV pretvori samo zahtevano ¹tevilo vhodnik BLOKOV\n" +" ibs=ZLOGOV beri po zahtevano ¹tevilo ZLOGOV naenkrat\n" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" +" if=DATOTEKA beri z navedene DATOTEKE namesto s standardnega vhoda\n" +" obs=ZLOGOV pi¹i po zahtevano ¹tevilo ZLOGOV naenkrat\n" +" of=DATOTEKA pi¹i na navedeno DATOTEKA namesto na standardni izhod\n" +" seek=BLOKOV na zaèetku pisanja preskoèi zahtevano ¹tevilo BLOKOV\n" +" dol¾ine obs\n" +" skip=BLOKOV na zaèetku branja preskoèi zahtevano ¹tevilo BLOKOV\n" +" dol¾ine ibs\n" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" +"\n" +"©tevilo ZLOGOV in BLOKOV lahko okraj¹amo s priponami za mno¾enje: xM za\n" +"mno¾enje z M, c za mno¾enje z 1, w za mno¾enje z 2, b za mno¾enje s 512,\n" +"kB za mno¾enje s 1000, K za mno¾enje s 1024. MB = 1,000,000, M = 1,048,576,\n" +"GB = 1,000,000,000, G = 1,073,741,824, in tako dalje za T, P, E, Z, Y.\n" +"PRETVORBA je lahko (veè izbir loèimo z vejico):\n" +"\n" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" +" ascii iz EBCDIC v ASCII\n" +" ebcdic iz ASCII v EBCDIC\n" +" ibm iz ASCII v ,,alternated EBCDIC``\n" +" block zapise terminirane z NEWLINE zapolnimo z presledki do dol¾ine " +"cbs\n" +" unblock sledilne presledke v zapisu dol¾ine cbs nadomestimo z NEWLINE\n" +" lcase velike èrke zamenjamo z malimi\n" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" +" notrunc izhodne datoteke ne pore¾emo\n" +" ucase male èrke zamenjamo z velikimi\n" +" swab paroma zamenjamo zloge na vhodu\n" +" noerror nadaljujemo po napaki pri branju\n" +" sync vsak vhodni blok zapolnimo z znaki NUL dol¾ine ibs, èe " +"uporabimo\n" +" tudi block ali unblock, zapolnimo s presledki namesto z znaki " +"NUL\n" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "%s+%s zapisov na vhodu\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "%s+%s zapisov na izhodu\n" + +# ! INEXACT +#: src/dd.c:371 +msgid "truncated record" +msgstr "odrezan zapis" + +# ! INEXACT +#: src/dd.c:372 +msgid "truncated records" +msgstr "odrezani zapisi" + +#: src/dd.c:382 +#, c-format +msgid "closing input file %s" +msgstr "zapiramo vhodno datoteko %s" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "zapiramo izhodno datoteko %s" + +#: src/dd.c:469 +#, c-format +msgid "writing to %s" +msgstr "pi¹emo na %s" + +#: src/dd.c:501 +#, c-format +msgid "invalid conversion: %s" +msgstr "neveljavna pretvorba: %s" + +#: src/dd.c:557 +#, c-format +msgid "unrecognized option %s" +msgstr "neprepoznana izbira %s" + +#: src/dd.c:610 +#, c-format +msgid "unrecognized option %s=%s" +msgstr "neprepoznana izbira %s=%s" + +#: src/dd.c:616 +#, c-format +msgid "invalid number %s" +msgstr "neveljavno ¹tevilo %s" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"samo eno od {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, {unblock," +"sync}" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" +"opozorilo: obvoz okoli napake lseek v jedru za datoteko (%s)\n" +" vrste mt_type=0x%0lx -- glejte za seznam zvrsti" + +#: src/dd.c:1170 src/dd.c:1188 +#, c-format +msgid "opening %s" +msgstr "odpiramo %s" + +#: src/dd.c:1196 +msgid "file offset out of range" +msgstr "odmik izven obmoèja" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "napredovali smo prek %s bajtov v izhodni datoteki %s" + +#: src/df.c:49 +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "Torbjorn Granlund, David MacKenzie, Larry McVoy in Paul Eggert" + +#: src/df.c:153 +msgid "Filesystem Type" +msgstr "Dat. sist. Tip" + +#: src/df.c:155 +msgid "Filesystem " +msgstr "Dat. sist. " + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr " Inodov IUpor IPros IUpo%%" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Vel. Upor Prost Upo%%" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Vel. Upor. Prost Upo%%" + +#: src/df.c:167 +#, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr " %4s-blokov Upor. Na voljo Kapacit." + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr " %4s-blokov Upor. Na voljo Upo%%" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr " Priklopljeno na\n" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" +"Informacija o datoteènem sistemu, na katerem se nahaja DATOTEKA,\n" +"ali o vseh datoteènih sistemih.\n" +"\n" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" +" -a, --all vkljuèno s praznimi datoteènimi sistemi\n" +" -B, --block-size=VELIKOST uporabljamo VELIKOST zlogov velike bloke\n" +" -h, --human-readable velikosti v èloveku berljivem zapisu (npr. 1K 234M " +"2G)\n" +" -H, --si podobno kot -h, vendar z bazo 1000 namesto 1024\n" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" +" -i, --inodes izpis informacije o inode namesto o porabi blokov\n" +" -k isto kot --block-size=1024\n" +" -l, --local omejimo seznam na lokalni datoteèni sistem\n" +" --no-sync brez klica sync() pred izpisom porabe (privzeto)\n" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" +" -P, --portability izhodni format POSIX\n" +" --sync klic sync() pred izpisom porabe\n" +" -t, --type=TIP samo datoteèni sistemi tipa TIP\n" +" -T, --print-type izpis datoteènega sistem\n" +" -x, --exclude-type=TIP brez datoteènih sistemov tipa TIP\n" +" -v (ignorirano)\n" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" +"\n" +"VELIKOST je ena od naslednjih oznak (ali pa celo ¹tevilo, ki mu lahko sledi\n" +"ena od naslednjih oznak): kB 1000, K 1024, MB 1.000.000, M 1.048.576 in " +"tako\n" +"dalje za G, T, P, E, Z in Y.\n" + +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "tip datoteènega sistema %s je obenem izbran in izloèen" + +#: src/df.c:903 +msgid "Warning: " +msgstr "Opozorilo: " + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "%stabela priklopljenih datoteènih sistemov ni berljiva" + +# ! INEXACT +#: src/dircolors.c:103 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "Uporaba: %s [IZBIRA]... [DATOTEKA]...\n" + +#: src/dircolors.c:104 +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"Izpis ukazov za nastavitev spremenljivke LS_COLORS.\n" +"\n" +"Doloèitev oblike izhoda:\n" +" -b, --sh, --bourne-shell oblika Bournove ukazne lupine za nastavitev \n" +" spremenljivke LS_COLORS\n" +" -c, --csh, --c-shell oblika ukazne lupine C za nastavitev " +"LS_COLORS\n" +" -p, --print-database izpis privzeth vrednosti\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" +"\n" +"Èe je DATOTEKA podana, iz nje preberemo, katero barvo uporabimo za kateri " +"tip\n" +"datotek oziroma pripon. Sicer se uporabi vgrajena tabela. Za podrobnosti o \n" +"skladnji datoteke po¾enite ,,dircolors --print-database``.\n" + +#: src/dircolors.c:299 +#, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s:%lu: neveljavna vrstica; manjka drugi element" + +# ! INEXACT +#: src/dircolors.c:371 +#, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s:%lu: neprepoznana kljuèna beseda %s" + +#: src/dircolors.c:372 +msgid "" +msgstr "" + +#: src/dircolors.c:467 +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" +"izpis privzetih vrednosti (izbira --print-data-base, -p) ni zdru¾ljiv\n" +"z izbiro sintakse ukazne lupine" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" +"pri izpisu privzetih vrednosti (izbira --print-data-base, -p) ni dovoljeno\n" +"podati argumenta DATOTEKA" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "spremenljivka SHELL ni nastavljena, niti ni podan tip ukazne lupine" + +#: src/dirname.c:33 src/pathchk.c:59 +msgid "David MacKenzie and Jim Meyering" +msgstr "David MacKenzie in Jim Meyering" + +#: src/dirname.c:46 +#, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"Uporaba: %s IME\n" +" ali: %s IZBIRA\n" + +#: src/dirname.c:51 +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" +"Izpi¹emo IME brez elementa za zadnjo po¹evnico (/); èe IME ne vsebuje\n" +"po¹evnic, izpi¹emo ,.` (pomeni trenutni imenik).\n" + +#: src/du.c:49 +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert in Jim Meyerling" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" +"Povzetek porabe diska za datoteko DATOTEKA, rekurzivno po podimenikih.\n" +"\n" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" +" -a, --all izpis za vse datoteke, ne le za imenike\n" +" --apparent-size izpis navidezne dol¾ine namesto porabe diska; " +"slednja \n" +" je navadno veèja, v doloèenih primerih (razpr¹ene\n" +" datoteke, notranja fragmentiranost, indirektni " +"bloki\n" +" ipd.) pa je lahko tudi manj¹a\n" +" -B, --block-size=VELIKOST ¹tejemo v VELIKOST zlogov velikih blokih\n" +" -b, --bytes isto kot ,--apparent-size --block-size=1`\n" +" -c, --total skupni povzetek\n" +" -D, --dereference-args razre¹imo poti, èe so simbolne povezave\n" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" +" -h, --human-readable velikosti v èloveku berljivem zapisu (npr. 1K 234M " +"2G)\n" +" -H, --si podobno kot -h, vendar v bazi 1000 namesto 1024\n" +" -k isto kot --block-size=1024\n" +" -l, --count-links trde povezeva ¹tejemo po veèkrat\n" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" +" -L, --dereference razre¹imo vse simbolne povezave, ¹tejemo ciljne " +"datoteke\n" +" -S, --separate-dirs brez velikosti podimenikov\n" +" -s, --summarize za vsak argument samo povzetek\n" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" +" -x, --one-file-system brez imenikov na ostalih datoteènih sistemih\n" +" -X DATOTEKA, --exclude-from=DATOTEKA brez datotek, ki jih pokriva " +"vzorec, \n" +" podan v DATOTEKI\n" +" --exclude=VZOREC brez datotek, ki jih pokriva podani VZOREC\n" +" --max-depth=N razèlenjeni izpis samo za imenike (in datoteke pri\n" +" izbiri --all), ki so N ali manj ravni pod trenutnim\n" +" imenikom; --max-depth=0 je isto kot --summarize\n" + +#: src/du.c:337 +#, c-format +msgid "cannot change to parent of directory %s" +msgstr "imenik nad imenikom %s ni dosegljiv" + +#: src/du.c:345 +#, c-format +msgid "cannot change to directory %s" +msgstr "imenik %s ni dosegljiv" + +#: src/du.c:352 +#, c-format +msgid "cannot read directory %s" +msgstr "imenika %s ni mogoèe prebrati" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "skupno" + +#: src/du.c:641 +#, c-format +msgid "invalid maximum depth %s" +msgstr "neveljavna najveèja globina %s" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "mo¾nosti se izkljuèujeta - ali izpis vseh, ali povzetek" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "opozorilo: povzetek je isto kot izbira --max-depth=0" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "opozorilo: povzetek se izkljuèuje z --max-depth=%d" + +#: src/echo.c:77 +#, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "Uporaba: %s [IZBIRA]... [NIZ]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" +"Izpi¹emo NIZ ali veè NIZOV na standardni izhod.\n" +"\n" +" -n ne izpisuj konènega znaka za novo vrstico\n" +" -e pri izpisu tolmaèi spodaj navedene ube¾ne sekvence\n" +" -E onemogoèi tolmaèenje ube¾nih sekvenc v NIZIH\n" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" +"\n" +"Èe ni podana izbira -E, pri izpisu prepoznamo in tolmaèimo naslednja\n" +"ube¾na zaporedja:\n" +"\n" +" \\NNN znak s kodo NNN (osmi¹ko) v trenutnem kodnem naboru\n" +" \\\\ nagibnica\n" +" \\a zvonèek (BEL)\n" +" \\b pomik za znak nazaj\n" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\c ne izpi¹i konènega znaka za skok v novo vrstico\n" +" \\f skok na novo stran\n" +" \\n skok v novo vrstico\n" +" \\r povratek na zaèetek vrstice\n" +" \\t horizontalni tabulator\n" +" \\v vertikalni tabulator\n" + +#: src/env.c:93 +msgid "Richard Mlynarik and David MacKenzie" +msgstr "Richard Mlynarik in David MacKenzie" + +#: src/env.c:119 +#, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "Uporaba: %s [IZBIRA]... [-] [IME=VREDNOST]... [UKAZ [ARGUMENT]...]\n" + +#: src/env.c:122 +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" +"Doloèi VREDNOST spremenljivki okolja z danim IMENOM in po¾eni UKAZ.\n" +"\n" +" -i, --ignore-environment zaèni iz praznega okolja\n" +" -u, --unset=IME odstrani spremenljivko z navedenim IMENOM iz " +"okolja\n" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" +"\n" +"Sam - implicira -i. Èe UKAZ ni podan, izpi¹emo spremenljivke okolja.\n" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Tabulatorje v vsaki od DATOTEK nadomestimo s presledki in rezultat izpi¹emo\n" +"na standardni izhod. Èe DATOTEKA ni podana, ali èe je enaka - (minus), " +"beremo\n" +"s standardnega vhoda.\n" +"\n" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" +" -i, --initial nadomesti samo tabulatorje, ki sledijo praznim znakom\n" +" -t, --tabs=©IRINA ©IRINA tabulatorja naj bo navedeno namesto 8\n" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" +" -t, --tabs=SEZNAM uporabi z vejicami loèen SEZNAM eksplicitnih " +"tabulatorjev\n" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "¹irina tabulatorja vsebuje neveljaven znak" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "¹irina tabulatorja ne more biti 0" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "seznam tabulatorjev mora biti nara¹èajoè" + +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr ",-LIST` je opu¹èena oblika; uporabite ,-t LIST`" + +#: src/expr.c:90 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"Uporaba: %s IZRAZ\n" +" ali: %s IZBIRA\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" +"\n" +"Ovrednoten IZRAZ izpi¹emo na standardni izhod. Operatorji v spodnjem\n" +"seznamu so razvr¹èeni po nara¹èajoèi prednosti, prazna vrstica loèi\n" +"skupine z isto prednostjo. Vrednost IZRAZA je lahko:\n" +"\n" +" ARG1 | ARG2 ARG1, èe ta ni prazen ali enak 0, sicer ARG2\n" +" \n" +" ARG1 & ARG2 ARG1, èe ni noben argumentov prazen ali enak 0, sicer 0\n" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" +"\n" +" ARG1 < ARG2 ARG1 je manj¹i od ARG2\n" +" ARG1 <= ARG2 ARG1 je manj¹i ali enak ARG2\n" +" ARG1 = ARG2 ARG1 je enak ARG2\n" +" ARG1 != ARG2 ARG1 ni enak ARG2\n" +" ARG1 >= ARG2 ARG1 je veèji ali enak ARG2\n" +" ARG1 > ARG2 ARG1 je veèji od ARG2\n" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" +"\n" +" ARG1 + ARG2 aritmetièna vsota ARG1 in ARG2\n" +" ARG1 - ARG2 aritmetièna razlika ARG1 in ARG2\n" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" +"\n" +" ARG1 * ARG2 aritmetièni produkt ARG1 in ARG2\n" +" ARG1 / ARG2 aritmetièni koliènik pri deljenju ARG1 z ARG2\n" +" ARG1 % ARG2 aritmetièni ostanek pri deljenju ARG1 z ARG2\n" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" +"\n" +" NIZ : REGIZR ujemanje NIZA s sidranim regularnim izrazom REGIZR\n" +"\n" +" match STRING REGIZR isto kot NIZ : REGIZR\n" +" substr NIZ POLO®AJ DOL®INA podniz NIZA, POLO®AJ se ¹teje od 1 dalje \n" +" index NIZ ZNAKI mesto v NIZU, kjer se nahajajo ZNAKI, sicer " +"0\n" +" length NIZ do¾ina NIZA\n" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" +" + SIMBOL ravnaj s SIMBOLOM, kot da je NIZ, èeprav je\n" +" kljuèna beseda kot ,match` ali operator " +"kot ,/`\n" +"\n" +" ( IZRAZ ) vrednost IZRAZA\n" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" +"\n" +"Pazite na to, da morajo mnogi operatorji biti zavarovani z nagibnico \\\n" +"ali narekovaji, da jih ne interpretira ukazna lupina. Primerjave so\n" +"aritmetiène, èe sta oba argumenta ¹tevili, sicer leksikografske. Ujemanje\n" +"vzorcev vrne niz med oklepajema \\( in \\) ali pa prazen niz; èe \\( in \\)\n" +"nista podana, vrne ¹tevilo znakov, ki se ujemajo, ali 0.\n" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +msgid "syntax error" +msgstr "napaka v skladnji" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" +"opozorilo: neprenosljiv osnovni regularni izraz: ,%s` : uporaba ,^` kot\n" +"prvega znaka v osnovnem regularnem izrazu ni prenosljiva, ignorirano" + +#: src/expr.c:586 src/expr.c:625 +msgid "non-numeric argument" +msgstr "ne-¹tevilèni argument" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "deljenje z niè" + +#: src/factor.c:74 +#, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"Uporaba: %s [©TEVILO]...\n" +" ali: %s IZBIRA\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" +"Vsa podana ©TEVILA razstavimo na prafaktorje in slednje izpi¹emo.\n" +"\n" + +#: src/factor.c:85 +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" +"\n" +" Izpi¹emo prafaktorje za vsa podana cela ©TEVILA. Èe niso podana kot\n" +" argument v ukazni vrstici, jih beremo s standardnega vhoda.\n" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr ",%s` ni veljavno pozitivno celo ¹tevilo" + +#: src/false.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Uporaba: %s [morebitni argumeni v ukazni vrstici se ne upo¹tevajo]\n" +" ali: %s IZBIRA\n" +"Konèamo z izhodno kodo, ki signalizira napako.\n" +"\n" +"Navedeni izbiri nimata kratke oblike.\n" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "Uporaba: %s [-©TEVKE] [IZBIRA]... [DATOTEKA]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" +"Vsak odstavek v DATOTEKI(-ah) preoblikujemo in izpi¹emo na standardni " +"izhod.\n" +"Èe DATOTEKA ni podana ali je enaka - (minus), beremo s standardnega vhoda.\n" + +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" +" -c, --crown-margin ohrani zamik prvih dveh vrstic\n" +" -p, --prefix=NIZ preoblikuj samo vrstice, ki se zaèno z NIZOM\n" +" -s, --split-only pore¾i predolge vrstice, a brez poravnave\n" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" +" -t, --tagged-paragraph zamik prve vrstice v odstavku je razlièen od " +"ostalih\n" +" -u, --uniform-spacing en presledek med besedami, dva za piko\n" +" -w, --width=©IRINA najveèja ¹irina vrstice (privzeto 75 znakov)\n" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" +"\n" +"Izbiro -w©TEVILO lahko uporabimo tudi v obliki -©TEVILO.\n" + +#: src/fmt.c:345 +#, c-format +msgid "invalid width option: `%s'" +msgstr "neveljavna izbira ¹irine: ,%s`" + +#: src/fmt.c:385 +#, c-format +msgid "invalid width: `%s'" +msgstr "neveljavna ¹irina: ,%s`" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" +"Vrstice v vsaki DATOTEKI na vhodu (privzet je standardni vhod) prelomimo\n" +"in rezultat izpi¹emo na standardni izhod.\n" +"\n" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" +" -b, --bytes ¹tejemo bajte namesto znakov\n" +" -s, --spaces prelom na presledkih\n" +" -w, --width=©IRINA nastavimo ©IRINO vrstic (privzeto 80)\n" + +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr ",%s` je opu¹èena oblika; uporabite ,%s`" + +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "neveljavna ¹irina: ,%s`" + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Izpi¹emo prvih 10 vrstic vsake od DATOTEK na standardni izhod.\n" +"Èe je podana veè kot ena DATOTEKA, pred vsebino izpi¹emo ¹e ime datoteke.\n" +"Èe DATOTEKA ni podana, ali èe je enaka -, beremo s standardnega vhoda.\n" +"\n" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" +" -c, --bytes=VELIKOST izpi¹emo prvih VELIKOST bajtov z zaèetka " +"datoteke\n" +" -n, --lines=©TEVILO izpi¹emo dano ©TEVILO vrstic namesto prvih 10\n" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" +" -q, --quiet, --silent vedno brez izpisa imena datoteke\n" +" -v, --verbose vedno izpi¹emo ¹e ime datoteke\n" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" +"\n" +"VELIKOST ima lahko pripono b za mno¾enje s 512, k za 1024 ali m za 1048576.\n" + +#: src/head.c:190 +#, c-format +msgid "cannot reposition file pointer for %s" +msgstr "ni mogoèe premakniti datoteènega kazalca za %s" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "%s: %s je tako veliko, da ni predstavljivo" + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "¹tevilo vrstic" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "¹tevilo bajtov" + +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "neveljavno ¹tevilo vrstic" + +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "neveljavno ¹tevilo bajtov" + +#: src/head.c:341 +#, c-format +msgid "unrecognized option `-%c'" +msgstr "neprepoznana izbira ,-%c`" + +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr ",-%s` je opu¹èena oblika; uporabite ,-%c %.*s%.*s%s`" + +#: src/hostid.c:48 +#, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" +"Uporaba: %s\n" +" ali: %s IZBIRA\n" +"Izpi¹emo (¹estnajsti¹ko) identifikacijsko ¹tevilko trenutnega raèunalnika.\n" + +#: src/hostname.c:67 +#, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" +"Uporaba: %s [IME]\n" +" ali: %s IZBIRA\n" +"Izpi¹emo ali nastavimo gostiteljsko ime trenutnega sistema.\n" + +#: src/hostname.c:104 +#, c-format +msgid "cannot set hostname to `%s'" +msgstr "imena raèunalnika ni mo¾no nastaviti na ,%s`" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "na tem sistemu imena raèunalnika ni mo¾no nastavljati" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "imena raèunalnika ni mogoèe ugotoviti" + +#: src/id.c:36 +msgid "Arnold Robbins and David MacKenzie" +msgstr "Arnold Robbins in David MacKenzie" + +#: src/id.c:87 +#, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "Uporaba: %s [IZBIRA]... [UPORABNIK]\n" + +#: src/id.c:88 +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" +"Izpi¹emo informacije o navedenem UPORABNIKU ali pa o trenutnem uporabniku.\n" +"\n" +" -a ignorirano, ostalo zaradi zdru¾ljivosti z ostalimi " +"razlièicami\n" +" -g, --group izpi¹i samo ¹tevilko skupine (GID)\n" +" -G, --groups izpi¹i ¹tevilke vseh skupin\n" +" -n, --name pri izbirah -ugG izpi¹i ime uporabnika namesto ¹tevilke\n" +" -r, --real izpi¹i pravi ID namesto efektivnega -ugG\\n\"\n" +" -u, --user izpi¹i smo ¹tevilko uporabnika (UID)\n" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" +"\n" +"Brez navedene IZBIRE izpi¹emo nekaj uporabnih identifikacijskih informacij.\n" + +#: src/id.c:162 +msgid "cannot print only user and only group" +msgstr "izbiri ,le uporabnik` in ,le skupina` se izkljuèujeta" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "v privzeti obliki ni mo¾en izpis samo imen ali realnih ID" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "%s: Uporabnik ne obstaja" + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "uporabni¹ko ime za UID %u ni ugotovljivo" + +#: src/id.c:235 +#, c-format +msgid "cannot find name for group ID %u" +msgstr "ime skupine za GID %u ni ugotovljivo" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "dodaten seznam skupin ni na voljo" + +#: src/id.c:385 +msgid " groups=" +msgstr " skupine=" + +#: src/install.c:269 +msgid "the strip option may not be used when installing a directory" +msgstr "opcija ,strip` ni dovoljena pri namestitvi imenika" + +#: src/install.c:292 src/mkdir.c:140 +#, c-format +msgid "invalid mode %s" +msgstr "neveljaven naèin %s" + +#: src/install.c:307 src/install.c:371 +#, c-format +msgid "creating directory %s" +msgstr "ustvarjamo imenik %s" + +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "name¹èamo veè datotek, vendar zadnji argument %s ni imenik" + +#: src/install.c:435 +#, c-format +msgid "%s is a directory" +msgstr "%s je imenik" + +#: src/install.c:495 +#, c-format +msgid "cannot obtain time stamps for %s" +msgstr "èasovne oznake %s ni moè najti" + +#: src/install.c:507 +#, c-format +msgid "cannot set time stamps for %s" +msgstr "datoteke %s ni moè èasovno oznaèiti" + +#: src/install.c:528 +msgid "fork system call failed" +msgstr "vejitev ni mogoèa" + +#: src/install.c:532 +msgid "cannot run strip" +msgstr "ni mogoèe pognati ,strip`" + +#: src/install.c:539 +msgid "strip failed" +msgstr ",strip` ni uspel" + +#: src/install.c:560 +#, c-format +msgid "invalid user %s" +msgstr "neveljavno ime uporabnika %s" + +#: src/install.c:578 +#, c-format +msgid "invalid group %s" +msgstr "neveljavno ime skupine %s" + +# ! INEXACT +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"Uporaba: %s [IZBIRA]... IZVOR CILJ (prva oblika)\n" +" ali: %s [IZBIRA]... IZVOR... IMENIK (druga oblika)\n" +" ali: %s -d [IZBIRA]... IMENIK... (tretja oblika)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" +"V prvih dveh oblikah prepi¹emo IZVOR na CILJ ali veè IZVOROV v IMENIK,\n" +"in obenem nastavimo za¹èito, lastnika in skupino. V tretji obliki\n" +"ustvarimo nov(e) IMENIK(E) s podanimi lastnostmi.\n" +"\n" + +# ! INEXACT +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" +" --backup[=TIP] pred pisanjem prek obstojeèe ciljne datoteke \n" +" izdelamo varnostno kopijo podanega TIPA\n" +" -b enako kot --backup, vendar ne sprejema argumenta\n" +" -c (ignorirano)\n" +" -d, --directory vse argumente obravnavamo kot imena imenikov; " +"ustvarimo\n" +" vse komponente podanih imenikov\n" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" +" -D ustvarimo vse vodilne komponente CILJA razen zadnje,\n" +" zatem prepi¹emo IZVOR na CILJ (uporabno v prvi " +"obliki)\n" +" -g, --group=SKUPINA uporabni¹ka skupina, namesto skupine trenutnega " +"procesa\n" +" -m, --mode=ZA©ÈITA za¹èita (kot v chmod), namesto privzete rwxr-xr-x\n" +" -o, --owner=LASTNIK lastnik (samo nadzorni uporabnik)\n" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" +" -p, --preserve-timestamps ohranimo èas dostopa/spremembe, kot jih ima " +"IZVOR\n" +" -s, --strip ogulimo simbolne tabele (samo prva in druga oblika)\n" +" -S, --suffix=PRIPONA izrecno navedemo pripono varnostnih kopij\n" +" --verbose z izpisom imen vseh ustvarjenih imenikov\n" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"\n" +"Varnostna kopija ima pripono ,~`, razen èe ni z izbiro --suffix ali\n" +"spremenljivko SIMPLE_BACKUP_SUFFIX nastavljeno drugaèe. Vrsto varnostnih\n" +"kopij lahko nastavimo z izbiro --backup ali spremenljivko\n" +"VERSION_CONTROL. Mo¾nosti so:\n" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "Uporaba: %s [IZBIRA]... DATOTEKA1 DATOTEKA2\n" + +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" +"Za vsak par vrstic na vhodu z enakimi zdru¾itvenimi polji izpi¹emo vrstico\n" +"na standardni izhod. Privzeto zdru¾itveno polje je prvo, loèeno s praznim\n" +"prostorom. Èe sta DATOTEKA1 ali DATOTEKA2 (ne pa obe hkrati) enaki -, " +"beremo\n" +"s standardnega vhoda.\n" +"\n" +" -a DATOTEKA izpi¹emo vrstice brez para, ki izvirajo iz navedene \n" +" DATOTEKE (spremenljivka DATOTEKA lahko zavzame " +"vrednosti\n" +" 1 ali 2, kar ustreza DATOTEKI1 in DATOTEKI2)\n" +" -e PRAZNO manjkajoèe vhodno polje nadomestimo z nizom PRAZNO\n" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" +" -i, --ignore-case pri primerjanju obravnavamo velike in male èrke enako\n" +" -j POLJE (zastarelo) isto kot ,-1 POLJE -2 POLJE`\n" +" -j1 POLJE (zastarelo) isto kot ,-1 POLJE`\n" +" -j2 POLJE (zastarelo) isto kot ,-2 POLJE`\n" +" -o OBLIKA pri izpisu uporabimo predpisano OBLIKO\n" +" -t ZNAK navedeni ZNAK naj bo loèilo med polji na vhodu in " +"izhodu\n" + +#: src/join.c:165 +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" +" -v DATOTEKA isto kot -a DATOTEKA, vendar brez zdru¾enih izhodnih " +"vrstic\n" +" -1 POLJE zdru¾ujemo glede na navedeno POLJE v prvi datoteki\n" +" -2 POLJE zdru¾ujemo glede na navedeno POLJE v drugi datoteki\n" + +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" +"\n" +"Èe izbira -t ZNAK ni podana, vodilna prazna polja loèujejo polja in se ne\n" +"upo¹tevajo, sicer pa ZNAK loèuje polja. POLJE je ¹tevilka polja, ¹teto od 1\n" +"dalje. OBLIKA je eno ali veè z vejico ali presledkom loèenih doloèil, " +"vsako \n" +"od njih je oblike ,DATOTEKA.POLJE` ali ,0`. Privzeta OBLIKA izpi¹e " +"zdru¾itveno\n" +"polje, vsa preostala polja iz DATOTEKE1, in zatem ¹e vsa preostala polja iz\n" +"DATOTEKE2; loèilo med polji je ZNAK.\n" + +#: src/join.c:645 +#, c-format +msgid "invalid field specifier: `%s'" +msgstr "neveljavno doloèilo polja: ,%s`" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, c-format +msgid "invalid field number: `%s'" +msgstr "neveljavna ¹tevilka polja: ,%s`" + +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "neveljavna ¹tevilka datoteke v doloèilu polja: ,%s`" + +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "neveljavna ¹tevilka polja za prvo datoteko: ,%s`" + +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "neveljavna ¹tevilka polja za drugo datoteko: ,%s`" + +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "preveè neizbirnih argumentov" + +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "premalo neizbirnih argumentov" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "obeh datotek ne moremo hkrati brati s standardnega vhoda" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" +"Uporaba: %s [-s SIGNAL | -SIGNAL] PID...\n" +" ali: %s -l [SIGNAL]...\n" +" ali: %s -t [SIGNAL]...\n" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" +"Procesom po¹ljemo signale, ali pa izpi¹emo signale.\n" +"\n" + +#: src/kill.c:106 +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" doloèimo ime ali ¹tevilko signala, ki ga ¾elimo poslati\n" +" -l, --list izpi¹emo imena signalov, ali pretvorimo ¹tevilko signala\n" +" v ime (ali obratno)\n" +" -t, --table izpi¹emo tabelo signalnih informacij\n" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" +"\n" +"SIGNAL lahko podamo z imenom (npr. HUP) ali ¹tevilko (npr. 1),\n" +"ali pa z izhodno statusno kodo procesa, ustavljenega s signalom.\n" +"PID (identifikacijska ¹tevilkoa uporabnika) je celo ¹tevilo; negativna \n" +"vrednost doloèa identifikacijko ¹tevilko skupine.\n" + +#: src/kill.c:163 +#, c-format +msgid "%s: invalid signal" +msgstr "%s: neveljaven signal" + +#: src/kill.c:262 +#, c-format +msgid "missing operand after `%s'" +msgstr "za ,%s` manjka operand" + +#: src/kill.c:274 +#, c-format +msgid "%s: invalid process id" +msgstr "%s: neveljavna identifikacijska ¹tevilka procesa" + +#: src/kill.c:327 +#, c-format +msgid "invalid option -- %c" +msgstr "neveljavna izbira -- %c" + +#: src/kill.c:336 +#, c-format +msgid "%s: multiple signals specified" +msgstr "%s: podan veè kot en signal" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "hkrati sta podani izbiri -l in -t" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "signala ni moè kombinirati z izbirama -l ali -t" + +#: src/link.c:51 +#, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"Uporaba: %s DATOTEKA1 DATOTEKA2\n" +" ali: %s IZBIRA\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" +"S klicem funkcije link(2) ustvarimo povezavo med povezavo DATOTEKO2 in\n" +"obstojeèo DATOTEKO1.\n" + +#: src/link.c:98 +#, c-format +msgid "cannot create link %s to %s" +msgstr "ni mogoèe ustvariti povezave %s na %s" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "Mike Parker in David MacKenzie" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "%s: opozorilo: trda povezava na simbolno povezavo ni prenosljiva" + +#: src/ln.c:174 +#, c-format +msgid "%s: hard link not allowed for directory" +msgstr "%s: trda pozezava ni dovoljena za imenik" + +#: src/ln.c:246 +#, c-format +msgid "%s: cannot overwrite directory" +msgstr "%s: ni mogoèe pisati prek imenika" + +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "%s: naj nadomestimo %s? " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: Datoteka obstaja" + +#: src/ln.c:304 +#, c-format +msgid "create symbolic link %s to %s" +msgstr "simbolna povezava %s na %s" + +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "trda povezava %s na %s" + +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "ustvarjamo simbolno povezavo %s na %s" + +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "ustvarjamo trdo povezavo %s na %s" + +# ! INEXACT +#: src/ln.c:339 +#, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"Uporaba: %s [IZBIRA]... CILJ [POVEZAVA]\n" +" ali: %s [IZBIRA]... CILJ... IMENIK\n" +" ali: %s [IZBIRA]... --target-directory=IMENIK CILJ...\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" +"Ustvarimo povezavo do doloèenega CILJA z neobveznim imenom POVEZAVE. Èe je\n" +"ime POVEZAVE izpu¹èeno, se ustvari povezava z enakim golim imenom datoteke\n" +"(brez poti) kot CILJ v trenutnem imeniku. Èe uporabimo drugo obliko z veè\n" +"CILJI, mora biti zadnji argument imenik; tedaj v tem IMENIKU ustvarimo\n" +"povezave do CILJEV. Privzeti tip povezav so trde povezave; simbolne " +"zahtevamo\n" +"z izbiro --symbolic. Pri ustvarjanju trdih povezav morajo CILJI obstajati.\n" +"\n" + +# ! INEXACT +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" +" --backup[=TIP] pred pisanjem prek obstojeèe ciljne datoteke\n" +" izdelamo varnostno kopijo podanega TIPA\n" +" -b enako kot --backup, vendar ne sprejema " +"argumenta\n" +" -d, -F, --directory trde povezave imenikov (samo naduporabnik)\n" +" -f, --force brez vpra¹anj pobri¹emo morebitne ciljne " +"datoteke\n" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" +" -n, --no-dereference simbolne povezave na imenik obravnavamo kot\n" +" navadne datoteke\n" +" -i, --interactive zahtevamo potrditev, preden pobri¹emo " +"datoteko\n" +" -s, --symbolic simbolne povezave namesto trdih\n" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" +" -S, --suffix=PRIPONA izrecno doloèena pripona varnostne kopije\n" +" --target-directory=IMENIK izrecna navedba IMENIKA, v katerem ustvari\n" +" povezave\n" +" -v, --verbose z izpisom imen datotek, ki jih povezujemo\n" + +#: src/ln.c:521 +#, c-format +msgid "%s: specified target directory is not a directory" +msgstr "%s: navedeni ciljni imenik ni imenik" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "pri veèih povezavah mora biti zadnji argument imenik" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "Uporaba: %s [IZBIRA]\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" +"Izpi¹emo uporabni¹ko ime trenutnega uporabnika.\n" +"\n" + +#: src/logname.c:99 +#, c-format +msgid "%s: no login name\n" +msgstr "%s: uporabni¹ko ime ne obstaja\n" + +#: src/ls.c:673 +msgid "%b %e %Y" +msgstr "%b %e %Y" + +#: src/ls.c:681 +msgid "%b %e %H:%M" +msgstr "%b %e %H:%M" + +# ! INEXACT +#: src/ls.c:1307 +#, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "ignoriram neveljavno vrednost spremenljivke QUOTING_STYLE: %s" + +# ! INEXACT +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "ignoriram neveljavno ¹irino v spremenljivki COLUMNS: %s" + +# ! INEXACT +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "ignoriram neveljavni tabulator v spremenljivki TABSIZE: %s" + +#: src/ls.c:1482 +#, c-format +msgid "invalid line width: %s" +msgstr "neveljavna ¹irina vrstice: %s" + +#: src/ls.c:1556 +#, c-format +msgid "invalid tab size: %s" +msgstr "neveljaven tabulator: %s" + +#: src/ls.c:1722 +#, c-format +msgid "invalid time style format %s" +msgstr "neveljavna oblika ure %s" + +# ! INEXACT +#: src/ls.c:2054 +#, c-format +msgid "unrecognized prefix: %s" +msgstr "neprepoznana predpona: %s" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "vrednosti v spremenljivki LS_COLORS ni moè raztolmaèiti" + +#: src/ls.c:2145 +#, c-format +msgid "cannot determine device and inode of %s" +msgstr "ni mogoèe ugotoviti enote in inoda datoteke %s" + +#: src/ls.c:2155 +#, c-format +msgid "not listing already-listed directory: %s" +msgstr "¾e izpisanega imenika ne izpi¹emo znova: %s" + +#: src/ls.c:2208 src/remove.c:929 +#, c-format +msgid "reading directory %s" +msgstr "beremo imenik %s" + +# POZOR!!! Razisci, kaj program res tu pocne! +# ! INEXACT +#: src/ls.c:2603 +#, c-format +msgid "cannot compare file names %s and %s" +msgstr "ni mogoèe primerjati imen datotek %s in %s" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" +"Izpis informacij o DATOTEKAH (privzeto vse datoteke v trenutnem imeniku),\n" +"razvr¹èene po abecedi, èe ni podana nobena od izbir -cftuSUX ali --sort.\n" +"\n" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" +" -a, --all tudi imena, ki se zaènejo s piko\n" +" -A, --almost-all tudi imena, ki se zaènejo s piko, a brez . " +"in ..\n" +" --author izpis avtorja datoteke\n" +" -b, --escape izpis oktalne kode za krmilne znake\n" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" +" --block-size=VELIKOST merimo v VELIKOST zlogov velikih blokih\n" +" -B, --ignore-backups ne izpisujemo varnostnih kopij, ki se konèajo z " +"~\n" +" -c razvrstimo po datumu zadnje spremembe;\n" +" skupaj z -lt: prika¾e èas zadnje spremembe " +"stanja\n" +" (ctime) in uredi po njem;\n" +" skupaj z -l: prika¾emo ctime, uredimo po " +"imenih;\n" +" sicer: uredimo po ctime\n" + +#: src/ls.c:3784 +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" +" -C imena izpi¹emo v stolpcih\n" +" --color[=KDAJ] kdaj se uporabijo barve za oznaèitev tipa " +"datoteke\n" +" Mo¾nosti so ,never`, ,always` in ,auto`\n" +" -d, --directory izpis imen imenika(-ov) namesto njihove " +"vsebine,\n" +" brez sledenja simbolnim povezavam\n" +" -D, --dired izpis primeren za naèin ,dired` v Emacsu\n" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" +" -f brez razvr¹èanja; omogoèi -aU, onemogoèi -lst\n" +" -F, --classify s pripono (*/=@|) oznaèimo tip datoteke\n" +" --format=BESEDA across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time pri dolgem izpisu celoten datum z uro\n" + +#: src/ls.c:3799 +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" +" -g kot -l, vendar brez izpisa lastnika\n" +" -G, --no-group brez izpisa skupine\n" +" -h, --human-readable velikost v èloveku umljivem zapisu (npr.1K 234M " +"2G)\n" +" --si podobno kot -h, vendar v bazi 1000 namesto " +"1024\n" +" -H, --dereference-command-line sledimo simbolnim povezavam v ukazni " +"vrstici\n" +" --dereference-command-line-symlink-to-dir\n" +" sledimo vsem simbolnim povezavam v ukazni " +"vrstici,\n" +" ki ka¾ejo na imenike\n" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" +" --indicator-style=BESEDA imenom datotek pripnemo indikator: BESEDA " +"sme\n" +" biti none (privzeto), classify (-F) ali\n" +" file-type (-p)\n" +" -i, --inode izpis indeksnega ¹tevila pri vsaki datoteki\n" +" -I, --ignore=VZOREC pri izpisu izpustimo imena, ki ustrezajo " +"VZORCU\n" +" -k isto kot --block-size=1024\n" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" +" -l dolga oblika izpisa\n" +" -L, --dereference izpis imen datotek, na katere ka¾ejo simbolne\n" +" povezave, namesto simbolnih povezav\n" +" -m z vejicami loèena imena prek celotne ¹irine " +"vrstice\n" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" +" -n, --numeric-uid-gid ¹tevilène vrednosti UID in GID namesto imen\n" +" -N, --literal izpis imen v neobdelani obliki (npr. krmilnih\n" +" znakov ne obravnavamo posebno)\n" +" -o dolga oblika izpisa brez uporabni¹ke skupine\n" +" -p, --file-type tip datoteke oznaèen s pripono (mo¾nosti: /" +"=@|)\n" + +# ! INEXACT +#: src/ls.c:3831 +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -q, --hide-control-chars namesto krmilnih znakov izpi¹emo vpra¹aje (?)\n" +" --show-control-chars neobdelan izpis krmilnih znakov (privzeta " +"izbira,\n" +" razen pri ukazu ,ls` in izhodu na terminal)\n" +" -Q, --quote-name imena izpi¹emo v dvojnih narekovajih\n" +" --quoting-style=BESEDA slog izpisa; BESEDA je lahko literal, shell,\n" +" shell-always, c ali escape\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" +" -r, --reverse razvrstitev po obrnjenem vrstnem redu\n" +" -R, --recursive rekurziven izpis podimenikov\n" +" -s, --size izpis velikosti datotek (v blokih)\n" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" +" -S datoteke razvrstimo po velikosti\n" +" --sort=BESEDA urejanje po: priponi (BESEDA=extension), brez " +"(none),\n" +" èasu nastanka (time), verziji (version) ali " +"èasu \n" +" zadnjega dostopa (atime, access, use)\n" +" --time=BESEDA namesto èasa zadnje spremembe prika¾emo èas " +"nastanka\n" +" (BESEDA=ctime ali status) ali èas zadnjega " +"dostopa\n" +" (atime, access ali use); skupaj z izbiro --" +"sort\n" +" tudi uredimo po izbranem èasu\n" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" +" --time-style=BESEDA èas prika¾emo glede na slog, podan z BESEDO:\n" +" full-iso, iso, locale, posix-iso, +FORMAT\n" +" FORMAT tolmaèimo kot pri ukazu ,date`; èe je\n" +" FORMAT enak FORMAT1FORMAT2, " +"velja\n" +" prvi za stare datoteke, drugi pa za nove;\n" +" èe se BESEDA zaène s predpono ,posix-`, " +"velja\n" +" podani slog samo izven krajevnega okolja " +"POSIX\n" +" -t ureditev po datumu zadnje modifikacije\n" +" -T, --tabsize=STOLPCEV tabulator nastavljen na STOLPCEV namesto na 8\n" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" +" -u ureditev po datumu zadnjega dostopa;\n" +" skupaj z -l: poka¾i datum zadnjega dostopa\n" +" -U brez urejanja; kot so v imeniku\n" +" -v urejanje po ¹tevilki razlièice\n" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" +" -w, --width=STOLPCEV ¹irina zaslova STOLPCEV namesto trenutne " +"vrednosti\n" +" -x izpis urejen v vrstice namesto v stolpce\n" +" -X abecedna ureditev po priponah\n" +" -1 izpis po eno datoteko v vrstici\n" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" +"\n" +"Privzeto obna¹anje je, da se barve ne uporabljajo za oznaèevanje tipa\n" +"datoteke. To je enakovredno izbiri --color=none. Izbira --color brez\n" +"argumenta KDAJ je enakovredna --color=always. Pri izbiri --color=auto\n" +"se barve uporabijo samo, kadar je standardni izhod terminal (tty).\n" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "Ulrich Drepper in Scott Miller" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"Uporaba: %s [IZBIRA] [DATOTEKA]...\n" +" ali: %s [IZBIRA] --check [DATOTEKA]\n" +"Izpi¹emo ali preverimo nadzorne vsote %s (%d-bitne).\n" +"Èe DATOTEKA ni podana, ali èe je enaka -, beremo s standardnega vhoda.\n" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" +"\n" +" -b, --binary datoteke beremo v binarnem naèinu (privzeto v\n" +" okoljih DOS/Windows)\n" +" -c, --check izraèunane nadzorne vsote %s primerjamo z " +"vrednostmi\n" +" v navedeni datoteki\n" +" -t, --text datoteke beremo v besedilnem naèinu (privzeto)\n" +"\n" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" +"Naslednji dve izbiri sta uporabni le pri preverjanju nadzornih vsot:\n" +" --status brez izpisa, izhodna statusna koda ka¾e uspeh\n" +" -w, --warn z opozorili pri nepravilno oblikovanih vrsticah\n" +" z nadzornimi vsotami MD5\n" +"\n" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" +"\n" +"Izraèun nadzornih vsot je opisan v %s. Pri preverjanju mora biti datoteka\n" +"z vrednostmi v enaki obliki kot izpis programa. Privzet naèin je izpis\n" +"vrstice z nadzorno vsoto, statusnim znakom (,*` za binarne, , ` za " +"besedilne\n" +"datoteke) in imenom DATOTEKE, za katero je bila izraèunana nadzorna vsota.\n" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "%s: %lu: nepravilno oblikovana vrstica z nadzorno vsoto %s" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "%s: NAPAKA pri odpiranju ali branju\n" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "NAPAKA" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "V REDU" + +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%s: napaka pri branju" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "%s: nobene pravilno oblikovane vrstice z nadzorno vsoto %s ni najti" + +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "OPOZORILO: %d od %d navedenih %s se ne da prebrati" + +#: src/md5sum.c:473 +msgid "file" +msgstr "na¹tete datoteke" + +#: src/md5sum.c:473 +msgid "files" +msgstr "na¹tetih datotek" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "OPOZORILO: %d od %d %s se NE ujema." + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "izraèunane nadzorne vsote" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "izraèunanih nadzornih vsot" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" +"izbiri --binary in --text nista smiselni pri preverjanju nadzornih vsot" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "izbiri --string in --check se medsebojno izkljuèujeta" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "izbira --status je smiselna samo pri preverjanju nadzornih vsot" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "izbira --warn je smiselna samo pri preverjanju nadzornih vsot" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "pri izbiri --string ne sme biti podana nobena datoteka" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "pri izbiri --check sme biti doloèen samo en argument" + +#: src/mkdir.c:61 +#, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "Uporaba: %s [IZBIRA] IMENIK...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" +"Ustvari IMENIK (ali veè imenikov), èe ta ¹e ne obstaja.\n" +"\n" + +#: src/mkdir.c:69 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +" -m, --mode=ZA©ÈITA nastavi za¹èito (kot pri chmod) namesto privzete\n" +" rwxrwxrwx - umask\n" +" -p, --parents brez opozorila èe imenik obstaja; po potrebi ustvari\n" +" ¹e star¹evske imenike\n" +" -v, --verbose z obvestilom o vsakem ustvarjenem imeniku\n" + +#: src/mkdir.c:113 +#, c-format +msgid "created directory %s" +msgstr "ustvarjen imenik %s" + +#: src/mkdir.c:190 +#, c-format +msgid "cannot set permissions of directory %s" +msgstr "ni mogoèe spremeniti dovoljenj za imenik %s" + +#: src/mkfifo.c:55 +#, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "Uporaba: %s [IZBIRA] IME...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" +"Ustvarimo poimenovano cev (FIFO) z navedenim IMENOM.\n" +"\n" + +#: src/mkfifo.c:63 src/mknod.c:64 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" +" -m, --mode=ZA©ÈITA nastavi za¹èito (kot pri chmod) namesto a=rw - umask\n" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "datoteke FIFO niso podprte" + +#: src/mkfifo.c:123 src/mknod.c:127 +msgid "invalid mode" +msgstr "napaèna za¹èita" + +#: src/mkfifo.c:142 +#, c-format +msgid "cannot set permissions of fifo %s" +msgstr "ni mogoèe spremeniti dovoljenj za FIFO %s" + +#: src/mknod.c:55 +#, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "Uporaba: %s [IZBIRA]... IME TIP [GLAVNO POMO®NO]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" +"Ustvarimo posebno datoteko navedenega TIPA z navedenim IMENOM.\n" +"\n" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" +"\n" +"GLAVNO in POMO®NO ¹tevilo moramo vedno navesti za TIP b, c ali u, ne smemo " +"pa\n" +"ju navesti pri TIPU p. Èe se GLAVNO ali POMO®NO ¹tevilo zaène z 0x ali 0X, " +"se\n" +"ga tolmaèi kot ¹estnajsti¹ko ¹tevilo; èe se zaène z vodilno nièko, kot " +"osmi¹ko,\n" +"sicer pa kot deseti¹ko ¹tevilo. TIP je lahko:\n" + +# ! INEXACT +#: src/mknod.c:76 +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"\n" +" b ustvarimo bloèno enoto (z medpomnilnikom)\n" +" c, u ustvarimo znakovno enoto (brez medpomnilnika)\n" +" p ustvarimo FIFO\n" + +#: src/mknod.c:141 +msgid "wrong number of arguments" +msgstr "napaèno ¹tevilo argumentov" + +#: src/mknod.c:153 +msgid "block special files not supported" +msgstr "bloène enote niso podprte" + +#: src/mknod.c:162 +msgid "character special files not supported" +msgstr "znakovne enote niso podprte" + +#: src/mknod.c:171 +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" +"pri ustvarjanju posebnih datotek morata biti podani glavno in pomo¾no\n" +"¹tevilo" + +#: src/mknod.c:186 +#, c-format +msgid "invalid major device number %s" +msgstr "neveljavno GLAVNO ¹tevilo enote %s" + +#: src/mknod.c:191 +#, c-format +msgid "invalid minor device number %s" +msgstr "neveljavno POMO®NO ¹tevilo enote %s" + +#: src/mknod.c:196 +#, c-format +msgid "invalid device %s %s" +msgstr "neveljavna enota %s %s" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "niti glavno niti pomo¾no ¹tevilo ne sme biti podano za FIFO" + +#: src/mknod.c:231 +#, c-format +msgid "cannot set permissions of %s" +msgstr "ni mogoèe nastaviti dovoljenj za %s" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "Mike Parker, David MacKenzie in Jim Meyering" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Preimenujemo IZVOR v CILJ, ali veè IZVOROV v IMENIK.\n" +"\n" + +# ! INEXACT +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" +" --backup[=TIP] pred pisanjem prek obstojeèe ciljne " +"datoteke \n" +" izdelamo varnostno kopijo podanega TIPA\n" +" -b enako kot --backup, vendar ne sprejema " +"argumenta\n" +" -f, --force brez vpra¹anj odstrani obstojeèe CILJE\n" +" -i, --interactive zahtevaj potrditev pred pisanjem prek " +"obstojeèe\n" +" ciljne datoteko\n" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" +" --reply={yes,no,query} doloèimo, kako ravnamo s pozivnikom ob\n" +" obstojeèih ciljnih datotekah\n" +" --strip-trailing-slashes odstrani zakljuène po¹evnice iz vseh " +"podanih\n" +" IZVOROV\n" +" -S, --suffix=PRIPONA izrecno navedena PRIPONA varnostnih kopij\n" + +#: src/mv.c:339 +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +" --target-directory=IMENIK vse IZVORE premakni v navedeni IMENIK\n" +" -u, --update datoteko premakni samo, èe je novej¹a od\n" +" obstojeèe ciljne ali èe ciljna ne obstaja\n" +" -v, --verbose z razlago poteka\n" + +#: src/mv.c:467 +#, c-format +msgid "specified target, %s is not a directory" +msgstr "navedeni cilj %s ni imenik" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "pri premikanju veèih datotek mora biti zadnji argument imenik" + +#: src/nice.c:67 +#, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "Uporaba: %s [IZBIRA]... [UKAZ [ARGUMENT]...]\n" + +#: src/nice.c:68 +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" +"Po¾enemo UKAZ s spremenjeno prioriteto izvajanja.\n" +"Èe UKAZ ni podan, izpi¹emo trenutno raven prioritete. Privzeta vrednost za\n" +"POPRAVEK je 10. Vrednosti prioritete so med -20 (najvi¹ja) in 19 " +"(najni¾ja).\n" +"\n" +" -n, --adjustment=POPRAVEK poveèaj raven za POPRAVEK\n" + +#: src/nice.c:109 src/nice.c:122 +#, c-format +msgid "invalid option `%s'" +msgstr "neveljavna izbira ,%s`" + +#: src/nice.c:147 +#, c-format +msgid "invalid priority `%s'" +msgstr "neveljavna prioriteta ,%s`" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "ob podanem popravku ravni moramo podati tudi ukaz" + +#: src/nice.c:178 src/nice.c:187 +msgid "cannot get priority" +msgstr "ni mo¾no izvedeti prioritete" + +#: src/nice.c:192 +msgid "cannot set priority" +msgstr "prioritete ni mogoèe nastaviti" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "Scott Bartram in David MacKenzie" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Vsako od DATOTEK prepi¹emo na standardni izhod in spotoma o¹tevilèimo " +"vrstice.\n" +"Èe DATOTEKA ni podana, ali èe je enaka -, beremo s standardnega vhoda.\n" +"\n" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" +" -b, --body-numbering=SLOG uporabi SLOG pri o¹tevilèenju vrstic " +"telesa\n" +" -d, --section-delimiter=CC uporabi CC pri loèitvi logiènih strani\n" +" -f, --footer-numbering=SLOG uporabi SLOG pri o¹tevilèenju zno¾ja " +"strani\n" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" +" -h, --header-numbering=SLOG uporabi SLOG pri o¹tevilèenju zglavja " +"strani\n" +" -i, --page-increment=©TEVILO ¹tevilke vrstic inkrementiraj po ©TEVILO\n" +" -l, --join-blank-lines=©TEVILO skupino ©TEVILA praznih vrstic ¹tej kot " +"eno\n" +" -n, --number-format=OBLIKA ¹tevilke vrstic vrini glede na OBLIKO\n" +" -p, --no-renumber o¹tevilèenje vrstic naj teèe prek log. " +"strani\n" +" -s, --number-separator=NIZ pripni NIZ (mo¾ni) ¹tevilki vrstice\n" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" +" -v, --first-page=©TEVILO ¹tevilka prve vrstice na novi logièni " +"strani\n" +" -w, --number-width=©TEVILO ©TEVILO znakov ¹irine za o¹tevilèenje\n" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" +"\n" +"Privzete so izbire -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC sta dva " +"loèitvena\n" +"znaka za loèevanje logiènih strani; èe je drugi znak izpu¹èen, se " +"privzame :.\n" +"Uporabite \\\\\\\\ za \\\\. SLOG je nekaj od na¹tetega:\n" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" +"\n" +" a o¹tevilèi vse vrstice\n" +" t o¹tevilèi samo polne vrstice, praznih ne\n" +" n ne o¹tevilèi nobenih vrstic\n" +" pREGIZR o¹tevilèi samo vrstice, ki se ujemajo z regularnim izrazom " +"REGIZR\n" +"\n" +"OBLIKA je nekaj od na¹tetega:\n" +"\n" +" ln levo poravnano, brez vodilnih nièel\n" +" rn desno poravnano, brez vodilnih nièel\n" +" rz desno poravnano, z vodilnimi nièlami\n" + +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "neveljavna zaèetna ¹tevilka vrstice: ,%s`" + +#: src/nl.c:514 +#, c-format +msgid "invalid line number increment: `%s'" +msgstr "neveljaven vrstièni inkrement: ,%s`" + +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "neveljavno ¹tevilo praznih vrstic: ,%s`" + +#: src/nl.c:541 +#, c-format +msgid "invalid line number field width: `%s'" +msgstr "neveljavna ¹irina polja s ¹tevilko vrstice: ,%s`" + +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"Uporaba: %s [IZBIRA]... [DATOTEKA]...\n" +" ali: %s --traditional [DATOTEKA] [[+]ODMIK [[+]OZNAKA]]\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"\n" +"Na standardni izhod zapi¹emo enoznaèno predstavitev DATOTEKE, privzeto " +"osmi¹ki\n" +"zapis bajtov. Èe DATOTEKA ni podana ali je enaka -, beremo s standardnega " +"vhoda.\n" +"\n" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "Vsi argumenti pri dolgi obliki izbire so obvezni tudi pri kratki.\n" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" +" -A, --address-radix=OSNOVA OSNOVA pri izpisu odmikov v datoteki (doxn)\n" +" -j, --skip-bytes=©TEVILO pri vsaki datoteki preskoèimo prvih ©TEVILO " +"bajtov\n" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" +" -N, --read-bytes=©TEVILO izpis omejimo na ©TEVILO bajtov v vsaki " +"datoteki\n" +" -s, --strings[=©TEVILO] zaporedje, dolgo vsaj ©TEVILO bajtov, " +"izpi¹emo\n" +" kot niz\n" +" -t, --format=TIP izberemo obliko ali oblike izpisov\n" +" -v, --output-duplicates ne uporabimo * za oznako izpu¹èenih vrstic\n" +" -w, --width[=©TEVILO] v vsaki vrstici izpi¹emo ©TEVILO bajtov\n" +" --traditional sprejemamo argumente v tradicionalni obliki\n" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" +"\n" +"Doloèila v tradicionalni obliki lahko kombiniramo in se sestavljajo:\n" +" -a isto kot -t a, neizpisljive znake poimenujemo s kraticami\n" +" -b isto kot -t oC, osmi¹ki izpis bajtov\n" +" -c isto kot -t c, neizpisljive znake uvedemo z nagibnico\n" +" -d isto kot -t u2, deseti¹ki izpis dvobajtnih nepredznaèenih celih " +"¹tevil\n" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" +" -f isto kot -t fF, izpis ¹tevil s plavajoèo vejico\n" +" -h isto kot -t x2, ¹estnajsti¹ki izpis dvobajtnih celih ¹tevil\n" +" -i isto kot -t d2, deseti¹ki izpis dvobajtnih predznaèenih celih ¹tevil\n" +" -l isto kot -t d4, deseti¹ki izpis ¹tiribajtnih predznaèenih celih " +"¹tevil\n" +" -o isto kot -t o2, osmi¹ki izpis dvobajtnih celih ¹tevil\n" +" -x isto kot -t x2, ¹estnajsti¹ki izpis dvobajtnih celih ¹tevil\n" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" +"\n" +"Pri stari skladnji (druga oblika klica) pomeni ODMIK izbiro -j ODMIK.\n" +"OZNAKA je psevdonaslov prvega izpisanega bajta in se pri¹teje odmiku pri\n" +"izpisu. Pri ODMIKU in OZNAKI predpona 0x ali 0X naznanja ¹estnajsti¹ki " +"zapis.\n" +"Pripone so lahko . za osmi¹ki zapis ali b za mno¾enje s 512.\n" +"\n" +"TIP je lahko eno ali veè doloèil s seznama:\n" +"\n" +" a poimenovani znaki; neizpisljivi znaki poimenovani s " +"kraticami\n" +" c znaki; neizpisljivi znaki uvedeni z nagibnico\n" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" +" d[VELIKOST] predznaèeno deseti¹ko celo ¹tevilo dol¾ine VELIKOST bajtov\n" +" f[VELIKOST] ¹tevilo v plavajoèi vejici dol¾ine VELIKOST bajtov\n" +" o[VELIKOST] osmi¹ko ¹tevilo dol¾ine VELIKOST bajtov\n" +" u[VELIKOST] nepredznaèeno deseti¹ko celo ¹tevilo dol¾ine VELIKOST bajtov\n" +" x[VELIKOST] ¹estnajsti¹ko ¹tevilo dol¾ine VELIKOST bajtov\n" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" +"\n" +"VELIKOST je ¹tevilka. Za TIPE d,o,u ali x je VELIKOST lahko tudi C, kar\n" +"pomeni dol¾ino tipa char, S (dol¾ina tipa short), I (dol¾ina tipa int) ali\n" +"L (dol¾ina tipa long). Èe je TIP f, je lahko VELIKOST tudi F za dol¾ino\n" +"tipa float, D (dol¾ina tipa double) ali L (dol¾ina tipa long double).\n" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" +"\n" +"OSNOVA je lahko d (deseti¹ka), o (osmi¹ka), x (¹estnajsti¹ka) ali n\n" +"(nobena). Èe ima ©TEVILO predpono 0x ali 0X, se tolmaèi kot\n" +"¹estnajsti¹ka vrednost. Pripona b pomeni mno¾enje s 512, pripona k\n" +"mno¾enje s 1024, pripona m mno¾enje s 1048576. Pripona z pri\n" +"kateremkoli tipu doda prikaz izpisljivih znakov na koncu vsake\n" +"vrstice. " + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" +"Izbira --string brez podanega ¹tevila privzame vrednost 3. Izbira\n" +"--width brez podanega ¹tevila privzame vrednost 32. Privzete vrednosti, ki\n" +"jih uporablja program ,od`, so: -A o -t d2 -w 16.\n" + +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "neveljaven tip ,%s`" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" +"neveljaven tip ,%s`;\n" +"ta sistem ne omogoèa %lu-bajtnega celo¹tevilènega tipa" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" +"neveljaven tip ,%s`;\n" +"ta sistem ne omogoèa %lu-bajtnega zapisa v plavajoèi vejici" + +#: src/od.c:917 +#, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "neveljaven znak ,%c` v oznaki tipa ,%s`" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "ni mogoèe prek konca kombiniranega vhoda" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "odmik v starem slogu" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "neveljavna osnova naslovov ,%c`; veljavne so mo¾nosti d, o, x in n" + +#: src/od.c:1717 +msgid "skip argument" +msgstr "preskoèi argument" + +#: src/od.c:1725 +msgid "limit argument" +msgstr "omeji argument" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "najmanj¹a dol¾ina niza" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "%s je preveliko" + +#: src/od.c:1804 +msgid "width specification" +msgstr "doloèilo ¹irine" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "tip ne sme biti doloèen, kadar izna¹amo nize" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "neveljaven drugi operand v zdru¾ljivostnem naèinu ,%s`" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "v zdru¾ljivostnem naèinu morata biti zadnja dva argumenta odmika" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "zdru¾ljivostni naèin podpira najveè tri argumente" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "opozorilo: neveljavna ¹irina %lu; namesto nje jemljemo %d" + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "%d: fmt=\"%s\" width?%d\n" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "David M. Ihnat in David MacKenzie" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "standardni vhod je zaprt" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Vsaki od vrstic iz prve DATOTEKE s tabulatorjem na konec pridru¾imo " +"istole¾no\n" +"vrstico iz druge DATOTEKE, in tako naprej do konca seznama DATOTEK. Èe\n" +"DATOTEKA ni podana ali je enaka -, beremo s standardnega vhoda.\n" +"\n" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" +" -d, --delimiters=SEZNAM za loèitev uporabimo znake s SEZNAMA namesto TAB\n" +" -s, --serial datoteke zdru¾ujemo zaporedno namesto vzporedno\n" + +#: src/pathchk.c:146 +#, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "Uporaba: %s [IZBIRA]... IME...\n" + +#: src/pathchk.c:147 +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" +"Diagnosticiramo neprenosljive konstrukte v IMENU.\n" +"\n" +" -p, --portability preveri za vse sisteme POSIX, ne le za tega\n" + +#: src/pathchk.c:237 +#, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "pot ,%s` vsebuje neprenosljiv znak ,%c`" + +#: src/pathchk.c:257 +#, c-format +msgid "`%s' is not a directory" +msgstr ",%s` ni imenik" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "imenik ,%s` ni berljiv" + +#: src/pathchk.c:355 +#, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "dol¾ina imena ,%s` je %ld; presega mejo %ld" + +#: src/pathchk.c:381 +#, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "dol¾ina poti ,%s` je %d; presega mejo %ld" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "Joseph Arceneaux, David MacKenzie in Kaveh Ghazi" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "Uporabni¹ko ime: " + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "Pravo ime: " + +#: src/pinky.c:298 +msgid "???\n" +msgstr "???\n" + +#: src/pinky.c:318 +msgid "Directory: " +msgstr "Imenik: " + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "Ukazna lupina: " + +#: src/pinky.c:341 +msgid "Project: " +msgstr "Projekt: " + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "Naèrt:\n" + +#: src/pinky.c:386 +msgid "Login" +msgstr "Login" + +#: src/pinky.c:388 +msgid "Name" +msgstr " Ime" + +#: src/pinky.c:389 +msgid " TTY" +msgstr " TTY" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "Neak" + +#: src/pinky.c:392 +msgid "When" +msgstr "Kdaj" + +#: src/pinky.c:395 +msgid "Where" +msgstr "Kje" + +#: src/pinky.c:469 +#, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "Uporaba: %s [IZBIRA]... [UPORABNIK]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" +"\n" +" -l dolga oblika izpisa\n" +" -b v dolgi obliki izpusti domaèi imenik in ukazno lupino\n" +" -h v dolgi obliki izpusti uporabnikovo datoteko .project\n" +" -p v dolgi obliki izpusti uporabnikovo datoteko .plan\n" +" -s kratka oblika izpisa (privzeto)\n" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" +" -f v kratki obliki izpusti legendo k stolpcem\n" +" -w v kratki obliki izpusti polno ime uporabnika\n" +" -i v kratki obliki izpusti polno ime uporabnika in ime " +"raèunalnika\n" +" -q v kratki obliki izpusti polno ime uporabnika, ime " +"raèunalnika\n" +" in èas neaktivnosti\n" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" +"\n" +"Poenostavljeni program ,finger`: izpis informacij o uporbnikih.\n" +"Datoteka UTMP bo %s.\n" + +#: src/pinky.c:574 +msgid "no username specified; at least one must be specified when using -l" +msgstr "uporabni¹ko ime ni podano; pri izbiri -l mora biti podano vsaj eno" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "Pete TerMaat in Roland Huebner" + +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr ",--pages` neveljavni obseg ¹tevilk strani: ,%s`" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr ",--pages` neveljavna zaèetna ¹tevilka strani: ,%s`" + +#: src/pr.c:829 +#, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr ",--pages` neveljavna konèna ¹tevilka strani: ,%s`" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr ",--pages` zaèetna ¹tevilka strani je vi¹ja od konène" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr ",--pages=PRVA_STRAN[:ZADNJA_STRAN]`: manjkajoèi argument" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr ",--columns=STOLPCI` neveljavno ¹tevilo stolpcev: ,%s`" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr ",-l DOL®INA_STRANI` nedovoljeno ¹tevilo vrstic: ,%s`" + +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr ",-N ©TEVILKA` nedovoljena ¹tevilka zaèetne vrstice: ,%s`" + +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr ",-o ROB` nedovoljen odmik od levega roba: ,%s`" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr ",-w ©IRINA_STRANI` neveljavno ¹tevilo znakov: ,%s`" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr ",-W ©IRINA_STRANI` neveljavno ¹tevilo znakov: ,%s`" + +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "%b %e %H:%M %Y" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "Pri vzporednem izpisu ni mogoèe doloèiti ¹tevila stolpcev" + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "Mo¾nosti izpisa poèez in vzporednega izpisa se izkljuèujeta" + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr ",-%c` dodatni znaki ali neveljavno ¹tevilo v argumentu: ,%s`" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "¹irina strani premajhna" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "zaèetna stran je vi¹ja od celotnega ¹tevila strani: ,%d`" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "Str. %d" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" +"O¹tevilèimo strani ali poravnamo besedilo v DATOTEKI v stolpce za izpis.\n" +"\n" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" +" +PRVA_STRAN[:ZADNJA_STRAN], --pages=PRVA_STRAN[:ZADNJA_STRAN]\n" +" tiskanje zaènemo na PRVI in konèamo na ZADNJI STRANI\n" +" -STOLPCI, --columns=STOLPCI\n" +" izpis v danem ¹tevilu STOLPCEV, ki teèejo od zgoraj " +"navzdol\n" +" razen èe je izbrano -a. ©tevilo vrstic v stolpcih na " +"strani\n" +" je uravnote¾eno.\n" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" +" -a, --across skupaj s -STOLPCI; stolpce tiskamo poprek prek strani\n" +" namesto navzdol.\n" +" -c, --show-control-chars\n" +" uporabimo zapis ^G in osmi¹ki zapis z uvodno nagibnico\n" +" -d, --double-space\n" +" izpis z dvojnim razmakom\n" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" +" -D, --date-format=OBLIKA\n" +" izpis datuma v glavi v navedeni OBLIKI\n" +" -e[ZNAK[©IRINA]], --expand-tabs[=ZNAK[©IRINA]]\n" +" ZNAKE (privzeto TAB) na vhodu raz¹irimo v tabulator\n" +" dane ©IRINE (privzeto 8)\n" +" -F, -f, --form-feed\n" +" strani loèimo z znaki za skok na novo stran namesto s\n" +" praznimi vrsticami (s 3-vrstiènim zglavjem z izbiro -F\n" +" ali 5-vrstiènim zglavjem in zno¾jem brez -F)\n" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" +" -h ZGLAVJE, --header=ZGLAVJE\n" +" uporabimo navedeno osredinjeno ZGLAVJE namesto imena\n" +" datoteke; -h \\\"\\\" izpi¹e prazno vrstica; ne " +"uporabljajte -h\\\"\\\"\n" +" -i[ZNAK[©IRINA]], --output-tabs[=ZNAK[©IRINA]]\n" +" presledke skrèimo v ZNAK (privzeto TAB) do ©IRINE\n" +" tabulatorja (privzeto 8)\n" +" -J, --join-lines zdru¾ujemo cele vrstice, brez rezanja vrstic z -W, brez\n" +" poravnave stolpcev, --sep-string[=NIZ] nastavi loèila\n" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" +" -l DOL®INA_STRANI, --length=DOL®INA_STRANI\n" +" doloèimo DOL®INO STRANI, v vrsticah (privzeto 66)\n" +" (privzeto ¹tevilo vrstic besedila je 56, z -F 63)\n" +" -m, --merge datoteke izpisujemo vzporedno, po eno v stolpec. " +"Predolge\n" +" vrstice pore¾emo, razen z izbiro -J, kjer zdru¾imo " +"celotne\n" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" +" -n[LOÈ[©TEVILO]], --number-lines[=LOÈ[©TEVILO]]\n" +" vrstice o¹tevilèimo, ¹irina polja je ©TEVILO (privzeto " +"5)\n" +" znakov, sledi LOÈ (privzeto TAB). O¹tevilèenje gre od " +"prve\n" +" vrstice vhodne datoteke.\n" +" -N ©TEVILO, --first-line-number=©TEVILO\n" +" o¹tevilèenje zaènemo z navedenim ©TEVILOM v prvi vrstici " +"na\n" +" prvi natisnjeni strani (glej +PRVA_STRAN)\n" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" +" -o ROB, --indent=ROB\n" +" vrstice zamaknemo za ROB znakov od levega roba; ne " +"vpliva\n" +" na -w in -W; ROB se pri¹teje ©IRINI_STRANI.\n" +" -r, --no-file-warnings\n" +" brez opozoril, kadar ni mogoèe odpreti datoteke\n" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" +" -s[ZNAK], --separator[=ZNAK]\n" +" stolpce loèimo z navedenim ZNAKOM (privzeto TAB) namesto " +"s\n" +" presledki.\n" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr " -SNIZ, --sep-string[=NIZ]\n" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" +" stolpce loèimo z navedenim NIZOM\n" +" Brez -S: privzeto loèilo (TAB pri -J, presledki sicer),\n" +" brez uèinka na nastavitve stolpcev\n" +" -t, --omit-header brez zglavja in repa\n" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" +" -T, --omit-pagination\n" +" brez zglavja in repa; brez o¹tevilèenja strani, ki jih\n" +" povzroèijo znaki za skok na novo stran v vhodni " +"datoteki\n" +" -v, --show-nonprinting\n" +" z uporabo osmi¹kih vrednosti z ube¾nimi zaporedji\n" +" -w ©IRINA_STRANI, --width=©IRINA_STRANI\n" +" ©IRINO STRANI nastavimo na dano ¹tevilo znakov (privz. " +"72);\n" +" samo besedilo v veè stolpcih; -s[znak] izklopi\n" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" +" -W ©IRINA_STRANI, --page-width=©IRINA_STRANI\n" +" ©IRINO STRANI nastavimo na dano ¹tevilo znakov (privz. " +"72);\n" +" predolge vrstice pore¾emo razen z izbiro -J; ne vpliva " +"na\n" +" izbiri -s in -S\n" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" +"\n" +"V dveh primerih se privzame -T: pri izbiri -l NN, kadar NN <= 10; ter pri\n" +"izbiri -F, kadar je NN <= 3. Kadar DATOTEKA ni podana ali je enaka -, beremo " +"s\n" +"standardnega vhoda.\n" + +#: src/printenv.c:43 +msgid "David MacKenzie and Richard Mlynarik" +msgstr "David MacKenzie in Richard Mlynarik" + +#: src/printenv.c:63 +#, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" +"Uporaba: %s [SPREMENLJIVKA]...\n" +" ali: %s IZBIRA\n" +"Èe SPREMENLJIVKA ni podana, izpi¹i vrednosti vseh spremenljivke.\n" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "opozorilo: %s: znak(i), ki sledijo znakovni konstanti so ignorirani" + +#: src/printf.c:100 +#, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"Uporaba: %s OBLIKA [ARGUMENT]...\n" +" ali: %s IZBIRA\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" +"Izpi¹emo ARGUMENT v navedeni OBLIKI.\n" +"\n" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" +"\n" +"OBLIKA nazdira izpis enako kot pri funkciji printf v C. Posebni znaki so:\n" +"\n" +" \\\" dvojni narekovaj\n" +" \\0NNN znak z osmi¹ko kodo NNN (0 do 3 ¹tevke)\n" +" \\\\ nagibnica\n" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" +" \\a zvonèek (BEL)\n" +" \\b pomik za znak nazaj\n" +" \\c ne izpisuj nièesar veè\n" +" \\f skok na novo stran\n" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\n skok v novo vrstico\n" +" \\r vrnitev na zaèetek vrstice\n" +" \\t horizontalni tabulator\n" +" \\v vertikalni tabulator\n" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" +" \\xNN znak s ¹estnajsti¹ko kodo NN (1 ali 2 ¹tevki)\n" +" \\uNNNN znak s ¹estnajsti¹ko kodo NNNN (4 ¹tevke)\n" +" \\UNNNNNNNN znak s ¹estnajsti¹ko kodo NNNNNNNN (8 ¹tevk)\n" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" +" %%%% znak za odstotek\n" +" %b ARGUMENT kot niz z raztolmaèenimi znaki, ki jih uvajajo nagibnice\n" +"\n" +"Vsa oblikovna doloèila iz C, ki se konèajo na diouxXfeEgGcs so\n" +"raztolmaèena, èe je ARGUMENT prej pretvorjen v pravilen podatkovni\n" +"tip. Spremenljive ¹irine se obravnavajo pravilno.\n" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "%s: prièakovana je ¹tevilèna vrednost" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "%s: vrednost nepopolno pretvorjena" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "v ube¾nem zaporedju manjka ¹estnajsti¹ko ¹tevilo" + +#: src/printf.c:292 +#, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "neveljavno univerzalno ime znaka \\%c%0*x" + +#: src/printf.c:472 +#, c-format +msgid "invalid field width: %s" +msgstr "neveljavna ¹irina polja: %s" + +#: src/printf.c:498 +#, c-format +msgid "invalid precision: %s" +msgstr "neveljavna natanènost: %s" + +#: src/printf.c:519 +#, c-format +msgid "%%%c: invalid directive" +msgstr "%%%c: neveljavna direktiva" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "Uporaba: %s oblika [argument...]\n" + +#: src/printf.c:594 +#, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "opozorilo: odveèni argumenti zaèen¹i s ,%s` so bili ignorirani" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "%s (za regularni izraz ,%s`)" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"Uporaba: %s [IZBIRA]... [VHOD]... (brez -G)\n" +" ali: %s -G [IZBIRA]... [VHOD [IZHOD]]\n" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" +"Izpis permutiranega kazala gesel v vhodnih datotekah, skupaj s kontekstom.\n" +"\n" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" +" -A, --auto-reference izpis samodejno generiranih vnosov\n" +" -C, --copyright izpis dovoljenja za uporabo, razmno¾evanje\n" +" in raz¹irjanje\n" +" -G, --traditional obna¹anje kot ,ptx` v sistemu System V\n" +" -F, --flag-truncation=NIZ za oznaèevanje okraj¹anih vrstic uporabi " +"NIZ\n" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" +" -M, --macro-name=NIZ uporabi podano ime makroukaza (privzeto ," +"xx`)\n" +" -O, --format=roff izpis v obliki stavnega jezika roff\n" +" -R, --right-side-refs sklici ob desnem robu (niso v¹teti v -w)\n" +" -S, --sentence-regexp=REGIZR za konce vrstic ali konce stavkov\n" +" -T, --format=tex izpis v obliki stavnega jezika tex\n" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" +" -W, --word-regexp=REGIZR uporabi REGIZR za lovljenje besed\n" +" -b, --break-file=DATOTEKA znake v podani DATOTEKI razlomi po besedah\n" +" -f, --ignore-case pri urejanju obravnavaj male in velike " +"èrke \n" +" enako\n" +" -g, --gap-size=©TEVILO ¹irina razmaka v znakih med polji v izpisu\n" +" -i, --ignore-file=DATOTEKA seznam prezrtih besed preberi iz DATOTEKE\n" +" -o, --only-file=FILE preberi le seznam besed iz navedene " +"DATOTEKE\n" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" +" -r, --references prvo polje v vsaki vrstici je sklic\n" +" -t, --typeset-mode - ni izvedeno -\n" +" -w, --width=©TEVILO ¹irina izhoda v znakih, brez sklicev\n" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" +"\n" +"Kadar DATOTEKA ni podana ali je enaka -, se bere standardni vhod. Privzeto\n" +"oznaèevanje okraj¹anih vrstic je ,-F /`.\n" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" +"Ta program je prosta programska oprema; lahko ga redistribuirate in/ali\n" +"spreminjate po pogojih, doloèenih v ,,GNU General Public License``, izdani\n" +"pri Free Software Foundation; 2. izdaja (ali novej¹a, èe razpolagate z " +"njo).\n" +"\n" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" +"Ta program se raz¹irja v upanju, da je koristen, vendar BREZ KAKR©NEGAKOLI\n" +"JAMSTVA, niti jamstev USTREZNOSTI ZA PRODAJO ali PRIMERNOSTI ZA UPORABO. Za\n" +"podrobnosti si oglejte ,,GNU General Public License``.\n" +"\n" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" +"Izvod ,,GNU General Public License`` bi moral biti prilo¾en temu programu;\n" +"èe ni, pi¹ite Free Software Foundation, Inc., 59 Temple Place - Suite 330,\n" +"Boston, MA 02111-1307, USA.\n" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" +"Izpi¹emo celotno pot trenutnega delovnega imenika.\n" +"\n" + +#: src/pwd.c:74 +msgid "ignoring non-option arguments" +msgstr "ne-izbirni argumenti so ignorirani" + +#: src/pwd.c:78 +msgid "cannot get current directory" +msgstr "trenutnega imenika ni mogoèe ugotoviti" + +# ! INEXACT +#: src/readlink.c:69 +#, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "Uporaba: %s [IZBIRA]... DATOTEKA\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" +"Izpi¹i cilj simbolne povezave na standardni izhod.\n" +"\n" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" +" -f, --canonicalize kanoniziran izpis vsake komponente vsake simbolne\n" +" povezave z rekurzivnim sledenjem povezav\n" +" -n, --no-newline brez izpisa vodilnih znakov za novo vrstico\n" +" -q, --quiet,\n" +" -s, --silent brez izpisa veèine poroèil o napakah\n" +" -v, --verbose z poroèili o napakah\n" + +#: src/remove.c:394 +#, c-format +msgid "cannot chdir from %s to .." +msgstr "sprememba imenika iz %s v .. ni mogoèa" + +#: src/remove.c:407 src/remove.c:488 +#, c-format +msgid "cannot lstat `.' in %s" +msgstr "klic lstat trenutnega imenika v %s ni mogoè" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "%s spremenjenih dev/ino" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, c-format +msgid "cannot lstat %s" +msgstr "statusa %s ni moè ugotoviti z lstat" + +#: src/remove.c:603 +#, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "%s: naj odstranimo imenik %s, ki je zavarovan proti pisanju? " + +# POZOR!!! Razisci, kaj je misljeno! +#: src/remove.c:604 +#, c-format +msgid "%s: descend into directory %s? " +msgstr "%s: naj se spustimo v podimenik %s? " + +#: src/remove.c:614 +#, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: naj odstranimo datokeko %s %s, ki je zavarovana proti pisanju? " + +#: src/remove.c:615 +#, c-format +msgid "%s: remove %s %s? " +msgstr "%s: naj odstranimo %s %s? " + +#: src/remove.c:639 +#, c-format +msgid "removed %s\n" +msgstr "odstranjena %s\n" + +#: src/remove.c:654 src/remove.c:1059 +#, c-format +msgid "removed directory: %s\n" +msgstr "odstranjen imenik: %s\n" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, c-format +msgid "cannot remove directory %s" +msgstr "imenika %s ni mogoèe odstraniti" + +#: src/remove.c:815 +#, c-format +msgid "cannot open directory %s" +msgstr "imenika %s ni mogoèe odpreti" + +#: src/remove.c:896 src/remove.c:1002 +#, c-format +msgid "cannot chdir from %s to %s" +msgstr "premik iz imenika %s v %s ni mogoè" + +#: src/remove.c:904 +#, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +"POZOR: Cirkularna struktura imenikov.\n" +"To skoraj gotovo pomeni resno napako v datoteènem sistemu.\n" +"OBVESTITE UPRAVITELJA SISTEMA.\n" +"Naslednja dva imenika imata isto ¹tevilo inode:\n" +" %s\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "ni mo¾no odstraniti imenikov ,.` ali ,..`" + +#: src/rm.c:60 +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "Paul Rubin, David MacKenzie, Richard Stallman in Jim Meyering" + +#: src/rm.c:99 src/touch.c:244 +#, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "Uporaba: %s [IZBIRA]... DATOTEKA...\n" + +#: src/rm.c:100 +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Odstranimo navedene DATOTEKE.\n" +"\n" +" -d, --directory brisanje imenikov, vkljuèno s polnimi (samo super-" +"user)\n" +" -f, --force brez opozoril o neobstojeèih datotekah, brez " +"vpra¹anj\n" +" -i, --interactive zahtevamo potrditev pred vsakim brisanjem\n" +" -r, -R, --recursive rekurzivno brisanje vsebine imenika s podimeniki " +"vred\n" +" -v, --verbose z razlago poteka\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" +"\n" +"Datoteko, katere ime se zaène z minusom (npr. ,-bla`) lahko pobri¹emo z " +"enim \n" +"od naslednjih dveh ukazov:\n" +" %s -- -bla\n" +"\n" +" %s ./-bla\n" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" +"\n" +"Vsebino datotek, izbrisanih z ukazom rm, je navadno mogoèe (èeravno ne\n" +"enostavno) rekonstruirati. Èe ¾elite to prepreèiti, razmislite o uporabi \n" +"ukaza shred.\n" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, c-format +msgid "removing directory, %s" +msgstr "bri¹emo imenik, %s" + +#: src/rmdir.c:146 +#, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "Uporaba: %s [IZBIRA]... IMENIK...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" +"Odstrani IMENIK ali IMENIKE, èe so prazni.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" nadaljujemo kljub napaki, èe je do te pri¹lo zgolj zato, " +"ker\n" +" kak¹en od navedenih imenikov ni prazen\n" + +#: src/rmdir.c:154 +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +" -p, --parents pobri¹emo tudi imenike nad navedenim, èe so prazni.\n" +" Zgled: ,rmdir -p a/b/c` naredi isto kot ,rmdir a/b/c a/b " +"a`\n" +" --verbose z diagnostiènim sporoèilom za vsak obdelan imenik\n" + +#: src/seq.c:82 +#, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"Uporaba: %s [IZBIRA]... ZADNJE\n" +" ali: %s [IZBIRA]... PRVO ZADNJE\n" +" ali: %s [IZBIRA]... PRVO KORAK ZADNJE\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" +"Izpi¹emo ¹tevila od PRVEGA do ZADNJEGA s podanim KORAKOM.\n" +"\n" +" -f, --format DOLOÈILO uporabi oblikovno DOLOÈILO kot v printf(3)\n" +" (privzeto: %g)\n" +" -s, --separator NIZ uporabi NIZ kot loèilo med ¹tevili (privzeto: " +"\\n)\n" +" -w, --equal-width polja dopolni do enake ¹irine z vodilnimi " +"nièlami\n" + +#: src/seq.c:96 +#, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" +"\n" +"Èe sta bodisi PRVO bodisi KORAK izpu¹èena, se zanju uporabi privzeta\n" +"vrednost 1. PRVO, KORAK in ZADNJE so tolmaèena kot ¹tevila s plavajoèo\n" +"vejico. KORAK mora biti pozitiven, èe je PRVO ¹tevilo manj¹e od\n" +"ZADNJEGA, sicer pa negativno. Èe je podano oblikovno DOLOÈILO, mora\n" +"vsebovati natanko eno od naslednjih oblik izpisa ¹tevil s plavajoèo\n" +"vejico: %e, %f ali %g. Njihov pomen je enak kot pri klicu printf.\n" + +#: src/seq.c:119 +#, c-format +msgid "invalid floating point argument: %s" +msgstr "argument ni neveljavno ¹tevilo v plavajoèi vejici: %s" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" +"Èe je zaèetna vrednost manj¹a kot meja, mora biti\n" +"korak negativen" + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" +"èe je zaèetna vrednost manj¹a kot meja, mora biti\n" +"korak pozitiven" + +#: src/seq.c:423 +#, c-format +msgid "invalid format string: `%s'" +msgstr "neveljavno oblikovno doloèilo: ,%s`" + +#: src/seq.c:445 +msgid "format string may not be specified when printing equal width strings" +msgstr "pri izpisu polj enake ¹irine ni dovoljeno podati oblikovnega doloèila" + +#: src/shred.c:160 +#, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "Uporaba: %s [IZBIRE]... DATOTEKA [...]\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" +"Vsebino navedene DATOTEKE unièimo tako, da prek nje veèkrat zapi¹emo\n" +"drugo vsebino.\n" +"\n" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" +" -f, --force po potrebi dovolimo pisanje na datoteko/enoto\n" +" -n, --iterations=N prek datoteke pi¹eno N-krat namesto privzetega (%d)\n" +" -s, --size=N unièimo podano ¹tevilo zlogov (dovoljene pripone K, M, " +"G...)\n" + +#: src/shred.c:174 +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" +" -u, --remove datoteko po unièenju vsebine odstranimo\n" +" -v, --verbose s prikazom napredka med delom\n" +" -x, --exact brez zaokro¾evanja velikosti datotek do polnega bloka\n" +" (privzeto za predmete, ki niso navadne datoteke)\n" +" -z, --zero na koncu prepi¹emo datoteko z nièlami, da prikrijemo " +"unièenje\n" +" - unièimo vsebino standardnega vhoda\n" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" +"\n" +"DATOTEKE zbri¹emo le, èe je podana izbira ,--remove`. Privzeto ne zbri¹emo\n" +"datoteke, kar je primerneje za delo z enotami (npr. /dev/hda). Pri delu z\n" +"navadnimi datotekami veèina uporablja izbiro ,--remove`.\n" +"\n" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" +"OPOZORILO: Delovanje programa shred temelji na predpostavki, da datoteèni\n" +"sistem pi¹e prek starih podatkov. Vsi tradicionalni datoteèni sistemi so\n" +"res taki, nekatere sodobne zasnove datoteènih sistemov pa ne. Program shred\n" +"na primer ne bo uèinkovit na naslednjih sistemih:\n" +"\n" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" +"* datoteèni sistemi z dnevnikom sprememb, kot jih uporabljata AIX in " +"Solaris\n" +" (tudi JFS, ReiserFS, XFS, Ext3 itn.)\n" +"\n" +"* datoteèni sistemi, ki zapisujejo redundantno informacijo in lahko \n" +" nadaljujejo z delom, èeprav vsa pisanja niso bila uspe¹na (RAID)\n" +"\n" +"* datoteèni sistemi, ki shranjujejo trenutne slike stanja diska, npr.\n" +" stre¾nik NFS podjetja Network Appliace\n" +"\n" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" +"* datoteèni sistemi, ki hranijo medpomnilnik na zaèasnih lokacijah, npr.\n" +" odjemniki NFS verzije 3\n" +"\n" +"* stisnjeni datoteèni sistemi\n" +"\n" +"Poleg tega lahko izvodi datoteke obstajajo tudi na varnostnih kopijah\n" +"in oddaljenih zrcalih. Teh izvodov ne moremo odstraniti in iz njih je\n" +"mogoèe rekonstruirati unièeno datoteko.\n" + +#: src/shred.c:808 +#, c-format +msgid "%s: cannot rewind" +msgstr "%s: ni mogoèe previti na zaèetek" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "%s: prehod %lu/%lu (%s)..." + +#: src/shred.c:868 +#, c-format +msgid "%s: error writing at offset %s" +msgstr "%s: napaka med pisanjem pri odmiku %s" + +#: src/shred.c:897 +#, c-format +msgid "%s: file too large" +msgstr "%s: datoteka prevelika" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "%s: prehod %lu/%lu (%s)...%s" + +#: src/shred.c:936 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "%s: prehod %lu/%lu (%s)...%s/%s %d%%" + +#: src/shred.c:1195 +#, c-format +msgid "%s: invalid file type" +msgstr "%s: neveljaven tip datoteke" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s: velikost datoteke negativna" + +#: src/shred.c:1265 +#, c-format +msgid "%s: error truncating" +msgstr "%s: napaka pri kraj¹anju" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "%s: ni mogoèe unièiti datoteke, v katero smemo le dodajati" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "%s: bri¹emo" + +#: src/shred.c:1412 +#, c-format +msgid "%s: renamed to %s" +msgstr "%s: preimenovano v %s" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s: odstranjeno" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "%s: ni mogoèe odstraniti" + +#: src/shred.c:1551 +#, c-format +msgid "%s: invalid number of passes" +msgstr "%s: neveljavno ¹tevilo prehodov" + +#: src/shred.c:1568 +#, c-format +msgid "%s: invalid file size" +msgstr "%s: neveljavna velikost datoteke" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "Jim Meyering in Paul Eggert" + +#: src/sleep.c:52 +#, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" +"Uporaba: %s ©TEVILO[PRIPONA]\n" +" ali: %s IZBIRA\n" +"\n" +"Premor za ©TEVILO sekund. PRIPONA je lahko ,s` za sekunde (privzeto),\n" +",m` za minute, ,h` za ure ali ,d` za dneve. Za razliko od veèine\n" +"drugih izvedb, ki zahtevajo, da je ©TEVILO celo ¹tevilo, je tu lahko\n" +"poljubno ¹tevilo v zapisu s plavajoèo vejico.\n" +"\n" + +#: src/sleep.c:155 +#, c-format +msgid "invalid time interval `%s'" +msgstr "neveljaven èasovni interval ,%s`" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "ure s stvarnim èasom ni moè prebrati" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "Mike Haertel in Paul Eggert" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" +"Vsebino vseh DATOTEK na vhodu zdru¾imo, uredimo, in izpi¹emo na standarni " +"izhod.\n" +"\n" +"Izbire pri urejanju:\n" +"\n" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" +" -b, --ignore-leading-blanks ne upo¹tevamo vodilnih presledkov v poljih,\n" +" po katerih urejamo\n" +" -d, --dictionary-order v kljuèih upo¹tevamo samo znake [a-zA-Z0-9 ]\n" +" -f , --ignore-case male in velike èrke so v kljuèih enakovredne\n" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" +" -g, --general-numeric-sort primerjamo po splo¹ni ¹tevilski vrednosti\n" +" -i, --ignore-nonprinting v kljuèih upo¹tevamo samo izpisljive znake\n" +" -M, --month-sort kljuèe urejamo: (neznano) < ,jan` < ... < ," +"dec`\n" +" -n, --numeric-sort primerjamo po ¹tevilski vrednosti nizov\n" +" -r, --reverse izpis v obrnjenem vrstnem redu\n" +"\n" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" +"Druge izbire:\n" +"\n" +" -c, --check èe je datoteka ¾e urejena, je ne urejamo znova\n" +" -k, --key=POZ1[,POZ2] kljuè se zaène v stolpcu POZ1 in konèa v " +"stolpcu\n" +" POZ2. Stolpci se ¹tejejo od 1 dalje.\n" +" -m, --merge ¾e urejene datoteke zdru¾imo brez ponovnega " +"urejanja\n" +" -o, --output=DATOTEKA izhod pi¹emo na DATOTEKO namesto na standardni " +"izhod\n" +" -s, --stable urejanje stabiliziramo z onemogoèenjem skrajnih\n" +" primerjav\n" +" -S, --buffer-size=VELIKOST doloèimo VELIKOST medpomnilnika\n" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" +" -t, --field-separator=LOÈILO LOÈILO namesto mej med znaki in praznimi " +"prostori\n" +" -T, --temporary-directory=IMENIK \n" +" uporabi IMENIK za zaèasne datoteke namesto " +"$TMPDIR\n" +" ali %s\n" +" razliène izbire doloèajo razliène imenike\n" +" -u, --unique skupaj z -c, preverjamo za strogo urejenost;\n" +" sicer izpi¹emo samo prve od zaporednih enakih " +"vrstic\n" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" +" -z, --zero-terminated vrstice naj se zakljuèijo z znakom NUL, ne LF\n" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" +"\n" +"POZ ima obliko P[.Z][IZBIRE], kjer je P ¹tevilka polja in Z polo¾aj\n" +"znaka znotraj polja. IZBIRE so lahko ena ali veè od enoèrkovnih izbir\n" +"urejanja, kar prevlada nad globalnimi nastavitvami za ta kljuè. Èe\n" +"kljuè ni podan, se kot kljuè uporabi celotna vrstica.\n" +"\n" +"VELIKOSTI lahko sledi ena od naslednji multiplikativnih pripon:\n" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" +"% 1% pomnilnika, b 1, k 1024 (privzeto), itn. za M, G, T, P, E, Z, Y.\n" +"\n" +"Èe DATOTEKA ni podana ali je enaka -, beremo s standardnega vhoda.\n" +"\n" +"***OPOZORILO***\n" +"Krajevne prilagoditve vplivajo na urejanje. Èe ¾elite tradicionalno " +"obna¹anje\n" +"(urejanje po ¹tevilski vrednosti bajtov), uporabite LC_ALL=C.\n" + +#: src/sort.c:444 +msgid "cannot create temporary file" +msgstr "zaèasne datoteke ni mogoèe ustvariti" + +#: src/sort.c:467 +msgid "open failed" +msgstr "odpiranje ni uspelo" + +#: src/sort.c:487 src/sort.c:2496 +msgid "close failed" +msgstr "zapiranje ni uspelo" + +#: src/sort.c:495 +msgid "write failed" +msgstr "pisanje ni uspelo" + +#: src/sort.c:641 +msgid "sort size" +msgstr "velikost urejanja" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "poizvedba po statusu ni uspela" + +#: src/sort.c:972 +msgid "read failed" +msgstr "branje ni uspelo" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "%s: %s:%s: neurejenost: " + +#: src/sort.c:1574 +msgid "standard error" +msgstr "standardna napaka" + +#: src/sort.c:2032 +#, c-format +msgid "%s: invalid field specification `%s'" +msgstr "%s: neveljavno doloèijo polja: ,%s`" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "%s: ¹tevec ,%.*s` je prevelik" + +#: src/sort.c:2064 +#, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "%s: neveljaven ¹tevec na zaèetku ,%s`" + +#: src/sort.c:2298 +msgid "invalid number after `-'" +msgstr "neveljavno ¹tevilo za ,-`" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +msgid "invalid number after `.'" +msgstr "neveljavno ¹tevilo za ,.`" + +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "zablodeli znak v doloèilu polja" + +#: src/sort.c:2338 +msgid "invalid number at field start" +msgstr "neveljavno ¹tevilo zaèetka polja" + +#: src/sort.c:2342 src/sort.c:2370 +msgid "field number is zero" +msgstr "¹tevilka polja je niè" + +#: src/sort.c:2351 +msgid "character offset is zero" +msgstr "znakovni zamik je niè" + +#: src/sort.c:2366 +msgid "invalid number after `,'" +msgstr "neveljavno ¹tevilo za \",\"" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "veèznakovni tabulator ,%s`" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "dodatni operand ,%s` pri izbiri -c ni dovoljen" + +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "Uporaba: %s [IZBIRA] [VHOD [PREDPONA]]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" +"Datoteko VHOD razre¾emo na kose enake dol¾ine, ki jih poimenujemo " +"PREDPONAaa,\n" +"PREDPONAab...; privzeta PREDPONA je ,x`. Èe VHOD ni podan ali je enak -,\n" +"beremo s standardnega vhoda.\n" +"\n" + +#: src/split.c:108 +#, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" +" -a, --suffix-length=N uporabimo pripone dol¾ine N (privzeto %d)\n" +" -b, --bytes=VELIKOST doloèimo VELIKOST (v bajtih) izhodnih datotek\n" +" -C, --line-bytes=VELIKOST velikost izhodnih datotek je navzgor omejena " +"na\n" +" VELIKOST (v bajtih)\n" +" -l, --lines=©TEVILO doloèimo ©TEVILO vrstic v izhodni datoteki\n" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" +" --verbose z izpisom diagnostike na standardni vhod za " +"napake,\n" +" preden odpremo posamièno datoteko\n" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "Pripone izhodnih datotek so izèrpane" + +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "ustvarjamo datoteko ,%s`\n" + +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "razcep na veè kot en naèin ni mogoè" + +#: src/split.c:394 +#, c-format +msgid "%s: invalid suffix length" +msgstr "%s: neveljavno dol¾ina pripone" + +#: src/split.c:408 src/split.c:434 +#, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: neveljavno ¹tevilo bajtov" + +#: src/split.c:421 +#, c-format +msgid "%s: invalid number of lines" +msgstr "%s: neveljavno ¹tevilo vrstic" + +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr ",-%d` je opu¹èena oblika; uporabite ,-l %d`" + +#: src/split.c:483 +msgid "invalid number" +msgstr "neveljavno ¹tevilo" + +#: src/stat.c:326 +msgid "*** invalid date/time ***" +msgstr "*** neveljavni datum/èas ***" + +#: src/stat.c:608 +#, c-format +msgid "cannot read file system information for %s" +msgstr "ni mogoèe prebrati datoteènega sistema %s" + +#: src/stat.c:684 +#, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "Uporaba: %s [IZBIRA] DATOTEKA...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" +"Izpis statusa datoteke ali datoteènega sistema.\n" +"\n" +" -f, --filesystem izpis statusa dat. sistema namesto statusa datoteke\n" +" -c, --format=FORMAT namesto privzetega uporabimo podani FORMAT\n" +" -L, --dereference sledimo povezavam\n" +" -t, --terse izpis podatkov v zgo¹èeni obliki\n" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" +"\n" +"Veljavna formatna zaporedja za datoteke (brez --filesystem):\n" +"\n" +" %A - Pravice do dostopa zapisane v èloveku umljivi obliki\n" +" %a - Osmi¹ki zapis pravic do dostopa\n" +" %B - Velikost v bajtih za vsak blok, ki ga javi ,%b`\n" +" %b - ©tevilo dodeljenih blokov\n" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" +" %D - ©tevilka naprave v ¹estnajsti¹kem zapisu\n" +" %d - ©tevilka naprave v deseti¹kem zapisu\n" +" %F - Zvrst datoteke\n" +" %f - Surov ¹estnajsti¹ki naèin\n" +" %G - Ime skupine lastnika\n" +" %g - ©tevilka skupine (GID) lastnika\n" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" +" %h - ©tevilo trdih povezav\n" +" %i - ©tevilka inoda\n" +" %N - Ime datoteke (ciljne datoteke, èe gre za simbolno povezavo)\n" +" %n - Ime datoteke\n" +" %o - Velikost V/I bloka\n" +" %s - Skupna velikost v bajtih\n" +" %T - Pomo¾na ¹tevilka zvrsti enote, ¹estnajsti¹ko\n" +" %t - Glavna ¹tevilka zvrsti enote, ¹estnajsti¹ko\n" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" +" %U - Uporabni¹ko ime lastnika\n" +" %u - Uporabni¹ka ¹tevilka (UID) lastnika\n" +" %X - Èas zadnjega dostopa, v sekundah od 1970-01-01\n" +" %x - Èas zadnjega dostopa\n" +" %Y - Èas zadnje spremembe, v sekundah od 1970-01-01\n" +" %y - Èas zadnje spremembe\n" +" %Z - Èas zadnje spremembe inoda, v sekundah od 1970-01-01\n" +" %z - Èas zadnje spremembe inoda\n" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" +"Veljavna formatna zaporedja za datoteène sisteme:\n" +"\n" +" %a - ©tevilo prostih blokov, dostopnih za uporabnike\n" +" %b - Skupno ¹tevilo blokov v datoteènem sistemu\n" +" %c - Skupno ¹tevilo inodov v datoteènem sistemu\n" +" %d - ©tevilo prostih inodov v datoteènem sistemu\n" +" %f - ©tevilo prostih blokov v datoteènem sistemu\n" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" +" %i - Identifikacijska ¹tevilka datoteènega sistema, ¹estnajsti¹ko\n" +" %l - Najveèja dovoljena dol¾ina imen datotek\n" +" %n - Ime datoteke\n" +" %s - Optimalna velikost bloka za prenos\n" +" %T - Zvrst v èloveku umljivi obliki\n" +" %t - Zvrst v ¹estnajsti¹kem zapisu\n" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" +"Uporaba: %s [-F ENOTA] [--file=ENOTA] [NASTAVITEV]...\n" +" ali: %s [-F ENOTA] [--file=ENOTA] [-a|-all]\n" +" ali: %s [-F ENOTA] [--file=ENOTA] [-g|--save]\n" + +#: src/stty.c:504 +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" +"Izpi¹emo ali spremenimo lastnosti terminala.\n" +"\n" +" -a, --all izpi¹i vse trenutne nastavitve v èloveku berljivi " +"obliki\n" +" -g, --save izpi¹i vse trenutne nastavitve v obliki, ki jo bere " +"stty\n" +" -F, --file=ENOTA odpri in uporabi navedeno ENOTO namesto standardnega " +"vhoda\n" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" +"\n" +"Neobvezni minus (-) pred NASTAVITVIJO pomeni njen izklop. Zvezdica (*)\n" +"oznaèuje nastavitve, ki so raz¹iritve standarda POSIX. Dejansko\n" +"dostopne nastavitve so odvisne od sistema.\n" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" +"\n" +"Posebni znaki:\n" +"* dsusp ZNAK ZNAK bo, ko poèisti vhodni medpomnilnik, poslal signal za\n" +" ustavitev terminala\n" +" eof ZNAK ZNAK bo zakljuèil datoteko (konèal vhod)\n" +" eol ZNAK ZNAK bo zakljuèil vrstico\n" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" +"* eol2 ZNAK alternativni ZNAK za zakljuèek vrstice\n" +" erase ZNAK ZNAK bo pobrisal nazadnje vneseni znak\n" +" intr ZNAK ZNAK bo poslal signal za prekinitev\n" +" kill ZNAK ZNAK bo pobrisal trenutno vrstico\n" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" +"* lnext ZNAK ZNAK bo vnesel naslednji navedeni znak\n" +" quit ZNAK ZNAK bo poslal signal za konèanje\n" +"* rprnt ZNAK ZNAK bo obnovil (ponovno izrisal) trenutno vrstico\n" +" start ZNAK ZNAK bo ponovno pognal ustavljeni izhod\n" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" +" stop ZNAK ZNAK bo ustavil izhod\n" +" susp ZNAK ZNAK bo poslal signal za ustavitev terminala\n" +"* swtch ZNAK ZNAK bo preklopil v drugo plast lupine\n" +"* werase ZNAK ZNAK bo pobrisal nazadnje vneseno besedo\n" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" +"\n" +"Posebne nastavitve:\n" +"\n" +" N hitrosti vhoda in izhoda nastavi na N bitov/s\n" +"* cols N sporoèi jedru, da uporabljamo terminal z N stolpci\n" +"* columns N isto kot cols N\n" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" +" ispeed N vhodno hitrost nastavimo na N bitov/s\n" +"* line N uporabi komunikacijski protokol N\n" +" min N z -icanon; naj bo N znakov minimum pri branju\n" +" ospeed N izhodno hitrost nastavimo na N bitov/s\n" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" +"* rows N sporoèi jedru, da uporabljamo terminal z N vrsticami\n" +"* size izpi¹i podatke iz jedra o ¹tevilu stolpcev in vrstic\n" +" speed izpi¹i hitrost terminala\n" +" time N z -icanon, nastavi iztek èasa pri branju na N desetink " +"sekunde\n" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" +"\n" +"Krmilne nastavitve:\n" +" [-]clocal onemogoèi modemske krmilne signale\n" +" [-]cread omogoèi sprejem vhoda\n" +"* [-]crtscts omogoèi usklajevanje RTS/CTS\n" +" csN nastavi velikost znaka v bitih na N; N je v intervalu " +"[5..8]\n" + +#: src/stty.c:570 +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" +" [-]cstopb dva konèna bita za znak (pri ,-` je en sam)\n" +" [-]hup po¹lji signal za odlo¾itev, ko zadnji proces zapre terminal\n" +" [-]hupcl isto kot [-]hup\n" +" [-]parenb po¹iljaj paritetni bit na izhodu in ga prièakuj na vhodu\n" +" [-]parodd izberi liho pariteto (pri ,-` je soda)\n" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" +"\n" +"Vhodne nastavitve:\n" +" [-]brkint prekinitve spro¾ijo signal za prekinitev\n" +" [-]icrnl pretvori znak CR v NL\n" +" [-]ignbrk ne upo¹tevaj prekinitvenih znakov\n" +" [-]igncr ne upo¹tevaj znaka za pomik na levi rob\n" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" +" [-]ignpar ne upo¹tevaj znakov z napaèno pariteto\n" +"* [-]imaxbel zapiskaj in ne izprazni polnega medpomnilnika na znaku\n" +" [-]inlcr pretvori znak NL v CR\n" +" [-]inpck omogoèi preverjanje paritete na vhodu\n" +" [-]istrip najvi¹ji (osmi) bit znakov vedno postavi na niè\n" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" +"* [-]iuclc pretvori velike èrke v male\n" +"* [-]ixany omogoèi, da katerikoli znak, ne le XON, ponovno po¾ene " +"izpis\n" +" [-]ixoff omogoèi po¹iljanje znakov XON in XOFF\n" +" [-]ixon omogoèi uskladitev z znaki XON/XOFF\n" +" [-]parmrk oznaèi napako v pariteti z zaporedjem 255-0-ZNAK\n" +" [-]tandem isto kot [-]ixoff\n" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" +"\n" +"Izhodne nastavitve:\n" +"* bsN slog zakasnitve pri brisalki; N je v intervalu [0..1]\n" +"* crN slog zakasnitve pri pomiku na zaèetek vrste; N je v [0..3]\n" +"* ffN slog zakasnitve pri pomiku na naslednjo stran; N je v " +"[0..1]\n" +"* nlN slog zakasnitve pri skoku v naslednjo vrsto; N je v [0..1]\n" + +#: src/stty.c:608 +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" +"* [-]ocrnl pretvori znake CR v NL\n" +"* [-]ofdel zapolnjuj z znaki za brisanje namesto z znaki NUL\n" +"* [-]ofill uporabi znake za zapolnjevanje namesto èasovnih zakasnitev\n" +"* [-]olcuc pretvori male èrke v velike\n" +"* [-]onlcr pretvori znake NL v CR\n" +"* [-]onlret znak NL opravi ¹e pomik na zaèetek vrste\n" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" +"* [-]onocr ne izpisuj znakov CR v prvem stolpcu\n" +" [-]opost dodatna obdelava izhoda\n" +"* tabN slog zakasnitve pri tabulatorju; N je v intervalu [0..1]\n" +"* tabs isto kot tab0\n" +"* -tabs isto kot tab3\n" +"* vtN slog zakasnitve pri vertikalnem tabulatorju; N je v [0..1]\n" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" +"\n" +"Lokalne nastavitve:\n" +" [-]crterase izpisuj znak za brisanje kot brisanje-presledek-brisanje\n" +"* crtkill pobri¹i celotno vrstico ob upo¹tevanju echoprt in echoe\n" +"* -crtkill pobri¹i celotno vrstico ob upo¹tevanju echoctl in echok\n" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" +"* [-]ctlecho krmilne znake izpisuj v zapisu s stre¹ico (npr. ^C)\n" +" [-]echo izpisuj vnesene znake\n" +"* [-]echoctl isto kot [-]ctlecho\n" +" [-]echoe isti kot [-]crterase\n" +" [-]echok izpi¹i znak za novo vrstico po brisanju vrstice\n" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" +"* [-]echoke isto kot [-]crtkill\n" +" [-]echonl izpisuj znak za novo vrstico, èetudi ostalih ne\n" +"* [-]echoprt izpisuj pobrisane znake nazaj, med ,\\` in ,/`\n" +" [-]icanon omogoèi posebne znake erase, kill, werase in rprnt\n" +" [-]iexten omogoèi posebne znake, ki niso del priporoèila POSIX\n" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" +" [-]isig omogoèi posebne znake interrupt, quit in suspend\n" +" [-]noflsh onemogoèi izpraznitev medpomnilnika po znakih interrupt in " +"quit\n" +"* [-]prterase isto kot [-]echoprt\n" +"* [-]tostop ustavi vsa opravila v ozadju, ki posku¹ajo pisati na " +"terminal\n" +"* [-]xcase skupaj z icanon, predhodi vse velike èrke z naginico \\\n" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" +"\n" +"Kombinacijske nastavitve:\n" +"* [-]LCASE isto kot [-]lcase\n" +" cbreak isto kot -icanon\n" +" -cbreak isto kot icanon\n" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" +" cooked isto kot brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, znaka eof in eol na njuni privzeti vrednosti\n" +" -cooked isto kot raw\n" +" crt isto kot echoe echoctl echoke\n" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" +" dec isto kot echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +"* [-]decctlq isto kot [-]ixany\n" +" ek znaka erase in kill na njuni privzeti vrednosti\n" +" evenp isto kot parenb -parodd cs7\n" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" +" -evenp isto kot -parenb cs8\n" +"* [-]lcase isto kot xcase iuclc olcuc\n" +" litout isto kot -parenb -istrip -opost cs8\n" +" -litout isto kot parenb istrip opost cs7\n" +" nl isto kot -icrnl -onlcr\n" +" -nl isto kot icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" +" oddp isto kot parenb parodd cs7\n" +" -oddp isto kot -parenb cs8\n" +" [-]parity isto kot [-]evenp\n" +" pass8 isto kot -parenb -istrip cs8\n" +" -pass8 isto kot parenb istrip cs7\n" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" +" raw isto kot -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw isto kot cooked\n" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" +" sane isto kot cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, vsi posebni znaki\n" +" na njihove privzete vrednosti.\n" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" +"\n" +"Upravljaj s terminalskim vodom, povezanim s standardnim vhodom. Brez\n" +"argumentov izpi¹e hitrost, komunikacijski protokol in vse spremembe\n" +"glede na stty sane. Pri nastavitvah je ZNAK mo¾no podati dobesedno,\n" +"ali pa v notacijah ^c, 0x37, 0177 ali 127; s posebnimi vrednostmi ^-\n" +"in undef preklièemo nastavitve posebnih znakov.\n" + +#: src/stty.c:787 +msgid "only one device may be specified" +msgstr "navedena je lahko samo ena enota" + +#: src/stty.c:882 +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "" +"izbiri za izpis v èloveku berljivi obliki ter obliki, ki jo lahko prebere\n" +"stty, sta si nasprotujoèi" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "pri doloèanju sloga izhoda ni mo¾no nastavljati naèinov" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "%s: ne-blokirnega naèina ni mo¾no ponovno zagnati" + +#: src/stty.c:957 src/stty.c:1064 +#, c-format +msgid "invalid argument `%s'" +msgstr "neveljaven argument ,%s`" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, c-format +msgid "missing argument to `%s'" +msgstr "izbiri ,%s` manjka argument" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "%s: vseh zahtevanih operacij se ni dalo izvesti" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "nov_naèin: naèin\n" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "%s: ni podatka o velikosti te enote" + +#: src/stty.c:1944 +#, c-format +msgid "invalid integer argument `%s'" +msgstr "neveljaven celo¹tevilèni argument ,%s`" + +#: src/su.c:289 +msgid "Password:" +msgstr "Geslo:" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "getpass: ni mo¾no odpreti /dev/tty" + +#: src/su.c:350 +msgid "cannot set groups" +msgstr "nastavitev skupin ni mo¾na" + +#: src/su.c:354 +msgid "cannot set group id" +msgstr "nastavitev GID ni mo¾na" + +#: src/su.c:356 +msgid "cannot set user id" +msgstr "nastavitev UID ni mo¾na" + +#: src/su.c:437 +#, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "Uporaba: %s [IZBIRA]... [-] [UPORABNIK [ARGUMENT]...]\n" + +#: src/su.c:438 +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" +"Aktivno uporabni¹ko in skupinsko identiteto spremenimo na identiteto\n" +"navedenega UPORABNIKA.\n" +"\n" +" -, -l, --login naj bo ukazna lupina prijavna lupina\n" +" -c, --commmand=UKAZ ukazni lupini podamo navedeni UKAZ in se " +"vrnemo\n" +" -f, --fast ukazni lupini podamo izbiro -f (samo csh in " +"tcsh)\n" +" -m, --preserve-environment brez spreminjanja nastavitev okolja\n" +" -p isto kot -m\n" +" -s, --shell=LUPINA po¾enemo navedeno LUPINO (èe jo /etc/shells " +"dovoli)\n" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" +"\n" +"Minus - brez èesarkoli pomeni isto kot -l. Èe UPORABNIK ni naveden, se\n" +"privzame naduporabnik.\n" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "uporabnik %s ne obstaja" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "napaèno geslo" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "z omejeno ukazno lupino %s" + +#: src/su.c:580 +#, c-format +msgid "warning: cannot change directory to %s" +msgstr "opozorilo: imenik %s ni dosegljiv" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "Kayvan Aghaiepour in David MacKenzie" + +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" +"Za vsako podano DATOTEKO izraèunamo nadzorno vsoto in izpi¹emo ¹tevilo " +"blokov.\n" +"\n" +" -r preklièemo -s; algoritem BSD, velikost blokov 1 KB\n" +" -s, --sysv raèunanje vsote z algoritmom System V, velikost blokov 512 " +"B\n" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "Stanje na disku uskladimo s stanjem v diskovnem medpomnilniku.\n" + +#: src/sync.c:70 src/tty.c:112 +msgid "ignoring all arguments" +msgstr "ignoriramo vse argumente" + +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr " --help ta navodila\n" + +#: src/sys2.h:494 +msgid " --version output version information and exit\n" +msgstr " --version razlièica programa\n" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "Jay Lepreau in David MacKenzie" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Vsako od DATOTEK prepi¹emo na standardni izhod v obratnem vrstnem redu, od\n" +"zadnje vrstice proti prvi. Èe DATOTEKA ni podana ali je enaka -, beremo s\n" +"standardnega vhoda.\n" +"\n" + +#: src/tac.c:139 +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" +" -b, --before loèilo dodamo pred, ne za izpisano vrstico\n" +" -r, --regex loèila obravnavamo kot regularne izraze\n" +" -s, --separator=NIZ vrstice naj loèuje NIZ, ne znak za novo vrstico\n" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "stdin: napaka pri branju" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "loèilo ne more biti prazno" + +#: src/tail.c:49 +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "Paul Rubin, David MacKenzie, Ian Lance Taylor in Jim Meyering" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Zadnjih %d vrstic vsake od podanih DATOTEK izpi¹emo na standardni izhod.\n" +"Èe je podana veè kot ena DATOTEKA, izpi¹emo pred tem ¹e glavo z imenom\n" +"datoteke. Èe DATOTEKA ni podana ali je enaka -, beremo s standardnega " +"vhoda.\n" +"\n" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" +" --retry datoteko posku¹amo odpreti, èetudi ni dostopna v\n" +" trenutku, ko po¾enemo tail ali kdaj kasneje --\n" +" uporabno skupaj z izbiro -f\n" +" -c, --bytes=N izpi¹emo zadnjih N bajtov datoteke\n" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" +" -f, --follow[={name|descriptor}] pri datotekah, ki rastejo, sledimo\n" +" trenutnemu koncu datoteke; -f, --follow in\n" +" --follow=descriptor so sopomenke\n" +" -F isto kot --follow=name --retry\n" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" +" -n, --lines=N izpi¹emo zadnjih N vrstic namesto privzetih %d\n" +" --max-unchanged-stats=N\n" +" skupaj z --follow=name, ponovno odpri DATOTEKO, " +"ki\n" +" se ni spremenila v zadnjih N (privzeto %d) " +"branjih;\n" +" s tem preverimo, ali vmes ni bila izbrisana " +"ali\n" +" preimenovana (uporabno pri dnevni¹kih " +"datotekah)\n" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" +" --pid=PID skupaj z -f, proces zakljuèimo, ko PID ugasne\n" +" -q, --quiet, --silent vedno brez izpisa glave z imenom datoteke\n" +" -s, --sleep-interval=S skupaj z -f; premor S sekund (privzeto 1 " +"sekunda)\n" +" med ponovitvami\n" +" -v, --verbose vedno z izpisom glave z imenom datoteke\n" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" +"\n" +"Èe je ¹tevilo N (¹tevilo vrstic ali bajtov) predznaèeno z znakom + (plus),\n" +"izpisujemo vrstice od N-te vrstice (N-tega bajta) dalje namesto zadnjih\n" +"N vrstic (bajtov). Mogoèe multiplikativne pripone pri N so b (mno¾enje s " +"512),\n" +"k (1024) in m (1048576).\n" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" +"Z izbiro --follow (-f) tail privzeto sledi deskriptorju datoteke, kar " +"pomeni,\n" +"da konec datoteke sledimo tudi, èe je ta vmes preimenovana. " + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" +"Privzeti naèin ni uporaben, èe ¾elimo spremljati samo datoteko z danim\n" +"imenom (npr. dnevni¹ki zapisi). V tem primeru uporabimo --follow=name. V " +"tem\n" +"naèinu tail periodièno poskusi odpreti datoteko in tako preverja, ali ta ¹e\n" +"obstaja, ali pa je bila vmes zbrisana ter ponovno ustvarjena.\n" + +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "zapiramo %s (fd=%d)" + +#: src/tail.c:391 +#, c-format +msgid "%s: cannot seek to offset %s" +msgstr "%s: premik na odmik %s ni mogoè" + +#: src/tail.c:395 +#, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "%s: premik na relativni odmik %s ni mogoè" + +#: src/tail.c:400 +#, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "%s: premik na odmik %s (relativno od konca) ni mogoè" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr ",%s` je postala nedostopna" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "" +",%s` je bila nadome¹èena z datoteko, kateri ni moè slediti konca; opu¹èamo" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr ",%s` je postala dostopna" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr ",%s` se je pojavila; sledimo konec nove datoteka" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr ",%s` je bila zamenjana; sledimo konec nove datoteke" + +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "%s: datoteka je porezana" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "nobene datoteke ni veè" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "%s: koncu te zvrsti datoteke ni mogoèe slediti; s tem imenom odnehamo" + +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "%c: neveljavna enoznakovna pripona pri zastareli izbiri" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"preveè argumentov: Pri stari skladnji izbir (%s) lahko podamo kot argument " +"le\n" +"eno datoteko. Namesto tega uporabite izbiri -n ali -c." + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"Opozorilo: pri uporabi stare skladnje (%s) navedba dveh ali veè datotek\n" +"ni prenosljiva. Namesto nje uporabite izbiri -n ali -c." + +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr ",%s` je opu¹èena oblika; uporabite ,%s-%c %.*s`" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "%s presega najveèjo dovoljeno velikost datoteke na tem sistemu" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "%s: neveljavno najveèje ¹tevilo nespremenjenih statusov med odpiranji" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "%s: neveljavno najveèje ¹tevilo zaporednih sprememb velikosti" + +#: src/tail.c:1534 +#, c-format +msgid "%s: invalid PID" +msgstr "%s: neveljavno ¹tevilo PID" + +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: neveljavno ¹tevilo sekund" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "opozorilo: izbira --retry je uporabna le, kadar ji sledi ime" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "opozorilo: PID ignoriran; --pid=PID je uporabno samo pri sledenju" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "opozorilo: izbira --pid=PID na tem sistemu ni podprta" + +#: src/tee.c:33 +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "Mike Parker, Richard M. Stallman in David MacKenzie" + +#: src/tee.c:64 +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" +"Standarni vhod prepi¹emo na standardni izhod in ¹e na vse navedene " +"DATOTEKE.\n" +"\n" +" -a, --append dodajaj na konec datoteke, namesto da pi¹e¹ " +"prek\n" +" -i, --ignore-interrupts ne upo¹tevaj signalov za prekinitev\n" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "prièakuje se argument\n" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "prièakuje se celo¹tevilèni izraz %s\n" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "prièakuje se ,)`\n" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "prièakuje se ,)`, naleteli na %s\n" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "%s: prièakuje se unarni operator\n" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "%s: prièakuje se binarni operator\n" + +#: src/test.c:424 +msgid "before -lt" +msgstr "pred -lt" + +#: src/test.c:432 +msgid "after -lt" +msgstr "po -lt" + +#: src/test.c:446 +msgid "before -le" +msgstr "pred -le" + +#: src/test.c:453 +msgid "after -le" +msgstr "po -le" + +#: src/test.c:469 +msgid "before -gt" +msgstr "pred -gt" + +#: src/test.c:476 +msgid "after -gt" +msgstr "po -gt" + +#: src/test.c:490 +msgid "before -ge" +msgstr "pred -ge" + +#: src/test.c:497 +msgid "after -ge" +msgstr "po -ge" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "-nt ne sprejema -l\n" + +#: src/test.c:526 +msgid "before -ne" +msgstr "pred -ne" + +#: src/test.c:533 +msgid "after -ne" +msgstr "po -ne" + +#: src/test.c:549 +msgid "before -eq" +msgstr "pred -eq" + +#: src/test.c:556 +msgid "after -eq" +msgstr "po -eq" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "-ef ne sprejema -l\n" + +#: src/test.c:586 +msgid "-ot does not accept -l\n" +msgstr "-ot ne sprejema -l\n" + +#: src/test.c:593 +msgid "unknown binary operator" +msgstr "neznan binarni operator" + +#: src/test.c:781 +msgid "after -t" +msgstr "po -t" + +#: src/test.c:979 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"Uporaba: %s IZRAZ\n" +" ali: [ IZRAZ ]\n" +" ali: %s IZBIRA\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" +"Ovrednotimo IZRAZ in rezultat vrnemo kot izhodno kodo.\n" +"\n" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" +"\n" +"Rezultat ovrednotenja IZRAZA je lahko pravilno (true) ali napaèno (false).\n" +"IZRAZ ima lahko eno od navedenih oblik:\n" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" +"\n" +" ( IZRAZ ) IZRAZ je pravilen\n" +" ! IZRAZ IZRAZ ni pravilen\n" +" IZRAZ1 -a IZRAZ2 IZRAZ1 in IZRAZ2 sta oba pravilna\n" +" IZRAZ1 -o IZRAZ2 IZRAZ1 ali IZRAZ2 sta pravilna\n" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" +"\n" +" [-n] NIZ dol¾ina NIZA je veèja od niè\n" +" -z NIZ dol¾ina NIZA je enaka niè\n" +" NIZ1 = NIZ2 niza sta enaka\n" +" NIZ1 != NIZ2 niza se razlikujeta\n" + +#: src/test.c:1009 +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" +"\n" +" ©TEVILO1 -eq ©TEVILO2 celo ©TEVILO1 je enako celemu ©TEVILU2\n" +" ©TEVILO1 -ge ©TEVILO2 celo ©TEVILO1 je veèje ali enako od celega " +"©TEVILU2\n" +" ©TEVILO1 -gt ©TEVILO2 celo ©TEVILO1 je veèje od celega ©TEVILU2\n" +" ©TEVILO1 -le ©TEVILO2 celo ©TEVILO1 je manj¹e ali enako od celega " +"©TEVILU2\n" +" ©TEVILO1 -lt ©TEVILO2 celo ©TEVILO1 je manj¹e od celega ©TEVILU2\n" +" ©TEVILO1 -ne ©TEVILO2 celo ©TEVILO1 ni enako celemu ©TEVILU2\n" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" +"\n" +" DATOTEKA1 -ef DATOTEKA2 datoteki imata isto ¹tevilko naprave in inoda\n" +" DATOTEKA1 -nt DATOTEKA2 DATOTEKA1 je bila spremenjena kasneje kot " +"DATOTEKA2\n" +" DATOTEKA1 -ot DATOTEKA2 DATOTEKA1 je bila spremenjena prej kot DATOTEKA2\n" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" +"\n" +" -b DATOTEKA DATOTEKA obstaja in je bloèna posebna enota\n" +" -c DATOTEKA DATOTEKA obstaja in je znakovna posebna enota\n" +" -d DATOTEKA DATOTEKA obstaja in je imenik\n" +" -e DATOTEKA DATOTEKA obstaja\n" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" +" -f DATOTEKA DATOTEKA obstaja in je navadna datoteka\n" +" -g DATOTEKA DATOTEKA obstaja in ima postavljen bit SGID\n" +" -G DATOTEKA DATOTEKA obstaja in pripada isti skupini\n" +" -k DATOTEKA DATOTEKA obstaja in ima postavljen lepljivi bit\n" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" +" -L DATOTEKA DATOTEKA obstaja in je simbolna povezava\n" +" -O DATOTEKA DATOTEKA obstaja in pripada istemu uporabniku\n" +" -p DATOTEKA DATOTEKA obstaja in je poimenovana cev\n" +" -r DATOTEKA DATOTEKA obstaja in jo smemo brati\n" +" -s DATOTEKA DATOTEKA obstaja in ni prazna (dol¾ina > 0)\n" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" +" -S DATOTEKA DATOTEKA obstaja in je vtiènica\n" +" -t DATOTEKA deskriptor DATOTEKE (navadno standarni izhod) je odprt na " +"terminalu\n" +" -u DATOTEKA DATOTEKA obstaja in ima postavljen bit SUID\n" +" -w DATOTEKA DATOTEKA obstaja in nanjo smemo pisati\n" +" -x DATOTEKA DATOTEKA obstaja in jo smemo izvajati\n" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" +"\n" +"Pazite na to, da je potrebno oklepaje opremiti z nagibnicami, da jih ne\n" +"tolmaèi ukazna lupina.\n" +"Celo ©TEVILO je lahko tudi -l NIZ, ki se ovrednoti na dol¾ino NIZA.\n" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "manjka ,]`\n" + +#: src/test.c:1125 +msgid "too many arguments\n" +msgstr "preveè argumentov\n" + +#: src/touch.c:39 +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie in Randy Smith" + +#: src/touch.c:164 src/touch.c:179 +#, c-format +msgid "creating %s" +msgstr "ustvarjamo %s" + +#: src/touch.c:222 +#, c-format +msgid "cannot touch %s" +msgstr "%s ni dosegljiv" + +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "nastavljamo èase %s" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" +"Èas zadnjega dostopa in spremembe DATOTEKE postavimo na trenutni èas.\n" +"\n" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" +" -a spremeni samo èas zadnjega dostopa\n" +" -c, --no-create brez ustvarjanja novih datotek\n" +" -d, --date=NIZ razèleni NIZ in uporabi ta èas namesto trenutnega\n" +" -f (ignorirano)\n" +" -m spremeni samo èas zadnje spremembe\n" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" +" -r, --reference=DATOTEKA uporabi èas podane DATOTEKE namesto trenutnega\n" +" -t ®IG uporabi [[CC]YY]MMDDhhmm[.ss] namesto trenutnega " +"èasa\n" +" --time=BESEDA nastavimo èas, podan z BESEDO: \n" +" èas dostopa: access, atime, use (isto kot -a)\n" +" èas spremembe: mtime, modify (isto kot -m)\n" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" +"\n" +"Pazita na to, da izbiri -d in -t sprejemata razlièna zapisa datuma in èasa.\n" + +#: src/touch.c:311 src/touch.c:331 +#, c-format +msgid "invalid date format %s" +msgstr "neveljavna oblika datuma %s" + +#: src/touch.c:355 +msgid "cannot specify times from more than one source" +msgstr "hkrati lahko navedemo samo en vir" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "" +"opozorilo: ,touch %s` je zastarelo; uporabite ,touch -t %04d%02d%02d%02d%02d." +"%02d`" + +#: src/touch.c:399 +msgid "file arguments missing" +msgstr "datoteka ni podana" + +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "Uporaba: %s [IZBIRA]... MNO®ICA1 [MNO®ICA2]\n" + +#: src/tr.c:331 +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" +"Prevedemo, stisnemo ali pobri¹emo znake iz toka podatkov na standardnem \n" +"vhodu in rezultat pi¹emo na standardni izhod.\n" +"\n" +" -c, --complement komplement MNO®ICE 1.\n" +" -d, --delete pobri¹emo znake, navedene v MNO®ICI 1.\n" +" -s, --squeeze-repeats sosledje enakih znakov, navedeno v MNO®ICI 1,\n" +" nadomestimo z enim samim znakom\n" +" -t, --truncate-set1 MNO®ICO 1 najprej skrèimo na velikost MNO®ICE 2.\n" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" +"\n" +"MNO®ICE doloèajo nizi znakov. Veèinoma predstavljajo sebe, posebej pa se\n" +"tolmaèijo naslednja zaporedja:\n" +"\n" +" \\\\NNN znak z osmi¹ko kodo NNN (dol¾ina 1, 2 ali 3 osmi¹ke " +"¹tevke)\n" +" \\\\\\\\ nagibnica\n" +" \\\\a zvonèek\n" +" \\\\b pomik za en znak v levo\n" +" \\\\f skok na novo stran\n" +" \\\\n skok v novo vrstico\n" +" \\\\r pomik na levi rob\n" +" \\\\t vodoravni tabulator\n" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" +" \\\\v navpièni tabulator\n" +" ZNAK1-ZNAK2 nara¹èajoèe zaporedje znakov od ZNAKA1 do ZNAKA2\n" +" [ZNAK1-ZNAK2] isto kot ZNAK1-ZNAK2, èe to uporabljata obe mno¾ici\n" +" [ZNAK*] v MNO®ICI 2; toliko ponovitev ZNAKA kot v MNO®ICI 1\n" +" [ZNAK*N] N ponovitev znaka; osmi¹ka vrednost, èe se N zaène z " +"nièlo\n" +" [:alnum:] vse èrke in ¹tevke\n" +" [:alpha:] vse èrke\n" +" [:blank:] vsi vodoravni prazni znaki\n" +" [:cntrl:] vsi krmilni znaki\n" +" [:digit:] vse ¹tevke\n" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" +" [:graph:] vsi izpisljivi znaki razen presledka\n" +" [:lower:] vse male èrke\n" +" [:print:] vsi izpisljivi znaki s presledkom vred\n" +" [:punct:] vsa loèila\n" +" [:space:] vsi prazni znaki, vodoravni in navpièni\n" +" [:upper:] vse velike èrke\n" +" [:xdigit:] vse ¹estnajsti¹ke ¹tevke\n" +" [=ZNAK=] vsi znaki, ki so enakovredni navedenemu ZNAKU\n" + +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" +"\n" +"Èe izbira -d ni podana in sta navedeni tako MNO®ICA1 kot MNO®ICA2, se " +"privzame\n" +"prevedba. Izbira -t se sme uporabiti samo ob prevedbi. Èe je MNO®ICA 2 " +"kraj¹a\n" +"od MNO®ICE 1, se privzame ponovitev zadnjega znaka v MNO®ICI 2 do dol¾ine\n" +"MNO®ICE 1. " + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" +"Znaki, ki v MNO®ICI 2 segajo prek dol¾ine MNO®ICE 1, se zavr¾ejo.\n" +"Edino razreda [:lower:] in [:upper:] se zajamèeno raz¹irita v nara¹èajoèem\n" +"vrstnem redu. Èe je kateri od njiju naveden v MNO®ICI 2, ju lahko uporabimo\n" +"le za pretvorbo med velikimi in malimi èrkami. " + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" +"Izbira -s uporablja MNO®ICO 1,\n" +"kadar ne prevajamo ali bri¹emo, sicer pa stiskanje uporablja MNO®ICO 2 in " +"se\n" +"izvede po prevajanju in brisanju.\n" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" +"opozorilo: dvoumno osmi¹ko ube¾no zaporedje \\%c%c%c \n" +"tolmaèimo kot dvobajtno zaporedje \\0%c%c, ,%c`" + +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "neveljavno ube¾no zaporedje na koncu niza" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "neveljavno ube¾no zaporedje ,\\%c`" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "meji obsega ,%s-%s` nista navedeni v nara¹èajoèem abecednem redu" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "neveljavno ¹tevilo ponavljanj ,%s` v konstruktu [c*n]" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "manjkajoèe ime razreda znakov ,[::]`" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "manjkajoè znak za ekvivalenco razredov ,[==]`" + +#: src/tr.c:1025 +#, c-format +msgid "invalid character class `%s'" +msgstr "neveljaven razred znakov ,%s`" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "%s: operand ekvivalentnih razredov sme biti en sam znak" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "konstrukt ponovitev znaka [c*] se ne sme pojaviti v nizu 1" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "kveèjemu en konstrukt ponovitev znaka [c*] se sme pojaviti v nizu 2" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "izrazi [=c=] se pri prevedbi ne smejo pojavljati v nizu 2" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "kadar ne kraj¹amo niza 1, mora biti niz 2 neprazen" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" +"pri prevedbi s komplementi znakovnih razredov mora\n" +"niz 2 preslikati vse znake iz domene v enega" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" +"edina razreda znakov, ki se smeta pri prevedbi pojaviti v nizu 2,\n" +"sta ,upper` in ,lower`" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "konstrukt [c*] se sme pojaviti v nizu 2 le pri prevedbi" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "pri prevedbi morata biti podana dva niza" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "" +"ob hkratnem veèkratnem brisanju in stiskanju morata biti podana dva niza" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "samo en niz sme biti podan kadar bri¹emo brez veèkratnega stiskanja" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "vsaj en niz mora biti podan pri stiskanju veè znakov" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "neporavnana konstrukta [:upper:] in/ali [:lower:]" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" +"neveljavna identièna preslikava: pri prevedbi mora biti vsak konstrukt [:" +"upper:]\n" +"ali [:lower:] v nizu 1 poravnan z ustreznim konstruktom (torej [:lower:] " +"ali\n" +"[:upper:]) v nizu 2" + +#: src/true.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Uporaba: %s [morebitni argumenti v ukazni vrstici se ne upo¹tevajo]\n" +" ali: %s IZBIRA\n" +"Konèamo z izhodno kodo, ki signalizira uspeh.\n" +"\n" +"Navedeni izbiri nimata kratke oblike.\n" +"\n" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Uporaba: %s [IZBIRA] [DATOTEKA]\n" +"Zapi¹emo povsem urejen seznam, usklajen z delno ureditvijo v DATOTEKI.\n" +"Èe DATOTEKA ni podana ali je enaka -, beremo s standardnega vhoda.\n" +"\n" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "%s: zanka na vhodu:" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "dovoljen je le en argument" + +#: src/tty.c:63 +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" +"Izpi¹emo ime enote terminala, s katere beremo standardni vhod.\n" +"\n" +" -s, --silent, --quiet nièesar ne izpi¹i, samo vrni izhodni status\n" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "ni terminal" + +#: src/uname.c:111 +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" +"Izpi¹emo razliène sistemske podatke. Brez IZBIRE je isto kot -s.\n" +"\n" +" -a, --all izpi¹i vse podatke<\n" +" -m, --machine izpi¹i podatke o strojni opremi\n" +" -n, --nodename izpi¹i omre¾no ime raèunalnika\n" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" +" -v, --kernel-version izpi¹i razlièico operacijskega sistema\n" +" -r, --release izpi¹i izdajo operacijskega sistema\n" +" -s, --sysname izpi¹i ime operacijskega sistema\n" +" -p, --processor izpi¹i tip procesorja\n" + +#: src/uname.c:226 +msgid "cannot get system name" +msgstr "ime sistema ni ugotovljivo" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Presledke v vsaki DATOTEKI nadomestimo s tabulatorji in rezultat zapi¹emo " +"na\n" +"standardni izhod. Èe DATOTEKA ni podana ali je enaka -, beremo s " +"standardnega\n" +"vhoda.\n" +"\n" + +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" +" -a, --all pretvorimo vse prazne prostore, ne le uvodnih\n" +" --first-only navzlic izbiri -a pretvorimo samo vodilne presledke\n" +" -t, --tabs=©TEVILO tabulatorji naj bodo ©TEVILO znakov narazen namesto\n" +" privzetih 8 (implicira -a)\n" +" -t, --tabs=SEZNAM z vejicami loèen seznam eksplicitnih polo¾ajev " +"tabulatorja\n" +" (implicira -a)\n" + +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr ",-SEZNAM` je opu¹èena oblika; uporabite ,--first-only -t SEZNAM`" + +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "Uporaba: %s [IZBIRA]... [VHOD [IZHOD]]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" +"Sosledje enakih vrstic na VHODU (ali standardnem vhodu) nadomestimo z eno\n" +"samo in rezultat zapi¹emo na IZHOD (standardni izhod).\n" +"\n" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" +" -c, --count na zaèetku vsake vrstice izpi¹emo tudi ¹tevilo " +"ponovitev\n" +" -d, --repeated izpi¹emo samo podvojene vrstice\n" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" +" -D, --all-repeated[=delimit-method] izpi¹emo vse podvojene vrstice\n" +" -f, --skip-fields=N pri primerjanju izpustimo prvih N polj vsake " +"vrstice\n" +" -i, --ignore-case male in velike èrke obravnavamo enakovredno\n" +" -s, --skip-chars=N pri primerjanju izpustimo prvih N znakov vsake " +"vrstice\n" +" -u, --unique izpi¹emo samo nepodvojene vrstice\n" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr " -w, --check-chars=N primerjamo prvih N znakov v vrstici\n" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" +"\n" +"Polje je zaporedje praznih znakov, ki mu sledi zaporedje nepraznih znakov.\n" +"Najprej preskoèimo polja, potem znake.\n" + +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "napaka pri branju %s" + +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "napaka pri pisanju na %s" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "odveèni operand ,%s`" + +#: src/uniq.c:473 src/uniq.c:498 +msgid "invalid number of fields to skip" +msgstr "neveljavno ¹tevilo preskoèenih polj" + +#: src/uniq.c:507 +msgid "invalid number of bytes to skip" +msgstr "neveljavno ¹tevilo preskoèenih bajtov" + +#: src/uniq.c:516 +msgid "invalid number of bytes to compare" +msgstr "neveljavno ¹tevilo primerjanih bajtov" + +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr ",-%lu` je opu¹èena oblika; uporabite ,-f %lu`" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "izpis vseh podvojenih vrstic skupaj s ¹tevilom ponovitev ni smiseln" + +#: src/unlink.c:51 +#, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"Uporaba: %s DATOTEKA\n" +" ali: %s IZBIRA\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" +"Odstranitev navedene DATOTEKE s klicem funkcije unlink(2).\n" +"\n" + +#: src/unlink.c:99 +#, c-format +msgid "cannot unlink %s" +msgstr "s klicem unlink ni mogoèe odstraniti %s" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "èas od zagona ni ugotovljiv" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr " %2d:%02d%s v teku " + +#: src/uptime.c:140 +msgid "am" +msgstr "A.M." + +#: src/uptime.c:140 +msgid "pm" +msgstr "P.M." + +#: src/uptime.c:142 +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d dni" +msgstr[1] "%d dan" +msgstr[2] "%d dneva" +msgstr[3] "%d dnevi" + +#: src/uptime.c:144 +#, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "%d uporabnikov" +msgstr[1] "%d uporabnik" +msgstr[2] "%d uporabnika" +msgstr[3] "%d uporabniki" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr ", povpr. obremenitev %.2f" + +#: src/uptime.c:191 src/users.c:118 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "Uporaba: %s [IZBIRA]... [ DATOTEKA ]\n" + +#: src/uptime.c:192 +#, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Izpi¹emo trenutni èas, èas, ki je pretekel od zagona raèunalnika, ¹tevilo\n" +"trenutno prijavljenih uporabnikov in povpreèno ¹tevilo opravil v èakalni " +"vrsti\n" +"v zadnji minuti, petih minutah in 15 minutah.\n" +"Èe DATOTEKA ni navedena, uporabimo %s. Obièajno je DATOTEKA %s.\n" +"\n" + +#: src/users.c:35 +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "Joseph Arceneaux in David MacKenzie" + +#: src/users.c:119 +#, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Seznam trenutno prijavljenih uporabnikov zapi¹emo na DATOTEKO.\n" +"Èe DATOTEKA ni navedena, uporabimo %s. Obièajno je DATOTEKA %s.\n" +"\n" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "Paul Rubin in David MacKenzie" + +#: src/wc.c:129 +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" +"Izpi¹emo ¹tevilo bajtov, besed in vrstic v vsaki od podanih DATOTEK, in " +"skupne\n" +"vrednosti, èe je bila podana veè kot ena datoteka. Èe DATOTEKA ni podana " +"ali\n" +"je enaka -, beremo s standardnega vhoda.\n" +"\n" +" -c, --bytes izpi¹emo ¹tevilo bajtov\n" +" -m, --chars izpi¹emo ¹tevilo znakov\n" +" -l, --lines izpi¹emo ¹tevilo vrstic\n" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" +" -L, --max-line-length izpi¹emo dol¾ino najdalj¹e vrstice\n" +" -w, --words izpi¹emo ¹tevilo besed\n" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "Joseph Arceneaux, David MacKenzie in Michael Stone" + +#: src/who.c:223 +msgid " old " +msgstr " staro " + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "id=" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "term=" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "exit=" + +#: src/who.c:446 +msgid "clock change" +msgstr "sprem. ure" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "run-level" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "last=" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" +"\n" +"©t. up.=%u\n" + +#: src/who.c:498 +msgid "NAME" +msgstr "IME" + +#: src/who.c:498 +msgid "LINE" +msgstr "LINIJA" + +#: src/who.c:498 +msgid "TIME" +msgstr "ÈAS" + +#: src/who.c:498 +msgid "IDLE" +msgstr "NEAKT." + +#: src/who.c:498 +msgid "PID" +msgstr "PID" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "KOMENTAR" + +#: src/who.c:499 +msgid "EXIT" +msgstr "IZH." + +#: src/who.c:574 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "Uporaba: %s [IZBIRA]... [ DATOTEKA | ARGUMENT1 ARGUMENT2 ]\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" +"\n" +" -a, --all isto kot -b -d --login -p -r -t -T -u\n" +" -b, --boot èas zadnjega zagona\n" +" -d, --dead izpis mrtvih procesov\n" +" -H, --heading izpi¹i vrstico z legendo\n" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" +" -i, --idle dodaj èas neaktivnosti z v obliki URE:MINUTE, . ali " +"star\n" +" (opu¹èena oblika; uporabite -u)\n" +" --login izpis sistemskih prijavnih procesov\n" +" (enakovredno SUS -l)\n" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" +" -l, --lookup uporabi DNS za poizvedbo o kanoniènih imenih " +"raèunalnikov\n" +" -m samo imena raèunalnikov ter uporabnik, povezan s\n" +" standardnim vhodom\n" +" -p, --process izpi¹emo aktivne procese, ki jih je zagnal init\n" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" +" -q, --count vsi uporabniki in ¹tevilo vseh prijavljenih uporabnikov\n" +" -r, --runlevel izpi¹emo trenutni nivo teka sistema\n" +" -s, --short izpi¹emo le uporabni¹ko ime, linijo in èas prijave " +"(privzeto)\n" +" -t, --time izpi¹emo zadnjo spremembo sistemske ure\n" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" +" -T, -w, --mesg navedi mo¾nost po¹iljanja sporoèil kot +, - ali ?\n" +" -u, --users seznam vseh prijavljenih uporabnikov\n" +" --message isto kot -T\n" +" --writable isto kot -T\n" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" +"\n" +"Èe DATOTEKA ni navedena, pi¹emo na %s. Obièajno je DATOTEKA %s.\n" +"Èe sta podana ARGUMENT1 in ARGUMENT2, uporabi -m; obièajno sta argumenta\n" +"'am i' ali 'mom likes'.\n" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "Opozorilo: izbira -i bo v prihodnjih izdajah ukinjena; uporabite -u" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" +"Opozorilo: pomen izbire -l se bo v prihodnji izdaji spremenil, tako da bo\n" +"skladen s POSIX" + +#: src/whoami.c:53 +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" +"Izpi¹emo ime uporabnika povezanega s trenutno aktivno uporabni¹ko " +"identiteto.\n" +"Isto kot id -un.\n" +"\n" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "%s: uporabni¹ko ume za UID %u ni ugotovljivo\n" + +#: src/yes.c:49 +#, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"Uporaba: %s [NIZ]...\n" +" ali: %s IZBIRA\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" +"Ponavljaje izpisujemo vrstico s podanim NIZOM (privzeto ,y`).\n" +"\n" + +#~ msgid "\\%c: invalid escape" +#~ msgstr "\\%c: neveljaven ube¾ni znak" + +#~ msgid "program error" +#~ msgstr "napaka v programu" + +#~ msgid "stack overflow" +#~ msgstr "prekoraèitev sklada" + +#~ msgid "warning: unable to use large stack" +#~ msgstr "opozorilo: uporaba velikega sklada ni mogoèa" + +#~ msgid " Type" +#~ msgstr " Vrsta" + +#~ msgid "missing file arguments" +#~ msgstr "datoteka ni podana" + +#~ msgid "cannot change to `..' from directory %s" +#~ msgstr "iz imenika %s imenik ,..` ni dosegljiv" + +#~ msgid "%s: is so large that it is not representable" +#~ msgstr "%s: je tako veliko, da ni predstavljivo" diff --git a/src/apps/bin/coreutils-5.0/po/sv.gmo b/src/apps/bin/coreutils-5.0/po/sv.gmo new file mode 100644 index 0000000000..37d1e14a25 Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/sv.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/sv.po b/src/apps/bin/coreutils-5.0/po/sv.po new file mode 100644 index 0000000000..dd8776136e --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/sv.po @@ -0,0 +1,8287 @@ +# Swedish messages for coreutils. +# Copyright © 1997, 2002, 2003 Free Software Foundation, Inc. +# Peter Antman , 1997. +# Thomas Olsson , 1997. +# Daniel Resare 1999, 2000. +# Göran Uddeborg , 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003. +# $Revision: 1.1 $ +# +msgid "" +msgstr "" +"Project-Id-Version: coreutils 4.5.10\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2003-03-14 23:33+0100\n" +"Last-Translator: Göran Uddeborg \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "felaktigt argument %s till %s" + +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "tvetydigt argument %s till %s" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "Giltiga argument är:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "skrivfel" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "Okänt systemfel" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "tom normal fil" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "normal fil" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "katalog" + +#: lib/file-type.c:48 +msgid "block special file" +msgstr "blockspecialfil" + +#: lib/file-type.c:51 +msgid "character special file" +msgstr "teckenspecialfil" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "fifo" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "symbolisk länk" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "uttag (socket)" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "meddelandekö" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "semafor" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "delat minne-objekt" + +#: lib/file-type.c:71 +msgid "weird file" +msgstr "konstig fil" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: flaggan \"%s\" är tvetydig\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: flaggan \"--%s\" tar inget argument\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: flaggan \"%c%s\" tar inget argument\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: flaggan \"%s\" kräver ett argument\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: okänd flagga \"--%s\"\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: okänd flagga \"%c%s\"\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: otillåten flagga -- %c\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: ogiltig flagga -- %c\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: flaggan kräver ett argument -- %c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: flaggan \"-W %s\" är tvetydig\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: flaggan \"-W %s\" tar inget argument\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "blockstorlek" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "kunde inte återvända till den ursprungliga arbetskatalogen" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "kan inte skapa katalog %s" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%s finns men är inte en katalog" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "kan inte ändra ägare och/eller grupp för %s" + +#: lib/makepath.c:338 +#, c-format +msgid "cannot chdir to directory %s" +msgstr "kan inte byta till katalog %s" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "kan inte ändra rättigheter på %s" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "minnet slut" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "\"" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "\"" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[yYjJ]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[nN]" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "iconv-funktion inte användbar" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "iconv-funktion inte tillgänglig" + +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "tecken utanför intervall" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "kan inte konvertera U+%04X till lokal teckenuppsättning" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "kan inte konvertera U+%04X till lokal teckenuppsättning: %s" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "ogiltig användare" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "ogiltig grupp" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "kan inte ta reda på inloggningsgruppen för ett numeriskt UID" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "kan inte utelämna både användare och grupp" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "Skrivet av %s.\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +"Detta är fri programvara. Se källkoden för kopieringsvillkor. Det\n" +"finns INGEN garanti, även underförstådd garanti vid KÖP, eller\n" +"LÄMPLIGHET FÖR NÅGOT SPECIELLT ÄNDAMÅL.\n" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "strängjämförelse misslyckades" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "Sätt LC_ALL='C' för att gå runt problemet." + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "De jämförda strängarna var %s och %s." + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Försök med \"%s --help\" för mer information.\n" + +#: src/basename.c:54 +#, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"Användning: %s NAMN [ÄNDELSE]\n" +" eller: %s FLAGGA\n" +"\n" + +#: src/basename.c:59 +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" +"Skriv NAMN med eventuella inledande sökvägskomponenter borttagna.\n" +"Tag bort eventuell specificerad ÄNDELSE.\n" +"\n" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"Rapportera fel till <%s>.\n" +"Rapportera kommentarer om översättningen till .\n" + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "för få argument" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "för många argument" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "Torbjörn Granlund och Richard M. Stallman" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "Användning: %s [FLAGGA] [FIL]...\n" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" +"Sammanfoga FIL(er), eller standard in, till standard ut.\n" +"\n" +" -A, --show-all som -vET\n" +" -b, --number-nonblank numrera icke-tomma rader\n" +" -e som -vE\n" +" -E, --show-ends visa $ i slutet av varje rad\n" +" -n, --number numrera alla rader\n" +" -s, --squeeze-blank aldrig mer än en ensam tom rad\n" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" +" -t likvärdigt med -vT\n" +" -T, --show-tabs visa TAB-tecken som ^I\n" +" -u (ignorerad)\n" +" -v, --show-nonprinting använd ^ och M-notation, utom för nyrad och TAB\n" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"Utan FIL, eller när FIL är -, läs standard in.\n" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" +"\n" +" -B, --binary skriv binärt till konsolenheten.\n" +"\n" + +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "Kan inte göra \"ioctl\" på \"%s\"" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "standard ut" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s: infil är utfil" + +#: src/cat.c:858 +msgid "closing standard input" +msgstr "stänger standard in" + +#: src/cat.c:861 +msgid "closing standard output" +msgstr "stänger standard ut" + +#: src/chgrp.c:93 +msgid "cannot change to null group" +msgstr "kan inte ändra till tom grupp" + +#: src/chgrp.c:102 +#, c-format +msgid "invalid group name %s" +msgstr "ogiltigt gruppnamn %s" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "gruppnummer" + +#: src/chgrp.c:109 +#, c-format +msgid "invalid group number %s" +msgstr "ogiltigt gruppnummer %s" + +#: src/chgrp.c:126 +#, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Användning: %s [FLAGGA]... GRUPP FIL...\n" +" eller: %s [FLAGGA]... --reference=RFIL FIL...\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Ändra grupptillhörighet på varje FIL till GRUPP.\n" +"\n" +" -c, --changes som \"verbose\" fast bara för ändrade filer\n" +" --dereference ändra det symboliska länkar pekar på, och inte\n" +" själva länken\n" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" +" -h, --no-dereference ändra symbolisk länk istället för det den pekar på\n" +" (endast på system där det går att ändra ägare på\n" +" symboliska länkar)\n" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet utelämna de flesta felmeddelanden\n" +" --reference=RFIL använd RFIL:s grupp istället för ett argument " +"GRUPP\n" +" -R, --recursive ändra filer och kataloger rekursivt\n" +" -v, --verbose rapportera alla behandlade filer\n" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, c-format +msgid "failed to get attributes of %s" +msgstr "kunde inte hämta attribut för %s" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "hämtar nya attribut för %s" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "rättigheterna hos %s ändrade till %04lo (%s)\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "kunde inte ändra rättigheterna på %s till %04lo (%s)\n" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "rättigheterna hos %s är oförändrat %04lo (%s)\n" + +#: src/chmod.c:179 +#, c-format +msgid "changing permissions of %s" +msgstr "ändrar rättigheter på %s" + +#: src/chmod.c:242 +#, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Användning: %s [FLAGGA]... RÄTTIGHETER[,RÄTTIGHETER]... FIL...\n" +" eller: %s [FLAGGA]... OKTAL-RÄTTIGHET FIL...\n" +" eller: %s [FLAGGA]... --reference=RFIL FIL...\n" + +#: src/chmod.c:248 +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"Ändra rättigheterna för varje FIL till RÄTTIGHET.\n" +"\n" +" -c, --changes som \"--verbose\", men endast när en ändring görs\n" +" -f, --silent, --quiet utelämna de flesta felmeddelanden\n" +" -v, --verbose rapportera alla behandlade filer\n" +" --reference=RFIL använd RFILs rättigheter istället för något " +"argument\n" +" -R, --recursive ändra filer och kataloger rekursivt\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" +"\n" +"Varje RÄTTIGHET är en eller flera av bokstäverna ugoa, en av\n" +"symbolerna +-= och en eller flera av bokstäverna rwxXstugo.\n" + +#: src/chmod.c:320 +#, c-format +msgid "invalid character %s in mode string %s" +msgstr "ogiltigt tecken %s i rättighetssträng %s" + +#: src/chmod.c:361 +#, c-format +msgid "invalid mode string: %s" +msgstr "ogiltig rättighetssträng: %s" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "varken den symboliska länken %s eller det den refererar har ändrats\n" + +#: src/chown-core.c:143 +#, c-format +msgid "changed ownership of %s to %s\n" +msgstr "ändrade ägare av %s till %s\n" + +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "ändrade gruppen för %s till %s\n" + +#: src/chown-core.c:148 +#, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "kunde inte ändra ägare på %s till %s\n" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "kunde inte byta grupp för %s till %s\n" + +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "ägarskap för %s bevarat som %s\n" + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "%s tillhör fortfarande grupp %s\n" + +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "byter ägare av %s" + +#: src/chown-core.c:327 +#, c-format +msgid "changing group of %s" +msgstr "ändrar grupp på %s" + +#: src/chown-core.c:345 +#, c-format +msgid "unable to restore permissions of %s" +msgstr "kan inte återställa rättigheter på %s" + +#: src/chown.c:99 +#, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Användning: %s [FLAGGA]... ÄGARE[:[GRUPP]] FIL...\n" +" eller: %s [FLAGGA]... :GRUPP FIL...\n" +" eller: %s [FLAGGA]... --reference=RFIL FIL...\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Ändra ägaren och/eller gruppen på varje FIL till ÄGARE och/eller GRUPP.\n" +"\n" +" -c, --changes som \"verbose\", men endast när ändring görs\n" +" --dereference ändra det varje symbolisk länk pekar på, istället\n" +" för själva länken\n" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" +" --from=NUVARANDE_ÄGARE:NUVARANDE_GRUPP\n" +" byt ägare och/eller grupp endast på filer som nu\n" +" tillhör den angivna ägaren och/eller gruppen. Den\n" +" ena eller andra kan utelämnas, och då ställs inget\n" +" krav på tillhörighet i det avseendet.\n" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet utelämna de flesta felmeddelanden\n" +" --reference=RFIL använd RFILs ägare och grupp istället för angivna\n" +" ÄGARE:GRUPP\n" +" -R, --recursive arbeta med filer och kataloger rekursivt\n" +" -v, --verbose visa ett meddelande för varje bearbetad fil\n" +" --help visa denna hjälptext och avsluta\n" +" --version visa versionsinformation och avsluta\n" +"\n" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" +"\n" +"Ägaren är oförändrad om den utelämnas. Grupp oförändrad om utelämnad,\n" +"men ändrad till inloggningsgrupp om underförstådd av \":\". ÄGARE och\n" +"GRUPP kan vara numeriska såväl som symboliska.\n" + +#: src/chroot.c:45 +#, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"Användning: %s NYROT [KOMMANDO...]\n" +" eller: %s FLAGGA\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" +"Kör KOMMANDO med rootkatalogen satt till NYROOT.\n" +"\n" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" +"\n" +"Om inget kommando angivs, kör \"${SHELL} -i\" (i normalfallet /bin/sh).\n" + +#: src/chroot.c:84 +#, c-format +msgid "cannot change root directory to %s" +msgstr "kan inte ändra rotkatalog till %s" + +#: src/chroot.c:87 +msgid "cannot chdir to root directory" +msgstr "kan inte byta katalog till rotkatalog" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "%s: fil för lång" + +#: src/cksum.c:282 +#, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"Användning: %s [FIL]...\n" +" eller: %s [FLAGGA]\n" +"\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" +"Skriv CRC-kontrollsumma och byteantal för varje FIL.\n" +"\n" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "Richard Stallman och David MacKenzie" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "Användning: %s [FLAGGA]... VÄNSTER_FIL HÖGER_FIL\n" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" +"Jämför de sorterade filerna VÄNSTER_FIL och HÖGER_FIL rad för rad.\n" +"\n" +" -1 skriv ej rader som är unika för vänster fil\n" +" -2 skriv ej rader som är unika för höger fil\n" +" -3 skriv ej rader som är gemensamma för båda filerna\n" + +#: src/copy.c:162 src/du.c:332 +#, c-format +msgid "cannot access %s" +msgstr "kan inte komma åt %s" + +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "kan inte öppna %s för läsning" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, c-format +msgid "cannot fstat %s" +msgstr "kan inte göra fstat på %s" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "hoppar över fil %s eftersom den byttes ut medan den kopierades" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, c-format +msgid "cannot remove %s" +msgstr "kan inte ta bort %s" + +#: src/copy.c:277 +#, c-format +msgid "cannot create regular file %s" +msgstr "kan inte skapa normal fil %s" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, c-format +msgid "reading %s" +msgstr "läser %s" + +#: src/copy.c:362 +#, c-format +msgid "cannot lseek %s" +msgstr "kan inte göra lseek i %s" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, c-format +msgid "writing %s" +msgstr "skriver %s" + +#: src/copy.c:409 src/copy.c:415 +#, c-format +msgid "closing %s" +msgstr "stänger %s" + +#: src/copy.c:610 +#, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: skriva över %s och därmed åsidosätta rättigheterna %04lo? " + +#: src/copy.c:616 +#, c-format +msgid "%s: overwrite %s? " +msgstr "%s: skriva över %s? " + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, c-format +msgid "cannot stat %s" +msgstr "kan inte ta status på %s" + +#: src/copy.c:820 +#, c-format +msgid "omitting directory %s" +msgstr "utesluter katalog %s" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "varning: källfil %s angiven mer än en gång" + +#: src/copy.c:866 src/ln.c:237 +#, c-format +msgid "%s and %s are the same file" +msgstr "%s och %s är samma fil" + +#: src/copy.c:876 +#, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "kan inte skriva över icke-katalog %s med katalog %s" + +#: src/copy.c:893 +#, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "kommer inte skriva över nyligen skapade %s med %s" + +#: src/copy.c:904 +#, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "kan inte skriva över katalog %s med icke-katalog" + +#: src/copy.c:965 +#, c-format +msgid "cannot overwrite directory %s" +msgstr "kan inte skriva över katalog %s" + +#: src/copy.c:974 +#, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "kan inte flytta katalog på icke-katalog: %s -> %s" + +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "säkerhetskopiering av %s skulle förstöra källan; %s inte flyttad" + +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "säkerhetskopiering av %s skulle förstöra källan; %s inte kopierad" + +#: src/copy.c:1013 src/ln.c:273 +#, c-format +msgid "cannot backup %s" +msgstr "kan inte göra säkerhetskopia %s" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr "(säkerhetskopia: %s)" + +#: src/copy.c:1099 +#, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "kan inte kopiera en katalog, %s, på sig själv, %s" + +#: src/copy.c:1106 +#, c-format +msgid "will not create hard link %s to directory %s" +msgstr "kommer inte skapa hård länk %s till katalog %s" + +#: src/copy.c:1132 +#, c-format +msgid "cannot create hard link %s to %s" +msgstr "kan inte skapa hård länk %s till %s" + +#: src/copy.c:1186 +#, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "kan inte flytta %s till en underkatalog till sig själv, %s" + +#: src/copy.c:1229 +#, c-format +msgid "cannot move %s to %s" +msgstr "kan inte flytta %s till %s" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "flytt mellan enheter misslyckades: %s till %s; kan inte ta bort målet" + +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "kan inte kopiera cyklisk symbolisk länk %s" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "%s: kan bara skapa relativa symboliska länkar i aktuell katalog" + +#: src/copy.c:1353 +#, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "kan inte skapa symbolisk länk %s till %s" + +#: src/copy.c:1364 +#, c-format +msgid "cannot create link %s" +msgstr "kan inte skapa länk %s" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, c-format +msgid "cannot create fifo %s" +msgstr "kan inte skapa fifo %s" + +#: src/copy.c:1403 +#, c-format +msgid "cannot create special file %s" +msgstr "kan inte skapa specialfil %s" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, c-format +msgid "cannot read symbolic link %s" +msgstr "kan inte läsa symbolisk länk %s" + +#: src/copy.c:1440 +#, c-format +msgid "cannot create symbolic link %s" +msgstr "kan inte skapa symbolisk länk %s" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, c-format +msgid "failed to preserve ownership for %s" +msgstr "misslyckades att bevara ägare av %s" + +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "%s har okänd filtyp" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "bevarar tider på %s" + +#: src/copy.c:1531 +#, c-format +msgid "failed to preserve authorship for %s" +msgstr "misslyckades att bevara författarskap för %s" + +#: src/copy.c:1549 +#, c-format +msgid "setting permissions for %s" +msgstr "sätter rättigheter på %s" + +#: src/copy.c:1571 src/ln.c:326 +#, c-format +msgid "cannot un-backup %s" +msgstr "kan inte avsäkerhetskopiera %s" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s -> %s (återta säkerhetskopia)\n" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "Torbjörn Granlund, David MacKenzie och Jim Meyering" + +#: src/cp.c:164 src/mv.c:311 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"Användning: %s [FLAGGA]... KÄLLA DEST\n" +" eller: %s [FLAGGA]... KÄLLA... KATALOG\n" +" eller: %s [FLAGGA]... --target-directory=KATALOG KÄLLA...\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Kopiera KÄLLA till DEST, eller flera KÄLLOR till KATALOG.\n" +"\n" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" +"Obligatoriska argument till långa flaggor är obligatoriska även för de " +"korta.\n" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" +" -a, --archive samma som -dpR\n" +" --backup[=STYR] gör en säkerhetskopia av varje befintlig\n" +" destinationsfil\n" +" -b som --backup men tar inget argument\n" +" --copy-contents kopiera innehåll i specialfiler när " +"rekursivt\n" +" -d samma som --no-dereference --preserve=link\n" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" +" --no-dereference följ aldrig symboliska länkar\n" +" -f, --force om en befintlig destinationsfil inte kan\n" +" öppnas, ta bort den och försök igen\n" +" -i, --interactive fråga innan något skrivs över\n" +" -H följ symboliska länkar på kommandoraden\n" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" +" -l, --link länka filer istället för att kopiera\n" +" -L, --dereference följ alltid symboliska länkar\n" +" -p samma som --preserve=mode,ownership," +"timestamps\n" +" --preserve[=ATTR_LISTA] bevara de angivna attributen (standard:\\n\"\n" +" mode,ownership,timestamps), om möjligt \n" +" ytterligare attribut: links, all\\n\"\n" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" +" --no-preserve=ATTR_LISTA bevara inte de angivna attributen\n" +" --parents lägg till källsökvägen till KATALOG\n" +" -P samma som \"--no-dereference\"\n" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" +" -R, -r, --recursive kopiera kataloger rekursivt\n" +" --remove-destination ta bort varje befintlig destinationsfil före\n" +" försök att öppna den (jämför med --force)\n" + +#: src/cp.c:209 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +" --reply={yes,no,query} ange hur en fråga om en befintlig\n" +" destinationsfil skall hanteras\n" +" --sparse=NÄR styr skapande av glesa filer\n" +" --strip-trailing-slashes ta bort avslutande snedstreck från varje \n" +" KÄLLargument\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" +" -s, --symbolic-link gör symboliska länkar istället för att " +"kopiera\n" +" -S, --suffix=ÄNDELSE ersätt den vanliga säkerhetskopieändelsen\n" +" --target-directory=KATALOG flytta alla KÄLLOR till KATALOG\n" + +#: src/cp.c:221 +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +" -u, --update kopiera bara när KÄLLA är nyare än\n" +" destinationen, eller när destinationen\n" +" saknas helt\n" +" -v, --verbose berätta vad som görs\n" +" -x, --one-file-system stanna inom detta filsystem\n" + +#: src/cp.c:230 +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +"\n" +"Normalt upptäcks en gles KÄLLA med en grov heuristik och motsvarande DEST\n" +"görs likaledes gles. Det beteendet väljs av --sparse=auto. Ange\n" +"--sparse=always för att alltid göra DEST gles när KÄLLA innehåller\n" +"tillräckligt långa nollbytesekvenser.\n" +"\n" +"Ange --sparse=never för att hindra skapandet av glesa filer.\n" +"\n" + +#: src/cp.c:239 +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"Ändelsen på säkerhetskopior är \"~\" om inte annat anges av --suffix eller\n" +"SIMPLE_BACKUP_SUFFIX. Versionhanteringen kan styras med --backup-flaggan " +"eller\n" +"med miljövariabeln VERSION_CONTROL. Den kan ha följande värden:\n" +"\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +" none, off gör aldrig säkerhetskopior (ens om --backup anges)\n" +" numbered, t gör numrerade säkerhetskopior\n" +" existing, nil numrerade om det redan finns numrerade, annars enkla\n" +" simple, never gör alltid enkla säkerhetskopior\n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +"Som ett specialfall gör cp en säkerhetskopia av KÄLLA när force- och\n" +"backup-flaggorna är givna, och KÄLLA och DEST är samma namn på en befintlig\n" +"normal fil.\n" + +#: src/cp.c:325 +#, c-format +msgid "failed to preserve times for %s" +msgstr "misslyckades att bevara tider för %s" + +#: src/cp.c:349 +#, c-format +msgid "failed to preserve permissions for %s" +msgstr "misslyckades att bevara rättigheter på %s" + +#: src/cp.c:434 +#, c-format +msgid "cannot make directory %s" +msgstr "kan inte skapa katalog %s" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +msgid "missing file argument" +msgstr "filargument saknas" + +#: src/cp.c:498 +msgid "missing destination file" +msgstr "destinationsfil saknas" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "bearbetar %s" + +#: src/cp.c:546 +#, c-format +msgid "%s: specified target is not a directory" +msgstr "%s: anviget mål är inte en katalog" + +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "kopiering av flera filer, men sista argumentet %s är inte en katalog" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "när sökvägen skall bevaras måste destinationen vara en katalog" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"varning: --version-control (-V) är föråldrat; stöd för det kommer att\n" +"tas bort i någon framtida version. Använd --backup=%s istället." + +#: src/cp.c:972 src/ln.c:464 +msgid "symbolic links are not supported on this system" +msgstr "symboliska länkar stöds inte på detta system" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "kan inte göra både hårda och symboliska länkar" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "säkerhetskopietyp" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "Stuart Kemp och David MacKenzie" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "läsfel" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "indata försvann" + +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s: radnummer utanför intervallet" + +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: \"%s\": radnummer utanför intervallet" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr " vid upprepning %d\n" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s: \"%s\": ingen träff" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "fel i sökning med reguljärt uttryck" + +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "skrivfel för \"%s\"" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "%s: \"+\" eller \"-\" förväntades efter avskiljare" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s: heltal förväntades efter \"%c\"" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "%s: upprepningsoperatorn måste avslutas med \"}\"" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "%s}: heltal krävs mellan \"{\" och \"}\"" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s: avslutande avskiljare \"%c\" saknas" + +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: felaktigt reguljärt uttryck: %s" + +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "%s: felaktigt mönster" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s: radnummer måste vara större än noll" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "radnummer \"%s\" är lägre än föregående radnummer, %s" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "varning: radnummer \"%s\" är detsamma som föregående radnummer" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "saknar formatbeskrivning i ändelse" + +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "felaktig formatbeskrivning i ändelse: %c" + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "felaktig formatbeskrivning i ändelse: \\%.3o" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "saknar %%-formatbeskrivning i ändelse" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "för många %%-formatbeskrivningar i ändelse" + +#: src/csplit.c:1441 +#, c-format +msgid "%s: invalid number" +msgstr "%s: felaktigt tal" + +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "Användning: %s [FLAGGA]... FIL MÖNSTER...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" +"Skriv ut delar av FIL avdelade med MÖNSTER till filer \"xx01\", \"xx02" +"\", ...,\n" +"och skriv ut byte-antal för varje del till standard ut.\n" +"\n" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" +" -b, --suffix-format=FORMAT använd sprintf-FORMAT i stället för %d\n" +" -f, --prefix=PREFIX använd PREFIX i stället för \"xx\"\n" +" -k, --keep-files ta inte bort utfiler vid fel\n" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" +" -n, --digits=SIFFROR använd angivet antal siffror istället för 2\n" +" -s, --quiet, --silent skriv inte ut storleken på utmatningsfiler\n" +" -z, --elide-empty-files ta bort tomma utmatningsfiler\n" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" +"\n" +"Läs standard in om FIL är -. Varje MÖNSTER kan vara:\n" +"\n" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" +"\n" +" HELTAL kopiera till men ej inklusive angivet radnummer\n" +" /MÖNSTER/[AVSTÅND] kopiera till men ej inklusive en rad som matchar\n" +" %MÖNSTER%[AVSTÅND] hoppa över till men ej inklusive, en rad som " +"matchar\n" +" {HELTAL} upprepa föregående mönster HELTAL gånger\n" +" {*} upprepa föregående mönster så många gånger som " +"möjligt\n" +"\n" +"Ett radAVSTÅND är ett \"+\" eller \"-\" följt av ett positivt heltal.\n" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie och Jim Meyering" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "Användning: %s [FLAGGA]... [FIL]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" +"Skriv valda delar av rader från varje FIL till standard ut.\n" +"\n" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" +" -b, --bytes=LISTA mata endast ut dessa byte\n" +" -c, --characters=LISTA mata endast ut dessa tecken\n" +" -d, --delimiter=AVSKILJ använd AVSKILJ i stället för TAB som " +"fältavskiljare\n" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" +" -f, --fields=LISTA mata endast ut dessa fält; skriv också ut rader " +"som\n" +" saknar avkiljare, om inte flaggan -s anges\n" +" -n (ignorerad)\n" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" +" -s, --only-delimited skriv inte ut rader som saknar fältavskiljare\n" +" --output-delimiter=STRÄNG använd STRÄNG som avskiljare vid utmatning\n" +" standard är att avända inmatningsavskiljaren\n" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"Använd en och endast en av -b, -c eller -f. Varje LISTA består av ett\n" +"intervall, eller flera intervall avskilda med komman. Varje intervall\n" +"är en av:\n" +"\n" +" N N:te byte, tecken eller fält, räknat från 1\n" +" N- från N:te byte, tecken eller fält, till radslut\n" +" N-M från N:te till och med M:te byte, tecken eller fält\n" +" -M från första till och med M:te byte, tecken eller fält\n" +"\n" +"Utan FIL eller när FIL är -, läs standard in.\n" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "felaktig byte- eller fältlista" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "endast en sorts lista får användas" + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "saknar lista med positionsangivelser" + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "saknar fältlista" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "avskiljaren måste vara endast ett tecken" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "du måste specificera en lista med byte, tecken eller fält" + +#: src/cut.c:720 +msgid "an input delimiter may be specified only when operating on fields" +msgstr "en indataavskiljare kan endast specificeras vid arbete på fält" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" +"att undertrycka ej avskilda rader är endast rimligt\n" +"\tvid arbete på fält" + +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" +"Användning: %s [FLAGGA]... [+FORMAT]\n" +" eller: %s [-u|--utc|--universal] [MMDDhhmm[[ÅÅ]ÅÅ][.ss]]\n" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" +"Visa aktuell tid på angivet FORMAT, eller ställ systemklockan.\n" +"\n" +" -d, --date=STRÄNG visa tid som beskrivs av STRÄNG, inte \"nu\"\n" +" -f, --file=DATUMFIL samma som --date en gång per rad i DATUMFIL\n" +" -ITIDSSPEC, --iso-8601[=TIDSSPEC] skriv ut datum och/eller tid som\n" +" konformerar mot ISO-8601. TIDSSPEC=\"date\"\n" +" ger endast datum. \"hours\", \"minutes\" eller\n" +" \"seconds\" ger datum och tid angiven med " +"timmar,\n" +" minuter eller sekunder som upplösning. Om " +"TIDSSPEC\n" +" utelämnas motsvarar det TIDSSPEC=\"date\".\n" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" +" -r, --reference=FIL visa den tidpunkt då FIL senast modifierades\n" +" -R, --rfc-822 skriv ut en datumsträng enligt RFC822-formatet\n" +" -s, --set=STRÄNG sätt tiden som den beskrivs i STRÄNG\n" +" -u, --utc, --universal sätt eller visa tiden i Universell Tid (UTC)\n" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" +"\n" +"FORMAT kontrollerar utskriften. Den enda giltiga flaggan för den andra\n" +"formen specifierar Universell Tid (UTC). Tolkade sekvenser är:\n" +"\n" +" %% ett literalt %\n" +" %a lokalanpassat veckodagsnamn (mån..sön)\n" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" +" %A veckodag enligt lokal (måndag-söndag), fullständigt (variabel längd)\n" +" %b månad enligt lokal (jan-dec), förkortad\n" +" %B månad enligt lokal (januari-december), fullständigt (variabel längd)\n" +" %c datum och tid enligt (lör 04 nov 12.02.33 CET 1989)\n" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" +" %C århundrade (heltalsdelen av år dividerat med 100) [00-99]\n" +" %d dag i månad (01-31)\n" +" %D datum enligt amerikanskt format (mm/dd/åå)\n" +" %e dag i månad, inledande nolla ersatt med blanksteg ( 1-31)\n" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" +" %F samma som %Y-%m-%d\n" +" %g det 2-siffriga året motsvarande %V-veckonumret\n" +" %G det 4-siffriga året motsvarande %V-veckonumret\n" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" +" %h samma som %b\n" +" %H timme (00-23)\n" +" %I timme (01-12)\n" +" %j dag på året (001-366)\n" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" +" %k timme ( 0-23)\n" +" %l timme ( 1-12)\n" +" %m månad (01-12)\n" +" %M minut (00-59)\n" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" +" %n en ny rad\n" +" %N nanosekunder (000000000..999999999)\n" +" %p FM eller EM i versaler enligt lokal (tom i många lokaler)\n" +" %P fm eller em i gemener enligt lokal (tom i många lokaler)\n" +" %r tid, 12-timmars (hh.mm.ss [FE]M)\n" +" %R tid, 2f-timmars (hh.mm)\n" +" %s sekunder sedan \"1970-01-01 00.00.00 UTC\" (ett GNU-tillägg)\n" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" +" %S sekunder (00-60), 60 behövs för att klara en skottsekund\n" +" %t en horisontell tabulator\n" +" %T tid, 24-timmars (hh.mm.ss)\n" +" %u dag i veckan (1-7), 1 betyder måndag\n" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" +" %U veckonummer, med söndag som första dag i veckan (00-53)\n" +" %V veckonummer, med måndag som första dag i veckan (01-53)\n" +" %w veckodag (0-6); söndag representeras som 0\n" +" %W veckonummer, med måndag som första dag i veckan (00-53)\n" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" +" %x datum på lokalformat (åå-mm-dd)\n" +" %X tid på lokalformat (%H.%M.%S)\n" +" %y sista två siffrorna i årtalet (00-99)\n" +" %Y år (1970-)\n" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" +" %z RFC-822-numerisk tidszon (+0100) (ett tillägg som inte är standard)\n" +" %Z tidszon (t.ex. CET), eller inget om tidszonen inte kunde bestämmas\n" +"\n" +"Normalt fyller date ut numeriska fält med nollor. GNU date förstår\n" +"följande modifierare mellan \"%\" och en numerisk anvisning.\n" +"\n" +" \"-\" (bindestreck) fyll inte ut fältet\n" +" \"_\" (understrykning) fyll ut fältet med blanksteg\n" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "standard in" + +#: src/date.c:268 src/date.c:460 +#, c-format +msgid "invalid date `%s'" +msgstr "ogiltigt datum \"%s\"" + +#: src/date.c:364 +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "flaggorna för att ange datum för utskrift är ömsesidigt uteslutande" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "" +"argumenten för utskrift och för tidsinställning får inte användas tillsammans" + +#: src/date.c:377 +#, c-format +msgid "too many non-option arguments: %s%s" +msgstr "för många argument som inte är flaggor: %s%s" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" +"flaggan \"%s\" saknar ett inledande \"+\";\n" +"när ett argument som specificerar tiden används måste eventuellt argument, \n" +"som inte är en flagga, vara en formatsträng som börjar med \"+\"" + +#: src/date.c:397 +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "en formatsträng får inte anges när flaggan --rfc-822 (-R) används" + +#: src/date.c:433 +msgid "undefined" +msgstr "odefinierad" + +#: src/date.c:435 +msgid "cannot get time of day" +msgstr "kan få fram tid på dagen" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "kan inte ställa klockan" + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "Paul Rubin, David MacKenzie och Stuart Kemp" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "Användning: %s [FLAGGA]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" +"Kopiera en fil med konvertering och formatering enligt flaggorna.\n" +"\n" +" bs=BYTE framtvinga ibs=BYTE och obs=BYTE\n" +" cbs=BYTE konvertera BYTE byte åt gången\n" +" conv=NYCKELORD konvertera filen i enlighet med kommaseparerade nyckelord\n" +" count=BLOCK kopiera endast BLOCK inblock\n" +" ibs=BYTE läs BYTE byte åt gången\n" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" +" if=FIL läs från FIL istället för standard in\n" +" obs=BYTE skriv BYTE byte åt gången\n" +" of=FIL skriv FIL istället för standard ut\n" +" seek=BLOCK hoppa över BLOCK obs-stora block från början av utfil\n" +" skip=BLOCK hoppa över BLOCK ibs-stora block från början av infil\n" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" +"\n" +"BLOCK och BYTE kan följas av av de följande multiplikativa ändelserna:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1 000 000, M 1 048 576,\n" +"GB 1 000 000 000, G 1 073 741 824, och så vidare för T, P, E, Z, Y.\n" +"Möjliga NYCKELORD är:\n" +"\n" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" +" ascii från EBCDIC till ASCII\n" +" ebcdic från ASCII till EBCDIC\n" +" ibm från ASCII till en annan EBCDIC\n" +" block fyll ut nyradsavslutade poster med blanktecken till cbs-storlek\n" +" unblock ersätt avslutande blanktecken med nyrad i cbs-stora poster\n" +" lcase ändra versaler till gemena\n" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" +" notrunc stympa inte utfilen\n" +" ucase ändra gemena till versaler\n" +" swab byt plats på varje par av byte i indata\n" +" noerror fortsätt efter läsfel\n" +" sync fyll ut varje indatablock med nulltecken till ibs-storlek; när\n" +" det används med block eller unblock, fyll ut med blanktecken\n" +" istället för nulltecken\n" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "%s+%s poster in\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "%s+%s poster ut\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "stympad post" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "stympade poster" + +#: src/dd.c:382 +#, c-format +msgid "closing input file %s" +msgstr "stänger infil %s" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "stänger utdatafil %s" + +#: src/dd.c:469 +#, c-format +msgid "writing to %s" +msgstr "skrivning till %s" + +#: src/dd.c:501 +#, c-format +msgid "invalid conversion: %s" +msgstr "ogiltig konvertering: %s" + +#: src/dd.c:557 +#, c-format +msgid "unrecognized option %s" +msgstr "okänd flagga %s" + +#: src/dd.c:610 +#, c-format +msgid "unrecognized option %s=%s" +msgstr "okänd flagga %s=%s" + +#: src/dd.c:616 +#, c-format +msgid "invalid number %s" +msgstr "ogiltigt antal %s" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"endast en konvertering av {ascii,ebcdic,ibm}, {lcase,ucase}, {block," +"unblock}, {unblock,sync}" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" +"varning: går runt fel i kärnan i lseek för fil (%s)\n" +" med mt_type=0x%0lx -- se för en lista av typer" + +#: src/dd.c:1170 src/dd.c:1188 +#, c-format +msgid "opening %s" +msgstr "öppnar %s" + +#: src/dd.c:1196 +msgid "file offset out of range" +msgstr "filposition utanför intervallet" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "passerar %s byte i utdatafil %s" + +#: src/df.c:49 +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "Torbjörn Granlund, David MacKenzie, Larry McVoy och Paul Eggert" + +#: src/df.c:153 +msgid "Filesystem Type" +msgstr "Filsystem Typ" + +#: src/df.c:155 +msgid "Filesystem " +msgstr "Filsystem " + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr " Inoder IAnvända IFria IAnv%%" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Storlek Anvnt Tillg Anv%%" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Storlek Använt Tillg Anv%%" + +#: src/df.c:167 +#, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr " %4s-block Använt Tillgängl Kapac" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr " %4s-block Använt Tillgängl Anv%%" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr " Monterat på\n" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" +"Visa information om filsystemet där varje FIL ligger, eller annars alla\n" +"filsystem.\n" +"\n" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" +" -a, --all tag med filsystem som har 0 block\n" +" -B, --block-size=STRL använd STRL byte stora block\n" +" -h, --human-readable skriv storlekar i läsbart format (t.ex. 1K 234M 2G)\n" +" -H, --si d:o, men använd multipler av 1000 istället för 1024\n" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" +" -i, --inodes skriv inodinformation istället för blockinformation\n" +" -k som --block-size=1K\n" +" -l, --local visa endast lokala filsystem\n" +" --no-sync anropa inte sync innan information hämtas " +"(normalfall)\n" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" +" -P, --portability använd POSIX-format\n" +" --sync anropa sync innan information hämtas\n" +" -t, --type=TYP begränsa listningen till filsystem av typen TYP\n" +" -T, --print-type skriv ut filsystemtyp\n" +" -x, --exclude-type=TYP utelämna filsystem av typ TYP\n" +" -v (ignorerad)\n" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" +"\n" +"STRL kan vara (eller kan vara ett heltal eventuellt följt av) en av de\n" +"följande: kB 1000, K 1024, MB 1 000 000, M 1 048 576, och så vidare\n" +"för G, T, P, E, Z, Y.\n" + +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "filsystemstypen %s är både vald och exkluderad" + +#: src/df.c:903 +msgid "Warning: " +msgstr "Varning: " + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "%skan inte läsa tabellen över monterade filsystem" + +#: src/dircolors.c:103 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "Användning: %s [FLAGGA]... [FIL]\n" + +#: src/dircolors.c:104 +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"Skriv ut kommandon för att sätta miljövariabeln LS_COLORS.\n" +"\n" +"Bestäm utformat:\n" +" -b, --sh, --bourne-shell skriv kod för att sätta LS_COLORS i Bourne-" +"skal\n" +" -c, --csh, --c-shell skriv kod för att sätta LS_COLORS i C-skal\n" +" -p, --print-database visa standardvärden\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" +"\n" +"Om FIL anges, läs den för att bestämma vilka färger som skall användas till\n" +"vilka filtyper och ändelser. Annars används en fördefinierad databas. För\n" +"detaljer om formatet på dessa filer, kör \"dircolors --print-database\".\n" + +#: src/dircolors.c:299 +#, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s:%lu: ogiltig rad; inget andra element" + +#: src/dircolors.c:371 +#, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s:%lu: okänt nyckelord %s" + +#: src/dircolors.c:372 +msgid "" +msgstr "" + +#: src/dircolors.c:467 +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" +"flaggorna för att skriva ut dircolors interna databas och att välja en\n" +"skalsyntax är ömsesidigt uteslutande" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" +"inget FILargument får ges tillsammans med flaggan för att visa dircolors\n" +"interna databas" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "ingen SHELL-miljövariabel, och ingen flagga för skalvariant angiven" + +#: src/dirname.c:33 src/pathchk.c:59 +msgid "David MacKenzie and Jim Meyering" +msgstr "David MacKenzie och Jim Meyering" + +#: src/dirname.c:46 +#, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"Användning: %s NAMN\n" +" eller: %s FLAGGA\n" + +#: src/dirname.c:51 +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" +"Skriv ut NAMN med dess avslutande /komponent borttagen; om NAMN inte\n" +"innehåller något /, skriv \".\" (som betyder aktuell katalog)\n" + +#: src/du.c:49 +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "" +"Torbjörn Granlund, David MacKenzie, Larry McVoy, Paul Eggert och Jim Meyering" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" +"Sammanfatta diskanvändningen för varje FIL, rekursivt för kataloger.\n" +"\n" + +#: src/du.c:182 +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" +" -a, --all skriv ut värden för alla filer, inte bara kataloger\n" +" --apparent-size skriv skenbar storlek, istället för diskanvändning;\n" +" även om den skenbara storleken normalt är mindre, " +"kan\n" +" den vara större på grund av hål i (\"glesa\") " +"filer,\n" +" intern fragmentering, indirekta block, och " +"liknande\n" +" -B, --block-size=STRL använd STRL byte stora block\n" +" -b, --bytes likvärdigt med \"--apparent-size --block-size=1\"\n" +" -c, --total rapportera totalsumman\n" +" -D, --dereference-args följ FILer som är symboliska länkar\n" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" +" -h, --human-readable skriv storlekar i läsbart format (t.ex. 1K 234M 2G)\n" +" -H, --si d:o, men använd multipler av 1000 istället för 1024\n" +" -k som --block-size=1K\n" +" -l, --count-links räkna storlek flera gånger för hårda länkar\n" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" +" -L, --dereference följ alla symboliska länkar\n" +" -S, --separate-dirs ta inte med storlek på underkataloger\n" +" -s, --summarize visa bara summan för varje argument\n" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" +" -x, --one-file-system hoppa över kataloger på andra filsystem\n" +" -X FIL, --exclude-from=FIL hoppa över filer som matchar mönster i FIL.\n" +" --exclude=MÖNSTER hoppa över filer som matchar MÖNSTER.\n" +" --max-depth=N skriv summan för en katalog (eller fil, med --all)\n" +" endast om den är N eller färre nivåer nedanför\n" +" kommandoradsargumentet; --maxdepth=0 är detsamma " +"som\n" +" --summarize\n" + +#: src/du.c:337 +#, c-format +msgid "cannot change to parent of directory %s" +msgstr "kan inte byta till föräldern till katalog %s" + +#: src/du.c:345 +#, c-format +msgid "cannot change to directory %s" +msgstr "kan inte byta till katalog %s" + +#: src/du.c:352 +#, c-format +msgid "cannot read directory %s" +msgstr "kan inte läsa katalog %s" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "totalt" + +#: src/du.c:641 +#, c-format +msgid "invalid maximum depth %s" +msgstr "ogiltigt maxdjup %s" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "kan inte samtidigt bara visa summan och alla storlekar" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "varning: att summera är detsamma som att använda --max-depth=0" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "varning: att summera står i konflikt med --max-depth=%d" + +#: src/echo.c:77 +#, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "Användning: %s [FLAGGA]... [STRÄNG]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" +"Eka STRÄNG(ar) till standard ut.\n" +"\n" +" -n skriv inte ut det efterföljande nyrad\n" +" -e aktivera tolkning av bakstrecksekvenserna uppräknade " +"nedan\n" +" -E avaktivera tolkningen av dessa sekvenser i STRÄNG(ar)\n" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" +"\n" +"Utan -E kommer följande sekvenser att förstås och infogas:\n" +"\n" +" \\NNN det tecken, vars ASCII-värde är NNN (oktalt)\n" +" \\\\ omvänt snedstreck\n" +" \\a varning (SIGNAL)\n" +" \\b backsteg\n" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\c utelämna nyrad på slutet\n" +" \\f sidmatning\n" +" \\n ny rad\n" +" \\r vagnretur\n" +" \\t horisontell tabulator\n" +" \\v vertikal tabulator\n" + +#: src/env.c:93 +msgid "Richard Mlynarik and David MacKenzie" +msgstr "Richard Mlynarik och David MacKenzie" + +#: src/env.c:119 +#, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "Användning: %s [FLAGGA]... [-] [NAMN=VÄRDE]... [KOMMANDO [ARG]...]\n" + +#: src/env.c:122 +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" +"Sätt varje NAMN till VÄRDE i miljön och kör KOMMANDO.\n" +"\n" +" -i, --ignore-environment börja med en tom miljö\n" +" -u, --unset=NAMN ta bort variabeln från miljön\n" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" +"\n" +"Ett ensamt - medför -i. Om inget KOMMANDO, skriv ut den resulterande " +"miljön.\n" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Konvertera tabulatorer i varje FIL till mellanslag, skriv till standard ut.\n" +"Utan FIL eller om FIL är -, läs standard in.\n" +"\n" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" +" -i, --initial konvertera inte TAB efter icke-blanktecken\n" +" -t, --tabs=ANTAL använd ANTAL tecken mellan tabulatorer, ej 8\n" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" +" -t, --tabs=LISTA använd kommaseparerad lista med tabulatorpositioner\n" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "storleken på tab innehåller ett felaktigt tecken" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "storleken på tab kan inte vara 0" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "storleken på tabbarna måste vara stigande" + +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "flagga \"-LIST\" är föråldrad, använd \"-t LIST\"" + +#: src/expr.c:90 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"Användning: %s UTTRYCK\n" +" eller: %s FLAGGA\n" +"\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" +"\n" +"Skriv ut värdet på UTTRYCK till standard ut. En tom rad nedan separerar " +"grupper\n" +"med ökande prioritetsordning. UTTRYCK kan vara:\n" +"\n" +" ARG1 | ARG2 ARG1 om det varken är null eller 0, annars ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 om inget av argumenten är null eller 0, annars 0\n" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" +"\n" +" ARG1 < ARG2 ARG1 är mindre än ARG2\n" +" ARG1 <= ARG2 ARG1 är mindre än eller lika med ARG2\n" +" ARG1 = ARG2 ARG1 är lika med ARG2\n" +" ARG1 != ARG2 ARG1 är inte lika med ARG2\n" +" ARG1 >= ARG2 ARG1 är större än eller lika med ARG2\n" +" ARG1 > ARG2 ARG1 är större än ARG2\n" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" +"\n" +" ARG1 + ARG2 aritmetisk summa av ARG1 och ARG2\n" +" ARG1 - ARG2 aritmetisk differens mellan ARG1 och ARG2\n" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" +"\n" +" ARG1 * ARG2 aritmetisk produkt av ARG1 och ARG2\n" +" ARG1 / ARG2 aritmetisk kvot av ARG1 dividerat med ARG2\n" +" ARG1 % ARG2 aritmetisk rest av ARG1 dividerat med ARG2\n" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" +"\n" +" STRÄNG : REGUTTR förankrad mönstersökning efter REGUTTR i STRÄNG\n" +"\n" +" match STRÄNG REGUTTR samma som STRÄNG : REGUTTR\n" +" subtr STRÄNG POS LÄNGD delsträng av STRÄNG, POS räknas från 1\n" +" index STRÄNG BOKST index i STRÄNG där BOKST påträffats, eller 0\n" +" length STRÄNG längden av STRÄNG\n" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" +" + ELEMENT tolka ELEMENT som en sträng, även om den är " +"ett\n" +" nyckelord som \"match\" eller en operator som " +"\"/\"\n" +" ( UTTRYCK ) värdet av UTTRYCK\n" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" +"\n" +"Var medveten om att vissa skal tolkar många operatorer, som därför måste\n" +"markeras. Jämförelser är aritmetiska om båda ARG är siffror, annars\n" +"lexikografiska. Mönsterträffar returnerar strängen som stämmer\n" +"mellan \\( och \\), eller tom sträng. Om \\( och \\) inte använts, " +"returneras \n" +"antalet tecken som överensstämmer, eller 0.\n" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +msgid "syntax error" +msgstr "syntaxfel" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" +"varning: icke-portabla BRE: \"%s\": användning av \"^\" som första tecken i " +"ett\n" +"grundläggande reguljärt uttryck är inte portabelt; det ignoreras" + +#: src/expr.c:586 src/expr.c:625 +msgid "non-numeric argument" +msgstr "ickenumeriskt argument" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "division med noll" + +#: src/factor.c:74 +#, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"Användning: %s [TAL]...\n" +" eller: %s FLAGGA\n" +"\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" +"Skriv ut faktorerna i NUMMER. Om inget argument angivits, läs standard in.\n" +"\n" + +#: src/factor.c:85 +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" +"\n" +" Skriv ut primfaktorerna till alla angivna heltal NUMMER. Om inga argument\n" +" angivits på kommandoraden, läses de från standard in.\n" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "\"%s\" är inte ett giltigt positivt heltal" + +#: src/false.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Användning: %s [ignorerade kommandoradsargument]\n" +" eller: %s FLAGGA\n" +"Avsluta med en statuskod indikerar misslyckande.\n" +"\n" +"Dessa flaggnamn kan inte förkortas.\n" +"\n" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "Användning: %s [-SIFFROR] [FLAGGA]... [FIL]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" +"Formatera om varje stycke i FIL(er), skriv till standard ut.\n" +"Utan FIL eller om FIL är -, läs standard in.\n" +"\n" + +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" +" -c, --crown-margin bibehåll indragning av de två första raderna\n" +" -p, --prefix=STRÄNG kombinera endast rader som har STRÄNG som " +"prefix\n" +" -s, --split-only dela långa rader, men justera ej\n" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" +" -t, --tagged-paragraph indrag av första raden inte samma som andra " +"raden\n" +" -u, --uniform-spacing ett mellanslag mellan ord, två efter meningar\n" +" -w, --width=NUMMER maximal radlängd (standardvärde 75 kolumner)\n" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" +"\n" +"I -wNUMMER kan bokstaven \"w\" utelämnas.\n" + +#: src/fmt.c:345 +#, c-format +msgid "invalid width option: `%s'" +msgstr "ogiltig radlängdsflagga: \"%s\"" + +#: src/fmt.c:385 +#, c-format +msgid "invalid width: `%s'" +msgstr "ogiltig radlängd: \"%s\"" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" +"Bryt inmatade rader i varje fil (standard in som standard) och skriv till\n" +"standard ut.\n" +"\n" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" +" -b, --bytes räkna byte i stället för kolumner\n" +" -s, --spaces bryt vid mellanrum\n" +" -w, --width=ANTAL använd ANTAL kolumner i stället för 80\n" + +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "flagga \"%s\" är föråldrad, använd \"%s\"" + +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "felaktigt antal kolumner: \"%s\"" + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Skriv de 10 första raderna av varje FIL till standard ut.\n" +"Vid fler än en FIL, föregå varje fil med ett huvud med filens namn.\n" +"Utan FIL eller när FIL är -, läs standard in.\n" +"\n" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" +" -c, --bytes=STORLEK skriv de första STORLEKen byte\n" +" -n, --lines=ANTAL skriv de första ANTALet rader i stället för 10\n" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" +" -q, --quiet, --silent skriv aldrig huvuden med filnamn\n" +" -v, --verbose skriv alltid huvuden med filnamn\n" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" +"\n" +"STORLEK kan ha en multiplikator som ändelse: b för 512, k för 1k, m för 1M.\n" + +#: src/head.c:190 +#, c-format +msgid "cannot reposition file pointer for %s" +msgstr "kan inte flytta filpekaren för %s" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "%s: %s är så stor att den inte kan representeras" + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "antal rader" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "antal byte" + +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "felaktigt antal rader" + +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "felaktigt antal byte" + +#: src/head.c:341 +#, c-format +msgid "unrecognized option `-%c'" +msgstr "okänd flagga \"-%c\"" + +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "flagga \"-%s\" är föråldrad, använd \"-%c %.*s%.*s%s\"" + +#: src/hostid.c:48 +#, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" +"Användning: %s\n" +" eller: %s FLAGGA\n" +"Skriv ut den numeriska identifieraren (i hexadecimal form) för aktuell " +"värd.\n" +"\n" + +#: src/hostname.c:67 +#, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" +"Användning: %s [NAMN]\n" +" eller: %s FLAGGA\n" +"Skriv ut eller ställ in värdnamnet på aktuellt system.\n" +"\n" + +#: src/hostname.c:104 +#, c-format +msgid "cannot set hostname to `%s'" +msgstr "kan inte sätta värdnamn till \"%s\"" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "kan inte sätta värdnamn; detta system saknar denna funktionen" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "kan inte avgöra värdnamnet" + +#: src/id.c:36 +msgid "Arnold Robbins and David MacKenzie" +msgstr "Arnold Robbins och David MacKenzie" + +#: src/id.c:87 +#, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "Användning: %s [FLAGGA]... [ANVÄNDARNAMN]\n" + +#: src/id.c:88 +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" +"Skriv ut information om ANVÄNDARNAMN, eller den aktuella användaren.\n" +"\n" +" -a ignoreras, finns för kompabilitet med andra versioner\n" +" -g, --group skriv ut endast gällande grupp-id\n" +" -G, --groups skriv ut alla grupp-id\n" +" -n, --name skriv ut ett namn i stället för ett nummer, gäller -ugG\n" +" -r, --real skriv ut verklig ID i stället för den gällande, gäller -" +"ugG\n" +" -u, --user skriv ut endast gällande användar-id\n" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" +"\n" +"Utan någon FLAGGA skrivs lite användbar, identifierad information ut.\n" + +#: src/id.c:162 +msgid "cannot print only user and only group" +msgstr "kan inte skriva bara användare och bara grupp" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "kan inte skriva ut bara namn eller faktiskt ID på standardformat" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "%s: Ingen sådan användare" + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "kan inte hitta namn för användar-id %u" + +#: src/id.c:235 +#, c-format +msgid "cannot find name for group ID %u" +msgstr "kan inte hitta namn för grupp-id %u" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "kan inte hämta tilläggsgrupplista" + +#: src/id.c:385 +msgid " groups=" +msgstr " grupper=" + +#: src/install.c:269 +msgid "the strip option may not be used when installing a directory" +msgstr "strip-flaggan kan inte användas vid installation av en katalog" + +#: src/install.c:292 src/mkdir.c:140 +#, c-format +msgid "invalid mode %s" +msgstr "ogiltig rättighet %s" + +#: src/install.c:307 src/install.c:371 +#, c-format +msgid "creating directory %s" +msgstr "skapar katalog %s" + +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "" +"installation av flera filer, men sista argumentet, %s, är inte en katalog" + +#: src/install.c:435 +#, c-format +msgid "%s is a directory" +msgstr "%s är en katalog" + +#: src/install.c:495 +#, c-format +msgid "cannot obtain time stamps for %s" +msgstr "kan inte få tidsstämpel för %s" + +#: src/install.c:507 +#, c-format +msgid "cannot set time stamps for %s" +msgstr "kan inte sätta tidsstämpel för %s" + +#: src/install.c:528 +msgid "fork system call failed" +msgstr "systemanropet fork misslyckades" + +#: src/install.c:532 +msgid "cannot run strip" +msgstr "kan inte köra strip" + +#: src/install.c:539 +msgid "strip failed" +msgstr "strip misslyckades" + +#: src/install.c:560 +#, c-format +msgid "invalid user %s" +msgstr "ogiltig användare %s" + +#: src/install.c:578 +#, c-format +msgid "invalid group %s" +msgstr "ogiltig grupp %s" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"Användning: %s [FLAGGA]... KÄLLA DEST (format 1)\n" +" eller: %s [FLAGGA]... KÄLLA... KATALOG (format 2)\n" +" eller: %s -d [FLAGGA]... KATALOG... (format 3)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" +"De första två formaten kopierar KÄLLA till DEST eller flera KÄLLor till\n" +"en befintlig KATALOG, samtidigt som rättigheter och ägare/grupp sätts.\n" +"Det tredje formatet skapar KATALOG(er) inklusive eventuella " +"föräldrakataloger.\n" +"\n" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" +" --backup[=STYR] säkerhetskopiera varje befintlig destination\n" +" -b som --backup, fast tar inget argument\n" +" -c (ignoreras)\n" +" -d, --directory betrakta alla argument som kataloger; skapa dem\n" +" inklusive eventuella föräldrakataloger\n" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" +" -D skapa alla föräldrakataloger till DEST; kopiera sedan\n" +" KÄLLA till DEST; användbart i format 1\n" +" -g, --group=GRUPP sätt grupptillhörighet, istället för processens grupp\n" +" -m, --mode=RÄTTIGHET sätt rättigheter (som för chmod), istället för rwxr-" +"xr-x\n" +" -o, --owner=ÄGARE sätt ägare (endast superanvändare)\n" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" +" -p, --preserve-timestamps sätt KÄLLors åtkomst- och modifikationstid även " +"på\n" +" destinationsfiler\n" +" -s, --strip ta bort symboltabeller, endast för format 1 och 2\n" +" -S, --suffix=ÄNDELSE ersätt den vanliga säkerhetskopieändelsen\n" +" --verbose skriv namnet på varje katalog som skapas\n" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"\n" +"Ändelsen på säkerhetskopior är \"~\" om inte annat anges av --suffix eller\n" +"SIMPLE_BACKUP_SUFFIX. Versionhanteringen kan styras med --backup-flaggan " +"eller\n" +"med miljövariabeln VERSION_CONTROL. Den kan ha följande värden:\n" +"\n" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "Användning: %s [FLAGGA]... FIL1 FIL2\n" + +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" +"För varje par av inmatade rader med identiska join-fält, skriv en rad\n" +"till standard ut. Om inget annat anges används det första fältet som\n" +"join-fält avskiljda med blanktecken. När FIL1 eller FIL2 (inte båda)\n" +"är -, läs standard in.\n" +"\n" +" -a FILNUM skriv omatchade rader från fil FILNUM, där FILNUM är 1 " +"eller\n" +" 2, motsvarande FIL1 eller FIL2\n" +" -e TOM ersätt tomma inmatningsfält med TOM\n" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" +" -i, --ignore-case ignorera skiftläge när fält jämförs\n" +" -j FÄLT (Förlegad) samma som \"-1 FÄLT -2 FÄLT\"\n" +" -j1 FÄLT (Förlegad) samma som \"-1 FÄLT\"\n" +" -j2 FÄLT (Förlegad) samma som \"-2 FÄLT\"\n" +" -o FORMAT följ FORMAT vid skapandet av de utmatade raderna\n" +" -t TECKEN använd TECKEN som fältseparator för in- och utmatning\n" + +#: src/join.c:165 +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" +" -v FILNUM som -a FILNUM, men undertrycker förenade utmatade rader\n" +" -1 FÄLT förena med FÄLT i fil 1\n" +" -2 FÄLT förena med FÄLT i fil 2\n" + +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" +"\n" +"Om inte -t TECKEN är givet, separeras fält av föregående mellanslag\n" +"som ignoreras, annars separeras fält av TECKEN. Varje FÄLT är ett\n" +"fältnummer räknat från 1. FORMAT är en eller flera specifikationer\n" +"åtskilda med komma eller mellanslag, var och en är \"FILNUM.FÄLT\"\n" +"eller \"0\". Normalvärdet för FORMAT matar ut de förenade fälten, de\n" +"kvarvarande fälten från FIL1, de kvarvarande fälten från FIL2, allt\n" +"separerat med TECKEN.\n" + +#: src/join.c:645 +#, c-format +msgid "invalid field specifier: `%s'" +msgstr "felaktig specifikation av fält: \"%s\"" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, c-format +msgid "invalid field number: `%s'" +msgstr "felaktigt fältnummer: \"%s\"" + +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "felaktigt filnummer i fältspec: \"%s\"" + +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "felaktigt fältnummer för fil 1: \"%s\"" + +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "felaktigt fältnummer för fil 2: \"%s\"" + +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "för många argument som inte är flaggor" + +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "för få argument som inte är flaggor" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "båda filerna kan inte vara standard in" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" +"Användning: %s [-s SIGNAL | -SIGNAL] PID...\n" +" eller: %s -l [SIGNAL]...\n" +" eller: %s -t [SIGNAL]...\n" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" +"Skickar signaler till processer, eller räknar upp signaler.\n" +"\n" + +#: src/kill.c:106 +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" ange namnet eller numret på signalen som skall skickas\n" +" -l, --list räkna upp signalnamn, eller konvertera signalnamn till/" +"från\n" +" nummer\n" +" -t, --table skriv en tabell med signalinformation\n" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" +"\n" +"SIGNAL kan vara ett signalnamn som \"HUP\" eller ett signalnummer som\n" +"\"1\", eller en slutstatus från en process avslutad av en signal. PID\n" +"är ett heltal; om det är negativt identifierar det en processgrupp.\n" + +#: src/kill.c:163 +#, c-format +msgid "%s: invalid signal" +msgstr "%s: felaktig signal" + +#: src/kill.c:262 +#, c-format +msgid "missing operand after `%s'" +msgstr "operand saknas efter \"%s\"" + +#: src/kill.c:274 +#, c-format +msgid "%s: invalid process id" +msgstr "%s: ogiltigt process-id" + +#: src/kill.c:327 +#, c-format +msgid "invalid option -- %c" +msgstr "ogiltig flagga -- %c" + +#: src/kill.c:336 +#, c-format +msgid "%s: multiple signals specified" +msgstr "%s: flera signaler angivna" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "multipla -l eller -t-flaggor angivna" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "kan inte kombinera signal med -l eller -t" + +#: src/link.c:51 +#, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"Användning: %s FIL1 FIL2\n" +" eller: %s [FLAGGA]\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" +"Anropa funktionen link för att skapa en länk som heter FIL2 till en\n" +"befintlig FIL1.\n" +"\n" + +#: src/link.c:98 +#, c-format +msgid "cannot create link %s to %s" +msgstr "kan inte skapa länk %s till %s" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "Mike Parker och David MacKenzie" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "" +"%s: varning: att göra en hård länk till en symbolisk länk är inte portabelt" + +#: src/ln.c:174 +#, c-format +msgid "%s: hard link not allowed for directory" +msgstr "%s: hård länk inte tillåten för katalog" + +#: src/ln.c:246 +#, c-format +msgid "%s: cannot overwrite directory" +msgstr "%s: kan inte skriva över katalog" + +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "%s: ersätt %s? " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: Filen finns" + +#: src/ln.c:304 +#, c-format +msgid "create symbolic link %s to %s" +msgstr "skapa symbolisk länk %s till %s" + +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "skapar hård länk %s till katalog %s" + +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "skapa symbolisk länk %s till %s" + +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "skapar hård länk %s till %s" + +#: src/ln.c:339 +#, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"Användning: %s [FLAGGA]... MÅL [LÄNKNAMN]\n" +" eller: %s [FLAGGA]... MÅL... KATALOG\n" +" eller: %s [FLAGGA]... --target-directory=KATALOG MÅL...\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" +"Skapa en länk till det angivna MÅLet med namnet LÄNKNAMN. Om LÄNKNAMN\n" +"utelämnas skapas en länk med samma basnamn som MÅL i aktuell katalog. När " +"man\n" +"använder den andra formen med mer än ett MÅL, skall det sista argumentet " +"vara\n" +"en katalog; skapa länkar i KATALOG till varje MÅL. Skapa hårda länkar om " +"inget\n" +"annat anges, symboliska länkar med --symbolic. När hårda länkar skapas " +"måste\n" +"varje MÅL existera.\n" +"\n" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" +" --backup[=STYR] säkerhetskopiera varje befintlig destination\n" +" -b som --backup, fast tar inget argument\n" +" -d, -F, --directory gör hårda länkar för kataloger\n" +" (endast superanvändare)\n" +" -f, --force ta bort befintliga destinationsfiler\n" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" +" -n, --no-dereference behandla destination som är symbolisk länk " +"till\n" +" en katalog som om det vore en vanlig fil\n" +" -i, --interactive fråga om destinationer skall tas bort\n" +" -s, --symbolic gör symboliska länkar istället för hårda\n" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" +" -S, --suffix=ÄNDELSE ersätt den vanliga säkerhetskopieändelsen\n" +" --target-directory=KATALOG ange KATALOG som länkarna skall skapas i\n" +" -v, --verbose skriv namnet på varje fil före länkning\n" + +#: src/ln.c:521 +#, c-format +msgid "%s: specified target directory is not a directory" +msgstr "%s: angiven målkatalog är inte en katalog" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "för att göra flera länkar måste sista argumentet vara en katalog" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "Användning: %s [FLAGGA]\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" +"Skriv ut namnet på aktuell användare.\n" +"\n" + +#: src/logname.c:99 +#, c-format +msgid "%s: no login name\n" +msgstr "%s: inget inloggningsnamn\n" + +# Dessa två format skall expandera till samma längd. (Det finns en +# kommentar omedelbart innan dem i koden om det. Hur får man xgettext +# att ta med kommentarer?) +#: src/ls.c:673 +msgid "%b %e %Y" +msgstr "%e %b %Y" + +#: src/ls.c:681 +msgid "%b %e %H:%M" +msgstr "%e %b %H.%M" + +#: src/ls.c:1307 +#, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "ignorerar ogiltigt värde på miljövariabeln QUOTING_STYLE: %s" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "ignorerar felaktig bredd i miljövariabeln COLUMNS: %s" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "ignorerar felaktigt tabulatorsteg i miljövariabeln TABSIZE: %s" + +#: src/ls.c:1482 +#, c-format +msgid "invalid line width: %s" +msgstr "felaktig radlängd: %s" + +#: src/ls.c:1556 +#, c-format +msgid "invalid tab size: %s" +msgstr "felaktigt tabulatorsteg %s" + +#: src/ls.c:1722 +#, c-format +msgid "invalid time style format %s" +msgstr "felaktigt tidsstilsformat %s" + +#: src/ls.c:2054 +#, c-format +msgid "unrecognized prefix: %s" +msgstr "okänt prefix: %s" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "obegripligt värde på LS_COLORS-miljövariabeln" + +#: src/ls.c:2145 +#, c-format +msgid "cannot determine device and inode of %s" +msgstr "kan inte avgöra enhet och inod för %s" + +#: src/ls.c:2155 +#, c-format +msgid "not listing already-listed directory: %s" +msgstr "listar inte redan listad katalog: %s" + +#: src/ls.c:2208 src/remove.c:929 +#, c-format +msgid "reading directory %s" +msgstr "läser katalog %s" + +#: src/ls.c:2603 +#, c-format +msgid "cannot compare file names %s and %s" +msgstr "kan inte jämföra filnamnen %s och %s" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" +"Visa information om FILerna (aktuell katalog om inget anges). Sortera\n" +"posterna alfabetiskt om ingen av -cftuSUX eller --sort anges.\n" +"\n" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" +" -a, --all göm inte poster som inleds med .\n" +" -A, --almost-all lista inte underförstådda . och ..\n" +" --author skriv ut författare för varje fil\n" +" -b, --escape skriv oktala koder för ickegrafiska tecken\n" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" +" --block-size=STORLEK använd STORLEK byte stora block\n" +" -B, --ignore-backups lista inte underförstådda poster som slutar på " +"~\n" +" -c med -lt: sortera efter och visa ctime, (tid " +"för\n" +" senaste ändring av filstatusinformation)\n" +" med -l: visa ctime och sortera alfabetiskt\n" +" annars: sortera efter ctime\n" + +#: src/ls.c:3784 +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" +" -C lista poster kolumnvis\n" +" --color[=NÄR] ange om färger skall användas för att " +"särskilja\n" +" filetyper. NÄR kan vara \"never\", \"always" +"\"\n" +" eller \"auto\".\n" +" -d, --directory lista kataloger istället för deras innehåll,\n" +" och följ inte symboliska länkar\n" +" -D, --dired anpassa utdata för Emacs dired-funktion\n" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" +" -f sortera inte, slå på -aU, slå av -lst\n" +" -F, --classify lägg till en indikator (en av */=@|) till " +"poster\n" +" --format=ORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time som -l --time-style=full-iso\n" + +#: src/ls.c:3799 +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" +" -g som -l, men visa inte ägare\n" +" -G, --no-group låt bli att visa gruppinformation\n" +" -h, --human-readable skriv storlekar i läsbart format (t.ex. 1K 234M " +"2G)\n" +" --si d:o, men använd multipler av 1000 istället för " +"1024\n" +" -H, --dereference-command-line\n" +" följ symboliska länkar angivna på kommandoraden\n" +" --dereference-command-line-symlink-to-dir\n" +" följ varje kommandoradsargument som är en " +"symbolisk\n" +" länk som pekar på en katalog\n" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" +" --indicator-style=ORD lägg till en indikator med stil ORD till " +"postnamn:\n" +" none (standard), classify (-F), file-type (-" +"p)\n" +" -i, --inode visa indexnummer för varje fil\n" +" -I, --ignore=MÖNSTER visa inte underförstådda poster som matchar\n" +" skalMÖNSTER\n" +" -k som --block-size=1K\n" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" +" -l använd långt listningsformat\n" +" -L, --dereference när filinformation visas för en symbolisk " +"länk,\n" +" visa information om filen länken refererar\n" +" snarare än för själva länken\n" +" -m fyll bredden med en kommaseparerad lista av " +"poster\n" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" +" -n, --numeric-uid-gid som -l, men lista numeriska UID och GID\n" +" -N, --literal skriv ut råa postnamn (specialbehandla inte\n" +" kontrolltecken till exempel)\n" +" -o som -l, men lista inte gruppinformation\n" +" -p, --file-type lägg till en indikator (en av /=@|) till " +"poster\n" + +#: src/ls.c:3831 +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -q, --hide-control-chars skriv ? istället för ickegrafiska tecken\n" +" --show-control-chars visa ickegrafiska tecken som de är (normalfall " +"utom\n" +" om programmet är \"ls\" och utdata är en " +"terminal)\n" +" -Q, --quote-name omge postnamnen med citationstecken\n" +" --quoting-style=ORD använd citationsstil ORD för postnamn:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" +" -r, --reverse sortera baklänges\n" +" -R, --recursive visa underkataloger rekursivt\n" +" -s, --size skriv storleken i block för varje fil\n" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" +" -S sortera efter filstorlek\n" +" --sort=ORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=ORD visa tid som ORD istället för modifieringstid:\n" +" atime, access, use, ctime eller status; " +"använd\n" +" angiven tid som sorteringsnyckel om --" +"sort=time\n" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" +" --time-style=STIL visa tider i med stil STIL:\n" +" full-iso, long-sio, iso, locale, +FORMAT\n" +" FORMAT tolkas som \"date\"; om FORMAT är\n" +" FORMAT1FORMAT2, används FORMAT1 för " +"gamla\n" +" filer och FORMAT2 för nyare filer;\n" +" vid tillägg av prefixet \"posix-\" till STIL, " +"gäller\n" +" STIL endast utanför lokalen POSIX\n" +" -t sortera efter modifieringstid\n" +" -T, --tabsize=KOLUMN antag tabulatorsteg varje KOLUMN, inte var 8:e\n" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" +" -u med -lt: sortera efter och visa åtkomsttid\n" +" med -l: visa åtkomsttid men sortera " +"alfabetiskt\n" +" annars: sortera enligt åtkomsttid\n" +" -U sortera inte; lista poster i katalogordning\n" +" -v sortera efter version\n" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" +" -w, --width=KOLUMN anta skärmbredd istället för aktuellt värde\n" +" -x lista poster radvis istället för kolumnvis\n" +" -X sortera alfabetiskt efter ändelser\n" +" -1 lista en fil per rad\n" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" +"\n" +"Normalt används inte färger för att särskilja filtyper. Det är likvärdigt\n" +"med att ange --color=none. Att använda flaggan --color utan något NÄR är\n" +"detsamma som att ange --color=always. Med --color=auto används färgkodning\n" +"endast om standard ut är en terminal (tty).\n" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "Ulrich Drepper och Scott Miller" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"Användning: %s [FLAGGA] [FIL]...\n" +" eller: %s [FLAGGA] --check [FIL]\n" +"Skriv eller kontrollera %s (%d-bitars) kontrollsummor.\n" +"Utan FIL eller om FIL är -, läs standard in.\n" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" +"\n" +" -b, --binary läs fil i binärläge (standard på DOS/Windows)\n" +" -c, --check kontrollera %s-summor mot en given lista\n" +" -t, --text läs fil i textläge (normalfall)\n" +"\n" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" +"De två följande flaggorna är användbara enbart vid verifikation av\n" +"kontrollsummor:\n" +" --status mata inte ut något, statuskoden visar resultatet\n" +" -w, --warn varna för felaktigt formaterade " +"kontrollsummerader\n" +"\n" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" +"\n" +"Summorna beräknas så som beskrivs i %s. Vid kontroll ska indata vara\n" +"tidigare utdata från detta program. Normalläge är att skriva en rad\n" +"med en kontrollsumma, ett tecken som indikerar typen (\"*\" för binärt,\n" +"\" \" för text), och namnet på varje fil.\n" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "%s: %lu: felaktigt formaterad %s-kontrollsummerad" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "%s: MISSLYCKADES att öppna eller läsa\n" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "MISSLYCKADES" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "OK" + +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%s: läsfel" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "%s: inga korrekt formaterade %s-kontrollsummerader funna" + +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "VARNING: %d av %d listade %s kunde inte läsas" + +#: src/md5sum.c:473 +msgid "file" +msgstr "fil" + +#: src/md5sum.c:473 +msgid "files" +msgstr "filer" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "VARNING: %d av %d beräknad(e) %s stämde INTE" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "kontrollsumma" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "kontrollsummor" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" +"flaggorna --binary och --text är meningsfulla enbart när kontrollsummor\n" +"verifieras" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "flaggorna --string och --check kan inte användas samtidigt" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "flaggan --status är meningsfull enbart när kontrollsummor verifieras" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "flaggan --warn är meningsfull enbart när kontrollsummor verifieras " + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "ingen fil kan anges när --string används" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "endast ett argument kan anges när --check används" + +#: src/mkdir.c:61 +#, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "Användning: %s [FLAGGA] KATALOG...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" +"Skapa KATALOG(er), om de inte redan finns.\n" +"\n" + +#: src/mkdir.c:69 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +" -m, --mode=RÄTTIGHET sätt rättigheter (enligt chmod), inte rwxrwxrwx - " +"umask\n" +" -p, --parents inget fel om den finns, gör föräldrakataloger vid behov\n" +" -v, --verbose skriv meddelande för varje skapad katalog\n" + +#: src/mkdir.c:113 +#, c-format +msgid "created directory %s" +msgstr "skapade katalog %s" + +#: src/mkdir.c:190 +#, c-format +msgid "cannot set permissions of directory %s" +msgstr "kan inte sätta rättigheter på katalog %s" + +#: src/mkfifo.c:55 +#, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "Användning: %s [FLAGGA] NAMN...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" +"Skapa namngivna rör (FIFO) med de givna NAMNen.\n" +"\n" + +#: src/mkfifo.c:63 src/mknod.c:64 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" +" -m, --mode=RÄTTIGHET sätt rättigheter (enligt chmod), inte a=rw - umask\n" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "fifo-filer stöds inte" + +#: src/mkfifo.c:123 src/mknod.c:127 +msgid "invalid mode" +msgstr "felaktig rättighet" + +#: src/mkfifo.c:142 +#, c-format +msgid "cannot set permissions of fifo %s" +msgstr "kan inte sätta rättigheter på fifo %s" + +#: src/mknod.c:55 +#, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "Användning: %s [FLAGGA]... NAMN TYP [ÖVRE LÄGRE]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" +"Skapa specialfilen NAMN av angiven TYP.\n" +"\n" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" +"\n" +"Både ÖVRE och LÄGRE måste anges när TYP är b, c eller u, och de får\n" +"inte anges när TYP är p. Om ÖVRE eller LÄGRE börjar med 0x eller 0X\n" +"tolkas det som hexadecimalt; annars, om det börjar med 0 som oktalt;\n" +"annars som decimalt. TYP får vara:\n" + +#: src/mknod.c:76 +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"\n" +" b skapa en (buffrad) blockspecialfil\n" +" c, u skapa en (obuffrad) teckenspecialfil\n" +" p skapa en FIFO\n" + +#: src/mknod.c:141 +msgid "wrong number of arguments" +msgstr "fel antal argument" + +#: src/mknod.c:153 +msgid "block special files not supported" +msgstr "blockspecialfiler stöds inte" + +#: src/mknod.c:162 +msgid "character special files not supported" +msgstr "teckenspecialfiler stöds inte" + +#: src/mknod.c:171 +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "när specialfiler skapas, måste övre och undre enhetsnummer anges" + +#: src/mknod.c:186 +#, c-format +msgid "invalid major device number %s" +msgstr "ogiltigt övre enhetsnummer %s" + +#: src/mknod.c:191 +#, c-format +msgid "invalid minor device number %s" +msgstr "ogiltigt undre enhetsnummer %s" + +#: src/mknod.c:196 +#, c-format +msgid "invalid device %s %s" +msgstr "ogiltig enhet %s %s" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "övre och undre enhetsnummer skall inte anges för fifo-filer" + +#: src/mknod.c:231 +#, c-format +msgid "cannot set permissions of %s" +msgstr "kan inte sätta rättigheter på %s" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "Mike Parker, David MacKenzie och Jim Meyering" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"Byt namn på KÄLLA till DEST eller flytta KÄLLor till KATALOG.\n" +"\n" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" +" --backup[=STYR] säkerhetskopiera varje befintlig destination\n" +" -b som --backup, fast tar inget argument\n" +" -f, --force fråga inte innan något skrivs över\n" +" detsamma som --reply=yes\n" +" -i, --interactive fråga innan något skrivs över\n" +" detsamma som --reply=query\n" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" +" --reply={yes,no,query} ange hur en fråga om en befintlig\n" +" destinationsfil skall hanteras\n" +" --strip-trailing-slashes ta bort avslutande snedstreck från varje \n" +" KÄLLargument\n" +" -S, --suffix=ÄNDELSE ersätt den vanliga säkerhetskopieändelsen\n" + +#: src/mv.c:339 +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +" --target-directory=KATALOG flytta alla KÄLLargument in i KATALOG\n" +" -u, --update flytta nedast när KÄLLfilen är nyare än\n" +" destinationsfilen eller när " +"destinationsfilen\n" +" inte finns\n" +" -v, --verbose förklara vad som görs\n" + +#: src/mv.c:467 +#, c-format +msgid "specified target, %s is not a directory" +msgstr "angivet mål, %s är inte en katalog" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "när flera filer flyttas måste sista argumentet vara en katalog" + +#: src/nice.c:67 +#, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "Användning: %s [FLAGGA] [KOMMANDO [ARG]...]\n" + +#: src/nice.c:68 +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" +"Kör KOMMANDO med justerad prioritet.\n" +"Utan KOMMANDO skrivs nuvarande prioritet ut. JUSTERING är normalt\n" +"10. Skalan sträcker sig från -20 (högst prioritet) till 19 (lägst).\n" +"\n" +" -n, --adjustment=JUSTERING öka prioritet med JUSTERING först\n" + +#: src/nice.c:109 src/nice.c:122 +#, c-format +msgid "invalid option `%s'" +msgstr "ogiltig flagga \"%s\"" + +#: src/nice.c:147 +#, c-format +msgid "invalid priority `%s'" +msgstr "ogiltig prioritet \"%s\"" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "ett kommando måste anges med en justering" + +#: src/nice.c:178 src/nice.c:187 +msgid "cannot get priority" +msgstr "kan inte hämta prioritet" + +#: src/nice.c:192 +msgid "cannot set priority" +msgstr "kan inte sätta prioritet" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "Scott Bartram och David MacKenzie" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Skriv varje FIL till standard ut och lägg till radnummer.\n" +"Utan FIL eller om FIL är -, läs standard in.\n" +"\n" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" +" -b, --body-numbering=STIL använd STIL för att numrera rader i " +"kroppen\n" +" -d, --section-delimiter=CC använd CC för att avgränsa logiska sidor\n" +" -f, --footer-numbering=STIL använd STIL för att numrera rader i fot\n" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" +" -h, --header-numbering=STIL använd STIL för att numrera rader i huvud\n" +" -i, --page-increment=ANTAL öka radnummer med ANTAL för varje rad\n" +" -l, --join-blank-lines=ANTAL grupp med ANTAL tomma rader räknade som " +"en\n" +" -n, --number-format=FORMAT följ FORMAT när radnummer sätts in\n" +" -p, --no-renumber börja inte om radnummer vid logiska sidor\n" +" -s, --number-separator=STRÄNG lägg till STRÄNG efter (möjligt) " +"radnummer\n" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" +" -v, --first-page=NUMMER första radnumret på varje logisk sida\n" +" -w, --number-width=ANTAL använd ANTAL kolumner för radnummer\n" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" +"\n" +"I normalläge används -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC\n" +"består av två tecken för att avskilja logiska sidor, saknas andra\n" +"tecknet menas :. Skriv \\\\ för \\. STIL är någon av:\n" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" +"\n" +" a numrera alla rader\n" +" t numrera endast icketomma rader\n" +" n numrera inga rader\n" +" pREGUTTR numrera endast rader som stämmer med REGUTTR\n" +"\n" +"FORMAT är någon av:\n" +"\n" +" ln vänsterjusterat, inga inledande nollor\n" +" rn högerjusterat, inga inledande nollor\n" +" rz högerjusterat, inledande nollor\n" +"\n" + +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "felaktigt första radnummer: \"%s\"" + +#: src/nl.c:514 +#, c-format +msgid "invalid line number increment: `%s'" +msgstr "felaktig ökning av radnummer: \"%s\"" + +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "felaktigt antal tomma rader: \"%s\"" + +#: src/nl.c:541 +#, c-format +msgid "invalid line number field width: `%s'" +msgstr "felaktig bredd på radnumrets fält: \"%s\"" + +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"Användning: %s [FLAGGA]... [FIL]...\n" +" eller: %s --traditional [FIL] [[+]FÖRSKJUTNING [[+]ETIKETT]\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"\n" +"Skriv en otvetydig representation, normalt oktala tecken, av FIL till\n" +"standard ut. Med mer än ett FIL-argument, slå samman dem i den\n" +"angivna orningen som indata. Utan FIL eller om FIL är -, läs standard\n" +"in.\n" +"\n" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "Alla argument till långa flaggor är obligatoriska korta flaggor.\n" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" +" -A, --address-radix=RADIX avgör hur filposition skrivs\n" +" -j, --skip-bytes=BYTE hoppa först över BYTE byt i indata\n" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" +" -N, --read-bytes=BYTE begränsa utmatning till BYTE byte från " +"indata\n" +" -s, --strings[=BYTE] mata ut strängar med minst BYTE grafiska " +"tecken\n" +" -t, --format=TYP välj format för utmatning\n" +" -v, --output-duplicates använd inte * för att markera undertryckta " +"rader\n" +" -w, --width[=BYTE] mata ut BYTE byte per rad\n" +" --traditional acceptera argument i traditionellt format\n" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" +"\n" +"Traditionella formatspecifikationer kan blandas, de ackumuleras:\n" +" -a samma som -t a, välj namngivna tecken\n" +" -b samma som -t oC, välj oktala byte\n" +" -c samma som -t c, välj ASCII-tecken eller bakstrecksekvenser\n" +" -d samma som -t u2, välj korta, utan tecken, decimalt\n" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" +" -f samma som -t fF, välj flyttal\n" +" -h samma som -t x2, välj korta hexadecimala\n" +" -i samma som -t d2, välj korta decimalt\n" +" -l samma som -t d4, välj långa decimalt\n" +" -o samma som -t o2, välj korta oktala\n" +" -x samma som -t x2, välj korta hexadecimala\n" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" +"\n" +"För äldre syntax (andra anropsformatet), betyder FÖRSKJUTNING detsamma\n" +"som -j FÖRSKJUTNING. ETIKETT är den första skrivna bytens\n" +"pseudoadress, vilken ökas så länge utmatningen pågår. För\n" +"FÖRSKJUTNING och ETIKETT indikerar förstavelserna 0x eller 0X\n" +"hexadecimalt, ändelser kan vara . för oktalt och b multiplicerar med\n" +"512.\n" +"\n" +"TYP skapas av en eller fler av dessa specifikationer:\n" +"\n" +" a namngivet tecken\n" +" c ASCII-tecken eller bakstreckssekvens\n" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" +" d[STORLEK] decimalt med tecken, STORLEK byte per heltal\n" +" f[STORLEK] flyttal, STORLEK byte per heltal\n" +" o[STORLEK] oktalt, STORLEK byte per heltal\n" +" u[STORLEK] decimalt utan tecken, STORLEK byte per heltal\n" +" x[STORLEK] hexadecimalt, STORLEK byte per heltal\n" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" +"\n" +"STORLEK är ett tal. För TYP doux, kan STORLEK också vara C för\n" +"sizeof(char), S för sizeof(short), I för sizeof(int) eller L för\n" +"sizeof(long). Om TYP är f, kan STORLEK också var F för sizeof(float), D\n" +"för sizeof(double) eller L för sizeof(long double).\n" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" +"\n" +"RADIX är d för decimalt, o för oktalt, x för hexadecimalt eller n för\n" +"inget. BYTE är hexadecimalt med 0x eller 0X som förstavelse,\n" +"multipliceras med 512 med b som ändelse, med 1024 med k och med\n" +"1048576 med m. Ett tillägg av z till valfri typ gör att skrivbara\n" +"tecken visas i slutet på varje rad. " + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" +"--string utan ett tal implicerar 3. --width utan ett tal implicerar\n" +"32. I normalläge använder od -A o -t d2 -w 16.\n" + +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "ogiltig typsträng \"%s\"" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" +"ogiltig typsträng \"%s\";\n" +"detta system har ingen %lu-byte heltalstyp" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" +"ogiltig typsträng \"%s\";\n" +"detta system har ingen %lu-byte flyttalstyp" + +#: src/od.c:917 +#, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "ogiltigt tecken \"%c\" i typsträng \"%s\"" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "kan inte hoppa förbi slutet på en kombinerad inmatning" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "förskjutning på gammal sätt" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "" +"ogiltig radix för utmatningsadress \"%c\"; måste vara ett tecken från [doxn]" + +#: src/od.c:1717 +msgid "skip argument" +msgstr "hoppa över argument" + +#: src/od.c:1725 +msgid "limit argument" +msgstr "begränsa argument" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "minsta längd på sträng" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "%s är för stort" + +#: src/od.c:1804 +msgid "width specification" +msgstr "specifikation av bredd" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "ingen typ kan anges när strängar sparas" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "andra operanden ogiltig i kompatibelt läge \"%s\"" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "i kompatibelt läge måste de två sista argumenten vara förskjutningar" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "kompatibelt läge stöder högst 3 argument" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "varning: ogiltig bredd %lu; använder %d i stället" + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "%d: fmt=\"%s\" bredd=%d\n" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "David M. Ihnat och David MacKenzie" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "standard in stängd" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Skriv rader som består av sekventiellt korresponderande rader från\n" +"varje FIL, åtskilda med TAB, till standard ut. Utan FIL eller om\n" +"FIL är -, läs standard in.\n" +"\n" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" +" -d, --delimiters=LISTA återanvänd tecken från LISTA inställer för TAB\n" +" -s, --serial klistra in en fil i taget i stället för " +"parallellt\n" + +#: src/pathchk.c:146 +#, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "Användning: %s [FLAGGA]... NAMN...\n" + +#: src/pathchk.c:147 +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" +"Diagnostisera icke-portabla formationer i NAMN.\n" +"\n" +" -p, --portability kontrollera mot alla POSIX-system, inte bara detta\n" + +#: src/pathchk.c:237 +#, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "sökvägen \"%s\" innehåller det icke-portabla tecknet \"%c\"" + +#: src/pathchk.c:257 +#, c-format +msgid "`%s' is not a directory" +msgstr "\"%s\" är inte någon katalog" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "katalogen \"%s\" är inte sökbar" + +#: src/pathchk.c:355 +#, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "namnet \"%s\" har längden %ld; överskrider gränsen på %ld" + +#: src/pathchk.c:381 +#, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "sökvägen \"%s\" har längden %d; överskrider gränsen på %ld" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "Joseph Arceneaux, David MacKenzie och Kaveh Ghazi" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "Inloggningsnamn: " + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "I verkliga livet: " + +#: src/pinky.c:298 +msgid "???\n" +msgstr "???\n" + +#: src/pinky.c:318 +msgid "Directory: " +msgstr "Katalog: " + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "Skal: " + +#: src/pinky.c:341 +msgid "Project: " +msgstr "Projekt: " + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "Plan:\n" + +#: src/pinky.c:386 +msgid "Login" +msgstr "Inloggningsnamn" + +#: src/pinky.c:388 +msgid "Name" +msgstr "Namn" + +#: src/pinky.c:389 +msgid " TTY" +msgstr " TTY" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "Overksam" + +#: src/pinky.c:392 +msgid "When" +msgstr "När" + +#: src/pinky.c:395 +msgid "Where" +msgstr "Var" + +#: src/pinky.c:469 +#, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "Användning: %s [FLAGGA]... [ANVÄNDARE]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" +"\n" +" -l skriv ut i långt format\n" +" -b utelämna användarens hemkatalog och skal i det långa " +"formatet\n" +" -h utelämna användarens projektfil i det långa formatet\n" +" -p utelämna användarens planfil i det långa formatet\n" +" -s skriv ut i kort format\n" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" +" -f utelämna raden med kolumnrubriker i kort format\n" +" -w utelämna anävndarens fullständiga namn i kort format\n" +" -i utelämna användarens fullständiga namn och fjärrvärd i " +"kort\n" +" format\n" +" -q utelämna användarens fullstädniga namn, fjärrvärd och \n" +" overksamma tiden i kort format\n" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" +"\n" +"Ett lättviktigt \"finger\"-program; skriver ut användarinformation.\n" +"utmp-filen kommer att vara %s.\n" + +#: src/pinky.c:574 +msgid "no username specified; at least one must be specified when using -l" +msgstr "inget användarnamn angivet; åtminstone ett måsta anges när -l används" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "Pete TerMaat och Roland Hübner" + +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "\"--pages\" felaktigt intervall för sidnummer: \"%s\"" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "\"--pages\" felaktigt förstasidnummer: \"%s\"" + +#: src/pr.c:829 +#, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "\"--pages\" felaktigt sista sidnummer: \"%s\"" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "\"--pages\" förstasidnummer är större än sistasidnummer" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "\"--pages=FÖRSTA_SIDA[:SISTA_SIDA]\" saknar argument" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "\"--columns=KOLUMN\" felaktigt antal kolumner: \"%s\"" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "\"-l \"SIDLÄNGD\" felaktigt antal rader: \"%s\"" + +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "\"-N NUMMER\" felaktigt första radnummer: \"%s\"" + +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "\"-o MARGINAL felaktigt indrag av rad: \"%s\"" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "\"-w \"SIDBREDD\" felaktigt antal tecken: \"%s\"" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "\"-W \"SIDBREDD\" felaktigt antal tecken: \"%s\"" + +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "%Y-%m-%d %H.%M" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "Kan inte specificera antal kolumner vid parallell utskrift." + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "Kan inte specificera både utskrift på tvären och parallell utskrift." + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "\"-%c\" extra tecken eller felaktigt nummer i argumentet: \"%s\"" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "bredden på sidan är för smal" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "förstasidnummer är större än antalet sidor: \"%d\"" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "Sida %d" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" +"Paginera eller skapa kolumner av FIL(er) för utskrift.\n" +"\n" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" +" +FÖRSTA_SIDA[:SISTA_SIDA], --pages=FÖRSTA_SIDA[:SISTA_SIDA]\n" +" börja [sluta] skriva vid sida FÖRSTA_[SISTA_]SIDA\n" +" -KOLUMN, --columns=KOLUMN\n" +" skapa KOLUMN-kolumnutmatning och skriv kolumner nedåt,\n" +" om inte -a används. Balansera antalet rader i " +"kolumnerna\n" +" på varje sida\n" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" +" -a, --across skriv kolumner på tvären i stället för nedåt, används\n" +" tillsammans med -KOLUMN\n" +" -c, --show-control-chars\n" +" använd hattnotation (^G) och oktal bakstrecksnotation\n" +" -d, --double-space\n" +" skriv ut med dubbelt radavstånd\n" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" +" -D, --date-format=FORMAT\n" +" använd FORMAT för huvuddatum\n" +" -e[TECKEN[BREDD]], --expand-tabs[=TECKEN[BREDD]]\n" +" expandera inmatade TECKEN (TABs) till tab-BREDD (8)\n" +" -F, -f, --form-feed\n" +" använd sidmatning i stället för nya rader för att\n" +" separera sidor (med ett 3-raders huvud vid -F eller\n" +" 5-raders huvud och fot utan -F)\n" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" +" -h HUVUD, --header=HUVUD\n" +" använd ett centrerat HUVUD i stället för filnamn i\n" +" sidhuvud, -h \"\" skriver en tom rad. Använd inte -h" +"\"\"\n" +" -i[TECKEN[BREDD]], --output-tabs[=TECKEN[BREDD]]\n" +" ersätt mellanslag med TECKEN (TABs), BREDD breda (8)\n" +" -J, --join-lines sammanfoga hela rader, stänger av -W radstympning, " +"ingen\n" +" kolumnjustering, --sep-string[STRÄNG] anger avskiljare\n" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" +" -l SIDLÄNGD, --length=SIDLÄNGD\n" +" sätt sidlängden till SIDLÄNGD (66) rader\n" +" (standard 56 rader text, och med -F 63)\n" +" -m, --merge skriv alla filer parallellt, en i varje kolumn, hugg av\n" +" rader, men slå samman rader till full längd med -J\n" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" +" -n[SEP[SIFFROR]], --number-lines[=SEP[SIFFROR]]\n" +" numrera rader, använd SIFFROR (5) siffror, sedan SEP " +"(TAB),\n" +" i normalläge startar räkning vid infilens första rad\n" +" -N NUMMER, --first-line-number=NUMMER\n" +" börja räkna med NUMMER vid första raden på första sidan\n" +" som skrivs ut (se +FÖRSTA_SIDA)\n" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" +" -o MARGINAL, --indent=MARGINAL\n" +" skjut in varje rad med MARGINAL (noll) mellanrum, " +"påverka\n" +" ej -w eller -W, MARGINAL läggs till SIDBREDD\n" +" -r, --no-file-warnings\n" +" utelämna varning när en fil inte kan öppnas\n" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" +" -s[TECKEN], --separator[=TECKEN]\n" +" åtskilj kolumner med ett enda tecken, standard för " +"TECKEN\n" +" är tabulatortecknet utan -w och \"inget tecken\" med -w\n" +" -s[TECKEN] slår av avhuggning för alla tre " +"kolumnflaggorna\n" +" (-KOLUMN|-a KOLUMN|-m) utom när -w är angivet\n" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr " -SSTRÄNG, --sep-string[=STRÄNG]\n" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" +" åtskilj kolumner med STRÄNG,\n" +" utan -S: Standardseparator med -J och \n" +" annars (samma som -S\" \"), ingen effekt på " +"kolumnflaggor\n" +" -t, --omit-header utelämna sidhuvud och sidfot\n" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" +" -T, --omit-pagination\n" +" utelämna sidhuvud och sidfot, ta bort paginering\n" +" gjord med sidmatning i infiler\n" +" -v, --show-nonprinting\n" +" använd oktal bakstrecksnotation\n" +" -w SIDBREDD, --width=SIDBREDD\n" +" sätt sidbredd till SIDBREDD (72) kolumner vid utmatning\n" +" med flera textkolumner, -s[TECKEN] slår av (72)\n" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" +" -W SIDBREDD, --page-width=SIDBREDD\n" +" sätt sidbredd till SIDBREDD (72) kolumner vid all \n" +" utmatning, hugg av rader utom om flagga -J är satt,\n" +" ingen koppling till -S eller -s\n" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" +"\n" +"-T impliceras av -l nn när nn <= 10 eller <= 3 med -F. Utan FIL eller om \n" +"FIL är -, läs standard in.\n" + +#: src/printenv.c:43 +msgid "David MacKenzie and Richard Mlynarik" +msgstr "David MacKenzie och Richard Mlynarik" + +#: src/printenv.c:63 +#, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" +"Användning: %s [MILJÖVARIABEL]...\n" +" eller: %s FLAGGA\n" +"Om ingen MILJÖVARIABEL angetts, skriv ut allihop.\n" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "varning: %s: tecken som följer efter teckenkonstanten har ignorerats" + +#: src/printf.c:100 +#, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"Användning: %s FORMAT [ARGUMENT]...\n" +" eller: %s FLAGGA\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" +"Skriv ut ARGUMENT enligt FORMAT.\n" +"\n" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" +"\n" +"FORMAT styr utdatan som i C printf. Tolkade sekvenser är:\n" +"\n" +" \\\" citationstecken\n" +" \\0NNN tecken med oktalt värde NNN (0 till 3 siffror)\n" +" \\\\ omvänt snedstreck\n" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" +" \\a varning (SIGNAL)\n" +" \\b backsteg\n" +" \\c producera inte mer utdata\n" +" \\f sidmatning\n" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\n ny rad\n" +" \\r vagnretur\n" +" \\t horisontell tabulator\n" +" \\v vertikal tabulator\n" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" +" \\xNN byte med hexadecimalt värde NN (1 till 2 siffror)\n" +"\n" +" \\xNNNN tecken med hexadecimalt värde NNNN (4 siffror)\n" +" \\UNNNNNNNN tecken med hexadecimalt värde NNNNNNNN (8 siffror)\n" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" +" %% ett enkelt %\n" +" %b ARGUMENT som en sträng med \"\\\"-kontrollsekvenser tolkas\n" +"\n" +"och alla specifikationer på C-format som slutar med en av diouxXfeEgGcs, " +"med \n" +"ARGUMENT konverterade till en passande typ först. Klarar av varierande " +"storlek.\n" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "%s: ett numeriskt värde förväntas" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "%s: värdet kunde inte konverteras helt" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "saknar hexadecimal siffra i kontrollsekvens" + +#: src/printf.c:292 +#, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "ogiltigt universellt-teckennamn \\%c%0*x" + +#: src/printf.c:472 +#, c-format +msgid "invalid field width: %s" +msgstr "ogiltig fältbredd: %s" + +#: src/printf.c:498 +#, c-format +msgid "invalid precision: %s" +msgstr "ogiltig precision: %s" + +#: src/printf.c:519 +#, c-format +msgid "%%%c: invalid directive" +msgstr "%%%c: felaktigt direktiv" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "Användning: %s format [argument...]\n" + +#: src/printf.c:594 +#, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "varning: ignorerar överflödiga argument, startar med \"%s\"" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "%s (för reguljäruttrycket \"%s\")" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"Användning: %s [FLAGGA]... [INFIL]... (utan -G)\n" +" eller: %s -G [FLAGGA]... [INFIL [UTFIL]]\n" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" +"Utdata är ett permuterat index, med sammanhang, av orden i indatafilerna\n" +"\n" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" +" -A, --auto-reference mata ut automatiskt genererade refernser\n" +" -C, --copyright visa copyright och kopieringsvillkor\n" +" -G, --traditional uppträd mer som System V:s \"ptx\"\n" +" -F, --flag-truncation=STRÄNG använd STRÄNG för att markera avhuggnar " +"rader\n" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" +" -M, --macro-name=STRÄNG makronamn att använda istället för \"xx\"\n" +" -O, --format=roff generera utdata som roff-direktiv\n" +" -R, --right-side-refs skriv referenser till höger, ej med i -w\n" +" -S, --sentence-regexp=REGUTTR för radslut eller meningsslut\n" +" -T, --format=tex generera utdata som TeX-direktiv\n" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" +" -W, --word-regexp=REGUTTR använd REGUTTRY för att macha varje " +"nyckelord\n" +" -b, --break-file=FIL ordmellanrumstecken i denna FIL\n" +" -f, --ignore-case gör om gemener till versaler för sortering\n" +" -g, --gap-size=ANTAL mellanrum i kolumner mellan utdatafält\n" +" -i, --ignore-file=FIL läs lista av ord att ignorera från FIL\n" +" -o, --only-file=FIL läs lista av ord att endast använda från " +"FIL\n" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" +" -r, --references första fältet på varje rad är en referens\n" +" -t, --typeset-mode - ej implementerat -\n" +" -w, --width=ANTAL utmatningsbredd i kolumner, utan " +"referenser\n" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" +"\n" +"Utan FIL eller om FIL är -, läs standard in. \"-F /\" är standard.\n" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" +"Detta program är fri programvara. Du kan distribuera det och/eller\n" +"modifiera det under villkoren i GNU General Public License, publicerad\n" +"av Free Software Foundation, antingen version 2 eller (om du så vill)\n" +"någon senare version.\n" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" +"Detta program distribueras i hopp om att det ska vara användbart, men\n" +"UTAN NÅGON GARANTI, även utan underförstådd garanti vid KÖP eller\n" +"LÄMPLIGHET FÖR NÅGOT SPECIELLT ÄNDAMÅL. Se GNU General Public License\n" +"för ytterligare information.\n" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" +"Du bör ha fått en kopia av GNU General Public License tillsammans med\n" +"detta program. Om inte, skriv till Free Software Foundation, Inc., 59\n" +"Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" +"Skriv ut hela filnamnet på aktuell katalog.\n" +"\n" + +#: src/pwd.c:74 +msgid "ignoring non-option arguments" +msgstr "ignorerar argument som inte är flaggor" + +#: src/pwd.c:78 +msgid "cannot get current directory" +msgstr "kan inte avgöra aktuell katalog" + +#: src/readlink.c:69 +#, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "Användning: %s [FLAGGA]... FIL\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" +"Visa värdet på en symbolisk länk på standard ut.\n" +"\n" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" +" -f, --canonicalize kanonisera genom att följa varje symlänk i varje \n" +" komponent i den angivna sökvägen rekursivt\n" +" -n, --no-newline skriv inte en avslutande nyrad\n" +" -q, --quiet,\n" +" -s, --silent undertryck de flesta felmeddelandena\n" +" -v, --verbose rapportera felmeddelanden\n" + +#: src/remove.c:394 +#, c-format +msgid "cannot chdir from %s to .." +msgstr "kan inte byta katalog från %s till .." + +#: src/remove.c:407 src/remove.c:488 +#, c-format +msgid "cannot lstat `.' in %s" +msgstr "kan inte ta status (lstat) på \\\".\\\" i %s" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "%s ändrad enh/ino" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, c-format +msgid "cannot lstat %s" +msgstr "kan inte ta status (lstat) på %s" + +#: src/remove.c:603 +#, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "%s: gå ner i skrivskyddad katalog %s? " + +#: src/remove.c:604 +#, c-format +msgid "%s: descend into directory %s? " +msgstr "%s: gå ner i katalog %s? " + +#: src/remove.c:614 +#, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: ta bort skrivskyddad %s %s? " + +#: src/remove.c:615 +#, c-format +msgid "%s: remove %s %s? " +msgstr "%s: ta bort %s %s? " + +#: src/remove.c:639 +#, c-format +msgid "removed %s\n" +msgstr "tog bort %s\n" + +#: src/remove.c:654 src/remove.c:1059 +#, c-format +msgid "removed directory: %s\n" +msgstr "tog bort katalog: %s\n" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, c-format +msgid "cannot remove directory %s" +msgstr "kan inte ta bort katalog %s" + +#: src/remove.c:815 +#, c-format +msgid "cannot open directory %s" +msgstr "kan inte öppna katalog %s" + +#: src/remove.c:896 src/remove.c:1002 +#, c-format +msgid "cannot chdir from %s to %s" +msgstr "kan inte byta katalog från %s till %s" + +#: src/remove.c:904 +#, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +"VARNING: Cirkulär katalogstruktur.\n" +"Detta betyder nästan säkert att du har ett trasigt filsystem.\n" +"RAPPORTERA TILL SYSTEMANSVARIG.\n" +"Följande katalog utgör del av cykeln:\n" +" %s\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "kan inte ta bort \".\" eller \"..\"" + +#: src/rm.c:60 +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "Paul Rubin, David MacKenzie, Richard Stallman och Jim Meyering" + +#: src/rm.c:99 src/touch.c:244 +#, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "Användning: %s [FLAGGA]... FIL...\n" + +#: src/rm.c:100 +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"Ta bort (avlänka, unlink) FIL(er).\n" +"\n" +" -d, --directory ta bort katalog, även om den inte är tom\n" +" (endast superanvändare)\n" +" -f, --force ignorera filer som inte finns, fråga aldrig\n" +" -i, --interactive fråga före något tas bort\n" +" -r, -R, --recursive ta bort innehåll i kataloger rekursivt\n" +" -v, --verbose förklara vad som görs\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" +"\n" +"För att ta bort filer vars namn börjar med \"-\", till exempel \"-apa\",\n" +"använder du ett av dessa kommandon:\n" +" %s -- -apa\n" +"\n" +" %s ./-apa\n" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" +"\n" +"Observera att om du använder rm för att ta bort en fil är det oftast " +"möjligt\n" +"att ta reda på vad filen innehöll. Överväg att använda shred om du vill\n" +"förvissa dig om att innehållet verkligen är borta.\n" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, c-format +msgid "removing directory, %s" +msgstr "tar bort katalog, %s" + +#: src/rmdir.c:146 +#, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "Användning: %s [FLAGGA]... KATALOG...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" +"Ta bort KATALOG(er) om de är tomma.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignorera alla fel som beror enbart på att katalogen inte " +"är\n" +" tom\n" + +#: src/rmdir.c:154 +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +" -p, --parents ta bort KATALOG, försök sedan ta bort varje komponent i\n" +" sökvägen. T.ex. \"rmdir -p a/b/c\" motsvarar\n" +" \"rmdir a/b/c a/b a\".\n" +" -v, --verbose skriv ett meddelande för varje behandlad katalog\n" + +#: src/seq.c:82 +#, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"Användning: %s [FLAGGA]... SISTA\n" +" eller: %s [FLAGGA]... FÖRSTA SISTA\n" +" eller: %s [FLAGGA]... FÖRSTA ÖKNING SISTA\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" +"Skriv ut tal från FÖRSTA till SISTA, i steg om ÖKNING.\n" +"\n" +" -f, --format FORMAT använd flyttalsFORMAT av typ printf (standard: %" +"g)\n" +" -s, --separator=STRÄNG använd STRÄNG för att separera tal (standard: " +"\\n)\n" +" -w, --equal-width jämna ut bredd genom att lägga till inledande " +"nollor\n" + +#: src/seq.c:96 +#, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" +"\n" +"Om FÖRSTA eller ÖKNING utelämnas, sätts de till 1. FÖRSTA, ÖKNING och\n" +"SISTA tolkas som flyttal. ÖKNING ska vara positivt om FÖRSTA är\n" +"mindre än SISTA och negativt annars. När argumentet FORMAT anges\n" +"måste det innehålla precis en av flyttalsformattyperna %e, %f, %g\n" +"(samma som i printf).\n" + +#: src/seq.c:119 +#, c-format +msgid "invalid floating point argument: %s" +msgstr "felaktigt flyttalsargument: %s" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" +"när startvärdet är större än gränsen måste steglängden \n" +"vara negativ" + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" +"när startvärdet är mindre än gränsen måste steglängden\n" +"vara positiv" + +#: src/seq.c:423 +#, c-format +msgid "invalid format string: `%s'" +msgstr "felaktig formatsträng: \"%s\"" + +#: src/seq.c:445 +msgid "format string may not be specified when printing equal width strings" +msgstr "formatsträng får inte anges när strängar med lika bredd skrivs" + +#: src/shred.c:160 +#, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "Användning: %s [FLAGGOR] FIL [...]\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" +"Skriv över de angivna FIL(erna) upprepade gånger, för att göra det svårare\n" +"även för väldigt dyra hårdvaruutrustningar att ta fram data.\n" +"\n" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" +" -f, --force ändra rättigheter för att tillåta skrivning, om nödvändigt\n" +" -n, --iterations=N Skriv över N gånger istället för standard (%d)\n" +" -s, --size=N strimla detta antal byte (ändelse som K, M, G fungerar)\n" + +#: src/shred.c:174 +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" +" -u, --remove stympa och ta bort filen efter överskrivningen\n" +" -v, --verbose följ processen\n" +" -x, --exact avrunda inte filstorlekar upp till nästa hela block;\n" +" detta är standardfallet för icke-normala filer\n" +" -z, --zero lägg till en avslutande överskrivning med nollor för att\n" +" dölja strimlandet\n" +" - strimla standard ut\n" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" +"\n" +"Ta bort FIL(er) om --remove (-u) anges. Standard är att inte ta bort " +"filerna\n" +"för det är vanligt att arbeta på enhetsfiler som /dev/hda, och dessa filer\n" +"bör inte tas bort. När man kör på en vanlig fil använder de flesta flaggan\n" +"--remove.\n" +"\n" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" +"VARNING: Observera att shred bygger på ett väldigt viktigt antagande: att\n" +"filsystemet skriver över data på plats. Detta är det traditionella sättet\n" +"att göra saker, men många moderna filsystemskonstruktioner uppfyller inte\n" +"detta antagande. Följande är exempel på filsystem på vilka shred inte har\n" +"någon effekt:\n" +"\n" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" +"* loggstrukturerade eller journalfilsystem, som de som kommer med AIX och\n" +" Solaris (och JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filsystem som skriver skriver extra data och fortsätter även om en del\n" +" skrivningar misslyckas, såsom RAID-baserade filsystem\n" +"\n" +"* filsystem som tar ögonblicksbilder, såsom Network Appliances NFS-server\n" +"\n" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" +"* filsystem som cachar på tillfälliga platser såsom NFS version 3-klienter\n" +"\n" +"* komprimerade filsystem\n" +"\n" +"Dessutom kan säkerhetskopior av filsystemet och fjärrspeglar innehålla\n" +"kopior av filen som inte kan tas bort, och som gör att det går att\n" +"återskapa den strimlade filen senare.\n" + +#: src/shred.c:808 +#, c-format +msgid "%s: cannot rewind" +msgstr "%s: kan inte backa till början" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "%s: pass %lu/%lu (%s)..." + +#: src/shred.c:868 +#, c-format +msgid "%s: error writing at offset %s" +msgstr "%s: fel vid skrivning vid position %s" + +#: src/shred.c:897 +#, c-format +msgid "%s: file too large" +msgstr "%s: filen är för stor" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "%s: pass %lu/%lu (%s)...%s" + +#: src/shred.c:936 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "%s: pass %lu/%lu (%s)...%s/%s %d%%" + +#: src/shred.c:1195 +#, c-format +msgid "%s: invalid file type" +msgstr "%s: ogiltig filtyp" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s: filen har negativ storlek" + +#: src/shred.c:1265 +#, c-format +msgid "%s: error truncating" +msgstr "%s: fel vid avhuggning" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "" +"%s: kan inte skriva över filidentiferare som bara är öppnad för tillägg" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "%s: tar bort" + +#: src/shred.c:1412 +#, c-format +msgid "%s: renamed to %s" +msgstr "%s: namnändrad till %s" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s: borttagen" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "%s: kan inte ta bort" + +#: src/shred.c:1551 +#, c-format +msgid "%s: invalid number of passes" +msgstr "%s: ogiltigt antal pass" + +#: src/shred.c:1568 +#, c-format +msgid "%s: invalid file size" +msgstr "%s: ogiltig filstorlek" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "Jim Meyering och Paul Eggert" + +#: src/sleep.c:52 +#, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" +"Användning: %s ANTAL[ÄNDELSE]...\n" +" eller: %s FLAGGA\n" +"Gör paus i ANTAL sekunder. ÄNDELSE kan vara \"s\" för att ange sekunder\n" +"(standardval), \"m\" för minuter, \"h\" för timmar eller \"d\" för dagar.\n" +"Till skillnad från de flesta implementationer som kräver att ANTAL är\n" +"ett heltal, kan ANTAL här vara ett valfritt flyttal.\n" +"\n" + +#: src/sleep.c:155 +#, c-format +msgid "invalid time interval `%s'" +msgstr "felaktigt tidsintervall: \"%s\"" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "kan inte läsa realtidsklockan" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "Mike Haertel och Paul Eggert" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" +"Skriv en sorterad sammanfogning av alla FIL(er) till standard ut.\n" +"\n" +"Sorteringsflaggor:\n" +"\n" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" +" -b, --ignore-leading-blanks ignorera inledande mellanslag\n" +" -d, --dictionary-order betrakta endast alfanumeriska och blanka " +"tecken\n" +" -f, --ignore-case byt gemener mot versaler\n" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" +" -g, --general-numeric-sort jämför enligt generella numeriska värden\n" +" -i, --ignore-nonprinting betrakta enbart skrivbara tecken\n" +" -M, --month-sort jämför (okänd) < \"JAN\" < ... < \"DEC\"\n" +" -n, --numeric-sort jämför i enlighet strängens numeriska värde\n" +" -r, --reverse kasta om resultatet av jämförelser\n" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" +"Andra flaggor:\n" +"\n" +" -c, --check kontrollera om indata är sorterad, sortera ej\n" +" -k, --key=POS1[,POS2] starta nyckel vid POS1, sluta den vid POS2\n" +" (räknas från 1)\n" +" -m, --merge sammanfoga redan sorterade filer, sortera ej\n" +" -o, --output=FIL skriv till FIL i stället för standard ut\n" +" -s, --stable stabilisera sortering genom att stänga av sista\n" +" utvägsjämförelse\n" +" -S, --buffer-size=STORLEK använd STORLEK för huvudminnesbuffer\n" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" +" -t, --field-separator=SEP använd SEP istället för övergång från/till " +"blanka\n" +" -T, --temporary-directory=KAT använd KAT för tillfälliga filer, ej " +"$TMPDIR\n" +" eller %s\n" +" -u, --unique med -c: kontrollera strikt ordningsföljd\n" +" annars: mata endast ut den första av flera " +"lika\n" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr " -z, --zero-terminated avsluta rader med byte 0, inte ny rad\n" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" +"\n" +"POS är F[.C][FLGR], där F är fältnumret och C teckenpositionen inom fältet. " +"FLGR är en eller flera enbokstavs ordningsflaggor, vilka ersätter globala " +"ordningsflaggor för den nyckeln. Om ingen nyckel\n" +"är angiven, använd hela raden som nyckel.\n" +"\n" +"STORLEK kan följas av följande multiplikativa ändelser:\n" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" +"% 1% av minne, b 1, K 1024 (standard), och så vidare för M, G, T, P, E, Z, " +"Y.\n" +"\n" +"Utan FIL eller om FIL är -, läs standard in.\n" +"\n" +"*** VARNING ***\n" +"Lokalen som är angiven i omgivningen påverkar sorteringsordning.\n" +"Sätt LC_ALL=C för att få traditionell sorteringsordning som använder\n" +"de underliggande bytevärdena.\n" + +#: src/sort.c:444 +msgid "cannot create temporary file" +msgstr "kan inte skapa temporärfil" + +#: src/sort.c:467 +msgid "open failed" +msgstr "misslyckades öppna" + +#: src/sort.c:487 src/sort.c:2496 +msgid "close failed" +msgstr "misslyckades stänga" + +#: src/sort.c:495 +msgid "write failed" +msgstr "misslyckaes skriva" + +#: src/sort.c:641 +msgid "sort size" +msgstr "sorteringsstorlek" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "misslyckades ta status" + +#: src/sort.c:972 +msgid "read failed" +msgstr "misslyckades läsa" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "%s: %s:%s: oordning: " + +#: src/sort.c:1574 +msgid "standard error" +msgstr "standard fel" + +#: src/sort.c:2032 +#, c-format +msgid "%s: invalid field specification `%s'" +msgstr "%s: felaktig fältspecifikation \"%s\"" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "%s: antal \"%.*s\" för stort" + +#: src/sort.c:2064 +#, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "%s: felaktigt antal i början på \"%s\"" + +#: src/sort.c:2298 +msgid "invalid number after `-'" +msgstr "felaktigt nummer efter \"-\"" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +msgid "invalid number after `.'" +msgstr "felaktigt nummer efter \".\"" + +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "extra tecken i fältspecifikation" + +#: src/sort.c:2338 +msgid "invalid number at field start" +msgstr "felaktigt nummer vid fältstart" + +#: src/sort.c:2342 src/sort.c:2370 +msgid "field number is zero" +msgstr "fältnummer är noll" + +#: src/sort.c:2351 +msgid "character offset is zero" +msgstr "teckenplats är noll" + +#: src/sort.c:2366 +msgid "invalid number after `,'" +msgstr "felaktigt nummer efter \",\"" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "flerteckenstabulator \"%s\"" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "extra operand \"%s\" inte tillåtet med -c" + +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "Användning: %s [FLAGGA] [INFIL [PREFIX]]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" +"Mata ut delar av INFIL med bestämd storlek till PREFIXaa, PREFIXab, ...\n" +"Standardprefix är \"x\". Utan INFIL, eller när INFIL är -, läs standard\n" +"in.\n" + +#: src/split.c:108 +#, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" +" -a, --suffix-length=N använd ändelse av längd N (standard %d)\n" +" -b, --bytes=ANTAL placera ANTAL byte i varje utfil\n" +" -C, --line-bytes=ANTAL placera max ANTAL byte rader per utfil\n" +" -l, --lines=RADER placera RADER rader i varje utfil\n" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" +" --verbose skriv ett meddelande till standard fel strax före\n" +" varje fil öppnas\n" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "Slut på utfiländelser" + +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "skapar fil \"%s\"\n" + +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "kan inte dela på mer än ett sätt" + +#: src/split.c:394 +#, c-format +msgid "%s: invalid suffix length" +msgstr "%s: felaktig ändelselängd" + +#: src/split.c:408 src/split.c:434 +#, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: felaktigt antal byte" + +#: src/split.c:421 +#, c-format +msgid "%s: invalid number of lines" +msgstr "%s: felaktigt antal rader" + +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "flagga \"-%d\" är föråldrad, använd \"-l %d\"" + +#: src/split.c:483 +msgid "invalid number" +msgstr "ogiltigt antal" + +#: src/stat.c:326 +msgid "*** invalid date/time ***" +msgstr "*** ogiltigt datum/tid ***" + +#: src/stat.c:608 +#, c-format +msgid "cannot read file system information for %s" +msgstr "kan inte läsa filsysteminformation för %s" + +#: src/stat.c:684 +#, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "Användning: %s [FLAGGA] FIL...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" +"Visa fil- eller filsystemstatus.\n" +"\n" +" -f, --filesystem visa filsystemstatus istället för filstatus\n" +" -c --format=FORMAT använd angivet FORMAT istället för standard\n" +" -L, --link följ länkar\n" +" -t, --terse skriv informationen i kortfattat format\n" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" +"\n" +"De giltiga formatsekvenserna för filer (utan --filesystem):\n" +"\n" +" %A Åtkomsträttigheter i format läsbart för människa\n" +" %a Åtkomsträttigheter oktalt\n" +" %B Storleken i byte på varje block rapporterat av \"%b\"\n" +" %b Antal använda block (se %B)\n" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" +" %D Enhetsnummer hexadecimalt\n" +" %d Enhetsnummer decimalt\n" +" %F Filtyp\n" +" %f Tillståndet rått hexadecimalt\n" +" %G Gruppnamn på ägare\n" +" %g Gruppid på ägare\n" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" +" %h Antal hårda länkar\n" +" %i Inodnummer\n" +" %N Citerat filnamn, med dereferens om symbolisk länk\n" +" %n Filnamn\n" +" %o IO-blockstorlek\n" +" %s Total storlek, i byte\n" +" %T Undre enhetsnummer hexadecimalt\n" +" %t Övre enhetsnummer hexadecimalt\n" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" +" %U Användarnamn på ägare\n" +" %u Användarid på ägare\n" +" %X Senaste åtkomsttidpunkt i sekunder sedan Epok\n" +" %x Senaste åtkomsttidpunkt\n" +" %Y Senaste modifieringstidpunkt i sekunder sedan Epok\n" +" %y Senaste modifieringstidpunkt\n" +" %Z Senaste ändringstidpunkt i sekunder sedan Epok\n" +" %z Senaste ändringstidpunkt\n" +"\n" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" +"Giltiga formatsekvenser för filsystem:\n" +"\n" +" %a Fria block tillgängliga för icke superanvändare\n" +" %b Totalt antal datablock i filsystem\n" +" %c Totalt antal filnoder i filsystem\n" +" %d Fria filnoder i filsystem\n" +" %f Fria block i filsystem\n" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" +" %i Filsystemid hexadecimalt\n" +" %l Maxlängd på filnamn\n" +" %n Filnamn\n" +" %s Optimal överföringsblockstorlek\n" +" %T Typ i format läsbart för människa\n" +" %t Typ hexadecimalt\n" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" +"Användning: %s [-F ENHETSFIL] [--file=ENHETSFIL] [INSTÄLLNING]...\n" +" eller: %s [-F ENHETSFIL] [--file=ENHETSFIL] [-a|--all]\n" +" eller: %s [-F ENHETSFIL] [--file=ENHETSFIL] [-g|--save]\n" + +#: src/stty.c:504 +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" +"Skriv ut eller ändra terminalkarakteristik.\n" +"\n" +" -a, --all skriv ut alla nuvarande inställningar läsligt\n" +" -g, --save skriv ut alla nuvarande inställningar i stty-format\n" +" -F, --file=ENHET öppna och använd angiven ENHET istället för standard " +"in\n" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" +"\n" +"Möjligt - före INSTÄLLNING indikerar negation. En * indikerar en\n" +"icke-POSIX-inställning. Det underliggande systemet definierar vilka\n" +"inställningar som är tillgängliga.\n" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" +"\n" +"Specialtecken:\n" +" * dsusp TECKEN TECKEN skickar en stoppsignal så fort indata är slut.\n" +" eof TECKEN TECKEN skickar ett filslut (avsluta inmatning)\n" +" eol TECKEN TECKEN avslutar raden\n" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" +" * eol2 TECKEN alternativt TECKEN för radslut\n" +" erase TECKEN TECKEN raderar det senast skrivna tecknet\n" +" intr TECKEN TECKEN skickar en avbrottssignal\n" +" kill TECKEN TECKEN raderar nuvarande rad\n" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" +" * lnext TECKEN TECKEN skriver nästa tecken som ett specialtecken\n" +" quit TECKEN TECKEN skickar en avslutningssignal\n" +" * rprnt TECKEN TECKEN ritar om nuvarande rad\n" +" start TECKEN TECKEN startar utskrift igen efter att ha stoppat den\n" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" +" stop TECKEN TECKEN stoppar utskriften\n" +" susp TECKEN TECKEN skickar en terminalstoppsignal\n" +" * swtch TECKEN TECKEN byter till ett annat skal\n" +" * werase TECKEN TECKEN raderar det senast skrivna ordet\n" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" +"\n" +"Specialinställningar:\n" +" N sätt in- och utmatninshastighet till N baud\n" +" * cols N säg till kärnan att terminalen har N kolumner\n" +" * columns N samma som cols N\n" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" +" ispeed N sätt inmatningshastighet till N\n" +" * line N använd linjetyp N\n" +" min N med -icanon, sätt N tecken till minimum för en avslutad " +"läsning\n" +" ospeed N sätt utmatningshastighet till N\n" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" +" * rows N säg till kärnan att terminalen har N rader\n" +" * size skriv ut antalet rader och kolumner enligt kärnan\n" +" speed skriv ut terminalens hastighet\n" +" time N med -icanon, sätt timeout för läsning till N tiondels " +"sekunder\n" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" +"\n" +"Kontrollinställningar:\n" +" [-]clocal stäng av kontrollsignaler till modem\n" +" [-]cread tillåt mottagandet av indata\n" +" * [-]crtscts möjliggör RTS/CTS handskakning\n" +" csN sätt teckenstorleken till N bitar, N 5-8\n" + +#: src/stty.c:570 +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" +" [-]cstopb använd två stoppbitar per tecken (en med \"-\")\n" +" [-]hup skicka en påläggningssignal när sista processen stänger " +"ttyn\n" +" [-]hupcl samma som [-]hup\n" +" [-]parenb generera paritetsbit i utdata och förvänta paritetsbit i " +"indata\n" +" [-]parodd ställ in udda paritet (jämn med \"-\")\n" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" +"\n" +"Inställningar för inmatning:\n" +" [-]brkint avbrott orsakar en avbrottssignal\n" +" [-]icrnl översätt vagnretur till nyrad\n" +" [-]ignbrk ignorera avbrottstecken\n" +" [-]igncr ignorera vagnretur\n" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" +" [-]ignpar ignorera tecken med paritetsfel\n" +" * [-]imaxbel ljud signal, men töm inte full indatabuffert på grund av\n" +" ett tecken\n" +" [-]inlcr översätt nyrad till vagnretur\n" +" [-]inpck möjliggör paritetskontroll av indata\n" +" [-]istrip rensa den höga (8:e) biten i ett inmatningstecken\n" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" +" * [-]iuclc översätt versaler till gemener\n" +" * [-]ixany tillåt vilket tecken som helst att starta om utmatning, \n" +" inte bara starttecken\n" +" [-]ixoff möjliggör start/stopp-tecken\n" +" [-]ixon möjliggör XON/XOFF flödeskontroll\n" +" [-]parmrk markera paritetsfel (med en 255-0 teckensekvens)\n" +" [-]tandem samma som [-]ixoff\n" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" +"\n" +"Inställningar för utmatning:\n" +" * bsN fördröjning på backsteg, N är [0-1]\n" +" * crN fördröjning på vagnretur, N är [0-3]\n" +" * ffN fördröjning på sidmatning, N är [0-1]\n" +" * nlN fördröjning på nyrad, N är [0-1]\n" + +#: src/stty.c:608 +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" +" * [-]ocrnl översätt vagnretur till nyrad\n" +" * [-]ofdel använd raderingstecken till utfyllnad, istället för " +"nulltecken\n" +" * [-]ofill använd utfyllnadstecken istället för tidstagning \n" +" vid fördröjningar\n" +" * [-]olcuc översätt gemener till versaler\n" +" * [-]onlcr översätt nyrad till vagnretur-nyrad\n" +" * [-]onlret nyrad utför vagnretur\n" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" +" * [-]onocr skriv inte ut vagnretur i första kolumnen\n" +" [-]opost bearbetar utdata\n" +" * tabN fördröjning på horisontell tabulator, N är [0-3]\n" +" * tabs samma som tab0\n" +" * -tabs samma som tab3\n" +" * vtN fördröjning på vertikal tabulator, N är [0-1]\n" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" +"\n" +"Lokala inställningar:\n" +" [-]crterase eka raderingstecken som backsteg-mellanslag-backsteg\n" +" * crtkill radera hela raden genom att använda inställningarna \n" +" för echoprt och echoe\n" +" * -crtkill radera hela raden genom att använda inställningarna\n" +" för echoctl och echok\n" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" +" * [-]ctlecho eka kontrolltecken med hattnotation (\"^c\")\n" +" [-]echo eka inmatade tecken\n" +" * [-]echoctl samma som [-]ctlecho\n" +" [-]echoe samma som [-]crterase\n" +" [-]echok eka ett nyrad efter ett dödatecken\n" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" +" * [-]echoke samma som [-]crtkill\n" +" [-]echonl eka nyrad även om inga andra tecken ekas\n" +" * [-]echoprt eka raderade tecken baklänges, mellan \"\\\" och \"/\"\n" +" [-]icanon möjliggör specialtecknen erase, kill, werase och rprnt\n" +" [-]iexten möjliggör specialtecken som inte är POSIX-tecken\n" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" +" [-]isig möjliggör specialtecken för avbrott, slut och vila\n" +" [-]noflsh koppla bort rensning efter avbrottsignaler och \n" +" specialsluttecken\n" +" * [-]prterase samma som [-]echoprt\n" +" * [-]tostop stoppa bakgrundsjobb som försöker skriva till terminalen\n" +" * [-]xcase tillsammans med icanon, används \"\\\" som kontrollsekvens\n" +" för versaltecken\n" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" +"\n" +"Kombinationsinställningar:\n" +" * [-]LCASE samma som [-]lcase\n" +" cbreak samma som -icanon\n" +" -cbreak samma som icanon\n" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" +" cooked samma som brkint ignpar istrip icrnl ixon oppst isig " +"icanon,\n" +" filsluttecken och radsluttecken till sina standardvärden\n" +" -cooked samma som raw\n" +" crt samma som echoe echoctl echoke\n" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" +" dec samma som echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq samma som [-]ixany\n" +" ek radera- och återställtecken till sina standardvärden\n" +" evenp samma som parenb -parodd cs7\n" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" +" -evenp samma som -parenb cs8\n" +" * [-]lcase samma som xcase iuclc olcuc\n" +" litout samma som -parenb -istrip -opost cs8\n" +" -litout samma som parenb istrip opost cs7\n" +" nl samma som -icrnl -onlcr\n" +" -nl samma som icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" +" oddp samma som parenb parodd cs7\n" +" -oddp samma som -parenb cs8\n" +" [-]parity samma som [-]evenp\n" +" pass8 samma som -parenb -istrip cs8\n" +" -pass8 samma som parenb istrip cs7\n" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" +" raw samma som -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw samma som cooked\n" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" +" sane samma som cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, \n" +" alla specialtecken till sina standardvärden.\n" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" +"\n" +"Hantera ttylinjen kopplad till standard in. Utan argument skrivs \n" +"baudhastighet, radtyp och avvikelse från stty sane ut. I inställningarna \n" +"tolkas TECKEN ordagrant, eller kodat som i ^c, 0x37, 0177 eller 127;\n" +"specialvärdet ^- eller undef används för att stänga av specialtecken.\n" + +#: src/stty.c:787 +msgid "only one device may be specified" +msgstr "endast en enhet får anges" + +#: src/stty.c:882 +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "" +"flaggorna för utförlig och stty-läsbar utmatningsstil är ömsesidigt\n" +"uteslutande" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "när en utmatningstyp specificeras, kan inte inställningar göras" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "%s: kan inte starta om icke-blockerande läge" + +#: src/stty.c:957 src/stty.c:1064 +#, c-format +msgid "invalid argument `%s'" +msgstr "felaktigt argument \"%s\"" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, c-format +msgid "missing argument to `%s'" +msgstr "argument saknas till \"%s\"" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "%s: kunde inte utföra alla efterfrågade operationer" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "new_mode: inställning\n" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "%s: ingen storleksinformation på denna enhet" + +#: src/stty.c:1944 +#, c-format +msgid "invalid integer argument `%s'" +msgstr "felaktigt heltalsargument \"%s\"" + +#: src/su.c:289 +msgid "Password:" +msgstr "Lösenord:" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "getpass: kan inte öppna /dev/tty" + +#: src/su.c:350 +msgid "cannot set groups" +msgstr "kan inte sätta grupper" + +#: src/su.c:354 +msgid "cannot set group id" +msgstr "kan inte sätta grupp-id" + +#: src/su.c:356 +msgid "cannot set user id" +msgstr "kan inte sätta användar-id" + +#: src/su.c:437 +#, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "Användning: %s [FLAGGA]... [-] [ANVÄNDARE [ARG]...]\n" + +#: src/su.c:438 +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" +"Ändra gällande användar-id och grupp-id till ANVÄNDAREs.\n" +"\n" +" -, -l, --login gör skalet till ett inloggningsskal\n" +" -c, --command=KOMMANDO skicka ett enskilt KOMMANDO till skalet med -" +"c\n" +" -f, --fast skicka -f till skalet (för csh eller tcsh)\n" +" -m, --preserve-environment återställ inte miljövariabler\n" +" -p samma som -m\n" +" -s, --shell=SKAL kör SKAL, om /etc/shells tillåter det\n" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" +"\n" +"Att bara ange - implierar -l. Om ANVÄDNARE inte anges, antas root.\n" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "användaren %s existerar inte" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "felaktigt lösenord" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "använder ett skyddat skal %s" + +#: src/su.c:580 +#, c-format +msgid "warning: cannot change directory to %s" +msgstr "varning: kan inte byta katalog till %s" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "Kayvan Aghaiepour och David MacKenzie" + +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" +"Skriv kontrollsumma och antal block för varje FIL.\n" +"\n" +" -r överge -s, använd BSD summeringsalgoritm, använd 1 k " +"block\n" +" -s, --sysv använd System V:s summeringsalgoritm, använd 512-" +"byteblock\n" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" +"Tvinga ut ändrade block till disk, uppdatera superblocket.\n" +"\n" + +#: src/sync.c:70 src/tty.c:112 +msgid "ignoring all arguments" +msgstr "ignorerar alla argument" + +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr " --help visa denna hjälptext och avsluta\n" + +#: src/sys2.h:494 +msgid " --version output version information and exit\n" +msgstr " --version visa versionsinformation och avsluta\n" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "Jay Lepreau och David MacKenzie" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Skriv varje FIL till standard ut, sista raden först.\n" +"Utan FIL, eller när FIL är -, läs standard in.\n" +"\n" + +#: src/tac.c:139 +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" +" -b, --before sätt in skiljetecken före i stället för efter\n" +" -r, --regex tolka skiljetecknet som ett reguljärt uttryck\n" +" -s, --separator=STRÄNG använd STRÄNG som skiljetecken i stället för ny " +"rad\n" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "standard in: läsfel" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "skiljetecken kan inte vara tomt" + +#: src/tail.c:49 +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "Paul Rubin, David MacKenzie, Ian Lance Taylor och Jim Meyering" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Skriv de sista %d raderna från varje FIL till standard ut.\n" +"Vid fler än en FIL, inled varje med ett huvud med filnamnet.\n" +"Utan FIL eller om FIL är -, läs standard in.\n" +"\n" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" +" --retry fortsätt försök öppna filen även om den inte är\n" +" åtkomlig när tail startar eller om den blir\n" +" oåtkomlig senare -- endast meningsfullt med -f\n" +" -c, --bytes=N mata ut de N sista byten\n" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" +" -f, --follow[={name|descriptor}]\n" +" mata ut nya rader i takt med att filen växer;\n" +" -f, --follow och --follow=descriptor är\n" +" likvärdiga\n" +" -F samma som --follow=name --retry\n" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" +" -n, --lines=N mata ut de sista N raderna istället för de sista %" +"d\n" +" --max-unchanged-stats=N\n" +" med --follow=name, öppna om FIL som inte har " +"ändrat\n" +" storlek efter N (standard %d) iterationer för " +"att\n" +" se om den har tagits bort eller ändrat namn\n" +" (detta är det vanliga fallet för roterade " +"loggfiler)\n" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" +" --pid=PID med -f, avsluta efter att process-id PID dör\n" +" -q, --quiet, --silent mata aldrig ut huvuden med filnamn\n" +" -s, --sleep-interval=S med -f, sov ungefär S sekunder (standard 1,0)\n" +" mellan iterationer.\n" +" -v, --verbose mata alltid ut huvuden med filnamn\n" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" +"\n" +"Om det första tecknet i N (antal byte eller rader) är \"+\", starta\n" +"utmatning med den N:te posten räknat från början av varje fil. Mata\n" +"annars ut de sista N posterna i filen. N kan ha en multiplikator som\n" +"ändelse: b för 512, k för 1024, m för 1048576 (1 megabyte).\n" +"\n" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" +"Med --follow (-f) följer tail normalt filidentifieraren, vilket\n" +"betyder att även om filen man gör tail på byter namn, kommer tail att\n" +"fortsätta följa dess slut. " + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" +"Detta standardbeteende är inte önskvärt\n" +"när du verkligen vill följa det faktiska namnet på filen, inte\n" +"filidentifieraren (t.ex. roterade loggfiler). Använd --follow=name i\n" +"så fall. Det gör att tail följer den namngivna filen genom att öppna\n" +"om den med jämna mellanrum för att se om den har tagits bort och\n" +"skapats om av något annat program.\n" + +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "stänger %s (fd=%d)" + +#: src/tail.c:391 +#, c-format +msgid "%s: cannot seek to offset %s" +msgstr "%s: kan inte söka till position %s" + +#: src/tail.c:395 +#, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "%s: kan inte söka till relativ position %s" + +#: src/tail.c:400 +#, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "%s: kan inte söka till slut-relativ position %s" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "\"%s\" har blivit oåtkomlig" + +# Hu vilka översättninga!! +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "\"%s\" har ersatts av en fil som inte kan följas; ger upp detta namn" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "\"%s\" har blivit åtkomlig" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "\"%s\" har dykt upp; följer slutet på en ny fil" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "\"%s\" har bytts ut, följer slutet på den nya filen" + +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "%s: fil stympad" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "inga fler filer" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "%s: kan inte följa slutet på denna sorts fil, ger upp med detta namn" + +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "%c: ogiltigt ändelsetecken i gammalmodig flagga" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"för många argument. När tail:s föråldrade flaggsyntax (%s) används\n" +"får det inte vara mer än ett filargument. Använd de likvärdiga\n" +"flaggorna -n eller -c istället." + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"Varning: det är inte portabelt att använda två eller flera filargument\n" +"med tail:s föråldrade flaggsyntax (%s). Använd de likvärdiga\n" +"flaggorna -n eller -c istället." + +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "flagga \"%s\" är föråldrad, använd \"%s-%c %.*s\"" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "%s är större än den maximala filstorleken på detta system" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "%s: ogiltigt antal oförändrade status mellan öppningar" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "%s: ogiltigt antal successiva storleksändringar" + +#: src/tail.c:1534 +#, c-format +msgid "%s: invalid PID" +msgstr "%s: felaktigt PID" + +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: ogiltigt antal sekunder" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "varning: --retry är bara användbar när filer följs via namn" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "varning: PID ignorerad, --pid=PID är användbar bara när man följer" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "varning: --pid=PID stöds inte på detta system" + +#: src/tee.c:33 +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "Mike Parker, Richard M. Stallman och David MacKenzie" + +#: src/tee.c:64 +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" +"Kopiera standard in till varje FIL, och även till standard ut.\n" +"\n" +" -a, --append lägg till till angivna FILer, skriv inte över\n" +" -i, --ignore-interrupts ignorera avbrottssignaler\n" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "argument förväntas\n" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "heltalsuttryck förväntas %s\n" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "\")\" förväntas\n" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "\")\" förväntades, fann %s\n" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "%s: unär operator förväntas\n" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "%s: binär operator förväntas\n" + +#: src/test.c:424 +msgid "before -lt" +msgstr "före -lt" + +#: src/test.c:432 +msgid "after -lt" +msgstr "efter -lt" + +#: src/test.c:446 +msgid "before -le" +msgstr "före -le" + +#: src/test.c:453 +msgid "after -le" +msgstr "efter -le" + +#: src/test.c:469 +msgid "before -gt" +msgstr "före -gt" + +#: src/test.c:476 +msgid "after -gt" +msgstr "efter -gt" + +#: src/test.c:490 +msgid "before -ge" +msgstr "före -ge" + +#: src/test.c:497 +msgid "after -ge" +msgstr "efter -ge" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "-nt tar inte -l\n" + +#: src/test.c:526 +msgid "before -ne" +msgstr "före -ne" + +#: src/test.c:533 +msgid "after -ne" +msgstr "efter -ne" + +#: src/test.c:549 +msgid "before -eq" +msgstr "före -eq" + +#: src/test.c:556 +msgid "after -eq" +msgstr "efter -eq" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "-ef tar inte -l\n" + +#: src/test.c:586 +msgid "-ot does not accept -l\n" +msgstr "-ot accepterar inte -l\n" + +#: src/test.c:593 +msgid "unknown binary operator" +msgstr "okänt binär operator" + +#: src/test.c:781 +msgid "after -t" +msgstr "efter -t" + +#: src/test.c:979 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"Användning: %s UTTRYCK\n" +" eller: [ UTTRYCK ]\n" +" eller: %s FLAGGA\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" +"Returnera med ett värde som bestäms av UTTRYCK.\n" +"\n" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" +"\n" +"UTTRYCK är sant eller falskt och sätter returvärdet. Det är något av:\n" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" +"\n" +" ( UTTRYCK ) UTTRYCK är sant\n" +" ! UTTRYCK UTTRYCK är falskt\n" +" UTTRYCK1 -a UTTRYCK2 både UTTRYCK1 och UTTRYCK2 är sanna\n" +" UTTRYCK1 -o UTTRYCK2 något av UTTRYCK1 eler UTTRYCK2 är sant\n" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" +"\n" +" [-n] STRÄNG längden på STRÄNG är inte noll\n" +" -z STRÄNG längden på STRÄNG är noll\n" +" STRÄNG1 = STRÄNG2 strängarna är lika\n" +" STRÄNG1 != STRÄNG2 strängarna är inte lika\n" + +#: src/test.c:1009 +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" +"\n" +" HELTAL1 -eq HELTAL2 HELTAL1 är lika med HELTAL2\n" +" HELTAL1 -ge HELTAL2 HELTAL1 är större än eller lika med HELTAL2\n" +" HELTAL1 -gt HELTAL2 HELTAL1 är större än HELTAL2\n" +" HELTAL1 -le HELTAL2 HELTAL1 är mindre än eller lika med HELTAL2\n" +" HELTAL1 -lt HELTAL2 HELTAL1 är mindre än HELTAL2\n" +" HELTAL1 -ne HELTAL2 HELTAL1 är inte lika med HELTAL2\n" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" +"\n" +" FIL1 -ef FIL2 FIL1 och FIL2 har samma enhets- och inodnummer\n" +" FIL1 -nt FIL2 FIL1 är nyare (ändringstidpunkt) än FIL2\n" +" FIL1 -ot FIL2 FIL1 är äldre än FIL2\n" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" +"\n" +" -b FIL FIL finns och är en specialfil för blockåtkomst\n" +" -c FIL FIL finns och är en specialfil för teckenåtkomst\n" +" -d FIL FIL finns och är en katalog\n" +" -e FIL FIL finns\n" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" +" -f FIL FIL finns och är en vanlig fil\n" +" -g FIL FIL finns och har sätt-grupp-ID-biten satt\n" +" -h FIL FIL finns och är en symbolisk länk (samma som -L)\n" +" -G FIL FIL finns och ägs av verksam gruppidetnitet\n" +" -k FIL FIL finns med fastbiten satt\n" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" +" -L FIL FIL finns och är en symbolisk länk (samma som -h)\n" +" -O FIL FIL finns coh ägs av verksam användaridentitet\n" +" -p FIL FIL finns och är ett namngivet rör\n" +" -r FIL FIL finns och är läsbar\n" +" -s FIL FIL finns och har större storlek än noll\n" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" +" -S FIL FIL existterar och är ett uttag (socket)\n" +" -t [FI] filidentifierare FI (standard ut om inget anges) är öppnad mot " +"en\n" +" terminal\n" +" -u FIL FIL existerar och dess set-user-ID-bit är satt\n" +" -w FIL FIL existerar och är skrivbar\n" +" -x FIL FIL existerar och är exekverbar\n" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" +"\n" +"Var medveten om att parenteser måste föregås av kontrollsekvens \n" +"(t.ex. av omvänt snedstreck) för skal. HELTAL kan också vara -l STRÄNG,\n" +"som har värdet av längden på STRÄNG.\n" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "FIXAMIG: ksb och mjb" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr " \"]\" saknas\n" + +#: src/test.c:1125 +msgid "too many arguments\n" +msgstr "för många argument\n" + +#: src/touch.c:39 +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie och Randy Smith" + +#: src/touch.c:164 src/touch.c:179 +#, c-format +msgid "creating %s" +msgstr "skapar %s" + +#: src/touch.c:222 +#, c-format +msgid "cannot touch %s" +msgstr "kan inte beröra %s" + +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "sätter tider på %s" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" +"Uppdatera åtkomst- och modifikationstiderna på varje FIL till aktuell tid.\n" +"\n" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" +" -a ändra bara åtkomsttiden\n" +" -c --no-create skapa inga filer\n" +" -d, --date=STRÄNG tolka STRÄNG och använd det istället för aktuell " +"tid\n" +" -f (ignorerad)\n" +" -m ändra bara modifikationstiden\n" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" +" -r, --reference=FIL använd FILs tider istället för aktuell tid\n" +" -t STÄMPEL använd [[ÅÅ]ÅÅ]MMDDhhmm[.ss] istället för aktuell " +"tid\n" +" --time=ORD sätt tid som anges av ORD: access atime use (samma " +"som\n" +" -a) modify mtime modify (samma som -m)\n" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" +"\n" +"Observera att flaggorna -d och -t tar olika tid-datumformat.\n" + +#: src/touch.c:311 src/touch.c:331 +#, c-format +msgid "invalid date format %s" +msgstr "felaktigt datumformat %s" + +#: src/touch.c:355 +msgid "cannot specify times from more than one source" +msgstr "kan inte ange tider från mer än en källa" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "" +"varning: \"touch %s\" är föråldrat; använd \"touch -t %04d%02d%02d%02d%02d.%" +"02d\"" + +#: src/touch.c:399 +msgid "file arguments missing" +msgstr "filargument saknas" + +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "Användning: %s [FLAGGA]... MÄNGD1 [MÄNGD2]\n" + +#: src/tr.c:331 +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" +"Översätt, pressa ihop och/eller ta bort tecken från standard in, skriv till\n" +"standard ut.\n" +"\n" +" -c, --complement komplementera först MÄNGD1\n" +" -d, --delete ta bort tecken i MÄNGD1, översätt inte\n" +" -s, --squeeze-repeats ersätt varje insekvens av upprepade tecken som är\n" +" uppräknat i MÄNGD1 med en ensam förekomst av " +"det\n" +" tecknet\n" +" -t, --truncate-set1 stympa först MÄNGD1 till längden hos MÄNGD2\n" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" +"\n" +"MÄNGDer anges som en sträng tecken. De flesta representerar sig själva.\n" +"Följande sekvenser tolkas:\n" +"\n" +" \\NNN tecken med det oktala värdet NNN (1 till 3 oktala " +"siffror)\n" +" \\\\ bakstreck\n" +" \\a ljudsignal\n" +" \\b baksteg\n" +" \\f sidmatning\n" +" \\n nyrad\n" +" \\r vagnretur\n" +" \\t horisontell tabulator\n" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" +" \\v vertikal tabulator\n" +" TECK1-TECK2 alla tecken från TECK1 till TECK2 i stigande ordning\n" +" [TECK*] i MÄNGD2, repetera TECK upp till längden av MÄNGD1\n" +" [TECK*REP] REP kopior av TECK, REP är oktalt om det startar med 0\n" +" [:alnum:] alla bokstäver och siffror\n" +" [:alpha:] alla bokstäver\n" +" [:blank:] alla horisontella blanktecken\n" +" [:cntrl:] alla styrtecken\n" +" [:digit:] alla siffror\n" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" +" [:graph:] alla utskrivbara tecken, ej blanka\n" +" [:lower:] alla gemena bokstäver\n" +" [:print:] alla skrivbara tecken, inklusive mellanrum\n" +" [:punct:] alla tecken för interpunktion\n" +" [:space:] alla horisontella och vertikala blanka\n" +" [:upper:] alla versala bokstäver\n" +" [:xdigit:] alla hexidecimala siffror\n" +" [=TECKEN=] alla tecken som är lika med TECKEN\n" + +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" +"\n" +"Översättning sker om -d inte ges och både MÄNGD1 och MÄNGD2 finns. -t\n" +"kan endast användas vid översättning. MÄNGD2 expanderas till längden\n" +"av MÄNGD1 genom att dess sista tecken upprepas tillräckligt många\n" +"gånger. " + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" +"Överflödiga tecken i MÄNGD2 ignoreras. Endast [:lower:] och\n" +"[:upper:] expanderas garanterat i stigande ordning. Används de i\n" +"MÄNGD2 vid översättning kan de endast användas parvis för att ange\n" +"skiftlägesändring. " + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" +"-s använder MÄNGD1 om det ej är översättning eller\n" +"borttagning; annars använder sammanpressning MÄNGD2 och sker efter\n" +"översättning och borttagning.\n" + +# Hur översätta escape? +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" +"varning: den tvetydiga oktala kontrollsekvensen \\%c%c%c tolkas som\n" +"en 2-byte sekvens \\0%c%c, \"%c\"" + +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "ogiltig bakstrecksekvens vid strängens slut" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "ogiltig bakstrecksekvens \"\\%c\"" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "intervallets ändpunkter för \"%s-%s\"är i omvänd ordning" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "ogiltig återupprepning \"%s\" i sammansättningen [c*n]" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "saknat teckenklassnamn \"[::]\"" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "saknat ekvivalensklasstecken \"[==]\"" + +#: src/tr.c:1025 +#, c-format +msgid "invalid character class `%s'" +msgstr "ogiltig teckenklass \"%s\"" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "%s: likhetsklassoperand får bara bestå av ett tecken" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "återupprepningssammansättningen [c*] får ej förekomma i sträng1" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "endast en [c*] återupprepningssammansättning kan förekomma i sträng2" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "[=c=]-uttryck får inte förekomma i sträng2 vid översättning" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "när set1 inte stympas får sträng2 ej vara tom" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" +"vid översättning med kompleterande teckenklasser måste sträng2\n" +"översätta alla tecken i domänen till ett" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" +"vid översättning får endast teckenklasserna \"upper\" och \"lower\"\n" +"finnas i sträng2" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "sammansättningen [c*] får förekomma i sträng2 endast vid översättning" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "två strängar måste ges vid översättning" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "" +"två strängar måste ges när man både tar bort och sammanpressar\n" +"upprepningar" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" +"endast en sträng får anges när man tar bort utan återupprepad\n" +"sammanpressning" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "minst en sträng måste anges vid återupprepad sammanpressning" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "[:upper:] och/eller [:lower:] är felaktigt uppställda" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" +"ogiltig identitetsöversättning; vid översättning måste [:lower:]- eller\n" +"[:upper:]-konstruktioner i sträng1 ställas mot en motsvarande konstruktion\n" +"([:upper:] respektive [:lower:]) i sträng2" + +#: src/true.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Användning: %s [ignorerade kommandoradsargument]\n" +" eller: %s FLAGGA\n" +"Avsluta och returnera ett värde som indikerar att programmet lyckats\n" +"\n" +"Namnet på dessa flaggor får inte förkortas.\n" +"\n" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Användning: %s [FLAGGA] [FIL]\n" +"Skriv en fullständigt ordnad lista konsistent med den partiella ordningen i\n" +"FIL. \"Utan FIL eller om FIL är -, läs standard in.\n" +"\n" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "%s: indata innehåller en slinga:" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "endast ett argument kan anges" + +#: src/tty.c:63 +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" +"Skriv ut filnamnet på den terminal som är kopplad till standard in.\n" +"\n" +" -s, --silent, --quiet skriv inte ut någonting, returnera endast " +"slutstatus\n" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "inte en tty" + +#: src/uname.c:111 +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" +"Skriv ut viss systeminformation. Om ingen FLAGGA angetts används -s.\n" +"\n" +" -a, --all skriv ut all information, i följande ordning:\n" +" -s, --kernel-name skriv ut kärnans namn\n" +" -n, --nodename skriv ut maskinens nätverksnodnamn\n" +" -r, --kernel-release skriv ut kärnans utgåva\n" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" +" -v, --kernel-version skriv ut kärnans version\n" +" -m, --machine skriv ut maskin(hårdvaru)typen\n" +" -p, --processor skriv ut processortypen\n" +" -i, --hardware-platform skriv ut hårdvaruplattform\n" +" -o, --operating-system skriv ut operativsystemet\n" + +#: src/uname.c:226 +msgid "cannot get system name" +msgstr "kan inte avgöra systemnamn" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Konvertera mellanrum i varje FIL till tabulatorer, skriv till standard ut.\n" +"Utan FIL eller om FIL är -, läs standard in.\n" +"\n" + +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" +" -a, --all konvertera alla mellanrum, i stället för bara inledande\n" +" --first-only konvertera bara inledande mellanrumsekvenser (ersätter -" +"a)\n" +" -t, --tabs=N tabulatorstegen är N långa i stället för 8 (aktiverar -" +"a)\n" +" -t, --tabs=LISTA använd kommaseparerad LISTA med tab-positioner (aktiverar " +"-a)\n" + +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "flagga \"-LIST\" är föråldrad, använd \"--first-only -t LIST\"" + +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "Användning: %s [FLAGGA]... [INFIL [UTFIL]]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" +"Ta bort alla utom en av på varandra följande identiska rader från\n" +"INFIL (eller standard in), skriv till UTFIL (eller standard ut).\n" +"\n" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" +" -c, --count skriv antalet gånger raden förekom framför raden\n" +" -d, --repeated skriv endast rader som förekommer flera gånger\n" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" +" -D, --all-repeated[=avgränsningsmetod] skriv alla upprepade rader\n" +" avgränsningsmetod={none(standard),prepend,separate}\n" +" Avgränsning görs med blanka rader.\n" +" -f, --skip-fields=N undvik jämförelse av de första N fälten\n" +" -i, --ignore-case ignorera skiftläge vid jämförelse\n" +" -s, --skip-chars=N undvik jämförelse av de första N tecknen\n" +" -u, --unique skriv endast unika rader\n" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr " -w, --check-chars=N jämför inte mer än N tecken i rader\n" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" +"\n" +"Ett fält är en följd av mellanslag och sedan tecken som ej är mellanslag.\n" +"Fält hoppas över före tecken.\n" + +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "fel vid läsning av %s" + +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "fel vid skrivning av %s" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "extra operand \"%s\"" + +#: src/uniq.c:473 src/uniq.c:498 +msgid "invalid number of fields to skip" +msgstr "ogiltigt antal fält att hoppa över" + +#: src/uniq.c:507 +msgid "invalid number of bytes to skip" +msgstr "ogiltigt antal byte att hoppa över" + +#: src/uniq.c:516 +msgid "invalid number of bytes to compare" +msgstr "ogiltigt antal byte att jämföra" + +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "flagga \"-%lu\" är föråldrad, använd \"-f %lu\"" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "" +"att skriva alla duplicerade rader och antalet upprepningar är meningslöst" + +#: src/unlink.c:51 +#, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"Användning: %s FIL\n" +" eller: %s FLAGGA\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" +"Anropa funktionen unlink för att ta bort angiven FIL.\n" +"\n" + +#: src/unlink.c:99 +#, c-format +msgid "cannot unlink %s" +msgstr "kan inte ta bort %s" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "kunde inte avgöra boot-tillfälle" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr " %2d:%02d%s igång " + +#: src/uptime.c:140 +msgid "am" +msgstr "am" + +#: src/uptime.c:140 +msgid "pm" +msgstr "pm" + +#: src/uptime.c:142 +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d dag" +msgstr[1] "%d dagar" + +#: src/uptime.c:144 +#, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "%d användare" +msgstr[1] "%d användare" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr ", medellast: %.2f" + +#: src/uptime.c:191 src/users.c:118 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "Användning: %s [FLAGGA]... [ FIL ]\n" + +#: src/uptime.c:192 +#, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Skriver ut aktuell tid, den tid som systemet varit uppe,\n" +"antalet användare på systemet och medelvärdet av antalet jobb\n" +"i körkön under de senaste 1, 5 och 15 minuterna.\n" +"Om FIL är specifierad, använd %s. %s som FIL är vanligt.\n" +"\n" + +#: src/users.c:35 +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "Joseph Arceneaux och David MacKenzie" + +#: src/users.c:119 +#, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Skriv ut vilka som är påloggade enligt FIL.\n" +"Om FIL inte är angiven, använd %s. %s som FIL är vanligt.\n" +"\n" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "Paul Rubin och David MacKenzie" + +#: src/wc.c:129 +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" +"Skriv antal byte, ord och nyrader för varje FIL och en rad med totaler\n" +"om mer än en FIL angivits. Utan FIL eller om FIL är -, läs standard\n" +"in.\n" +" -c, --bytes skriv antalet byte\n" +" -m, --chars skriv antalet tecken\n" +" -l, --lines skriv antalet rader\n" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" +" -L, --max-line-length skriv längden på den längsta raden\n" +" -w, --words skriv antalet ord\n" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "Joseph Arceneaux, David MacKenzie och Michael Stone" + +#: src/who.c:223 +msgid " old " +msgstr "länge" + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "id=" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "term=" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "slut=" + +#: src/who.c:446 +msgid "clock change" +msgstr "klockändring" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "körnivå" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "sist=" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" +"\n" +"# användare=%u\n" + +#: src/who.c:498 +msgid "NAME" +msgstr "NAMN" + +#: src/who.c:498 +msgid "LINE" +msgstr "LINJE" + +#: src/who.c:498 +msgid "TIME" +msgstr "TID" + +# Högst 6 tecken kommer skrivas ut. +#: src/who.c:498 +msgid "IDLE" +msgstr "LUGN" + +#: src/who.c:498 +msgid "PID" +msgstr "PID" + +# Högst 8 tecken kommer skrivas ut. +#: src/who.c:499 +msgid "COMMENT" +msgstr "KOMMENTAR" + +#: src/who.c:499 +msgid "EXIT" +msgstr "SLUT" + +#: src/who.c:574 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "Användning: %s [FLAGGA]... [ FIL | ARG1 ARG2 ]\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" +"\n" +" -a, --all samma som -b -d --login -p -r -t -T -u\n" +" -b, --boot tid för senaste systemuppstart\n" +" -d, --dead skriv ut döda processer\n" +" -H, --heading skriv ut rad med kolumnhuvuden\n" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" +" -i, --idle lägg till användarens inaktiva tid som TIMMAR:MINUTER,\n" +" . eller \"länge\" (undanbedes, använd -u)\n" +" --login skriv ut inloggningsprocesser (likvärdigt med SUS -l)\n" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" +" -l, --lookup försök kvalificera värdnamn med hjälp av DNS\n" +" (-l undanbedes, använd --lookup)\n" +" -m endast värdnamn och användarnamn associerat med standard " +"in\n" +" -p, --process skriv aktiva processer startade av init\n" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" +" -q, --count alla inloggningsnamn och antal inloggade användare\n" +" -r, --runleve skriv aktuell körnivå\n" +" -s, --short skriv endast namn, linje och tid (standard)\n" +" -t, --time skriv alla ändringar av systemklockan\n" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" +" -T, -w, --mesg lägg till användares meddelandestatus som +, - eller ?\n" +" -u, --users lista inloggade användare\n" +" --message samma som -T\n" +" --writeable samma som -T\n" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" +"\n" +"Om FIL inte är angiven, använd %s. %s som FIL är vanligt.\n" +"Om ARG1 ARG2 är angivna, antas -m: \"är jag\" eller \"mamma gillar\" är " +"vanligt.\n" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "Varning: -i kommer tas bort i en framtida utgåva; använd -u istället" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" +"Varning: betydelsen av \"-l\" kommer att ändras i en framtida utgåva för att " +"stämma med POSIX" + +#: src/whoami.c:53 +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" +"Skriv ut användarnamnet som associeras med den aktuella gällande användar-id:" +"t.\n" +"Samma som id -un.\n" +"\n" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "%s: kan inte hitta användarnamn för UID %u\n" + +#: src/yes.c:49 +#, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"Användning: %s [STRÄNG]...\n" +" eller: %s FLAGGA\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" +"Skriv gång på gång en rad med alla specifierade STRÄNG(ar), eller \"y\"\n" +"\n" + +#~ msgid "\\%c: invalid escape" +#~ msgstr "\\%c: felaktig kontrollsekvens" + +#~ msgid "program error" +#~ msgstr "programfel" + +#~ msgid "stack overflow" +#~ msgstr "stackspill" diff --git a/src/apps/bin/coreutils-5.0/po/tr.gmo b/src/apps/bin/coreutils-5.0/po/tr.gmo new file mode 100644 index 0000000000..e74a6d595b Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/tr.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/tr.po b/src/apps/bin/coreutils-5.0/po/tr.po new file mode 100644 index 0000000000..0cf85d901d --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/tr.po @@ -0,0 +1,8545 @@ +# coreutils Turkish translation. +# Copyright (C) 2001, 2002 Free Software Foundation, Inc. +# Ali Devin Sezer , 2002. +# Nilgün Belma Bugüner , 2001, 2002 +# Onur Tolga ÅžEHİTOÄžLU , 1998. +# Deniz Akkus Kanca , 2001. +# +msgid "" +msgstr "" +"Project-Id-Version: coreutils 4.5.4\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2002-12-22 15:27+0200\n" +"Last-Translator: Deniz Akkus Kanca \n" +"Language-Team: Turkish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: KBabel 0.9.6\n" + +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "%s argümanı `%s' için geçersiz" + +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "%s argümanı `%s' için belirsiz" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "Geçerli argümanlar:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "yazma hatası" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "Bilinmeyen sistem hatası" + +# +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "normal boÅŸ dosya" + +# +#: lib/file-type.c:42 +msgid "regular file" +msgstr "normal dosya" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "dizin" + +# +#: lib/file-type.c:48 +msgid "block special file" +msgstr "blok özel dosyası" + +# +#: lib/file-type.c:51 +msgid "character special file" +msgstr "karakter özel dosyası" + +# +#: lib/file-type.c:54 +msgid "fifo" +msgstr "fifo" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "sembolik baÄŸ" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "soket" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "ileti kuyruÄŸu" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "semafor" + +# +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "paylaşımlı bellek nesnesi" + +# +#: lib/file-type.c:71 +msgid "weird file" +msgstr "garip dosya" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: `%s' seçeneÄŸi belirsiz\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: `--%s' seçeneÄŸi argümansız kullanılır\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: seçenek `%c%s' argümansız kullanılır\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: `%s' seçeneÄŸi bir argümanla kullanılır\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: `--%s' seçeneÄŸi bilinmiyor\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: `%c%s' seçeneÄŸi bilinmiyor\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: kuraldışı seçenek -- %c\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: geçersiz seçenek -- %c\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: seçenek bir argümanla kullanılır -- %c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: `-W %s' seçeneÄŸi belirsiz\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: `-W %s' seçeneÄŸi argümansız kullanılır\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "blok uzunluÄŸu" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "%s dizini oluÅŸturulamıyor" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%s var ama bir dizin deÄŸil" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "%s'in sahibi ve/veya grubu deÄŸiÅŸtirilemiyor" + +#: lib/makepath.c:338 +#, c-format +msgid "cannot chdir to directory %s" +msgstr "%s dizinine geçilemedi" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "%s'in eriÅŸim izinleri deÄŸiÅŸtirilemiyor" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "bellek tükendi" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "`" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "'" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[eE]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[hH]" + +# +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "iconv iÅŸlevi kullanılabilir deÄŸil" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "iconv iÅŸlevi yok" + +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "karakter kapsamdışı" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "U+%04X yerel karakter kümesine dönüştürülemiyor" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "U+%04X yerel karakter kümesine dönüştürülemiyor: %s" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "kullanıcı geçersiz" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "grup geçersiz" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "bir sayısal kullanıcı-kimliÄŸin grubu alınamıyor" + +# +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "kullanıcı ve grubun her ikisi birden atlanamaz" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "%s tarafından yazıldı.\n" + +# +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +"Bu bir serbest yazılımdır; kopyalama koÅŸulları için kaynak koduna bakınız.\n" +"Hiçbir garantisi yoktur; hatta SATILABİLİRLİĞİ veya HERHANGİ BİR AMACA\n" +"UYGUNLUÄžU için bile garanti verilmez.\n" + +# +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "dizge karşılaÅŸtırması baÅŸarısız" + +# +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "Problemi devre dışı bırakmak için LC_ALL='C' tanımlayın." + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "KarşılaÅŸtırılan dizgeler %s ve %s idi." + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Daha fazla bilgi için `%s --help' yazın.\n" + +#: src/basename.c:54 +#, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"Kullanımı: %s İSİM [SONEK]\n" +" veya: %s SEÇENEK\n" + +#: src/basename.c:59 +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" +"Dizinlerle ilgili kısımlar kaldırılarak İSİM basılır.\n" +"BelirtilmiÅŸse, SONEK de kaldırılır.\n" +"\n" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"Yazılım hatalarını <%s> adresine,\n" +"çeviri hatalarını adresine bildirin.\n" + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "argüman sayısı yetersiz" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "çok fazla argüman" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "Torbjorn Granlund ve Richard M. Stallman" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "Kullanım: %s [SEÇENEK] [DOSYA]...\n" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" +"DOSYA(ları)yı (veya standart girdiyi) standart çıktıya yazar.\n" +"\n" +" -A, --show-all -vET ile aynı\n" +" -b, --number-nonblank boÅŸ olmayan çıktı satırlarını numaralandırır\n" +" -e -vE ile aynı\n" +" -E, --show-ends her satırın sonuna bir $ koyar\n" +" -n, --number tüm çıktı satırlarını numaralandırır\n" +" -s, --squeeze-blank arka arkaya gelen boÅŸ satırları bire indirger\n" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" +" -t -vT ile aynı\n" +" -T, --show-tabs TAB karakterlerini ^I olarak gösterir\n" +" -u (yoksayılır)\n" +" -v, --show-nonprinting LFD ve TAB hariç ^ ve M- nitelemesini kullanır\n" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"DOSYA verilmemiÅŸse veya DOSYA - ise, standart girdi okunur.\n" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" +"\n" +" -B, --binary konsol aygıtına yazarken ikilik yazma kullanır.\n" +"\n" + +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "`%s üzerinde ioctl baÅŸarısız" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "standart çıktı" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s: girdi dosyası çıktı dosyası ile aynı" + +# +#: src/cat.c:858 +msgid "closing standard input" +msgstr "standart girdi kapatılıyor" + +# +#: src/cat.c:861 +msgid "closing standard output" +msgstr "standart çıktı kapatılıyor" + +#: src/chgrp.c:93 +msgid "cannot change to null group" +msgstr "boÅŸ gruba deÄŸiÅŸilemez" + +#: src/chgrp.c:102 +#, c-format +msgid "invalid group name %s" +msgstr "geçersiz grup ismi %s" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "grup sayısı" + +#: src/chgrp.c:109 +#, c-format +msgid "invalid group number %s" +msgstr "geçersiz grup sayısı %s" + +#: src/chgrp.c:126 +#, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Kullanım: %s [SEÇENEK]... GRUP DOSYASI\n" +" veya: %s [SEÇENEK]... --reference=REFDOSYA DOSYA...\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Her DOSYA'nın grup üyeliÄŸini GRUP olarak deÄŸiÅŸtirir.\n" +"\n" +" -c, --changes verbose seçeneÄŸi gibi fakat yalnızca bir " +"deÄŸiÅŸiklik\n" +" olduÄŸu zaman bilgi verir.\n" +" --dereference her sembolik bağın imlediÄŸi dosyayı deÄŸiÅŸtirir,\n" +" sembolik bağı deÄŸil.\n" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" +" -h, --no-dereference her sembolik bağın kendisini etkiler, bağın " +"imlediÄŸi\n" +" dosyayı deÄŸil. (yalnızca sembolik baÄŸ sahibiyetini\n" +" deÄŸiÅŸtirebilen sistemlerde bulunur.\n" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet çoÄŸu hata iletisini bastırır.\n" +" --reference=RDOSYA RDOSYA'nın grup deÄŸerini kullanır, GRUP deÄŸerini\n" +" deÄŸil.\n" +" -R, --recursive dizin ve dosyalar üzerinde çevrimli iÅŸlem yapar.\n" +" -v, --verbose iÅŸlenen her dosya için bir durum iletisi gösterir.\n" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, c-format +msgid "failed to get attributes of %s" +msgstr "%s'nın öznitelikleri alınamadı" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "%s'nın yeni öznitelikleri alınıyor" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "%s'nin kipi %04lo (%s) olarak deÄŸiÅŸtirildi\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "%s'nın kipi %04lo (%s) olarak deÄŸiÅŸtirilemedi\n" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "%s'nin kipi %04lo (%s) olarak korundu\n" + +#: src/chmod.c:179 +#, c-format +msgid "changing permissions of %s" +msgstr "%s'nın eriÅŸim izinleri deÄŸiÅŸtiriliyor" + +#: src/chmod.c:242 +#, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Kullanım: %s [SEÇENEK]... KİP[,KİP]... DOSYA...\n" +" veya: %s [SEÇENEK]... SEKİZLİK-KİP DOSYA\n" +" veya: %s [SEÇENEK]... --reference=REFDOSYA DOSYA...\n" + +#: src/chmod.c:248 +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"Her DOSYA'nın kipini KİP olarak deÄŸiÅŸtir.\n" +"\n" +" -c, --changes --verbose gibi fakat yalnızca bir deÄŸiÅŸiklik " +"olduÄŸu\n" +" zaman haber verir\n" +" -f, --silent, --quiet çoÄŸu hata mesajını bastırır\n" +" -v, --verbose iÅŸlenen her dosya için bir durum belirtir\n" +" --reference=REFDOSYA belirtilen KİP deÄŸerini deÄŸil,\n" +" REFDOSYA'nın kipini kullanır\n" +" -R, --recursive Yinelemeli olarak dosya ve dizinleri iÅŸler\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" +"\n" +"Her KİP ugoa harflerinden biri veya bir kaçından, +-= sembollerinden " +"birinden\n" +"ve rwxXstugo harflerinden biri veya bir kaçından oluÅŸur.\n" + +#: src/chmod.c:320 +#, c-format +msgid "invalid character %s in mode string %s" +msgstr "geçersiz karakter %s kip dizgesi %s'de bulundu" + +#: src/chmod.c:361 +#, c-format +msgid "invalid mode string: %s" +msgstr "geçersiz kip dizgesi: %s" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "ne sembolik baÄŸ %s ne de imlediÄŸi dosya deÄŸiÅŸtirilmedi\n" + +#: src/chown-core.c:143 +#, c-format +msgid "changed ownership of %s to %s\n" +msgstr "%s'nin sahipliÄŸi %s'e deÄŸiÅŸtirildi\n" + +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "%s'nin grup üyeliÄŸi %s'e deÄŸiÅŸtirildi\n" + +#: src/chown-core.c:148 +#, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "%s'nın sahipliÄŸi %s olarak deÄŸiÅŸtirilemedi\n" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "%s'in grup üyeliÄŸi %s olarak deÄŸiÅŸtirilemedi\n" + +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "%s'nin sahipliÄŸi %s olarak korundu\n" + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "%s'in grubu %s olarak korundu\n" + +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "%s'in sahipliÄŸi deÄŸiÅŸtiriliyor" + +#: src/chown-core.c:327 +#, c-format +msgid "changing group of %s" +msgstr "%s'in grup üyeliÄŸi deÄŸiÅŸtiriliyor" + +#: src/chown-core.c:345 +#, c-format +msgid "unable to restore permissions of %s" +msgstr "%s'in izinleri eski haline getirilemedi" + +#: src/chown.c:99 +#, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"Kullanım: %s [SEÇENEK]... SAHİBİ[:[GRUP]] DOSYA...\n" +" veya: %s [SEÇENEK]... : GRUP DOSYA...\n" +" veya: %s [SEÇENEK]... --reference=REFDOSYA DOSYA...\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"Her DOSYA'nın sahibi ve/veya grubunu SAHİP ve/veya GRUP olarak deÄŸiÅŸtirir.\n" +"\n" +" -c, --changes verbose seçeneÄŸi gibi fakat yalnızca bir " +"deÄŸiÅŸiklik\n" +" olduÄŸu zaman bilgi verir.\n" +" --dereference her sembolik bağın imlediÄŸi dosyayı deÄŸiÅŸtirir,\n" +" sembolik bağı deÄŸil.\n" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" +" --from=ŞİMDİKİ_SAHİP:ŞİMDİKİ_GRUP\n" +" her dosyanın sahibini ve/veya grubunu eÄŸer ÅŸimdiki\n" +" sahip ve/veya grup burada verilen deÄŸerlere eÅŸ ise\n" +" deÄŸiÅŸtirir. Bu deÄŸerlerin biri verilmeyebilir, o \n" +" takdirde, verilmeyen deÄŸere eÅŸleme yapılmaz.\n" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet çoÄŸu hata iletisini bastırır.\n" +" --reference=RDOSYA RDOSYA'nın sahip ve grup deÄŸerini kullanır, " +"belirtilen\n" +" SAHİP:GRUP deÄŸerlerini deÄŸil\n" +" -R, --recursive dizin ve dosyalar üzerinde çevrimli iÅŸlem yapar.\n" +" -v, --verbose iÅŸlenen her dosya için bir durum iletisi gösterir.\n" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" +"\n" +"Sahip deÄŸeri yok ise sahip deÄŸiÅŸtirilmez. Grup deÄŸeri yok ise \n" +"deÄŸiÅŸtirilmez, fakat bir ':' ile iÅŸaret edilmiÅŸ ise\n" +"kullanıcının grubuna deÄŸiÅŸtirilir. SAHİP ve GRUP deÄŸerleri \n" +"sembolik olabileceÄŸi gibi sayısal deÄŸerler de olabilir.\n" + +#: src/chroot.c:45 +#, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"Kullanımı: %s [SEÇENEK] YENİKÖK [KOMUT...]\n" +" veya: %s SEÇENEK\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" +"KOMUT'u kök dizin YENİKÖK olarak çalıştırır.\n" +"\n" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" +"\n" +"EÄŸer komut verilmemiÅŸse, ``${SHELL} -i''yi çalıştırır (öntanımlı: /bin/sh).\n" + +#: src/chroot.c:84 +#, c-format +msgid "cannot change root directory to %s" +msgstr "kök dizini %s olarak deÄŸiÅŸtirilemedi" + +#: src/chroot.c:87 +msgid "cannot chdir to root directory" +msgstr "kök dizinine geçilemedi" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "%s: dosya fazla uzun" + +#: src/cksum.c:282 +#, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"Kullanım: %s [DOSYA]...\n" +" veya: %s [SEÇENEK]\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" +"Her DOSYA'nın CRC saÄŸlama toplamlarını ve bayt sayılarını yazdırır.\n" +"\n" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "Richard Stallman ve David MacKenzie" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "Kullanım: %s [SEÇENEK]...SOL-DOSYA SAÄž-DOSYA\n" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" +"Sıralanmış SOL-DOSYA ve SAÄž-DOSYA'yı okur ve üç kolondan oluÅŸan\n" +"bir çıktı oluÅŸturur. İlk kolon sadece SOL-DOSYA'da olan satırları,\n" +"ikinci kolon sadece SAÄž-DOSYA'da olan satırları ve üçüncü kolon da\n" +"her ikisinde olan satırları listeler\n" +"\n" +" -1 ilk kolonu yazmaz \n" +" -2 ikinci kolonu yazmaz \n" +" -3 üçüncü kolonu yazmaz \n" + +#: src/copy.c:162 src/du.c:332 +#, c-format +msgid "cannot access %s" +msgstr "%s'e eriÅŸilemedi" + +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "%s okumak için açılamadı" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, c-format +msgid "cannot fstat %s" +msgstr "%s'nin dosya durumu (fstat) alınamadı" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "kopyalandığı esnada deÄŸiÅŸtirildiÄŸi için %s dosyası atlandı" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, c-format +msgid "cannot remove %s" +msgstr "%s silinemedi" + +#: src/copy.c:277 +#, c-format +msgid "cannot create regular file %s" +msgstr "normal dosya %s oluÅŸturulamadı" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, c-format +msgid "reading %s" +msgstr "%s okunuyor" + +#: src/copy.c:362 +#, c-format +msgid "cannot lseek %s" +msgstr "%s'de lseek yapılamadı" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, c-format +msgid "writing %s" +msgstr "%s yazılıyor" + +#: src/copy.c:409 src/copy.c:415 +#, c-format +msgid "closing %s" +msgstr "%s kapatılıyor " + +#: src/copy.c:610 +#, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s: %s'ın, %04lo kipi gözardı edilerek, üzerine yazılsın mı?" + +#: src/copy.c:616 +#, c-format +msgid "%s: overwrite %s? " +msgstr "%s: %s'ın üzerine yazılsın mı?" + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, c-format +msgid "cannot stat %s" +msgstr "%s durumlanamadı" + +#: src/copy.c:820 +#, c-format +msgid "omitting directory %s" +msgstr "%s dizini atlanıyor" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "uyarı: %s kaynak dosyası bir defadan çok belirtilmiÅŸ" + +#: src/copy.c:866 src/ln.c:237 +#, c-format +msgid "%s and %s are the same file" +msgstr "%s ve %s aynı dosya" + +#: src/copy.c:876 +#, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "Dizin olmayan %s'un üzerine dizin %s yazılamaz" + +#: src/copy.c:893 +#, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "yeni oluÅŸturulmuÅŸ %s'un üzerine %s yazılamaz" + +#: src/copy.c:904 +#, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "Dizin %s'ın üzerine dizin olmayan bir dosya yazılamaz" + +#: src/copy.c:965 +#, c-format +msgid "cannot overwrite directory %s" +msgstr "%s dizininin üzerine yazılamaz" + +#: src/copy.c:974 +#, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "bir dizin, dizin olmayanın üzerine taşınamaz: %s -> %s" + +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "%s'ı yedeklemek kaynağı yok eder; %s taşınmadı" + +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "%s'ı yedeklemek kaynağı yok eder; %s kopyalanmadı" + +#: src/copy.c:1013 src/ln.c:273 +#, c-format +msgid "cannot backup %s" +msgstr "%s yedeklenemedi" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr " (yedek: %s)" + +#: src/copy.c:1099 +#, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "bir dizin, %s, kendi içine kopyalanamaz, %s" + +#: src/copy.c:1106 +#, c-format +msgid "will not create hard link %s to directory %s" +msgstr "Dizine sabit baÄŸ oluÅŸturulmayacak: sabit baÄŸ %s, dizin %s" + +#: src/copy.c:1132 +#, c-format +msgid "cannot create hard link %s to %s" +msgstr "%s sabit bağı %s'e baÄŸlanamadı" + +#: src/copy.c:1186 +#, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "%s kendi alt dizinine taşınamaz, %s" + +#: src/copy.c:1229 +#, c-format +msgid "cannot move %s to %s" +msgstr "%s %s'e taşınamadı" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "aygıt arası taşıma baÅŸarısız: %s'yı %s'a; hedef silinemedi" + +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "çevrimli sembolik baÄŸ %s kopyalanamaz" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "%s: göreceli sembolik baÄŸlar yalnızca mevcut dizinde oluÅŸturulabilir" + +#: src/copy.c:1353 +#, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "sembolik baÄŸ %s, %s'e baÄŸlanamadı" + +#: src/copy.c:1364 +#, c-format +msgid "cannot create link %s" +msgstr "%s bağı oluÅŸturulamadı" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, c-format +msgid "cannot create fifo %s" +msgstr "%s fifosu oluÅŸturulamadı" + +#: src/copy.c:1403 +#, c-format +msgid "cannot create special file %s" +msgstr "özel dosya %s oluÅŸturulamadı" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, c-format +msgid "cannot read symbolic link %s" +msgstr "%s sembolik bağı okunamadı" + +#: src/copy.c:1440 +#, c-format +msgid "cannot create symbolic link %s" +msgstr "%s sembolik bağı oluÅŸturulamadı" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, c-format +msgid "failed to preserve ownership for %s" +msgstr "%s'nin sahiplik bilgileri korunamadı" + +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "%s bilinmeyen dosya türüne sahip" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "%s'in zaman damgaları korundu" + +#: src/copy.c:1531 +#, c-format +msgid "failed to preserve authorship for %s" +msgstr "%s'nin yazar bilgileri korunamadı" + +#: src/copy.c:1549 +#, c-format +msgid "setting permissions for %s" +msgstr "%s'in izinleri ayarlanıyor" + +#: src/copy.c:1571 src/ln.c:326 +#, c-format +msgid "cannot un-backup %s" +msgstr "%s yedeklemesi geri alınamadı" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s -> %s (yedeklemeyi geri al)\n" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "Torbjorn Granlund, David MacKenzie ve Jim Meyering" + +#: src/cp.c:164 src/mv.c:311 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"Kullanım: %s [SEÇENEK]... KAYNAK HEDEF\n" +" veya: %s [SEÇENEK]... KAYNAK... DİZİN\n" +" veya: %s [SEÇENEK]... --target-directory=KAYNAK DİZİN...\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"KAYNAK'ı HEDEF'e kopyalar veya birden fazla KAYNAK'ı DİZİN'e kopyalar.\n" +"\n" + +# +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "" +"Uzun seçenekler için zorunlu olan argümanlar kısa seçenekler için de " +"zorunludur.\n" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" +" -a, --archive -dpR ile aynı\n" +" --backup[=KONTROL] mevcut olan her hedef dosyanın yedeÄŸini " +"alır.\n" +" -b --backup gibi, fakat argüman kabul etmez.\n" +" --copy-contents çevrimli olduÄŸu zaman özel dosyaların " +"içeriÄŸini kopyalar\n" +" -d --no-dereference --preserve=link ile aynı\n" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" +" --no-dereference sembolik baÄŸları izlemez\n" +" -f, --force eÄŸer mevcut bir hedef dosya açılamaz ise, " +"onu\n" +" siler ve tekrar dener\n" +" -i, --interactive üzerine yazmadan önce sorar\n" +" -H komut satırında sembolik baÄŸları izler\n" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" +" -l, --link dosyaları kopyalamak yerine sembolik baÄŸ\n" +" oluÅŸturur.\n" +" -L, --dereference sembolik baÄŸları hep izler\n" +" -p --preserve=mode,ownership,timestamps ile " +"aynı\n" +" --preserve[=ÖZNİT_LST] belirtilen öznitelikleri korur\n" +" öntanımlı öznitelikler:\n" +" mode,ownership,timestamps\n" +" (kip,sahibi,zaman damgaları)\n" +" diÄŸer öznitelikler:\n" +" links,all\n" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" +" --no-preserve=ÖZNT_LİST belirtilen öznitelikleri korumaz\n" +" --parents kaynak yolunu DİZİN'in sonuna ekler\n" +" -P --no-dereference ile aynı\n" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" +" -R, -r, --recursive yinelemeli kopyalar\n" +" --remove-destination bütün mevcut hedef dosyaları açmayı " +"denemeden\n" +" siler (--force ile karşılaÅŸtır)\n" + +#: src/cp.c:209 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +" --reply={yes,no,query} mevcut bir hedef dosya için sorgulamanın " +"nasıl\n" +" yapılacağını ayarlar: \n" +" yes=evet, no=hayır, query=sor\n" +" --sparse=ZAMAN seyrek dosyaların oluÅŸumunu kontrol eder\n" +" --strip-trailing-slashes bütün KAYNAK argümanlarının sonundan " +"kesmeleri\n" +" (/) kaldırır\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" +" -s, --symbolic-link kopyalama yerine sembolik baÄŸ oluÅŸturur\n" +" -S, --suffix=SONEK normal yedekleme soneki yerine SONEK'i " +"kullanır\n" +" --target-directory=DİZİN bütün KAYNAK argümanlarını DİZİN'e taşır\n" + +#: src/cp.c:221 +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +" -u, --update yalnızca KAYNAK dosya hedef dosyadan daha " +"yeni\n" +" olduÄŸu veya hedef dosya mevcut olmadığı " +"zaman\n" +" kopyalar\n" +" -v, --verbose ne yapıldığını anlatır\n" +" -x, --one-file-system bu dosya sisteminde kalır\n" + +#: src/cp.c:230 +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +"\n" +"Öntanımlı olarak seyrek KAYNAK dosyalar kaba bir yöntemle bulunur \n" +"ve ilgili HEDEF dosya da seyrek olarak oluÅŸturulur. \n" +"Bu davranış --sparse=auto seçeneÄŸi ile belirtilir. \n" +"EÄŸer --sparse=always seçilir ise KAYNAK dosya yeterli \n" +"uzunlukta sıfır bayt dizisi içerdiÄŸi zaman seyrek HEDEF dosya \n" +"oluÅŸturulur\n" +"Hiçbir zaman seyrek dosya oluÅŸturmamak için --sparse=never seçeneÄŸini \n" +"kullanın.\n" +"\n" + +#: src/cp.c:239 +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"Yedekleme soneki eÄŸer --suffix veya SIMPLE_BACKUP_SUFFIX ile belirtilmemiÅŸ " +"ise\n" +" '~'dir. Yedekleme kontrol metodu --backup seçeneÄŸi ile veya \n" +"VERSION_CONTROL çevre deÄŸiÅŸkeninden belirlenebilir. Geçerli deÄŸerler:\n" +"\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +" none, off hiç yedekleme yapma (--backup kullanılsa bile)\n" +" numbered, t numaralanmış yedekleme yap\n" +" existing, nil eÄŸer numaralanmış yedekler var ise numaralanmış, yoksa " +"basit\n" +" simple, never her zaman basit yedekleme yap\n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +"Özel bir durum olarak, cp force ve backup seçenekleri verilmiÅŸ ve \n" +"KAYNAK ve HEDEF deÄŸiÅŸkenleri birbirine eÅŸit olup\n" +"mevcut, normal bir dosyayı gösteriyorlarsa KAYNAK'ın bir yedeÄŸini alır.\n" + +#: src/cp.c:325 +#, c-format +msgid "failed to preserve times for %s" +msgstr "%s'in zaman damgaları korunamadı" + +#: src/cp.c:349 +#, c-format +msgid "failed to preserve permissions for %s" +msgstr "%s'in izinleri korunamadı" + +#: src/cp.c:434 +#, c-format +msgid "cannot make directory %s" +msgstr "dizin %s oluÅŸturulamadı" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +msgid "missing file argument" +msgstr "Dosya argümanı eksik" + +#: src/cp.c:498 +msgid "missing destination file" +msgstr "hedef dosya yok" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "%s'e eriÅŸiliyor" + +#: src/cp.c:546 +#, c-format +msgid "%s: specified target is not a directory" +msgstr "%s: belirtilen hedef bir dizin deÄŸil" + +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "birden çok dosya kopyalanıyor fakat son argüman %s bir dizin deÄŸil" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "dosya yolları korunurken hedef bir dizin olmalı" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"uyarı: --version-control (-V) artık kullanılmıyor; ileride \n" +"bunun desteÄŸi kaldırılacak. --backup=%s seçeneÄŸini kullanın" + +#: src/cp.c:972 src/ln.c:464 +msgid "symbolic links are not supported on this system" +msgstr "bu sistemde sembolik baÄŸlar desteklenmiyor" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "hem sabit hem sembolik baÄŸ oluÅŸturulamaz" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "yedekleme türü" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "Stuart Kemp ve David MacKenzie" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "okuma hatası" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "girdi yok oldu" + +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s: satır sayısı kapsam dışı" + +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s: `%s': satır sayısı kapsam dışı" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr " %d. tekrarda\n" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s: `%s': eÅŸleÅŸme bulunamadı" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "düzenli ifade (regular expression) aramasında hata oluÅŸtu" + +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "`%s' için yazım hatası" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "%s: ayraçtan sonra `+' veya `-' olmalı" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s: `%c' den sonra tamsayı olmalı" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "%s: tekrar sayımında `}' gerekli" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "%s}: `{' ve `}' arasına tamsayı yazılmalı" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s: kapatan ayraç `%c' eksik" + +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s: geçersiz düzenli ifade(regular expression): %s" + +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "%s: geçersiz kalıp" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s: satır sayısı 0'dan büyük olmalı" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "satır numarası `%s' bir önceki satır numarası %s den daha küçük" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "uyarı: satır numarası `%s' bir önceki satır numarası ile aynı" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "sonekte dönüşüm belirleyicisi eksik" + +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "sonekte geçersiz dönüşüm belirleyicisi: %c" + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "sonekte geçersiz dönüşüm belirleyicisi: \\%.3o" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "sonekte %% dönüşüm belirleyicisi eksik" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "sonekte gereÄŸinden fazla %% dönüşüm belirleyicisi var" + +#: src/csplit.c:1441 +#, c-format +msgid "%s: invalid number" +msgstr "%s: geçersiz sayı" + +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "Kullanım: %s [SEÇENEK]... DOSYA KALIP...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" +"KALIP(lar)la ayrılmış DOSYA parçalarını `xx01', `xx02', ... isimli " +"dosyalara,\n" +"her parçanın bayt sayısını standart çıktıya yazar.\n" +"\n" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" +" -b, --suffix-format=BİÇEM %d yerine sprintf BİÇEM'ini kullanır\n" +" -f, --prefix=ÖNEK `xx' yerine ÖNEKi kullanır\n" +" -k, --keep-files hata olduÄŸunda çıktı dosyalarını silmez\n" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" +" -n, --digits=BASAMAK BASAMAK sayısında basamak kullanır (-n \n" +" kullanılmadıkça 2 ) \n" +" -s, --quiet, --silent çıktı dosyalarının bayt büyüklüklerini vermez\n" +" -z, --elide-empty-files boÅŸ çıktı dosyalarını siler\n" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" +"\n" +"EÄŸer DOSYA - olarak verilmiÅŸse, standart girdiyi okur. Her KALIP, aÅŸağıdaki\n" +"seçeneklerden olabilir:\n" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" +"\n" +" SAYI verilen SAYI satırına kadar (SAYI satırı hariç) " +"kopyalar\n" +" /DÜZİF/[GÖRELİ] kalıba uyan satıra kadar (uyan satır hariç) kopyalar\n" +" (DÜZİF = düzenli ifade(regular expression)) \n" +" %DÜZİF%[GÖRELİ] uyan satıra kadar (uyan satır hariç) atlar\n" +" {SAYI} bir önceki kalıbı SAYI kere tekrar eder\n" +" {*} bir önceki kalıbı mümkün olduÄŸu kadar tekrar eder\n" +"\n" +"Bir satır GÖRELİ konumu, `+' veya `-' ve ardından bir pozitif sayıdan " +"oluÅŸur.\n" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "David Ihnat, David MacKenzie ve Jim Meyering" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "Kullanım: %s [SEÇENEK]... [DOSYA]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" +"Her DOSYA'daki satırların seçilen bölümlerini standart çıktıya yazdırır.\n" +"\n" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" +" -b, --bytes=LİSTE sadece bu baytları gösterir\n" +" -c, --characters=LİSTE sadece bu karakterleri gösterir\n" +" -d, --delimiter=AYRAÇ Alan ayracı olarak TAB yerine AYRAÇ'ı kullanır\n" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" +" -f, --fields=LİSTE sadece bu alanları gösterir; ayrıca, eÄŸer -s\n" +" seçeneÄŸi belirtilmemiÅŸse, içinde ayraç olmayan " +"tüm\n" +" satırları yazdırır.\n" +" -n (yoksayılır)\n" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" +" -s, --only-delimited içinde ayraç olmayan alanları yazdırmaz\n" +" --output-delimeter=DİZGE\n" +" çıktı ayracı olarak DİZGE'yi kullanır \n" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"-f -b ve -c den yalnız biri kullanılabilir. Her LİSTE bir aralık, veya \n" +"virgüllerle ayrılmış birden fazla aralıktan oluÅŸmalıdır. Her aralık\n" +"aÅŸağıdakilerden biri olmalıdır:\n" +"\n" +" N birden baÅŸlanarak sayıldığında N. bayt, karakter veya alan\n" +" N- N. bayt, karakter, veya alandan satırın sonuna kadar\n" +" N-M N ile M (dahil) arasında olan bayt, karakter veya alanlar\n" +" -M 1 ile M (dahil) arasında olan bayt, karakter veya alanlar\n" +"\n" +"DOSYA belirtilmediÄŸinde veya - olarak verildiÄŸinde standart girdiden okur.\n" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "geçersiz bayt veya alan listesi" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "sadece bir liste türü belirtilebilir" + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "konum listesi eksik" + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "alan listesi eksik" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "ayraç tek karakter olmalıdır" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "bayt, karakter ya da alan listesi belirtilmelidir" + +#: src/cut.c:720 +#, fuzzy +msgid "an input delimiter may be specified only when operating on fields" +msgstr "sadece alanlar üzerinde iÅŸlem yaparken bir ayraç belirtilebilir" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" +"ayrılmamış alanları atlamak sadece alanlar üzerinde iÅŸlem\n" +"\tyapılırken anlamlı" + +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" +"Kullanımı: %s [SEÇENEK]... [+BİÇEM]\n" +" veya: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" +"Verilen BİÇEMde zamanı gösterir, ya da sistem zamanını deÄŸiÅŸtirir.\n" +"\n" +" -d, --date=DİZGE DIZGE ile tanımlanan zamanı gösterir, ÅŸimdiki " +"zamanı deÄŸil\n" +" -f, --file=DOSYA DOSYAnın her satırı için --date uygulanır\n" +" -ITIMESPEC, --iso-8601[=BİRİM] ISO-8601 uyumlu tarih/zaman dizgesi " +"gösterir.\n" +" BİRİM=`date' (ya da verilmezse) sadece tarih,\n" +" `hours', `minutes' veya `seconds' ile tarih ve\n" +" zaman 'saat', 'dakika' veya 'saniye' hassasiyetle\n" +" gösterilir.\n" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" +" -r, --reference=DOSYA DOSYAnın son deÄŸiÅŸtirildiÄŸi zamanı gösterir\n" +" -R, --rfc-822 Yerele özgü tarih ve zaman gösterir\n" +" -s, --set=DİZGE sistem zamanını DİZGE ile belirtilen zamana " +"ayarlar\n" +" -u, --utc, --universal zamanı Greenwich saatiyle gösterir ya da " +"deÄŸiÅŸtirir\n" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" +"\n" +"BİÇEM çıktıyı kontrol eder. İkinci biçem için tek geçerli seçenek\n" +"Greenwich saatini belirtir. Bilinen biçemler:\n" +"\n" +" %% sabit %\n" +" %a yerelin kısaltılmış gün adı (Paz..Cmt)\n" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" +" %A yerelin uzun gün adı, deÄŸiÅŸken uzunluk (Pazar..Cumartesi)\n" +" %b yerelin kısaltılmış ay adı (Oca..Ara)\n" +" %B yerelin uzun ay adı, deÄŸiÅŸken uzunluk (Ocak..Aralık)\n" +" %c yerelin tarih ve zamanı (Cmt Kas 04 12:02:33 EEST 1989)\n" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" +" %C yüzyıl (yıl yüze bölünüp tamsayıya budanır) [00-99]\n" +" %d ayın günü (01..31)\n" +" %D tarih (aa/gg/yy)\n" +" %e boÅŸlukla yastıklanmış ayın günü ( 1..31)\n" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" +" %F %Y-%m-%d ile aynı\n" +" %g %V hafta sayısıyla eÅŸleÅŸen 2 basamaklı yıl\n" +" %G %V hafta sayısıyla eÅŸleÅŸen 4 basamaklı yıl\n" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" +" %h %b ile aynı\n" +" %H saat (00..23)\n" +" %I saat (01..12)\n" +" %j yılın günü (001..366)\n" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" +" %k saat ( 0..23)\n" +" %l saat ( 1..12)\n" +" %m ay (01..12)\n" +" %M dakika (00..59)\n" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" +" %n satırsonu karakteri\n" +" %N nanosaniye (000000000..999999999)\n" +" %p büyük harfli yerel ÖÖ/öS belirteci\n" +" %P küçük harfli yerel öö/ös belirteci\n" +" %r 12 saatlik zaman (ss:dd:SS [ÖÖ]S])\n" +" %R 24 saatlik zaman (ss:dd)\n" +" %s `00:00:00 1970-01-01 UTC' saatinden beri saniye sayısı (bir GNU " +"eklentisi)\n" + +# +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" +" %S saniye (00..60); 60, fazla bir saniyeyi belirtebilmek için " +"gereklidir\n" +" %t yatay sekme\n" +" %T 24 saatlik zaman (ss:dd:SS)\n" +" %u haftanın günü (1..7); 1, pazartesiye tekabül eder\n" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" +" %U yılın haftası, pazar günü haftanın ilk günü kabul edilir (00..53)\n" +" %V yılın haftası, pazartesi günü haftanın ilk günü kabul edilir " +"(01..53)\n" +" %w haftanın günü (0..6); 0, pazar gününe tekabül eder\n" +" %W yılın haftası, pazartesi günü haftanın ilk günü kabul edilir " +"(00..53)\n" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" +" %x yerelin tarih betimlemesi (gg/aa/yy)\n" +" %X yerelin zaman betimlemesi (%H:%M:%S)\n" +" %y yılın son iki basamağı (00..99)\n" +" %Y yıl (1970...)\n" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" +" %z RFC-822 tarzı nümerik zaman dilimi (-0500) (standart dışı eklenti)\n" +" %Z zaman dilimi (örn. EEST), veya eÄŸer zaman dilimi belirlenebiliyorsa, " +"hiç bir ÅŸey\n" +"\n" +"Öntanımlı olarak `date', nümerik alanları sıfırla yastıklar. GNU date `%' " +"ile nümerik\n" +"yönergeler arasında aÅŸağıdaki belirteçleri kabul eder.\n" +"\n" +" `-' (tire) alanı yastıklamaz\n" +" `_' (alt tire) alanı boÅŸlukla yastıklar\n" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "standart girdi" + +#: src/date.c:268 src/date.c:460 +#, c-format +msgid "invalid date `%s'" +msgstr "`%s' geçerli bir zaman dizgesi deÄŸil" + +#: src/date.c:364 +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "tarih belirten bu seçenekler birlikte kullanılamaz" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "zamanı ayarlamak ve göstermek için bu seçenekler birlikte kullanılamaz" + +#: src/date.c:377 +#, c-format +msgid "too many non-option arguments: %s%s" +msgstr "çok sayıda seçenek olmayan argüman var: %s%s" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" +"`%s' argümanı bir `+' ile baÅŸlamalı;\n" +"Zamanı belirtmek için bir seçenek kullanırken, seçenek olmayan\n" +"her argüman `+' ile baÅŸlayan bir biçem dizgesi olmalıdır." + +#: src/date.c:397 +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "--rfc-822 (-R) seçeneÄŸi ile birlikte bir biçem dizgisi belirtilemez" + +#: src/date.c:433 +msgid "undefined" +msgstr "atanmamış" + +#: src/date.c:435 +msgid "cannot get time of day" +msgstr "günün zamanı belirlenemedi" + +#: src/date.c:468 +msgid "cannot set date" +msgstr "tarih ayarlanamadı" + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "Paul Rubin, David MacKenzie ve Stuart Kemp" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "Kullanım: %s [SEÇENEK]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" +"Seçeneklere göre biçemleme ve dönüştürme yaparak bir dosya kopyalar.\n" +"\n" +" bs=BAYT ibs=BAYT ve obs=BAYT anlamına gelir \n" +" cbs=BYTES bir seferde BAYT dönüştürür\n" +" conv=ANAHTAR_KELİMELER dosyayı virgülle ayrılmış\n" +" anahtar kelime listesine uygun olarak dönüştürür\n" +" count=BLOK yalnızca BLOK sayıda girdi bloÄŸu kopyalar\n" +" ibs=BAYT bir seferde BAYT bayt okur\n" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" +" if=DOSYA standart girdi yerine DOSYA'dan okur\n" +" obs=BAYT bir seferde BAYT bayt yazdırır\n" +" of=DOSYA standart çıktı yerine DOSYA'ya yazdırır\n" +" seek=BLOK çıktının başında obs boyunda BLOK sayısında blok atlar\n" +" skip=BLOK girdinin başında ibs boyunda BLOK sayısında blok atlar\n" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" +"\n" +"BLOK ve BAYTlar aÅŸağıdaki çarpan sonekleri ile bitebilirler:\n" +"xM M, c 1, w 2, b 512, kD 1000, k 1024, MD 1,000,000, M 1,048,576,\n" +"GD 1,000,000,000, G 1,073,741,824, ve T, P, E, Z, Y. için diÄŸerleri\n" +"Her ANAHTAR_KELİME:\n" +"\n" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" +" ascii EBCDIC'den ASCII'ye\n" +" ebcdic ASCII'den EBCDIC'ye\n" +" ibm ASCII'den alternatifli EBCDIC'ye\n" +" block satırsonu karakteri ile biten kayıtları cbs boyutuna getirmek " +"için\n" +" boÅŸlukla doldurur\n" +" unblock cbs boyutundaki kayıtlarda sonda yer alan boÅŸlukları yenisatır \n" +" ile deÄŸiÅŸtirir\n" +" lcase büyük harfleri küçük harfe dönüştürür\n" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" +" notrunc çıktı dosyasını budamaz\n" +" ucase küçük harfleri büyük harfe dönüştürür\n" +" swab her girdi bayt çiftini takas eder\n" +" noerror okuma hatalarından sonra da devam eder\n" +" sync her girdi bloÄŸunu NUL karakterle doldurarak ibs boyutuna " +"getirir\n" +" block veya unblock seçenekleri ile kullanıldığı zaman NUL " +"yerine\n" +" boÅŸlukla doldurur\n" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "%s+%s kayıt girdi\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "%s+%s kayıt çıktı\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "budanmış kayıt" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "budanmış kayıtlar" + +#: src/dd.c:382 +#, c-format +msgid "closing input file %s" +msgstr "girdi dosyası %s kapatılıyor" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "çıktı dosyası %s kapatılıyor" + +#: src/dd.c:469 +#, c-format +msgid "writing to %s" +msgstr "%s'e yazılıyor" + +#: src/dd.c:501 +#, c-format +msgid "invalid conversion: %s" +msgstr "geçersiz dönüşüm: %s" + +#: src/dd.c:557 +#, c-format +msgid "unrecognized option %s" +msgstr "geçersiz seçenek %s" + +#: src/dd.c:610 +#, c-format +msgid "unrecognized option %s=%s" +msgstr "geçersiz seçenek %s=%s" + +#: src/dd.c:616 +#, c-format +msgid "invalid number %s" +msgstr "geçersiz sayı %s" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"{ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, {unblock,sync} \n" +"seçenek kümelerinden her birinden birer tane kullanılabilir" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" +"uyarı: mt_type=0x%2$0lx, %1$s dosyası için lseek çekirdek hatasına " +"alternatifler\n" +" kullanılıyor -- tür listesi için 'e bakın" + +#: src/dd.c:1170 src/dd.c:1188 +#, c-format +msgid "opening %s" +msgstr "%s açılıyor" + +#: src/dd.c:1196 +msgid "file offset out of range" +msgstr "dosya göreli konumu aralık dışı" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "çıktı dosyasında %s bayt ileriye gidildi %s" + +# +#: src/df.c:49 +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "Torbjorn Granlund, David MacKenzie, Larry McVoy ve Paul Eggert" + +#: src/df.c:153 +#, fuzzy +msgid "Filesystem Type" +msgstr "Dosya sistemi" + +#: src/df.c:155 +#, fuzzy +msgid "Filesystem " +msgstr "Dosya sistemi" + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr "Dosyaindeksi Dolu BoÅŸ Kull%%" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Boy Dolu BoÅŸ Kull%%" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " Boy Dolu BoÅŸ Kull%%" + +#: src/df.c:167 +#, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr " %4s-blok Dolu BoÅŸ Kapasite" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr " %4s-blok Dolu BoÅŸ Kull%%" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr "BaÄŸlanılan yer\n" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" +"Üzerinde DOSYA'ların bulunduÄŸu dosyasistemleri hakkında bilgi gösterir,\n" +"veya öntanımlı olarak bütün dosyasistemleri hakkında bilgi gösterir.\n" +"\n" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" +" -a, --all 0 bloÄŸa sahip dosyasistemlerini de dahil eder.\n" +" --block-size=BOY BOY baytlık bloklar kullanır\n" +" -h, --human-readable boyutları insan okuyabilir biçemde gösterir\n" +" (örn., 1K 234M 2G)\n" +" -H, --si yukarıdaki gibi fakat 1000'in katlarını kullanır,\n" +" 1024'ün deÄŸil.\n" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" +" -i, --inodes blok kullanımı yerine idüğüm bilgilerini gösterir\n" +" -k, --kilobytes --block-size=1024 gibi\n" +" -l, --local listelemeyi yerel dosyasistemleri ile sınırlar\n" +" -m, --megabytes --block-size=1048576 gibi\n" +" --no-sync (öntanımlı) kullanım bilgisini almadan önce sync " +"yapmaz\n" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" +" -P, --portability POSIX çıktı biçemini kullanır\n" +" --sync kullanım bilgisini almadan önce sync yapar\n" +" -t, --type=TÜR bilgi göstermeyi TÜR türünde dosyasistemleri ile\n" +" sınırlar\n" +" -T, --print-type dosyasistemi türünü gösterir\n" +" -x, --exclude-type=TÜR bilgi göstermeyi TÜR türünde olmayan\n" +" dosyasistemleri ile sınırlar\n" +" -v (yoksayılır)\n" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" +"\n" +"BOY aÅŸağıdakilerin biri (veya aÅŸağıdakilerin biri ile sonlanan bir tamsayı)\n" +"olabilir:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, ve G, T, P, E, Z, Y için " +"diÄŸerleri.\n" + +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "dosyasistem türü %s hem seçili hem dışarlanmış" + +#: src/df.c:903 +msgid "Warning: " +msgstr "Uyarı: " + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "%s baÄŸlanmış dosyasistemleri tablosu okunamadı" + +#: src/dircolors.c:103 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "Kullanım: %s [SEÇENEK]... [DOSYA]\n" + +#: src/dircolors.c:104 +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"LS_COLORS çevre deÄŸiÅŸkenini deÄŸiÅŸtirmek için çıktı komutları.\n" +"\n" +"Çıktı formatını belirler:\n" +" -b, --sh, --bourne-shell LS_COLORS'u belirlemek için Bourne kabuk " +"komutları\n" +" çıktılar\n" +" -c, --csh, --c-shell LS_COLORS'u belirlemek için C kabuk komutları\n" +" çıktılar\n" +" -p, --print-database öntanımlıları çıktılar\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" +"\n" +"EÄŸer DOSYA belirtilmiÅŸ ise, hangi dosya türü ve uzantılar için hangi " +"renklerin\n" +"kullanılacağı dosyadan okunur. EÄŸer DOSYA belirtilmemiÅŸ ise önceden " +"derlenmiÅŸ\n" +"bir veritabanı kullanılır. Bu dosyaların biçemi için, \n" +"'dircolors --print-database' komutunu çalıştırın.\n" + +#: src/dircolors.c:299 +#, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s: %lu geçersiz satır; ikinci dizgecik yok" + +#: src/dircolors.c:371 +#, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s: %lu: tanınmayan anahtar kelime %s" + +#: src/dircolors.c:372 +msgid "" +msgstr "" + +#: src/dircolors.c:467 +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" +"dircolors çıktısının hem içsel veritabanına, hem de bir kabuk sentaksına\n" +"göre olması çeliÅŸkili" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "" +"dircolors'un içsel veritabanını listelemek seçeneÄŸi ile \n" +"beraber DOSYA argümanı kullanılamaz" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "SHELL çevre deÄŸiÅŸkeni yok ve kabuk türü seçeneÄŸi verilmemiÅŸ" + +#: src/dirname.c:33 src/pathchk.c:59 +msgid "David MacKenzie and Jim Meyering" +msgstr "David MacKenzie ve Jim Meyering" + +#: src/dirname.c:46 +#, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"Kullanımı: %s İSİM\n" +" veya: %s SEÇENEK\n" + +#: src/dirname.c:51 +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" +"İSİM'min sonundaki / kaldırılarak yazdırılır; eÄŸer İSİM içinde herhangi\n" +"bir / içermiyorsa, `.' basılır (içinde bulunulan dizin anlamında).\n" +"\n" +" --help bu iletiyi gösterir ve çıkar\n" +" --version sürüm bilgilerini gösterir ve çıkar\n" + +# +#: src/du.c:49 +#, fuzzy +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "Torbjorn Granlund, David MacKenzie, Larry McVoy ve Paul Eggert" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" +"Her DOSYA'nın disk kullanımını özetler, dizinler için çevrimli çalışır.\n" +"\n" + +# +#: src/du.c:182 +#, fuzzy +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" +" -a, --all sayıları bütün dosyalar için yazar, yalnız dizinler\n" +" için deÄŸil\n" +" -B, --block-size=BOY BOY boyunda bloklar kullanır\n" +" -b, --bytes boyları bayt cinsinden yazar\n" +" -c, --total toplam hesaplar\n" +" -D, --dereference-args sembolik baÄŸ olduÄŸu zaman YOL'ları takip eder\n" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" +" -h, --human-readable boyutları insan okuyabilir biçemde gösterir\n" +" (örn., 1K 234M 2G)\n" +" -H, --si yukarıdaki gibi fakat 1000'in katlarını kullanır,\n" +" 1024'ün deÄŸil.\n" +" -k, --kilobytes --block-size=1024 gibi\n" +" -l, --count-links EÄŸer sabit baÄŸ var ise, boyları toplama tekrar alır\n" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" +" -L, --dereference bütün sembolik baÄŸları takip eder\n" +" -S, --separate-dirs altdizinlerin boyutunu dahil etmez\n" +" -s, --summarize her argüman için yalnızca toplamı gösterir\n" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" +" -x, --one-file-system baÅŸka dosyasistemlerinde olan dizinleri atlar\n" +" -X DOSYA, --exclude-from=DOSYA DOSYA'da bulunan kalıplara uyan dosyaları\n" +" iÅŸlemden hariç tutar.\n" +" --exclude=KAL KAL kalıbına uyan dosyaları iÅŸlemden hariç tutar.\n" +" --max-depth=N bir dizin için toplamı (veya dosya için, --all " +"ile),\n" +" yalnızca komut satırı argümanından N veya daha az\n" +" seviye aÅŸağıda ise gösterir. \n" +" --max-depth=0, --summarize ile aynıdır.\n" + +#: src/du.c:337 +#, fuzzy, c-format +msgid "cannot change to parent of directory %s" +msgstr "%s dizinine geçilemedi" + +#: src/du.c:345 +#, c-format +msgid "cannot change to directory %s" +msgstr "%s dizinine geçilemedi" + +#: src/du.c:352 +#, fuzzy, c-format +msgid "cannot read directory %s" +msgstr "%s dizini oluÅŸturulamıyor" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "toplam" + +#: src/du.c:641 +#, c-format +msgid "invalid maximum depth %s" +msgstr "geçersiz maksimum derinlik %s" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "hem özetleyip hem bütün girdiler gösterilemez" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "uyarı: özetlemek --max-depth=0 ile aynı" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "uyarı: özetlemek --max-depth=%d ile çakışıyor" + +#: src/echo.c:77 +#, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "Kullanımı: %s [SEÇENEK]... [DİZGE]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" +"DİZGE(ler)i standart çıktıya yansılar.\n" +"\n" +" -n sonuna yenisatır eklemez\n" +" -e aÅŸağıda belirtilen ters kesme kaçışlı karakterleri " +"yorumlar\n" +" -E DİZGE'lerde bu karakterlerin yorumlamasını durdurur\n" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" +"\n" +"-E kullanılmadığı zaman, aÅŸağıdaki kaçışlar tanınır ve kullanılır:\n" +"\n" +" \\NNN ASCII kodu NNN (8lik) olan karakter\n" +" \\\\ ters kesme\n" +" \\a zil (BEL)\n" +" \\b geri silme\n" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\c sonlayan yenisatırı bastırır\n" +" \\f sayfa sonuna kadar imleci ilerletir\n" +" \\n alt satıra geçer\n" +" \\r imleci satır başına taşır\n" +" \\t imleci yatay sekme kadar ilerletir\n" +" \\v imleci düşey sekme kadar ilerletir\n" + +#: src/env.c:93 +msgid "Richard Mlynarik and David MacKenzie" +msgstr "Richard Mlynarik ve David MacKenzie" + +#: src/env.c:119 +#, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "Kullanımı: %s [SEÇENEK]... [-] [İSİM=DEÄžER]... [KOMUT [ARG]...]\n" + +#: src/env.c:122 +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" +"Her çevre deÄŸiÅŸkeni İSİM için bir DEÄžER atar ve KOMUTu çalıştırır.\n" +"\n" +" -i, --ignore-environment bir boÅŸ çevre ile baÅŸlatır\n" +" -u, --unset=İSİM İSİM ile belirtilen çevre deÄŸiÅŸkenini kaldırır\n" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" +"\n" +"Sadece -, -i uygular. KOMUT verilmezse mevcut çevre deÄŸiÅŸkenlerini " +"listeler.\n" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Her DOSYA'daki tabları boÅŸluÄŸa çevirerek standart çıktıya yazar.\n" +"DOSYA belirtilmediÄŸinde, veya - olduÄŸunda, standart girdiden okur.\n" +"\n" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" +" -i, --initial BoÅŸluktan sonra gelmeyen tabları deÄŸiÅŸtırmez\n" +" -t, --tabs=N tabların yerine 8 deÄŸil N boÅŸluk koyar\n" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" +" -t, --tabs=LİSTE LİSTE virgülle ayrılmış sayılardır. Listedeki \n" +" sayılar tabların satırdaki yerlerine karşılık gelir.\n" +" Satırda listenin uzunluÄŸundan fazla tab varsa, fazla\n" +" olan tablar yerine bir boÅŸluk koyar\n" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "tab boyunda geçersiz karakter" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "tab boyu 0 olamaz" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "tab boyları küçükten büyüğe sıralı olmalı" + +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "`-LİSTE' seçeneÄŸi eski; yerine `-t LİSTE' kullanın" + +#: src/expr.c:90 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"Kullanımı: %s İFADE\n" +" veya: %s SEÇENEK\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" +"\n" +"İFADE'nin deÄŸerini standart çıktıya yazdırır. AÅŸağıda boÅŸ satır\n" +"artan öncelik gruplarını ayırır. İFADE:|n\n" +" ARG1 | ARG2 eÄŸer ARG1 boÅŸ veya 0 ise ARG2, deÄŸil ise ARG1\n" +" ARG1 & ARG2 eÄŸer iki argüman da 0 veya boÅŸ ise ARG2, deÄŸil ise ARG1\n" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" +"\n" +" ARG1 < ARG2 ARG1 küçüktür ARG2\n" +" ARG1 <= ARG2 ARG1 küçük ya da eÅŸittir ARG2\n" +" ARG1 = ARG2 ARG1 eÅŸittir ARG2\n" +" ARG1 != ARG2 ARG1 farklıdır ARG2\n" +" ARG1 >= ARG2 ARG1 büyük ya da eÅŸittir ARG2\n" +" ARG1 > ARG2 ARG1 büyüktür ARG2\n" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" +"\n" +" ARG1 + ARG2 aritmetik toplama iÅŸlemi\n" +" ARG1 - ARG2 aritmetik çıkarma iÅŸlemi\n" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" +"\n" +" ARG1 * ARG2 aritmetik çarpma iÅŸlemi\n" +" ARG1 / ARG2 aritmetik bölme iÅŸleminde bölümü verir\n" +" ARG1 % ARG2 aritmetik bölme iÅŸleminde kalanı verir\n" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" +"\n" +" DİZGE : DÜZİFD ilk karakterinden itibaren DİZGE içindeki\n" +" DÜZenliİFaDe ile eÅŸleÅŸen kısım\n" +"\n" +" match DİZGE DÜZİFD DİZGE : DÜZİFD ile aynı\n" +" substr DİZGE KONUM UZNLK DİZGEnin KONUMdan baÅŸlayan UZuNLuKtaki alt " +"dizgesi\n" +" index DİZGE KARKTR DİZGE içinde KARaKTeRlerin ilk rastlandığı " +"konum\n" +" length DİZGE DİZGEnin karakter sayısı\n" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" +" + ANDAÇ ANDAÇ `match' gibi bir anahtar sözcük ya da " +"`/'\n" +" gibi bir iÅŸlemimi bile olsa bir dizge olarak\n" +" yorumlar.\n" +"\n" +" ( İFADE ) İFADEnin deÄŸeri\n" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" +"\n" +"Kabukta yorumlanması için öncelenmesi ya da yorumlanmaması için tırnak " +"içine\n" +"alınması gereken iÅŸlemimlerinden sakının. KarşılaÅŸtırmalar her ikisi de " +"sayısal\n" +"ise sayısal, deÄŸilse sözlük sırasına göredir. Örgüsel eÅŸleÅŸmeler \\(ve \\)\n" +"arasındaki eÅŸleÅŸen dizge ile ya da null ile sonuçlanır; eÄŸer \\(ve \\)\n" +"kullanılmamışsa eÅŸleÅŸen karakter sayısıyla ya da 0 ile sonuçlanır.\n" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +msgid "syntax error" +msgstr "sözdizimi hatası" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" +"uyarı: taşınamaz düzgün ifade: `%s':`^' ile baÅŸlayan temel düzenli\n" +"ifadeler taşınamadığından`^' yoksayılıyor." + +#: src/expr.c:586 src/expr.c:625 +msgid "non-numeric argument" +msgstr "nümerik olmayan argüman" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "sıfırla bölüm" + +#: src/factor.c:74 +#, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"Kullanımı: %s [SAYI]...\n" +" veya: %s SEÇENEK\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" +"Her SAYInın asal çarpanlarını gösterir\n" +"\n" + +#: src/factor.c:85 +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" +"\n" +" Belirtilen tamsayıların asal çarpanlarını gösterir. Argüman belirtilmezse\n" +" doÄŸrudan standart çıktıyı okuyarak sonucu verir.\n" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "`%s' bir pozitif tamsayı deÄŸil." + +#: src/false.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Kullanımı: %s [yoksayılan komut satırı argümanları]\n" +" veya: %s SEÇENEK\n" +"Saptanan bozukluk ile ilgili durum kodunu göstererek çıkar.\n" +"\n" +"Bu seçenek isimleri kısaltılmış olarak kullanılamaz.\n" +"\n" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "Kullanım: %s [-BASAMAKLAR] [SEÇENEK]... [DOSYA]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" +"DOSYA(lar)daki tüm paragrafları yeniden biçemlendirir ve standart çıktıya\n" +"yazar. EÄŸer DOSYA adı yoksa veya `-' ise, standart girdiden okur.\n" +"\n" + +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" +" -c, --crown-margin paragrafın ilk iki satırı deÄŸiÅŸtirmez, ikinci\n" +" satırdan sonraki satırları ikinci satırla " +"hizalar\n" +" -p, --prefix=DİZGE sadece DİZGE ile baÅŸlayan satırları birleÅŸtirir\n" +" -s, --split-only uzun satırları böler fakat kısaları " +"birleÅŸtirmez\n" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" +" -t, --tagged-paragraph -c ile aynı, ancak paragrafın ilk iki satırı " +"aynı\n" +" hizadaysa ilk satırı tek satırlık paragraf " +"olarak \n" +" kabul eder.\n" +" -u, --uniform-spacing sözcük arası bir, noktadan sonra iki boÅŸluk " +"koyar.\n" +" -w, --width=N maksimum satır geniÅŸliÄŸi (bu seçenek " +"kullanılmadığında\n" +" satır geniÅŸliÄŸi 72 dir) \n" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" +"\n" +"-wSAYI seçeneÄŸinde, `w' harfi yazılmayabilir.\n" + +#: src/fmt.c:345 +#, c-format +msgid "invalid width option: `%s'" +msgstr "geçersiz geniÅŸlik seçeneÄŸi: `%s'" + +#: src/fmt.c:385 +#, c-format +msgid "invalid width: `%s'" +msgstr "geçersiz geniÅŸlik: `%s'" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" +"DOSYA'daki (DOSYA belirtilmediÄŸinde standart girdi'deki) satırları \n" +"katlar ve standart çıktıya yazar\n" +"\n" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" +" -b, --bytes sütunlar yerine baytları sayar\n" +" -s, --spaces satırı boÅŸluklarda böler\n" +" -w, --width=N 80 yerine N sütun kullanır\n" + +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "`%s' seçeneÄŸi eski: yerine `%s' kullanın" + +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "geçersiz sütun sayısı: `%s'" + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Her DOSYA'nın ilk on satırını standart çıktıya yazar.\n" +"Birden fazla DOSYA verildiÄŸinde, her dosyadan önce dosya adını yazar.\n" +"DOSYA adı verilmediÄŸinde, veya - olduÄŸunda standart girdiden okur.\n" +"\n" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" +" -c, --bytes=SAYI ilk SAYI baytı gösterir\n" +" -n, --lines=N ilk 10 yerine ilk N satırı gösterir\n" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" +" -q, --quiet, --silent dosya isimlerini göstermez\n" +" -v, --verbose dosya isimlerini gösterir\n" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" +"\n" +"SAYI, bir katsayı soneki içerebilir: 512 için b, 1K için k, 1 Meg için m.\n" + +#: src/head.c:190 +#, c-format +msgid "cannot reposition file pointer for %s" +msgstr "%s üzerinde lseek baÅŸarısız" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "%s: %s bu bilgisayarda kullanılamayacak kadar büyük bir sayı" + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "satır sayısı" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "bayt sayısı" + +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "geçersiz satır sayısı" + +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "geçersiz bayt sayısı" + +#: src/head.c:341 +#, c-format +msgid "unrecognized option `-%c'" +msgstr "bilinmeyen seçenek `-%c'" + +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "`-%s' seçeneÄŸi eski; yerine `-%c %.*s%.*s%s' kullanın" + +#: src/hostid.c:48 +#, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" +"Kullanımı: %s\n" +" veya: %s SEÇENEK\n" +"Çalıştırıldığı makinanın kimliÄŸini onaltılık tabanda gösterir.\n" +"\n" + +#: src/hostname.c:67 +#, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" +"Kullanımı: %s [İSİM]\n" +" veya: %s SEÇENEK\n" +"Çalıştırıldığı sistemin makina ismini deÄŸiÅŸtirir ya da gösterir.\n" +"\n" + +#: src/hostname.c:104 +#, c-format +msgid "cannot set hostname to `%s'" +msgstr "makina ismi `%s' yapılamadı" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "makina ismi deÄŸiÅŸtirilemedi; bu sistemde bu yetenek yok" + +#: src/hostname.c:117 +msgid "cannot determine hostname" +msgstr "makina ismi saptanamadı" + +#: src/id.c:36 +msgid "Arnold Robbins and David MacKenzie" +msgstr "Arnold Robbins ve David MacKenzie" + +#: src/id.c:87 +#, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "Kullanımı: %s [SEÇENEK]... [KULLANICI-İSMİ]\n" + +#: src/id.c:88 +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" +"KULLANICI-İSMİ ya da çalıştıran kullanıcı hakkındaki bilgileri gösterir.\n" +"\n" +" -a eski sürümlere uyumluluk için var. Yoksayılır.\n" +" -g, --group sadece grup kimliÄŸini gösterir\n" +" -G, --groups sadece ek grupları gösterir\n" +" -n, --name -ugG için bir sayı yerine bir isim gösterir\n" +" -r, --real -ugG için etkin kimlik yerine gerçek kimliÄŸi gösterir\n" +" -u, --user sadece kullanıcı kimliÄŸini gösterir\n" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" +"\n" +"SEÇENEK belirtilmeksizin bazı yararlı kullanıcı bilgileri gösterir.\n" + +#: src/id.c:162 +msgid "cannot print only user and only group" +msgstr "sadece kullanıcı ya da sadece grup gösterilemez" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "öntanımlı biçemde gerçek kimlikler veya gerçek isimler gösterilemez" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "%s: Böyle bir kullanıcı yok" + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "%u kullanıcı kimliÄŸinin ismi bulunamıyor" + +#: src/id.c:235 +#, c-format +msgid "cannot find name for group ID %u" +msgstr "%u grup kimliÄŸinin ismi bulunamıyor" + +#: src/id.c:273 +msgid "cannot get supplemental group list" +msgstr "ek grup listesi alınamadı" + +#: src/id.c:385 +msgid " groups=" +msgstr " gruplar=" + +#: src/install.c:269 +msgid "the strip option may not be used when installing a directory" +msgstr "bir dizin kurulurken strip seçeneÄŸi kullanılamaz" + +#: src/install.c:292 src/mkdir.c:140 +#, c-format +msgid "invalid mode %s" +msgstr "geçersiz kip %s" + +#: src/install.c:307 src/install.c:371 +#, c-format +msgid "creating directory %s" +msgstr "dizin %s oluÅŸturuluyor" + +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "birden çok dosya kuruluyor fakat son argüman %s bir dizin deÄŸil" + +#: src/install.c:435 +#, c-format +msgid "%s is a directory" +msgstr "%s bir dizin" + +#: src/install.c:495 +#, c-format +msgid "cannot obtain time stamps for %s" +msgstr "%s için zaman damgaları alınamadı" + +#: src/install.c:507 +#, c-format +msgid "cannot set time stamps for %s" +msgstr "%s için zaman damgalama yapılamadı" + +#: src/install.c:528 +msgid "fork system call failed" +msgstr "fork sistem çaÄŸrısı baÅŸarısız" + +#: src/install.c:532 +msgid "cannot run strip" +msgstr "strip çalıştırılamadı" + +#: src/install.c:539 +msgid "strip failed" +msgstr "strip baÅŸarısız" + +#: src/install.c:560 +#, c-format +msgid "invalid user %s" +msgstr "geçersiz kullanıcı %s" + +#: src/install.c:578 +#, c-format +msgid "invalid group %s" +msgstr "geçersiz grup %s" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"Kullanım: %s [SEÇENEK]... KAYNAK HEDEF (1. biçem).\n" +" veya: %s [SEÇENEK]... KAYNAK... DİZİN (2. biçem)\n" +" veya: %s -d [SEÇENEK]... DİZİN... (3. biçem).\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" +"İlk iki biçemde KAYNAK'ı HEDEF'e veya birden fazla KAYNAK'ı mevcut DİZİN'e\n" +"kopyalar, aynı zamanda izin kiplerini ve sahip/grup bilgilerini atar.\n" +"Üçüncü biçemde, ilgili DİZİN(ler)in bütün öğelerini oluÅŸturur.\n" +"\n" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" +" --backup[=KONTROL] her mevcut hedef dosyasının bir yedeÄŸini alır\n" +" -b --backup gibi ama argüman kabul etmez\n" +" -c (yoksayılır)\n" +" -d, --directory bütün argümanları dizin adı olarak alır; belirtilen\n" +" dizinlerin tüm öğelerini oluÅŸturur\n" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" +" -D HEDEF'in en sondaki hariç tüm öğelerini oluÅŸturur, " +"sonra\n" +" KAYNAK'ı HEDEF'e kopyalar; 1. biçemde faydalıdır\n" +" -g, --group=GRUP İşlemin ÅŸimdiki grubu yerine grup üyeliÄŸini GRUP'a " +"atar\n" +" -m, --mode=KİP izin kipini rwxr-xr-x yerine KİP olarak atar (chmod " +"gibi)\n" +" -o, --owner=SAHİP sahibi atar (yalnızca süper-kullanıcı)\n" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" +" -p, --preserve-timestamps KAYNAK dosyalarının eriÅŸim/deÄŸiÅŸim zaman\n" +" damgalarını ilgili hedef dosyalarına uygular\n" +" -s, --strip 1. ve 2. biçemde sembol tablolarını soyar\n" +" -S, --suffix=SONEK öntanımlı yedek soneki yerine SONEK'i kullanır\n" +" -v, --verbose oluÅŸturuldukça her dizinin adını gösterir\n" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"\n" +"Yedekleme soneki eÄŸer --suffix veya SIMPLE_BACKUP_SUFFIX ile belirtilmemiÅŸ " +"ise\n" +"'~'dir. Yedekleme kontrol metodu --backup seçeneÄŸi ile veya \n" +"VERSION_CONTROL çevre deÄŸiÅŸkeninden belirlenebilir. Geçerli deÄŸerler:\n" +"\n" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "Kullanım: %s [SEÇENEK]... DOSYA1 DOSYA2\n" + +#: src/join.c:148 +#, fuzzy +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" +"Her birleÅŸtırme (join) alanı aynı olan girdi satırı çifti için standart\n" +"çıktıya bir satır yazar. Öntanımlı birleÅŸtırme alanı, boÅŸlukla ayrılmış ilk\n" +"alandır. DOSYA1 veya DOSYA2 - olduÄŸunda (ikisi birden - olamaz), standart \n" +"girdiden okur.\n" +"\n" +" -a YAN YAN dosyasından gelen eÅŸleÅŸtirilememiÅŸ satırları " +"yazdırır\n" +" -e YAZI eksik girdi alanlarını YAZI ile deÄŸiÅŸtirir\n" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" +" -i, --ignore-case karşılaÅŸtırma yaparken küçük/büyük harf ayrımı yapmaz\n" +" -j ALAN (eski kullanım)`-1 ALAN -2 ALAN' ile aynı\n" +" -j1 ALAN (eski kullanım)`-1 ALAN' ile aynı\n" +" -j2 ALAN (eski kullanım)`-2 ALAN' ile aynı\n" +" -o BİÇEM çıktı satırını oluÅŸtururken BİÇEM'i kullanır\n" +" -t HARF HARFi girdi ve çıktı alanlarını ayırmakta kullanır\n" + +#: src/join.c:165 +#, fuzzy +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" +" -v YAN -a YAN gibi, fakat birleÅŸtirilmiÅŸ satırları göstermez\n" +" -1 ALAN DOSYA1'in bu ALAN'ını kullanarak birleÅŸtirir\n" +" -2 ALAN DOSYA2'nin bu ALAN'ını kullanarak birleÅŸtirir \n" + +#: src/join.c:172 +#, fuzzy +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" +"\n" +"EÄŸer -t HARF verilmemiÅŸ ise, baÅŸlangıçtaki boÅŸluklar alan ayracıdır ve\n" +"yoksayılırlar. EÄŸer -t HARF verilmiÅŸ ise, ayraç olarak HARF kullanılır.\n" +"ALAN, 1'den baÅŸlayarak sayılan alan numarasıdır. BİÇEM, bir veya daha " +"fazla,\n" +"virgül veya boÅŸlukla ayrılmış biçemdir. Biçem, `YAN.ALAN' veya `0' olarak\n" +"verilir. Öntanımlı BİÇEM, HARF ile ayrılmış olarak, birleÅŸtırme alanını,\n" +"DOSYA1'de kalan alanları ve DOSYA2'de kalan alanları gösterir.\n" + +#: src/join.c:645 +#, c-format +msgid "invalid field specifier: `%s'" +msgstr "geçersiz alan belirleyicisi: `%s'" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, c-format +msgid "invalid field number: `%s'" +msgstr "geçersiz alan numarası: `%s'" + +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "alan tanımlamasında geçersiz dosya numarası: `%s'" + +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "dosya 1 icin geçersiz alan numarası : `%s'" + +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "dosya 2 için geçersiz alan numarası: `%s'" + +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "çok sayıda `seçenek olmayan' argüman var" + +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "çok az `seçenek olmayan' argüman var" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "her iki dosya da standart girdi olamaz" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" +"Kullanımı: %s [-s SİNYAL] | -SİNYAL] PID...\n" +" ya da: %s -l [SİNYAL]...\n" +" ya da: %s -t [SİNYAL]...\n" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" +"İşlemlere sinyal yollar veya sinyalleri listeler.\n" +"\n" + +#: src/kill.c:106 +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" +" -s, --signal=SİNYAL, -SİNYAL\n" +" Gönderilecek sinyalin adı veya numarası.\n" +" -l, --list Sinyal adlarını listeler ya da sinyal isimleri ile " +"sinyal\n" +" numaraları arasında dönüşüm yapar.\n" +" -t, --table Sinyal bilgileri tablosu gösterir.\n" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" +"\n" +"SİNYAL, `HUP' gibi bir sinyal adı veya `1' gibi bir sinyal numarası, \n" +"veya bir sinyalle sonlanmış iÅŸlemin çıkış durumu olabilir.\n" +"PID bir tamsayıdır; eÄŸer negatif ise bir iÅŸlem grubunu tanımlar.\n" + +#: src/kill.c:163 +#, c-format +msgid "%s: invalid signal" +msgstr "%s: geçersiz sinyal" + +#: src/kill.c:262 +#, c-format +msgid "missing operand after `%s'" +msgstr "`%s'den sonra eksik iÅŸlenen" + +#: src/kill.c:274 +#, c-format +msgid "%s: invalid process id" +msgstr "%s: geçersiz iÅŸlem kimlik no" + +#: src/kill.c:327 +#, c-format +msgid "invalid option -- %c" +msgstr "geçersiz seçenek -- %c" + +#: src/kill.c:336 +#, c-format +msgid "%s: multiple signals specified" +msgstr "%s: birden fazla sinyal belirtilmiÅŸ" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "birden fazla -l veya -t seçeneÄŸi belirtilmiÅŸ" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "sinyal, -l veya -t ile birleÅŸtirilemez" + +#: src/link.c:51 +#, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"Kullanım: %s DOSYA1 DOSYA2\n" +" veya: %s SEÇENEK\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" +"Mevcut olan DOSYA1'e DOSYA2 adında bir baÄŸ oluÅŸturmak için 'link' (baÄŸ)\n" +"iÅŸlevini çağırın.\n" +"\n" + +#: src/link.c:98 +#, c-format +msgid "cannot create link %s to %s" +msgstr "%s sabit bağı %s'e baÄŸlanamadı" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "Mike Parker ve David MacKenzie" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "%s: uyarı: sembolik baÄŸa sabit baÄŸ oluÅŸturmak taşınabilirliÄŸi bozar" + +#: src/ln.c:174 +#, c-format +msgid "%s: hard link not allowed for directory" +msgstr "%s: dizinde sabit baÄŸa izin verilmiyor" + +#: src/ln.c:246 +#, c-format +msgid "%s: cannot overwrite directory" +msgstr "%s: dizinin üzerine yazılamaz" + +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "%s: %s'un üzerine yazılsın mı?" + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s: Dosya mevcut" + +#: src/ln.c:304 +#, c-format +msgid "create symbolic link %s to %s" +msgstr "%s -> %s sembolik bağı oluÅŸtur" + +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "%s -> %s sabit bağı oluÅŸtur" + +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "Sembolik baÄŸ %s %s'e baÄŸlanıyor" + +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "Sabit baÄŸ %s %s'e baÄŸlanıyor" + +#: src/ln.c:339 +#, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"Kullanım: %s [SEÇENEK]... HEDEF [BAÄž_ADI]\n" +" veya: %s [SEÇENEK]... HEDEF... DİZİN\n" +" veya: %s [SEÇENEK]... --target-directory=HEDEF DİZİN...\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" +"Belirlenen HEDEF'e, opsiyonel BAÄž_ADI ile bir baÄŸ oluÅŸturur.\n" +"EÄŸer BAÄž_ADI verilmemiÅŸ ise, HEDEF ile aynı adda bir baÄŸ, mevcut dizinde\n" +"oluÅŸturulur. İkinci biçem birden fazla HEDEF ile kullanıldığı zaman son " +"argüman\n" +"dizin olmak zorundadır ve DİZİN'de her HEDEF için bir baÄŸ oluÅŸturulur.\n" +"Öntanımlı olarak sabit baÄŸ oluÅŸturulur, --symbolic seçeneÄŸi kullanıldığı " +"zaman\n" +"sembolik baÄŸ oluÅŸturulur. Sabit baÄŸ oluÅŸturulduÄŸu zaman, her HEDEF mevcut\n" +"olmak zorundadır.\n" +"\n" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" +" --backup[=KONTROL] her mevcut hedef dosyanın bir yedeÄŸini alır\n" +" -b --backup gibi fakat argüman almaz\n" +" -d, -F, --directory dizinleri sabit baÄŸlar (yalnız süper " +"kullanıcı)\n" +" -f, --force önceden var olan hedef dosyaları siler\n" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" +" -n, --no-dereference bir dizine sembolik baÄŸ olan hedefi sanki " +"normal\n" +" bir dosyaymış gibi iÅŸler\n" +" -i, --interactive hedefleri silmeden önce sorar\n" +" -s, --symbolic sabit baÄŸ yerine sembolik baÄŸ oluÅŸturur\n" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" +" -S, --suffix=SONEK yedekleme soneki yerine SONEK'i kullanır\n" +" --target-directory=DİZİN baÄŸların oluÅŸturulacağı DİZİN'i belirtir\n" +" -v, --verbose baÄŸlamadan önce her dosyanın adını gösterir\n" + +#: src/ln.c:521 +#, c-format +msgid "%s: specified target directory is not a directory" +msgstr "%s: belirtilen hedef dizin, bir dizin deÄŸil" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "birden fazla baÄŸ yaratırken son argüman bir dizin olmalı" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "Kullanım: %s [SEÇENEK]\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" +"Çalıştıran kullanıcının ismini gösterir.\n" +"\n" + +#: src/logname.c:99 +#, c-format +msgid "%s: no login name\n" +msgstr "%s: kullanıcı ismi yok\n" + +#: src/ls.c:673 +msgid "%b %e %Y" +msgstr "%b %e %Y" + +#: src/ls.c:681 +msgid "%b %e %H:%M" +msgstr "%b %e %H:%M" + +#: src/ls.c:1307 +#, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "çevre deÄŸiÅŸkeni QUOTING_STYLE'da bulunan geçersiz deÄŸer yoksayıldı: %s" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "" +"çevre deÄŸiÅŸkeni COLUMNS'da belirtilen geçersiz geniÅŸlik deÄŸeri yoksayıldı: %s" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "" +"çevre deÄŸiÅŸkeni TABSIZE'da bulunan geçersiz sekme boyutu yoksayıldı: %s" + +#: src/ls.c:1482 +#, c-format +msgid "invalid line width: %s" +msgstr "geçersiz satır geniÅŸliÄŸi: %s" + +#: src/ls.c:1556 +#, c-format +msgid "invalid tab size: %s" +msgstr "geçersiz sekme boyutu: %s" + +#: src/ls.c:1722 +#, c-format +msgid "invalid time style format %s" +msgstr "geçersiz tarih biçemi %s" + +#: src/ls.c:2054 +#, c-format +msgid "unrecognized prefix: %s" +msgstr "tanımlanmamış önek: %s" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "çevre deÄŸiÅŸkeni LS_COLORS'da taranamaz deÄŸer" + +#: src/ls.c:2145 +#, c-format +msgid "cannot determine device and inode of %s" +msgstr "%s'nın aygıtı ve i-düğümü belirlenemedi" + +#: src/ls.c:2155 +#, c-format +msgid "not listing already-listed directory: %s" +msgstr "önceden listelenmiÅŸ %s dizini tekrar listelenmedi" + +#: src/ls.c:2208 src/remove.c:929 +#, c-format +msgid "reading directory %s" +msgstr "dizin %s okunuyor" + +#: src/ls.c:2603 +#, c-format +msgid "cannot compare file names %s and %s" +msgstr "%s ve %s dosya adları karşılaÅŸtırılamaz" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" +"DOSYA(lar) hakkında bilgileri listeler (öntanımlı olarak ÅŸimdiki dizinde).\n" +"EÄŸer -cftuSUX veya --sort seçenekleri verilmemiÅŸ ise girdileri alfabetik\n" +"sıralar.\n" +"\n" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" +" -a, --all . ile baÅŸlayan girdileri saklamaz\n" +" -A, --almost-all örtük . ve .. deÄŸerlerini göstermez\n" +" --author her dosyanın yazarını gösterir\n" +" -b, --escape grafik olmayan karakterleri sekizlik\n" +" deÄŸerlerle gösterir\n" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" +" --block-size=BOY BOY baytta bloklar kullanır\n" +" -B, --ignore-backups sonu ~ ile biten örtük yedekleri göstermez\n" +" -c -lt ile: ctime'a (son dosya durum bilgisi\n" +" deÄŸiÅŸikliÄŸi zamanı) göre sıralar ve ctime'ı\n" +" gösterir\n" +" -l ile: ctime'ı göster ve isme göre sıralar\n" +" tek başına: ctime'a göre sıralar\n" + +#: src/ls.c:3784 +#, fuzzy +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" +" -C Çıktıyı sütunlar halinde gösterir\n" +" --color[=NEZAMAN] Dosya tiplerini belirtmek için deÄŸiÅŸik renkler\n" +" kullanılıp kullanılmamasını belirler. " +"NEZAMAN\n" +" deÄŸerleri never (asla), always (her zaman) " +"veya\n" +" auto (otomatik) olabilir.\n" +" -d, --directory içindekiler yerine dizin bilgilerini gösterir\n" +" -D, --dired Emacs dired kipine uygun çıktı verir\n" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" +" -f sıralama yapmaz, -aU seçeneÄŸini etkinleÅŸtirir,\n" +" -lst seçeneÄŸini etkinsizleÅŸtir\n" +" -F, --classify çıktı bilgilerine belirteç ( */=@| " +"seçeneklerinden\n" +" birini) ekler\n" +" --format=SÖZCÜK -x yatay, -m virgüllü, -l uzun,\n" +" -1 tek sütun, -l uzun, -C dikey\n" +" --full-time -l --time-style=full-iso gibi\n" + +#: src/ls.c:3799 +#, fuzzy +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" +" -g -l gibi fakat sahibi listelemez\n" +" -G, --no-group grup bilgisini göstermez\n" +" -h, --human-readable boyutları insan okuyabilir biçemde gösterir\n" +" (örn., 1K 234M 2G)\n" +" --si benzer ama 1000'in katlarını kullanır,\n" +" 1024'ün deÄŸil\n" +" -H, --dereference-command-line komut satırındaki sembolik baÄŸları izler\n" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" +" --indicator-style=SÖZCÜK girdi isimlerine SÖZCÜK tarzında belirteç\n" +" ekler: none (boÅŸ -- öntanımlı),\n" +" classify (-F kipi gibi),\n" +" file-type (-p kipi gibi)\n" +" -i, --inode her dosyanın indeks numarasını gösterir\n" +" -I, --ignore=KALIP kabuk KALIP'ıyla eÅŸleÅŸen girdileri göstermez\n" +" -k, --kilobytes --block-size=1024 gibi\n" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" +" -l uzun listeleme biçemi kullanır\n" +" -L, --dereference bir sembolik baÄŸ için dosya bilgilerini\n" +" gösterirken, sembolik bağın imlediÄŸi " +"dosyanın\n" +" bilgilerini gösterir, sembolik bağın kendi\n" +" bilgilerini deÄŸil\n" +" -m satırı virgül ayraçlı girdilerle doldurur\n" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" +" -n, --numeric-uid-gid İsim yerine sayısal grup ve kullanıcı " +"kimliklerini\n" +" (UID ve GID) gösterir\n" +" -N, --literal ham isimleri gösterir (kontrol karakterlerini\n" +" ayrıca iÅŸlemez)\n" +" -o grup bilgisi olmaksızın uzun listeleme biçemi\n" +" kullanır\n" +" -p, --file-type bilgilere belirteç ekler ( /=@| dan biri) \n" + +#: src/ls.c:3831 +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -q, --hide-control-chars grafik olmayan karakterler yerine ? çıktılar\n" +" --show-control-chars grafik olmayan karakterleri olduÄŸu gibi " +"gösterir\n" +" (program 'ls' ve çıktı bir terminal deÄŸil ise\n" +" öntanımlı seçenek)\n" +" -Q, --quote-name çıktı adlarını çift tırnak içinde gösterir\n" +" --quoting-style=SÖZCÜK tırnaklama biçemi için SÖZCÜK'te belirtilen \n" +" deÄŸeri kullanır:\n" +" literal (olduÄŸu gibi), locale (yerel),\n" +" shell (kabuk), \n" +" shell-always (her zaman kabuk), c (C dili), \n" +" escape (kaçış karakterli)\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" +" -r, --reverse ters sıralar\n" +" -R, --recursive alt dizinleri çevrimli listeler\n" +" -s, --size her dosyanın boyutunu blok olarak gösterir\n" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" +" -S dosya büyüklüğüne göre sıralar\n" +" --sort=SÖZCÜK sözcükte belirtilen deÄŸere göre sıralar: \n" +" extension (uzantı)-X, none (boÅŸ)-U, \n" +" size (büyüklük)-S, time (zaman) -t,\n" +" version (sürüm) -v, status (durum) -c\n" +" time (deÄŸiÅŸim zamanı) -t,\n" +" atime (eriÅŸim zaman damgası) -u,\n" +" access (eriÅŸim zaman damgası) -u, \n" +" use (eriÅŸim zaman damgası)-u\n" +" --time=SÖZCÜK deÄŸiÅŸim zamanı yerine belirtilen deÄŸeri gösterir:\n" +" atime (eriÅŸim zaman damgası), \n" +" access (eriÅŸim), use (kullanım zamanı), \n" +" ctime (dosya durum bilgisi deÄŸiÅŸim zamanı) veya\n" +" status (durum); eÄŸer --sort=time belirtilmiÅŸse\n" +" seçilen zaman deÄŸerine göre sıralar.\n" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" +" --time-style=BİÇEM zamanı BİÇEM biçeminde gösterir:\n" +" full-iso, iso, locale, posix-iso, +BİÇEM\n" +" BİÇEM `date' gibi tanınır; eÄŸer BİÇEM,\n" +" BİÇEM1BİÇEM2 ÅŸeklinde ise, BİÇEM1\n" +" eski dosyalara, BİÇEM2, yeni dosyalara " +"uygulanır\n" +" eÄŸer BİÇEM'in başında posix- var ise, BİÇEM\n" +" yalnızca POSIX yerelinin haricinde geçerli " +"olur.\n" +" -t deÄŸiÅŸim zamanına göre sıralar\n" +" -T, --tabsize=SÜT öntanımlı 8 deÄŸeri yerine her SÜT deÄŸerinde " +"sekme\n" +" olduÄŸunu varsayar.\n" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" +" -u -lt ile: eriÅŸim zamanını gösterir ve buna göre\n" +" sıralar\n" +" -l ile: eriÅŸim zamanını gösterir ve isme göre\n" +" sıralar\n" +" tekbaşına: eriÅŸim zamanına göre sıralar\n" +" -U sıralamaz, girdileri dizin sırasına göre " +"gösterir\n" +" -v sürüme göre sıralar\n" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" +" -w, --width=SÜTUN ekran geniÅŸliÄŸini SÜTUNa ayarlar\n" +" -x girdileri satır olarak çıktılar, sütun deÄŸil\n" +" -X girdi sonekine göre alfabetik sıralar\n" +" -1 her satıra bir dosya olarak listeler\n" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" +"\n" +"Öntanımlı olarak dosya tipleri renkle ayırdedilmezler. Bu, --color=none \n" +"seçeneÄŸine eÅŸittir. --color seçeneÄŸini NEZAMAN seçeneÄŸini belirtmeden " +"kullanmak\n" +"her zaman kullanılacağı manasına --color=always deÄŸerine eÅŸittir. --" +"color=auto\n" +"seçeneÄŸi ile eÄŸer standart çıktı bir terminale (tty) baÄŸlı ise renk " +"ayırdetmesi\n" +"kullanılır.\n" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "Ulrich Drepper ve Scott Miller" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"Kullanım: %s [SECENEK] [DOSYA]...\n" +" veya: %s [SECENEK] --check [DOSYA]\n" +"%s (%d-bit) saÄŸlama toplamlarını kontrol eder veya yazar.\n" +"DOSYA adı verilmediÄŸinde veya - olduÄŸunda standart girdiden okur.\n" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" +"\n" +" -b, --binary dosyaları binary (ikilik) olarak okur(DOS/Windows " +"üzerinde\n" +" md5sum otomatik olarak bu seçeneÄŸi çalıştırır)\n" +" -c, --check %s toplamlarını verilen liste ile karşılaÅŸtırır\n" +" -t, --text dosyaları metin (text) olarak okur (md5sum -b\n" +" belirtilmedikçe otomatik olarak bu seçeneÄŸi\n" +" çalıştırır)\n" +"\n" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" +"AÅŸağıdaki iki seçenek sadece saÄŸlama toplamlarını kontrol ederken iÅŸe " +"yarar:\n" +" --status çıktı vermez, durum kodu, baÅŸarı bilgisini verir\n" +" -w, --warn yanlış formatlı çemlenmiÅŸ saÄŸlama toplam satırları " +"hakkında\n" +" uyarı verir\n" +"\n" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" +"\n" +"Toplamlar %s'de belirtildiÄŸi gibi hesaplanır. Toplamlar kontrol edilirken,\n" +"girdi, bu yazılımdan önceden elde edilmiÅŸ bir çıktı olmalıdır. Öntanımlı\n" +"olarak, her satırı bir saÄŸlama toplamı ile yazdırır, tür belirtir (ikilik\n" +"için `*' , metin için ` ') ve DOSYA'nın ismini yazar.\n" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "%s: %lu: %s saÄŸlama toplam satırı yanlış biçemlenmiÅŸ" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "%s:açma veya okuma BAÅžARISIZ\n" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "BAÅžARISIZ" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "Tamam" + +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%s: okuma hatası" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "%s: doÄŸru biçemlenmiÅŸ %s saÄŸlama toplam satırı bulunamadı" + +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "UYARI: ListelenmiÅŸ %2$d adet %3$s içinden %1$d'si okunamadı" + +#: src/md5sum.c:473 +msgid "file" +msgstr "dosya" + +#: src/md5sum.c:473 +msgid "files" +msgstr "dosyalar" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "UYARI: Hesaplanmış %2$d adet %3$s içinden %1$d'si eÅŸleÅŸmedi" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "saÄŸlama toplamı" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "saÄŸlama toplamları" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" +" --binary ve --text seçenekleri saÄŸlama toplamlarını kontrol ederken geçersiz" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "--string ve --check seçenekleri aynı anda kullanılamaz" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "--status seçeneÄŸi yalnızca saÄŸlama toplam kontrolü sırasında anlamlı" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "--warn seçeneÄŸi yalnızca saÄŸlama toplam kontrolü sırasında anlamlı" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "--string seçeneÄŸi kullanılırken dosya adı belirtilemez" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "--check seçeneÄŸi kullanılırken sadece bir dosya adı verilebilir" + +#: src/mkdir.c:61 +#, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "Kullanım: %s [SEÇENEK] DİZİN...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" +"EÄŸer yoksa, ilgili DİZİN(ler)i oluÅŸturur.\n" +"\n" + +#: src/mkdir.c:69 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +" -m, --mode=KİP izin kipini belirtir (chmod gibi), \n" +" rwxrwxrwx öntanımlı deÄŸer\n" +" -p, --parents eÄŸer üst dizinler var ise hata vermeden \n" +" gerektiÄŸi ÅŸekilde üst dizinleri oluÅŸturur\n" +" -v, --verbose oluÅŸturulan her dizin için bir ileti çıktılar\n" + +#: src/mkdir.c:113 +#, c-format +msgid "created directory %s" +msgstr "dizin %s oluÅŸturuldu" + +#: src/mkdir.c:190 +#, c-format +msgid "cannot set permissions of directory %s" +msgstr "%s dizininin izinleri deÄŸiÅŸtirilemedi" + +#: src/mkfifo.c:55 +#, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "Kullanım: %s [SEÇENEK] İSİM...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" +"İsimli veri yollarını (FIFO) belirtilen İSİM'lerle oluÅŸturur.\n" +"\n" + +#: src/mkfifo.c:63 src/mknod.c:64 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr "" +" -m, --mode=KİP izin kipini belirtilen deÄŸere deÄŸiÅŸtirir\n" +" (chmod gibi) varsayılan deÄŸer: rw\n" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "fifo dosyaları desteklenmiyor" + +#: src/mkfifo.c:123 src/mknod.c:127 +msgid "invalid mode" +msgstr "geçersiz kip" + +#: src/mkfifo.c:142 +#, c-format +msgid "cannot set permissions of fifo %s" +msgstr "'%s' fifosunun izinleri deÄŸiÅŸtirilemedi" + +#: src/mknod.c:55 +#, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "Kullanım: %s [SEÇENEK]...İSİM TİP [MAJÖR MİNÖR]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" +"Belirtilen TÜR'de belirtilen İSİM'de özel dosya oluÅŸturur.\n" +"\n" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" + +#: src/mknod.c:76 +#, fuzzy +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"\n" +"MAJÖR MİNÖR p TÜR'ünde yasak, diÄŸer TÜR'lerde zorunludur. \n" +"TÜR aÅŸağıdaki deÄŸerlerden biri olabilir: \n" +"\n" +" b özel blok (önbellekli) dosyası oluÅŸturur\n" +" c, u özel karakter (önbellekli) dosyası oluÅŸturur\n" +" p FIFO oluÅŸturur\n" + +#: src/mknod.c:141 +msgid "wrong number of arguments" +msgstr "argüman sayısı hatalı" + +#: src/mknod.c:153 +msgid "block special files not supported" +msgstr "özel blok dosyalar desteklenmiyor" + +#: src/mknod.c:162 +msgid "character special files not supported" +msgstr "özel karakter dosyaları desteklenmiyor" + +#: src/mknod.c:171 +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "" +"özel blok dosyalar oluÅŸturulurken majör \n" +"ve minör aygıt numaraları belirtilmelidir" + +#: src/mknod.c:186 +#, c-format +msgid "invalid major device number %s" +msgstr "geçersiz majör aygıt numarası %s" + +#: src/mknod.c:191 +#, c-format +msgid "invalid minor device number %s" +msgstr "geçersiz minör aygıt numarası %s" + +#: src/mknod.c:196 +#, c-format +msgid "invalid device %s %s" +msgstr "geçersiz aygıt %s %s" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "fifo dosyaları için majör ve minör aygıt numaraları belirtilemez" + +#: src/mknod.c:231 +#, c-format +msgid "cannot set permissions of %s" +msgstr "'%s'nın izinleri belirtilemedi" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "Mike Parker, David MacKenzie ve Jim Meyering" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"KAYNAK'ı HEDEF olarak yeniden adlandırır veya KAYNAK'ları DİZİN'e taşır.\n" +"\n" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" +" --backup[=KONTROL] mevcut her hedef dosyanın bir yedeÄŸini alır.\n" +" -b --backup gibi ama argüman almaz.\n" +" -f, --force üzerine yazmadan önce sormaz\n" +" --reply=yes ile aynı\n" +" -i, --interactive üzerine yazmadan önce sorar\n" +" --reply=query ile aynı\n" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" +" --reply={yes,no,query} mevcut bir hedef dosya için sorgulamanın " +"nasıl\n" +" yapılacağını ayarlar: \n" +" yes=evet, no=hayır, query=sor\n" +" --strip-trailing-slashes bütün KAYNAK argümanlarının sonundan " +"kesmeleri\n" +" (/) kaldırır\n" +" -S, --suffix=SONEK öntanımlı sonek yerine SONEK deÄŸerini " +"kullanır.\n" + +#: src/mv.c:339 +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +" --target-directory=DİZİN bütün KAYNAK argümanlarını DİZİN'e taşır\n" +" -u, --update taşıma iÅŸlemini yalnızca KAYNAK dosyası\n" +" hedeften daha yeni ise, veya hedef dosya " +"yok\n" +" ise yapar\n" +" -v, --verbose ne yapıldığını anlatır\n" + +#: src/mv.c:467 +#, c-format +msgid "specified target, %s is not a directory" +msgstr "belirtilen hedef %s bir dizin deÄŸil" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "birden fazla dosya taşınırken son argüman dizin olmalıdır" + +#: src/nice.c:67 +#, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "Kullanımı: %s [SEÇENEK] [KOMUT [ARG]...]\n" + +#: src/nice.c:68 +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" +"KOMUTu ayarlanan iÅŸlem önceliÄŸinde çalıştırır.\n" +"KOMUT verilmezse, mevcut iÅŸlem önceliÄŸini gösterir. AYAR öntanımlı\n" +"olarak 10 dur. Öncelik sıralaması -20..19 arasında ve en yüksekten en düşük\n" +"önceliÄŸe doÄŸrudur.\n" +"\n" +" -n, --adjustment=AYAR -AYAR ile aynı\n" + +#: src/nice.c:109 src/nice.c:122 +#, c-format +msgid "invalid option `%s'" +msgstr "`%s' seçeneÄŸi geçersiz" + +#: src/nice.c:147 +#, c-format +msgid "invalid priority `%s'" +msgstr "öncelik olarak `%s' geçersiz" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "komut ayarlama ile birlikte verilmeli" + +#: src/nice.c:178 src/nice.c:187 +msgid "cannot get priority" +msgstr "öncelik alınamadı" + +#: src/nice.c:192 +msgid "cannot set priority" +msgstr "öncelik ayarlanamadı" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "Scott Bartram ve David MacKenzie" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Satır baÅŸlarına satır numarası koyarak her DOSYA'yı standart çıktıya " +"yazdırır.\n" +"DOSYA adı verilmemiÅŸse, veya - olarak verilmiÅŸse, standart girdiden okur.\n" +"\n" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" +" -b, --body-numbering=TARZ satırları TARZ tarzında numaralandırır.\n" +" -d, --section-delimiter=KK mantıksal sayfaları ayırırken KK'yi " +"kullanır\n" +" -f, --footer-numbering=TARZ altyazıları TARZ tarzında numaralandırır\n" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" +" -h, --header-numbering=TARZ üstyazıları TARZ tarzında numaralandırır\n" +" -i, --page-increment=SAYI satır numarası artış miktarı\n" +" -l, --join-blank-lines=SAYI SAYI kadar boÅŸ satır grubunu bir satır " +"olarak\n" +" okur\n" +" -n, --number-format=FORMAT satır numaralarını FORMAT ÅŸeklinde yazar\n" +" -p, --no-renumber yeni mantıksal sayfaya baÅŸladığında satır\n" +" numaralarını baÅŸtan baÅŸlatmaz\n" +" -s, --number-separator=DİZGE satır numarasından sonra DİZGE yazdırır\n" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" +" -v, --first-page=SAYI her mantıksal sayfanın ilk satır numarası\n" +" -w, --number-width=SAYI satır numarası geniÅŸliÄŸini SAYI yapar\n" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" +"\n" +"aksi belirtilmedikçe otomatik olarak kullanılan seçenekler: \n" +"-v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn\n" +"KK, mantıksal sayfaları ayırmak için kullanılan iki ayraç karakteridir. " +"İkinci\n" +"karakter verilmemiÅŸse :. kabul edilir. \\. elde etmek için \\\\ yazılır. \n" +"TARZ, aÅŸağıdaki deÄŸerlerden biri olarak belirtilmelidir: \n" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" +"\n" +" a bütün satırları numaralandırır\n" +" t sadece boÅŸ olmayan satırları numaralandırır\n" +" n hiç bir satırı numaralandırmaz\n" +" pDÜZİF sadece DÜZİF düzenli ifadesi ile eÅŸleÅŸen satırları " +"numaralandırır\n" +" (DÜZİF: düzenli ifade = regular expression) \n" +"\n" +"FORMAT aÅŸağıdakilerden biri olabilir:\n" +"\n" +" ln sola dayalı yazdırır, numaraların baÅŸlarına sıfır koymaz\n" +" rn saÄŸa dayalı yazdırır, numaraların baÅŸlarına sıfır koymaz\n" +" rz saÄŸa dayalı yazdırır, numaraların baÅŸlarına sıfır koyar\n" +"\n" + +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "geçersiz baÅŸlangıç satır numarası: `%s'" + +#: src/nl.c:514 +#, c-format +msgid "invalid line number increment: `%s'" +msgstr "geçersiz satır numarası artışı: `%s'" + +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "geçersiz boÅŸ satır sayısı: `%s'" + +#: src/nl.c:541 +#, c-format +msgid "invalid line number field width: `%s'" +msgstr "geçersiz satır numarası alan geniÅŸliÄŸi: `%s'" + +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"Kullanım: %s [SEÇENEK]... [DOSYA]...\n" +" veya: %s --traditional [DOSYA] [[+]GÖRELİ [[+]ETİKET]]\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"\n" +"DOSYA'yı, (hiçbir seçenek belirtilmediÄŸinde sekizlik sayı sisteminde), \n" +"standart çıktıya yazar. DOSYA adı verilmemiÅŸse veya - olarak verilmiÅŸse, \n" +"standart girdiden okur.\n" +"\n" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "" +"Uzun seçenekler için zorunlu argümanlar kısa seçenekler için de zorunludur.\n" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" +" -A, --address-radix=RADIX adresleri RADIX sayı sisteminde yazar\n" +" -j, --skip-bytes=BAYT her dosyanın ilk BAYT baytını atlar\n" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" +" -N, --read-bytes=BAYT çıktıyı dosya başına BAYT baytla sınırlar\n" +" -s, --strings[=SAYI] en az SAYI grafik karakter içeren dizgeler\n" +" yazdırır.\n" +" -t, --format=FORMAT çıktı formatını FORMAT olarak belirler\n" +" -v, --output-duplicates birbirinin aynı art arda gelen satırları * \n" +" kullanmadan yazar\n" +" -w, --width[=BAYT] her satıra BAYT bayt yazar\n" +" --traditional POSIX-öncesi tarzında argüman kabul eder\n" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" +"\n" +"POSIX-öncesi formatlar karışık kullanılabilir:\n" +" -a veya -t a , isimli karakterleri seçer (isimli karakterlerin [named\n" +" characters] ne olduÄŸunu öğrenmek için : man od)\n" +" -b veya -t oC, sekizlik baytlar seçer\n" +" -c veya -t c, ASCII karakterleri ve terskesmeyle belirtilmiÅŸ kaçış\n" +" karakterlerini seçer\n" +" -d veya -t u2, iÅŸsaretsiz (unsigned) ondalık kısa sayıları seçer\n" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" +" -f veya -t fF, gerçel sayıları seçer\n" +" -h veya -t x2, 16lik kısa sayıları seçer\n" +" -i veya -t d2, 10luk kısa sayıları seçer\n" +" -l veya -t d4, 10luk uzun sayıları seçer\n" +" -o veya -t o2, 8lik kısa sayıları seçer\n" +" -x veya -t x2, 16lik kısa sayıları seçer\n" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" +"\n" +"Eski kullanım ÅŸeklinde, GORELI -j GORELI anlamına gelir. od herzaman " +"yazdığı\n" +"her satırın başına bir de adres yazar. GORELI belirtildiÄŸinde ilk\n" +"satır için GORELI adresini kullanır ve geri kalan satırları da buna\n" +"göre numaralandırır. EÄŸer ilk satır sayısını GORELI'den deÄŸil baÅŸka\n" +"bir sayıdan baÅŸlatmak istiyorsanız bunu +ETIKET olarak belirtin.\n" +"Örnek: od --tradition +10 +5 , ilk on baytı atlar,\n" +"ve ilk satırı 5 diye adresler.\n" +"GORELI veya ETIKET'in baÅŸlarına 0x veya 0X koyarak bu sayıların\n" +"16lik sistemde olduÄŸunu belirtebilirsiniz. Sonlarına . koyarsanız\n" +"sekizlik sistemde olduklarını, b koyarsanız 512 ile carpılmalarını\n" +"istediÄŸinizi belirtmiÅŸ olursunuz.\n" +"\n" +"FORMAT aÅŸağıdaki kısaltmalar kullanılarak oluÅŸturulur:\n" +"\n" +" a karakter isimlerini yazar\n" +" (Örnek:'od -t a' tab karakteri gördüğünde 'ht' yazar)\n" +" c alfabe elemanlarını olduÄŸu gibi kontrol karakterlerini\n" +" terskesikle gösteririldikleri gibi yazar\n" +" (Örnek: 'od -t c' tab karakteri gördüğünde '\t' yazar)\n" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" +" d[SAYI] iÅŸaretli (signed) ondalık sayı olarak yazar, her sayı \n" +" için SAYI bayt kullanır\n" +" f[SAYI] gerçel sayı olarak yazar, her sayı için SAYI bayt kullanır\n" +" o[SAYI] sekizlik sayı olarak yazar, her sayı için SAYI bayt kullanır\n" +" u[SAYI] iÅŸaretsiz (unsigned) ondalık sayı olarak yazar, her sayı\n" +" için SAYI bayt kullanır\n" +" x[SAYI] 16lik sayı olarak yazar, her sayı için SAYI bayt kullanır\n" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" +"\n" +"SAYI yerine genelde bir sayı yazılır ( örnek : od -t d1 ), ancak \n" +"FORMAT d,o,u,x den biri olduÄŸunda SAYI yerine sizeof(char) anlamına gelen\n" +"C, sizeof(short) anlamına gelen S veya sizeof(long) anlamana gelen L de\n" +"gelebilir. EÄŸer FORMAT f ise, SAYI yerine sizeof(float) anlamına gelen\n" +"F, sizeof(double) anlamına gelen D veya sizeof(long double) anlamına\n" +"gelen L de gelebilir.\n" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" +"\n" +"RADIX yerine sayı sistemini belirtmek için bir harf yazılır:\n" +"onluk sistem için d, sekizlik sistem için o, 16lik sistem için x ve hiçbiri\n" +"için n. BAYT'ın başına 0x veya 0X koyarak bu sayının 16lik sistemde \n" +"olduÄŸunu belirtebilirsiniz. Sonuna b koyarsanız 512 ile, k koyarsanız\n" +"1024 ile, m koyarsanız 1048576 ile çarpılmasını istediÄŸinizi belirtmis\n" +"olursunuz. Herhangi bir ÅŸekilin sonuna ( ÅŸekiller: a,c,d,f,o,u,x) z\n" +"eklerseniz od her satırın sonuna o satırdaki tüm okunabilir karakterleri\n" +"yazar." + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" +"--string in ardından bir sayı belirtilmemiÅŸse 3 belirtilmiÅŸ gibi kabul\n" +"eder. --width in ardından bir sayı belirtilmemiÅŸse 32 belirtilmiÅŸ kabul " +"eder.\n" +"Aksi belirtilmedikçe od -A o -t d2 -w 16 seçeneklerini kullanır\n" + +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "geçersiz format `%s'" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" +"geçersiz format `%s';\n" +"bu sistem, yerleÅŸik %lu baytlık tamsayı türü desteklemiyor" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" +"geçersiz format `%s';\n" +"bu sistem %lu baytlık bir kayan ondalık (floating point) türü desteklemiyor" + +#: src/od.c:917 +#, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "format `%2$s' içinde geçersiz `%1$c' karakteri" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "" +"girdinin dikkate alınmayacak bölümü toplam girdiden \n" +"daha büyük verilmiÅŸ" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "eski tarz göreli konum" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "geçersiz çıktı adres radix'i `%c'; [doxn] harflerinden biri olmalı" + +#: src/od.c:1717 +msgid "skip argument" +msgstr "atlanacak bayt sayısı olarak verilen deÄŸer hatalı (-j nin argümanı)" + +#: src/od.c:1725 +msgid "limit argument" +msgstr "" +"maksimum okunacak bayt sayısı olarak verilen deÄŸer hatalı (-N nin argümanı)" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "minimum dizge uzunluÄŸu olarak verilen deÄŸer hatalı (-s in argümanı)" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "%s çok büyük" + +#: src/od.c:1804 +msgid "width specification" +msgstr "geniÅŸlik olarak verilen deÄŸer hatalı (-w nun argümanı)" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "dizgeler çıktılanırken tür belirtilemez" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "`%s' eski kullanımda fazladan belirtilmiÅŸ ikinci dosya" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "eski kullanımda son iki argüman göreli konum olmalı" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "eski kullanımda en fazla üç argüman kullanılabilir" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "uyarı: geçersiz geniÅŸlik %lu; %d kullanılıyor" + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "%d: bçm=\"%s\" geniÅŸlik=%d\n" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "David M. Ihnat ve David MacKenzie" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "standart girdi kapalı" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Standart çıktıya her DOSYAdan aynı sırada olan satırları aralarına \n" +"tablar koyarak yazar. DOSYA adı verilmediÄŸinde veya - olduÄŸunda standart\n" +"girdiden okur\n" +"\n" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" +" -d, --delimiters=LISTE TABlar yerine LISTE'deki karakterleri kullanır\n" +" -s, --serial Her dosyayı (paralel olarak yazmak yerine) \n" +" arka arkaya yazar\n" + +#: src/pathchk.c:146 +#, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "Kullanımı: %s [SEÇENEK]... İSİM...\n" + +#: src/pathchk.c:147 +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" +"Dosya İSİMlerinin geçerliliÄŸini ve taşınabilirliÄŸini denetler.\n" +"\n" +" -p, --portability yalnız bu sistem için deÄŸil tüm POSIX\n" +" sistemler için denetler\n" + +#: src/pathchk.c:237 +#, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "`%s' dosya yolu `%c' taşınamayan karakterini içeriyor" + +#: src/pathchk.c:257 +#, c-format +msgid "`%s' is not a directory" +msgstr "`%s' bir dizin deÄŸil" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "`%s' dizine eriÅŸilemiyor" + +#: src/pathchk.c:355 +#, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "`%s' ismi, %ld uzunluÄŸunda ve %ld karakterlik sınırdan uzun" + +#: src/pathchk.c:381 +#, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "`%s' yolu, %d uzunluÄŸunda ve %ld karakterlik sınırdan uzun" + +#: src/pinky.c:35 src/uptime.c:39 +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "Joseph Arceneaux, David MacKenzie ve Kaveh Ghazi" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "Kullanıcı ismi:" + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "Gerçekte:" + +#: src/pinky.c:298 +msgid "???\n" +msgstr "???\n" + +#: src/pinky.c:318 +msgid "Directory: " +msgstr "Dizin:" + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "Kabuk:" + +#: src/pinky.c:341 +msgid "Project: " +msgstr "Proje:" + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "Plan:\n" + +#: src/pinky.c:386 +msgid "Login" +msgstr "GiriÅŸ" + +#: src/pinky.c:388 +msgid "Name" +msgstr "İsim" + +#: src/pinky.c:389 +msgid " TTY" +msgstr " TTY" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "BoÅŸta" + +#: src/pinky.c:392 +msgid "When" +msgstr " zaman" + +#: src/pinky.c:395 +msgid "Where" +msgstr " yer" + +#: src/pinky.c:469 +#, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "Kullanımı: %s [SEÇENEK]... [KULLANICI]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" +"\n" +" -l belirtilen KULLANICIlar için uzun biçemde çıktı üretir\n" +" -b uzun biçemde kullanıcının ev dizini ve kabuÄŸunu göstermez\n" +" -h uzun biçemde kullanıcının proje dosyasını göstermez\n" +" -p uzun biçemde kullanıcının plan dosyasını göstermez\n" +" -s kısa biçemde çıktı üretir, öntanımlı\n" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" +" -f kısa biçemde sütun baÅŸlığı satırını göstermez\n" +" -w kısa biçemde kullanıcının tam adını göstermez\n" +" -i kısa biçemde kullanıcının tam adı ve uzak makinayı " +"göstermez\n" +" -q kısa biçemde kullanıcının tam adı, uzak makina ve atıl " +"zamanını\n" +" göstermez\n" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" +"\n" +"Basit bir`finger' uygulaması; kullanıcı bilgilerini gösterir.\n" +"utmp dosyası olarak %s kullanılacaktır.\n" + +#: src/pinky.c:574 +msgid "no username specified; at least one must be specified when using -l" +msgstr "" +"kullanıcı adı belirtilmemiÅŸ; -l kullanırken en az bir tane belirtilmeli" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "Pete TerMaat ve Roland Huebner" + +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "`--pages' geçersiz sayfa numara aralığı: `%s'" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "`--pages' geçersiz baÅŸlangıç sayfa numarası: `%s'" + +#: src/pr.c:829 +#, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "`--pages' geçersiz son sayfa numarası: `%s'" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "`--pages' baÅŸlangıç sayfa numarası son sayfa numarasından daha büyük" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "`--pages=İLK_SAYFA[:SON_SAYFA]' argüman eksik" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "`--columns=SÜTUN' geçersiz sütun sayısı: `%s'" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "`-l SAYFA_UZUNLUÄžU' geçersiz satır sayısı: `%s'" + +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "`-N SAYI' geçersiz baÅŸlangıç satır numarası: `%s'" + +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "`-o KENAR' geçersiz satır göreli konumu: `%s'" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "`-w SAYFA_GENİŞLİĞİ' geçersiz harf sayısı: `%s'" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "`-W SAYFA_GENİŞLİĞİ' geçersiz harf sayısı: `%s'" + +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "%b %e %H:%M %Y" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "Paralel yazdırma yapılırken sütun sayısı belirtilemez." + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "Hem paralel yazım, hem altalta yazım yapılamaz." + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "`-%c' argüman içinde fazla harf veya geçersiz sayı: `%s'" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "sayfa geniÅŸliÄŸi çok dar" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "baÅŸlangıç sayfa sayısı toplam sayfa sayısından daha büyük: `%d'" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "Sayfa %d" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" +"DOSYA(ları)yı kolonlara ayırır veya sayfalandırır ve yazar .\n" +"\n" + +# +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" +" +ILK_SAYFA[:SON_SAYFA], --pages=ILK_SAYFA[:SON_SAYFA]\n" +" yazmaya ILK_SAYFA'dan baÅŸlar (SON_SAYFA \n" +" belirtilmiÅŸse SON_SAYFA'da durur)\n" +" -SÜTUN, -columns=SÜTUN\n" +" yazıyı SÜTUN sütuna ayırır , ve -a seçeneÄŸi \n" +" verilmemiÅŸse sütunları yukardan aÅŸağı yazar. \n" +" Her sayfada tüm sütunların satır sayılarını \n" +" aynı yapar\n" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" +" -a, --across satırları yukardan aÅŸağı yerine soldan saÄŸa yazar.\n" +" bu seçenek -KOLON ile kullanılır\n" +" -c, --show-control-chars\n" +" ÅŸapka(^G) ve sekizli ters kesik notasyonunu \n" +" kullanarak kontrol karakterlerini de gösterir\n" +" -d, --double-space\n" +" çift aralık bırakarak yazar\n" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" +" -D, --date-format=FORMAT\n" +" baÅŸlık tarihini yazarken FORMAT'ı kullanır\n" +" -e[KARAKTER[GENISLIK]], --expand-tabs[=KARAKTER[GENISLIK]]\n" +"\t\t KARAKTER(KARAKTER belirtilmediÄŸinde TAB) yerine \n" +" GENISLIK(GENISLIK belirtilmediÄŸinde 8) tane \n" +" boÅŸluk koyar\n" +" -F, -f, --form-feed\n" +" yenisatır karakteri yerine (\\n) formfeed (\\f) \n" +" karakteri kullanarak sayfaları ayırır\n" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" +" -h BASLIK, --header=BASLIK\n" +" BaÅŸlık olarak dosya ismi yerine BASLIK'ı\n" +" kullanır ( baÅŸlık ortalanarak yazılır),\n" +" -h \"\" boÅŸ bir satır yazar, -h\"\" kullanmayın\n" +" -i[KAR[GEN]], --output-tabs[=KAR[GEN]]\n" +" boÅŸluk gördüğü yere GEN tane KAR koyar. GEN belirtil-\n" +" mediÄŸinde 8 , KAR belirtilmediÄŸinde TAB\n" +" kullanır\n" +" -J, --join-lines birden fazla kolondan oluÅŸan çıktılarda \n" +" kolonları birleÅŸtirip bir satır oluÅŸturur\n" +" -W seçeneÄŸinin satırları kısaltmasına izin vermez,\n" +" kolonları hizalamaz, --sep-string[=KAR] ayraçları\n" +" belirler\n" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" +" -l SAYFA_UZUNLUGU, --length=SAYFA_UZUNLUGU\n" +" sayfa uzunluÄŸunu SAYFA_UZUNLUGU yapar. Bu seçenek " +"kullanıl-\n" +" madıkca sayfa uzunluÄŸu 56 satırdır. -F seçeneÄŸi " +"kullanıl-\n" +" dığında sayfa uzunluÄŸu 63 tür.\n" +" -m, --merge tüm dosyaları yan yana yazar, her biri bir kolona, çok " +"uzun\n" +" satırları keser, ve yan yana gelen kolonlar tam bir " +"satır\n" +" oluÅŸturuyorlarsa, onları da büyük tek bir kolonda " +"toplar \n" +" ( -J deki gibi)\n" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" +" -n[AYIR[SAY]], --number-lines[=AYIR[SAY]]\n" +" satırları SAY basamak kullanarak numaralandırır\n" +" ve satır numarasını satırdan AYIR ile ayırır. (AYIR \n" +" belirtilmediÄŸinde TAB kullanır, SAY belirtilmediÄŸinde \n" +" 5 kullanır)\n" +" -N SAYI, --first-line-number=SAYI\n" +" satır numaralandırmaya SAYI'dan baÅŸlar(örnek: pr -N 5 " +"ilk\n" +" satıra 5 , ikinci satıra 6,... numaralarını verir)\n" +" (+ILK_SAYFA seçeneÄŸine de bakınız)\n" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" +" -o KENAR, --indent=KENAR\n" +" her sayfanın başında KENAR boÅŸluk bırakır. Bu seçenek\n" +" -w veya -W yu etkilemez, bırakılan boÅŸluk \n" +" SAYFA_GENISLIGI'ne eklenir\n" +" -r, --no-file-warnings\n" +" belirtilen dosyayı açamadığında hata mesajı vermez\n" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" +" -s[KAR], --seperator[=KAR]\n" +" kolonları tek bir karakterle (KAR) ayır, bu seçenek\n" +" kullanılmadığında kolonlar TAB ile ayrılır. Bu seçenek\n" +" diÄŸer hiçbir seçeneÄŸin satırları kısaltmasına\n" +" izin vermez\n" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr " -SDIZI, --sep-string[=DIZI]\n" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" +" kolonları DIZI ile ayır. DIZI'yi \"\" isaretleri\n" +" arasında yazmayın. DIZI belirtilmediÄŸinde kolonları \n" +" birbirinden ayırmaz\n" +" bu seçenek diÄŸer kolon seçeneklerini etkilemez\n" +" -t, --omit-header sayfalara baÅŸlık ve bitiÅŸ koymaz\n" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" +" -T, --omit-pagination\n" +" dosyaları sayfalandırmaz, baÅŸlık ve bitiÅŸ koymaz\n" +" -v, --show-nonprinting\n" +" sekizli terskesik notasyonunu kullanarak ekranda\n" +" normalde gözükmeyecek karakterleri de yazar\n" +" -w SAYFA_GENISLIGI, --width=SAYFA_GENISLIGI\n" +" sayfa geniÅŸliÄŸini birden fazla kolon olan çıktılar için\n" +" SAYFA_GENISLIGI yapar. Sayfa geniÅŸliÄŸi -w kullanıl-\n" +" madığında 72 dir. -s[KAR] seçeneÄŸi kullanıldığında " +"sayfa\n" +" geniÅŸliÄŸi otomatik olarak 72 olmaz. Hem -s seçeneÄŸini\n" +" kullanmak hem de sayfa geniÅŸliÄŸinin ayarlı olmasını " +"istiyor-\n" +" sanız -w seçeneÄŸini mutlaka kullanın\n" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" +" -W SAYFA_GENISLIGI, --page-width=SAYFA_GENISLIGI\n" +" sayfa geniÅŸliÄŸini her çeÅŸit çıktı için SAYFA_GENISLIGI\n" +" yapar( -W kullanılmadığında sayfa geniÅŸliÄŸi 72'dir ). -" +"J \n" +" seçeneÄŸi belirtilmedikçe uzun satırları keser. Bu " +"seçenek\n" +" ve -s ,-S seçenekleri birbirlerini etkilemezler\n" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" +"\n" +"pr -l nn seçeneÄŸi nn 11 den küçükse -T seçeneÄŸi de verilmiÅŸ gibi kabul eder\n" +"nn üçten küçükse ve -F de verilmiÅŸse -T gene verilmiÅŸ kabul edilir. DOSYA \n" +"belirtilmediÄŸinde veya - olduÄŸunda standart girdiden okur\n" + +#: src/printenv.c:43 +msgid "David MacKenzie and Richard Mlynarik" +msgstr "David MacKenzie ve Richard Mlynarik" + +#: src/printenv.c:63 +#, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" +"Kullanımı: %s [DEĞİŞKEN]...\n" +" veya: %s SEÇENEK\n" +"Çevre DEĞİŞKENi verilmezse tümünü listeler.\n" +"\n" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "uyarı: %s: karakter sabitini izleyen karakter(ler) yoksayıldı" + +#: src/printf.c:100 +#, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"Kullanımı: %s BİÇEM [ARGÜMAN]...\n" +" veya: %s SEÇENEK\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" +"ARGÜMAN(lar)ı BİÇEM'e göre gösterir.\n" +"\n" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" +"\n" +"BİÇEM çıktıyı, C printf iÅŸlevindeki gibi biçemler. Yorumlanan iÅŸlemimleri:\n" +"\n" +" \\\" çift tırnak karakterini gösterir\n" +" \\0NNN Sekizlik deÄŸeri NNN olan karakteri gösterir (3 haneye kadar)\n" +" \\\\ tersbölü karakterini gösterir\n" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" +" \\a uyarı zili (BEL)\n" +" \\b bir önceki karakteri siler\n" +" \\c alt satıra geçme karakterini engeller\n" +" \\f sayfa sonuna kadar imleci ilerletir\n" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" +" \\n alt satıra geçer\n" +" \\r imleci satır başına taşır\n" +" \\t imleci yatay sekme kadar ilerletir\n" +" \\v imleci düşey sekme kadar ilerletir\n" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" +" \\xNN onaltılık deÄŸeri NN olan bayt (2 haneye kadar)\n" +"\n" +" \\uNNNN onaltılık deÄŸeri NNNN olan karakter (4 haneli)\n" +" \\UNNNNNNNN onaltılık deÄŸeri NNNNNNNN olan karakter (8 hane)\n" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" +" %% tek bir % iÅŸaretini gösterir\n" +" %b ARGÜMAN `\\' öncelemeli bir dizge olarak yorumlanır\n" +"\n" +"ve ARGÜMANlar önce uygun bir türe dönüştürülerek diouxXfeEgGcs\n" +"karakterlerinden biri ile biten tüm C biçem tanımlamaları kullanılır.\n" +"DeÄŸiÅŸken geniÅŸlikler de desteklenmiÅŸtir.\n" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "%s: bir sayısal argüman gerekli" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "%s: deÄŸer tamamen dönüştürülmedi" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "öncelemde onaltılık sayı yok" + +#: src/printf.c:292 +#, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "evrensel karakter ismi \\%c%0*x geçersiz" + +#: src/printf.c:472 +#, fuzzy, c-format +msgid "invalid field width: %s" +msgstr "geçersiz satır geniÅŸliÄŸi: %s" + +#: src/printf.c:498 +#, fuzzy, c-format +msgid "invalid precision: %s" +msgstr "geçersiz dönüşüm: %s" + +#: src/printf.c:519 +#, c-format +msgid "%%%c: invalid directive" +msgstr "%%%c: yönerge geçersiz" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "Kullanımı: %s BİÇEM [ARGÜMAN...]\n" + +#: src/printf.c:594 +#, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "uyarı: `%s'den baÅŸlayarak fazladan argümanlar yoksayıldı" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "%s (`%s' düzenli ifadesi için)" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"Kullanım: %s [SEÇENEK]... [GİRDİ]... (-G olmaksızın)\n" +" veya: %s -G [SEÇENEK]... [GİRDİ [ÇIKTI]]\n" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" +"girdi dosyasındaki kelimelerin (contextleriyle beraber),bir permutasyonunu \n" +" oluÅŸturur.\n" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" +" -A, --auto-reference SatırbaÅŸlarına referans bilgileri koyar\n" +" -C, --copyright Kopyalama hakkı bilgilerine ve ÅŸartlarını\n" +" gösterir\n" +" -G, --traditional System V'deki ptx gibi davranır\n" +" -F, --flag-truncation=DİZGE Satırları kesmesi gerektiÄŸinde satırı \n" +" kestiÄŸi yeri DİZGE (string) ile belirtir\n" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" +" -M, --macro-name=DİZGE TeX formatında çıktı oluÅŸtururken `xx' " +"yerine\n" +" DİZGE makrosunu kullanır\n" +" -O, --format=roff roff direktifleri formatında çıktı " +"oluÅŸturur\n" +" -R, --right-side-refs -A seçeneÄŸinde oluÅŸturulan referansları \n" +" satırbaşına deÄŸil, satırsonuna koyar( -A \n" +" ile beraber kullanımı anlamlı bir seçenek)\n" +" -S, --sentence-regexp=REGEXP satır sonlarını REGEXP'i (REGEXP = regular\n" +" expression (düzenli ifade) ) \n" +" -T, --format=tex TeX formatında çıktı oluÅŸtur\n" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" +" -W, --word-regexp=REGEXP anahtar kelimeleri REGEXP'i kullanarak \n" +" belirler\n" +" -b, --break-file=DOSYA DOSYA'daki karakterlere bakarak kelime \n" +" sonlarını belirler\n" +" -f, --ignore-case büyük/küçük harf ayrımı yapmaz\n" +" -g, --gap-size=SAYI çıktının kolonları arasındaki boÅŸluk " +"geniÅŸliÄŸi\n" +" SAYI olur\n" +" -i, --ignore-file=DOSYA girdi üzerinde çalışırken DOSYA daki \n" +" kelimeleri dikkate almaz\n" +" -o, --only-file=DOSYA girdide sadece DOSYA'daki kelimeleri\n" +" dikkate alır\n" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" +" -r, --references her satırın ilk alanını referans olarak \n" +" kullanır\n" +" -t, --typeset-mode [henüz çalışmayan bir seçenek]\n" +" -w, --width=SAYI çıktıdaki kolon sayısı SAYI olur \n" +" (referans hariç)\n" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" +"\n" +"DOSYA belirtilmediÄŸinde veya - olduÄŸunda standart girdiden okur. \n" +"`-F /' seçeneÄŸi verilmiÅŸ gibi çalışır\n" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" +"Bu, bir serbest yazılımdır; Free Software Foundation tarafından yayınlanan\n" +"GNU Genel Kamu Lisansı, 2. sürüm (veya sizin seçiminize baÄŸlı olarak) daha " +"üst \n" +"sürüm koÅŸulları altında deÄŸiÅŸiklik yapabilir ve/veya yeniden " +"dağıtabilirsiniz. \n" +"\n" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" +"Bu program kullanışlı olabileceÄŸi umularak dağıtılmaktadır. Ancak,\n" +"hiçbir GARANTİSİ YOKTUR; hatta SATILABİLİRLİĞİ veya HERHANGİ BİR\n" +"AMACA UYGUNLUÄžU için bile garanti verilmez. Daha ayrıntılı bilgi\n" +"edinmek için GNU Genel Kamu Lisansına bakınız.\n" +"\n" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" +"GNU Genel Kamu Lisansının bir kopyasını bu yazılımla birlikte almış\n" +"olacaksınız; yoksa Free Software Foundation, Inc., 59 Temple Place\n" +"Suite 330, Boston, MA 02111-1307, USA. adresinden isteyebilirsiniz.\n" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" +"Çalışılan dizinin tam dosya yolunu gösterir.\n" +"\n" + +#: src/pwd.c:74 +msgid "ignoring non-option arguments" +msgstr "seçenek olmayan argümanlar yoksayılıyor" + +#: src/pwd.c:78 +msgid "cannot get current directory" +msgstr "çalışılan dizin alınamadı" + +#: src/readlink.c:69 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "Kullanım: %s [SEÇENEK]... [DOSYA]\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" + +#: src/remove.c:394 +#, c-format +msgid "cannot chdir from %s to .." +msgstr "%s dizininden ..'ye geçilemedi" + +#: src/remove.c:407 src/remove.c:488 +#, c-format +msgid "cannot lstat `.' in %s" +msgstr "%s'de '.' durumlanamadı" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "%s dev/ino'yu deÄŸiÅŸtirdi" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, c-format +msgid "cannot lstat %s" +msgstr "%s durumlanamadı" + +#: src/remove.c:603 +#, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "%s: korumalı dizin %s'nin içine inilsin mi?" + +#: src/remove.c:604 +#, c-format +msgid "%s: descend into directory %s? " +msgstr "%s: %s dizininin içine inilsin mi?" + +#: src/remove.c:614 +#, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s: korumalı %s %s silinsin mi?" + +#: src/remove.c:615 +#, c-format +msgid "%s: remove %s %s? " +msgstr "%s: %s %s silinsin mi?" + +#: src/remove.c:639 +#, c-format +msgid "removed %s\n" +msgstr "%s silindi\n" + +#: src/remove.c:654 src/remove.c:1059 +#, c-format +msgid "removed directory: %s\n" +msgstr "%s dizini silindi\n" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, c-format +msgid "cannot remove directory %s" +msgstr "dizin %s silinemiyor" + +#: src/remove.c:815 +#, c-format +msgid "cannot open directory %s" +msgstr "dizin %s açılamadı" + +#: src/remove.c:896 src/remove.c:1002 +#, c-format +msgid "cannot chdir from %s to %s" +msgstr "%s dizininden %s dizinine geçilemedi" + +#: src/remove.c:904 +#, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +"Uyarı: Döngülü dizin yapısı\n" +"Bu hemen her zaman bozulmuÅŸ bir dosya sisteminiz olduÄŸunu gösterir.\n" +"SİSTEM YÖNETİCİNİZE HABER VERİN.\n" +"AÅŸağıdaki dizin bu çevrimin bir parçası:\n" +" %s\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "'.' veya '..' silinemiyor" + +# +#: src/rm.c:60 +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "Paul Rubin, David MacKenzie, Richard Stallman ve Jim Meyering" + +#: src/rm.c:99 src/touch.c:244 +#, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "Kullanım: %s [SEÇENEK]... DOSYA...\n" + +#: src/rm.c:100 +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"DOSYA(lar)ı siler (baÄŸlarını kaldırır).\n" +"\n" +" -d, --directory DOSYA, boÅŸ olmayan bir dizin olsa bile bağını " +"kaldırır\n" +" (yalnızca süper kullanıcı)\n" +" -f, --force mevcut olmayan dosyaları yok varsayar, hiç sormaz\n" +" -i, --interactive silmeden önce sorar\n" +" -r, -R, --recursive yinelemeli olarak dizinlerin içlerindekileri siler\n" +" -v, --verbose ne yapıldığını anlatır\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" +"\n" +"Adı '-' ile baÅŸlayan bir dosyayı silmek için, örneÄŸin '-foo' \n" +"aÅŸağıdaki komutlardan birini kullanın:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" +"\n" +"Not: EÄŸer bir dosyayı silerken rm kullandıysanız, genelde o dosyanın\n" +"içindekileri geri almanız mümkündür. EÄŸer dosya içeriÄŸinin gerçekten geri\n" +"alınamaz olarak silinmesini istiyorsanız, shred komutunu kullanın.\n" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, c-format +msgid "removing directory, %s" +msgstr "dizin %s siliniyor" + +#: src/rmdir.c:146 +#, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "Kullanım: %s [SEÇENEK]... DİZİN...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" +"DİZİN(ler) boÅŸ ise siler.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" yalnızca bir dizinin boÅŸ olmamasından kaynaklanan \n" +" hataları dikkate almaz\n" + +#: src/rmdir.c:154 +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +" -p, --parents DİZİN'i siler, ondan sonra o yolun her bileÅŸenindeki\n" +" dizinleri silmeye çalışır. Örnek: 'rmdir -p a/b/c'\n" +" rmdir a/b/c a/b a' komutuna eÅŸittir.\n" +" -v, --verbose iÅŸlenen her dizin için durum çıktılar\n" + +#: src/seq.c:82 +#, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"Kullanımı: %s [SEÇENEK]... SON\n" +" veya: %s [SEÇENEK]... İLK SON\n" +" ya da: %s [SEÇENEK]... İLK ARTIÅž SON\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" +"İLK'ten SON'a kadar rakamları, ARTIÅž atlayarak yazar.\n" +"\n" +" -f, --format=BİÇEM printf tarzı gerçel sayı BİÇEMi kullanır " +"(öntanımlı: %g)\n" +" -s, --separator=DİZGE rakamları DİZGE ile ayırır (öntanımlı:\\n)\n" +" -w, --equal-width rakamları sıfırla yastıklayarak eÅŸit geniÅŸliÄŸe " +"getirir\n" + +#: src/seq.c:96 +#, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" +"\n" +"İLK ve ARTIÅž belirtilmemiÅŸse öntanımlı olarak 1 kabul edilir.\n" +"İLK, ARTIÅž ve SON gerçel sayılar olarak yorumlanır.\n" +"İLK SONdan küçükse ARTIÅž pozitif, aksi takdirde negatif olmalıdır.\n" +"BelirtildiÄŸi takdirde BİÇEM en azından bir tane printf tarzı gerçel\n" +"sayı çıktı biçemi (%e, %f, %g den birini) içermelidir.\n" + +#: src/seq.c:119 +#, c-format +msgid "invalid floating point argument: %s" +msgstr "gerçel sayı argüman geçersiz: %s" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" +"baÅŸlangıç deÄŸeri sonuncudan büyükse,\n" +"artış negatif olmalıdır." + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" +"baÅŸlangıç deÄŸeri sonuncudan küçükse,\n" +"artış pozitif olmalıdır." + +#: src/seq.c:423 +#, c-format +msgid "invalid format string: `%s'" +msgstr "biçem dizgesi geçersiz: `%s'" + +#: src/seq.c:445 +msgid "format string may not be specified when printing equal width strings" +msgstr "eÅŸ geniÅŸlikli dizgeler için biçem dizgesi belirtilmeyebilir" + +#: src/shred.c:160 +#, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "Kullanım: %s [SEÇENEK] DOSYA [...]\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "" +"Belirtilen DOSYA(ların) üzerine bir kaç defa yazarak pahalı donanım \n" +"çözümleri ile bile dosya içeriÄŸinin kurtarılabilmesini zorlaÅŸtırır.\n" +"\n" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" +" -f, --force eÄŸer gerekli olursa yazma izni verir\n" +" -n, --iterations=N Öntanımlı (%d) defa üzerine yazma yerine N defa " +"üzerine\n" +" yazar\n" +" -s, --size=N N sayıda baytı bu iÅŸlemden geçirir\n" +" (k, M, G gibi sonekler kabul edilir)\n" + +#: src/shred.c:174 +#, fuzzy +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" +" -u, --remove üzerine yazdıktan sonra dosyayı sıfırlar ve siler\n" +" -v, --verbose ilerlemeyi gösterir\n" +" -x, --exact dosya boyutunu sonraki tam bloÄŸa yuvarlamaz\n" +" -z, --zero iÅŸlemi gizlemek için en son olarak üzerine sıfırlarla " +"yazar\n" +" - standart çıktıyı bu iÅŸleme tabi tutar\n" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" +"\n" +"EÄŸer --remove (-u) belirtilmiÅŸse DOSYA(ları) siler. Öntanımlı deÄŸer " +"dosyaları\n" +"silmez çünkü bu komut genelde /dev/hda gibi aygıt dosyaları üzerinde \n" +"çalıştırılır ve o dosyalar genelde silinmemelidir. Normal dosyalar " +"üzerinde\n" +"çalıştırıldığı zaman genelde --remove seçeneÄŸi kullanılır.\n" +"\n" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" +"DİKKAT: shred komutu dosya sisteminin datayı yerinde \n" +"üzerine yazdığı varsayımına dayanır. Bu genelde yapılan iÅŸlemdir, \n" +"fakat pek çok modern dosya sistemi bu varsayıma uymaz. AÅŸağıda shred\n" +"komutunun iÅŸe yaramadığı dosya sistemleri örneklenmiÅŸtir:\n" +"\n" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" +"* AIX ve Solaris ile gelen (ve JFS, ReiserFS, XFS vs.) gibi kayıt düzenli " +"veya\n" +" jurnalli dosya sistemleri\n" +"\n" +"* RAID gibi çoklu data yazan ve bazı yazma iÅŸlemleri baÅŸarısız olsa bile " +"devam\n" +" edebilen dosya sistemleri\n" +"\n" +"* Network Appliance'ın NFS sunucusu gibi dosya sisteminin bir görüntüsünü \n" +" kaydeden dosya sistemleri\n" +"\n" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" +"* geçici yerlerde arabellek oluÅŸturan dosya sistemleri (NFS sürüm 3 \n" +" istemcileri gibi)\n" +"\n" +"* sıkıştırılmış dosya sistemleri\n" +"\n" +"Buna ek olarak, dosyasistem yedekleri ve uzak yansılar dosyanın\n" +"silinemeyen kopyalarını taşıyabilir ve bu shred iÅŸleminden geçirilmiÅŸ\n" +"bir dosyanın tekrar oluÅŸturulabilmesini saÄŸlayabilir.\n" + +#: src/shred.c:808 +#, c-format +msgid "%s: cannot rewind" +msgstr "%s: geri gelinemiyor" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "%s: geçiÅŸ %lu/%lu (%s)" + +#: src/shred.c:868 +#, c-format +msgid "%s: error writing at offset %s" +msgstr "%s %s göreli konumunda yazdırma hatası" + +#: src/shred.c:897 +#, c-format +msgid "%s: file too large" +msgstr "%s: dosya çok büyük" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "%s: geçiÅŸ %lu/%lu (%s)...%s" + +#: src/shred.c:936 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "%s: geçiÅŸ %lu/%lu (%s)...%s/%s %d%%" + +#: src/shred.c:1195 +#, c-format +msgid "%s: invalid file type" +msgstr "%s: geçersiz dosya tipi" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s: dosya büyüklüğü negatif" + +#: src/shred.c:1265 +#, c-format +msgid "%s: error truncating" +msgstr "%s: kısaltmada hata" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "%s: yalnızca eklenebilir kipte dosya belirteçine shred uygulanamaz" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "%s: siliniyor" + +#: src/shred.c:1412 +#, c-format +msgid "%s: renamed to %s" +msgstr "%s: %s olarak yeniden adlandırıldı" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s: silindi" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "%s: silinemedi" + +#: src/shred.c:1551 +#, c-format +msgid "%s: invalid number of passes" +msgstr "%s geçersiz sayıda geçiÅŸ" + +#: src/shred.c:1568 +#, c-format +msgid "%s: invalid file size" +msgstr "%s: geçersiz dosya büyüklüğü" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "Jim Meyering ve Paul Eggert" + +#: src/sleep.c:52 +#, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" +"Kullanımı: %s SAYI[SONEK]...\n" +" veya: %s SEÇENEK\n" +"SAYI saniye kadar bekletir.\n" +"SONEK saniye için `s' (öntanımlı), dakika için `m', saat için `h' ve \n" +"gün için `d' olabilir. Birçok benzerinde SAYI için bir tamsayı\n" +"deÄŸer gerekirken, burada SAYI bir gerçel sayı olabilir.\n" +"\n" + +#: src/sleep.c:155 +#, c-format +msgid "invalid time interval `%s'" +msgstr "`%s' zaman aralığı geçersiz" + +#: src/sleep.c:166 src/tail.c:1031 +msgid "cannot read realtime clock" +msgstr "gerçekzaman saati okunamıyor" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "Mike Haertel ve Paul Eggert" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" +"DOSYA(ların)nın sıralanmış halini standart çıktıya yazar.\n" +"sort sıralama yaparken her satırın belli bir bölümune bakarak sıralama\n" +"yapar. Baktığı bölüme sıralama anahtarı denir. Bu anahtarı aÅŸağıdaki\n" +"seçenekleri kullanarak belirtebilirsiniz. Seçeneklerden sonra anahtarların\n" +"nasıl oluÅŸturulduÄŸuyla ilgili bilgi bulabilirsiniz.\n" +"\n" +"Sıralama seçenekleri:\n" +"\n" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" +" -b, --ignore-leading-blanks sıralanacak alanlarda ve sıralama \n" +" anahtarlarından önce gelen boÅŸlukları " +"dikkate \n" +" almaz\n" +" -d, --dictionary-order anahtarlarda sadece [a-zA-Z0-9] " +"karakterlerini\n" +" dikkate alır\n" +" -f, --ignore-case sıralarken büyük/küçük harf farklılıklarını \n" +" dikkate almaz \n" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" +" -g, --general-numeric-sort sayısal deÄŸere bakarak sıralar, -n seçeneÄŸini " +"de\n" +" de verilmiÅŸ kabul eder \n" +" ( -n seçeneÄŸinden farkı : 1.e-3 gibi \n" +" sayıları da okuyabilir. -n seçeneÄŸinden çok \n" +" daha yavaÅŸ çalışır, gerekmedikçe bu seçeneÄŸi \n" +" kullanmayın)\n" +" -i, --ignore-nonprinting anahtarlarda sadece yazılabilir yazılabilir =\n" +" printable, Örnekler: a ? < , ...) \n" +" karakterleri dikkate alır\n" +" -M, --month-sort anahtarın ilk üç harfini alır, bir ay ismi\n" +" nin kısaltmasıysa, ayların sırasına göre\n" +" sıralar. Ay isimlerinin kısa yazılış-\n" +" larını LC_TIME çevre deÄŸiskeninin\n" +" belirttigi locale dosyasından bakar\n" +" (çevre deÄŸiÅŸkeni = environment variable)\n" +" -n, --numeric-sort sayısal deÄŸerlere göre sıralar\n" +" -r, --reverse tersine sıralar\n" +"\n" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" +"Diger seçenekler:\n" +"\n" +" -c, --check dosyalar sıralı mı kontrol eder; sıralamaz\n" +" -k, --key=POS1[,POS2] Sıralama anahtarı belirtmek için kullanılan \n" +" seçenek:\n" +" POS1 de baÅŸlayan POS2 de biten bir anahtar \n" +" belirler (alan numarasını ve karakterin\n" +" kelime içindeki yerini 1'den baÅŸlayarak sayar)\n" +" -m, --merge sıralama yapma; daha önceden sıralanmış \n" +" dosyaları birleÅŸtirir\n" +" -o, --output=DOSYA sonucu DOSYA'ya yazar\n" +" -s, --stable EÄŸer tüm satırlar karşılaÅŸtırıldıklarında eÅŸit\n" +" gözüküyorlarsa dosyayı aynı bırakır\n" +" (bu seçenek kullanılmadığında sort yukarda \n" +" belirtilen durumla karşılaÅŸtığında satırları \n" +" baÅŸtan sona bayt bayt karşılaÅŸtırır)\n" +" -S, --buffer-size=SAYI ana bellekten SAYI geniÅŸliÄŸinde alan kullanır\n" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" +" -t, --field-seperator=SEP kelimeleri boÅŸluk yerine SEP ile ayrılmış \n" +" kabul eder\n" +" -T, --temporary-directory=DIR geçici dizin olarak $TMPDIR veya %s " +"yerine \n" +" DIR'ı kullanır. \n" +" -u, --unique -c ile kullanıldığında girdide her satırın \n" +" özgün olup olmadığını da kontrol eder. -c ile\n" +" kullanılmadığında sıralama yaparken aynı olan \n" +" satırlardan sadece birini yazar \n" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" +" -z, --zero-terminated satırları satır-sonu karakteri (\\n) \n" +" yerine 0'la (0 baytı) bitirir\n" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" +"\n" +"Sıralama anahtarları POS1, POS2 argümanları F[.C][SEC] ile belirtilir.\n" +"Burda F alan numarası C de karakterin alandaki yeridir.-k seçeneÄŸi " +"verildiÄŸinde\n" +"alan numarası ve karakterine alandaki yeri 1'den baÅŸlanarak sayılır (eski \n" +"kullanım ÅŸeklinde 0'dan baÅŸlanarak sayılır). SEC ise yukarda belirtilen\n" +"sıralama seçeneklerinden oluÅŸur. (Hem en baÅŸta hem POS1 veya POS2 nin \n" +"içinde sıralama seçeneÄŸi belirtilmiÅŸse POS1, POS2 nin içindekiler " +"kullanır).\n" +"Anahtar belirtilmemiÅŸse sort bütün satırı anahtar olarak kullanır.\n" +"\n" +"SAYI'dan sonra aÅŸağıdaki soneklerden biri gelebilir:\n" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" +"%%(hafızayı yüzdeyle belirtmek için) , b, k (varsayılan), M, G, T, P, E, Z, " +"Y.\n" +"\n" +"DOSYA verilmediÄŸinde veya - olduÄŸunda standart girdiden okur.\n" +"\n" +"*** UYARI ***\n" +"Çevre deÄŸiÅŸkenlerince belirlenen locale dosyası sıralamayı etkiler.\n" +"bayt deÄŸerlerine göre sıralama için LC_ALL çevre deÄŸiÅŸkenine C deÄŸerini " +"atayın.\n" + +#: src/sort.c:444 +msgid "cannot create temporary file" +msgstr "geçici dosya oluÅŸturulamadı" + +#: src/sort.c:467 +msgid "open failed" +msgstr "açma iÅŸlemi baÅŸarısız" + +#: src/sort.c:487 src/sort.c:2496 +msgid "close failed" +msgstr "kapatma iÅŸlemi baÅŸarısız" + +#: src/sort.c:495 +msgid "write failed" +msgstr "yazma baÅŸarısız oldu" + +#: src/sort.c:641 +msgid "sort size" +msgstr "sıralama boyu" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "stat baÅŸarısız" + +#: src/sort.c:972 +msgid "read failed" +msgstr "okuma baÅŸarısız oldu" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "%s: %s:%s: sırasız: " + +#: src/sort.c:1574 +msgid "standard error" +msgstr "standart hata" + +#: src/sort.c:2032 +#, c-format +msgid "%s: invalid field specification `%s'" +msgstr "%s: geçersiz alan tanımı `%s'" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "%s: `%.*s' sayımı fazla büyük" + +#: src/sort.c:2064 +#, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "%s: `%s' baÅŸlangıcında geçersiz sayım" + +#: src/sort.c:2298 +msgid "invalid number after `-'" +msgstr "`-' den sonra geçersiz sayı" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +msgid "invalid number after `.'" +msgstr "`.' dan sonra geçersiz sayı" + +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "alan tanımında fazla harf" + +#: src/sort.c:2338 +msgid "invalid number at field start" +msgstr "alan baÅŸlangıcında geçersiz sayı" + +#: src/sort.c:2342 src/sort.c:2370 +msgid "field number is zero" +msgstr "alan numarası sıfır" + +#: src/sort.c:2351 +msgid "character offset is zero" +msgstr "sıralama anahtarında belirtilen karakter yeri sıfır" + +#: src/sort.c:2366 +msgid "invalid number after `,'" +msgstr "`,' den sonra geçersiz sayı" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "tab yerine kullanılacak `%s' bir karakterden oluÅŸmalı" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "" +"-c seçeneÄŸi kullanıldığında sort sadece bir dosyayla çalışır\n" +": `%s' fazla" + +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "Kullanım: %s [SEÇENEK] [GİRDİ [ÖNEK]]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" +"GIRDI'yi eÅŸit büyüklükte parçalara bölüp ONEKaa, ONEKab, ... isimli\n" +"dosyalara kor. ONEK belirtilmediÄŸinde parça isimleri `x' ile baÅŸlar.\n" +"GIRDI belirtilmediÄŸinde veya - olduÄŸunda standart girdiyi kullanır\n" +"\n" + +#: src/split.c:108 +#, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" +" -a, --suffix-length=N parça isimlerinin ONEK'ten sonraki bölümlerinin \n" +" uzunluÄŸu N olur ( -a kullanılmadıkça %d) \n" +" -b, --bytes=SAYI dosyayı N bayt parçalara böler\n" +" -C, --line-bytes=SAYI parçaların her satırında en fazla N bayt olur\n" +" -l, --lines=SAYI her parçada N tane satır olur\n" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" +" --verbose her parçayı dosyasına koymadan önce \n" +" ne yaptığına dair bilgi verir (bilgi standart " +"hata'ya\n" +" yazılır)\n" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "kullanacak parça ismi kalmadı" + +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "`%s' dosyası oluÅŸturuluyor\n" + +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "-C -l -b seçenekleri beraber kullanılmaz" + +#: src/split.c:394 +#, c-format +msgid "%s: invalid suffix length" +msgstr "%s: -a seçeneÄŸine verilen arguman geçersiz" + +#: src/split.c:408 src/split.c:434 +#, c-format +msgid "%s: invalid number of bytes" +msgstr "%s: geçersiz bayt sayısı" + +#: src/split.c:421 +#, c-format +msgid "%s: invalid number of lines" +msgstr "%s: geçersiz satır sayısı" + +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "`-%d' seçeneÄŸi eski; yerine `-l %d' kullanın" + +#: src/split.c:483 +msgid "invalid number" +msgstr "geçersiz sayı" + +#: src/stat.c:326 +#, fuzzy +msgid "*** invalid date/time ***" +msgstr "`%s' geçerli bir zaman dizgesi deÄŸil" + +#: src/stat.c:608 +#, c-format +msgid "cannot read file system information for %s" +msgstr "%s için dosyasistem bilgisi okunamadı" + +#: src/stat.c:684 +#, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "Kullanım: %s [SEÇENEK] DOSYA...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" +"Dosya veya dosya sistemi durumunu gösterir.\n" +"\n" +" -f, --filesystem dosya durumu yerine dosya sistemi durumunu gösterir\n" +" -c --format=BİÇEM öntanımlı biçem yerine belirtilen BİÇEM'i kullanır\n" +" -L, --dereference baÄŸları takip eder\n" +" -t, --terse bilgileri kısa biçemde gösterir\n" + +#: src/stat.c:696 +#, fuzzy +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" +"\n" +"Dosyalar için geçerli sözdizimler (--filesystem seçeneÄŸi olmaksızın)\n" +"\n" +" %A İnsan tarafından okunabilir biçemde eriÅŸim hakları\n" +" %a Sekizlik deÄŸer halinde eriÅŸim hakları\n" +" %b Ayrılan blok sayısı\n" + +#: src/stat.c:704 +#, fuzzy +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" +" %D Onaltılık düzende aygıt numarası\n" +" %d Onluk düzende aygıt numarası\n" +" %F Dosya türü\n" +" %f Onaltılık düzende ham (raw) kip\n" +" %G Sahibin grup adı\n" +" %g Sahibin grup kimlik no'su\n" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" +" %h Sabit baÄŸ sayısı\n" +" %i Idüğüm sayısı\n" +" %N EÄŸer sembolik baÄŸ ise çözümlenmiÅŸ ve tırnak içine alınmış dosya adı\n" +" %n Dosya adı\n" +" %o IO blok büyüklüğü\n" +" %s Bayt cinsinden toplam büyüklük\n" +" %T Onaltılık minör aygıt türü\n" +" %t Onaltılık majör aygıt türü\n" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" +" %U Sahibin kullanıcı adı\n" +" %u Sahibin kimlik no\n" +" %X BaÅŸlangıçtan beri saniye cinsinden son eriÅŸim zamanı\n" +" %x Son eriÅŸim zamanı\n" +" %Y BaÅŸlangıçtan beri saniye cinsinden son deÄŸiÅŸim zamanı\n" +" %y Son deÄŸiÅŸim zamanı\n" +" %Z BaÅŸlangıçtan beri saniye cinsinden son dosya deÄŸiÅŸim zamanı\n" +" %z Son dosya deÄŸiÅŸim zamanı\n" +"\n" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" +"Dosya sistemleri için geçerli biçem dizileri:\n" +"\n" +" %a Normal kullanıcıya izin verilen boÅŸ bloklar\n" +" %b Dosya sistemindeki toplam veri blokları\n" +" %c Dosya sistemindeki toplam dosya düğümleri\n" +" %d Dosya sisteminde boÅŸ dosya düğümleri\n" +" %f Dosya sisteminde boÅŸ bloklar\n" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" +" %i Dosya sistem kimlik no (onaltılık)\n" +" %l Dosya isimlerinin maksimum uzunluÄŸu\n" +" %n Dosya ismi\n" +" %s Optimal transfer blok büyüklüğü\n" +" %T İnsan okuyabilir ÅŸekilde tür\n" +" %t Onaltılık düzende tür\n" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" +"Kullanımı: %s [-F AYGIT] [--file=AYGIT] [AYAR]...\n" +" veya: %s [-F AYGIT] [--file=AYGIT] [-a|--all]\n" +" ya da: %s [-F AYGIT] [--file=AYGIT] [-g|--save]\n" + +#: src/stty.c:504 +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" +"Terminal karakteristiklerini deÄŸiÅŸtirir ve gösterir.\n" +"\n" +" -a, --all tüm ayarları okunabilir biçimde gösterir\n" +" -g, --save tüm ayarları stty-okuyabilir biçimde gösterir\n" +" -F, --file=AYGIT stdGirdi yerine belirtilen AYGITI açar ve kullanır\n" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" +"\n" +"AYARdan önceki seçimlik `-' anlamı ters çevirir. * karakteri POSIX olmayan\n" +"ayarları gösterir. Hangi ayarların kullanılabileceÄŸi sisteme göre deÄŸiÅŸir.\n" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" +"\n" +"Özel karakterler\n" +"* dsusp KRKT KRKT okuma sırasında dur (SIGSTOP) sinyali gönderecektir\n" +" eof KRKT KRKT dosya sonu karakteri olacak (girdiyi sonlandırır)\n" +" eol KRKT KRKT satır sonu karakteri olacak\n" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" +"* eol2 KRKT satır sonu için diÄŸer bir KRKT olacaktır\n" +" erase KRKT KRKT yazılan son karakteri silecektir\n" +" intr KRKT KRKT bir kesme (SIGINT) sinyali gönderecektir\n" +" kill KRKT KRKT bulunulan satırı silecektir\n" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" +"* lnext KRKT KRKT izleyen özel karakterin yorumlanmasını engelleyecektir\n" +" quit KRKT KRKT bir çıkış (SIGQUIT) sinyali gönderecektir\n" +"* rprnt KRKT KRKT bulunulan satırı yeniden yazacaktır\n" +" start KRKT KRKT durdurulduktan sonra çıktıyı yeniden baÅŸlatacaktır\n" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" +" stop KRKT KRKT çıktıyı durduracaktır\n" +" susp KRKT KRKT bir terminal dur (SIGSTOP) sinyali gönderecektir\n" +"* swtch KRKT KRKT baÅŸka bir kabuk katmanına geçecektir\n" +"* werase KRKT KRKT son sözcüğü silecektir\n" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" +"\n" +"Özel ayarlar:\n" +" N girdi/çıktı hızlarını N bit/s olarak ayarlar\n" +" * cols N çekirdeÄŸe terminal geniÅŸliÄŸini N karakter olarak bildirir\n" +"* columns N cols N ile aynı\n" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" +" ispeed N girdi hızını N olarak ayarlar\n" +"* line N terminal hat disiplinini N yapar\n" +" min N -icanon ile okumanın tamamlanması için gereken en az " +"karakter\n" +" sayısını N yapar\n" +" ospeed N çıktı hızını N olarak ayarlar\n" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" +"* rows N çekirdeÄŸe terminal satır sayısını N olarak bildirir\n" +"* size çekirdeÄŸe uygun satır ve sütun sayısını gösterir\n" +" speed terminal hızını gösterir\n" +" time N -icanon ile okuma zaman aşımını N/10 saniyeye ayarlar\n" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" +"\n" +"Denetim ayarları:\n" +" [-]clocal modem denetim sinyallerini geçersiz kılar\n" +" [-]cread girdi alımına izin verir\n" +"* [-]crtscts RTS/CTS uzlaÅŸmasını etkinleÅŸtirir\n" +" csN karakter bit sayısını N olarak ayarlar, [5..8 bit arasında]\n" + +#: src/stty.c:570 +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" +" [-]cstopb her karakter için iki durma biti kullanılır (`-' ile bir)\n" +" [-]hup son iÅŸlem tty'yi kapatırken kapatma (SIGHUP) sinyali " +"gönderilir\n" +" [-]hupcl [-]hup ile aynı\n" +" [-]parenb çıktı için eÅŸlik biti üretilir, girdi için eÅŸlik biti " +"beklenir\n" +" [-]parodd tek eÅŸlik biti kullanılır (`-' ile çift)\n" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" +"\n" +"Girdi ayarları:\n" +" [-]brkint kırma karakterleri kesme sinyali üretir\n" +" [-]icrnl satır başı karakterini alt satıra geçme\n" +" karakteri olarak yorumlar\n" +" [-]ignbrk kırma karakterlerini yoksayar\n" +" [-]igncr satır başı karakterlerini yoksayar\n" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" +" [-]ignpar eÅŸlik hataları olan karakterleri yoksayar\n" +"* [-]imaxbel girdi tamponu taÅŸtığında uyarı sesi üretir\n" +" [-]inlcr alt satıra geçme karakterini satır başı\n" +" karakteri olarak yorumlar\n" +" [-]inpck girdi eÅŸlik denetimini etkinleÅŸtirir\n" +" [-]istrip girdi karakterlerinin yüksek (8.) bitini temizler\n" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" +"* [-]iuclc büyük harfleri küçük harf olarak yorumlar\n" +"* [-]ixany sadece baÅŸla karakteri deÄŸil herhangi bir karakter\n" +" girdiyi baÅŸlatır\n" +" [-]ixoff baÅŸla/dur karakterlerinin gönderimini etkinleÅŸtirir\n" +" [-]ixon XON/XOFF akış denetimini etkinleÅŸtirir\n" +" [-]parmrk eÅŸlik hatalarını imler (255-0-karakter sıralamasıyla)\n" +" [-]tandem [-]ixoff ile aynı\n" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" +"\n" +"Çıktı ayarları:\n" +"* bsN geri silme tarzı gecikme, N [0..1] arasında\n" +"* crN satır başı tarzı gecikme, N [0..3] arasında\n" +"* ffN sayfa başı tarzı gecikme, N [0..1] arasında\n" +"* nlN alt satıra geçiÅŸ tarzı gecikme, N [0..1] arasında\n" + +#: src/stty.c:608 +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" +"* [-]ocrnl satır başını alt satıra geçiÅŸ olarak yorumlar\n" +"* [-]ofdel 0 karakteri yerine dolgu için silme karakterini kullanır\n" +"* [-]ofill gecikmeler için zamanlama yapmak yerine dolgu\n" +" karakterlerini kullanır\n" +"* [-]olcuc küçük harfleri büyük harf olarak yorumlar\n" +"* [-]onlcr alt satıra geçiÅŸi satır başı olarak yorumlar\n" +"* [-]onlret alt satıra geçiÅŸ karakteri satır başı yapar\n" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" +"* [-]onocr satır başı karakterini ilk karakter olarak basmaz\n" +" [-]opost iÅŸlem sonrası çıktı\n" +"* tabN yatay sekme tarzı gecikme, N [0..3] arasında\n" +"* tabs tab0 ile aynı\n" +"* -tabs tab3 ile aynı\n" +"* vtN düşey sekme tarzı gecikme, N [0..1] arasında\n" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" +"\n" +"Yerel ayarlar:\n" +" [-]crterase silme karakterlerini gerisilme-boÅŸluk-gerisilme olarak " +"yansılar\n" +"* crtkill satırları echoprt ve echoe ayarlarına uygun olarak siler\n" +"* -crtkill satırları echoctl ve echok ayarlarına uygun olarak siler\n" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" +"* [-]ctlecho denetim karakterlerini ÅŸapkalı gösterim (`^c') ile yansılar\n" +" [-]echo girdi karakterlerini yansılar\n" +"* [-]echoctl [-]ctlecho ile aynı\n" +" [-]echoe [-]crterase ile aynı\n" +" [-]echok karakteri sildikten sonra bir alt satıra geçiÅŸ yansılar\n" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" +"* [-]echoke [-]crtkill ile\n" +" [-]echonl diÄŸer karakterler yansılanmamış olsa bile\n" +" alt satıra geçiÅŸi yansılar\n" +"* [-]echoprt geriye doÄŸru silinmiÅŸ karakterleri `\\' ve '/'\n" +" arasında yansılar\n" +" [-]icanon karakter, satır, sözcük silmeleri ve satır yenileme özel\n" +" karakterlerini etkinleÅŸtirir\n" +" [-]iexten POSIX olmayan özel karakterleri etkinleÅŸtirir\n" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" +" [-]isig kesme, çıkış ve dondurma özel karakterlerini etkinleÅŸtirir\n" +" [-]noflsh kesme ve çıkış özel karakterlerinden sonra güncellemeyi\n" +" geçersiz kılar\n" +"* [-]prterase [-]echoprt ile aynı\n" +"* [-]tostop terminale yazmaya çalışan artalandaki iÅŸleri durdurur\n" +"* [-]xcase icanon ile, büyük harfleri `\\' ile önceleyerek gösterir\n" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" +"\n" +"BirleÅŸik ayarlar:\n" +"* [-]LCASE [-]lcase ile aynı\n" +" cbreak -icanon ile aynı\n" +" -cbreak icanon ile aynı\n" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" +" cooked brkint ignpar istrip icrnl ixon opost isig icanon eof ve " +"eol\n" +" karakterlerinin öntanımlı deÄŸerleri ile aynı\n" +" -cooked raw ile aynı\n" +" crt echoe echoctl echoke ile aynı\n" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" +" dec echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u ile aynı\n" +"* [-]decctlq [-]ixany ile aynı\n" +" ek karakter ve satır silme karakterlerinin öntanımlı\n" +" deÄŸerleriyle aynı\n" +" evenp parenb -parodd cs7 ile aynı\n" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" +" -evenp -parenb cs8 ile aynı\n" +"* [-]lcase xcase iuclc olcuc ile aynı\n" +" litout -parenb -istrip -opost cs8 ile aynı\n" +" -litout parenb istrip opost cs7 ile aynı\n" +" nl -icrnl -onlcr ile aynı\n" +" -nl icrnl -inlcr -igncr onlcr -ocrnl -onlret ile aynı\n" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" +" oddp parenb parodd cs7 ile aynı\n" +" -oddp -parenb cs8 ile aynı\n" +" [-]parity [-]evenp ile aynı\n" +" pass8 -parenb -istrip cs8 ile aynı\n" +" -pass8 parenb istrip cs7 ile aynı\n" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" +" raw -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0 ile aynı\n" +" -raw cooked ile aynı\n" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" +" sane cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, tüm özel\n" +" karakterlerin öntanımlı deÄŸerleriyle aynı.\n" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" +"\n" +"Standart girdiye baÄŸlı olan tty hattını yönetir. Argümansız\n" +"çalıştırıldığında iletiÅŸim hızını, hat disiplinini, stty sane ayarından\n" +"farklı ayarları gösterir. Ayarlarda KRKT yazıldığı gibi ya da ^c, 0x37, " +"0177\n" +"ya da 127 olarak gösterilmiÅŸ bir karakter olabilir. ^- veya undef deÄŸerleri\n" +"bu özel karakteri geçersiz kılar\n" + +#: src/stty.c:787 +msgid "only one device may be specified" +msgstr "sadee tek aygıt belirtilebilir" + +#: src/stty.c:882 +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "" +"ayrıntılı çıktı seçenekleri ile stty-okuyabilir tarzı çıktı\n" +"seçenekleri birlikte kullanılamaz" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "bir çıktı tarzı belirtildiÄŸinde kipler ayarlanamaz" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "%s: bloklamayan kip sıfırlanamadı" + +#: src/stty.c:957 src/stty.c:1064 +#, c-format +msgid "invalid argument `%s'" +msgstr "`%s' argümanı geçersiz" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, c-format +msgid "missing argument to `%s'" +msgstr "`%s'de argüman kayıp" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "%s: istenen iÅŸlemlerin tümü yapılamıyor" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "yeni_kip: kip\n" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "%s: bu aygıt için boyut bilgileri yok" + +#: src/stty.c:1944 +#, c-format +msgid "invalid integer argument `%s'" +msgstr "tamsayı argüman olarak `%s' geçersiz" + +#: src/su.c:289 +msgid "Password:" +msgstr "Parola:" + +#: src/su.c:292 +msgid "getpass: cannot open /dev/tty" +msgstr "getpass: dev/tty açılamıyor" + +#: src/su.c:350 +msgid "cannot set groups" +msgstr "gruplar atanamıyor" + +#: src/su.c:354 +msgid "cannot set group id" +msgstr "grup kimliÄŸi atanamıyor" + +#: src/su.c:356 +msgid "cannot set user id" +msgstr "kullanıcı kimliÄŸi atanamıyor" + +#: src/su.c:437 +#, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "Kullanımı: %s [SEÇENEK]... [-] [KULLANICI [ARG]...]\n" + +#: src/su.c:438 +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" +"Etkin kullanıcı ve grup kimliklerini KULLANICI olarak deÄŸiÅŸtirir.\n" +"\n" +" -, -l, --login kabuÄŸu bir giriÅŸ kabuÄŸu yapar\n" +" -c, --commmand=KOMUT -c ile kabukta tek bir KOMUT çalıştırır\n" +" -f, --fast kabuÄŸu -f ile çalıştırır (csh veya tcsh " +"için)\n" +" -m, --preserve-environment çevre deÄŸiÅŸkenlerini sıfırlamaz\n" +" -p -m ile aynı\n" +" -s, --shell=KABUK /etc/shells dosyasında varsa KABUÄžU " +"çalıştırır\n" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" +"\n" +"Sadece - ile -l uygulanır. KULLANICI verilmezse root varsayılır.\n" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "%s diye bir kullanıcı yok" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "parola yanlış" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "kısıtlı kabuk %s kullanılıyor" + +#: src/su.c:580 +#, c-format +msgid "warning: cannot change directory to %s" +msgstr "uyarı: %s dizinine geçilemiyor" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "Kayvan Aghaiepour ve David MacKenzie" + +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" +"Her DOSYA'nın saÄŸlama toplamını ve blok sayısını yazar.\n" +"\n" +" -r BSD toplama algoritmasını kullanır, blok geniÅŸliÄŸini 1K " +"alır\n" +" -s, --sysv System V toplama algoritmasını kullanır, blok geniÅŸliÄŸini\n" +" 512 bayt alır\n" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" +"DeÄŸiÅŸen blokları diske yazılmaya zorlar ve süper bloÄŸu günceller.\n" +"\n" + +#: src/sync.c:70 src/tty.c:112 +msgid "ignoring all arguments" +msgstr "argümanların tamamı yoksayılıyor" + +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr " --help bu yardımı gösterir ve çıkar\n" + +#: src/sys2.h:494 +msgid " --version output version information and exit\n" +msgstr " --version sürüm bilgisini gösterir ve çıkar\n" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "Jay Lepreau ve David MacKenzie" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"DOSYAları baÅŸtan sona yazar ( son satır ilk).\n" +"DOSYA belirtilmediÄŸinde veya - olduÄŸunda standart girdiden okur.\n" +"\n" + +#: src/tac.c:139 +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" +" -b, --before ayracı satırdan sonra deÄŸil, satırdan önce koyar\n" +" -r, --regex ayracı düzenli ifade olarak kabul eder\n" +" (regex = regular expression (düzenli ifade))\n" +" -s, --seperator=AYRAC satırları `\\n' yerine AYRAC ile ayır\n" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "standart girdi: okuma hatası" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "-s 'ten sonra AYRAC belirtilmeli" + +# +#: src/tail.c:49 +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "Paul Rubin, David MacKenzie, Ian Lance Taylor ve Jim Meyering" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Belirtilen her DOSYA'nın son %d satırını standart çıktıya yazar.\n" +"Dosya ismi belirtilmediÄŸinde veya - olduÄŸunda standart girdiden okur.\n" +"\n" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" +" --retry belirtilen dosya ulaşılamaz hale geldiÄŸinde\n" +" dosya tekrar okunabilir olana kadar bekler\n" +" -c, --bytes=SAYI son SAYI baytı gösterir\n" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" +" -f, --follow[={name|descriptor}]\n" +" dosyayı sürekli izler, yeni satırlar\n" +" eklendikçe onları da çıktıya yazar. --" +"follow=name\n" +" dosya ismini kullanarak izler,--" +"follow=descriptor\n" +" dosya açıldığında sistemin döndüğü dosya\n" +" descriptor'ını kullanarak izler.\n" +" -F --follow=name --retry 'ın aynısı \n" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" +" -n, --lines=SAYI son %d satır yerine son SAYI satırı yazar\n" +" --max-unchanged-stats=N\n" +" --follow=name seçeneÄŸi kullanıldığında N " +"denemeden\n" +" sonra DOSYA'da bir deÄŸisiklik gözlemlememiÅŸse\n" +" silinip silinmediÄŸini veya isminin deÄŸistiril-\n" +" mediÄŸinden emin olmak için DOSYA'yı tekrar açar\n" +" (bu seçenek kullanılmadığında %d defa bu iÅŸi " +"yapar)\n" + +# +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" +" --pid=PID -f ile kullanılır. Proses numarası PID olan " +"proses\n" +" öldükten sonra çıkar\n" +" -q, --quiet, --silent dosya isimlerini gösteren baÅŸlıklar yazmaz\n" +" -s, --sleep-interval=S -f ile kullanıldığı zaman dosyaya birÅŸey yazılıp " +"yazıl-\n" +" madığını S saniyede bir (öntanımlı 1.0) kontrol " +"eder \n" +" -v, --verbose dosya isimlerini gösteren baÅŸlıklar yazar\n" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" +"\n" +"SAYI'nin başına `+' koyarsanız, SAYI'ncı satır veya bayttan\n" +"itibaren dosyanın içeriÄŸini yazar ( son SAYI bayt veya satır yerine).\n" +"SAYI'dan sonra ÅŸu ekleri kullanabilirsiniz: b bayt anlamında, k\n" +"kilobayt anlamında, m megabayt anlamında.\n" +"\n" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" +"--follow (-f) seçeneÄŸinde [=name] belirtilmedikçe, dosya descriptor'ını\n" +"kullanarak dosyayı izler. Böylelikle dosyanın ismi deÄŸiÅŸse bile \n" +"dosyayı izlemeye devam eder. " + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" +"Bazı durumlarda belli bir dosya adını\n" +"izlemek istiyor olabilirsiniz, o zaman --follow=name seçeneÄŸini kullanın\n" +"(örneÄŸin `tail --follow=name deneme' dediÄŸinizde, deneme dosyası arada\n" +"silinse, sonra yerine baÅŸka bir deneme dosyası oluÅŸsa bütün bunlardan\n" +"sonra tail `deneme' dosyasının içinde olanları göstermeye devam eder).\n" + +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "%s kapatılıyor (fd=%d)" + +#: src/tail.c:391 +#, c-format +msgid "%s: cannot seek to offset %s" +msgstr "%s: %s görecesine ilerleme (seek) yapılamıyor" + +#: src/tail.c:395 +#, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "%s: görece %s'ye ilerlenemiyor (seek)" + +#: src/tail.c:400 +#, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "%s: dosyanın sonundan %s görecesine geri gidilemiyor (seek)" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "`%s' dosyası okunamaz hale geldi" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "`%s' ismi artık izlenemeyecek bir dosyaya ait" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "`%s' dosyası tekrar okunabilir hale geldi" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "`%s' ortaya çıktı; yeni dosyanın sonu takip ediliyor" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "`%s' tekrar okunabilir hale geldi; yeni dosyayı izlemeye devam" + +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "%s: dosya kısaldı" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "üzerinde çalışabilecek dosya kalmadı" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "%s: tail bu çeÅŸit dosyayı takip edemez" + +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "%c: eski kullanım ÅŸeklindeki seçenekte geçersiz ek" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"gereÄŸinden fazla argüman; eski kullanım ÅŸeklindeki seçenekle (%s) beraber\n" +"sadece bir dosya ismi verilebilir. Eski ÅŸekil yerine -n veya -c\n" +"seçeneklerini kullanın." + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"Uyarı: eski kullanım ÅŸeklindeki seçenekle (%s) beraber\n" +"sadece bir dosya ismi verilebilir. Eski ÅŸekil yerine -n veya -c\n" +"seçeneklerini kullanın." + +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "`%s' seçeneÄŸi eski: yerine `%s -%c %.*s' kullanın" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "%s bu sistemdeki maksimum dosya boyundan daha büyük" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "%s:--max-unchanged-stats seçeneÄŸiyle verilen argüman geçersiz" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "" +"%s: --max-consecutive-size-changes seçeneÄŸiyle verilen argüman geçersiz" + +#: src/tail.c:1534 +#, c-format +msgid "%s: invalid PID" +msgstr "%s: geçersiz PID" + +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "%s: geçersiz saniye sayısı" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "" +"uyarı: --retry seçeneÄŸi sadece --follow=name seçeneÄŸiyle kullanıldığında \n" +" bir anlam taşır" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "uyarı: --pid=PID sadece -f seçeneÄŸiyle kullanıldığında bir anlam taşır" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "uyarı: --pid=PID bu sistemde desteklenmiyor" + +#: src/tee.c:33 +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "Mike Parker, Richard M. Stallman ve David MacKenzie" + +#: src/tee.c:64 +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" +"Standart girdiyi verilen DOSYAlara ve ayrıca standart çıktıya kopyalar.\n" +"\n" +" -a, --append DOSYAların üzerine yazmaz sonuna ekler\n" +" -i, --ignore-interrupts kesme sinyallerini yoksayar\n" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "argüman gerekli\n" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "%s tamsayı ifade gerekli\n" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "')' gerekli\n" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "')' gerekirken, %s bulundu\n" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "%s: bir terimli iÅŸlemimi olabilir\n" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "%s: iki terimli iÅŸlemimi olabilir\n" + +#: src/test.c:424 +msgid "before -lt" +msgstr "-lt öncesinde" + +#: src/test.c:432 +msgid "after -lt" +msgstr "-lt sonrasında" + +#: src/test.c:446 +msgid "before -le" +msgstr "-le öncesinde" + +#: src/test.c:453 +msgid "after -le" +msgstr "-le sonrasında" + +#: src/test.c:469 +msgid "before -gt" +msgstr "-gt öncesinde" + +#: src/test.c:476 +msgid "after -gt" +msgstr "-gt sonrasında" + +#: src/test.c:490 +msgid "before -ge" +msgstr "-ge öncesinde" + +#: src/test.c:497 +msgid "after -ge" +msgstr "-ge sonrasında" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "-nt -l ile kullanılmaz\n" + +#: src/test.c:526 +msgid "before -ne" +msgstr "-ne öncesinde" + +#: src/test.c:533 +msgid "after -ne" +msgstr "-ne sonrasında" + +#: src/test.c:549 +msgid "before -eq" +msgstr "-eq öncesinde" + +#: src/test.c:556 +msgid "after -eq" +msgstr "-eq sonrasında" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "-ef -l ile kullanılmaz\n" + +#: src/test.c:586 +msgid "-ot does not accept -l\n" +msgstr "-ot -l ile kullanılmaz\n" + +#: src/test.c:593 +msgid "unknown binary operator" +msgstr "bilinmeyen iki terimli iÅŸlemimi" + +#: src/test.c:781 +msgid "after -t" +msgstr "-t sonrasında" + +#: src/test.c:979 +#, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"Kullanımı: %s İFADE\n" +" veya: [ İFADE ]\n" +" ya da: %s SEÇENEK\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" +"İFADEye göre üretilen durum kodu ile çıkar.\n" +"\n" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" +"\n" +"İFADEnin sonucunun doÄŸru ya da yanlış olmasına göre aÅŸağıdaki\n" +"çıkış durumlarından biri belirlenir:\n" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" +"\n" +" ( İFADE ) İFADE doÄŸrudur\n" +" ! İFADE İFADE yanlıştır\n" +" İFADE1 -a İFADE2 İFADE1 ve İFADE2 her ikisi de doÄŸrudur\n" +" İFADE1 -o İFADE2 ya İFADE1 ya da İFADE2 doÄŸrudur\n" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" +"\n" +" [-n] DİZGE DİZGEnin uzunluÄŸu sıfırdan farklıdır\n" +" -z DİZGE DİZGEnin uzunluÄŸu sıfırdır\n" +" DİZGE1 = DİZGE2 DİZGEler eÅŸittir\n" +" DİZGE1 != DİZGE2 DİZGEler farklıdır\n" + +#: src/test.c:1009 +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" +"\n" +" TAMSAYI1 -eq TAMSAYI2 TAMSAYI1 TAMSAYI2ye eÅŸittir\n" +" TAMSAYI1 -ge TAMSAYI2 TAMSAYI1 TAMSAYI2ye eÅŸit ya da büyüktür\n" +" TAMSAYI1 -gt TAMSAYI2 TAMSAYI1 TAMSAYI2den büyüktür\n" +" TAMSAYI1 -le TAMSAYI2 TAMSAYI1 TAMSAYI2ye eÅŸit ya da küçüktür\n" +" TAMSAYI1 -lt TAMSAYI2 TAMSAYI1 TAMSAYI2den küçüktür\n" +" TAMSAYI1 -ne TAMSAYI2 TAMSAYI1 TAMSAYI2den farklıdır\n" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" +"\n" +" DOSYA1 -ef DOSYA2 DOSYA1 ve DOSYA2 aynı aygıtta ve aynı uzunluktadır\n" +" DOSYA1 -nt DOSYA2 DOSYA1 DOSYA2den daha yenidir\n" +" DOSYA1 -ot DOSYA2 DOSYA1 DOSYA2den daha eskidir\n" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" +"\n" +" -b DOSYA DOSYA vardır ve blok özeldir\n" +" -c DOSYA DOSYA vardır ve karakter özeldir\n" +" -d DOSYA DOSYA vardır ve bir dizindir\n" +" -e DOSYA DOSYA vardır\n" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" +" -f DOSYA DOSYA vardır ve normal bir dosyadır\n" +" -g DOSYA DOSYA vardır ve grup-kimliÄŸi belirlidir\n" +" -G DOSYA DOSYA vardır ve etkin grup kimliÄŸine aittir\n" +" -k DOSYA DOSYA vardır ve kalıcı biti ayarlıdır\n" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" +" -L DOSYA DOSYA vardır ve bir sembolik baÄŸdır\n" +" -O DOSYA DOSYA vardır ve etkin kullanıcı kimliÄŸine aittir\n" +" -p DOSYA DOSYA vardır ve bir isimli veri yoludur\n" +" -r DOSYA DOSYA vardır ve okunabilirdir\n" +" -s DOSYA DOSYA vardır ve uzunluÄŸu sıfırdan büyüktür\n" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" +" -S DOSYA DOSYA vardır ve bir sokettir\n" +" -t [DB] dosya belirteci DB (öntanımlı:stdÇıktı) bir terminalde " +"açıktır\n" +" -u DOSYA DOSYA vardır ve kullanıcı-kimlik belirleme biti 1 dir\n" +" -w DOSYA DOSYA vardır ve yazılabilirdir\n" +" -x DOSYA DOSYA vardır ve çalıştırılabilirdir\n" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" +"\n" +"Kabukta öncelem (örn. tersbölü ile) gerektiren parantezlerden sakının.\n" +"TAMSAYI yerine DİZGE uzunluÄŸuna karşılık olarak -l DİZGE kullanılabilir.\n" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "DÜZELT: ksb ve mjb" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "`]' eksik\n" + +#: src/test.c:1125 +msgid "too many arguments\n" +msgstr "argüman sayısı çok fazla\n" + +# +#: src/touch.c:39 +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie ve Randy Smith" + +#: src/touch.c:164 src/touch.c:179 +#, c-format +msgid "creating %s" +msgstr "%s oluÅŸturuluyor" + +#: src/touch.c:222 +#, fuzzy, c-format +msgid "cannot touch %s" +msgstr "%s durumlanamadı" + +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "%s'in zamanları deÄŸiÅŸtiriliyor" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "" +"Her DOSYA'nın eriÅŸim ve deÄŸiÅŸim zamanlarını ÅŸimdiki zamana günceller.\n" +"\n" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" +" -a yalnız eriÅŸim zamanını günceller\n" +" -c, --no-create dosya oluÅŸturmaz\n" +" -d, --date=DİZGİ DİZGİyi tarar ve ÅŸimdiki zaman yerine kullanır\n" +" -f (yoksayılıyor)\n" +" -m yalnız deÄŸiÅŸim tarihini günceller\n" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" +" -r, --reference=DOSYA ÅŸimdiki zaman yerine bu DOSYAnın zaman damgalarını\n" +" kullanır\n" +" -t DAMGA ÅŸimdiki zaman yerine [[YY]YY]AAGGssdd[ss] deÄŸerini\n" +" kullanır\n" +" --time=SÖZCÜK SÖZCÜKle belirtilen zaman damgasını deÄŸiÅŸtirir:\n" +" access (eriÅŸim) atime (eriÅŸim) use (kullanım, -a " +"ile\n" +" aynı) modify (deÄŸiÅŸim) mtime (deÄŸiÅŸim, -m ile " +"aynı)\n" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" +"\n" +"Dikkat: -d ve -t seçenekleri farklı zaman/tarih biçemleri kabul ederler.\n" + +#: src/touch.c:311 src/touch.c:331 +#, c-format +msgid "invalid date format %s" +msgstr "geçersiz tarih biçemi %s" + +#: src/touch.c:355 +msgid "cannot specify times from more than one source" +msgstr "zaman birden fazla kaynaktan belirtilemez" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "" +"uyarı: `touch %s' artık kullanılmıyor; `touch -t %04d%02d%02d%02d%02d.%02d' " +"kullanılmalı" + +#: src/touch.c:399 +msgid "file arguments missing" +msgstr "dosya argümanları eksik" + +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "Kullanım: %s [SEÇENEK]... KÜME1 [KÜME2]\n" + +#: src/tr.c:331 +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" +"Standart girdiden okuduÄŸu karakterleri çevirerek, sıkıştırarak ve/veya\n" +"silerek standart çıktıya yazar\n" +"\n" +" -c, --complement KUME1'in tümleyicisi\n" +" -d, --delete KUME1'deki karakterleri siler, çeviri yapmaz\n" +" -s, --squeeze-repeats aynı karakterden oluÅŸmus sırayi siler yerine \n" +" o karakterden bir tane koyar\n" +" -t, --truncate-set1 ilk önce KUME1'i, KUME2'nin boyuna eÅŸit olacak \n" +" ÅŸekilde kısaltır\n" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" +"\n" +"KUMEler burada karakter dizgeleri anlamındadır.\n" +"anlamlı olan sıralamalar aÅŸağıdadır:\n" +" \\NNN NNN (1-3 tane sekizlik basamak ) sekizlik deÄŸeri \n" +" olan karakter\n" +" \\\\ ters kesik\n" +" \\a bip sesi\n" +" \\b geri git\n" +" \\f form ilerletme\n" +" \\n yeni satır\n" +" \\r satır başı\n" +" \\t enine tab\n" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" +" \\v boyuna tab\n" +" KAR1-KAR2 büyükten küçüğe KAR1 den KAR2 ye kadarki tüm \n" +" karakterler \n" +" [KAR*] KUME2'de kullanılır:KUME1'in boyuna gelene kadar \n" +" KAR'ın tekrarı\n" +" [KAR*TEKRAR] KAR'ın TEKRAR kere tekrarı, TEKRAR 0 ile baÅŸlıyorsa\n" +" sekizlik sayı olarak algılanır\n" +" [:alnum:] tüm harf ve rakamlar\n" +" [:alpha:] tüm harfler\n" +" [:blank:] tüm enine boÅŸluklar\n" +" [:cntrl:] tüm kontrol karakterleri\n" +" [:digit:] tüm rakamlar\n" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" +" [:graph:] boÅŸluk hariç, tüm yazılabilir karakterler\n" +" [:lower:] tüm küçük harfler\n" +" [:print:] boÅŸluk dahil, tüm yazılabilir karakterler\n" +" [:punct:] tüm noktalama isaretleri\n" +" [:space:] tüm enine veya boyuna boÅŸluklar\n" +" [:upper:] tüm büyük harfler\n" +" [:xdigit:] tüm onaltılık sistem rakamları\n" +" [=KAR=] KAR'a eÅŸ olan tüm karakterler\n" + +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" +"\n" +"Çeviri,-d seçeneÄŸi kullanılmadığında ve KUME1 ve KUME2 nin her ikisi de\n" +"verildiÄŸinde gerçekleÅŸir.-t sadece çeviri yaparken kullanılabilir.\n" +"KUME2 gerektiÄŸinde son karakteri tekrar edilerek KUME1 ile aynı uzunluÄŸa\n" +"getirilir." + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" +"SET2'deki gereÄŸinden fazla karakterler dikkate alınmaz. Çeviri yapılılırken\n" +"KUME2 de kullanılan karakter sınıflarından sadece [:lower:] ve [:upper:]\n" +"kesin olarak büyükten küçüğe açılırlar, bu ikisi beraberce sadece büyük\n" +"harf küçük harf deÄŸisimi yapılılrken kullanılabilir. -s sadece KUME1'i\n" +"kullanır." + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" +"-s sadece çeviri veya sıkıştırmayla beraber çalışıyorsa\n" +"KUME2 yi kullanır ve çeviri veya sıkıştırma bittikten sonra devreye girer.\n" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" +"uyarı: net olmayan \\%c%c%c sekizlik ters kesik gösteririmi \n" +"\t \\0%c%c,`%c' sırası olarak algılanıyor " + +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "dizge sonunda geçersiz terskesik gösterimi" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "geçersiz terskesik gösterimi `\\%c'" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "alan sınırları '%s-%s' ters sıralılar" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "'%s' de geçersiz [c*n] tekrar yapısı" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "`[:' ile `:]' arasında bir eÅŸitlik sınıfı belirtilmeli" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "`[=' ile `=]' arasında bir eÅŸitlik sınıfı belirtilmeli" + +#: src/tr.c:1025 +#, c-format +msgid "invalid character class `%s'" +msgstr "geçersiz karakter sınıfı `%s'" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "" +"%s: eÅŸitlik sınıfı (equivalance class)operandı tek karakterden oluÅŸmalıdır" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "[c*] tekrar yapısı KUME1'de bulunamaz" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "KUME2'de yalnızca bir [c*] tekrar yapısı olabilir" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "KUME2'de çeviri yaparken [=c=] ifadeleri yer alamaz" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "KUME1 kısaltılmıyorsa KUME2 boÅŸ olamaz" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" +"karakter sınıflarının tümleyicileri (küme tümleyen=set complement)\n" +"kullanıldığında KUME2 sadece bir karakter kullanan ifadeler içerebilir" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" +"çeviri yaparken, KUME2'de kullanılabilecek karakter sınıfları:\n" +" upper, lower" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "[c*] ifadesi KUME2'de sadece çeviri yaparken kullanılabilir" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "çevrim için iki KUME verilmelidir" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "" +"tekrar edilen karakterler bire indirgeme ve silme beraber yapılılrken\n" +" iki KUME verilmeli" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" +"tekrar edilen karakterler bire indirgenMEden silme yapılıyorsa\n" +"sadece bir KUME verilmeli" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "" +"tekrar eden karakterler bire indirgenirken en azından bir KUME verilmeli" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "ayarlanmamış veya uymayan [:upper:] ve/veya [:lower:] ifadesi" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" +"çeviri yaparken KUME1'de [:lower:] kullanmışsanız KUME2'de [:upper:]\n" +"KUME1'de [:upper:] kullanmışsanız KUME2'de [:lower:] kullanmanız lazım" + +#: src/true.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" +"Kullanımı: %s [argümanlar yoksayılır]\n" +" veya: %s SEÇENEK\n" +"BaÅŸarılı durum kodu ile çıkar.\n" +"\n" +"Bu seçenek isimleri kısaltılamaz.\n" +"\n" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"Kullanım: %s [SECENEK] [DOSYA] \n" +"DOSYA'daki kısmi sıralamayı (kısmi sıralama=partial ordering, \n" +"matematiksel bir terim) göz önüne alarak DOSYA'nın tam sıralı\n" +"(tam sıralı = totally ordered, matematiksel terim) halini çıktıya yazar.\n" +"(tsort = topological sort, topolojik sıralama)\n" +"\n" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "%s: girdide bir döngü (döngü=loop, Graph Teorideki anlamında) var" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "yalnız bir argüman verilebilir" + +#: src/tty.c:63 +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" +"Standart girdiye baÄŸlı terminalin dosya ismini gösterir.\n" +"\n" +" -s, --silent, --quiet hiçbir ÅŸey göstermez, sadece çıkış durumu ile " +"döner\n" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "bir tty deÄŸil" + +#: src/uname.c:111 +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" +"Sistem hakkında bazı bilgiler gösterir. SEÇENEKsiz -s ile aynıdır.\n" +"\n" +" -a, --all tüm bilgileri gösterir\n" +" -m, --machine makina türünü (donanımı) gösterir\n" +" -n, --nodename makinanın aÄŸ ismini gösterir\n" +" -r, --release iÅŸletim sisteminin dağıtım numarasını gösterir\n" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" +" -v, --kernel-version çekirdek sürümünü gösterir\n" +" -p, --processor makinanın iÅŸlemci türünü gösterir\n" +" -i, --hardware-platform makinanın donanım türünü gösterir\n" +" -o, --operating-system iÅŸletim sistemi türünü gösterir\n" + +#: src/uname.c:226 +msgid "cannot get system name" +msgstr "sistem ismi alınamadı" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"DOSYA'daki boÅŸlukları tab'a çevirir ve standard çıktıya yazar.\n" +"DOSYA belirtilmediÄŸinde veya - olduÄŸunda standard girdiden okur.\n" +"\n" + +#: src/unexpand.c:387 +#, fuzzy +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" +" -a, --all tüm boÅŸlukları dikkate alır\n" +" -t, --tabs=SAYI tab geniÅŸliÄŸi 8 deÄŸil SAYI olarak alır \n" +" -t, --tabs=LISTE virgüllerle ayrılmış tab pozisyonları listesini\n" +" kullanarak çeviri yapar\n" + +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "`-LISTE' seçeneÄŸi eski; yerine `--first-only -t LISTE' kullanın" + +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "Kullanım: %s [SEÇENEK]... [GİRDİ [ÇIKTI]]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" +"GIRDI'deki (veya standart girdi) arka arkaya gelen aynı satırlardan\n" +"sadece ilkini CIKTI'ya (veya standart çıktı) yazar\n" +"\n" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" +" -c, --count her satır başına tekrar sayısını yazar\n" +" -d, --repeated sadece aynısından iki tane olan satırları gösterir\n" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" +" -D --all-repeated[=delimit-method] sadece birden fazla olan satırları " +"yazar\n" +" delimit-method ÅŸu deÄŸerleri alabilir:\n" +" none: satırları ayırmaz \n" +" (delimit-method belirtilmediÄŸinde none \n" +" kullanılır)\n" +" prepend: her satır grubunun başına boÅŸluk koyar\n" +" separate: satır gruplarının arasına boÅŸluk koyar\n" +" -f, --skip-fields=N ilk N alanı karşılaÅŸtırmaz\n" +" -i, --ignore-case büyük/küçük harf farklılıklarını dikkate almaz\n" +" -s, --skip-chars=N ilk N karakteri karşılaÅŸtırmaz\n" +" -u, --unique sadece özgün satırları karşılaÅŸtır\n" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr "" +" -w, --check-chars=N her satırda N'den fazla karakter karşılaÅŸtırmaz\n" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" +"\n" +"Aralıksız devam eden boÅŸluklara alan denir\n" +"-s ve -f seçenekleri kullanıldığında alanlar karakterlerden önce atlanır.\n" + +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "%s'i okunurken hata" + +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "%s'e yazarken hata" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "`%s' operandı fazla " + +#: src/uniq.c:473 src/uniq.c:498 +msgid "invalid number of fields to skip" +msgstr "atlanacak alan sayısı geçersiz" + +#: src/uniq.c:507 +msgid "invalid number of bytes to skip" +msgstr "atlanacak bayt sayısı geçersiz" + +#: src/uniq.c:516 +msgid "invalid number of bytes to compare" +msgstr "karşılaÅŸtırılacak bayt sayısı geçersiz" + +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "`-%lu' seçeneÄŸi eski; yerine `-f %lu' kullanın" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "" +"hem aynı olan satırların yazılmasına izin vermek hem de aynı\n" +" olan satırların sayısını yazdırmak anlamsız" + +#: src/unlink.c:51 +#, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"Kullanım: %s DOSYA\n" +" veya: %s SEÇENEK\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" +"Belirtilen DOSYA'yı silmek için 'unlink' (baÄŸ çöz) iÅŸlevini çağırın.\n" +"\n" + +#: src/unlink.c:99 +#, c-format +msgid "cannot unlink %s" +msgstr "%s bağı çözülemedi" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "sistemin baÅŸlama zamanı alınamadı" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr "Åžu an %2d:%02d%s, " + +#: src/uptime.c:140 +msgid "am" +msgstr "öö" + +#: src/uptime.c:140 +msgid "pm" +msgstr "ös" + +#: src/uptime.c:142 +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d gün" +msgstr[1] "%d gün" + +#: src/uptime.c:144 +#, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "%d kullanıcı" +msgstr[1] "%d kullanıcı" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr " çalışıyor, yük ortalaması: %.2f" + +#: src/uptime.c:191 src/users.c:118 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "Kullanımı: %s [SEÇENEK]... [ DOSYA ]\n" + +#: src/uptime.c:192 +#, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"Åžimdiki zamanı, sistemin çalışır durumda olduÄŸu süreyi, sistemdeki " +"kullanıcı\n" +"sayısını, ve son 1, 5 ve 15 dakika içerisinde kuyruktaki ortalama iÅŸ\n" +"sayısını gösterir.\n" +"DOSYA belirtilmezse %s kullanılır. Dosya olarak %s kullanımı yaygındır.\n" +"\n" + +#: src/users.c:35 +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "Joseph Arceneaux ve David MacKenzie" + +#: src/users.c:119 +#, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" +"DOSYAya göre çalışmakta olan kullanıcıları gösterir.\n" +"DOSYA verilmezse %s kullanılır. DOSYA olarak %s kullanımı yaygındır.\n" +"\n" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "Paul Rubin ve David MacKenzie" + +#: src/wc.c:129 +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" +"EÄŸer birden fazla DOSYA ismi verilmiÅŸse hepsi için satır kelime ve bayt\n" +"sayılarını yazar. EÄŸer hiç DOSYA ismi verilmemiÅŸ veya DOSYA - ise standart\n" +"girdiden okur.\n" +" -c, --bytes bayt sayısını yazar\n" +" -m, --chars karakter sayısını yazar\n" +" -l, --lines satır sayısını (\\n sayısı) yazar\n" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" +" -L, --max-line-length en uzun satırın uzunluÄŸunu yazar\n" +" -w, --words kelime sayısını yazar\n" + +#: src/who.c:41 +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "Joseph Arceneaux, David MacKenzie ve Michael Stone" + +#: src/who.c:223 +msgid " old " +msgstr " eski " + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "kimlik=" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "terminal=" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "çıkış=" + +#: src/who.c:446 +msgid "clock change" +msgstr "saat deÄŸiÅŸikliÄŸi" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "açılış-seviyesi" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "son=" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" +"\n" +"kullanıcı sayısı: %u\n" + +#: src/who.c:498 +msgid "NAME" +msgstr "İSİM" + +#: src/who.c:498 +msgid "LINE" +msgstr "HAT" + +#: src/who.c:498 +msgid "TIME" +msgstr "SAAT" + +#: src/who.c:498 +msgid "IDLE" +msgstr "ATIL " + +#: src/who.c:498 +msgid "PID" +msgstr "PID" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "AÇIKLAMA" + +#: src/who.c:499 +msgid "EXIT" +msgstr "ÇIKIÅž" + +#: src/who.c:574 +#, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "Kullanımı: %s [SEÇENEK]... [ DOSYA | ARG1 ARG2 ]\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" +"\n" +" -a, --all -b -d --login -p -r -t -T -u ile aynı\n" +" -b, --boot son sistem açılış zamanı\n" +" -d, --dead ölü iÅŸlemleri yazdırır\n" +" -H, --heading sütun baÅŸlığı satırı yazdırır\n" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" +" -i, --idle atıl zamanı SAAT:DAKİKA, . veya eski olarak\n" +" ekler (kullanımdan kalkacak, -u kullanın)\n" +" --login sisteme giriÅŸ iÅŸlemlerini yazdırır\n" +" (SUS -l ile aynı)\n" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" +" -l, --lookup makina isimlerini DNS üzerinden IP ile eÅŸleÅŸtirmeye " +"çalışır\n" +" (-l kullanımdan kalkacak, --lookup kullanın)\n" +" -m stdGirdi'deki kullanıcı ve makina ismini gösterir\n" +" -p, --process init tarafından baÅŸlatılan aktif iÅŸlemleri listeler\n" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" +" -q, --count tüm çalışan kullanıcı isimlerini ve sayısını gösterir\n" +" -r, --runlevel ÅŸimdiki açılış seviyesini gösterir\n" +" -s, --short yalnız isim, satır ve zamanı gösterir (öntanımlı)\n" +" -t, --time son sistem saat deÄŸiÅŸikliÄŸini gösterir\n" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" +" -T, -w, --mesg kullanıcının ileti durumunu +, - veya ? olarak gösterir\n" +" -u, --users sistemde olan kullanıcıları listeler\n" +" --message -T ile aynı\n" +" --writable -T ile aynı\n" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" +"\n" +"DOSYA belirtilmezse %s kullanılır. DOSYA olarak %s kullanımı yaygındır.\n" +"ARG1 ARG2 verilmiÅŸse, -m varsayılır: `who am i' (ben kimim) ya da\n" +"`who mom likes' (annem kimi sever) gibi kullanımlar mümkündür.\n" + +#: src/who.c:711 +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "Uyarı: -i sonraki sürümlerde kaldırılacaktır; -u kullanın" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" +"Uyarı: '-l'nin anlamı sonraki sürümlerde deÄŸiÅŸerek POSIX uyumlu hale " +"gelecektir" + +#: src/whoami.c:53 +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" +"Geçerli olan etkin kullanıcı kimliÄŸine karşılık gelen ismi yazar.\n" +"`id -un' ile aynıdır.\n" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "%s: kullanıcı-kimlik %u için kullanıcı ismi bulunamadı\n" + +#: src/yes.c:49 +#, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"Kullanımı: %s [DİZGE]...\n" +" veya: %s SEÇENEK\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" +"BelirtilmiÅŸse DİZGE(ler)den, yoksa `y'den oluÅŸan satırları sürekli üretir.\n" + +#~ msgid "\\%c: invalid escape" +#~ msgstr "\\%c: öncelem geçersiz" + +#~ msgid "program error" +#~ msgstr "yazılım hatası" + +# +#~ msgid "stack overflow" +#~ msgstr "yığıt taÅŸması" + +#~ msgid " Type" +#~ msgstr " Tür" + +#, fuzzy +#~ msgid "cannot convert time" +#~ msgstr "tarih ayarlanamadı" + +#, fuzzy +#~ msgid "cannot format time" +#~ msgstr "tarih ayarlanamadı" + +#~ msgid "cannot change to `..' from directory %s" +#~ msgstr "'..''e %s dizininden çıkılamaz" + +#~ msgid "missing file arguments" +#~ msgstr "dosya argümanları eksik" + +#~ msgid "%s: is so large that it is not representable" +#~ msgstr "%s: bu sistem için bu sayı çok büyük" diff --git a/src/apps/bin/coreutils-5.0/po/zh_CN.gmo b/src/apps/bin/coreutils-5.0/po/zh_CN.gmo new file mode 100644 index 0000000000..17de42d616 Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/zh_CN.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/zh_CN.po b/src/apps/bin/coreutils-5.0/po/zh_CN.po new file mode 100644 index 0000000000..ea908a495a --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/zh_CN.po @@ -0,0 +1,7056 @@ +# simplified Chinese translation of fileutils. +# Copyright (C) 1998, 2002 Free Software Foundation, Inc. +# Yip Chi Lap , 1998. +# Abel Cheung , 2002. +# Anthony Fok , 2002. +# +msgid "" +msgstr "" +"Project-Id-Version: fileutils 4.1.9\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2002-07-19 23:58+0800\n" +"Last-Translator: Anthony Fok \n" +"Language-Team: Chinese (simplified) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "%2$s çš„å‚æ•° %1$s 无效" + +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "%2$s çš„å‚æ•° %1$s 䏿˜Žç¡®" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "æœ‰æ•ˆçš„å‚æ•°ä¸ºï¼š" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "写入时å‘生错误" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "未知的系统错误" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "一般空文件" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "一般文件" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "目录" + +#: lib/file-type.c:48 +msgid "block special file" +msgstr "区å—特殊文件" + +#: lib/file-type.c:51 +msgid "character special file" +msgstr "字符特殊文件" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "fifo" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "符å·é“¾æŽ¥" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "套接字" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "消æ¯é˜Ÿåˆ—" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "ä¿¡å·é‡" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "共享内存对象" + +#: lib/file-type.c:71 +msgid "weird file" +msgstr "夿€ªçš„æ–‡ä»¶" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s:选项‘%sâ€™ä¸æ˜Žç¡®\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s:选项‘--%s’ä¸å¯é…åˆå‚数使用\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s:选项‘%c%s’ä¸å¯é…åˆå‚数使用\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s:选项‘%s’需è¦å‚æ•°\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s:无法识别的选项‘--%s’\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s:无法识别的选项‘%c%s’\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s:ä¸åˆæ³•的选项 ― %c\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s:无效的选项 ― %c\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s:选项需è¦å‚æ•° ― %c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s:选项‘-W %sâ€™ä¸æ˜Žç¡®\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s:选项‘-W %s’ä¸å¯é…åˆå‚数使用\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "å—大å°" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "无法创建目录%s" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%s存在但并éžç›®å½•。" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "无法更改%s的所有者åŠ/或组" + +#: lib/makepath.c:338 +#, c-format +msgid "cannot chdir to directory %s" +msgstr "无法切æ¢åˆ°ç›®å½•%s" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "无法更改%sçš„æƒé™" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "内存用尽" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "‘" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "’" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[yY]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[nN]" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "iconv 功能无法使用" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "iconv 功能ä¸å­˜åœ¨" + +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "å­—ç¬¦å€¼è¶…å‡ºå¯æŽ¥å—的范围以外" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "无法将 U+%04X 转æ¢è‡³ç”¨æˆ·çš„字符集" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "无法将 U+%04X 转æ¢è‡³ç”¨æˆ·çš„字符集:%s" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "无效的用户" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "无效的组" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "无法å–å¾— UID 数值所表示的用户的主组" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "ä¸å¯åŒæ—¶çœç•¥ç”¨æˆ·å’Œæ‰€å±žç»„" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "ç”± %s 编写。\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +"这是自由软件;请å‚考原始ç çš„版æƒå£°æ˜Žã€‚æœ¬è½¯ä½“ä¸æä¾›ä»»ä½•ä¿è¯ï¼Œç”šè‡³ä¸ä¼šåŒ…括\n" +"å¯å”®æ€§æˆ–适用於任何特定目的的ä¿è¯ã€‚\n" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "字串比较出现错误" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "请设定 LC_ALL='C' é¿å…问题出现。" + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "è¦æ¯”较的字串为 %s å’Œ %s。" + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "请å°è¯•执行‘%s --help’æ¥èŽ·å–æ›´å¤šä¿¡æ¯ã€‚\n" + +#: src/basename.c:54 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"用法:%s 文件\n" +" 或:%s 选项\n" + +#: src/basename.c:59 +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, fuzzy, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"è¯·å‘ æŠ¥å‘Šé”™è¯¯ã€‚" + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "傿•°å¤ªå°‘" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "傿•°å¤ªå¤š" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "" + +#: src/cat.c:92 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "用法:%s [选项] 文件...\n" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" + +#: src/cat.c:314 +#, fuzzy, c-format +msgid "cannot do ioctl on `%s'" +msgstr "无法打开目录%s" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "标准输出" + +#: src/cat.c:800 +#, fuzzy, c-format +msgid "%s: input file is output file" +msgstr "%sï¼šæ–‡ä»¶å¤§å°æ— æ•ˆ" + +#: src/cat.c:858 +#, fuzzy +msgid "closing standard input" +msgstr "标准输入" + +#: src/cat.c:861 +#, fuzzy +msgid "closing standard output" +msgstr "标准输出" + +#: src/chgrp.c:93 +msgid "cannot change to null group" +msgstr "æ— æ³•æ”¹å˜æ‰€å±žç»„至没有å称的组" + +#: src/chgrp.c:102 +#, c-format +msgid "invalid group name %s" +msgstr "无效的组å称‘%s’" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "组代å·" + +#: src/chgrp.c:109 +#, c-format +msgid "invalid group number %s" +msgstr "æ— æ•ˆçš„ç»„ä»£å· %s" + +#: src/chgrp.c:126 +#, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"用法:%s [选项]... 组 文件...\n" +" 或:%s [选项]... --reference=å‚考文件 文件...\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"å°†æ¯ä¸ª<文件>的所属组设定为<组>。\n" +"\n" +" -c, --changes åƒ --verbose,但åªåœ¨æœ‰æ›´æ”¹æ—¶æ‰æ˜¾ç¤ºç»“æžœ\n" +" --dereference 会影å“符å·é“¾æŽ¥æ‰€æŒ‡ç¤ºçš„对象,而éžç¬¦å·é“¾æŽ¥æœ¬èº«\n" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" +" -h, --no-dereference 会影å“符å·é“¾æŽ¥æœ¬èº«ï¼Œè€Œéžç¬¦å·é“¾æŽ¥æ‰€æŒ‡ç¤ºçš„目的地\n" +" (å½“ç³»ç»Ÿæ”¯æŒæ›´æ”¹ç¬¦å·é“¾æŽ¥çš„æ‰€æœ‰è€…ï¼Œæ­¤é€‰é¡¹æ‰æœ‰æ•ˆ)\n" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet 去除大部份的错误信æ¯\n" +" --reference=å‚考文件 使用<å‚考文件>çš„æ‰€å±žç»„ï¼Œè€ŒéžæŒ‡å®šçš„<组>\n" +" -R, --recursive é€’å½’å¤„ç†æ‰€æœ‰çš„æ–‡ä»¶åŠå­ç›®å½•\n" +" -v, --verbose 处ç†ä»»ä½•文件都会显示信æ¯\n" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, c-format +msgid "failed to get attributes of %s" +msgstr "无法å–å¾— %s 的属性" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "正在检查 %s 的最新属性" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "%s çš„æƒé™æ¨¡å¼å·²æ›´æ”¹ä¸º %04lo (%s)\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "无法将 %s çš„æƒé™æ¨¡å¼æ›´æ”¹ä¸º %04lo (%s)\n" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "%s çš„æƒé™æ¨¡å¼ä¿ç•™ä¸º %04lo (%s)\n" + +#: src/chmod.c:179 +#, c-format +msgid "changing permissions of %s" +msgstr "正在更改 %s çš„æƒé™" + +#: src/chmod.c:242 +#, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"用法:%s [选项]... 模å¼[,模å¼]... 文件...\n" +" 或:%s [选项]... å…«è¿›åˆ¶æ¨¡å¼ æ–‡ä»¶...\n" +" 或:%s [选项]... --reference=å‚考文件 文件...\n" + +#: src/chmod.c:248 +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"更改æ¯ä¸ª<文件>çš„æƒé™<模å¼>。\n" +"\n" +" -c, --changes 类似 --verbose,但åªåœ¨æœ‰æ›´æ”¹æ—¶æ‰æ˜¾ç¤ºç»“æžœ\n" +" -f, --silent, --quiet 去除大部份的错误信æ¯\n" +" -v, --verbose 处ç†ä»»ä½•文件都会显示信æ¯\n" +" --reference=å‚考文件 使用<å‚考文件>的模å¼ï¼Œè€Œéžè‡ªè¡ŒæŒ‡å®šæƒé™æ¨¡å¼\n" +" -R, --recursive ä»¥é€’å½’æ–¹å¼æ›´æ”¹æ‰€æœ‰çš„æ–‡ä»¶åŠå­ç›®å½•\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" +"\n" +"<模å¼>由三部份组æˆï¼šä¸€ä¸ªæˆ–以上的 ugoa å­—æ¯ï¼Œä¸€ä¸ªæˆ–以上的 +-= 符å·ï¼Œ\n" +"和一个或以上的 rwxXstugo å­—æ¯ã€‚\n" + +#: src/chmod.c:320 +#, c-format +msgid "invalid character %s in mode string %s" +msgstr "æƒé™æ¨¡å¼å­—串 %2$s 中出现无效的字符 %1$s" + +#: src/chmod.c:361 +#, c-format +msgid "invalid mode string: %s" +msgstr "æƒé™æ¨¡å¼å­—串无效:%s " + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "符å·é“¾æŽ¥ %s 和该链接所指示的对象都没有更改\n" + +#: src/chown-core.c:143 +#, c-format +msgid "changed ownership of %s to %s\n" +msgstr "%s 的所有者已更改为 %s\n" + +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "%s 的所属组已更改为 %s\n" + +#: src/chown-core.c:148 +#, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "无法更改 %s 的所有者为 %s\n" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "无法更改 %s 的所属组为 %s\n" + +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "%s 的所有者已ä¿ç•™ä¸º %s\n" + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "%s 的所属组已ä¿ç•™ä¸º %s\n" + +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "正在更改 %s 的所有者" + +#: src/chown-core.c:327 +#, c-format +msgid "changing group of %s" +msgstr "正在更改 %s 的所属组" + +#: src/chown-core.c:345 +#, c-format +msgid "unable to restore permissions of %s" +msgstr "æ— æ³•å›žå¤ %s çš„æƒé™" + +#: src/chown.c:99 +#, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"用法:%s [选项]... 所有者[:[组]] 文件...\n" +" 或:%s [选项]... :组 文件...\n" +" 或:%s [选项]... --reference=å‚考文件 文件...\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"更改æ¯ä¸ª <文件> çš„ <所有者> åŠ/或 <所属组>。\n" +"\n" +" -c, --changes åƒ --verbose,但åªåœ¨æœ‰æ›´æ”¹æ—¶æ‰æ˜¾ç¤ºç»“æžœ\n" +" --dereference å—å½±å“的是符å·é“¾æŽ¥æ‰€æŒ‡ç¤ºçš„对象,而éžç¬¦å·é“¾æŽ¥æœ¬èº«\n" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" +" --from=ç›®å‰æ‰€æœ‰è€…:ç›®å‰ç»„\n" +" åªå½“æ¯ä¸ªæ–‡ä»¶çš„æ‰€æœ‰è€…和组符åˆé€‰é¡¹æ‰€æŒ‡å®šçš„,\n" +" æ‰ä¼šæ›´æ”¹æ‰€æœ‰è€…和组。其中一个å¯ä»¥çœç•¥ï¼Œè¿™æ—¶\n" +" å·²çœç•¥çš„属性就ä¸éœ€è¦ç¬¦åˆåŽŸæœ‰çš„å±žæ€§ã€‚\n" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet 去除大部份的错误信æ¯\n" +" --reference=å‚考文件 使用<å‚考文件>çš„æ‰€å±žç»„ï¼Œè€ŒéžæŒ‡å®šçš„<组>\n" +" -R, --recursive é€’å½’å¤„ç†æ‰€æœ‰çš„æ–‡ä»¶åŠå­ç›®å½•\n" +" -v, --verbose 处ç†ä»»ä½•文件都会显示信æ¯\n" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" +"\n" +"如果没有指定<所有者>,则ä¸ä¼šæ›´æ”¹ã€‚<组>若没有指定也ä¸ä¼šæ›´æ”¹ï¼Œä½†å½“加上\n" +"‘:’时<组>会更改为指定所有者的主è¦ç»„。<所有者>å’Œ<组>å¯ä»¥æ˜¯æ•°å­—\n" +"或å称。\n" + +#: src/chroot.c:45 +#, fuzzy, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"用法:%s 文件\n" +" 或:%s 选项\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" + +#: src/chroot.c:84 +#, fuzzy, c-format +msgid "cannot change root directory to %s" +msgstr "无法进入目录 %s" + +#: src/chroot.c:87 +#, fuzzy +msgid "cannot chdir to root directory" +msgstr "无法切æ¢åˆ°ç›®å½•%s" + +#: src/cksum.c:234 +#, fuzzy, c-format +msgid "%s: file too long" +msgstr "%s:文件过大" + +#: src/cksum.c:282 +#, fuzzy, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"用法:%s 文件\n" +" 或:%s 选项\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "Richard Stallman å’Œ David MacKenzie" + +#: src/comm.c:73 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "用法:%s [选项]... [文件]\n" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" + +#: src/copy.c:162 src/du.c:332 +#, c-format +msgid "cannot access %s" +msgstr "无法访问%s" + +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "无法打开 %s æ¥è¯»å–æ•°æ®" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, c-format +msgid "cannot fstat %s" +msgstr "无法 fstat%s" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "略过文件%s,因为准备å¤åˆ¶æ—¶å®ƒå·²è¢«å…¶ä»–文件å–代" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, c-format +msgid "cannot remove %s" +msgstr "无法删除%s" + +#: src/copy.c:277 +#, c-format +msgid "cannot create regular file %s" +msgstr "无法创建一般文件%s" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, c-format +msgid "reading %s" +msgstr "正在读入%s" + +#: src/copy.c:362 +#, c-format +msgid "cannot lseek %s" +msgstr "无法 lseek%s" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, c-format +msgid "writing %s" +msgstr "正在写入%s" + +#: src/copy.c:409 src/copy.c:415 +#, c-format +msgid "closing %s" +msgstr "正在关闭%s" + +#: src/copy.c:610 +#, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s:是å¦è¦†ç›–%s,而ä¸ç†ä¼šæƒé™æ¨¡å¼ %04lo? " + +#: src/copy.c:616 +#, c-format +msgid "%s: overwrite %s? " +msgstr "%s:是å¦è¦†ç›–%s? " + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, c-format +msgid "cannot stat %s" +msgstr "stat%s失败" + +#: src/copy.c:820 +#, c-format +msgid "omitting directory %s" +msgstr "略过目录%s" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "è­¦å‘Šï¼šæŒ‡å®šæ¥æºæ–‡ä»¶%s多於一次" + +#: src/copy.c:866 src/ln.c:237 +#, c-format +msgid "%s and %s are the same file" +msgstr "%såŠ%s为åŒä¸€æ–‡ä»¶" + +#: src/copy.c:876 +#, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "无法以目录%2$sæ¥è¦†ç›–éžç›®å½•%1$s" + +#: src/copy.c:893 +#, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "ä¸ä¼šä»¥%2$s覆盖刚创建的%1$s" + +#: src/copy.c:904 +#, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "无法以éžç›®å½•æ¥è¦†ç›–目录%s" + +#: src/copy.c:965 +#, c-format +msgid "cannot overwrite directory %s" +msgstr "无法覆盖目录%s" + +#: src/copy.c:974 +#, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "无法将目录移动至éžç›®å½•:%s→%s" + +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "å°†%så¤‡ä»½ä¼šç ´åæ¥æºæ–‡ä»¶ï¼Œæ•…ä¸ç§»åЍ%s。" + +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "å°†%så¤‡ä»½ä¼šç ´åæ¥æºæ–‡ä»¶ï¼Œæ•…ä¸å¤åˆ¶%s。" + +#: src/copy.c:1013 src/ln.c:273 +#, c-format +msgid "cannot backup %s" +msgstr "无法备份%s" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr " (备份:%s)" + +#: src/copy.c:1099 +#, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "无法将目录%så¤åˆ¶è‡³åŽŸæ¥ä½ç½®%s" + +#: src/copy.c:1106 +#, c-format +msgid "will not create hard link %s to directory %s" +msgstr "ä¸ä¼šåˆ›å»ºè¿žè‡³ç›®å½•%2$s的硬链接%1$s" + +#: src/copy.c:1132 +#, c-format +msgid "cannot create hard link %s to %s" +msgstr "无法创建连至%2$s的硬链接%1$s" + +#: src/copy.c:1186 +#, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "无法将目录%s移动至本身的å­ç›®å½•%s下" + +#: src/copy.c:1229 +#, c-format +msgid "cannot move %s to %s" +msgstr "无法移动%s至%s" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "无法进行跨设备的移动 (%s至%s);无法删除目标文件或目录" + +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "无法å¤åˆ¶å¾ªçŽ¯çš„ç¬¦å·é“¾æŽ¥%s" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "%s:åªèƒ½æ–¼ç›®å‰çš„目录中创建相对符å·é“¾æŽ¥" + +#: src/copy.c:1353 +#, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "无法创建连至%2$s的符å·é“¾æŽ¥%1$s" + +#: src/copy.c:1364 +#, c-format +msgid "cannot create link %s" +msgstr "无法创建链接%s" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, c-format +msgid "cannot create fifo %s" +msgstr "无法创建 fifo 文件%s" + +#: src/copy.c:1403 +#, c-format +msgid "cannot create special file %s" +msgstr "无法创建特殊文件%s" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, c-format +msgid "cannot read symbolic link %s" +msgstr "无法读å–符å·é“¾æŽ¥%s" + +#: src/copy.c:1440 +#, c-format +msgid "cannot create symbolic link %s" +msgstr "无法创建符å·é“¾æŽ¥%s" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, c-format +msgid "failed to preserve ownership for %s" +msgstr "无法ä¿ç•™%s的所有者" + +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "%s的文件类型ä¸è¯¦" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "ä¿ç•™%s的时间" + +#: src/copy.c:1531 +#, c-format +msgid "failed to preserve authorship for %s" +msgstr "无法ä¿ç•™%s的著作者" + +#: src/copy.c:1549 +#, c-format +msgid "setting permissions for %s" +msgstr "设定%sçš„æƒé™" + +#: src/copy.c:1571 src/ln.c:326 +#, c-format +msgid "cannot un-backup %s" +msgstr "无法将 %s 的备份还原" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s → %s (还原备份)\n" + +#: src/cp.c:53 +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "Torbjorn Granlundã€David MacKenzie åŠ Jim Meyering" + +#: src/cp.c:164 src/mv.c:311 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"用法:%s [选项]... æ¥æº 目的地\n" +" 或:%s [选项]... æ¥æº... 目录\n" +" 或:%s [选项]... --target-directory=目录 æ¥æº...\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"å°†<æ¥æº>文件å¤åˆ¶è‡³<目的地>,或将多个<文件>å¤åˆ¶è‡³<目录>。\n" +"\n" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "é•¿é€‰é¡¹å¿…é¡»ç”¨çš„å‚æ•°åœ¨ä½¿ç”¨çŸ­é€‰é¡¹æ—¶ä¹Ÿæ˜¯å¿…须的。\n" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" +" -a, --archive 等於 -dpR\n" +" --backup[=CONTROL] 为æ¯ä¸ªå·²å­˜åœ¨çš„目的地文件创建备份文件\n" +" -b 类似 --backupï¼Œä½†ä¸æŽ¥å—任何傿•°\n" +" --copy-contents å½“ä½¿ç”¨é€’å½’æ¨¡å¼æ—¶å¤åˆ¶ç‰¹æ®Šæ–‡ä»¶çš„内容\n" +" -d 等於 --no-dereference --preserve=link\n" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" +" --no-dereference ä¸ä¼šæ‰¾å‡ºç¬¦å·é“¾æŽ¥æŒ‡ç¤ºçš„真正目的地\n" +" -f, --force 如果无法打开已存在的文件,会删除该文件并å†\n" +" å°è¯•打开\n" +" -i, --interactive 覆盖文件å‰éœ€è¦ç¡®è®¤\n" +" -H 使用命令列中的符å·é“¾æŽ¥æŒ‡ç¤ºçš„真正目的地\n" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" +" -l, --link 链接而éžå¤åˆ¶æ–‡ä»¶\n" +" -L, --dereference 一定先找出符å·é“¾æŽ¥æŒ‡ç¤ºçš„真正目的地\n" +" -p 等於 --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] è‹¥å¯èƒ½ï¼Œä¿ç•™æŒ‡å®šçš„æ–‡ä»¶å±žæ€§\n" +" (默认值为:mode,ownership,timestamps)\n" +" é¢å¤–的属性有:linksã€all\n" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" +" --sno-preserve=ATTR_LIST ä¸ä¿ç•™æŒ‡å®šçš„æ–‡ä»¶å±žæ€§\n" +" --parents å¤åˆ¶å‰å…ˆåœ¨<目录>åˆ›å»ºæ¥æºæ–‡ä»¶è·¯å¾„中的所有目录\n" +" -P 等於‘--no-dereference’\n" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" +" -R, -r, --recursive å¤åˆ¶ç›®å½•åŠç›®å½•内的所有项目\n" +" --remove-destination å°è¯•打开目的地文件å‰å…ˆåˆ é™¤å·²å­˜åœ¨çš„目的地\n" +" 文件 (与 --force 选项作对比)\n" + +#: src/cp.c:209 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +" --reply={yes,no,query} 指定如何处ç†å·²å­˜åœ¨çš„目的地文件\n" +" --sparse=WHEN 控制创建 sparse 文件的方å¼\n" +" --strip-trailing-slashes åˆ é™¤å‚æ•°ä¸­æ‰€æœ‰<æ¥æº>文件/目录末端的斜æ \n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" +" -s, --symbolic-link åªåˆ›å»ºç¬¦å·é“¾æŽ¥è€Œä¸æ˜¯å¤åˆ¶æ–‡ä»¶\n" +" -S, --suffix=åŽç¼€ 自行指定备份文件的<åŽç¼€>\n" +" --target-directory=目录 å°†æ‰€æœ‰å‚æ•°æŒ‡å®šçš„<æ¥æº>文件/目录å¤åˆ¶è‡³<目录>\n" + +#: src/cp.c:221 +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +" -u, --update åªåœ¨<æ¥æº>文件比目的地文件新,或目的地文件\n" +" ä¸å­˜åœ¨æ—¶æ‰è¿›è¡Œå¤åˆ¶\n" +" -v, --verbose 详细显示进行的步骤\n" +" -x, --one-file-system ä¸ä¼šè·¨è¶Šæ–‡ä»¶ç³»ç»Ÿè¿›è¡Œæ“作\n" + +#: src/cp.c:230 +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +"\n" +"默认使用模å¼ä¸­ï¼Œ<æ¥æº>æ–‡ä»¶æ˜¯å¦ sparse 文件会由一ç§ç²—略的方å¼å†³å®šï¼Œè€Œä¸”相应\n" +"çš„<目的地>文件也会是 sparse 文件。此方å¼ç­‰æ–¼ä½¿ç”¨ --sparse=auto 选项。指定\n" +"--sparse=always 则åªè¦<æ¥æº>æ–‡ä»¶å«æœ‰è¶³å¤Ÿé•¿çš„ 0 字节都会产生 sparse çš„\n" +"<目的地>文件。\n" +"使用 --sparse=never ä¼šç¦æ­¢äº§ç”Ÿ sparse 文件。\n" +"\n" + +#: src/cp.c:239 +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"备份文件的åŽç¼€ä¸ºâ€˜~’,除éžä»¥ --suffix 选项或是 SIMPLE_BACKUP_SUFFIX\n" +"环境å˜é‡æŒ‡å®šã€‚版本控制的方å¼å¯é€è¿‡ --backup 选项或 VERSION_CONTROL 环境\n" +"å˜é‡æ¥é€‰æ‹©ã€‚以下是å¯ç”¨çš„å˜é‡å€¼ï¼š\n" +"\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +" none, off ä¸ä¼šè¿›è¡Œå¤‡ä»½ (å³ä½¿ä½¿ç”¨äº† --backup 选项)\n" +" numbered, t 备份文件会加上数字\n" +" existing, nil 若有数字的备份文件已ç»å­˜åœ¨åˆ™ä½¿ç”¨æ•°å­—,å¦åˆ™ä½¿ç”¨æ™®é€šæ–¹å¼å¤‡" +"份\n" +" simple, never 永远使用普通方å¼å¤‡ä»½\n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +"æœ‰ä¸€ä¸ªç‰¹åˆ«æƒ…å†µï¼šå¦‚æžœåŒæ—¶æŒ‡å®š --force å’Œ --backup 选项,而且<æ¥æº>å’Œ<目的地>\n" +"是åŒä¸€ä¸ªå·²å­˜åœ¨çš„一般文件的è¯ï¼Œcp 会将<æ¥æº>文件备份。\n" + +#: src/cp.c:325 +#, c-format +msgid "failed to preserve times for %s" +msgstr "无法ä¿ç•™%s的时间" + +#: src/cp.c:349 +#, c-format +msgid "failed to preserve permissions for %s" +msgstr "无法ä¿ç•™%sçš„æƒé™" + +#: src/cp.c:434 +#, c-format +msgid "cannot make directory %s" +msgstr "无法创建目录%s" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +msgid "missing file argument" +msgstr "ç¼ºå°‘äº†æ–‡ä»¶å‚æ•°" + +#: src/cp.c:498 +msgid "missing destination file" +msgstr "缺少了目的地文件" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "正在访问%s" + +#: src/cp.c:546 +#, c-format +msgid "%s: specified target is not a directory" +msgstr "%sï¼šæŒ‡å®šçš„ç›®æ ‡ä¸æ˜¯ç›®å½•" + +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "å¤åˆ¶å¤šä¸ªæ–‡ä»¶ï¼Œä½†æœ€åŽçš„傿•°%så¹¶éžç›®å½•。" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "当ä¿ç•™è·¯å¾„时,目的地必须是目录" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"警告:--version-control (-V) 选项已ç»è¿‡æ—¶ï¼›å°†æ¥çš„ç‰ˆæœ¬éšæ—¶å¯èƒ½ä¸å†æ”¯æŒ\n" +"此选项。请使用 --backup=%s。" + +#: src/cp.c:972 src/ln.c:464 +msgid "symbolic links are not supported on this system" +msgstr "æ­¤ç³»ç»Ÿå¹¶ä¸æ”¯æŒç¬¦å·é“¾æŽ¥" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "æ— æ³•åŒæ—¶åˆ›å»ºå®žé™…åŠç¬¦å·é“¾æŽ¥" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "备份方å¼" + +#: src/csplit.c:41 +#, fuzzy +msgid "Stuart Kemp and David MacKenzie" +msgstr "Mike Parker å’Œ David MacKenzie" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +#, fuzzy +msgid "read error" +msgstr "写入时å‘生错误" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "" + +#: src/csplit.c:705 src/csplit.c:716 +#, fuzzy, c-format +msgid "%s: line number out of range" +msgstr "%s:覆盖次数无效" + +#: src/csplit.c:743 +#, fuzzy, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s:覆盖次数无效" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr "" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "" + +#: src/csplit.c:992 +#, fuzzy, c-format +msgid "write error for `%s'" +msgstr "写入时å‘生错误" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "" + +#: src/csplit.c:1141 +#, fuzzy, c-format +msgid "%s: invalid regular expression: %s" +msgstr "è½¬æ¢æ— æ•ˆï¼š%s" + +#: src/csplit.c:1174 +#, fuzzy, c-format +msgid "%s: invalid pattern" +msgstr "%s:文件类型无效" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "" + +#: src/csplit.c:1320 +#, fuzzy, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "è½¬æ¢æ— æ•ˆï¼š%s" + +#: src/csplit.c:1323 +#, fuzzy, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "è½¬æ¢æ— æ•ˆï¼š%s" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "" + +#: src/csplit.c:1441 +#, fuzzy, c-format +msgid "%s: invalid number" +msgstr "无效的å·ç  %s" + +#: src/csplit.c:1496 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "用法:%s [选项]... 目录...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" + +#: src/cut.c:39 +#, fuzzy +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "Mike Parkerã€David MacKenzie å’Œ Jim Meyering" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "用法:%s [选项]... [文件]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" + +#: src/cut.c:190 +#, fuzzy +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" +" -w, --width=COLS 自行指定è¤å¹•宽度而ä¸ä½¿ç”¨ç›®å‰çš„æ•°å€¼\n" +" -x é€è¡Œåˆ—å‡ºé¡¹ç›®è€Œä¸æ˜¯é€æ åˆ—出\n" +" -X æ ¹æ®æ‰©å±•åæŽ’åº\n" +" -1 æ¯è¡Œåªåˆ—出一个文件\n" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +#, fuzzy +msgid "invalid byte or field list" +msgstr "æ—¥æœŸæ ¼å¼ %s 无效" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "" + +#: src/cut.c:670 +#, fuzzy +msgid "missing list of positions" +msgstr "缺少了目的地文件" + +#: src/cut.c:679 +#, fuzzy +msgid "missing list of fields" +msgstr "缺少了目的地文件" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "" + +#: src/cut.c:720 +msgid "an input delimiter may be specified only when operating on fields" +msgstr "" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "" + +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "标准输入" + +#: src/date.c:268 src/date.c:460 +#, fuzzy, c-format +msgid "invalid date `%s'" +msgstr "无效的æƒé™æ¨¡å¼%s" + +#: src/date.c:364 +#, fuzzy +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "" +"显示 dircolors 内部数æ®åº“的选项和选择 shell 语法的选项\n" +"是互相抵触的" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "" + +#: src/date.c:377 +#, fuzzy, c-format +msgid "too many non-option arguments: %s%s" +msgstr "傿•°å¤ªå¤š" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" + +#: src/date.c:397 +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "" + +#: src/date.c:433 +msgid "undefined" +msgstr "" + +#: src/date.c:435 +#, fuzzy +msgid "cannot get time of day" +msgstr "无法设定 %s 的时间标记" + +#: src/date.c:468 +#, fuzzy +msgid "cannot set date" +msgstr "stat%s失败" + +#: src/dd.c:43 +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "Paul Rubinã€David MacKenzie åŠ Stuart Kemp" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "用法:%s [选项]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" +"å¤åˆ¶æ–‡ä»¶ï¼Œå¹¶æ ¹æ®ä»¥ä¸‹çš„选项将数æ®è½¬æ¢å’Œæ ¼å¼åŒ–。\n" +"\n" +" bs=字节 强迫 ibs=<字节> åŠ obs=<字节>\n" +" cbs=字节 æ¯æ¬¡è½¬æ¢æŒ‡å®šçš„<字节>\n" +" conv=关键字 æ ¹æ®ä»¥é€—å·åˆ†éš”çš„å…³é”®å­—è¡¨ç¤ºçš„æ–¹å¼æ¥è½¬æ¢æ–‡ä»¶\n" +" count=å—æ•°ç›® åªå¤åˆ¶æŒ‡å®š<å—æ•°ç›®>的输入数æ®\n" +" ibs=字节 æ¯æ¬¡è¯»å–指定的<字节>\n" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" +" if=文件 读å–<文件>å†…å®¹è€Œéžæ ‡å‡†è¾“入的数æ®\n" +" obs=字节 æ¯æ¬¡å†™å…¥æŒ‡å®šçš„<字节>\n" +" of=文件 将数æ®å†™å…¥<文件>而ä¸åœ¨æ ‡å‡†è¾“出显示\n" +" seek=å—æ•°ç›® 先略过以 obs 为å•ä½çš„æŒ‡å®š<å—æ•°ç›®>的输出数æ®\n" +" skip=å—æ•°ç›® 先略过以 ibs 为å•ä½çš„æŒ‡å®š<å—æ•°ç›®>的输入数æ®\n" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" +"\n" +"<å—æ•°ç›®>å’Œ<字节>å¯ä»¥åŠ ä¸Šä»¥ä¸‹çš„å•ä½ï¼š\n" +"xM=M,c=1,w=2,b=512,kB=1000,K=1024,MB=1000000,M=1048576,\n" +"GB=1000000000,G=1073741824,还有 Tã€Pã€Eã€Zã€Y 如此类推。\n" +"æ¯ä¸ª<关键字>å¯ä»¥æ˜¯ï¼š\n" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" +" ascii ç”± EBCDIC 转æ¢è‡³ ASCII\n" +" ebcdic ç”± ASCII 转æ¢è‡³ EBCDIC\n" +" ibm ç”± ASCII 转æ¢è‡³ alternated EBCDIC\n" +" block 将以 newline 作为结æŸå­—符的å—çš„ newline æ¢æˆç©ºæ ¼ï¼Œç›´è‡³ç©ºæ ¼\n" +" 填满 cbs 表示的大å°\n" +" unblock 会将 cbs 大å°çš„å—中所有结æŸçš„空格删除,并转æ¢ä¸ºä¸€ä¸ª newline å­—" +"符\n" +" lcase 将大写字符转æ¢ä¸ºå°å†™\n" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" +" notrunc 䏿ˆªæ–­è¾“出文件\n" +" ucase å°†å°å†™å­—符转æ¢ä¸ºå¤§å†™\n" +" swab äº¤æ¢æ¯ä¸€å¯¹è¾“入数æ®å­—节\n" +" noerror è¯»å–æ•°æ®å‘生错误åŽä»ç„¶ç»§ç»­\n" +" sync å°†æ¯ä¸ªè¾“入数æ®å—以 NUL 字符填满至 ibs 的大å°ï¼›å½“é…åˆ block\n" +" 或 unblock 时,会以空格代替 NUL 字符填充\n" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "读入了 %s+%s 个å—\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "输出了 %s+%s 个å—\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "个被截断了的å—" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "个被截断了的å—" + +#: src/dd.c:382 +#, c-format +msgid "closing input file %s" +msgstr "正在关闭输入文件 %s" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "正在关闭输出文件 %s" + +#: src/dd.c:469 +#, c-format +msgid "writing to %s" +msgstr "正在写入 %s" + +#: src/dd.c:501 +#, c-format +msgid "invalid conversion: %s" +msgstr "è½¬æ¢æ— æ•ˆï¼š%s" + +#: src/dd.c:557 +#, c-format +msgid "unrecognized option %s" +msgstr "无法识别的选项 %s" + +#: src/dd.c:610 +#, c-format +msgid "unrecognized option %s=%s" +msgstr "无法识别的选项 %s=%s" + +#: src/dd.c:616 +#, c-format +msgid "invalid number %s" +msgstr "无效的å·ç  %s" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"æ¯ç»„åªèƒ½é€‰ä¸€é¡¹ä½œä¸º conv 的关键字:\n" +"{ascii,ebcdic,ibm}ã€{lcase,ucase}ã€{block,unblock}ã€{unblock,sync}" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" +"警告:暂时é¿å…有关文件 (%s) çš„ lseek 核心错误,文件的 mt_type=0x%0lx ―\n" +" 有关 mt_type 类型的列表请å‚考 " + +#: src/dd.c:1170 src/dd.c:1188 +#, c-format +msgid "opening %s" +msgstr "打开 %s" + +#: src/dd.c:1196 +msgid "file offset out of range" +msgstr "文件å移值超出范围以外" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "略过输出文件 %2$s çš„æœ€åˆ %1$s 个字节" + +#: src/df.c:49 +#, fuzzy +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "Torbjorn Granlundã€David MacKenzie åŠ Jim Meyering" + +#: src/df.c:153 +#, fuzzy +msgid "Filesystem Type" +msgstr "文件系统 " + +#: src/df.c:155 +#, fuzzy +msgid "Filesystem " +msgstr "文件系统 " + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr " Inode (I)已用 (I)å¯ç”¨ (I)已用%%" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " å®¹é‡ å·²ç”¨ å¯ç”¨ 已用%%" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " å®¹é‡ å·²ç”¨ å¯ç”¨ 已用%%" + +#: src/df.c:167 +#, fuzzy, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr " %4d-å— å·²ç”¨ å¯ç”¨ 容é‡" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr " %4s-å— å·²ç”¨ å¯ç”¨ 已用%%" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr " 挂载点\n" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" +"显示æ¯ä¸ª<文件>所在的文件系统的信æ¯ï¼Œé»˜è®¤æ˜¯æ˜¾ç¤ºæ‰€æœ‰æ–‡ä»¶ç³»ç»Ÿã€‚\n" +"\n" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" +" -a, --all 包括大å°ä¸º 0 个å—的文件系统\n" +" -B, --block-size=å¤§å° å—以指定<大å°>的字节为å•ä½\n" +" -h, --human-readable 以容易ç†è§£çš„æ ¼å¼å°å‡ºæ–‡ä»¶ç³»ç»Ÿå¤§å° (例如 1K 234M 2G)\n" +" -H, --si 类似 -hï¼Œä½†å– 1000 çš„æ¬¡æ–¹è€Œä¸æ˜¯ 1024\n" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" +" -i, --inodes 显示 inode ä¿¡æ¯è€Œéžå—使用é‡\n" +" -k å³ --block-size=1K\n" +" -l, --local åªæ˜¾ç¤ºæœ¬æœºçš„æ–‡ä»¶ç³»ç»Ÿ\n" +" --no-sync å–å¾—ä½¿ç”¨é‡æ•°æ®å‰ä¸è¿›è¡Œ sync 动作 (默认)\n" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" +" -P, --portability 使用 POSIX 输出格å¼\n" +" --sync å–å¾—ä½¿ç”¨é‡æ•°æ®å‰å…ˆè¿›è¡Œ sync 动作\n" +" -t, --type=类型 åªå°å‡ºæŒ‡å®š<类型>的文件系统信æ¯\n" +" -T, --print-type å°å‡ºæ–‡ä»¶ç³»ç»Ÿç±»åž‹\n" +" -x, --exclude-type=类型 åªå°å‡ºä¸æ˜¯æŒ‡å®š<类型>的文件系统信æ¯\n" +" -v (此选项ä¸ä½œå¤„ç†)\n" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" +"\n" +"<大å°>å¯ä»¥æ˜¯ä»¥ä¸‹çš„å•ä½ (å•ä½å‰å¯åŠ ä¸Šæ•´æ•°):\n" +"kB=1000,K=1024,MB=1000000,M=1048576,还有 Gã€Tã€Pã€Eã€Zã€Y 如此类推。\n" + +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "ä¸èƒ½åŒæ—¶é€‰æ‹©å’ŒæŽ’除文件系统类型 %s" + +#: src/df.c:903 +msgid "Warning: " +msgstr "警告:" + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "%s无法读å–已挂上的文件系统的åå•" + +#: src/dircolors.c:103 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "用法:%s [选项]... [文件]\n" + +#: src/dircolors.c:104 +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"输出用æ¥è®¾å®š LS_COLORS 环境å˜é‡çš„命令。\n" +"\n" +"指定输出的规格:\n" +" -b, --sh, --bourne-shell 输出设定 LS_COLORS çš„ Bourne shell 命令\n" +" -c, --csh, --c-shell 输出设定 LS_COLORS çš„ C shell 命令\n" +" -p, --print-database 输出默认的色彩设置\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" +"\n" +"如果指定<文件>,则读å–è¯¥æ–‡ä»¶çš„æ•°æ®æ¥å†³å®šæ–‡ä»¶ç±»åž‹åŠæ‰©å±•å相应的颜色。\n" +"å¦åˆ™ï¼Œä¼šä½¿ç”¨ä¸€ä¸ªé»˜è®¤çš„æ•°æ®åº“。如è¦äº†è§£æ­¤æ–‡ä»¶æ ¼å¼çš„细节,请执行\n" +"‘dircolors --print-database’。\n" + +#: src/dircolors.c:299 +#, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s:%luï¼šæ­¤è¡Œæ— æ•ˆï¼›ç¼ºå°‘äº†ç¬¬äºŒæ æ•°æ®" + +#: src/dircolors.c:371 +#, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s:%lu:无法识别的关键字 %s" + +#: src/dircolors.c:372 +msgid "" +msgstr "<内部数æ®>" + +#: src/dircolors.c:467 +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" +"显示 dircolors 内部数æ®åº“的选项和选择 shell 语法的选项\n" +"是互相抵触的" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "显示 dircolors 内部数æ®åº“æ—¶ä¸èƒ½åŠ ä¸Š<文件>傿•°" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "没有设定 SHELL 环境å˜é‡ï¼Œä¹Ÿæ²¡æœ‰æŒ‡å®š shell 类型的选项" + +#: src/dirname.c:33 src/pathchk.c:59 +#, fuzzy +msgid "David MacKenzie and Jim Meyering" +msgstr "Mike Parkerã€David MacKenzie å’Œ Jim Meyering" + +#: src/dirname.c:46 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"用法:%s 文件\n" +" 或:%s 选项\n" + +#: src/dirname.c:51 +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" + +#: src/du.c:49 +#, fuzzy +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "Torbjorn Granlundã€David MacKenzie åŠ Jim Meyering" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" +"总结æ¯ä¸ª<文件>çš„ç£ç›˜ç”¨é‡ï¼Œç›®å½•åˆ™å–æ€»ç”¨é‡ã€‚\n" +"\n" + +#: src/du.c:182 +#, fuzzy +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" +" -a, --all 显示目录中所有文件的å ç”¨é‡ï¼Œå¹¶éžåªæ˜¯ç›®å½•的总用é‡\n" +" -B, --block-size=å¤§å° å—以指定<大å°>的字节为å•ä½\n" +" -b, --bytes 以字节为å•ä½å°å‡ºå ç”¨é‡\n" +" -c, --total å°å‡ºæ‰€æœ‰é¡¹ç›®ç›¸åŠ åŽçš„æ€»ç”¨é‡\n" +" -D, --dereference-args åªæ‰¾å‡ºå‘½ä»¤åˆ—中的符å·é“¾æŽ¥æŒ‡ç¤ºçš„真正目的地\n" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" +" -h, --human-readable 以容易ç†è§£çš„æ ¼å¼å°å‡ºæ–‡ä»¶å¤§å° (例如 1K 234M 2G)\n" +" -H, --si 类似 -hï¼Œä½†å– 1000 çš„æ¬¡æ–¹è€Œä¸æ˜¯ 1024\n" +" -k å³ --block-size=1K\n" +" -l, --count-links 连硬链接的大å°ä¹Ÿè®¡ç®—在内\n" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" +" -L, --dereference 找出任何符å·é“¾æŽ¥æŒ‡ç¤ºçš„真正目的地\n" +" -S, --separate-dirs ä¸åŒ…括å­ç›®å½•çš„å ç”¨é‡\n" +" -s, --summarize åªåˆ†åˆ«è®¡ç®—命令列中æ¯ä¸ªå‚数所å çš„æ€»ç”¨é‡\n" + +#: src/du.c:204 +#, fuzzy +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" +" -x, --one-file-system 略过属於其他文件系统的目录\n" +" -X 文件, --exclude-from=文件 ç”±<文件>读å–应排除的文件的样å¼\n" +" --exclude=PAT æŽ’é™¤ç¬¦åˆæŒ‡å®š<æ ·å¼>的文件\n" +" --max-depth=N åªæ˜¾ç¤ºå‚数指定的目录 N 层或以内的å­ç›®å½•的总用é‡\n" +" (若使用 --all 选项,也会显示文件的å ç”¨é‡)ï¼›\n" +" --max-depth=0 的效果等於 --summarize\n" + +#: src/du.c:337 +#, fuzzy, c-format +msgid "cannot change to parent of directory %s" +msgstr "无法进入目录 %s" + +#: src/du.c:345 +#, c-format +msgid "cannot change to directory %s" +msgstr "无法进入目录 %s" + +#: src/du.c:352 +#, fuzzy, c-format +msgid "cannot read directory %s" +msgstr "无法创建目录%s" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "总用é‡" + +#: src/du.c:641 +#, c-format +msgid "invalid maximum depth %s" +msgstr "目录最大深度 %s 无效" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "ä¸èƒ½åªæ˜¾ç¤ºæ€»ç”¨é‡ï¼ŒåŒæ—¶åˆæ˜¾ç¤ºæ¯ä¸ªé¡¹ç›®" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "警告:显示总用é‡ç­‰æ–¼ä½¿ç”¨ --max-depth=0" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "警告:显示总用é‡çš„选项和 --max-depth=%d 互相抵触" + +#: src/echo.c:77 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "用法:%s [选项]... [文件]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/env.c:93 +#, fuzzy +msgid "Richard Mlynarik and David MacKenzie" +msgstr "Richard Stallman å’Œ David MacKenzie" + +#: src/env.c:119 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "用法:%s [选项]... åç§° 类型 [MAJOR MINOR]\n" + +#: src/env.c:122 +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr "" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "" + +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "" + +#: src/expr.c:90 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"用法:%s 文件\n" +" 或:%s 选项\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +#, fuzzy +msgid "syntax error" +msgstr "写入时å‘生错误" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" + +#: src/expr.c:586 src/expr.c:625 +#, fuzzy +msgid "non-numeric argument" +msgstr "傿•°æ•°ç›®é”™è¯¯" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "" + +#: src/factor.c:74 +#, fuzzy, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"用法:%s 文件\n" +" 或:%s 选项\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" + +#: src/factor.c:85 +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "" + +#: src/false.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" + +#: src/fmt.c:271 +#, fuzzy, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "用法:%s [选项]... [文件]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" + +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" + +#: src/fmt.c:345 +#, fuzzy, c-format +msgid "invalid width option: `%s'" +msgstr "无效的行宽数值:%s" + +#: src/fmt.c:385 +#, fuzzy, c-format +msgid "invalid width: `%s'" +msgstr "无效的行宽数值:%s" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" + +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "" + +#: src/fold.c:295 +#, fuzzy, c-format +msgid "invalid number of columns: `%s'" +msgstr "无效的å·ç  %s" + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" + +#: src/head.c:190 +#, fuzzy, c-format +msgid "cannot reposition file pointer for %s" +msgstr "无法å–å¾— %s 的时间标记" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "" + +#: src/head.c:257 src/tail.c:1390 +#, fuzzy +msgid "number of lines" +msgstr "傿•°æ•°ç›®é”™è¯¯" + +#: src/head.c:257 src/tail.c:1391 +#, fuzzy +msgid "number of bytes" +msgstr "傿•°æ•°ç›®é”™è¯¯" + +#: src/head.c:264 src/tail.c:1478 +#, fuzzy +msgid "invalid number of lines" +msgstr "无效的å·ç  %s" + +#: src/head.c:265 src/tail.c:1479 +#, fuzzy +msgid "invalid number of bytes" +msgstr "无效的å·ç  %s" + +#: src/head.c:341 +#, fuzzy, c-format +msgid "unrecognized option `-%c'" +msgstr "无法识别的选项 %s" + +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "" + +#: src/hostid.c:48 +#, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" + +#: src/hostname.c:67 +#, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" + +#: src/hostname.c:104 +#, fuzzy, c-format +msgid "cannot set hostname to `%s'" +msgstr "无法设定 %s 的时间标记" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "" + +#: src/hostname.c:117 +#, fuzzy +msgid "cannot determine hostname" +msgstr "无法设定 %s çš„æƒé™" + +#: src/id.c:36 +#, fuzzy +msgid "Arnold Robbins and David MacKenzie" +msgstr "Richard Stallman å’Œ David MacKenzie" + +#: src/id.c:87 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "用法:%s [选项]... [文件]\n" + +#: src/id.c:88 +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" + +#: src/id.c:162 +#, fuzzy +msgid "cannot print only user and only group" +msgstr "ä¸å¯åŒæ—¶çœç•¥ç”¨æˆ·å’Œæ‰€å±žç»„" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "" + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "" + +#: src/id.c:235 +#, fuzzy, c-format +msgid "cannot find name for group ID %u" +msgstr "无法更改%s的所有者åŠ/或组" + +#: src/id.c:273 +#, fuzzy +msgid "cannot get supplemental group list" +msgstr "æ— æ³•æ”¹å˜æ‰€å±žç»„至没有å称的组" + +#: src/id.c:385 +msgid " groups=" +msgstr "" + +#: src/install.c:269 +msgid "the strip option may not be used when installing a directory" +msgstr "安装目录时ä¸èƒ½ç”¨ strip 选项" + +#: src/install.c:292 src/mkdir.c:140 +#, c-format +msgid "invalid mode %s" +msgstr "无效的æƒé™æ¨¡å¼%s" + +#: src/install.c:307 src/install.c:371 +#, c-format +msgid "creating directory %s" +msgstr "正在创建目录%s" + +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "正在安装多个文件,但最åŽçš„傿•° %s å¹¶éžç›®å½•。" + +#: src/install.c:435 +#, c-format +msgid "%s is a directory" +msgstr "%s是目录" + +#: src/install.c:495 +#, c-format +msgid "cannot obtain time stamps for %s" +msgstr "无法å–å¾— %s 的时间标记" + +#: src/install.c:507 +#, c-format +msgid "cannot set time stamps for %s" +msgstr "无法设定 %s 的时间标记" + +#: src/install.c:528 +msgid "fork system call failed" +msgstr "fork 系统进程出现错误" + +#: src/install.c:532 +msgid "cannot run strip" +msgstr "无法执行 strip 命令" + +#: src/install.c:539 +msgid "strip failed" +msgstr "strip 出现错误" + +#: src/install.c:560 +#, c-format +msgid "invalid user %s" +msgstr "无效的用户 %s" + +#: src/install.c:578 +#, c-format +msgid "invalid group %s" +msgstr "无效的组 %s" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"用法:%s [选项]... æ¥æº 目的地 (ç¬¬ä¸€ç§æ ¼å¼)\n" +" 或:%s [选项]... æ¥æº... 目录 (ç¬¬äºŒç§æ ¼å¼)\n" +" 或:%s -d [选项]... 目录... (ç¬¬ä¸‰ç§æ ¼å¼)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" +"在最åˆä¸¤ç§æ ¼å¼ä¸­ï¼Œä¼šå°†<æ¥æº>å¤åˆ¶è‡³<目的地>或将多个<æ¥æº>文件å¤åˆ¶è‡³å·²å­˜åœ¨çš„\n" +"<目录>ï¼ŒåŒæ—¶è®¾å®šæƒé™æ¨¡å¼åŠæ‰€æœ‰è€…/æ‰€å±žç»„ã€‚åœ¨ç¬¬ä¸‰ç§æ ¼å¼ä¸­ï¼Œä¼šåˆ›å»ºæ‰€æœ‰\n" +"指定的目录åŠå®ƒä»¬çš„主目录。\n" +"\n" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" +" --backup[=CONTROL] 为æ¯ä¸ªå·²å­˜åœ¨çš„目的地文件进行备份\n" +" -b 类似 --backupï¼Œä½†ä¸æŽ¥å—任何傿•°\n" +" -c (此选项ä¸ä½œå¤„ç†)\n" +" -d, --directory æ‰€æœ‰å‚æ•°éƒ½ä½œä¸ºç›®å½•处ç†ï¼›è€Œä¸”会创建指定目录的所有主目" +"录\n" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" +" -D 创建<目的地>å‰çš„æ‰€æœ‰ä¸»ç›®å½•,然åŽå°†<æ¥æº>å¤åˆ¶è‡³\n" +" <目的地>;在第一ç§ä½¿ç”¨æ ¼å¼ä¸­æœ‰ç”¨\n" +" -g, --group=组 è‡ªè¡Œè®¾å®šæ‰€å±žç»„ï¼Œè€Œä¸æ˜¯è¿›ç¨‹ç›®å‰çš„æ‰€å±žç»„\n" +" -m, --mode=æ¨¡å¼ è‡ªè¡Œè®¾å®šæƒé™æ¨¡å¼ (åƒ chmod)ï¼Œè€Œä¸æ˜¯ rwxr-xr-x\n" +" -o, --owner=所有者 自行设定所有者 (åªé€‚用於超级用户)\n" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" +" -p, --preserve-timestamps 以<æ¥æº>文件的访问/修改时间作为相应的目的\n" +" 地文件的时间属性\n" +" -s, --strip 用 strip 命令删除 symbol table,åªé€‚用於第一åŠç¬¬äºŒç§\n" +" 使用格å¼\n" +" -S, --suffix=åŽç¼€ 自行指定备份文件的<åŽç¼€>\n" +" -v, --verbose å¤„ç†æ¯ä¸ªæ–‡ä»¶/目录时å°å‡ºåç§°\n" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"\n" +"备份文件的åŽç¼€ä¸ºâ€˜~’,除éžä»¥ --suffix 选项或是 SIMPLE_BACKUP_SUFFIX\n" +"环境å˜é‡æŒ‡å®šã€‚版本控制的方å¼å¯é€è¿‡ --backup 选项或 VERSION_CONTROL 环境\n" +"å˜é‡æ¥é€‰æ‹©ã€‚以下是å¯ç”¨çš„å˜é‡å€¼ï¼š\n" +"\n" + +#: src/join.c:144 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "用法:%s [选项]... [文件]\n" + +#: src/join.c:148 +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" + +#: src/join.c:165 +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" + +#: src/join.c:172 +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" + +#: src/join.c:645 +#, fuzzy, c-format +msgid "invalid field specifier: `%s'" +msgstr "无效的 tab 字符定ä½å€¼ï¼š%s" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, fuzzy, c-format +msgid "invalid field number: `%s'" +msgstr "无效的å·ç  %s" + +#: src/join.c:672 +#, fuzzy, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "无效的å·ç  %s" + +#: src/join.c:792 +#, fuzzy, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "无效的å·ç  %s" + +#: src/join.c:801 +#, fuzzy, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "无效的å·ç  %s" + +#: src/join.c:833 +#, fuzzy +msgid "too many non-option arguments" +msgstr "傿•°å¤ªå¤š" + +#: src/join.c:855 +#, fuzzy +msgid "too few non-option arguments" +msgstr "傿•°å¤ªå°‘" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" + +#: src/kill.c:106 +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" + +#: src/kill.c:163 +#, fuzzy, c-format +msgid "%s: invalid signal" +msgstr "%s:文件类型无效" + +#: src/kill.c:262 +#, c-format +msgid "missing operand after `%s'" +msgstr "" + +#: src/kill.c:274 +#, fuzzy, c-format +msgid "%s: invalid process id" +msgstr "%sï¼šæ–‡ä»¶å¤§å°æ— æ•ˆ" + +#: src/kill.c:327 +#, fuzzy, c-format +msgid "invalid option -- %c" +msgstr "%s:无效的选项 ― %c\n" + +#: src/kill.c:336 +#, c-format +msgid "%s: multiple signals specified" +msgstr "" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "" + +#: src/link.c:51 +#, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"用法:%s 文件1 文件2\n" +" 或:%s 选项\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" + +#: src/link.c:98 +#, c-format +msgid "cannot create link %s to %s" +msgstr "无法创建连至%2$s的链接%1$s" + +#: src/ln.c:39 +msgid "Mike Parker and David MacKenzie" +msgstr "Mike Parker å’Œ David MacKenzie" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "%s:警告:将硬链接连至符å·é“¾æŽ¥æ˜¯ä¸é€šç”¨çš„功能" + +#: src/ln.c:174 +#, c-format +msgid "%s: hard link not allowed for directory" +msgstr "%s: ä¸å…许将硬链接连至目录" + +#: src/ln.c:246 +#, c-format +msgid "%s: cannot overwrite directory" +msgstr "%s:无法覆盖目录" + +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "%s:是å¦ç½®æ¢%s? " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s:文件已存在" + +#: src/ln.c:304 +#, c-format +msgid "create symbolic link %s to %s" +msgstr "创建连至%2$s的符å·é“¾æŽ¥%1$s" + +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "创建连至%2$s的硬链接%1$s" + +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "正在创建连至%2$s的符å·é“¾æŽ¥%1$s" + +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "正在创建连至%2$s的硬链接%1$s" + +#: src/ln.c:339 +#, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"用法:%s [选项]... 目标 [链接å]\n" +" 或:%s [选项]... 目标... 目录\n" +" 或:%s [选项]... --target-directory=目录 目标...\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" +"创建连至指定<目标>的链接,并å¯é€‰æ‹©æ€§æŒ‡å®š<链接å>。\n" +"如果没有指定<链接å>,会在目å‰çš„目录中创建一个和<目标>å称一样的链接。\n" +"å½“ä½¿ç”¨ç¬¬äºŒç§æ ¼å¼è€Œ<目标>多於一个时,最åŽçš„傿•°å¿…须是目录;这样会在指定的\n" +"<目录>中分别创建连至æ¯ä¸ª<目标>的链接。默认会创建硬链接,若\n" +"使用 --symbolic 选项则创建符å·é“¾æŽ¥ã€‚当创建硬链接时,æ¯ä¸ª<目标>都必须存\n" +"在。\n" +"\n" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" +" --backup[=CONTROL] 为æ¯ä¸ªå·²å­˜åœ¨çš„目的地文件创建备份文件\n" +" -b 类似 --backupï¼Œä½†ä¸æŽ¥å—任何傿•°\n" +" -d, -F, --directory 创建连至目录的硬链接 (åªé€‚用於超级用户)\n" +" -f, --force 强迫删除任何已存在的目的地文件\n" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" +" -n, --no-dereference 如果目的地是一个链接至æŸç›®å½•的符å·é“¾æŽ¥ï¼Œä¼šå°†\n" +" 该符å·é“¾æŽ¥å½“作一般文件处ç†ï¼Œå…ˆå°†è¯¥å·²å­˜åœ¨çš„\n" +" 链接备份或删除\n" +" -i, --interactive 确认是å¦åˆ é™¤ç›®çš„地文件\n" +" -s, --symbolic 创建符å·é“¾æŽ¥è€Œä¸æ˜¯ç¡¬é“¾æŽ¥\n" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" +" -S, --suffix=åŽç¼€ 自行指定备份文件的<åŽç¼€>\n" +" --target-directory=目录 在指定<目录>中创建链接\n" +" -v, --verbose 链接å‰å…ˆå°å‡ºæ¯ä¸ªæ–‡ä»¶çš„åç§°\n" + +#: src/ln.c:521 +#, c-format +msgid "%s: specified target directory is not a directory" +msgstr "%sï¼šæŒ‡å®šçš„ç›®çš„åœ°ä¸æ˜¯ç›®å½•" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "创建多个链接时,最åŽçš„傿•°å¿…须为目录" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "用法:%s [选项]\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" + +#: src/logname.c:99 +#, c-format +msgid "%s: no login name\n" +msgstr "" + +#: src/ls.c:673 +msgid "%b %e %Y" +msgstr "%Y-%m-%d " + +#: src/ls.c:681 +msgid "%b %e %H:%M" +msgstr "%b %e %H:%M" + +#: src/ls.c:1307 +#, fuzzy, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "忽略无效的环境å˜é‡ QUOTING_STYLE çš„å˜é‡å€¼ï¼š%s" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "忽略无效的环境å˜é‡ COLUMNS 的宽度数值:%s" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "忽略无效的环境å˜é‡ TABSIZE çš„ tab 字符定ä½å€¼ï¼š%s" + +#: src/ls.c:1482 +#, c-format +msgid "invalid line width: %s" +msgstr "无效的行宽数值:%s" + +#: src/ls.c:1556 +#, c-format +msgid "invalid tab size: %s" +msgstr "无效的 tab 字符定ä½å€¼ï¼š%s" + +#: src/ls.c:1722 +#, c-format +msgid "invalid time style format %s" +msgstr "æ— æ•ˆçš„æ—¥æœŸæ—¶é—´æ ¼å¼ %s" + +#: src/ls.c:2054 +#, c-format +msgid "unrecognized prefix: %s" +msgstr "无法识别的文件ç§ç±»ï¼š%s" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "LS_COLORS 环境å˜é‡ä¸­å­˜åœ¨æ— æ³•分æžçš„值" + +#: src/ls.c:2145 +#, c-format +msgid "cannot determine device and inode of %s" +msgstr "无法决定 %s æ‰€åœ¨çš„è®¾å¤‡åŠ inode" + +#: src/ls.c:2155 +#, c-format +msgid "not listing already-listed directory: %s" +msgstr "ä¸ä¼šå†åˆ—出已ç»åˆ—出的目录:%s" + +#: src/ls.c:2208 src/remove.c:929 +#, fuzzy, c-format +msgid "reading directory %s" +msgstr "正在创建目录%s" + +#: src/ls.c:2603 +#, c-format +msgid "cannot compare file names %s and %s" +msgstr "无法比较文件å %s å’Œ %s" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" +"列出<文件>çš„ä¿¡æ¯ (默认为目å‰çš„目录)。\n" +"å¦‚æžœä¸æŒ‡å®š -cftuSUX 或 --sort 任何一个选项,则根æ®å­—æ¯å¤§å°æŽ’åºã€‚\n" +"\n" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" +" -a, --all ä¸éšè—任何以 . 字符开始的项目\n" +" -A, --almost-all 列出除了 . åŠ .. 以外的任何项目\n" +" --author å°å‡ºæ¯ä¸ªæ–‡ä»¶è‘—作者\n" +" -b, --escape 以八进制溢出åºåˆ—表示ä¸å¯æ‰“å°çš„字符\n" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" +" --block-size=å¤§å° å—以指定<大å°>的字节为å•ä½\n" +" -B, --ignore-backups ä¸åˆ—出任何以 ~ 字符结æŸçš„项目\n" +" -c é…åˆ -ltï¼šæ ¹æ® ctime 排åºåŠæ˜¾ç¤º ctime (文件\n" +" çŠ¶æ€æœ€åŽæ›´æ”¹çš„æ—¶é—´)\n" +" é…åˆ -l:显示 ctime 但根æ®å称排åº\n" +" å¦åˆ™ï¼šæ ¹æ® ctime 排åº\n" + +#: src/ls.c:3784 +#, fuzzy +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" +" -C æ¯æ ç”±ä¸Šè‡³ä¸‹åˆ—出项目\n" +" --color[=WHEN] 控制是å¦ä½¿ç”¨è‰²å½©åˆ†è¾¨æ–‡ä»¶ã€‚WHEN å¯ä»¥æ˜¯\n" +" ‘never’ã€â€˜always’或‘auto’其中之一\n" +" -d, --directory 当é‡åˆ°ç›®å½•时列出目录本身而éžç›®å½•内的文件\n" +" -D, --dired äº§ç”Ÿé€‚åˆ Emacs çš„ dired 模å¼ä½¿ç”¨çš„结果\n" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" +" -f ä¸è¿›è¡ŒæŽ’åºï¼Œ-aU 选项生效,-lst 选项失效\n" +" -F, --classify åŠ ä¸Šæ–‡ä»¶ç±»åž‹çš„æŒ‡ç¤ºç¬¦å· (*/=@| 其中一个)\n" +" --format=关键字 across -x,commas -m,horizontal -x,long -l,\n" +" single-column -1,verbose -l,vertical -C\n" +" --full-time å³ -l --time-style=full-iso\n" + +#: src/ls.c:3799 +#, fuzzy +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" +" -g 类似 -l,但ä¸åˆ—出所有者\n" +" -G, --no-group ä¸åˆ—出任何有关组的信æ¯\n" +" -h, --human-readable 以容易ç†è§£çš„æ ¼å¼å°å‡ºæ–‡ä»¶å¤§å° (例如 1K 234M 2G)\n" +" --si 类似 -hï¼Œä½†å– 1000 çš„æ¬¡æ–¹è€Œä¸æ˜¯ 1024\n" +" -H, --dereference-command-line 使用命令列中的符å·é“¾æŽ¥æŒ‡ç¤ºçš„真正目的地\n" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" +" --indicator-style=æ–¹å¼ æŒ‡å®šåœ¨æ¯ä¸ªé¡¹ç›®åç§°åŽåŠ ä¸ŠæŒ‡ç¤ºç¬¦å·<æ–¹å¼>:\n" +" none (默认),classify (-F),file-type (-p)\n" +" -i, --inode å°å‡ºæ¯ä¸ªæ–‡ä»¶çš„ inode å·\n" +" -I, --ignore=æ ·å¼ ä¸å°å‡ºä»»ä½•ç¬¦åˆ shell 万用字符<æ ·å¼>的项目\n" +" -k å³ --block-size=1K\n" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" +" -l 使用较长格å¼åˆ—出信æ¯\n" +" -L, --dereference 当显示符å·é“¾æŽ¥çš„æ–‡ä»¶ä¿¡æ¯æ—¶ï¼Œæ˜¾ç¤ºç¬¦å·é“¾æŽ¥æ‰€æŒ‡ç¤º\n" +" 的对象而并éžç¬¦å·é“¾æŽ¥æœ¬èº«çš„ä¿¡æ¯\n" +" -m 所有项目以逗å·åˆ†éš”,并填满整行行宽\n" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" +" -n, --numeric-uid-gid 类似 -l,但列出 UID åŠ GID å·\n" +" -N, --literal å°å‡ºæœªç»å¤„ç†çš„项目åç§° (例如ä¸ç‰¹åˆ«å¤„ç†æŽ§åˆ¶å­—" +"符)\n" +" -o 类似 -l,但ä¸åˆ—出有关组的信æ¯\n" +" -p, --file-type åŠ ä¸Šæ–‡ä»¶ç±»åž‹çš„æŒ‡ç¤ºç¬¦å· (/=@| 其中一个)\n" + +#: src/ls.c:3831 +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -q, --hide-control-chars 以 ? 字符代替无法打å°çš„字符\n" +" --show-control-chars 直接显示无法打å°çš„字符 (这是默认方å¼ï¼Œé™¤éžè°ƒç”¨\n" +" 的程åºå称是‘ls’而且是在终端机画é¢è¾“出结果)\n" +" -Q, --quote-name 将项目å称括上åŒå¼•å·\n" +" --quoting-style=æ–¹å¼ ä½¿ç”¨æŒ‡å®šçš„ quoting <æ–¹å¼>显示项目的å称:\n" +" literalã€localeã€shellã€shell-alwaysã€cã€" +"escape\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" +" -r, --reverse ä¾ç›¸åæ¬¡åºæŽ’åˆ—\n" +" -R, --recursive åŒæ—¶åˆ—出所有å­ç›®å½•层\n" +" -s, --size 以å—大å°ä¸ºå•ä½åˆ—出所有文件的大å°\n" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" +" -S æ ¹æ®æ–‡ä»¶å¤§å°æŽ’åº\n" +" --sort=WORD 以下是å¯é€‰ç”¨çš„ WORD 和它们代表的相应选项:\n" +" extension -X status -c\n" +" none -U time -t\n" +" size -S atime -u\n" +" time -t access -u\n" +" version -v use -u\n" +" --time=WORD 显示 WORD 所代表的时间而éžä¿®æ”¹æ—¶é—´ï¼š\n" +" atimeã€accessã€useã€ctime 或 status;加上\n" +" --sort=time 选项时会以指定时间作为排åºç´¢å¼•\n" + +#: src/ls.c:3853 +#, fuzzy +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" +" --time-style=WORD æ ¹æ® WORD ä»£è¡¨çš„æ ¼å¼æ˜¾ç¤ºæ—¶é—´ï¼š\n" +" full-isoã€isoã€localeã€posix-isoã€+FORMAT\n" +" FORMAT 峿˜¯â€˜date’所用的时间格å¼ï¼›å¦‚æžœ FORMAT\n" +" 是 FORMAT1FORMAT2,FORMAT1 适用於较旧\n" +" 的文件而 FORMAT2 适用於较新的文件\n" +" -t æ ¹æ®ä¿®æ”¹æ—¶é—´æŽ’åº\n" +" -T, --tabsize=宽度 自行指定 tab çš„<宽度>ï¼Œè€Œéž 8 个字符\n" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" +" -u é…åˆ -lt:显示访问时间而且ä¾è®¿é—®æ—¶é—´æŽ’åº\n" +" é…åˆ -l:显示访问时间但根æ®å称排åº\n" +" å¦åˆ™ï¼šæ ¹æ®è®¿é—®æ—¶é—´æŽ’åº\n" +" -U ä¸è¿›è¡ŒæŽ’åºï¼›ä¾æ–‡ä»¶ç³»ç»ŸåŽŸæœ‰çš„æ¬¡åºåˆ—出项目\n" +" -v æ ¹æ®ç‰ˆæœ¬è¿›è¡ŒæŽ’åº\n" + +#: src/ls.c:3871 +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" +" -w, --width=COLS 自行指定è¤å¹•宽度而ä¸ä½¿ç”¨ç›®å‰çš„æ•°å€¼\n" +" -x é€è¡Œåˆ—å‡ºé¡¹ç›®è€Œä¸æ˜¯é€æ åˆ—出\n" +" -X æ ¹æ®æ‰©å±•åæŽ’åº\n" +" -1 æ¯è¡Œåªåˆ—出一个文件\n" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" +"\n" +"默认是ä¸ä¼šä½¿ç”¨è‰²å½©æ¥åŒºåˆ«æ–‡ä»¶çš„。此方å¼ç­‰æ–¼ä½¿ç”¨äº† --color=none 选项。若使用\n" +"--color 选项但䏿Œ‡å®š WHEN 傿•°ç­‰æ–¼ --color=always。当使用 --color=auto 时,\n" +"åªå½“è¾“å‡ºè‡³ç»ˆç«¯æœºç”»é¢ (tty) æ—¶æ‰ä¼šæ˜¾ç¤ºè‰²å½©ã€‚\n" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "" + +#: src/md5sum.c:444 +#, fuzzy, c-format +msgid "%s: read error" +msgstr "%s:å称已更改为 %s" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "" + +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "" + +#: src/md5sum.c:473 +msgid "file" +msgstr "" + +#: src/md5sum.c:473 +msgid "files" +msgstr "" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "" + +#: src/mkdir.c:61 +#, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "用法:%s [选项] 目录...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" +"è‹¥ç›®å½•ä¸æ˜¯å·²ç»å­˜åœ¨åˆ™åˆ›å»ºç›®å½•。\n" +"\n" + +#: src/mkdir.c:69 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +" -m, --mode=æ¨¡å¼ è®¾å®šæƒé™<模å¼> (类似 chmod)ï¼Œè€Œä¸æ˜¯ rwxrwxrwx å‡ umask\n" +" -p, --parents éœ€è¦æ—¶åˆ›å»ºä¸Šå±‚目录,如目录早已存在则ä¸å½“作错误\n" +" -v, --verbose æ¯æ¬¡åˆ›å»ºæ–°ç›®å½•都显示信æ¯\n" + +#: src/mkdir.c:113 +#, c-format +msgid "created directory %s" +msgstr "已创建目录 %s" + +#: src/mkdir.c:190 +#, c-format +msgid "cannot set permissions of directory %s" +msgstr "无法设定目录 %s çš„æƒé™" + +#: src/mkfifo.c:55 +#, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "用法:%s [选项] åç§°...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" +"以指定的<åç§°>创建 named pipe (FIFO)。\n" +"\n" + +#: src/mkfifo.c:63 src/mknod.c:64 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr " -m, --mode=æ¨¡å¼ æŒ‡å®šæƒé™æ¨¡å¼ (类似 chmod)ï¼Œè€Œä¸æ˜¯ a=rw å‡ umask\n" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "䏿”¯æŒ FIFO 文件" + +#: src/mkfifo.c:123 src/mknod.c:127 +msgid "invalid mode" +msgstr "æƒé™æ¨¡å¼æ— æ•ˆ" + +#: src/mkfifo.c:142 +#, c-format +msgid "cannot set permissions of fifo %s" +msgstr "无法设定 fifo 文件 %s çš„æƒé™" + +#: src/mknod.c:55 +#, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "用法:%s [选项]... åç§° 类型 [MAJOR MINOR]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" +"创建指定<类型>å’Œ<åç§°>的特殊文件。\n" +"\n" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" + +#: src/mknod.c:76 +#, fuzzy +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"\n" +"当<类型>为 p æ—¶ä¸å¯æŒ‡å®š MAJOR åŠ MINOR,å¦åˆ™å®ƒä»¬æ˜¯å¿…须指定的。\n" +"<类型>å¯ä»¥æ˜¯ï¼š\n" +"\n" +" b 创建(有缓冲的)区å—特殊文件\n" +" c, u 创建(没有缓冲的)字符特殊文件\n" +" p 创建 FIFO 特殊文件\n" + +#: src/mknod.c:141 +msgid "wrong number of arguments" +msgstr "傿•°æ•°ç›®é”™è¯¯" + +#: src/mknod.c:153 +msgid "block special files not supported" +msgstr "æœ¬ç³»ç»Ÿä¸æ”¯æŒåŒºå—特殊文件" + +#: src/mknod.c:162 +msgid "character special files not supported" +msgstr "æœ¬ç³»ç»Ÿä¸æ”¯æŒå­—符特殊文件" + +#: src/mknod.c:171 +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "创建区å—特殊文件时,必需指定 major å’Œ minor 设备å·" + +#: src/mknod.c:186 +#, c-format +msgid "invalid major device number %s" +msgstr "无效的 major è®¾å¤‡å· %s" + +#: src/mknod.c:191 +#, c-format +msgid "invalid minor device number %s" +msgstr "无效的 minor è®¾å¤‡å· %s" + +#: src/mknod.c:196 +#, c-format +msgid "invalid device %s %s" +msgstr "设备文件 %s %s 无效" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "ä¸èƒ½ä¸º fifo 文件指定 major å’Œ minor 设备å·" + +#: src/mknod.c:231 +#, c-format +msgid "cannot set permissions of %s" +msgstr "无法设定 %s çš„æƒé™" + +#: src/mv.c:44 +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "Mike Parkerã€David MacKenzie å’Œ Jim Meyering" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"å°†<æ¥æº>åç§°é‡å‘½å为<目的地>å称,或将<æ¥æº>文件移动至<目录>。\n" +"\n" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" +" --backup[=CONTROL] 为æ¯ä¸ªå·²å­˜åœ¨çš„目的地文件创建备份文件\n" +" -b 类似 --backupï¼Œä½†ä¸æŽ¥å—任何傿•°\n" +" -f, --force 覆盖文件å‰ä¸ä¼šè¿›è¡Œç¡®è®¤ï¼Œç­‰æ–¼ --reply=yes\n" +" -i, --interactive 覆盖文件å‰å¿…须先确认,等於 --reply=query\n" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" +" --reply={yes,no,query} 指定如何处ç†å·²å­˜åœ¨çš„目的地文件\n" +" --strip-trailing-slashes åˆ é™¤å‚æ•°ä¸­æ‰€æœ‰<æ¥æº>文件/目录末端的斜æ \n" +" -S, --suffix=åŽç¼€ 自行指定备份文件的<åŽç¼€>\n" + +#: src/mv.c:339 +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +" --target-directory=目录 å°†æ‰€æœ‰å‚æ•°æŒ‡å®šçš„<æ¥æº>文件/目录移动至<目录>\n" +" -u, --update åªåœ¨<æ¥æº>文件比目的地文件新,或目的地文件\n" +" ä¸å­˜åœ¨æ—¶æ‰ä¼šç§»åЍ\n" +" -v, --verbose 详细显示进行的步骤\n" + +#: src/mv.c:467 +#, c-format +msgid "specified target, %s is not a directory" +msgstr "指定的目标%s䏿˜¯ç›®å½•" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "移动多个文件时,最åŽçš„傿•°å¿…须为目录。" + +#: src/nice.c:67 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "用法:%s [选项] åç§°...\n" + +#: src/nice.c:68 +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" + +#: src/nice.c:109 src/nice.c:122 +#, fuzzy, c-format +msgid "invalid option `%s'" +msgstr "无效的组 %s" + +#: src/nice.c:147 +#, fuzzy, c-format +msgid "invalid priority `%s'" +msgstr "无效的组 %s" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "" + +#: src/nice.c:178 src/nice.c:187 +#, fuzzy +msgid "cannot get priority" +msgstr "无法进入目录 %s" + +#: src/nice.c:192 +#, fuzzy +msgid "cannot set priority" +msgstr "无法设定 %s çš„æƒé™" + +#: src/nl.c:39 +#, fuzzy +msgid "Scott Bartram and David MacKenzie" +msgstr "Richard Stallman å’Œ David MacKenzie" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" + +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" + +#: src/nl.c:504 +#, fuzzy, c-format +msgid "invalid starting line number: `%s'" +msgstr "无效的 major è®¾å¤‡å· %s" + +#: src/nl.c:514 +#, fuzzy, c-format +msgid "invalid line number increment: `%s'" +msgstr "无效的行宽数值:%s" + +#: src/nl.c:527 +#, fuzzy, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "%s:覆盖次数无效" + +#: src/nl.c:541 +#, fuzzy, c-format +msgid "invalid line number field width: `%s'" +msgstr "无效的行宽数值:%s" + +#: src/od.c:287 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"用法:%s [选项]... 组 文件...\n" +" 或:%s [选项]... --reference=å‚考文件 文件...\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/od.c:299 +#, fuzzy +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "é•¿é€‰é¡¹å¿…é¡»ç”¨çš„å‚æ•°åœ¨ä½¿ç”¨çŸ­é€‰é¡¹æ—¶ä¹Ÿæ˜¯å¿…须的。\n" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" + +#: src/od.c:722 src/od.c:844 +#, fuzzy, c-format +msgid "invalid type string `%s'" +msgstr "æƒé™æ¨¡å¼å­—串无效:%s " + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" + +#: src/od.c:917 +#, fuzzy, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "æƒé™æ¨¡å¼å­—串 %2$s 中出现无效的字符 %1$s" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "" + +#: src/od.c:1717 +#, fuzzy +msgid "skip argument" +msgstr "ç¼ºå°‘äº†æ–‡ä»¶å‚æ•°" + +#: src/od.c:1725 +#, fuzzy +msgid "limit argument" +msgstr "æœ‰æ•ˆçš„å‚æ•°ä¸ºï¼š" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "" + +#: src/od.c:1740 src/od.c:1806 +#, fuzzy, c-format +msgid "%s is too large" +msgstr "%s:文件过大" + +#: src/od.c:1804 +msgid "width specification" +msgstr "" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "" + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "" + +#: src/paste.c:50 +#, fuzzy +msgid "David M. Ihnat and David MacKenzie" +msgstr "Mike Parker å’Œ David MacKenzie" + +#: src/paste.c:208 +#, fuzzy +msgid "standard input is closed" +msgstr "标准输入" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" + +#: src/pathchk.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "用法:%s [选项] åç§°...\n" + +#: src/pathchk.c:147 +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" + +#: src/pathchk.c:237 +#, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "" + +#: src/pathchk.c:257 +#, fuzzy, c-format +msgid "`%s' is not a directory" +msgstr "%s是目录" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "" + +#: src/pathchk.c:355 +#, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "" + +#: src/pathchk.c:381 +#, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "" + +#: src/pinky.c:35 src/uptime.c:39 +#, fuzzy +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "Mike Parkerã€David MacKenzie å’Œ Jim Meyering" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "" + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "" + +#: src/pinky.c:298 +msgid "???\n" +msgstr "" + +#: src/pinky.c:318 +#, fuzzy +msgid "Directory: " +msgstr "目录" + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "" + +#: src/pinky.c:341 +msgid "Project: " +msgstr "" + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "" + +#: src/pinky.c:386 +msgid "Login" +msgstr "" + +#: src/pinky.c:388 +msgid "Name" +msgstr "" + +#: src/pinky.c:389 +msgid " TTY" +msgstr "" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "" + +#: src/pinky.c:392 +msgid "When" +msgstr "" + +#: src/pinky.c:395 +msgid "Where" +msgstr "" + +#: src/pinky.c:469 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "用法:%s [选项]... [文件]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" + +#: src/pinky.c:574 +msgid "no username specified; at least one must be specified when using -l" +msgstr "" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "" + +#: src/pr.c:805 +#, fuzzy, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "æ— æ•ˆçš„ç»„ä»£å· %s" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "" + +#: src/pr.c:829 +#, fuzzy, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "æ— æ•ˆçš„ç»„ä»£å· %s" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "" + +#: src/pr.c:1000 +#, fuzzy, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "无效的 minor è®¾å¤‡å· %s" + +#: src/pr.c:1012 +#, fuzzy, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "无效的行宽数值:%s" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "" + +#: src/pr.c:1079 +#, fuzzy +msgid "%b %e %H:%M %Y" +msgstr "%b %e %H:%M" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "" + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "" + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "" + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" + +#: src/pr.c:2766 +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" + +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr "" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" + +#: src/printenv.c:43 +#, fuzzy +msgid "David MacKenzie and Richard Mlynarik" +msgstr "Mike Parkerã€David MacKenzie å’Œ Jim Meyering" + +#: src/printenv.c:63 +#, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "" + +#: src/printf.c:100 +#, fuzzy, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"用法:%s 文件\n" +" 或:%s 选项\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "" + +#: src/printf.c:292 +#, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "" + +#: src/printf.c:472 +#, fuzzy, c-format +msgid "invalid field width: %s" +msgstr "无效的行宽数值:%s" + +#: src/printf.c:498 +#, fuzzy, c-format +msgid "invalid precision: %s" +msgstr "è½¬æ¢æ— æ•ˆï¼š%s" + +#: src/printf.c:519 +#, fuzzy, c-format +msgid "%%%c: invalid directive" +msgstr "%sï¼šæ–‡ä»¶å¤§å°æ— æ•ˆ" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "" + +#: src/printf.c:594 +#, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" + +#: src/pwd.c:74 +#, fuzzy +msgid "ignoring non-option arguments" +msgstr "å¿½ç•¥ä»»ä½•å‚æ•°" + +#: src/pwd.c:78 +#, fuzzy +msgid "cannot get current directory" +msgstr "无法创建目录%s" + +#: src/readlink.c:69 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "用法:%s [选项]... [文件]\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" + +#: src/remove.c:394 +#, c-format +msgid "cannot chdir from %s to .." +msgstr "无法从%s目录切æ¢åˆ° .. 目录" + +#: src/remove.c:407 src/remove.c:488 +#, c-format +msgid "cannot lstat `.' in %s" +msgstr "无法在%s中 lstat‘.’" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "%sçš„ dev/ino å˜äº†" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, c-format +msgid "cannot lstat %s" +msgstr "lstat%s失败" + +#: src/remove.c:603 +#, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "%s:是å¦è¿›å…¥æœ‰å†™ä¿æŠ¤çš„目录%s? " + +#: src/remove.c:604 +#, c-format +msgid "%s: descend into directory %s? " +msgstr "%s:是å¦è¿›å…¥ç›®å½•%s? " + +#: src/remove.c:614 +#, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s:是å¦åˆ é™¤æœ‰å†™ä¿æŠ¤çš„%s%s? " + +#: src/remove.c:615 +#, c-format +msgid "%s: remove %s %s? " +msgstr "%s:是å¦åˆ é™¤%s%s? " + +#: src/remove.c:639 +#, c-format +msgid "removed %s\n" +msgstr "已删除%s\n" + +#: src/remove.c:654 src/remove.c:1059 +#, c-format +msgid "removed directory: %s\n" +msgstr "已删除目录:%s\n" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, c-format +msgid "cannot remove directory %s" +msgstr "无法删除目录%s" + +#: src/remove.c:815 +#, c-format +msgid "cannot open directory %s" +msgstr "无法打开目录%s" + +#: src/remove.c:896 src/remove.c:1002 +#, c-format +msgid "cannot chdir from %s to %s" +msgstr "无法从%s切æ¢åˆ°ç›®å½•%s" + +#: src/remove.c:904 +#, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +" 警告:å‘现循环的目录架构。\n" +"这几乎å¯ä»¥è‚¯å®šæ–‡ä»¶ç³»ç»Ÿå·²ç»æŸå。\n" +"** 请告诉系统管ç†å‘˜ã€‚**\n" +"以下的目录是循环的一部份:\n" +" %s\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "无法删除‘.’或‘..’" + +#: src/rm.c:60 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "Mike Parkerã€David MacKenzie å’Œ Jim Meyering" + +#: src/rm.c:99 src/touch.c:244 +#, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "用法:%s [选项]... 目录...\n" + +#: src/rm.c:100 +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"删除指定的<文件>(å³è§£é™¤é“¾æŽ¥)。\n" +"\n" +" -d, --directory 删除å¯èƒ½ä»æœ‰æ•°æ®çš„目录 (åªé™è¶…级用户)\n" +" -f, --force 略过ä¸å­˜åœ¨çš„æ–‡ä»¶ï¼Œä¸æ˜¾ç¤ºä»»ä½•ä¿¡æ¯\n" +" -i, --interactive 进行任何删除æ“作å‰å¿…须先确认\n" +" -r, -R, --recursive åŒæ—¶åˆ é™¤è¯¥ç›®å½•下的所有目录层\n" +" -v, --verbose 详细显示进行的步骤\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" +"\n" +"è¦åˆ é™¤ç¬¬ä¸€ä¸ªå­—符为‘-’的文件 (例如‘-foo’)ï¼Œè¯·ä½¿ç”¨ä»¥ä¸‹å…¶ä¸­ä¸€ç§æ–¹æ³•:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" +"\n" +"请注æ„,如果使用 rm æ¥åˆ é™¤æ–‡ä»¶ï¼Œé€šå¸¸ä»å¯ä»¥å°†è¯¥æ–‡ä»¶æ¢å¤åŽŸçŠ¶ã€‚å¦‚æžœæƒ³ä¿è¯\n" +"该文件的内容无法还原,请考虑使用 shred。\n" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, c-format +msgid "removing directory, %s" +msgstr "正在删除目录 %s" + +#: src/rmdir.c:146 +#, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "用法:%s [选项]... 目录...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" +"如果<目录>没有数æ®åˆ™åˆ é™¤è¯¥ç›®å½•。\n" +"\n" +" --ignore-fail-on-non-empty\n" +" å¿½ç•¥ä»»ä½•å› ç›®å½•ä»æœ‰æ•°æ®è€Œé€ æˆçš„错误\n" + +#: src/rmdir.c:154 +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +" -p, --parents 删除<目录>,然åŽå°è¯•删除指定路径中的所有上层目录。例如:\n" +" ‘rmdir -p a/b/c’的效果等於‘rmdir a/b/c a/b a’。\n" +" -v, --verbose å¤„ç†æ¯ä¸ªç›®å½•时都显示信æ¯\n" + +#: src/seq.c:82 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"用法:%s [选项]... æ¥æº 目的地\n" +" 或:%s [选项]... æ¥æº... 目录\n" +" 或:%s [选项]... --target-directory=目录 æ¥æº...\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" + +#: src/seq.c:96 +#, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" + +#: src/seq.c:119 +#, fuzzy, c-format +msgid "invalid floating point argument: %s" +msgstr "æ—¥æœŸæ ¼å¼ %s 无效" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" + +#: src/seq.c:423 +#, fuzzy, c-format +msgid "invalid format string: `%s'" +msgstr "æƒé™æ¨¡å¼å­—串无效:%s " + +#: src/seq.c:445 +#, fuzzy +msgid "format string may not be specified when printing equal width strings" +msgstr "安装目录时ä¸èƒ½ç”¨ strip 选项" + +#: src/shred.c:160 +#, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "用法:%s [选项] 文件 [...]\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "é‡å¤è¦†ç›–<文件>,使得å³ä½¿æ˜¯æ˜‚贵的硬件探测仪器也难以将数æ®å¤åŽŸã€‚\n" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" +" -f, --force æœ‰éœ€è¦æ—¶å¼ºè¿«ç¨‹åºå¯å†™å…¥æ–‡ä»¶\n" +" -n, --iterations=N 自行指定é‡å¤è¦†ç›–的次数 (默认为 %d 次)\n" +" -s, --size=N 覆盖指定的字节数目 (å¯æŽ¥å— Kã€Mã€G 等等的å•ä½)\n" + +#: src/shred.c:174 +#, fuzzy +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" +" -u, --remove 覆盖åŽä¼šæˆªæ–­åŠåˆ é™¤è¯¥æ–‡ä»¶\n" +" -v, --verbose 显示进度\n" +" -x, --exact ä¸å°†æ–‡ä»¶å¤§å°å¢žåŠ è‡³æœ€æŽ¥è¿‘çš„å—大å°\n" +" -z, --zero 最åŽä¸€æ¬¡ä¼šä½¿ç”¨ 0 字节进行覆盖æ¥éšè—覆盖动作\n" +" - 覆盖标准输出的数æ®\n" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" +"\n" +"如果加上 --remove (-u) 选项表示删除<文件>ã€‚é»˜è®¤çš„æ–¹å¼æ˜¯ä¸åˆ é™¤æ–‡ä»¶ï¼Œå› ä¸º\n" +"è¦†ç›–åƒ /dev/hda 等的设备文件是很普é的,而这些文件通常ä¸åº”删除。当覆盖\n" +"一般文件时,ç»å¤§å¤šæ•°äººéƒ½ä¼šä½¿ç”¨ --remove 选项。\n" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" +"警告:请注æ„使用 shred 时有一个很é‡è¦çš„æ¡ä»¶ï¼š\n" +"文件系统会在原æ¥çš„ä½ç½®è¦†ç›–指定的数æ®ã€‚ä¼ ç»Ÿçš„æ–‡ä»¶ç³»ç»Ÿç¬¦åˆæ­¤æ¡ä»¶ï¼Œä½†è®¸å¤šçް代\n" +"的文件系统都ä¸ç¬¦åˆæ¡ä»¶ã€‚以下是会令 shred 无效的文件系统的例å­ï¼š\n" +"\n" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" +"â— æœ‰çºªå½•ç»“æž„æˆ–æ˜¯æ—¥å¿—å¼æ–‡ä»¶ç³»ç»Ÿï¼Œåƒ AIX åŠ Solaris 使用的文件系统 (以åŠ\n" +" JFSã€ReiserFSã€XFSã€Ext3 等等)\n" +"\n" +"◠会é‡å¤å†™å…¥æ•°æ®ï¼ŒåŠå³ä½¿ä¸€éƒ¨ä»½å†™å…¥åŠ¨ä½œå¤±è´¥åŽä»å¯ç»§ç»­çš„æ–‡ä»¶ç³»ç»Ÿï¼Œåƒä½¿ç”¨\n" +" RAID 的文件系统\n" +"\n" +"â— ä¼šä¸æ—¶è¿›è¡Œå¿«ç…§çºªå½•çš„æ–‡ä»¶ç³»ç»Ÿï¼Œåƒ Network Applicance çš„ NFS æœåС噍\n" +"\n" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" +"◠会将快å–记忆放入暂存ä½ç½®çš„æ–‡ä»¶ç³»ç»Ÿï¼Œåƒ NFS 第 3 版本的客户端程åº\n" +"\n" +"◠会压缩数æ®çš„æ–‡ä»¶ç³»ç»Ÿ\n" +"\n" +"å¦å¤–,文件系统的备份åŠè¿œç¨‹çš„ mirror 都å¯èƒ½æ‰€æœ‰è¯¥æ–‡ä»¶çš„å¤åˆ¶æœ¬ï¼Œè¿™äº›å¤åˆ¶æœ¬\n" +"都是无法删除的,而且å¯èƒ½ä»¤å·²ç»ç”¨ shred 处ç†è¿‡çš„æ–‡ä»¶æ¢å¤åŽŸçŠ¶ã€‚\n" + +#: src/shred.c:808 +#, c-format +msgid "%s: cannot rewind" +msgstr "%s:无法å‘åŽæœå¯»" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "%1$s:%3$lu 次之第 %2$lu 次 (%4$s)..." + +#: src/shred.c:868 +#, c-format +msgid "%s: error writing at offset %s" +msgstr "%s:在ä½ç½® %s 写入时出现错误 " + +#: src/shred.c:897 +#, c-format +msgid "%s: file too large" +msgstr "%s:文件过大" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "%1$s:%3$lu 次之第 %2$lu 次 (%4$s)...%5$s" + +#: src/shred.c:936 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "%1$s:%3$lu 次之第 %2$lu 次 (%4$s)...%5$s/%6$s %7$d%%" + +#: src/shred.c:1195 +#, c-format +msgid "%s: invalid file type" +msgstr "%s:文件类型无效" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s:文件的大å°ä¸ºè´Ÿæ•°" + +#: src/shred.c:1265 +#, c-format +msgid "%s: error truncating" +msgstr "%s:截断文件时出现错误" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "%s:ä¸èƒ½å°†åªå¯åŠ ä¸Šæ•°æ®çš„æ–‡ä»¶æè¿°ç¬¦ (file descriptor) 进行 shred 动作" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "%s:正在删除" + +#: src/shred.c:1412 +#, c-format +msgid "%s: renamed to %s" +msgstr "%s:å称已更改为 %s" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s:已ç»åˆ é™¤" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "%s:无法删除" + +#: src/shred.c:1551 +#, c-format +msgid "%s: invalid number of passes" +msgstr "%s:覆盖次数无效" + +#: src/shred.c:1568 +#, c-format +msgid "%s: invalid file size" +msgstr "%sï¼šæ–‡ä»¶å¤§å°æ— æ•ˆ" + +#: src/sleep.c:34 +msgid "Jim Meyering and Paul Eggert" +msgstr "" + +#: src/sleep.c:52 +#, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" + +#: src/sleep.c:155 +#, fuzzy, c-format +msgid "invalid time interval `%s'" +msgstr "æ— æ•ˆçš„æ—¥æœŸæ—¶é—´æ ¼å¼ %s" + +#: src/sleep.c:166 src/tail.c:1031 +#, fuzzy +msgid "cannot read realtime clock" +msgstr "无法创建链接%s" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" + +#: src/sort.c:444 +#, fuzzy +msgid "cannot create temporary file" +msgstr "无法创建一般文件%s" + +#: src/sort.c:467 +#, fuzzy +msgid "open failed" +msgstr "strip 出现错误" + +#: src/sort.c:487 src/sort.c:2496 +#, fuzzy +msgid "close failed" +msgstr "strip 出现错误" + +#: src/sort.c:495 +#, fuzzy +msgid "write failed" +msgstr "strip 出现错误" + +#: src/sort.c:641 +#, fuzzy +msgid "sort size" +msgstr "å—大å°" + +#: src/sort.c:715 +#, fuzzy +msgid "stat failed" +msgstr "strip 出现错误" + +#: src/sort.c:972 +#, fuzzy +msgid "read failed" +msgstr "strip 出现错误" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "" + +#: src/sort.c:1574 +#, fuzzy +msgid "standard error" +msgstr "标准输出" + +#: src/sort.c:2032 +#, fuzzy, c-format +msgid "%s: invalid field specification `%s'" +msgstr "%sï¼šæ–‡ä»¶å¤§å°æ— æ•ˆ" + +#: src/sort.c:2058 +#, fuzzy, c-format +msgid "%s: count `%.*s' too large" +msgstr "%s:文件过大" + +#: src/sort.c:2064 +#, fuzzy, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "%s:覆盖次数无效" + +#: src/sort.c:2298 +#, fuzzy +msgid "invalid number after `-'" +msgstr "无效的å·ç  %s" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +#, fuzzy +msgid "invalid number after `.'" +msgstr "无效的å·ç  %s" + +#: src/sort.c:2304 src/sort.c:2383 +#, fuzzy +msgid "stray character in field spec" +msgstr "字符特殊文件" + +#: src/sort.c:2338 +#, fuzzy +msgid "invalid number at field start" +msgstr "无效的å·ç  %s" + +#: src/sort.c:2342 src/sort.c:2370 +#, fuzzy +msgid "field number is zero" +msgstr "无效的å·ç  %s" + +#: src/sort.c:2351 +#, fuzzy +msgid "character offset is zero" +msgstr "字符特殊文件" + +#: src/sort.c:2366 +#, fuzzy +msgid "invalid number after `,'" +msgstr "无效的å·ç  %s" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "" + +#: src/split.c:96 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "用法:%s [选项]... [文件]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" + +#: src/split.c:108 +#, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr "" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "" + +#: src/split.c:189 +#, fuzzy, c-format +msgid "creating file `%s'\n" +msgstr "正在创建目录 %s" + +#: src/split.c:341 +#, fuzzy +msgid "cannot split in more than one way" +msgstr "无法由多於一ç§çš„æ¥æºæ¥æŒ‡å®šæ—¶é—´" + +#: src/split.c:394 +#, fuzzy, c-format +msgid "%s: invalid suffix length" +msgstr "%s:文件类型无效" + +#: src/split.c:408 src/split.c:434 +#, fuzzy, c-format +msgid "%s: invalid number of bytes" +msgstr "%s:覆盖次数无效" + +#: src/split.c:421 +#, fuzzy, c-format +msgid "%s: invalid number of lines" +msgstr "%s:覆盖次数无效" + +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "" + +#: src/split.c:483 +#, fuzzy +msgid "invalid number" +msgstr "无效的å·ç  %s" + +#: src/stat.c:326 +#, fuzzy +msgid "*** invalid date/time ***" +msgstr "无效的æƒé™æ¨¡å¼%s" + +#: src/stat.c:608 +#, fuzzy, c-format +msgid "cannot read file system information for %s" +msgstr "无法创建 fifo 文件%s" + +#: src/stat.c:684 +#, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "用法:%s [选项] 文件...\n" + +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" + +#: src/stat.c:696 +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" + +#: src/stat.c:704 +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" + +#: src/stat.c:712 +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" + +#: src/stat.c:722 +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" + +#: src/stat.c:734 +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" + +#: src/stat.c:743 +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" + +#: src/stty.c:504 +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" + +#: src/stty.c:570 +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:608 +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" + +#: src/stty.c:787 +msgid "only one device may be specified" +msgstr "" + +#: src/stty.c:882 +#, fuzzy +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "" +"显示 dircolors 内部数æ®åº“的选项和选择 shell 语法的选项\n" +"是互相抵触的" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "" + +#: src/stty.c:957 src/stty.c:1064 +#, fuzzy, c-format +msgid "invalid argument `%s'" +msgstr "%2$s çš„å‚æ•° %1$s 无效" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, fuzzy, c-format +msgid "missing argument to `%s'" +msgstr "ç¼ºå°‘äº†æ–‡ä»¶å‚æ•°" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "" + +#: src/stty.c:1944 +#, fuzzy, c-format +msgid "invalid integer argument `%s'" +msgstr "%2$s çš„å‚æ•° %1$s 无效" + +#: src/su.c:289 +msgid "Password:" +msgstr "" + +#: src/su.c:292 +#, fuzzy +msgid "getpass: cannot open /dev/tty" +msgstr "无法打开目录%s" + +#: src/su.c:350 +#, fuzzy +msgid "cannot set groups" +msgstr "stat%s失败" + +#: src/su.c:354 +#, fuzzy +msgid "cannot set group id" +msgstr "æ— æ³•æ”¹å˜æ‰€å±žç»„至没有å称的组" + +#: src/su.c:356 +#, fuzzy +msgid "cannot set user id" +msgstr "stat%s失败" + +#: src/su.c:437 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "用法:%s [选项]... [文件]...\n" + +#: src/su.c:438 +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "" + +#: src/su.c:580 +#, fuzzy, c-format +msgid "warning: cannot change directory to %s" +msgstr "无法进入目录 %s" + +#: src/sum.c:36 +#, fuzzy +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "Mike Parker å’Œ David MacKenzie" + +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" +"强迫将已更改的数æ®å†™å…¥ç£ç›˜ï¼Œå¹¶æ›´æ–° super block。\n" +"\n" + +#: src/sync.c:70 src/tty.c:112 +msgid "ignoring all arguments" +msgstr "å¿½ç•¥ä»»ä½•å‚æ•°" + +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr " --help 显示此帮助信æ¯å¹¶ç¦»å¼€\n" + +#: src/sys2.h:494 +msgid " --version output version information and exit\n" +msgstr " --version 显示版本信æ¯å¹¶ç¦»å¼€\n" + +#: src/tac.c:54 +#, fuzzy +msgid "Jay Lepreau and David MacKenzie" +msgstr "Mike Parker å’Œ David MacKenzie" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tac.c:139 +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "" + +#: src/tail.c:49 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "Mike Parkerã€David MacKenzie å’Œ Jim Meyering" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" + +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" + +#: src/tail.c:271 +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" + +#: src/tail.c:331 +#, fuzzy, c-format +msgid "closing %s (fd=%d)" +msgstr "正在关闭%s" + +#: src/tail.c:391 +#, fuzzy, c-format +msgid "%s: cannot seek to offset %s" +msgstr "无法 lseek%s" + +#: src/tail.c:395 +#, fuzzy, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "无法创建 fifo 文件%s" + +#: src/tail.c:400 +#, fuzzy, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "无法创建 fifo 文件%s" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "" + +#: src/tail.c:1000 +#, fuzzy, c-format +msgid "%s: file truncated" +msgstr "%s:截断文件时出现错误" + +#: src/tail.c:1020 +#, fuzzy +msgid "no files remaining" +msgstr "ç¼ºå°‘äº†æ–‡ä»¶å‚æ•°" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "" + +#: src/tail.c:1356 +#, fuzzy, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "æƒé™æ¨¡å¼å­—串 %2$s 中出现无效的字符 %1$s" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" + +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "" + +#: src/tail.c:1510 +#, fuzzy, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "%s:覆盖次数无效" + +#: src/tail.c:1522 +#, fuzzy, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "%s:覆盖次数无效" + +#: src/tail.c:1534 +#, fuzzy, c-format +msgid "%s: invalid PID" +msgstr "%sï¼šæ–‡ä»¶å¤§å°æ— æ•ˆ" + +#: src/tail.c:1549 +#, fuzzy, c-format +msgid "%s: invalid number of seconds" +msgstr "%s:覆盖次数无效" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "" + +#: src/tail.c:1575 +#, fuzzy +msgid "warning: --pid=PID is not supported on this system" +msgstr "æ­¤ç³»ç»Ÿå¹¶ä¸æ”¯æŒç¬¦å·é“¾æŽ¥" + +#: src/tee.c:33 +#, fuzzy +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "Richard Stallman å’Œ David MacKenzie" + +#: src/tee.c:64 +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "" + +#: src/test.c:424 +msgid "before -lt" +msgstr "" + +#: src/test.c:432 +msgid "after -lt" +msgstr "" + +#: src/test.c:446 +msgid "before -le" +msgstr "" + +#: src/test.c:453 +msgid "after -le" +msgstr "" + +#: src/test.c:469 +msgid "before -gt" +msgstr "" + +#: src/test.c:476 +msgid "after -gt" +msgstr "" + +#: src/test.c:490 +msgid "before -ge" +msgstr "" + +#: src/test.c:497 +msgid "after -ge" +msgstr "" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "" + +#: src/test.c:526 +msgid "before -ne" +msgstr "" + +#: src/test.c:533 +msgid "after -ne" +msgstr "" + +#: src/test.c:549 +msgid "before -eq" +msgstr "" + +#: src/test.c:556 +msgid "after -eq" +msgstr "" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "" + +#: src/test.c:586 +msgid "-ot does not accept -l\n" +msgstr "" + +#: src/test.c:593 +#, fuzzy +msgid "unknown binary operator" +msgstr "未知的系统错误" + +#: src/test.c:781 +msgid "after -t" +msgstr "" + +#: src/test.c:979 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"用法:%s 文件\n" +" 或:%s 选项\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" + +#: src/test.c:1009 +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "" + +#: src/test.c:1125 +#, fuzzy +msgid "too many arguments\n" +msgstr "傿•°å¤ªå¤š" + +#: src/touch.c:39 +#, fuzzy +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "Richard Stallman å’Œ David MacKenzie" + +#: src/touch.c:164 src/touch.c:179 +#, c-format +msgid "creating %s" +msgstr "正在创建目录 %s" + +#: src/touch.c:222 +#, fuzzy, c-format +msgid "cannot touch %s" +msgstr "无法解除%s的链接" + +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "正在设定 %s 的时间" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "å°†æ¯ä¸ª<文件>的访问åŠä¿®æ”¹æ—¶é—´éƒ½æ›´æ–°ä¸ºç›®å‰çš„æ—¶é—´ã€‚\n" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" +" -a åªæ›´æ”¹è®¿é—®æ—¶é—´\n" +" -c, --no-create ä¸åˆ›å»ºä»»ä½•文件\n" +" -d, --date=字串 使用<字串>è¡¨ç¤ºçš„æ—¶é—´è€Œä¸æ˜¯ç›®å‰çš„æ—¶é—´\n" +" -f (此选项ä¸ä½œå¤„ç†)\n" +" -m åªæ›´æ”¹ä¿®æ”¹æ—¶é—´\n" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" +" -r, --reference=文件 使用指定<文件>的时间属性而éžç›®å‰çš„æ—¶é—´\n" +" -t STAMP 使用 [[CC]YY]MMDDhhmm[.ss] æ ¼å¼çš„æ—¶é—´è€Œéžç›®å‰çš„æ—¶" +"é—´\n" +" --time=WORD 使用 WORD 指定的时间:accessã€atimeã€use 都等於 -a\n" +" 选项的效果,而 modifyã€mtime 等於 -m 选项的效果\n" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" +"\n" +"请注æ„,-d å’Œ -t 选项坿ޥå—ä¸åŒçš„æ—¶é—´/日期格å¼ã€‚\n" + +#: src/touch.c:311 src/touch.c:331 +#, c-format +msgid "invalid date format %s" +msgstr "æ—¥æœŸæ ¼å¼ %s 无效" + +#: src/touch.c:355 +msgid "cannot specify times from more than one source" +msgstr "无法由多於一ç§çš„æ¥æºæ¥æŒ‡å®šæ—¶é—´" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "警告:‘touch %s’已ç»è¿‡æ—¶ï¼›è¯·ä½¿ç”¨â€˜touch -t %04d%02d%02d%02d%02d.%02d’" + +#: src/touch.c:399 +msgid "file arguments missing" +msgstr "ç¼ºå°‘äº†æ–‡ä»¶å‚æ•°" + +#: src/tr.c:327 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "用法:%s [选项]... [文件]\n" + +#: src/tr.c:331 +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" + +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" + +#: src/tr.c:566 +#, fuzzy +msgid "invalid backslash escape at end of string" +msgstr "æƒé™æ¨¡å¼å­—串 %2$s 中出现无效的字符 %1$s" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "" + +#: src/tr.c:1025 +#, fuzzy, c-format +msgid "invalid character class `%s'" +msgstr "æƒé™æ¨¡å¼å­—串 %2$s 中出现无效的字符 %1$s" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" + +#: src/true.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "" + +#: src/tty.c:63 +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "" + +#: src/uname.c:111 +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" + +#: src/uname.c:226 +msgid "cannot get system name" +msgstr "" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" + +#: src/unexpand.c:387 +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" + +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "" + +#: src/uniq.c:139 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "用法:%s [选项]... [文件]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr "" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" + +#: src/uniq.c:381 +#, fuzzy, c-format +msgid "error reading %s" +msgstr "正在读入%s" + +#: src/uniq.c:386 +#, fuzzy, c-format +msgid "error writing %s" +msgstr "正在写入%s" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "" + +#: src/uniq.c:473 src/uniq.c:498 +#, fuzzy +msgid "invalid number of fields to skip" +msgstr "%s:覆盖次数无效" + +#: src/uniq.c:507 +#, fuzzy +msgid "invalid number of bytes to skip" +msgstr "%s:覆盖次数无效" + +#: src/uniq.c:516 +#, fuzzy +msgid "invalid number of bytes to compare" +msgstr "%s:覆盖次数无效" + +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "" + +#: src/unlink.c:51 +#, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"用法:%s 文件\n" +" 或:%s 选项\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" + +#: src/unlink.c:99 +#, c-format +msgid "cannot unlink %s" +msgstr "无法解除%s的链接" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr "" + +#: src/uptime.c:140 +msgid "am" +msgstr "" + +#: src/uptime.c:140 +msgid "pm" +msgstr "" + +#: src/uptime.c:142 +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#: src/uptime.c:144 +#, fuzzy, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "无效的用户" +msgstr[1] "无效的用户" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr "" + +#: src/uptime.c:191 src/users.c:118 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "用法:%s [选项]... [文件]\n" + +#: src/uptime.c:192 +#, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" + +#: src/users.c:35 +#, fuzzy +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "Mike Parker å’Œ David MacKenzie" + +#: src/users.c:119 +#, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" + +#: src/wc.c:75 +#, fuzzy +msgid "Paul Rubin and David MacKenzie" +msgstr "Mike Parker å’Œ David MacKenzie" + +#: src/wc.c:129 +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" + +#: src/who.c:41 +#, fuzzy +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "Mike Parkerã€David MacKenzie å’Œ Jim Meyering" + +#: src/who.c:223 +msgid " old " +msgstr "" + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "" + +#: src/who.c:446 +msgid "clock change" +msgstr "" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" + +#: src/who.c:498 +msgid "NAME" +msgstr "" + +#: src/who.c:498 +msgid "LINE" +msgstr "" + +#: src/who.c:498 +msgid "TIME" +msgstr "" + +#: src/who.c:498 +msgid "IDLE" +msgstr "" + +#: src/who.c:498 +msgid "PID" +msgstr "" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "" + +#: src/who.c:499 +msgid "EXIT" +msgstr "" + +#: src/who.c:574 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "用法:%s [选项]... [文件]\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" + +#: src/who.c:711 +#, fuzzy +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "" +"警告:--version-control (-V) 选项已ç»è¿‡æ—¶ï¼›å°†æ¥çš„ç‰ˆæœ¬éšæ—¶å¯èƒ½ä¸å†æ”¯æŒ\n" +"此选项。请使用 --backup=%s。" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" + +#: src/whoami.c:53 +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "" + +#: src/yes.c:49 +#, fuzzy, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"用法:%s 文件\n" +" 或:%s 选项\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" + +#, fuzzy +#~ msgid "\\%c: invalid escape" +#~ msgstr "%sï¼šæ–‡ä»¶å¤§å°æ— æ•ˆ" + +#~ msgid "program error" +#~ msgstr "程åºé”™è¯¯" + +#~ msgid "stack overflow" +#~ msgstr "堆栈溢出" + +#~ msgid " Type" +#~ msgstr " 类型" + +#, fuzzy +#~ msgid "cannot convert time" +#~ msgstr "stat%s失败" + +#, fuzzy +#~ msgid "cannot format time" +#~ msgstr "stat%s失败" + +#~ msgid "cannot change to `..' from directory %s" +#~ msgstr "无法由目录 %s 进入‘..’" + +#~ msgid "missing file arguments" +#~ msgstr "ç¼ºå°‘äº†æ–‡ä»¶å‚æ•°" + +#, fuzzy +#~ msgid "environment variable, QUOTING_STYLE" +#~ msgstr "忽略无效的环境å˜é‡ QUOTING_STYLE çš„å˜é‡å€¼ï¼š%s" + +#, fuzzy +#~ msgid "cannot execute %s" +#~ msgstr "无法 lseek%s" + +#~ msgid "Try %s --help' for more information.\n" +#~ msgstr "请å°è¯•执行‘%s --help’æ¥èŽ·å–æ›´å¤šä¿¡æ¯ã€‚\n" diff --git a/src/apps/bin/coreutils-5.0/po/zh_TW.gmo b/src/apps/bin/coreutils-5.0/po/zh_TW.gmo new file mode 100644 index 0000000000..10c601000a Binary files /dev/null and b/src/apps/bin/coreutils-5.0/po/zh_TW.gmo differ diff --git a/src/apps/bin/coreutils-5.0/po/zh_TW.po b/src/apps/bin/coreutils-5.0/po/zh_TW.po new file mode 100644 index 0000000000..b208ab9511 --- /dev/null +++ b/src/apps/bin/coreutils-5.0/po/zh_TW.po @@ -0,0 +1,7631 @@ +# traditional Chinese translation of textutils. +# Copyright (C) 1998, 2002 Free Software Foundation, Inc. +# Yuan-Chung Cheng , 1998. +# Abel Cheung , 2002. +# +msgid "" +msgstr "" +"Project-Id-Version: textutils 2.1\n" +"POT-Creation-Date: 2003-03-31 10:45+0200\n" +"PO-Revision-Date: 2002-08-04 06:10+0800\n" +"Last-Translator: Abel Cheung \n" +"Language-Team: Chinese (traditional) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" + +#: lib/argmatch.c:135 +#, c-format +msgid "invalid argument %s for %s" +msgstr "%2$s的引數%1$s無效" + +#: lib/argmatch.c:136 +#, c-format +msgid "ambiguous argument %s for %s" +msgstr "%2$s的引數%1$s䏿˜Žç¢º" + +#: lib/argmatch.c:155 +msgid "Valid arguments are:" +msgstr "有效的引數為:" + +#: lib/closeout.c:103 src/cat.c:189 src/cat.c:272 src/cat.c:326 +#: src/cksum.c:269 src/head.c:152 src/head.c:196 src/tail.c:323 +#: src/tail.c:1659 src/tr.c:1666 src/tr.c:1912 src/tr.c:2020 +msgid "write error" +msgstr "寫入時發生錯誤" + +#: lib/error.c:133 lib/error.c:161 +msgid "Unknown system error" +msgstr "䏿˜Žçš„系統錯誤" + +#: lib/file-type.c:42 +msgid "regular empty file" +msgstr "普通空白檔案" + +#: lib/file-type.c:42 +msgid "regular file" +msgstr "普通檔案" + +#: lib/file-type.c:45 +msgid "directory" +msgstr "目錄" + +#: lib/file-type.c:48 +msgid "block special file" +msgstr "å€å¡Šç‰¹æ®Šæª”案" + +#: lib/file-type.c:51 +msgid "character special file" +msgstr "字元特殊檔案" + +#: lib/file-type.c:54 +msgid "fifo" +msgstr "fifo" + +#: lib/file-type.c:57 +msgid "symbolic link" +msgstr "符號連çµ" + +#: lib/file-type.c:60 +msgid "socket" +msgstr "socket" + +#: lib/file-type.c:63 +msgid "message queue" +msgstr "訊æ¯ä½‡åˆ—" + +#: lib/file-type.c:66 +msgid "semaphore" +msgstr "semaphore" + +#: lib/file-type.c:69 +msgid "shared memory object" +msgstr "共用記憶體物件" + +#: lib/file-type.c:71 +msgid "weird file" +msgstr "䏿­£å¸¸çš„æª”案" + +#: lib/getopt.c:688 lib/getopt.c:700 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s:é¸é …‘%sâ€™ä¸æ˜Žç¢º\n" + +#: lib/getopt.c:733 lib/getopt.c:737 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s:é¸é …‘--%s’ä¸å¯é…åˆå¼•數使用\n" + +#: lib/getopt.c:746 lib/getopt.c:751 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s:é¸é …‘%c%s’ä¸å¯é…åˆå¼•數使用\n" + +#: lib/getopt.c:787 lib/getopt.c:800 lib/getopt.c:1089 lib/getopt.c:1102 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s:é¸é …‘%s’需è¦å¼•數\n" + +#: lib/getopt.c:838 lib/getopt.c:841 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s:無法識別的é¸é …‘--%s’\n" + +#: lib/getopt.c:849 lib/getopt.c:852 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s:無法識別的é¸é …‘%c%s’\n" + +#: lib/getopt.c:899 lib/getopt.c:902 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s:ä¸åˆæ³•çš„é¸é … ─ %c\n" + +#: lib/getopt.c:908 lib/getopt.c:911 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s:無效的é¸é … ─ %c\n" + +#: lib/getopt.c:958 lib/getopt.c:969 lib/getopt.c:1155 lib/getopt.c:1168 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s:é¸é …需è¦å¼•數 ─ %c\n" + +#: lib/getopt.c:1021 lib/getopt.c:1032 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s:é¸é …‘-W %sâ€™ä¸æ˜Žç¢º\n" + +#: lib/getopt.c:1056 lib/getopt.c:1068 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s:é¸é …‘-W %s’ä¸å¯é…åˆå¼•數使用\n" + +#: lib/human.c:519 +msgid "block size" +msgstr "å€å¡Šå¤§å°éŒ¯èª¤" + +#: lib/makepath.c:124 src/df.c:497 src/remove.c:402 +msgid "failed to return to initial working directory" +msgstr "" + +#: lib/makepath.c:173 src/copy.c:1288 src/mkdir.c:170 +#, c-format +msgid "cannot create directory %s" +msgstr "無法建立目錄%s" + +#: lib/makepath.c:179 lib/makepath.c:421 src/cp.c:446 src/cp.c:468 +#, c-format +msgid "%s exists but is not a directory" +msgstr "%så·²å­˜åœ¨ä½†ä¸æ˜¯ç›®éŒ„" + +#: lib/makepath.c:316 lib/makepath.c:378 lib/makepath.c:440 +#, c-format +msgid "cannot change owner and/or group of %s" +msgstr "無法更改%sçš„æ“æœ‰è€…å’Œ/或所屬群組" + +#: lib/makepath.c:338 +#, c-format +msgid "cannot chdir to directory %s" +msgstr "無法進入%s目錄" + +#: lib/makepath.c:392 lib/makepath.c:446 +#, c-format +msgid "cannot change permissions of %s" +msgstr "無法更改%s的權é™" + +#: lib/obstack.c:487 lib/obstack.c:490 lib/xmalloc.c:63 +msgid "memory exhausted" +msgstr "記憶體耗盡" + +#: lib/quotearg.c:236 +msgid "`" +msgstr "‘" + +#: lib/quotearg.c:237 +msgid "'" +msgstr "’" + +#: lib/rpmatch.c:78 +msgid "^[yY]" +msgstr "^[yY]" + +#: lib/rpmatch.c:81 +msgid "^[nN]" +msgstr "^[nN]" + +#: lib/unicodeio.c:155 +msgid "iconv function not usable" +msgstr "iconv 功能無法使用" + +#: lib/unicodeio.c:157 +msgid "iconv function not available" +msgstr "iconv 功能ä¸å­˜åœ¨" + +#: lib/unicodeio.c:164 +msgid "character out of range" +msgstr "å­—å…ƒå€¼è¶…å‡ºå¯æŽ¥å—的範åœä»¥å¤–" + +#: lib/unicodeio.c:227 +#, c-format +msgid "cannot convert U+%04X to local character set" +msgstr "無法將 U+%04X 轉æ›è‡³ä½¿ç”¨è€…的字元集" + +#: lib/unicodeio.c:229 +#, c-format +msgid "cannot convert U+%04X to local character set: %s" +msgstr "無法將 U+%04X 轉æ›è‡³ä½¿ç”¨è€…的字元集:%s" + +#: lib/userspec.c:174 +msgid "invalid user" +msgstr "無效的使用者" + +#: lib/userspec.c:175 +msgid "invalid group" +msgstr "無效的群組" + +#: lib/userspec.c:177 +msgid "cannot get the login group of a numeric UID" +msgstr "無法å–å¾— UID 數值所代表的登入群組" + +#: lib/userspec.c:179 +msgid "cannot omit both user and group" +msgstr "ä¸å¯åŒæ™‚çœç•¥ä½¿ç”¨è€…和所屬群組" + +#: lib/version-etc.c:57 +#, c-format +msgid "Written by %s.\n" +msgstr "ç”± %s 編寫。\n" + +#: lib/version-etc.c:63 +msgid "" +"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" +msgstr "" +"這是自由軟體;請åƒè€ƒåŽŸå§‹ç¢¼çš„ç‰ˆæ¬Šè²æ˜Žã€‚æœ¬è»Ÿé«”ä¸æä¾›ä»»ä½•ä¿è­‰ï¼Œç”šè‡³ä¸æœƒåŒ…括\n" +"å¯å”®æ€§æˆ–é©ç”¨æ–¼ä»»ä½•特定目的的ä¿è­‰ã€‚\n" + +#: lib/xmemcoll.c:57 +msgid "string comparison failed" +msgstr "字串比較出ç¾éŒ¯èª¤" + +#: lib/xmemcoll.c:58 +msgid "Set LC_ALL='C' to work around the problem." +msgstr "請設定 LC_ALL='C' é¿å…å•題出ç¾ã€‚" + +#: lib/xmemcoll.c:60 +#, c-format +msgid "The strings compared were %s and %s." +msgstr "è¦æ¯”較的字串為%såŠ%s。" + +#: src/basename.c:50 src/cat.c:88 src/chgrp.c:122 src/chmod.c:238 +#: src/chown.c:95 src/chroot.c:41 src/cksum.c:278 src/comm.c:69 src/cp.c:160 +#: src/csplit.c:1492 src/cut.c:170 src/date.c:113 src/dd.c:284 src/df.c:707 +#: src/dircolors.c:99 src/dirname.c:42 src/du.c:170 src/echo.c:73 +#: src/env.c:115 src/expand.c:106 src/expr.c:86 src/factor.c:70 src/fmt.c:267 +#: src/fold.c:63 src/head.c:84 src/hostid.c:44 src/hostname.c:63 src/id.c:83 +#: src/install.c:593 src/join.c:140 src/kill.c:89 src/link.c:47 src/ln.c:335 +#: src/logname.c:44 src/ls.c:3757 src/md5sum.c:121 src/mkdir.c:57 +#: src/mkfifo.c:51 src/mknod.c:51 src/mv.c:307 src/nice.c:63 src/nl.c:172 +#: src/od.c:283 src/paste.c:399 src/pathchk.c:142 src/pinky.c:465 +#: src/pr.c:2750 src/printenv.c:59 src/printf.c:96 src/ptx.c:1855 src/pwd.c:42 +#: src/readlink.c:65 src/rm.c:95 src/rmdir.c:142 src/seq.c:78 src/shred.c:156 +#: src/sleep.c:48 src/sort.c:272 src/split.c:92 src/stat.c:680 src/stty.c:494 +#: src/su.c:433 src/sum.c:56 src/sync.c:40 src/tac.c:123 src/tail.c:230 +#: src/tee.c:59 src/test.c:975 src/touch.c:240 src/tr.c:323 src/tsort.c:93 +#: src/tty.c:58 src/uname.c:106 src/unexpand.c:371 src/uniq.c:135 +#: src/unlink.c:47 src/uptime.c:187 src/users.c:114 src/wc.c:121 src/who.c:570 +#: src/whoami.c:48 src/yes.c:45 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "請嘗試執行‘%s --help’來ç²å–更多資訊。\n" + +#: src/basename.c:54 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME [SUFFIX]\n" +" or: %s OPTION\n" +msgstr "" +"用法:%s [檔案]...\n" +" 或:%s [é¸é …]\n" + +#: src/basename.c:59 +msgid "" +"Print NAME with any leading directory components removed.\n" +"If specified, also remove a trailing SUFFIX.\n" +"\n" +msgstr "" + +#: src/basename.c:66 src/cat.c:124 src/chgrp.c:152 src/chmod.c:264 +#: src/chown.c:139 src/chroot.c:59 src/cksum.c:293 src/comm.c:86 src/cp.c:257 +#: src/csplit.c:1534 src/cut.c:215 src/date.c:215 src/dd.c:331 src/df.c:746 +#: src/dircolors.c:120 src/dirname.c:58 src/du.c:219 src/echo.c:105 +#: src/env.c:134 src/expand.c:131 src/expr.c:149 src/factor.c:90 +#: src/false.c:45 src/fmt.c:297 src/fold.c:86 src/head.c:115 src/hostid.c:57 +#: src/hostname.c:76 src/id.c:104 src/install.c:648 src/join.c:181 +#: src/kill.c:119 src/link.c:59 src/ln.c:390 src/logname.c:55 src/ls.c:3891 +#: src/md5sum.c:157 src/mkdir.c:76 src/mkfifo.c:68 src/mknod.c:82 src/mv.c:361 +#: src/nice.c:77 src/nl.c:227 src/od.c:370 src/paste.c:423 src/pathchk.c:154 +#: src/pinky.c:492 src/pr.c:2862 src/printenv.c:72 src/printf.c:144 +#: src/pwd.c:53 src/readlink.c:82 src/rm.c:127 src/rmdir.c:162 src/seq.c:104 +#: src/shred.c:220 src/sleep.c:64 src/sort.c:343 src/split.c:124 +#: src/stat.c:751 src/stty.c:708 src/su.c:454 src/sum.c:76 src/sync.c:51 +#: src/tac.c:146 src/tail.c:300 src/tee.c:72 src/test.c:1057 src/touch.c:271 +#: src/tr.c:396 src/true.c:45 src/tsort.c:105 src/tty.c:70 src/uname.c:128 +#: src/unexpand.c:395 src/uniq.c:174 src/unlink.c:58 src/uptime.c:202 +#: src/users.c:127 src/wc.c:143 src/who.c:613 src/whoami.c:60 src/yes.c:61 +#, c-format +msgid "" +"\n" +"Report bugs to <%s>.\n" +msgstr "" +"\n" +"è«‹å‘ <%s> 回報錯誤。\n" + +#: src/basename.c:114 src/chgrp.c:210 src/chmod.c:352 src/chown.c:211 +#: src/chroot.c:78 src/csplit.c:1464 src/dirname.c:89 src/expr.c:178 +#: src/install.c:284 src/link.c:87 src/mkdir.c:124 src/mkfifo.c:113 +#: src/mknod.c:137 src/pathchk.c:194 src/readlink.c:101 src/readlink.c:133 +#: src/rm.c:199 src/rmdir.c:206 src/seq.c:411 src/sleep.c:139 src/stat.c:802 +#: src/unlink.c:88 +msgid "too few arguments" +msgstr "引數éŽå°‘" + +#: src/basename.c:115 src/dircolors.c:482 src/dirname.c:90 src/hostid.c:79 +#: src/hostname.c:122 src/link.c:93 src/mknod.c:139 src/readlink.c:141 +#: src/seq.c:417 src/split.c:498 src/tr.c:1848 src/unlink.c:94 +#: src/uptime.c:244 src/users.c:169 src/who.c:764 +msgid "too many arguments" +msgstr "引數éŽå¤š" + +#: src/cat.c:42 src/split.c:43 +msgid "Torbjorn Granlund and Richard M. Stallman" +msgstr "Torbjorn Granlund åŠ Richard M. Stallman" + +#: src/cat.c:92 +#, c-format +msgid "Usage: %s [OPTION] [FILE]...\n" +msgstr "用法:%s [é¸é …] [檔案]...\n" + +#: src/cat.c:96 +msgid "" +"Concatenate FILE(s), or standard input, to standard output.\n" +"\n" +" -A, --show-all equivalent to -vET\n" +" -b, --number-nonblank number nonblank output lines\n" +" -e equivalent to -vE\n" +" -E, --show-ends display $ at end of each line\n" +" -n, --number number all output lines\n" +" -s, --squeeze-blank never more than one single blank line\n" +msgstr "" +"將由 <檔案> 或標準輸入讀å–的資料連çµèµ·ä¾†ï¼Œä¸¦åœ¨æ¨™æº–è¼¸å‡ºé¡¯ç¤ºçµæžœã€‚\n" +"\n" +" -A, --show-all 等於 -vET\n" +" -b, --number-nonblank 輸出時在éžç©ºç™½è¡ŒåŠ ä¸Šè¡Œè™Ÿ\n" +" -e 等於 -vE\n" +" -E, --show-ends 在æ¯ä¸€è¡Œæœ€å¾Œé¡¯ç¤º $ 記號\n" +" -n, --number 輸出時加上行號\n" +" -s, --squeeze-blank ä¸é€£çºŒè¼¸å‡ºè¶…éŽä¸€è¡Œç©ºè¡Œ\n" + +#: src/cat.c:106 +msgid "" +" -t equivalent to -vT\n" +" -T, --show-tabs display TAB characters as ^I\n" +" -u (ignored)\n" +" -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n" +msgstr "" +" -t 等於 -vT\n" +" -T, --show-tabs å°‡ TAB 字元顯示為 ^I\n" +" -u (æ­¤é¸é …ä¸ä½œè™•ç†)\n" +" -v, --show-nonprinting 除了æ›è¡ŒåŠ TAB 字元外,使用 ^ åŠ M- 表示法顯示字" +"å…ƒ\n" + +#: src/cat.c:114 src/sum.c:72 +msgid "" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"如果沒有指定<檔案>或<檔案>是 -,則由標準輸入讀å–資料。\n" + +#: src/cat.c:119 +msgid "" +"\n" +" -B, --binary use binary writes to the console device.\n" +"\n" +msgstr "" +"\n" +" -B, --binary (DOS/Windows)以二元碼模å¼å°‡è³‡æ–™è¼¸å‡ºè‡³ç•«é¢ã€‚\n" +"\n" + +#: src/cat.c:314 +#, c-format +msgid "cannot do ioctl on `%s'" +msgstr "無法å°â€˜%s’執行輸出入控制 (ioctl)" + +#: src/cat.c:669 src/dd.c:1222 src/od.c:1013 src/tee.c:181 +msgid "standard output" +msgstr "標準輸出" + +#: src/cat.c:800 +#, c-format +msgid "%s: input file is output file" +msgstr "%s:輸出和輸入檔案是相åŒçš„" + +#: src/cat.c:858 +#, fuzzy +msgid "closing standard input" +msgstr "標準輸出" + +#: src/cat.c:861 +#, fuzzy +msgid "closing standard output" +msgstr "標準輸出" + +#: src/chgrp.c:93 +#, fuzzy +msgid "cannot change to null group" +msgstr "無法更改%sçš„æ“æœ‰è€…å’Œ/或所屬群組" + +#: src/chgrp.c:102 +#, fuzzy, c-format +msgid "invalid group name %s" +msgstr "無效的群組" + +#: src/chgrp.c:106 +msgid "group number" +msgstr "群組代號" + +#: src/chgrp.c:109 +#, fuzzy, c-format +msgid "invalid group number %s" +msgstr "無效的數字" + +#: src/chgrp.c:126 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"用法:%s [é¸é …]... [檔案]...\n" +" 或:%s --traditional [檔案] [[+]å移值 [[+]標號]]\n" + +#: src/chgrp.c:131 +msgid "" +"Change the group membership of each FILE to GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"å°‡æ¯å€‹ <檔案> 的所屬群組設定為 <群組>。\n" +"\n" +" -c, --changes åƒ --verbose,但åªåœ¨æœ‰æ›´æ”¹æ™‚æ‰é¡¯ç¤ºçµæžœ\n" +" --dereference 會影響符號éˆçµæ‰€æŒ‡ç¤ºçš„å°è±¡ï¼Œè€Œéžç¬¦è™Ÿéˆçµæœ¬èº«\n" + +#: src/chgrp.c:138 src/chown.c:112 +msgid "" +" -h, --no-dereference affect symbolic links instead of any referenced " +"file\n" +" (available only on systems that can change the\n" +" ownership of a symlink)\n" +msgstr "" +" -h, --no-dereference 會影響符號éˆçµæœ¬èº«ï¼Œè€Œéžç¬¦è™Ÿéˆçµæ‰€æŒ‡ç¤ºçš„目的地\n" +" (ç•¶ç³»çµ±æ”¯æ´æ›´æ”¹ç¬¦è™Ÿéˆçµçš„æ“æœ‰è€…ï¼Œæ­¤é¸é …æ‰æœ‰æ•ˆ)\n" + +#: src/chgrp.c:143 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's group rather than the specified\n" +" GROUP value\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet 去除大部份的錯誤訊æ¯\n" +" --reference=åƒè€ƒæª” 使用 <åƒè€ƒæª”> çš„æ‰€å±¬ç¾¤çµ„ï¼Œè€ŒéžæŒ‡å®šçš„ <群組>\n" +" -R, --recursive éžè¿´è™•ç†æ‰€æœ‰çš„æª”案åŠå‰¯ç›®éŒ„\n" +" -v, --verbose 處ç†ä»»ä½•檔案都會顯示訊æ¯\n" + +#: src/chgrp.c:218 src/chmod.c:157 src/chmod.c:365 src/chown-core.c:235 +#: src/chown-core.c:247 src/chown.c:220 src/cp.c:303 src/touch.c:169 +#: src/touch.c:363 +#, c-format +msgid "failed to get attributes of %s" +msgstr "無法å–å¾—%s的屬性" + +#: src/chmod.c:102 +#, c-format +msgid "getting new attributes of %s" +msgstr "正在檢查%s的最新屬性" + +#: src/chmod.c:124 +#, c-format +msgid "mode of %s changed to %04lo (%s)\n" +msgstr "%sçš„æ¬Šé™æ¨¡å¼å·²æ›´æ”¹ç‚º %04lo (%s)\n" + +#: src/chmod.c:127 +#, c-format +msgid "failed to change mode of %s to %04lo (%s)\n" +msgstr "無法將%sçš„æ¬Šé™æ¨¡å¼æ›´æ”¹ç‚º %04lo (%s)\n" + +#: src/chmod.c:130 +#, c-format +msgid "mode of %s retained as %04lo (%s)\n" +msgstr "%sçš„æ¬Šé™æ¨¡å¼ä¿ç•™ç‚º %04lo (%s)\n" + +#: src/chmod.c:179 +#, fuzzy, c-format +msgid "changing permissions of %s" +msgstr "無法更改%s的權é™" + +#: src/chmod.c:242 +#, c-format +msgid "" +"Usage: %s [OPTION]... MODE[,MODE]... FILE...\n" +" or: %s [OPTION]... OCTAL-MODE FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"用法:%s [é¸é …]... 模å¼[,模å¼]... 檔案...\n" +" 或:%s [é¸é …]... 八進使¨¡å¼ 檔案...\n" +" 或:%s [é¸é …]... --reference=åƒè€ƒæª” 檔案...\n" + +#: src/chmod.c:248 +msgid "" +"Change the mode of each FILE to MODE.\n" +"\n" +" -c, --changes like verbose but report only when a change is " +"made\n" +" -f, --silent, --quiet suppress most error messages\n" +" -v, --verbose output a diagnostic for every file processed\n" +" --reference=RFILE use RFILE's mode instead of MODE values\n" +" -R, --recursive change files and directories recursively\n" +msgstr "" +"更改æ¯å€‹ <檔案> çš„æ¬Šé™ <模å¼>。\n" +"\n" +" -c, --changes 類似 --verbose,但åªåœ¨æœ‰æ›´æ”¹æ™‚æ‰é¡¯ç¤ºçµæžœ\n" +" -f, --silent, --quiet 去除大部份的錯誤訊æ¯\n" +" -v, --verbose 處ç†ä»»ä½•檔案都會顯示訊æ¯\n" +" --reference=åƒè€ƒæª” 使用 <åƒè€ƒæª”> 的模å¼ï¼Œè€Œéžè‡ªè¡ŒæŒ‡å®šæ¬Šé™æ¨¡å¼\n" +" -R, --recursive 以éžè¿´æ–¹å¼æ›´æ”¹æ‰€æœ‰çš„æª”案åŠå‰¯ç›®éŒ„\n" + +#: src/chmod.c:259 +msgid "" +"\n" +"Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n" +"one or more of the letters rwxXstugo.\n" +msgstr "" +"\n" +"<模å¼> 由三部份組æˆï¼šä¸€å€‹æˆ–以上的 ugoa å­—å…ƒã€ä¸€å€‹æˆ–以上的 +-=符號ã€\n" +"和一個或以上的 rwxXstugo 字元。\n" + +#: src/chmod.c:320 +#, fuzzy, c-format +msgid "invalid character %s in mode string %s" +msgstr "類型‘%2$sâ€™ä¸­å«æœ‰ç„¡æ•ˆçš„字元‘%1$c’。" + +#: src/chmod.c:361 +#, fuzzy, c-format +msgid "invalid mode string: %s" +msgstr "無效的類型‘%s’" + +#: src/chown-core.c:116 +#, c-format +msgid "neither symbolic link %s nor referent has been changed\n" +msgstr "符號éˆçµ%s和該éˆçµæ‰€æŒ‡ç¤ºçš„å°è±¡éƒ½æ²’有更改\n" + +#: src/chown-core.c:143 +#, c-format +msgid "changed ownership of %s to %s\n" +msgstr "%sçš„æ“æœ‰è€…已更改為 %s\n" + +#: src/chown-core.c:144 +#, c-format +msgid "changed group of %s to %s\n" +msgstr "%s的所屬群組已更改為 %s\n" + +#: src/chown-core.c:148 +#, fuzzy, c-format +msgid "failed to change ownership of %s to %s\n" +msgstr "無法更改%s的權é™" + +#: src/chown-core.c:149 +#, c-format +msgid "failed to change group of %s to %s\n" +msgstr "無法更改%s的所屬群組為 %s\n" + +#: src/chown-core.c:153 +#, c-format +msgid "ownership of %s retained as %s\n" +msgstr "%sçš„æ“æœ‰è€…å·²ä¿ç•™ç‚º %s\n" + +#: src/chown-core.c:154 +#, c-format +msgid "group of %s retained as %s\n" +msgstr "%s的所屬群組已ä¿ç•™ç‚º %s\n" + +#: src/chown-core.c:326 +#, c-format +msgid "changing ownership of %s" +msgstr "正在更改%sçš„æ“æœ‰è€…" + +#: src/chown-core.c:327 +#, fuzzy, c-format +msgid "changing group of %s" +msgstr "無法更改%sçš„æ“æœ‰è€…å’Œ/或所屬群組" + +#: src/chown-core.c:345 +#, fuzzy, c-format +msgid "unable to restore permissions of %s" +msgstr "無法更改%s的權é™" + +#: src/chown.c:99 +#, c-format +msgid "" +"Usage: %s [OPTION]... OWNER[:[GROUP]] FILE...\n" +" or: %s [OPTION]... :GROUP FILE...\n" +" or: %s [OPTION]... --reference=RFILE FILE...\n" +msgstr "" +"用法:%s [é¸é …]... æ“æœ‰è€…[:[群組]] 檔案...\n" +" 或:%s [é¸é …]... :群組 檔案...\n" +" 或:%s [é¸é …]... --reference=åƒè€ƒæª” 檔案...\n" + +#: src/chown.c:105 +msgid "" +"Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" +"\n" +" -c, --changes like verbose but report only when a change is made\n" +" --dereference affect the referent of each symbolic link, rather\n" +" than the symbolic link itself\n" +msgstr "" +"更改æ¯å€‹ <檔案> çš„ <æ“æœ‰è€…> åŠ/或 <所屬群組>。\n" +"\n" +" -c, --changes åƒ --verbose,但åªåœ¨æœ‰æ›´æ”¹æ™‚æ‰é¡¯ç¤ºçµæžœ\n" +" --dereference å—影響的是符號éˆçµæ‰€æŒ‡ç¤ºçš„å°è±¡ï¼Œè€Œéžç¬¦è™Ÿéˆçµæœ¬èº«\n" + +#: src/chown.c:117 +msgid "" +" --from=CURRENT_OWNER:CURRENT_GROUP\n" +" change the owner and/or group of each file only if\n" +" its current owner and/or group match those " +"specified\n" +" here. Either may be omitted, in which case a " +"match\n" +" is not required for the omitted attribute.\n" +msgstr "" +" --from=ç›®å‰æ“有者:ç›®å‰ç¾¤çµ„\n" +" åªç•¶æ¯å€‹æª”æ¡ˆçš„æ“æœ‰è€…和群組符åˆé¸é …所指定的,\n" +" æ‰æœƒæ›´æ”¹æ“有者和群組。其中一個å¯ä»¥çœç•¥ï¼Œé€™æ™‚\n" +" å·²çœç•¥çš„屬性就ä¸éœ€è¦ç¬¦åˆåŽŸæœ‰çš„å±¬æ€§ã€‚\n" + +#: src/chown.c:124 +msgid "" +" -f, --silent, --quiet suppress most error messages\n" +" --reference=RFILE use RFILE's owner and group rather than\n" +" the specified OWNER:GROUP values\n" +" -R, --recursive operate on files and directories recursively\n" +" -v, --verbose output a diagnostic for every file processed\n" +msgstr "" +" -f, --silent, --quiet 去除大部份的錯誤訊æ¯\n" +" --reference=åƒè€ƒæª” 使用 <åƒè€ƒæª”> çš„æ‰€å±¬ç¾¤çµ„ï¼Œè€ŒéžæŒ‡å®šçš„ <群組>\n" +" -R, --recursive éžè¿´è™•ç†æ‰€æœ‰çš„æª”案åŠå‰¯ç›®éŒ„\n" +" -v, --verbose 處ç†ä»»ä½•檔案都會顯示訊æ¯\n" + +#: src/chown.c:133 +msgid "" +"\n" +"Owner is unchanged if missing. Group is unchanged if missing, but changed\n" +"to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n" +"as symbolic.\n" +msgstr "" +"\n" +"如果沒有指定 <æ“æœ‰è€…>ï¼Œå‰‡ä¸æœƒæ›´æ”¹ã€‚<群組> è‹¥æ²’æœ‰æŒ‡å®šä¹Ÿä¸æœƒæ›´æ”¹ï¼Œ\n" +"但當加上‘:’時 <群組> æœƒæ›´æ”¹ç‚ºæŒ‡å®šæ“æœ‰è€…的主è¦ç¾¤çµ„。\n" +"<æ“æœ‰è€…> åŠ <群組> å¯ä»¥æ˜¯æ•¸å­—或å稱。\n" + +#: src/chroot.c:45 +#, fuzzy, c-format +msgid "" +"Usage: %s NEWROOT [COMMAND...]\n" +" or: %s OPTION\n" +msgstr "" +"用法:%s [檔案]...\n" +" 或:%s [é¸é …]\n" + +#: src/chroot.c:49 +msgid "" +"Run COMMAND with root directory set to NEWROOT.\n" +"\n" +msgstr "" + +#: src/chroot.c:55 +msgid "" +"\n" +"If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n" +msgstr "" + +#: src/chroot.c:84 +#, fuzzy, c-format +msgid "cannot change root directory to %s" +msgstr "無法進入%s目錄" + +#: src/chroot.c:87 +#, fuzzy +msgid "cannot chdir to root directory" +msgstr "無法進入%s目錄" + +#: src/cksum.c:234 +#, c-format +msgid "%s: file too long" +msgstr "%s:檔案éŽå¤§" + +#: src/cksum.c:282 +#, c-format +msgid "" +"Usage: %s [FILE]...\n" +" or: %s [OPTION]\n" +msgstr "" +"用法:%s [檔案]...\n" +" 或:%s [é¸é …]\n" + +#: src/cksum.c:287 +msgid "" +"Print CRC checksum and byte counts of each FILE.\n" +"\n" +msgstr "" +"å°å‡ºæ¯å€‹ <檔案> çš„ CRC 總和檢查值åŠä½å…ƒçµ„總數。\n" +"\n" + +#: src/comm.c:35 src/ls.c:131 src/uniq.c:40 +msgid "Richard Stallman and David MacKenzie" +msgstr "Richard Stallman åŠ David MacKenzie" + +#: src/comm.c:73 +#, c-format +msgid "Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n" +msgstr "用法:%s [é¸é …]... LEFT_FILE RIGHT_FILE\n" + +#: src/comm.c:77 +msgid "" +"Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n" +"\n" +" -1 suppress lines unique to left file\n" +" -2 suppress lines unique to right file\n" +" -3 suppress lines that appear in both files\n" +msgstr "" +"é€è¡Œæ¯”較兩個已排åºçš„æª”案 LEFT_FILE åŠ RIGHT_FILE。\n" +"\n" +" -1 ä¸é¡¯ç¤ºä»»ä½•一行åªåœ¨ LEFT_FILE 出ç¾éŽçš„資料\n" +" -2 ä¸é¡¯ç¤ºä»»ä½•一行åªåœ¨ RIGHT_FILE 出ç¾éŽçš„資料\n" +" -3 ä¸é¡¯ç¤ºå…©å€‹æª”æ¡ˆä¸­åŒæ™‚出ç¾çš„任何一行\n" + +#: src/copy.c:162 src/du.c:332 +#, c-format +msgid "cannot access %s" +msgstr "無法存å–%s" + +#: src/copy.c:226 +#, c-format +msgid "cannot open %s for reading" +msgstr "無法開啟%s來讀å–資料" + +#: src/copy.c:232 src/copy.c:286 src/copy.c:301 src/dd.c:1199 +#, c-format +msgid "cannot fstat %s" +msgstr "無法 fstat%s" + +#: src/copy.c:242 +#, c-format +msgid "skipping file %s, as it was replaced while being copied" +msgstr "ç•¥éŽæª”案%s,因為準備複製時它已被其它檔案å–代" + +#: src/copy.c:262 src/copy.c:1034 src/copy.c:1124 src/ln.c:291 +#: src/remove.c:727 src/remove.c:781 src/remove.c:893 src/remove.c:997 +#, fuzzy, c-format +msgid "cannot remove %s" +msgstr "無法建立目錄%s" + +#: src/copy.c:277 +#, fuzzy, c-format +msgid "cannot create regular file %s" +msgstr "無法建立暫存檔" + +#: src/copy.c:328 src/dd.c:816 src/dd.c:1010 +#, fuzzy, c-format +msgid "reading %s" +msgstr "è®€å– %s 時發生錯誤" + +#: src/copy.c:362 +#, fuzzy, c-format +msgid "cannot lseek %s" +msgstr "%s:無法æœå°‹è‡³ä½ç½® %s%s" + +#: src/copy.c:377 src/copy.c:401 src/dd.c:1054 src/dd.c:1115 +#, fuzzy, c-format +msgid "writing %s" +msgstr "寫入 %s 時發生錯誤" + +#: src/copy.c:409 src/copy.c:415 +#, fuzzy, c-format +msgid "closing %s" +msgstr "正在關閉 %s (fd=%d)" + +#: src/copy.c:610 +#, c-format +msgid "%s: overwrite %s, overriding mode %04lo? " +msgstr "%s:是å¦è¦†å¯«%s,而ä¸ç†æœƒæ¬Šé™æ¨¡å¼ %04lo? " + +#: src/copy.c:616 +#, c-format +msgid "%s: overwrite %s? " +msgstr "%s:是å¦è¦†å¯«%s? " + +#: src/copy.c:810 src/copy.c:848 src/stat.c:638 +#, fuzzy, c-format +msgid "cannot stat %s" +msgstr "無法建立目錄%s" + +#: src/copy.c:820 +#, fuzzy, c-format +msgid "omitting directory %s" +msgstr "無法建立目錄%s" + +#: src/copy.c:834 +#, c-format +msgid "warning: source file %s specified more than once" +msgstr "è­¦å‘Šï¼šæŒ‡å®šäº†ä¾†æºæª”%s多於一次" + +#: src/copy.c:866 src/ln.c:237 +#, c-format +msgid "%s and %s are the same file" +msgstr "%såŠ%s為åŒä¸€æª”案" + +#: src/copy.c:876 +#, fuzzy, c-format +msgid "cannot overwrite non-directory %s with directory %s" +msgstr "無法進入%s目錄" + +#: src/copy.c:893 +#, c-format +msgid "will not overwrite just-created %s with %s" +msgstr "䏿œƒä»¥%2$s覆寫剛建立的%1$s" + +#: src/copy.c:904 +#, fuzzy, c-format +msgid "cannot overwrite directory %s with non-directory" +msgstr "無法建立目錄%s" + +#: src/copy.c:965 +#, fuzzy, c-format +msgid "cannot overwrite directory %s" +msgstr "無法建立目錄%s" + +#: src/copy.c:974 +#, fuzzy, c-format +msgid "cannot move directory onto non-directory: %s -> %s" +msgstr "無法進入%s目錄" + +#: src/copy.c:997 +#, c-format +msgid "backing up %s would destroy source; %s not moved" +msgstr "å°‡%så‚™ä»½æœƒç ´å£žä¾†æºæª”,故ä¸ç§»å‹•%s。" + +#: src/copy.c:998 +#, c-format +msgid "backing up %s would destroy source; %s not copied" +msgstr "å°‡%så‚™ä»½æœƒç ´å£žä¾†æºæª”,故ä¸è¤‡è£½%s。" + +#: src/copy.c:1013 src/ln.c:273 +#, c-format +msgid "cannot backup %s" +msgstr "無法備份%s" + +#: src/copy.c:1049 src/ln.c:308 +#, c-format +msgid " (backup: %s)" +msgstr " (備份:%s)" + +#: src/copy.c:1099 +#, fuzzy, c-format +msgid "cannot copy a directory, %s, into itself, %s" +msgstr "無法建立目錄%s" + +#: src/copy.c:1106 +#, fuzzy, c-format +msgid "will not create hard link %s to directory %s" +msgstr "無法進入%s目錄" + +#: src/copy.c:1132 +#, fuzzy, c-format +msgid "cannot create hard link %s to %s" +msgstr "無法建立目錄%s" + +#: src/copy.c:1186 +#, fuzzy, c-format +msgid "cannot move %s to a subdirectory of itself, %s" +msgstr "無法進入%s目錄" + +#: src/copy.c:1229 +#, fuzzy, c-format +msgid "cannot move %s to %s" +msgstr "無法å°â€˜%s’執行輸出入控制 (ioctl)" + +#: src/copy.c:1241 +#, c-format +msgid "inter-device move failed: %s to %s; unable to remove target" +msgstr "無法進行跨è£ç½®çš„移動 (%s至%s);無法移除目標檔案或目錄" + +#: src/copy.c:1269 +#, c-format +msgid "cannot copy cyclic symbolic link %s" +msgstr "無法複製循環的符號éˆçµ%s" + +#: src/copy.c:1346 +#, c-format +msgid "%s: can make relative symbolic links only in current directory" +msgstr "%s:åªèƒ½æ–¼ç›®å‰çš„目錄中建立相å°ç¬¦è™Ÿéˆçµ" + +#: src/copy.c:1353 +#, fuzzy, c-format +msgid "cannot create symbolic link %s to %s" +msgstr "無法建立目錄%s" + +#: src/copy.c:1364 +#, fuzzy, c-format +msgid "cannot create link %s" +msgstr "無法建立目錄%s" + +#: src/copy.c:1389 src/mkfifo.c:133 +#, fuzzy, c-format +msgid "cannot create fifo %s" +msgstr "無法建立目錄%s" + +#: src/copy.c:1403 +#, fuzzy, c-format +msgid "cannot create special file %s" +msgstr "字元特殊檔案" + +#: src/copy.c:1415 src/ls.c:2493 src/stat.c:426 +#, fuzzy, c-format +msgid "cannot read symbolic link %s" +msgstr "符號連çµ" + +#: src/copy.c:1440 +#, fuzzy, c-format +msgid "cannot create symbolic link %s" +msgstr "無法建立目錄%s" + +#: src/copy.c:1456 src/copy.c:1519 src/cp.c:339 +#, c-format +msgid "failed to preserve ownership for %s" +msgstr "無法ä¿ç•™%sçš„æ“æœ‰è€…åŠæ‰€å±¬ç¾¤çµ„" + +#: src/copy.c:1471 +#, c-format +msgid "%s has unknown file type" +msgstr "%s的檔案類型ä¸è©³" + +#: src/copy.c:1506 +#, c-format +msgid "preserving times for %s" +msgstr "ä¿ç•™%s的時間" + +#: src/copy.c:1531 +#, c-format +msgid "failed to preserve authorship for %s" +msgstr "無法ä¿ç•™%s的著作者" + +#: src/copy.c:1549 +#, fuzzy, c-format +msgid "setting permissions for %s" +msgstr "無法更改%s的權é™" + +#: src/copy.c:1571 src/ln.c:326 +#, c-format +msgid "cannot un-backup %s" +msgstr "無法將%s的備份還原" + +#: src/copy.c:1575 +#, c-format +msgid "%s -> %s (unbackup)\n" +msgstr "%s→%s (還原備份)\n" + +#: src/cp.c:53 +#, fuzzy +msgid "Torbjorn Granlund, David MacKenzie, and Jim Meyering" +msgstr "David Ihnatã€David MacKenzie åŠ Jim Meyering" + +#: src/cp.c:164 src/mv.c:311 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST\n" +" or: %s [OPTION]... SOURCE... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY SOURCE...\n" +msgstr "" +"用法:%s [é¸é …]... ä¾†æº ç›®çš„åœ°\n" +" 或:%s [é¸é …]... 來æº... 目錄\n" +" 或:%s [é¸é …]... --target-directory=目錄 來æº...\n" + +#: src/cp.c:170 +msgid "" +"Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"å°‡ <來æº> 檔案複製至 <目的地>,或將多個 <檔案> 複製至指定 <目錄>。\n" +"\n" + +#: src/cp.c:174 src/csplit.c:1505 src/cut.c:182 src/df.c:717 src/du.c:179 +#: src/expand.c:119 src/fmt.c:277 src/fold.c:76 src/head.c:98 +#: src/install.c:609 src/kill.c:103 src/ln.c:354 src/ls.c:3767 src/mkdir.c:66 +#: src/mkfifo.c:60 src/mknod.c:61 src/mv.c:321 src/nl.c:185 src/paste.c:413 +#: src/pr.c:2763 src/ptx.c:1867 src/shred.c:166 src/sort.c:286 src/split.c:105 +#: src/tac.c:136 src/tail.c:244 src/touch.c:249 src/unexpand.c:384 +#: src/uniq.c:148 +msgid "" +"Mandatory arguments to long options are mandatory for short options too.\n" +msgstr "é•·é¸é …必須用的引數在使用短é¸é …時也是必須的。\n" + +#: src/cp.c:177 +msgid "" +" -a, --archive same as -dpR\n" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" --copy-contents copy contents of special files when " +"recursive\n" +" -d same as --no-dereference --preserve=link\n" +msgstr "" +" -a, --archive 等於 -dpR\n" +" --backup[=CONTROL] 為æ¯å€‹å·²å­˜åœ¨çš„目的地檔案建立備份檔\n" +" -b 類似 --backupï¼Œä½†ä¸æŽ¥å—任何引數\n" +" --copy-contents 當使用éžè¿´æ¨¡å¼æ™‚複製特殊檔案的內容\n" +" -d 等於 --no-dereference --preserve=link\n" + +#: src/cp.c:184 +msgid "" +" --no-dereference never follow symbolic links\n" +" -f, --force if an existing destination file cannot be\n" +" opened, remove it and try again\n" +" -i, --interactive prompt before overwrite\n" +" -H follow command-line symbolic links\n" +msgstr "" +" --no-dereference 䏿œƒæ‰¾å‡ºç¬¦è™ŸéˆçµæŒ‡ç¤ºçš„真正目的地\n" +" -f, --force 如果無法開啟已存在的檔案,會移除該檔案並å†\n" +" 嘗試開啟\n" +" -i, --interactive 覆寫檔案å‰éœ€è¦ç¢ºèª\n" +" -H 使用指令列中的符號éˆçµæŒ‡ç¤ºçš„真正目的地\n" + +#: src/cp.c:191 +msgid "" +" -l, --link link files instead of copying\n" +" -L, --dereference always follow symbolic links\n" +" -p same as --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] preserve the specified attributes (default:\n" +" mode,ownership,timestamps), if possible\n" +" additional attributes: links, all\n" +msgstr "" +" -l, --link 連çµè€Œéžè¤‡è£½æª”案\n" +" -L, --dereference 一定先找出符號éˆçµæŒ‡ç¤ºçš„真正目的地\n" +" -p 等於 --preserve=mode,ownership,timestamps\n" +" --preserve[=ATTR_LIST] è‹¥å¯èƒ½ï¼Œä¿ç•™æŒ‡å®šçš„æª”案屬性\n" +" (é è¨­å€¼ç‚ºï¼šmode,ownership,timestamps)\n" +" é¡å¤–的屬性有:linksã€all\n" + +#: src/cp.c:199 +msgid "" +" --no-preserve=ATTR_LIST don't preserve the specified attributes\n" +" --parents append source path to DIRECTORY\n" +" -P same as `--no-dereference'\n" +msgstr "" +" --no-preserve=ATTR_LIST ä¸ä¿ç•™æŒ‡å®šçš„æª”案屬性\n" +" --parents 複製å‰å…ˆåœ¨ <目錄> 建立來æºè·¯å¾‘中的所有目錄\n" +" -P 等於‘--no-dereference’\n" + +#: src/cp.c:204 +msgid "" +" -R, -r, --recursive copy directories recursively\n" +" --remove-destination remove each existing destination file before\n" +" attempting to open it (contrast with --" +"force)\n" +msgstr "" +" -R, -r, --recursive 複製目錄åŠç›®éŒ„內的所有項目\n" +" --remove-destination 嘗試開啟目的地檔案å‰å…ˆç§»é™¤å·²å­˜åœ¨çš„目的地\n" +" 檔案 (與 --force é¸é …ä½œå°æ¯”)\n" + +#: src/cp.c:209 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --sparse=WHEN control creation of sparse files\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +msgstr "" +" --reply={yes,no,query} 指定如何處ç†å·²å­˜åœ¨çš„目的地檔案\n" +" --sparse=WHEN 控制建立 sparse 檔案的方å¼\n" +" --strip-trailing-slashes 移除引數中所有 <來æº> 檔案/目錄末端的斜號\n" + +#: src/cp.c:216 +msgid "" +" -s, --symbolic-link make symbolic links instead of copying\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +msgstr "" +" -s, --symbolic-link åªå»ºç«‹ç¬¦è™Ÿéˆçµè€Œä¸æ˜¯è¤‡è£½æª”案\n" +" -S, --suffix=後置字串 自行指定備份檔的 <後置字串>\n" +" --target-directory=目錄 將所有 <來æº> 檔案/目錄複製至指定的 <目錄>\n" + +#: src/cp.c:221 +msgid "" +" -u, --update copy only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +" -x, --one-file-system stay on this file system\n" +msgstr "" +" -u, --update åªåœ¨ <來æº> 檔案比目的地檔案新,\n" +" 或目的地檔案ä¸å­˜åœ¨æ™‚æ‰é€²è¡Œè¤‡è£½\n" +" -v, --verbose 詳細顯示進行的步驟\n" +" -x, --one-file-system 䏿œƒè·¨è¶Šæª”案系統進行æ“作\n" + +#: src/cp.c:230 +msgid "" +"\n" +"By default, sparse SOURCE files are detected by a crude heuristic and the\n" +"corresponding DEST file is made sparse as well. That is the behavior\n" +"selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n" +"file whenever the SOURCE file contains a long enough sequence of zero " +"bytes.\n" +"Use --sparse=never to inhibit creation of sparse files.\n" +"\n" +msgstr "" +"\n" +"é è¨­ä½¿ç”¨æ¨¡å¼ä¸­ï¼Œ<來æº> æª”æ¡ˆæ˜¯å¦ sparse æª”æ¡ˆæœƒç”±ä¸€ç¨®ç²—ç•¥çš„æ–¹å¼æ±ºå®šï¼Œè€Œä¸”相應\n" +"çš„ <目的地> 檔案也會是 sparse 檔案。此方å¼ç­‰æ–¼ä½¿ç”¨ --sparse=auto é¸é …。指定\n" +"--sparse=always 則åªè¦ <來æº> æª”å«æœ‰è¶³å¤ é•·çš„ 0 ä½å…ƒçµ„都會產生 sparse çš„\n" +"<目的地> 檔案。\n" +"使用 --sparse=never æœƒç¦æ­¢ç”¢ç”Ÿ sparse 檔案。\n" +"\n" + +#: src/cp.c:239 +msgid "" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"備份檔的後置字串為‘~’,除éžä»¥ --suffix é¸é …或是 SIMPLE_BACKUP_SUFFIX\n" +"環境變數指定。版本控制的方å¼å¯é€éŽ --backup é¸é …或 VERSION_CONTROL 環境\n" +"è®Šæ•¸ä¾†é¸æ“‡ã€‚以下是å¯ç”¨çš„變數值:\n" +"\n" + +#: src/cp.c:245 src/install.c:642 src/ln.c:384 src/mv.c:355 +msgid "" +" none, off never make backups (even if --backup is given)\n" +" numbered, t make numbered backups\n" +" existing, nil numbered if numbered backups exist, simple otherwise\n" +" simple, never always make simple backups\n" +msgstr "" +" none, off 䏿œƒé€²è¡Œå‚™ä»½ (å³ä½¿ä½¿ç”¨äº† --backup é¸é …)\n" +" numbered, t 備份檔會加上數字\n" +" existing, nil 若有數字的備份檔已經存在則使用數字,å¦å‰‡ä½¿ç”¨æ™®é€šæ–¹å¼å‚™ä»½\n" +" simple, never æ°¸é ä½¿ç”¨æ™®é€šæ–¹å¼å‚™ä»½\n" + +#: src/cp.c:251 +msgid "" +"\n" +"As a special case, cp makes a backup of SOURCE when the force and backup\n" +"options are given and SOURCE and DEST are the same name for an existing,\n" +"regular file.\n" +msgstr "" +"\n" +"有一個特別情æ³ï¼šå¦‚æžœåŒæ™‚指定 --force å’Œ --backup é¸é …,而且 <來æº> å’Œ\n" +"<目的地> 是åŒä¸€å€‹å·²å­˜åœ¨çš„æ™®é€šæª”案的話,cp 會將 <來æº> 檔案備份。\n" + +#: src/cp.c:325 +#, c-format +msgid "failed to preserve times for %s" +msgstr "無法ä¿ç•™%s的時間" + +#: src/cp.c:349 +#, fuzzy, c-format +msgid "failed to preserve permissions for %s" +msgstr "無法更改%s的權é™" + +#: src/cp.c:434 +#, fuzzy, c-format +msgid "cannot make directory %s" +msgstr "無法建立目錄%s" + +#: src/cp.c:493 src/ln.c:490 src/mv.c:459 src/shred.c:1601 +#, fuzzy +msgid "missing file argument" +msgstr "ç•¥éŽå¼•數" + +#: src/cp.c:498 +#, fuzzy +msgid "missing destination file" +msgstr "ç¼ºå°‘äº†æ¬„ä½æ•¸å€¼" + +#: src/cp.c:523 src/ln.c:161 src/ln.c:183 src/ln.c:210 src/ln.c:297 +#, c-format +msgid "accessing %s" +msgstr "正在存å–%s" + +#: src/cp.c:546 +#, fuzzy, c-format +msgid "%s: specified target is not a directory" +msgstr "%så·²å­˜åœ¨ä½†ä¸æ˜¯ç›®éŒ„" + +#: src/cp.c:554 +#, c-format +msgid "copying multiple files, but last argument %s is not a directory" +msgstr "複製多個檔案,但最後的引數%s並éžç›®éŒ„。" + +#: src/cp.c:652 +msgid "when preserving paths, the destination must be a directory" +msgstr "ç•¶ä¿ç•™è·¯å¾‘時,目的地必須是目錄" + +#: src/cp.c:878 src/install.c:219 src/ln.c:434 src/mv.c:405 +#, c-format +msgid "" +"warning: --version-control (-V) is obsolete; support for it\n" +"will be removed in some future release. Use --backup=%s instead." +msgstr "" +"警告:--version-control (-V) é¸é …å·²ç¶“éŽæ™‚;將來的版本隨時å¯èƒ½ä¸å†æ”¯æ´\n" +"æ­¤é¸é …。請使用 --backup=%s。" + +#: src/cp.c:972 src/ln.c:464 +#, fuzzy +msgid "symbolic links are not supported on this system" +msgstr "è­¦å‘Šï¼šæ­¤ç³»çµ±ä¸æ”¯æ´ --pid=PID é¸é …" + +#: src/cp.c:1008 +msgid "cannot make both hard and symbolic links" +msgstr "ç„¡æ³•åŒæ™‚建立實際åŠç¬¦è™Ÿéˆçµ" + +#: src/cp.c:1016 src/install.c:275 src/ln.c:530 src/mv.c:483 +msgid "backup type" +msgstr "備份方å¼" + +#: src/csplit.c:41 +msgid "Stuart Kemp and David MacKenzie" +msgstr "Stuart Kemp åŠ David MacKenzie" + +#: src/csplit.c:289 src/csplit.c:1481 src/tac-pipe.c:57 src/tee.c:220 +#: src/tr.c:1609 src/tr.c:1711 src/tr.c:1754 +msgid "read error" +msgstr "è®€å–æ™‚發生錯誤" + +#: src/csplit.c:583 +msgid "input disappeared" +msgstr "輸入資料消失了" + +#: src/csplit.c:705 src/csplit.c:716 +#, c-format +msgid "%s: line number out of range" +msgstr "%s:行號超出範åœä»¥å¤–" + +#: src/csplit.c:743 +#, c-format +msgid "%s: `%s': line number out of range" +msgstr "%s:‘%s’:行號超出範åœä»¥å¤–" + +#: src/csplit.c:746 src/csplit.c:792 +#, c-format +msgid " on repetition %d\n" +msgstr "(在第 %d 次é‡è¦†æ™‚)\n" + +#: src/csplit.c:788 +#, c-format +msgid "%s: `%s': match not found" +msgstr "%s:‘%s’:找ä¸åˆ°ç¬¦åˆçš„字串" + +#: src/csplit.c:849 src/csplit.c:889 src/tac.c:262 +msgid "error in regular expression search" +msgstr "在正è¦é‹ç®—弿œå°‹æ™‚發生錯誤" + +#: src/csplit.c:992 +#, c-format +msgid "write error for `%s'" +msgstr "寫入‘%s’時發生錯誤" + +#: src/csplit.c:1064 +#, c-format +msgid "%s: `+' or `-' expected after delimeter" +msgstr "%sï¼šåˆ†éš”ç¬¦è™Ÿå¾Œé¢æ‡‰è©²æ˜¯â€˜+’或‘-’字元" + +#: src/csplit.c:1068 +#, c-format +msgid "%s: integer expected after `%c'" +msgstr "%s:‘%câ€™å¾Œé¢æ‡‰è©²æ˜¯æ•´æ•¸" + +#: src/csplit.c:1088 +#, c-format +msgid "%s: `}' is required in repeat count" +msgstr "%s:é‡è¦†çš„æ•¸ç›®å¾Œæ‡‰è©²æ˜¯â€˜}’字元" + +#: src/csplit.c:1098 +#, c-format +msgid "%s}: integer required between `{' and `}'" +msgstr "%s}:‘{’和‘}’之間必須是整數" + +#: src/csplit.c:1125 +#, c-format +msgid "%s: closing delimeter `%c' missing" +msgstr "%s:缺少了å°é–‰åˆ†éš”符號‘%c’" + +#: src/csplit.c:1141 +#, c-format +msgid "%s: invalid regular expression: %s" +msgstr "%s:無效的正è¦è¡¨ç¤ºå¼ï¼š%s" + +#: src/csplit.c:1174 +#, c-format +msgid "%s: invalid pattern" +msgstr "%s:無效的樣å¼" + +#: src/csplit.c:1177 +#, c-format +msgid "%s: line number must be greater than zero" +msgstr "%s:行號必須大於零" + +#: src/csplit.c:1183 +#, c-format +msgid "line number `%s' is smaller than preceding line number, %s" +msgstr "行號‘%sâ€™å°æ–¼ä¹‹å‰çš„行號‘%s’" + +#: src/csplit.c:1189 +#, c-format +msgid "warning: line number `%s' is the same as preceding line number" +msgstr "警告:行號‘%s’和之å‰çš„行號一樣" + +#: src/csplit.c:1314 +msgid "missing conversion specifier in suffix" +msgstr "後置字串缺少了字串轉æ›å­—符" + +#: src/csplit.c:1320 +#, c-format +msgid "invalid conversion specifier in suffix: %c" +msgstr "後置字串的字串轉æ›å­—符無效:%c" + +#: src/csplit.c:1323 +#, c-format +msgid "invalid conversion specifier in suffix: \\%.3o" +msgstr "後置字串的字串轉æ›å­—符無效:\\%.3o" + +#: src/csplit.c:1355 +#, c-format +msgid "missing %% conversion specification in suffix" +msgstr "後置字串缺少了 %% 字串轉æ›è¦æ ¼" + +#: src/csplit.c:1358 +#, c-format +msgid "too many %% conversion specifications in suffix" +msgstr "å¾Œç½®å­—ä¸²å«æœ‰éŽå¤šçš„ %% 字串轉æ›è¦æ ¼" + +#: src/csplit.c:1441 +#, c-format +msgid "%s: invalid number" +msgstr "%s:無效的號碼" + +#: src/csplit.c:1496 +#, c-format +msgid "Usage: %s [OPTION]... FILE PATTERN...\n" +msgstr "用法:%s [é¸é …]... 檔案 樣å¼...\n" + +#: src/csplit.c:1500 +msgid "" +"Output pieces of FILE separated by PATTERN(s) to files `xx01', `xx02', ...,\n" +"and output byte counts of each piece to standard output.\n" +"\n" +msgstr "" +"根據 <樣å¼> 分割 <檔案>,並將之輸出至‘xx01’ã€â€˜xx02’等等的檔案,\n" +"åŒæ™‚在標準輸出顯示æ¯å€‹åˆ†å‰²éƒ¨ä»½çš„ä½å…ƒçµ„數目。\n" + +#: src/csplit.c:1508 +#, c-format +msgid "" +" -b, --suffix-format=FORMAT use sprintf FORMAT instead of %d\n" +" -f, --prefix=PREFIX use PREFIX instead of `xx'\n" +" -k, --keep-files do not remove output files on errors\n" +msgstr "" +" -b, --suffix-format=æ ¼å¼ ä»¥ sprintf çš„ <æ ¼å¼> 代替 %d\n" +" -f, --prefix=å‰ç½®å­—串 以 <å‰ç½®å­—串> 代替‘xx’\n" +" -k, --keep-files é‡åˆ°éŒ¯èª¤æ™‚ä¸ç§»é™¤è¼¸å‡ºæª”\n" + +#: src/csplit.c:1513 +msgid "" +" -n, --digits=DIGITS use specified number of digits instead of 2\n" +" -s, --quiet, --silent do not print counts of output file sizes\n" +" -z, --elide-empty-files remove empty output files\n" +msgstr "" +" -n, --digits=使•¸ ä½¿ç”¨æŒ‡å®šä½æ•¸çš„æ•¸å­—è€Œä¸æ˜¯ 2 個ä½\n" +" -s, --quiet, --silent ä¸å°å‡ºè¼¸å‡ºæª”的大å°\n" +" -z, --elide-empty-files 移除空白的輸出檔\n" + +#: src/csplit.c:1520 +msgid "" +"\n" +"Read standard input if FILE is -. Each PATTERN may be:\n" +msgstr "" +"\n" +"è‹¥ <檔案> 是 - 則由標準輸入讀å–資料。æ¯ä¸€å€‹ <樣å¼> å¯ä»¥æ˜¯ï¼š\n" + +#: src/csplit.c:1524 +msgid "" +"\n" +" INTEGER copy up to but not including specified line number\n" +" /REGEXP/[OFFSET] copy up to but not including a matching line\n" +" %REGEXP%[OFFSET] skip to, but not including a matching line\n" +" {INTEGER} repeat the previous pattern specified number of times\n" +" {*} repeat the previous pattern as many times as possible\n" +"\n" +"A line OFFSET is a required `+' or `-' followed by a positive integer.\n" +msgstr "" +"\n" +" 整數 複製直至指定行數之å‰çš„一行\n" +" /æ­£è¦è¡¨ç¤ºå¼/[å移值] 複製直至符åˆè¡¨ç¤ºå¼ä¹‹å‰çš„一行\n" +" %æ­£è¦è¡¨ç¤ºå¼%[å移值] 忽略直至符åˆè¡¨ç¤ºå¼ä¹‹å‰çš„一行\n" +" {整數} 將之å‰çš„æ¨£å¼é‡è¦†æŒ‡å®šçš„æ¬¡æ•¸\n" +" {*} 將之å‰çš„æ¨£å¼é‡è¦†æœ€å¤§å¯èƒ½çš„æ¬¡æ•¸\n" +"\n" +"行號å移值是一個(必須的)‘+’或‘-’字元加上一個正整數。\n" + +#: src/cut.c:39 +msgid "David Ihnat, David MacKenzie, and Jim Meyering" +msgstr "David Ihnatã€David MacKenzie åŠ Jim Meyering" + +#: src/cut.c:174 src/df.c:711 src/du.c:174 src/expand.c:110 src/fold.c:67 +#: src/head.c:88 src/ls.c:3761 src/nl.c:176 src/paste.c:403 src/pr.c:2754 +#: src/sort.c:276 src/sum.c:60 src/tac.c:127 src/tail.c:234 src/tee.c:63 +#: src/unexpand.c:375 src/wc.c:125 +#, c-format +msgid "Usage: %s [OPTION]... [FILE]...\n" +msgstr "用法:%s [é¸é …]... [檔案]...\n" + +#: src/cut.c:178 +msgid "" +"Print selected parts of lines from each FILE to standard output.\n" +"\n" +msgstr "在標準輸出中顯示æ¯å€‹ <檔案> æ¯ä¸€è¡Œä¸­æŒ‡å®šçš„部份。\n" + +#: src/cut.c:185 +msgid "" +" -b, --bytes=LIST output only these bytes\n" +" -c, --characters=LIST output only these characters\n" +" -d, --delimiter=DELIM use DELIM instead of TAB for field delimiter\n" +msgstr "" +" -b, --bytes=LIST åªé¡¯ç¤ºæŒ‡å®šçš„ä½å…ƒçµ„\n" +" -c, --characters=LIST åªé¡¯ç¤ºæŒ‡å®šçš„å­—å…ƒ\n" +" -d, --delimiter=DELIM 以 DELIM 字元代替 TAB 作為欄ä½çš„分隔符號\n" + +#: src/cut.c:190 +msgid "" +" -f, --fields=LIST output only these fields; also print any line\n" +" that contains no delimiter character, unless\n" +" the -s option is specified\n" +" -n (ignored)\n" +msgstr "" +" -f, --fields=LIST åªé¡¯ç¤ºæŒ‡å®šçš„æ¬„ä½ï¼›åŒæ™‚也å°å‡ºä¸å«åˆ†éš”符號的\n" +" æ¯ä¸€è¡Œï¼Œé™¤éžä½¿ç”¨äº† -s é¸é …\n" +" -n (䏿œƒä½œä»»ä½•處ç†)\n" + +#: src/cut.c:196 +msgid "" +" -s, --only-delimited do not print lines not containing delimiters\n" +" --output-delimiter=STRING use STRING as the output delimiter\n" +" the default is to use the input delimiter\n" +msgstr "" +" -s, --only-delimited ä¸å°å‡ºä¸å«åˆ†éš”符號的æ¯ä¸€è¡Œ\n" +" --output-delimiter=字串 以 <字串> 作為輸出資料的分隔符號\n" +" é è¨­æ˜¯ä½¿ç”¨è¼¸å…¥è³‡æ–™çš„分隔符號\n" + +#: src/cut.c:203 +msgid "" +"\n" +"Use one, and only one of -b, -c or -f. Each LIST is made up of one\n" +"range, or many ranges separated by commas. Each range is one of:\n" +"\n" +" N N'th byte, character or field, counted from 1\n" +" N- from N'th byte, character or field, to end of line\n" +" N-M from N'th to M'th (included) byte, character or field\n" +" -M from first to M'th (included) byte, character or field\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"\n" +"å¿…é ˆæ°å¥½æŒ‡å®š -bã€-c 或 -f 其中一個é¸é …。æ¯å€‹ LIST æ˜¯ç”±ä¸€å€‹ç¯„åœæˆ–是\n" +"多個以逗號分隔的範åœçµ„æˆçš„。æ¯å€‹ç¯„åœå¯ä»¥æ˜¯ï¼š\n" +"\n" +" N ç”± 1 開始計算,åªå–第 N 個ä½å…ƒçµ„ã€å­—元或欄ä½\n" +" N- 由第 N 個ä½å…ƒçµ„ã€å­—元或欄ä½ç›´è‡³è¡Œæœ«\n" +" N-M 由第 N 至第 M(包括在內)個ä½å…ƒçµ„ã€å­—元或欄ä½\n" +" -M 由第 1 至第 M(包括在內)個ä½å…ƒçµ„ã€å­—元或欄ä½\n" +"\n" +"如果沒有指定 <檔案> 或 <檔案> 是 -,則由標準輸入讀å–資料。\n" + +#: src/cut.c:288 src/cut.c:319 src/cut.c:379 +msgid "invalid byte or field list" +msgstr "無效的ä½å…ƒçµ„或欄ä½é¸é …" + +#: src/cut.c:667 src/cut.c:676 +msgid "only one type of list may be specified" +msgstr "指定ä½ç½®æ™‚åªèƒ½ä½¿ç”¨ä¸€ç¨®æ ¼å¼" + +#: src/cut.c:670 +msgid "missing list of positions" +msgstr "缺少了表示ä½ç½®çš„æ•¸å€¼" + +#: src/cut.c:679 +msgid "missing list of fields" +msgstr "ç¼ºå°‘äº†æ¬„ä½æ•¸å€¼" + +#: src/cut.c:686 +msgid "the delimiter must be a single character" +msgstr "分隔符號必須是æ°å¥½ä¸€å€‹å­—å…ƒ" + +#: src/cut.c:717 +msgid "you must specify a list of bytes, characters, or fields" +msgstr "必須指定一系列的ä½å…ƒçµ„ã€å­—元或欄ä½" + +#: src/cut.c:720 +#, fuzzy +msgid "an input delimiter may be specified only when operating on fields" +msgstr "åªæœ‰åœ¨è™•ç†æ¬„使™‚æ‰èƒ½æŒ‡å®šåˆ†éš”符號" + +#: src/cut.c:724 +msgid "" +"suppressing non-delimited lines makes sense\n" +"\tonly when operating on fields" +msgstr "åªæœ‰åœ¨è™•ç†æ¬„使™‚æ‰å¯ä»¥åŽ»é™¤æ²’æœ‰åˆ†éš”ç¬¦è™Ÿçš„æ¯ä¸€è¡Œ" + +#: src/date.c:117 +#, c-format +msgid "" +"Usage: %s [OPTION]... [+FORMAT]\n" +" or: %s [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]\n" +msgstr "" + +#: src/date.c:122 +msgid "" +"Display the current time in the given FORMAT, or set the system date.\n" +"\n" +" -d, --date=STRING display time described by STRING, not `now'\n" +" -f, --file=DATEFILE like --date once for each line of DATEFILE\n" +" -ITIMESPEC, --iso-8601[=TIMESPEC] output date/time in ISO 8601 format.\n" +" TIMESPEC=`date' for date only,\n" +" `hours', `minutes', or `seconds' for date and\n" +" time to the indicated precision.\n" +" --iso-8601 without TIMESPEC defaults to `date'.\n" +msgstr "" + +#: src/date.c:133 +msgid "" +" -r, --reference=FILE display the last modification time of FILE\n" +" -R, --rfc-822 output RFC-822 compliant date string\n" +" -s, --set=STRING set time described by STRING\n" +" -u, --utc, --universal print or set Coordinated Universal Time\n" +msgstr "" + +#: src/date.c:141 +msgid "" +"\n" +"FORMAT controls the output. The only valid option for the second form\n" +"specifies Coordinated Universal Time. Interpreted sequences are:\n" +"\n" +" %% a literal %\n" +" %a locale's abbreviated weekday name (Sun..Sat)\n" +msgstr "" + +#: src/date.c:149 +msgid "" +" %A locale's full weekday name, variable length (Sunday..Saturday)\n" +" %b locale's abbreviated month name (Jan..Dec)\n" +" %B locale's full month name, variable length (January..December)\n" +" %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n" +msgstr "" + +#: src/date.c:155 +msgid "" +" %C century (year divided by 100 and truncated to an integer) [00-99]\n" +" %d day of month (01..31)\n" +" %D date (mm/dd/yy)\n" +" %e day of month, blank padded ( 1..31)\n" +msgstr "" + +#: src/date.c:161 +msgid "" +" %F same as %Y-%m-%d\n" +" %g the 2-digit year corresponding to the %V week number\n" +" %G the 4-digit year corresponding to the %V week number\n" +msgstr "" + +#: src/date.c:166 +msgid "" +" %h same as %b\n" +" %H hour (00..23)\n" +" %I hour (01..12)\n" +" %j day of year (001..366)\n" +msgstr "" + +#: src/date.c:172 +msgid "" +" %k hour ( 0..23)\n" +" %l hour ( 1..12)\n" +" %m month (01..12)\n" +" %M minute (00..59)\n" +msgstr "" + +#: src/date.c:178 +msgid "" +" %n a newline\n" +" %N nanoseconds (000000000..999999999)\n" +" %p locale's upper case AM or PM indicator (blank in many locales)\n" +" %P locale's lower case am or pm indicator (blank in many locales)\n" +" %r time, 12-hour (hh:mm:ss [AP]M)\n" +" %R time, 24-hour (hh:mm)\n" +" %s seconds since `00:00:00 1970-01-01 UTC' (a GNU extension)\n" +msgstr "" + +#: src/date.c:187 +msgid "" +" %S second (00..60); the 60 is necessary to accommodate a leap second\n" +" %t a horizontal tab\n" +" %T time, 24-hour (hh:mm:ss)\n" +" %u day of week (1..7); 1 represents Monday\n" +msgstr "" + +#: src/date.c:193 +msgid "" +" %U week number of year with Sunday as first day of week (00..53)\n" +" %V week number of year with Monday as first day of week (01..53)\n" +" %w day of week (0..6); 0 represents Sunday\n" +" %W week number of year with Monday as first day of week (00..53)\n" +msgstr "" + +#: src/date.c:199 +msgid "" +" %x locale's date representation (mm/dd/yy)\n" +" %X locale's time representation (%H:%M:%S)\n" +" %y last two digits of year (00..99)\n" +" %Y year (1970...)\n" +msgstr "" + +#: src/date.c:205 +msgid "" +" %z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n" +" %Z time zone (e.g., EDT), or nothing if no time zone is determinable\n" +"\n" +"By default, date pads numeric fields with zeroes. GNU date recognizes\n" +"the following modifiers between `%' and a numeric directive.\n" +"\n" +" `-' (hyphen) do not pad the field\n" +" `_' (underscore) pad the field with spaces\n" +msgstr "" + +#: src/date.c:237 src/dd.c:1173 src/dircolors.c:539 src/head.c:221 +#: src/md5sum.c:340 src/md5sum.c:681 src/od.c:959 src/od.c:2001 src/pr.c:1164 +#: src/pr.c:1371 src/pr.c:1493 src/stty.c:909 src/tac.c:483 src/tac.c:489 +#: src/tee.c:151 src/tr.c:2027 src/tsort.c:585 +msgid "standard input" +msgstr "標準輸出" + +#: src/date.c:268 src/date.c:460 +#, fuzzy, c-format +msgid "invalid date `%s'" +msgstr "無效的寬度:‘%s’" + +#: src/date.c:364 +#, fuzzy +msgid "the options to specify dates for printing are mutually exclusive" +msgstr "ä¸èƒ½åŒæ™‚使用 --string åŠ --check é¸é …" + +#: src/date.c:371 +msgid "the options to print and set the time may not be used together" +msgstr "" + +#: src/date.c:377 +#, fuzzy, c-format +msgid "too many non-option arguments: %s%s" +msgstr "éžé¸é …的引數éŽå¤š" + +#: src/date.c:385 +#, c-format +msgid "" +"the argument `%s' lacks a leading `+';\n" +"When using an option to specify date(s), any non-option\n" +"argument must be a format string beginning with `+'." +msgstr "" + +#: src/date.c:397 +#, fuzzy +msgid "" +"a format string may not be specified when using the --rfc-822 (-R) option" +msgstr "使用é¸é … --string 時ä¸èƒ½å†æŒ‡å®šæª”案" + +#: src/date.c:433 +msgid "undefined" +msgstr "" + +#: src/date.c:435 +#, fuzzy +msgid "cannot get time of day" +msgstr "ä¸èƒ½ç”¨è¶…éŽä¸€ç¨®æ–¹å¼é€²è¡Œåˆ†å‰²" + +#: src/date.c:468 +#, fuzzy +msgid "cannot set date" +msgstr "stat%s失敗" + +#: src/dd.c:43 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, and Stuart Kemp" +msgstr "Paul Rubin åŠ David MacKenzie" + +#: src/dd.c:288 src/tty.c:62 src/uname.c:110 src/whoami.c:52 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]...\n" +msgstr "用法:%s [é¸é …] [檔案]...\n" + +#: src/dd.c:289 +msgid "" +"Copy a file, converting and formatting according to the options.\n" +"\n" +" bs=BYTES force ibs=BYTES and obs=BYTES\n" +" cbs=BYTES convert BYTES bytes at a time\n" +" conv=KEYWORDS convert the file as per the comma separated keyword list\n" +" count=BLOCKS copy only BLOCKS input blocks\n" +" ibs=BYTES read BYTES bytes at a time\n" +msgstr "" +"複製檔案,並根據以下的é¸é …將資料轉æ›å’Œæ ¼å¼åŒ–。\n" +"\n" +" bs=ä½å…ƒçµ„ å¼·è¿« ibs=<ä½å…ƒçµ„> åŠ obs=<ä½å…ƒçµ„>\n" +" cbs=ä½å…ƒçµ„ æ¯æ¬¡è½‰æ›æŒ‡å®šçš„ <ä½å…ƒçµ„>\n" +" conv=é—œéµå­— 根據以逗號分隔的關éµå­—表示的方å¼ä¾†è½‰æ›æª”案\n" +" count=倿®µæ•¸ç›® åªè¤‡è£½æŒ‡å®š <倿®µæ•¸ç›®> 的輸入資料\n" +" ibs=ä½å…ƒçµ„ æ¯æ¬¡è®€å–指定的 <ä½å…ƒçµ„>\n" + +#: src/dd.c:298 +msgid "" +" if=FILE read from FILE instead of stdin\n" +" obs=BYTES write BYTES bytes at a time\n" +" of=FILE write to FILE instead of stdout\n" +" seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n" +" skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n" +msgstr "" +" if=檔案 è®€å– <檔案> å…§å®¹è€Œéžæ¨™æº–輸入的資料\n" +" obs=ä½å…ƒçµ„ æ¯æ¬¡å¯«å…¥æŒ‡å®šçš„ <ä½å…ƒçµ„>\n" +" of=檔案 將資料寫入 <檔案> 而ä¸åœ¨æ¨™æº–輸出顯示\n" +" seek=倿®µæ•¸ç›® 先略éŽä»¥ obs 為單ä½çš„æŒ‡å®š <倿®µæ•¸ç›®> 的輸出資料\n" +" skip=倿®µæ•¸ç›® 先略éŽä»¥ ibs 為單ä½çš„æŒ‡å®š <倿®µæ•¸ç›®> 的輸入資料\n" + +#: src/dd.c:307 +msgid "" +"\n" +"BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n" +"xM M, c 1, w 2, b 512, kB 1000, K 1024, MB 1,000,000, M 1,048,576,\n" +"GB 1,000,000,000, G 1,073,741,824, and so on for T, P, E, Z, Y.\n" +"Each KEYWORD may be:\n" +"\n" +msgstr "" +"\n" +"<倿®µæ•¸ç›®> åŠ <ä½å…ƒçµ„> å¯ä»¥åŠ ä¸Šä»¥ä¸‹çš„å–®ä½ï¼š\n" +"xM=M,c=1,w=2,b=512,kB=1000,K=1024,MB=1000000,M=1048576,\n" +"GB=1000000000,G=1073741824,還有 Tã€Pã€Eã€Zã€Y 如此類推。\n" +"æ¯å€‹ <é—œéµå­—> å¯ä»¥æ˜¯ï¼š\n" + +#: src/dd.c:315 +msgid "" +" ascii from EBCDIC to ASCII\n" +" ebcdic from ASCII to EBCDIC\n" +" ibm from ASCII to alternated EBCDIC\n" +" block pad newline-terminated records with spaces to cbs-size\n" +" unblock replace trailing spaces in cbs-size records with newline\n" +" lcase change upper case to lower case\n" +msgstr "" +" ascii ç”± EBCDIC 轉æ›è‡³ ASCII\n" +" ebcdic ç”± ASCII 轉æ›è‡³ EBCDIC\n" +" ibm ç”± ASCII 轉æ›è‡³ alternated EBCDIC\n" +" block 將以 newline ä½œç‚ºçµæŸå­—å…ƒçš„å€æ®µçš„ newline æ›æˆç©ºæ ¼ï¼Œ\n" +" 直至空格填滿 cbs 表示的大å°\n" +" unblock 會將 cbs 大å°çš„倿®µä¸­æ‰€æœ‰çµæŸçš„空格刪除,\n" +" 並轉æ›ç‚ºä¸€å€‹ newline å­—å…ƒ\n" +" lcase 將大寫字元轉æ›ç‚ºå°å¯«\n" + +#: src/dd.c:323 +msgid "" +" notrunc do not truncate the output file\n" +" ucase change lower case to upper case\n" +" swab swap every pair of input bytes\n" +" noerror continue after read errors\n" +" sync pad every input block with NULs to ibs-size; when used\n" +" with block or unblock, pad with spaces rather than NULs\n" +msgstr "" +" notrunc 䏿ˆªæ–·è¼¸å‡ºæª”\n" +" ucase å°‡å°å¯«å­—元轉æ›ç‚ºå¤§å¯«\n" +" swab äº¤æ›æ¯ä¸€å°è¼¸å…¥è³‡æ–™ä½å…ƒçµ„\n" +" noerror 讀å–資料發生錯誤後ä»ç„¶ç¹¼çºŒ\n" +" sync å°‡æ¯å€‹è¼¸å…¥è³‡æ–™å€æ®µä»¥ NUL 字元填滿至 ibs 的大å°ï¼›\n" +" ç•¶é…åˆ block 或 unblock 時,會以空格代替 NUL 字元填充\n" + +#: src/dd.c:362 +#, c-format +msgid "%s+%s records in\n" +msgstr "讀入了 %s+%s 個倿®µ\n" + +#: src/dd.c:364 +#, c-format +msgid "%s+%s records out\n" +msgstr "輸出了 %s+%s 個倿®µ\n" + +#: src/dd.c:371 +msgid "truncated record" +msgstr "å€‹è¢«æˆªæ–·äº†çš„å€æ®µ" + +#: src/dd.c:372 +msgid "truncated records" +msgstr "å€‹è¢«æˆªæ–·äº†çš„å€æ®µ" + +#: src/dd.c:382 +#, fuzzy, c-format +msgid "closing input file %s" +msgstr "正在建立檔案‘%s’\n" + +#: src/dd.c:385 +#, c-format +msgid "closing output file %s" +msgstr "正在關閉輸出檔%s" + +#: src/dd.c:469 +#, fuzzy, c-format +msgid "writing to %s" +msgstr "寫入 %s 時發生錯誤" + +#: src/dd.c:501 +#, fuzzy, c-format +msgid "invalid conversion: %s" +msgstr "無效的寬度é¸é …:‘%s’" + +#: src/dd.c:557 +#, fuzzy, c-format +msgid "unrecognized option %s" +msgstr "無法識別的é¸é …‘-%c’" + +#: src/dd.c:610 +#, fuzzy, c-format +msgid "unrecognized option %s=%s" +msgstr "無法識別的é¸é …‘-%c’" + +#: src/dd.c:616 +#, fuzzy, c-format +msgid "invalid number %s" +msgstr "無效的數字" + +#: src/dd.c:646 +msgid "" +"only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, " +"{unblock,sync}" +msgstr "" +"æ¯çµ„åªèƒ½é¸ä¸€é …作為 conv 的關éµå­—:\n" +"{ascii,ebcdic,ibm}ã€{lcase,ucase}ã€{block,unblock}ã€{unblock,sync}" + +#: src/dd.c:781 +#, c-format +msgid "" +"warning: working around lseek kernel bug for file (%s)\n" +" of mt_type=0x%0lx -- see for the list of types" +msgstr "" +"警告:暫時é¿å…有關檔案 (%s) çš„ lseek 核心錯誤,檔案的 mt_type=0x%0lx ─\n" +" 有關 mt_type 類型的清單請åƒè€ƒ " + +#: src/dd.c:1170 src/dd.c:1188 +#, fuzzy, c-format +msgid "opening %s" +msgstr "è®€å– %s 時發生錯誤" + +#: src/dd.c:1196 +#, fuzzy +msgid "file offset out of range" +msgstr "%s:行號超出範åœä»¥å¤–" + +#: src/dd.c:1214 +#, c-format +msgid "advancing past %s bytes in output file %s" +msgstr "ç•¥éŽè¼¸å‡ºæª”%2$sçš„æœ€åˆ %1$s 個ä½å…ƒçµ„" + +#: src/df.c:49 +#, fuzzy +msgid "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" +msgstr "David Ihnatã€David MacKenzie åŠ Jim Meyering" + +#: src/df.c:153 +#, fuzzy +msgid "Filesystem Type" +msgstr "檔案系統 " + +#: src/df.c:155 +#, fuzzy +msgid "Filesystem " +msgstr "檔案系統 " + +#: src/df.c:158 +#, c-format +msgid " Inodes IUsed IFree IUse%%" +msgstr " Inode (I)已用 (I)å¯ç”¨ (I)已用%%" + +#: src/df.c:162 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " å®¹é‡ å·²ç”¨ å¯ç”¨ 已用%%" + +#: src/df.c:164 +#, c-format +msgid " Size Used Avail Use%%" +msgstr " å®¹é‡ å·²ç”¨ å¯ç”¨ 已用%%" + +#: src/df.c:167 +#, fuzzy, c-format +msgid " %4s-blocks Used Available Capacity" +msgstr " %4d-倿®µ 已用 å¯ç”¨ 容é‡" + +#: src/df.c:198 +#, c-format +msgid " %4s-blocks Used Available Use%%" +msgstr " %4s-倿®µ 已用 å¯ç”¨ 已用%%" + +#: src/df.c:202 +msgid " Mounted on\n" +msgstr " 掛載點\n" + +#: src/df.c:712 +msgid "" +"Show information about the filesystem on which each FILE resides,\n" +"or all filesystems by default.\n" +"\n" +msgstr "" +"顯示æ¯å€‹ <檔案> 所在的檔案系統的資訊,é è¨­æ˜¯é¡¯ç¤ºæ‰€æœ‰æª”案系統。\n" +"\n" + +#: src/df.c:720 +msgid "" +" -a, --all include filesystems having 0 blocks\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +msgstr "" +" -a, --all 包括大å°ç‚º 0 個倿®µçš„æª”案系統\n" +" -B, --block-size=å¤§å° å€æ®µä»¥æŒ‡å®š <大å°> çš„ä½å…ƒçµ„為單ä½\n" +" -h, --human-readable 以容易ç†è§£çš„æ ¼å¼å°å‡ºæª”æ¡ˆç³»çµ±å¤§å° (例如 1K 234M 2G)\n" +" -H, --si 類似 -hï¼Œä½†å– 1000 çš„æ¬¡æ–¹è€Œä¸æ˜¯ 1024\n" + +#: src/df.c:726 +msgid "" +" -i, --inodes list inode information instead of block usage\n" +" -k like --block-size=1K\n" +" -l, --local limit listing to local filesystems\n" +" --no-sync do not invoke sync before getting usage info " +"(default)\n" +msgstr "" +" -i, --inodes 顯示 inode 資訊而éžå€æ®µä½¿ç”¨é‡\n" +" -k å³ --block-size=1K\n" +" -l, --local åªé¡¯ç¤ºæœ¬æ©Ÿçš„æª”案系統\n" +" --no-sync å–得使用é‡è³‡æ–™å‰ä¸é€²è¡Œ sync 動作 (é è¨­)\n" + +#: src/df.c:732 +msgid "" +" -P, --portability use the POSIX output format\n" +" --sync invoke sync before getting usage info\n" +" -t, --type=TYPE limit listing to filesystems of type TYPE\n" +" -T, --print-type print filesystem type\n" +" -x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n" +" -v (ignored)\n" +msgstr "" +" -P, --portability 使用 POSIX 輸出格å¼\n" +" --sync å–得使用é‡è³‡æ–™å‰å…ˆé€²è¡Œ sync 動作\n" +" -t, --type=類型 åªå°å‡ºæŒ‡å®š <類型> 的檔案系統資訊\n" +" -T, --print-type å°å‡ºæª”案系統類型\n" +" -x, --exclude-type=類型 åªå°å‡ºä¸æ˜¯æŒ‡å®š <類型> 的檔案系統資訊\n" +" -v (æ­¤é¸é …ä¸ä½œè™•ç†)\n" + +#: src/df.c:742 src/du.c:215 src/ls.c:3879 +msgid "" +"\n" +"SIZE may be (or may be an integer optionally followed by) one of following:\n" +"kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n" +msgstr "" +"\n" +"<大å°> å¯ä»¥æ˜¯ä»¥ä¸‹çš„å–®ä½ (å–®ä½å‰å¯åŠ ä¸Šæ•´æ•¸):\n" +"kB=1000,K=1024,MB=1000000,M=1048576,還有 Gã€Tã€Pã€Eã€Zã€Y 如此類推。\n" + +#: src/df.c:859 +#, c-format +msgid "file system type %s both selected and excluded" +msgstr "ä¸èƒ½åŒæ™‚鏿“‡å’ŒæŽ’除檔案系統類型%s" + +#: src/df.c:903 +msgid "Warning: " +msgstr "警告:" + +#: src/df.c:906 +#, c-format +msgid "%scannot read table of mounted filesystems" +msgstr "%s無法讀å–已掛上的檔案系統的åå–®" + +#: src/dircolors.c:103 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [FILE]\n" +msgstr "用法:%s [é¸é …]... [檔案]...\n" + +#: src/dircolors.c:104 +msgid "" +"Output commands to set the LS_COLORS environment variable.\n" +"\n" +"Determine format of output:\n" +" -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n" +" -c, --csh, --c-shell output C shell code to set LS_COLORS\n" +" -p, --print-database output defaults\n" +msgstr "" +"輸出用來設定 LS_COLORS 環境變數的指令。\n" +"\n" +"æŒ‡å®šè¼¸å‡ºçš„è¦æ ¼ï¼š\n" +" -b, --sh, --bourne-shell 輸出設定 LS_COLORS çš„ Bourne shell 指令\n" +" -c, --csh, --c-shell 輸出設定 LS_COLORS çš„ C shell 指令\n" +" -p, --print-database 輸出é è¨­çš„色彩設定\n" + +#: src/dircolors.c:114 +msgid "" +"\n" +"If FILE is specified, read it to determine which colors to use for which\n" +"file types and extensions. Otherwise, a precompiled database is used.\n" +"For details on the format of these files, run `dircolors --print-database'.\n" +msgstr "" +"\n" +"如果指定 <檔案>,則讀å–該檔案的資料來決定檔案類型åŠå»¶ä¼¸æª”å相應的é¡è‰²ã€‚\n" +"å¦å‰‡ï¼Œæœƒä½¿ç”¨ä¸€å€‹é è¨­çš„資料庫。如è¦çž­è§£æ­¤æª”案格å¼çš„細節,請執行\n" +"‘dircolors --print-database’。\n" + +#: src/dircolors.c:299 +#, fuzzy, c-format +msgid "%s:%lu: invalid line; missing second token" +msgstr "%s:無效的秒數" + +#: src/dircolors.c:371 +#, fuzzy, c-format +msgid "%s:%lu: unrecognized keyword %s" +msgstr "%s:無法識別的é¸é …‘%c%s’\n" + +#: src/dircolors.c:372 +msgid "" +msgstr "<內部資料>" + +#: src/dircolors.c:467 +msgid "" +"the options to output dircolors' internal database and\n" +"to select a shell syntax are mutually exclusive" +msgstr "" +"顯示 dircolors 內部資料庫的é¸é …å’Œé¸æ“‡ shell 語法的é¸é …\n" +"是互相抵觸的" + +#: src/dircolors.c:475 +msgid "" +"no FILE arguments may be used with the option to output\n" +"dircolors' internal database" +msgstr "顯示 dircolors 的內部資料庫時ä¸èƒ½åŠ ä¸Š <檔案> 引數" + +#: src/dircolors.c:504 +msgid "no SHELL environment variable, and no shell type option given" +msgstr "沒有設定 SHELL 環境變數,也沒有指定 shell 類型的é¸é …" + +#: src/dirname.c:33 src/pathchk.c:59 +#, fuzzy +msgid "David MacKenzie and Jim Meyering" +msgstr "David Ihnatã€David MacKenzie åŠ Jim Meyering" + +#: src/dirname.c:46 +#, fuzzy, c-format +msgid "" +"Usage: %s NAME\n" +" or: %s OPTION\n" +msgstr "" +"用法:%s [檔案]...\n" +" 或:%s [é¸é …]\n" + +#: src/dirname.c:51 +msgid "" +"Print NAME with its trailing /component removed; if NAME contains no /'s,\n" +"output `.' (meaning the current directory).\n" +"\n" +msgstr "" + +#: src/du.c:49 +#, fuzzy +msgid "" +"Torbjorn Granlund, David MacKenzie, Larry McVoy, Paul Eggert, and Jim " +"Meyering" +msgstr "David Ihnatã€David MacKenzie åŠ Jim Meyering" + +#: src/du.c:175 +msgid "" +"Summarize disk usage of each FILE, recursively for directories.\n" +"\n" +msgstr "" +"ç¸½çµæ¯å€‹ <檔案> çš„ç£ç¢Ÿç”¨é‡ï¼Œç›®éŒ„則å–總用é‡ã€‚\n" +"\n" + +#: src/du.c:182 +#, fuzzy +msgid "" +" -a, --all write counts for all files, not just directories\n" +" --apparent-size print apparent sizes, rather than disk usage; " +"although\n" +" the apparent size is usually smaller, it may be\n" +" larger due to holes in (`sparse') files, internal\n" +" fragmentation, indirect blocks, and the like\n" +" -B, --block-size=SIZE use SIZE-byte blocks\n" +" -b, --bytes equivalent to `--apparent-size --block-size=1'\n" +" -c, --total produce a grand total\n" +" -D, --dereference-args dereference FILEs that are symbolic links\n" +msgstr "" +" -a, --all 顯示目錄中所有檔案的佔用é‡ï¼Œä¸¦éžåªæ˜¯ç›®éŒ„的總用é‡\n" +" -B, --block-size=å¤§å° å€æ®µä»¥æŒ‡å®š <大å°> çš„ä½å…ƒçµ„為單ä½\n" +" -b, --bytes 以ä½å…ƒçµ„為單ä½å°å‡ºä½”用é‡\n" +" -c, --total å°å‡ºæ‰€æœ‰é …目相加後的總用é‡\n" +" -D, --dereference-args åªæ‰¾å‡ºæŒ‡ä»¤åˆ—中的符號éˆçµæŒ‡ç¤ºçš„真正目的地\n" + +#: src/du.c:193 +msgid "" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" -H, --si likewise, but use powers of 1000 not 1024\n" +" -k like --block-size=1K\n" +" -l, --count-links count sizes many times if hard linked\n" +msgstr "" +" -h, --human-readable 以容易ç†è§£çš„æ ¼å¼å°å‡ºæª”æ¡ˆå¤§å° (例如 1K 234M 2G)\n" +" -H, --si 類似 -hï¼Œä½†å– 1000 çš„æ¬¡æ–¹è€Œä¸æ˜¯ 1024\n" +" -k å³ --block-size=1K\n" +" -l, --count-links 連實際éˆçµ (hard link) 的大å°ä¹Ÿè¨ˆç®—在內\n" + +#: src/du.c:199 +msgid "" +" -L, --dereference dereference all symbolic links\n" +" -S, --separate-dirs do not include size of subdirectories\n" +" -s, --summarize display only a total for each argument\n" +msgstr "" +" -L, --dereference 找出任何符號éˆçµæŒ‡ç¤ºçš„真正目的地\n" +" -S, --separate-dirs ä¸åŒ…括副目錄的佔用é‡\n" +" -s, --summarize åªåˆ†åˆ¥è¨ˆç®—指令列中æ¯å€‹å¼•數所佔的總用é‡\n" + +#: src/du.c:204 +msgid "" +" -x, --one-file-system skip directories on different filesystems\n" +" -X FILE, --exclude-from=FILE Exclude files that match any pattern in " +"FILE.\n" +" --exclude=PATTERN Exclude files that match PATTERN.\n" +" --max-depth=N print the total for a directory (or file, with --" +"all)\n" +" only if it is N or fewer levels below the command\n" +" line argument; --max-depth=0 is the same as\n" +" --summarize\n" +msgstr "" +" -x, --one-file-system ç•¥éŽå±¬æ–¼å…¶å®ƒæª”案系統的目錄\n" +" -X 檔案, --exclude-from=檔案 ç”± <檔案> è®€å–æ‡‰æŽ’除的檔案的樣å¼\n" +" --exclude=æ¨£å¼ æŽ’é™¤ç¬¦åˆæŒ‡å®š <樣å¼> 的檔案\n" +" --max-depth=N åªé¡¯ç¤ºå¼•數指定的目錄 N 層或以內的副目錄的總用é‡\n" +" (若使用 --all é¸é …,也會顯示檔案的佔用é‡)ï¼›\n" +" --max-depth=0 的效果等於 --summarize\n" + +#: src/du.c:337 +#, fuzzy, c-format +msgid "cannot change to parent of directory %s" +msgstr "無法進入%s目錄" + +#: src/du.c:345 +#, fuzzy, c-format +msgid "cannot change to directory %s" +msgstr "無法進入%s目錄" + +#: src/du.c:352 +#, fuzzy, c-format +msgid "cannot read directory %s" +msgstr "無法建立目錄%s" + +#: src/du.c:554 src/ls.c:2241 src/wc.c:591 +msgid "total" +msgstr "總計" + +#: src/du.c:641 +#, fuzzy, c-format +msgid "invalid maximum depth %s" +msgstr "無效的寬度:‘%s’" + +#: src/du.c:707 +msgid "cannot both summarize and show all entries" +msgstr "ä¸èƒ½åªé¡¯ç¤ºç¸½ç”¨é‡ï¼ŒåŒæ™‚åˆé¡¯ç¤ºæ¯å€‹é …ç›®" + +#: src/du.c:714 +msgid "warning: summarizing is the same as using --max-depth=0" +msgstr "警告:顯示總用é‡ç­‰æ–¼ä½¿ç”¨ --max-depth=0" + +#: src/du.c:720 +#, c-format +msgid "warning: summarizing conflicts with --max-depth=%d" +msgstr "警告:顯示總用é‡çš„é¸é …å’Œ --max-depth=%d 互相抵觸" + +#: src/echo.c:77 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [STRING]...\n" +msgstr "用法:%s [é¸é …]... [檔案]...\n" + +#: src/echo.c:78 +msgid "" +"Echo the STRING(s) to standard output.\n" +"\n" +" -n do not output the trailing newline\n" +" -e enable interpretation of the backslash-escaped characters\n" +" listed below\n" +" -E disable interpretation of those sequences in STRINGs\n" +msgstr "" + +#: src/echo.c:88 +msgid "" +"\n" +"Without -E, the following sequences are recognized and interpolated:\n" +"\n" +" \\NNN the character whose ASCII code is NNN (octal)\n" +" \\\\ backslash\n" +" \\a alert (BEL)\n" +" \\b backspace\n" +msgstr "" + +#: src/echo.c:97 +msgid "" +" \\c suppress trailing newline\n" +" \\f form feed\n" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/env.c:93 +#, fuzzy +msgid "Richard Mlynarik and David MacKenzie" +msgstr "Richard Stallman åŠ David MacKenzie" + +#: src/env.c:119 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n" +msgstr "用法:%s [é¸é …]... [檔案]...\n" + +#: src/env.c:122 +msgid "" +"Set each NAME to VALUE in the environment and run COMMAND.\n" +"\n" +" -i, --ignore-environment start with an empty environment\n" +" -u, --unset=NAME remove variable from the environment\n" +msgstr "" + +#: src/env.c:130 +msgid "" +"\n" +"A mere - implies -i. If no COMMAND, print the resulting environment.\n" +msgstr "" + +#: src/expand.c:114 +msgid "" +"Convert tabs in each FILE to spaces, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"å°‡æ¯å€‹ <檔案> 中的 tab 轉æ›ç‚ºç©ºæ ¼ï¼Œä¸¦åœ¨æ¨™æº–輸出顯示。\n" +"如果沒有指定 <檔案> 或 <檔案> 是 -,則由標準輸入讀å–資料。\n" + +#: src/expand.c:122 +msgid "" +" -i, --initial do not convert TABs after non whitespace\n" +" -t, --tabs=NUMBER have tabs NUMBER characters apart, not 8\n" +msgstr "" +" -i, --initial ä¸è½‰æ›éžç©ºç™½å­—元後的 TAB å­—å…ƒ\n" +" -t, --tabs=數目 å°‡ tab 轉æ›ç‚ºæŒ‡å®š <數目> çš„ç©ºæ ¼è€Œä¸æ˜¯ 8 個\n" + +#: src/expand.c:126 +msgid "" +" -t, --tabs=LIST use comma separated list of explicit tab positions\n" +msgstr " -t, --tabs=LIST 用以逗號分隔的數字來指定 tab çš„ä½ç½®\n" + +#: src/expand.c:173 src/unexpand.c:153 +msgid "tab size contains an invalid character" +msgstr "tab å­—å…ƒå¯¬åº¦å«æœ‰ç„¡æ•ˆçš„å­—å…ƒ" + +#: src/expand.c:191 src/unexpand.c:171 +msgid "tab size cannot be 0" +msgstr "tab 字元寬度ä¸å¯ç‚º 0" + +#: src/expand.c:193 src/unexpand.c:173 +msgid "tab sizes must be ascending" +msgstr "tab å­—å…ƒä½ç½®å¿…須由å°è‡³å¤§" + +#: src/expand.c:386 +msgid "`-LIST' option is obsolete; use `-t LIST'" +msgstr "‘-LIST’é¸é …å·²ç¶“éŽæ™‚;請使用‘-t LIST’" + +#: src/expr.c:90 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: %s OPTION\n" +msgstr "" +"用法:%s [檔案]...\n" +" 或:%s [é¸é …]\n" + +#: src/expr.c:98 +msgid "" +"\n" +"Print the value of EXPRESSION to standard output. A blank line below\n" +"separates increasing precedence groups. EXPRESSION may be:\n" +"\n" +" ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +"\n" +" ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +msgstr "" + +#: src/expr.c:107 +msgid "" +"\n" +" ARG1 < ARG2 ARG1 is less than ARG2\n" +" ARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" +" ARG1 = ARG2 ARG1 is equal to ARG2\n" +" ARG1 != ARG2 ARG1 is unequal to ARG2\n" +" ARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" +" ARG1 > ARG2 ARG1 is greater than ARG2\n" +msgstr "" + +#: src/expr.c:116 +msgid "" +"\n" +" ARG1 + ARG2 arithmetic sum of ARG1 and ARG2\n" +" ARG1 - ARG2 arithmetic difference of ARG1 and ARG2\n" +msgstr "" + +#: src/expr.c:121 +#, c-format +msgid "" +"\n" +" ARG1 * ARG2 arithmetic product of ARG1 and ARG2\n" +" ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2\n" +" ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2\n" +msgstr "" + +#: src/expr.c:127 +msgid "" +"\n" +" STRING : REGEXP anchored pattern match of REGEXP in STRING\n" +"\n" +" match STRING REGEXP same as STRING : REGEXP\n" +" substr STRING POS LENGTH substring of STRING, POS counted from 1\n" +" index STRING CHARS index in STRING where any CHARS is found, or 0\n" +" length STRING length of STRING\n" +msgstr "" + +#: src/expr.c:136 +msgid "" +" + TOKEN interpret TOKEN as a string, even if it is a\n" +" keyword like `match' or an operator like `/'\n" +"\n" +" ( EXPRESSION ) value of EXPRESSION\n" +msgstr "" + +#: src/expr.c:142 +msgid "" +"\n" +"Beware that many operators need to be escaped or quoted for shells.\n" +"Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n" +"Pattern matches return the string matched between \\( and \\) or null; if\n" +"\\( and \\) are not used, they return the number of characters matched or " +"0.\n" +msgstr "" + +#: src/expr.c:186 src/expr.c:438 src/expr.c:444 src/expr.c:449 src/expr.c:471 +#, fuzzy +msgid "syntax error" +msgstr "標準錯誤輸出" + +#: src/expr.c:384 +#, c-format +msgid "" +"warning: unportable BRE: `%s': using `^' as the first character\n" +"of the basic regular expression is not portable; it is being ignored" +msgstr "" + +#: src/expr.c:586 src/expr.c:625 +#, fuzzy +msgid "non-numeric argument" +msgstr "é™åˆ¶å¼•數" + +#: src/expr.c:592 +msgid "division by zero" +msgstr "" + +#: src/factor.c:74 +#, fuzzy, c-format +msgid "" +"Usage: %s [NUMBER]...\n" +" or: %s OPTION\n" +msgstr "" +"用法:%s [檔案]...\n" +" 或:%s [é¸é …]\n" + +#: src/factor.c:79 +msgid "" +"Print the prime factors of each NUMBER.\n" +"\n" +msgstr "" + +#: src/factor.c:85 +msgid "" +"\n" +" Print the prime factors of all specified integer NUMBERs. If no " +"arguments\n" +" are specified on the command line, they are read from standard input.\n" +msgstr "" + +#: src/factor.c:154 +#, c-format +msgid "`%s' is not a valid positive integer" +msgstr "" + +#: src/false.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating failure.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" + +#: src/fmt.c:271 +#, c-format +msgid "Usage: %s [-DIGITS] [OPTION]... [FILE]...\n" +msgstr "用法:%s [-數字] [é¸é …]... [檔案]...\n" + +#: src/fmt.c:272 +msgid "" +"Reformat each paragraph in the FILE(s), writing to standard output.\n" +"If no FILE or if FILE is `-', read standard input.\n" +"\n" +msgstr "" +"釿–°ç·¨æŽ’ <檔案> 中的æ¯ä¸€æ®µæ–‡å­—ï¼Œä¸¦åœ¨æ¨™æº–è¼¸å‡ºé¡¯ç¤ºçµæžœã€‚\n" +"如果沒有指定 <檔案> 或 <檔案> 是‘-’,則由標準輸入讀å–資料。\n" +"\n" + +#: src/fmt.c:280 +msgid "" +" -c, --crown-margin preserve indentation of first two lines\n" +" -p, --prefix=STRING combine only lines having STRING as prefix\n" +" -s, --split-only split long lines, but do not refill\n" +msgstr "" +" -c, --crown-margin ä¿ç•™æœ€åˆå…©è¡Œçš„縮排方å¼\n" +" -p, --prefix=字串 åªåˆä½µå«æœ‰æŒ‡å®šå‰ç½® <字串> çš„æ¯ä¸€è¡Œ\n" +" -s, --split-only åªå°‡ä¸€è¡ŒéŽé•·çš„資料分開,而ä¸åˆä½µå¤šæ–¼ä¸€è¡Œçš„資料\n" + +#: src/fmt.c:286 +msgid "" +" -t, --tagged-paragraph indentation of first line different from second\n" +" -u, --uniform-spacing one space between words, two after sentences\n" +" -w, --width=NUMBER maximum line width (default of 75 columns)\n" +msgstr "" +" -t, --tagged-paragraph 第一和第二行的縮排方å¼ä¸åŒ\n" +" -u, --uniform-spacing æ¯å…©å€‹å­—之間以一個空格分隔,å¥å­å¾Œå‰‡ç”¨å…©å€‹ç©ºæ ¼\n" +" -w, --width=數字 最大的行寬 (é è¨­ç‚º 75 個字元)\n" + +#: src/fmt.c:293 +msgid "" +"\n" +"In -wNUMBER, the letter `w' may be omitted.\n" +msgstr "" +"\n" +"使用 -w數字 時,字元‘w’å¯ä»¥çœç•¥ä¸ç”¨ã€‚\n" + +#: src/fmt.c:345 +#, c-format +msgid "invalid width option: `%s'" +msgstr "無效的寬度é¸é …:‘%s’" + +#: src/fmt.c:385 +#, c-format +msgid "invalid width: `%s'" +msgstr "無效的寬度:‘%s’" + +#: src/fold.c:71 +msgid "" +"Wrap input lines in each FILE (standard input by default), writing to\n" +"standard output.\n" +"\n" +msgstr "" +"å°‡ <檔案> (é è¨­ç‚ºæ¨™æº–輸入) 中的æ¯ä¸€è¡Œé€²è¡Œè‡ªå‹•æ–·è¡Œï¼Œä¸¦åœ¨æ¨™æº–è¼¸å‡ºé¡¯ç¤ºçµæžœã€‚\n" +"\n" + +#: src/fold.c:79 +msgid "" +" -b, --bytes count bytes rather than columns\n" +" -s, --spaces break at spaces\n" +" -w, --width=WIDTH use WIDTH columns instead of 80\n" +msgstr "" +" -b, --bytes 計算ä½å…ƒçµ„總數而éžå­—å…ƒä½ç½®\n" +" -s, --spaces åªåœ¨ç©ºæ ¼ä½ç½®æ–·é–‹\n" +" -w, --width=寬度 使用指定的 <寬度> ä½œç‚ºè¡Œå¯¬è€Œéž 80\n" + +#: src/fold.c:267 +#, c-format +msgid "`%s' option is obsolete; use `%s'" +msgstr "‘%s’é¸é …å·²éŽæ™‚;請使用‘%s’" + +#: src/fold.c:295 +#, c-format +msgid "invalid number of columns: `%s'" +msgstr "ç„¡æ•ˆçš„æ¬„ä½æ•¸ç›®ï¼šâ€˜%s’" + +#: src/head.c:92 +msgid "" +"Print first 10 lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"在標準輸出å°å‡ºæ¯å€‹ <檔案> çš„æœ€åˆ 10 行。\n" +"當多於一個 <檔案> 時,顯示時會先加上表示檔案å稱的標頭。\n" +"如果沒有指定 <檔案> 或 <檔案> 是 -,則由標準輸入讀å–資料。\n" + +#: src/head.c:101 +msgid "" +" -c, --bytes=SIZE print first SIZE bytes\n" +" -n, --lines=NUMBER print first NUMBER lines instead of first 10\n" +msgstr "" +" -c, --bytes=å¤§å° å°å‡ºæœ€åˆæŒ‡å®š <大å°> çš„ä½å…ƒçµ„\n" +" -n, --lines=行數 å°å‡ºæœ€åˆæŒ‡å®š <行數> è€Œéžæœ€åˆ 10 行\n" + +#: src/head.c:105 +msgid "" +" -q, --quiet, --silent never print headers giving file names\n" +" -v, --verbose always print headers giving file names\n" +msgstr "" +" -q, --quiet, --silent 絕ä¸é¡¯ç¤ºå«æœ‰æª”案å稱的標頭\n" +" -v, --verbose ä¸€å®šé¡¯ç¤ºå«æœ‰æª”案å稱的標頭\n" + +#: src/head.c:111 src/split.c:120 +msgid "" +"\n" +"SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.\n" +msgstr "" +"\n" +"<大å°> å¯ä»¥åŠ ä¸Šå–®ä½ï¼šb 表示 512,k 表示 1K,m 表示 1M。\n" + +#: src/head.c:190 +#, c-format +msgid "cannot reposition file pointer for %s" +msgstr "無法將 %s çš„æª”æ¡ˆæŒ‡æ¨™é‡æ–°å®šä½" + +#: src/head.c:256 src/tail.c:1388 +#, c-format +msgid "%s: %s is so large that it is not representable" +msgstr "%s:%séŽå¤§ï¼Œå› æ­¤ç„¡æ³•表示" + +#: src/head.c:257 src/tail.c:1390 +msgid "number of lines" +msgstr "行數" + +#: src/head.c:257 src/tail.c:1391 +msgid "number of bytes" +msgstr "ä½å…ƒçµ„數目" + +#: src/head.c:264 src/tail.c:1478 +msgid "invalid number of lines" +msgstr "無效的行數" + +#: src/head.c:265 src/tail.c:1479 +msgid "invalid number of bytes" +msgstr "無效的ä½å…ƒçµ„數目" + +#: src/head.c:341 +#, c-format +msgid "unrecognized option `-%c'" +msgstr "無法識別的é¸é …‘-%c’" + +#: src/head.c:348 +#, c-format +msgid "`-%s' option is obsolete; use `-%c %.*s%.*s%s'" +msgstr "‘-%s’é¸é …å·²éŽæ™‚;請使用‘-%c %.*s%.*s%s’" + +#: src/hostid.c:48 +#, c-format +msgid "" +"Usage: %s\n" +" or: %s OPTION\n" +"Print the numeric identifier (in hexadecimal) for the current host.\n" +"\n" +msgstr "" + +#: src/hostname.c:67 +#, c-format +msgid "" +"Usage: %s [NAME]\n" +" or: %s OPTION\n" +"Print or set the hostname of the current system.\n" +"\n" +msgstr "" + +#: src/hostname.c:104 +#, fuzzy, c-format +msgid "cannot set hostname to `%s'" +msgstr "無法å°â€˜%s’執行輸出入控制 (ioctl)" + +#: src/hostname.c:110 +msgid "cannot set hostname; this system lacks the functionality" +msgstr "" + +#: src/hostname.c:117 +#, fuzzy +msgid "cannot determine hostname" +msgstr "無法設定%s的權é™" + +#: src/id.c:36 +#, fuzzy +msgid "Arnold Robbins and David MacKenzie" +msgstr "Paul Rubin åŠ David MacKenzie" + +#: src/id.c:87 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USERNAME]\n" +msgstr "用法:%s [é¸é …]... SET1 [SET2]\n" + +#: src/id.c:88 +msgid "" +"Print information for USERNAME, or the current user.\n" +"\n" +" -a ignore, for compatibility with other versions\n" +" -g, --group print only the effective group ID\n" +" -G, --groups print all group IDs\n" +" -n, --name print a name instead of a number, for -ugG\n" +" -r, --real print the real ID instead of the effective ID, with -ugG\n" +" -u, --user print only the effective user ID\n" +msgstr "" + +#: src/id.c:100 +msgid "" +"\n" +"Without any OPTION, print some useful set of identified information.\n" +msgstr "" + +#: src/id.c:162 +#, fuzzy +msgid "cannot print only user and only group" +msgstr "ä¸å¯åŒæ™‚çœç•¥ä½¿ç”¨è€…和所屬群組" + +#: src/id.c:166 +msgid "cannot print only names or real IDs in default format" +msgstr "" + +#: src/id.c:175 +#, c-format +msgid "%s: No such user" +msgstr "" + +#: src/id.c:212 +#, c-format +msgid "cannot find name for user ID %u" +msgstr "" + +#: src/id.c:235 +#, fuzzy, c-format +msgid "cannot find name for group ID %u" +msgstr "無法更改%sçš„æ“æœ‰è€…å’Œ/或所屬群組" + +#: src/id.c:273 +#, fuzzy +msgid "cannot get supplemental group list" +msgstr "無法改變所屬群組至沒有å稱的群組" + +#: src/id.c:385 +msgid " groups=" +msgstr "" + +#: src/install.c:269 +msgid "the strip option may not be used when installing a directory" +msgstr "安è£ç›®éŒ„時ä¸èƒ½ç”¨ strip é¸é …" + +#: src/install.c:292 src/mkdir.c:140 +#, fuzzy, c-format +msgid "invalid mode %s" +msgstr "無效的寬度:‘%s’" + +#: src/install.c:307 src/install.c:371 +#, fuzzy, c-format +msgid "creating directory %s" +msgstr "無法建立目錄%s" + +#: src/install.c:332 +#, c-format +msgid "installing multiple files, but last argument, %s is not a directory" +msgstr "正在安è£å¤šå€‹æª”案,但最後的引數%s並éžç›®éŒ„。" + +#: src/install.c:435 +#, fuzzy, c-format +msgid "%s is a directory" +msgstr "%så·²å­˜åœ¨ä½†ä¸æ˜¯ç›®éŒ„" + +#: src/install.c:495 +#, fuzzy, c-format +msgid "cannot obtain time stamps for %s" +msgstr "無法將 %s çš„æª”æ¡ˆæŒ‡æ¨™é‡æ–°å®šä½" + +#: src/install.c:507 +#, fuzzy, c-format +msgid "cannot set time stamps for %s" +msgstr "無法建立目錄%s" + +#: src/install.c:528 +#, fuzzy +msgid "fork system call failed" +msgstr "å€å¡Šç‰¹æ®Šæª”案" + +#: src/install.c:532 +msgid "cannot run strip" +msgstr "無法執行 strip 指令" + +#: src/install.c:539 +#, fuzzy +msgid "strip failed" +msgstr "stat 時發生錯誤" + +#: src/install.c:560 +#, fuzzy, c-format +msgid "invalid user %s" +msgstr "無效的使用者" + +#: src/install.c:578 +#, fuzzy, c-format +msgid "invalid group %s" +msgstr "無效的群組" + +#: src/install.c:597 +#, c-format +msgid "" +"Usage: %s [OPTION]... SOURCE DEST (1st format)\n" +" or: %s [OPTION]... SOURCE... DIRECTORY (2nd format)\n" +" or: %s -d [OPTION]... DIRECTORY... (3rd format)\n" +msgstr "" +"用法:%s [é¸é …]... ä¾†æº ç›®çš„åœ° (第一種格å¼)\n" +" 或:%s [é¸é …]... 來æº... 目錄 (第二種格å¼)\n" +" 或:%s -d [é¸é …]... 目錄... (第三種格å¼)\n" + +#: src/install.c:603 +msgid "" +"In the first two formats, copy SOURCE to DEST or multiple SOURCE(s) to\n" +"the existing DIRECTORY, while setting permission modes and owner/group.\n" +"In the third format, create all components of the given DIRECTORY(ies).\n" +"\n" +msgstr "" +"在最åˆå…©ç¨®æ ¼å¼ä¸­ï¼Œæœƒå°‡ <來æº> 複製至 <目的地> 或將多個 <來æº>\n" +"複製至已存在的 <目錄>ï¼ŒåŒæ™‚è¨­å®šæ¬Šé™æ¨¡å¼åŠæ“有者/所屬群組。\n" +"在第三種格å¼ä¸­ï¼Œæœƒå»ºç«‹æ‰€æœ‰æŒ‡å®šçš„目錄åŠå®ƒå€‘的所有上層目錄。\n" +"\n" + +#: src/install.c:612 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination file\n" +" -b like --backup but does not accept an argument\n" +" -c (ignored)\n" +" -d, --directory treat all arguments as directory names; create all\n" +" components of the specified directories\n" +msgstr "" +" --backup[=CONTROL] 為æ¯å€‹å·²å­˜åœ¨çš„目的地檔案進行備份\n" +" -b 類似 --backupï¼Œä½†ä¸æŽ¥å—任何引數\n" +" -c (æ­¤é¸é …ä¸ä½œè™•ç†)\n" +" -d, --directory 所有引數都作為目錄處ç†ï¼›è€Œä¸”會建立指定目錄的所有主目" +"錄\n" + +#: src/install.c:619 +msgid "" +" -D create all leading components of DEST except the " +"last,\n" +" then copy SOURCE to DEST; useful in the 1st format\n" +" -g, --group=GROUP set group ownership, instead of process' current " +"group\n" +" -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-" +"x\n" +" -o, --owner=OWNER set ownership (super-user only)\n" +msgstr "" +" -D 建立 <目的地> å‰çš„æ‰€æœ‰ä¸Šå±¤ç›®éŒ„,然後將 <來æº> 複製至\n" +" <目的地>;在第一種使用格å¼ä¸­æœ‰ç”¨\n" +" -g, --group=群組 è‡ªè¡Œè¨­å®šæ‰€å±¬ç¾¤çµ„ï¼Œè€Œä¸æ˜¯ç¨‹åºç›®å‰çš„æ‰€å±¬ç¾¤çµ„\n" +" -m, --mode=æ¨¡å¼ è‡ªè¡Œè¨­å®šæ¬Šé™æ¨¡å¼ (åƒ chmod)ï¼Œè€Œä¸æ˜¯ rwxr-xr-x\n" +" -o, --owner=æ“æœ‰è€… è‡ªè¡Œè¨­å®šæ“æœ‰è€… (åªé©ç”¨æ–¼æœ€å¤§æ¬ŠåŠ›ä½¿ç”¨è€…)\n" + +#: src/install.c:626 +msgid "" +" -p, --preserve-timestamps apply access/modification times of SOURCE " +"files\n" +" to corresponding destination files\n" +" -s, --strip strip symbol tables, only for 1st and 2nd formats\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" -v, --verbose print the name of each directory as it is created\n" +msgstr "" +" -p, --preserve-timestamps 以 <來æº> 檔案的存å–/修改時間作為相應的目的\n" +" 地檔案的時間屬性\n" +" -s, --strip 用 strip 指令移除 symbol table,åªé©ç”¨æ–¼ç¬¬ä¸€åŠç¬¬äºŒç¨®\n" +" 使用格å¼\n" +" -S, --suffix=字串 自行指定備份檔的後置 <字串>\n" +" -v, --verbose è™•ç†æ¯å€‹æª”案/目錄時å°å‡ºå稱\n" + +#: src/install.c:635 src/ln.c:377 src/mv.c:348 +msgid "" +"\n" +"The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n" +"The version control method may be selected via the --backup option or " +"through\n" +"the VERSION_CONTROL environment variable. Here are the values:\n" +"\n" +msgstr "" +"\n" +"備份檔的後置字串為‘~’,除éžä»¥ --suffix é¸é …或是 SIMPLE_BACKUP_SUFFIX\n" +"環境變數指定。版本控制的方å¼å¯é€éŽ --backup é¸é …或 VERSION_CONTROL 環境\n" +"è®Šæ•¸ä¾†é¸æ“‡ã€‚以下是å¯ç”¨çš„變數值:\n" +"\n" + +#: src/join.c:144 +#, c-format +msgid "Usage: %s [OPTION]... FILE1 FILE2\n" +msgstr "用法:%s [é¸é …]... 檔案1 檔案2\n" + +#: src/join.c:148 +#, fuzzy +msgid "" +"For each pair of input lines with identical join fields, write a line to\n" +"standard output. The default join field is the first, delimited\n" +"by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n" +"\n" +" -a FILENUM print unpairable lines coming from file FILENUM, where\n" +" FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n" +" -e EMPTY replace missing input fields with EMPTY\n" +msgstr "" +"當兩個檔案指定è¦åˆä½µçš„æ¬„ä½ç›¸åŒæ™‚ï¼Œä¸¦åœ¨æ¨™æº–è¼¸å‡ºé¡¯ç¤ºçµæžœã€‚é è¨­çš„åˆä½µæ¬„使˜¯\n" +"以空格分隔計算的第一個欄ä½ã€‚如果 <檔案1> 或 <檔案2> (並éžåŒæ™‚) 是 -,則\n" +"由標準輸入讀å–資料。\n" +"\n" +" -a SIDE ç•¶æŸè¡Œé‡åˆ°ç„¡æ³•é…å°çš„æ¬„使™‚,å–其中一個檔案å°å‡ºè©²è¡Œ\n" +" -e 字串 ç•¶ç¼ºå°‘è¼¸å…¥æ¬„ä½æ™‚,以 <字串> 代替\n" + +#: src/join.c:157 +msgid "" +" -i, --ignore-case ignore differences in case when comparing fields\n" +" -j FIELD (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n" +" -j1 FIELD (obsolescent) equivalent to `-1 FIELD'\n" +" -j2 FIELD (obsolescent) equivalent to `-2 FIELD'\n" +" -o FORMAT obey FORMAT while constructing output line\n" +" -t CHAR use CHAR as input and output field separator\n" +msgstr "" +" -i, --ignore-case ç•¶æ¯”è¼ƒæ¬„ä½æ™‚忽略大å°å¯«\n" +" -j æ¬„ä½ (å·²éŽæ™‚) 等於‘-1 æ¬„ä½ -2 欄ä½â€™\n" +" -j1 æ¬„ä½ (å·²éŽæ™‚) 等於‘-1 欄ä½â€™\n" +" -j2 æ¬„ä½ (å·²éŽæ™‚) 等於‘-2 欄ä½â€™\n" +" -o æ ¼å¼ ç•¶è¼¸å‡ºæ™‚éµå¾žæŒ‡å®š <æ ¼å¼>\n" +" -t å­—å…ƒ 以 <å­—å…ƒ> 作為輸入和輸出的欄ä½åˆ†éš”符號\n" + +#: src/join.c:165 +#, fuzzy +msgid "" +" -v FILENUM like -a FILENUM, but suppress joined output lines\n" +" -1 FIELD join on this FIELD of file 1\n" +" -2 FIELD join on this FIELD of file 2\n" +msgstr "" +" -v SIDE 類似 -a SIDE,但ä¸å°å‡ºå·²åˆä½µçš„任何一行\n" +" -1 æ¬„ä½ ä»¥æª”æ¡ˆ 1 的指定 <欄ä½> 來åˆä½µ\n" +" -2 æ¬„ä½ ä»¥æª”æ¡ˆ 2 的指定 <欄ä½> 來åˆä½µ\n" + +#: src/join.c:172 +#, fuzzy +msgid "" +"\n" +"Unless -t CHAR is given, leading blanks separate fields and are ignored,\n" +"else fields are separated by CHAR. Any FIELD is a field number counted\n" +"from 1. FORMAT is one or more comma or blank separated specifications,\n" +"each being `FILENUM.FIELD' or `0'. Default FORMAT outputs the join field,\n" +"the remaining fields from FILE1, the remaining fields from FILE2, all\n" +"separated by CHAR.\n" +msgstr "" +"\n" +"除éžä½¿ç”¨äº†â€˜-t 字元’é¸é …,會忽略æ¯è¡Œé–‹å§‹çš„空白字元,å¦å‰‡æ¬„使œƒä»¥æŒ‡å®šçš„\n" +"<å­—å…ƒ>分隔。<欄ä½> 編號是由 1 開始算起的。<æ ¼å¼> 是一個或多個以逗號分隔的\n" +"字串,æ¯å€‹å­—串å¯ä»¥æ˜¯â€˜SIDE.<欄ä½>’或‘0’。é è¨­çš„ <æ ¼å¼>是先輸出用來åˆä½µ\n" +"的索引,然後是 <檔案1>的其它欄ä½ï¼Œæœ€å¾Œæ˜¯ <檔案2> 的其它欄ä½ï¼Œå…¨éƒ¨çš†ä»¥\n" +"<å­—å…ƒ> 來分隔。\n" + +#: src/join.c:645 +#, c-format +msgid "invalid field specifier: `%s'" +msgstr "無效的欄ä½è¦æ ¼ï¼šâ€˜%s’" + +#: src/join.c:659 src/join.c:772 src/join.c:808 +#, c-format +msgid "invalid field number: `%s'" +msgstr "無效的欄ä½è™Ÿç¢¼ï¼šâ€˜%s’" + +#: src/join.c:672 +#, c-format +msgid "invalid file number in field spec: `%s'" +msgstr "欄ä½è¦æ ¼ä¸­å«æœ‰ç„¡æ•ˆçš„æª”案編號:‘%s’" + +#: src/join.c:792 +#, c-format +msgid "invalid field number for file 1: `%s'" +msgstr "檔案 1 的欄ä½è™Ÿç¢¼æ˜¯ç„¡æ•ˆçš„:‘%s’" + +#: src/join.c:801 +#, c-format +msgid "invalid field number for file 2: `%s'" +msgstr "檔案 2 的欄ä½è™Ÿç¢¼æ˜¯ç„¡æ•ˆçš„:‘%s’" + +#: src/join.c:833 +msgid "too many non-option arguments" +msgstr "éžé¸é …的引數éŽå¤š" + +#: src/join.c:855 +msgid "too few non-option arguments" +msgstr "éžé¸é …的引數éŽå°‘" + +#: src/join.c:866 +msgid "both files cannot be standard input" +msgstr "兩個檔案ä¸èƒ½éƒ½æ˜¯æ¨™æº–輸入" + +#: src/kill.c:93 +#, c-format +msgid "" +"Usage: %s [-s SIGNAL | -SIGNAL] PID...\n" +" or: %s -l [SIGNAL]...\n" +" or: %s -t [SIGNAL]...\n" +msgstr "" + +#: src/kill.c:99 +msgid "" +"Send signals to processes, or list signals.\n" +"\n" +msgstr "" + +#: src/kill.c:106 +msgid "" +" -s, --signal=SIGNAL, -SIGNAL\n" +" specify the name or number of the signal to be sent\n" +" -l, --list list signal names, or convert signal names to/from " +"numbers\n" +" -t, --table print a table of signal information\n" +msgstr "" + +#: src/kill.c:114 +msgid "" +"\n" +"SIGNAL may be a signal name like `HUP', or a signal number like `1',\n" +"or an exit status of a process terminated by a signal.\n" +"PID is an integer; if negative it identifies a process group.\n" +msgstr "" + +#: src/kill.c:163 +#, fuzzy, c-format +msgid "%s: invalid signal" +msgstr "%s:無效的 PID" + +#: src/kill.c:262 +#, fuzzy, c-format +msgid "missing operand after `%s'" +msgstr "%s:‘%câ€™å¾Œé¢æ‡‰è©²æ˜¯æ•´æ•¸" + +#: src/kill.c:274 +#, fuzzy, c-format +msgid "%s: invalid process id" +msgstr "%s:無效的樣å¼" + +#: src/kill.c:327 +#, fuzzy, c-format +msgid "invalid option -- %c" +msgstr "%s:無效的é¸é … ─ %c\n" + +#: src/kill.c:336 +#, c-format +msgid "%s: multiple signals specified" +msgstr "" + +#: src/kill.c:350 +msgid "multiple -l or -t options specified" +msgstr "" + +#: src/kill.c:367 +msgid "cannot combine signal with -l or -t" +msgstr "" + +#: src/link.c:51 +#, fuzzy, c-format +msgid "" +"Usage: %s FILE1 FILE2\n" +" or: %s OPTION\n" +msgstr "" +"用法:%s [檔案]...\n" +" 或:%s [é¸é …]\n" + +#: src/link.c:54 +msgid "" +"Call the link function to create a link named FILE2 to an existing FILE1.\n" +"\n" +msgstr "" +"é€éŽèª¿ç”¨ link 函å¼ï¼Œå»ºç«‹é€£è‡³ <檔案1> çš„éˆçµï¼Œéˆçµå稱為 <檔案2>。\n" +"\n" + +#: src/link.c:98 +#, fuzzy, c-format +msgid "cannot create link %s to %s" +msgstr "無法建立目錄%s" + +#: src/ln.c:39 +#, fuzzy +msgid "Mike Parker and David MacKenzie" +msgstr "Scott Bartram åŠ David MacKenzie" + +#: src/ln.c:167 +#, c-format +msgid "%s: warning: making a hard link to a symbolic link is not portable" +msgstr "%s:警告:將實際éˆçµ (hard link) 連至符號éˆçµä¸æ˜¯æ‰€æœ‰ç³»çµ±éƒ½é©ç”¨çš„功能" + +#: src/ln.c:174 +#, c-format +msgid "%s: hard link not allowed for directory" +msgstr "%s: ä¸å…許將實際éˆçµ (hard link) 連至目錄" + +#: src/ln.c:246 +#, fuzzy, c-format +msgid "%s: cannot overwrite directory" +msgstr "無法建立目錄%s" + +#: src/ln.c:251 +#, c-format +msgid "%s: replace %s? " +msgstr "%s:是å¦ç½®æ›%s? " + +#: src/ln.c:257 +#, c-format +msgid "%s: File exists" +msgstr "%s:檔案已存在" + +#: src/ln.c:304 +#, fuzzy, c-format +msgid "create symbolic link %s to %s" +msgstr "符號連çµ" + +#: src/ln.c:305 +#, c-format +msgid "create hard link %s to %s" +msgstr "建立連至%2$s的實際éˆçµ (hard link)%1$s" + +#: src/ln.c:319 +#, c-format +msgid "creating symbolic link %s to %s" +msgstr "正在建立連至%2$s的符號éˆçµ%1$s" + +#: src/ln.c:320 +#, c-format +msgid "creating hard link %s to %s" +msgstr "正在建立連至%2$s的實際éˆçµ (hard link)%1$s" + +#: src/ln.c:339 +#, c-format +msgid "" +"Usage: %s [OPTION]... TARGET [LINK_NAME]\n" +" or: %s [OPTION]... TARGET... DIRECTORY\n" +" or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n" +msgstr "" +"用法:%s [é¸é …]... 目標 [éˆçµå稱]\n" +" 或:%s [é¸é …]... 目標... 目錄\n" +" 或:%s [é¸é …]... --target-directory=目錄 目標...\n" + +#: src/ln.c:345 +msgid "" +"Create a link to the specified TARGET with optional LINK_NAME.\n" +"If LINK_NAME is omitted, a link with the same basename as the TARGET is\n" +"created in the current directory. When using the second form with more\n" +"than one TARGET, the last argument must be a directory; create links\n" +"in DIRECTORY to each TARGET. Create hard links by default, symbolic\n" +"links with --symbolic. When creating hard links, each TARGET must exist.\n" +"\n" +msgstr "" +"建立連至指定 <目標> çš„éˆçµï¼Œä¸¦å¯é¸æ“‡æŒ‡å®š <éˆçµå稱>。\n" +"如果沒有指定 <éˆçµå稱>,會在目å‰çš„目錄中建立一個和 <目標> å稱一樣的éˆçµã€‚\n" +"當使用第二種格å¼è€Œ <目標> 多於一個時,最後的引數必須是目錄;這樣會在指定的\n" +"<目錄> 中分別建立連至æ¯å€‹ <目標> çš„éˆçµã€‚é è¨­çš„é‹ä½œæ–¹å¼æ˜¯å»ºç«‹å¯¦éš›éˆçµ (hard\n" +"link),若使用 --symbolic é¸é …則建立符號éˆçµã€‚當建立實際éˆçµæ™‚,æ¯å€‹ <目標>\n" +"都必須存在。\n" +"\n" + +#: src/ln.c:357 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an argument\n" +" -d, -F, --directory hard link directories (super-user only)\n" +" -f, --force remove existing destination files\n" +msgstr "" +" --backup[=CONTROL] 為æ¯å€‹å·²å­˜åœ¨çš„目的地檔案建立備份檔\n" +" -b 類似 --backupï¼Œä½†ä¸æŽ¥å—任何引數\n" +" -d, -F, --directory 建立連至目錄的實際éˆçµ (åªé©ç”¨æ–¼æœ€å¤§æ¬ŠåŠ›ä½¿ç”¨" +"者)\n" +" -f, --force 強迫移除任何已存在的目的地檔案\n" + +#: src/ln.c:363 +msgid "" +" -n, --no-dereference treat destination that is a symlink to a\n" +" directory as if it were a normal file\n" +" -i, --interactive prompt whether to remove destinations\n" +" -s, --symbolic make symbolic links instead of hard links\n" +msgstr "" +" -n, --no-dereference 如果目的地是一個連çµè‡³æŸç›®éŒ„的符號éˆçµï¼Œæœƒå°‡\n" +" 該符號éˆçµç•¶ä½œæ™®é€šæª”案處ç†ï¼Œæœƒå…ˆå‚™ä»½æˆ–移除該\n" +" éˆçµ\n" +" -i, --interactive ç¢ºèªæ˜¯å¦ç§»é™¤ç›®çš„地檔案\n" +" -s, --symbolic 建立符號éˆçµè€Œä¸æ˜¯å¯¦éš›éˆçµ\n" + +#: src/ln.c:369 +msgid "" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +" --target-directory=DIRECTORY specify the DIRECTORY in which to " +"create\n" +" the links\n" +" -v, --verbose print name of each file before linking\n" +msgstr "" +" -S, --suffix=後置字串 自行指定備份檔的 <後置字串>\n" +" --target-directory=目錄 在指定 <目錄> 中建立éˆçµ\n" +" -v, --verbose 連çµå‰å…ˆå°å‡ºæ¯å€‹æª”案的å稱\n" + +#: src/ln.c:521 +#, fuzzy, c-format +msgid "%s: specified target directory is not a directory" +msgstr "%så·²å­˜åœ¨ä½†ä¸æ˜¯ç›®éŒ„" + +#: src/ln.c:542 +msgid "when making multiple links, last argument must be a directory" +msgstr "建立多個éˆçµæ™‚,最後的引數必需為目錄" + +#: src/logname.c:48 src/pwd.c:46 src/sync.c:44 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]\n" +msgstr "用法:%s [é¸é …] [檔案]...\n" + +#: src/logname.c:49 +msgid "" +"Print the name of the current user.\n" +"\n" +msgstr "" + +#: src/logname.c:99 +#, fuzzy, c-format +msgid "%s: no login name\n" +msgstr "%s:無效的號碼" + +#: src/ls.c:673 +#, fuzzy +msgid "%b %e %Y" +msgstr "%Y-%m-%d %H:%M" + +#: src/ls.c:681 +#, fuzzy +msgid "%b %e %H:%M" +msgstr "%Y-%m-%d %H:%M" + +#: src/ls.c:1307 +#, fuzzy, c-format +msgid "ignoring invalid value of environment variable QUOTING_STYLE: %s" +msgstr "忽略無效的環境變數 QUOTING_STYLE 的變數值:%s" + +#: src/ls.c:1334 +#, c-format +msgid "ignoring invalid width in environment variable COLUMNS: %s" +msgstr "忽略無效的環境變數 COLUMNS 的寬度數值:%s" + +#: src/ls.c:1365 +#, c-format +msgid "ignoring invalid tab size in environment variable TABSIZE: %s" +msgstr "忽略無效的環境變數 TABSIZE çš„ tab 字元定ä½å€¼ï¼š%s" + +#: src/ls.c:1482 +#, fuzzy, c-format +msgid "invalid line width: %s" +msgstr "無效的寬度:‘%s’" + +#: src/ls.c:1556 +#, fuzzy, c-format +msgid "invalid tab size: %s" +msgstr "無效的類型‘%s’" + +#: src/ls.c:1722 +#, fuzzy, c-format +msgid "invalid time style format %s" +msgstr "%2$s的引數%1$s無效" + +#: src/ls.c:2054 +#, fuzzy, c-format +msgid "unrecognized prefix: %s" +msgstr "無法識別的é¸é …‘-%c’" + +#: src/ls.c:2077 +msgid "unparsable value for LS_COLORS environment variable" +msgstr "LS_COLORS 環境變數中存在無法分æžçš„值" + +#: src/ls.c:2145 +#, fuzzy, c-format +msgid "cannot determine device and inode of %s" +msgstr "無法將 %s çš„æª”æ¡ˆæŒ‡æ¨™é‡æ–°å®šä½" + +#: src/ls.c:2155 +#, fuzzy, c-format +msgid "not listing already-listed directory: %s" +msgstr "無法建立目錄%s" + +#: src/ls.c:2208 src/remove.c:929 +#, fuzzy, c-format +msgid "reading directory %s" +msgstr "無法建立目錄%s" + +#: src/ls.c:2603 +#, fuzzy, c-format +msgid "cannot compare file names %s and %s" +msgstr "è¦æ¯”較的字串為%såŠ%s。" + +#: src/ls.c:3762 +msgid "" +"List information about the FILEs (the current directory by default).\n" +"Sort entries alphabetically if none of -cftuSUX nor --sort.\n" +"\n" +msgstr "" +"列出 <檔案> 的資訊 (é è¨­ç‚ºç›®å‰çš„目錄)。\n" +"å¦‚æžœä¸æŒ‡å®š -cftuSUX 或 --sort 任何一個é¸é …,則根據字æ¯å¤§å°æŽ’åºã€‚\n" +"\n" + +#: src/ls.c:3770 +msgid "" +" -a, --all do not hide entries starting with .\n" +" -A, --almost-all do not list implied . and ..\n" +" --author print the author of each file\n" +" -b, --escape print octal escapes for nongraphic characters\n" +msgstr "" +" -a, --all ä¸éš±è—任何以 . 字元開始的項目\n" +" -A, --almost-all 列出除了 . åŠ .. 以外的任何項目\n" +" --author å°å‡ºæ¯å€‹æª”案的著作者\n" +" -b, --escape 以八進使º¢å‡ºåºåˆ—表示ä¸å¯åˆ—å°çš„å­—å…ƒ\n" + +#: src/ls.c:3776 +msgid "" +" --block-size=SIZE use SIZE-byte blocks\n" +" -B, --ignore-backups do not list implied entries ending with ~\n" +" -c with -lt: sort by, and show, ctime (time of " +"last\n" +" modification of file status information)\n" +" with -l: show ctime and sort by name\n" +" otherwise: sort by ctime\n" +msgstr "" +" --block-size=å¤§å° å€æ®µä»¥æŒ‡å®š <大å°> çš„ä½å…ƒçµ„為單ä½\n" +" -B, --ignore-backups ä¸åˆ—出任何以 ~ å­—å…ƒçµæŸçš„é …ç›®\n" +" -c é…åˆ -lt:根據 ctime 排åºåŠé¡¯ç¤º ctime\n" +" (檔案狀態最後更改的時間)\n" +" é…åˆ -l :顯示 ctime 但根據å稱排åº\n" +" å¦å‰‡ :根據 ctime 排åº\n" + +#: src/ls.c:3784 +#, fuzzy +msgid "" +" -C list entries by columns\n" +" --color[=WHEN] control whether color is used to distinguish " +"file\n" +" types. WHEN may be `never', `always', or " +"`auto'\n" +" -d, --directory list directory entries instead of contents,\n" +" and do not dereference symbolic links\n" +" -D, --dired generate output designed for Emacs' dired mode\n" +msgstr "" +" -C æ¯æ¬„由上至下列出項目\n" +" --color[=WHEN] 控制是å¦ä½¿ç”¨è‰²å½©åˆ†è¾¨æª”案。WHEN å¯ä»¥æ˜¯\n" +" ‘never’ã€â€˜always’或‘auto’其中之一\n" +" -d, --directory ç•¶é‡åˆ°ç›®éŒ„時列出目錄本身而éžç›®éŒ„內的檔案\n" +" -D, --dired 產生é©åˆ Emacs çš„ dired 模å¼ä½¿ç”¨çš„çµæžœ\n" + +#: src/ls.c:3792 +msgid "" +" -f do not sort, enable -aU, disable -lst\n" +" -F, --classify append indicator (one of */=@|) to entries\n" +" --format=WORD across -x, commas -m, horizontal -x, long -l,\n" +" single-column -1, verbose -l, vertical -C\n" +" --full-time like -l --time-style=full-iso\n" +msgstr "" +" -f ä¸é€²è¡ŒæŽ’åºï¼Œ-aU é¸é …生效,-lst é¸é …失效\n" +" -F, --classify 加上檔案類型的指示符號 (*/=@| 其中一個)\n" +" --format=é—œéµå­— across -x,commas -m,horizontal -x,long -l,\n" +" single-column -1,verbose -l,vertical -C\n" +" --full-time å³ -l --time-style=full-iso\n" + +#: src/ls.c:3799 +#, fuzzy +msgid "" +" -g like -l, but do not list owner\n" +" -G, --no-group inhibit display of group information\n" +" -h, --human-readable print sizes in human readable format (e.g., 1K 234M " +"2G)\n" +" --si likewise, but use powers of 1000 not 1024\n" +" -H, --dereference-command-line\n" +" follow symbolic links listed on the command " +"line\n" +" --dereference-command-line-symlink-to-dir\n" +" follow each command line symbolic link\n" +" that points to a directory\n" +msgstr "" +" -g 類似 -l,但ä¸åˆ—å‡ºæ“æœ‰è€…\n" +" -G, --no-group ä¸åˆ—出任何有關群組的資訊\n" +" -h, --human-readable 以容易ç†è§£çš„æ ¼å¼å°å‡ºæª”æ¡ˆå¤§å° (例如 1K 234M 2G)\n" +" --si 類似 -hï¼Œä½†å– 1000 çš„æ¬¡æ–¹è€Œä¸æ˜¯ 1024\n" +" -H, --dereference-command-line 使用指令列中的符號éˆçµæŒ‡ç¤ºçš„真正目的地\n" + +#: src/ls.c:3810 +msgid "" +" --indicator-style=WORD append indicator with style WORD to entry " +"names:\n" +" none (default), classify (-F), file-type (-" +"p)\n" +" -i, --inode print index number of each file\n" +" -I, --ignore=PATTERN do not list implied entries matching shell " +"PATTERN\n" +" -k like --block-size=1K\n" +msgstr "" +" --indicator-style=æ–¹å¼ æŒ‡å®šåœ¨æ¯å€‹é …ç›®å稱後加上指示符號 <æ–¹å¼>:\n" +" none (é è¨­),classify (-F),file-type (-p)\n" +" -i, --inode å°å‡ºæ¯å€‹æª”案的 inode 編號\n" +" -I, --ignore=æ¨£å¼ ä¸å°å‡ºä»»ä½•ç¬¦åˆ shell è¬ç”¨å­—å…ƒ <樣å¼> 的項目\n" +" -k å³ --block-size=1K\n" + +#: src/ls.c:3817 +msgid "" +" -l use a long listing format\n" +" -L, --dereference when showing file information for a symbolic\n" +" link, show information for the file the link\n" +" references rather than for the link itself\n" +" -m fill width with a comma separated list of " +"entries\n" +msgstr "" +" -l 使用較長格å¼åˆ—出資訊\n" +" -L, --dereference 當顯示符號éˆçµçš„æª”案資訊時,顯示符號éˆçµæ‰€æŒ‡ç¤º\n" +" 的目標而並éžç¬¦è™Ÿéˆçµæœ¬èº«çš„資訊\n" +" -m 所有項目以逗號分隔,並填滿整行行寬\n" + +#: src/ls.c:3824 +msgid "" +" -n, --numeric-uid-gid like -l, but list numeric UIDs and GIDs\n" +" -N, --literal print raw entry names (don't treat e.g. " +"control\n" +" characters specially)\n" +" -o like -l, but do not list group information\n" +" -p, --file-type append indicator (one of /=@|) to entries\n" +msgstr "" +" -n, --numeric-uid-gid 類似 -l,但列出 UID åŠ GID 編號\n" +" -N, --literal å°å‡ºæœªç¶“處ç†çš„é …ç›®å稱 (例如ä¸ç‰¹åˆ¥è™•ç†æŽ§åˆ¶å­—" +"å…ƒ)\n" +" -o 類似 -l,但ä¸åˆ—出有關群組的資訊\n" +" -p, --file-type 加上檔案類型的指示符號 (/=@| 其中一個)\n" + +#: src/ls.c:3831 +msgid "" +" -q, --hide-control-chars print ? instead of non graphic characters\n" +" --show-control-chars show non graphic characters as-is (default\n" +" unless program is `ls' and output is a " +"terminal)\n" +" -Q, --quote-name enclose entry names in double quotes\n" +" --quoting-style=WORD use quoting style WORD for entry names:\n" +" literal, locale, shell, shell-always, c, " +"escape\n" +msgstr "" +" -q, --hide-control-chars 以 ? 字元代替無法列å°çš„å­—å…ƒ\n" +" --show-control-chars 直接顯示無法列å°çš„å­—å…ƒ (這是é è¨­æ–¹å¼ï¼Œé™¤éžèª¿ç”¨\n" +" 的程å¼å稱是‘ls’而且是在終端機畫é¢è¼¸å‡ºçµæžœ)\n" +" -Q, --quote-name 將項目å稱括上雙引號\n" +" --quoting-style=æ–¹å¼ ä½¿ç”¨æŒ‡å®šçš„ quoting <æ–¹å¼>顯示項目的å稱:\n" +" literalã€localeã€shellã€shell-alwaysã€cã€" +"escape\n" + +#: src/ls.c:3839 +msgid "" +" -r, --reverse reverse order while sorting\n" +" -R, --recursive list subdirectories recursively\n" +" -s, --size print size of each file, in blocks\n" +msgstr "" +" -r, --reverse ä¾ç›¸åæ¬¡åºæŽ’åˆ—\n" +" -R, --recursive åŒæ™‚列出所有副目錄層\n" +" -s, --size 以倿®µå¤§å°ç‚ºå–®ä½åˆ—出所有檔案的大å°\n" + +#: src/ls.c:3844 +msgid "" +" -S sort by file size\n" +" --sort=WORD extension -X, none -U, size -S, time -t,\n" +" version -v\n" +" status -c, time -t, atime -u, access -u, use -" +"u\n" +" --time=WORD show time as WORD instead of modification " +"time:\n" +" atime, access, use, ctime or status; use\n" +" specified time as sort key if --sort=time\n" +msgstr "" +" -S æ ¹æ“šæª”æ¡ˆå¤§å°æŽ’åº\n" +" --sort=WORD 以下是å¯é¸ç”¨çš„ WORD 和它們代表的相應é¸é …:\n" +" extension -X status -c\n" +" none -U time -t\n" +" size -S atime -u\n" +" time -t access -u\n" +" version -v use -u\n" +" --time=WORD 顯示 WORD 所代表的時間而éžä¿®æ”¹æ™‚間:\n" +" atimeã€accessã€useã€ctime 或 status;加上\n" +" --sort=time é¸é …時會以指定時間作為排åºç´¢å¼•\n" + +#: src/ls.c:3853 +msgid "" +" --time-style=STYLE show times using style STYLE:\n" +" full-iso, long-iso, iso, locale, +FORMAT\n" +" FORMAT is interpreted like `date'; if FORMAT " +"is\n" +" FORMAT1FORMAT2, FORMAT1 applies to\n" +" non-recent files and FORMAT2 to recent files;\n" +" if STYLE is prefixed with `posix-', STYLE\n" +" takes effect only outside the POSIX locale\n" +" -t sort by modification time\n" +" -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n" +msgstr "" +" --time-style=æ¨£å¼ æ ¹æ“š <樣å¼> 所代表的格å¼é¡¯ç¤ºæ™‚間:\n" +" full-isoã€long-isoã€isoã€localeã€+FORMAT\n" +" FORMAT 峿˜¯â€˜date’所用的時間格å¼ï¼›å¦‚æžœ FORMAT\n" +" 是 FORMAT1FORMAT2,FORMAT1 é©ç”¨æ–¼è¼ƒèˆŠ\n" +" 的檔案而 FORMAT2 é©ç”¨æ–¼è¼ƒæ–°çš„æª”案;\n" +" 如果 <樣å¼> å‰åŠ ä¸Šâ€˜posix-â€™ï¼Œå‰‡åªæœƒåœ¨ä¸ä½¿ç”¨\n" +" POSIX 語系時使用該 <樣å¼>\n" +" -t 根據修改時間排åº\n" +" -T, --tabsize=寬度 å¦è¡ŒæŒ‡å®š tab çš„ <寬度>ï¼Œè€Œéž 8 個字元\n" + +#: src/ls.c:3864 +msgid "" +" -u with -lt: sort by, and show, access time\n" +" with -l: show access time and sort by name\n" +" otherwise: sort by access time\n" +" -U do not sort; list entries in directory order\n" +" -v sort by version\n" +msgstr "" +" -u é…åˆ -ltï¼šé¡¯ç¤ºå­˜å–æ™‚間而且ä¾å­˜å–時間排åº\n" +" é…åˆ -lï¼šé¡¯ç¤ºå­˜å–æ™‚間但根據å稱排åº\n" +" å¦å‰‡ï¼šæ ¹æ“šå­˜å–時間排åº\n" +" -U ä¸é€²è¡ŒæŽ’åºï¼›ä¾æª”案系統原有的次åºåˆ—出項目\n" +" -v 根據版本進行排åº\n" + +#: src/ls.c:3871 +#, fuzzy +msgid "" +" -w, --width=COLS assume screen width instead of current value\n" +" -x list entries by lines instead of by columns\n" +" -X sort alphabetically by entry extension\n" +" -1 list one file per line\n" +msgstr "" +" -f, --fields=LIST åªé¡¯ç¤ºæŒ‡å®šçš„æ¬„ä½ï¼›åŒæ™‚也å°å‡ºä¸å«åˆ†éš”符號的\n" +" æ¯ä¸€è¡Œï¼Œé™¤éžä½¿ç”¨äº† -s é¸é …\n" +" -n (䏿œƒä½œä»»ä½•處ç†)\n" + +#: src/ls.c:3883 +msgid "" +"\n" +"By default, color is not used to distinguish types of files. That is\n" +"equivalent to using --color=none. Using the --color option without the\n" +"optional WHEN argument is equivalent to using --color=always. With\n" +"--color=auto, color codes are output only if standard output is connected\n" +"to a terminal (tty).\n" +msgstr "" +"\n" +"é è¨­æ˜¯ä¸æœƒä½¿ç”¨è‰²å½©ä¾†å€åˆ¥æª”案的。此方å¼ç­‰æ–¼ä½¿ç”¨äº† --color=none é¸é …。若使用\n" +"--color é¸é …但䏿Œ‡å®š WHEN 引數等於 --color=always。當使用 --color=auto 時,\n" +"åªç•¶è¼¸å‡ºè‡³çµ‚ç«¯æ©Ÿç•«é¢ (tty) æ™‚æ‰æœƒé¡¯ç¤ºè‰²å½©ã€‚\n" + +#: src/md5sum.c:38 +msgid "Ulrich Drepper and Scott Miller" +msgstr "Ulrich Drepper åŠ Scott Miller" + +#: src/md5sum.c:125 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]...\n" +" or: %s [OPTION] --check [FILE]\n" +"Print or check %s (%d-bit) checksums.\n" +"With no FILE, or when FILE is -, read standard input.\n" +msgstr "" +"用法:%s [é¸é …] [檔案]...\n" +" 或:%s [é¸é …] --check [檔案]\n" +"å°å‡ºæˆ–檢查 %s (%d ä½å…ƒ) 總和檢查值。\n" +"如果沒有指定 <檔案> 或 <檔案> 是 -,則由標準輸入讀å–資料。\n" + +#: src/md5sum.c:134 +#, c-format +msgid "" +"\n" +" -b, --binary read files in binary mode (default on DOS/" +"Windows)\n" +" -c, --check check %s sums against given list\n" +" -t, --text read files in text mode (default)\n" +"\n" +msgstr "" +"\n" +" -b, --binary 以二元碼模å¼è®€å…¥æª”案 (DOS/Windows å¹³å°çš„é è¨­æ¨¡å¼)\n" +" -c, --check 驗證由指定的清單æä¾›çš„ %s 檢查值\n" +" -t, --text 以文字模å¼è®€å…¥æª”案 (é è¨­æ¨¡å¼)\n" +"\n" + +#: src/md5sum.c:142 +msgid "" +"The following two options are useful only when verifying checksums:\n" +" --status don't output anything, status code shows success\n" +" -w, --warn warn about improperly formated checksum lines\n" +"\n" +msgstr "" +"以下的兩個é¸é …åªåœ¨é©—證總和檢查值時有用:\n" +" --status ä¸é¡¯ç¤ºä»»ä½•çµæžœï¼Œåªç”¨å›žå‚³å€¼è¡¨ç¤ºæ˜¯å¦æˆåŠŸ\n" +" -w, --warn å°æ–¼æ¯ä¸€è¡Œå«æœ‰ä¸æ­£ç¢ºæ ¼å¼çš„總和檢查值都顯示警告\n" + +#: src/md5sum.c:150 +#, c-format +msgid "" +"\n" +"The sums are computed as described in %s. When checking, the input\n" +"should be a former output of this program. The default mode is to print\n" +"a line with checksum, a character indicating type (`*' for binary, ` ' for\n" +"text), and name for each FILE.\n" +msgstr "" +"\n" +"總和檢查是根據 %s æè¿°çš„æ–¹æ³•計算出來的。當驗證時,輸入資料必須是此程å¼ä»¥å¾€\n" +"çš„è¼¸å‡ºçµæžœã€‚é è¨­æ¨¡å¼æ˜¯å°å‡ºç¸½å’Œæª¢æŸ¥å€¼ï¼Œä¸€å€‹ä»£è¡¨æª”案類型的字元 (‘*’表示二元\n" +"碼,‘ ’[空格] 表示文字)ï¼ŒåŠæ¯å€‹ <檔案> çš„å稱。\n" + +#: src/md5sum.c:385 +#, c-format +msgid "%s: %lu: improperly formatted %s checksum line" +msgstr "%s:%lu:該行的 %s 總和檢查值格å¼ä¸æ­£ç¢º" + +#: src/md5sum.c:407 +#, c-format +msgid "%s: FAILED open or read\n" +msgstr "%sï¼šé–‹å•Ÿæˆ–è®€å–æ™‚發生錯誤\n" + +#: src/md5sum.c:431 +msgid "FAILED" +msgstr "錯誤" + +#: src/md5sum.c:431 +msgid "OK" +msgstr "正確" + +#: src/md5sum.c:444 +#, c-format +msgid "%s: read error" +msgstr "%sï¼šè®€å–æ™‚發生錯誤" + +#: src/md5sum.c:457 +#, c-format +msgid "%s: no properly formatted %s checksum lines found" +msgstr "%s:找ä¸åˆ°æ­£ç¢ºæ ¼å¼çš„ %s 總和檢查值" + +#: src/md5sum.c:470 +#, c-format +msgid "WARNING: %d of %d listed %s could not be read" +msgstr "警告:無法讀入 %2$d 個%3$s的其中 %1$d 個" + +#: src/md5sum.c:473 +msgid "file" +msgstr "檔案" + +#: src/md5sum.c:473 +msgid "files" +msgstr "檔案" + +#: src/md5sum.c:479 +#, c-format +msgid "WARNING: %d of %d computed %s did NOT match" +msgstr "警告:%2$d 個計算出來的%3$s的其中 %1$d 個並ä¸åŒ¹é…" + +#: src/md5sum.c:482 +msgid "checksum" +msgstr "總和檢查值" + +#: src/md5sum.c:482 +msgid "checksums" +msgstr "總和檢查值" + +#: src/md5sum.c:564 +msgid "" +"the --binary and --text options are meaningless when verifying checksums" +msgstr "當驗證總和檢查值時,é¸é … --binary åŠ --text 是沒有æ„義的" + +#: src/md5sum.c:572 +msgid "the --string and --check options are mutually exclusive" +msgstr "ä¸èƒ½åŒæ™‚使用 --string åŠ --check é¸é …" + +#: src/md5sum.c:579 +msgid "the --status option is meaningful only when verifying checksums" +msgstr "é¸é … --status åªæœ‰åœ¨é©—è­‰ç¸½å’Œæª¢æŸ¥å€¼æ™‚æ‰æœ‰æ„義" + +#: src/md5sum.c:586 +msgid "the --warn option is meaningful only when verifying checksums" +msgstr "é¸é … --warn åªæœ‰åœ¨é©—è­‰ç¸½å’Œæª¢æŸ¥å€¼æ™‚æ‰æœ‰æ„義" + +#: src/md5sum.c:596 +msgid "no files may be specified when using --string" +msgstr "使用é¸é … --string 時ä¸èƒ½å†æŒ‡å®šæª”案" + +#: src/md5sum.c:618 +msgid "only one argument may be specified when using --check" +msgstr "使用é¸é … --check 時åªèƒ½æŒ‡å®šä¸€å€‹å¼•數" + +#: src/mkdir.c:61 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] DIRECTORY...\n" +msgstr "用法:%s [é¸é …] [檔案]...\n" + +#: src/mkdir.c:62 +msgid "" +"Create the DIRECTORY(ies), if they do not already exist.\n" +"\n" +msgstr "" +"è‹¥ç›®éŒ„ä¸æ˜¯å·²ç¶“存在則建立目錄。\n" +"\n" + +#: src/mkdir.c:69 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - " +"umask\n" +" -p, --parents no error if existing, make parent directories as needed\n" +" -v, --verbose print a message for each created directory\n" +msgstr "" +" -m, --mode=æ¨¡å¼ è¨­å®šæ¬Šé™ <模å¼> (類似 chmod)ï¼Œè€Œä¸æ˜¯ rwxrwxrwx 減 umask\n" +" -p, --parents éœ€è¦æ™‚建立上層目錄,如目錄早已存在則ä¸ç•¶ä½œéŒ¯èª¤\n" +" -v, --verbose æ¯æ¬¡å»ºç«‹æ–°ç›®éŒ„都顯示訊æ¯\n" + +#: src/mkdir.c:113 +#, fuzzy, c-format +msgid "created directory %s" +msgstr "無法建立目錄%s" + +#: src/mkdir.c:190 +#, fuzzy, c-format +msgid "cannot set permissions of directory %s" +msgstr "無法更改%s的權é™" + +#: src/mkfifo.c:55 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] NAME...\n" +msgstr "用法:%s [é¸é …] [檔案]...\n" + +#: src/mkfifo.c:56 +msgid "" +"Create named pipes (FIFOs) with the given NAMEs.\n" +"\n" +msgstr "" +"以指定的 <å稱> 建立 named pipe (FIFO)。\n" +"\n" + +#: src/mkfifo.c:63 src/mknod.c:64 +msgid "" +" -m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n" +msgstr " -m, --mode=æ¨¡å¼ æŒ‡å®šæ¬Šé™æ¨¡å¼ (類似 chmod)ï¼Œè€Œä¸æ˜¯ a=rw 減 umask\n" + +#: src/mkfifo.c:93 src/mknod.c:206 +msgid "fifo files not supported" +msgstr "䏿”¯æ´ FIFO 檔案" + +#: src/mkfifo.c:123 src/mknod.c:127 +#, fuzzy +msgid "invalid mode" +msgstr "無效的數字" + +#: src/mkfifo.c:142 +#, fuzzy, c-format +msgid "cannot set permissions of fifo %s" +msgstr "無法更改%s的權é™" + +#: src/mknod.c:55 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n" +msgstr "用法:%s [é¸é …]... SET1 [SET2]\n" + +#: src/mknod.c:57 +msgid "" +"Create the special file NAME of the given TYPE.\n" +"\n" +msgstr "" +"建立指定 <類型> åŠ <å稱> 的特殊檔案。\n" +"\n" + +#: src/mknod.c:69 +msgid "" +"\n" +"Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n" +"must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n" +"it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n" +"otherwise, as decimal. TYPE may be:\n" +msgstr "" + +#: src/mknod.c:76 +#, fuzzy +msgid "" +"\n" +" b create a block (buffered) special file\n" +" c, u create a character (unbuffered) special file\n" +" p create a FIFO\n" +msgstr "" +"\n" +"ç•¶ <類型> 為 p 時ä¸å¯æŒ‡å®š MAJOR åŠ MINOR,å¦å‰‡å®ƒå€‘是必須指定的。\n" +"<類型> å¯ä»¥æ˜¯ï¼š\n" +"\n" +" b 建立 (有緩è¡çš„) å€å¡Šç‰¹æ®Šæª”案\n" +" c, u 建立 (沒有緩è¡çš„) 字元特殊檔案\n" +" p 建立 FIFO 特殊檔案\n" + +#: src/mknod.c:141 +#, fuzzy +msgid "wrong number of arguments" +msgstr "引數éŽå°‘" + +#: src/mknod.c:153 +#, fuzzy +msgid "block special files not supported" +msgstr "å€å¡Šç‰¹æ®Šæª”案" + +#: src/mknod.c:162 +#, fuzzy +msgid "character special files not supported" +msgstr "字元特殊檔案" + +#: src/mknod.c:171 +msgid "" +"when creating special files, major and minor device\n" +"numbers must be specified" +msgstr "建立å€å¡Šç‰¹æ®Šæª”案時,必需指定 major å’Œ minor è£ç½®ç·¨è™Ÿ" + +#: src/mknod.c:186 +#, fuzzy, c-format +msgid "invalid major device number %s" +msgstr "無效的開始行號:‘%s’" + +#: src/mknod.c:191 +#, fuzzy, c-format +msgid "invalid minor device number %s" +msgstr "無效的開始行號:‘%s’" + +#: src/mknod.c:196 +#, fuzzy, c-format +msgid "invalid device %s %s" +msgstr "%2$s的引數%1$s無效" + +#: src/mknod.c:210 +msgid "major and minor device numbers may not be specified for fifo files" +msgstr "ä¸èƒ½ç‚º fifo 檔案指定 major å’Œ minor è£ç½®ç·¨è™Ÿ" + +#: src/mknod.c:231 +#, fuzzy, c-format +msgid "cannot set permissions of %s" +msgstr "無法更改%s的權é™" + +#: src/mv.c:44 +#, fuzzy +msgid "Mike Parker, David MacKenzie, and Jim Meyering" +msgstr "David Ihnatã€David MacKenzie åŠ Jim Meyering" + +#: src/mv.c:317 +msgid "" +"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n" +"\n" +msgstr "" +"å°‡ <來æº> å稱更改為 <目的地> å稱,或將 <來æº> 檔案移動至 <目錄>。\n" +"\n" + +#: src/mv.c:324 +msgid "" +" --backup[=CONTROL] make a backup of each existing destination " +"file\n" +" -b like --backup but does not accept an " +"argument\n" +" -f, --force do not prompt before overwriting\n" +" equivalent to --reply=yes\n" +" -i, --interactive prompt before overwrite\n" +" equivalent to --reply=query\n" +msgstr "" +" --backup[=CONTROL] 為æ¯å€‹å·²å­˜åœ¨çš„目的地檔案建立備份檔\n" +" -b 類似 --backupï¼Œä½†ä¸æŽ¥å—任何引數\n" +" -f, --force 覆寫檔案å‰ä¸æœƒé€²è¡Œç¢ºèªï¼Œç­‰æ–¼ --reply=yes\n" +" -i, --interactive 覆寫檔案å‰å¿…須先確èªï¼Œç­‰æ–¼ --reply=query\n" + +#: src/mv.c:332 +msgid "" +" --reply={yes,no,query} specify how to handle the prompt about an\n" +" existing destination file\n" +" --strip-trailing-slashes remove any trailing slashes from each SOURCE\n" +" argument\n" +" -S, --suffix=SUFFIX override the usual backup suffix\n" +msgstr "" +" --reply={yes,no,query} 指定如何處ç†å·²å­˜åœ¨çš„目的地檔案\n" +" --strip-trailing-slashes 移除引數中所有 <來æº> 檔案/目錄末端的斜號\n" +" -S, --suffix=後置字串 自行指定備份檔的 <後置字串>\n" + +#: src/mv.c:339 +msgid "" +" --target-directory=DIRECTORY move all SOURCE arguments into " +"DIRECTORY\n" +" -u, --update move only when the SOURCE file is newer\n" +" than the destination file or when the\n" +" destination file is missing\n" +" -v, --verbose explain what is being done\n" +msgstr "" +" --target-directory=目錄 將所有 <來æº> 檔案/目錄移動至 <目錄>\n" +" -u, --update åªåœ¨ <來æº> 檔案比目的地檔案新,或目的地檔案\n" +" ä¸å­˜åœ¨æ™‚æ‰æœƒç§»å‹•\n" +" -v, --verbose 詳細顯示進行的步驟\n" + +#: src/mv.c:467 +#, fuzzy, c-format +msgid "specified target, %s is not a directory" +msgstr "%så·²å­˜åœ¨ä½†ä¸æ˜¯ç›®éŒ„" + +#: src/mv.c:475 +msgid "when moving multiple files, last argument must be a directory" +msgstr "移動多個檔案時,最後的引數必須為目錄。" + +#: src/nice.c:67 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] [COMMAND [ARG]...]\n" +msgstr "用法:%s [é¸é …] [檔案]...\n" + +#: src/nice.c:68 +msgid "" +"Run COMMAND with an adjusted scheduling priority.\n" +"With no COMMAND, print the current scheduling priority. ADJUST is 10\n" +"by default. Range goes from -20 (highest priority) to 19 (lowest).\n" +"\n" +" -n, --adjustment=ADJUST increment priority by ADJUST first\n" +msgstr "" + +#: src/nice.c:109 src/nice.c:122 +#, fuzzy, c-format +msgid "invalid option `%s'" +msgstr "無效的寬度é¸é …:‘%s’" + +#: src/nice.c:147 +#, fuzzy, c-format +msgid "invalid priority `%s'" +msgstr "無效的寬度:‘%s’" + +#: src/nice.c:171 +msgid "a command must be given with an adjustment" +msgstr "" + +#: src/nice.c:178 src/nice.c:187 +#, fuzzy +msgid "cannot get priority" +msgstr "無法建立目錄%s" + +#: src/nice.c:192 +#, fuzzy +msgid "cannot set priority" +msgstr "無法建立目錄%s" + +#: src/nl.c:39 +msgid "Scott Bartram and David MacKenzie" +msgstr "Scott Bartram åŠ David MacKenzie" + +#: src/nl.c:180 +msgid "" +"Write each FILE to standard output, with line numbers added.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"å°‡æ¯å€‹ <檔案> 的內容在標準輸出顯示,並加上行號。\n" +"如果沒有指定 <檔案> 或 <檔案> 是 -,則由標準輸入讀å–資料。\n" +"\n" + +#: src/nl.c:188 +msgid "" +" -b, --body-numbering=STYLE use STYLE for numbering body lines\n" +" -d, --section-delimiter=CC use CC for separating logical pages\n" +" -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n" +msgstr "" +" -b, --body-numbering=æ–¹å¼ æ±ºå®šå°‡å…§å®¹åŠ ä¸Šè¡Œè™Ÿçš„ <æ–¹å¼>\n" +" -d, --section-delimiter=CC 使用 CC 字元分辨標頭ã€å…§å®¹å’Œè¨»è…³\n" +" -f, --footer-numbering=æ–¹å¼ æ±ºå®šå°‡è¨»è…³åŠ ä¸Šè¡Œè™Ÿçš„ <æ–¹å¼>\n" + +#: src/nl.c:193 +msgid "" +" -h, --header-numbering=STYLE use STYLE for numbering header lines\n" +" -i, --page-increment=NUMBER line number increment at each line\n" +" -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as " +"one\n" +" -n, --number-format=FORMAT insert line numbers according to FORMAT\n" +" -p, --no-renumber do not reset line numbers at logical " +"pages\n" +" -s, --number-separator=STRING add STRING after (possible) line number\n" +msgstr "" +" -h, --header-numbering=æ–¹å¼ æ±ºå®šå°‡æ¨™é ­åŠ ä¸Šè¡Œè™Ÿçš„ <æ–¹å¼>\n" +" -i, --page-increment=數字 æ¯è¡Œçš„行號增加é‡\n" +" -l, --join-blank-lines=行數 將指定 <行數>的空行åˆä½µæˆä¸€è¡Œ\n" +" -n, --number-format=æ ¼å¼ æ ¹æ“š <æ ¼å¼> 加上行號\n" +" -p, --no-renumber æ¯æ¬¡åˆ†é å¾Œä¸é‡è¨­è¡Œè™Ÿ\n" +" -s, --number-separator=字串 以 <字串> 分隔行號和內容\n" + +# I can't imagine manpage and --help output are so outdated -- Abel +#: src/nl.c:201 +msgid "" +" -v, --first-page=NUMBER first line number on each logical page\n" +" -w, --number-width=NUMBER use NUMBER columns for line numbers\n" +msgstr "" +" -v, --starting-line-number=數字 æ¯é ç¬¬ä¸€è¡Œçš„行號\n" +" -w, --number-width=數字 以指定 <數字> 的字元作為顯示行數的寬度\n" + +#: src/nl.c:207 +msgid "" +"\n" +"By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n" +"two delimiter characters for separating logical pages, a missing\n" +"second character implies :. Type \\\\ for \\. STYLE is one of:\n" +msgstr "" +"\n" +"é è¨­çš„é¸é …為 -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn。CC 是兩個用來\n" +"分辨æ¯é çš„æ¨™é ­ã€å…§å®¹å’Œè¨»è…³çš„字元;如果沒有指定第二個字元則表示是 :。\n" +"請輸入 \\\\ 表示 \\ 字元。<æ–¹å¼> å¯ä»¥æ˜¯ä»¥ä¸‹å…¶ä¸­ä¸€å€‹ï¼š\n" + +#: src/nl.c:213 +msgid "" +"\n" +" a number all lines\n" +" t number only nonempty lines\n" +" n number no lines\n" +" pREGEXP number only lines that contain a match for REGEXP\n" +"\n" +"FORMAT is one of:\n" +"\n" +" ln left justified, no leading zeros\n" +" rn right justified, no leading zeros\n" +" rz right justified, leading zeros\n" +"\n" +msgstr "" +"\n" +" a æ¯ä¸€è¡Œéƒ½åŠ ä¸Šè¡Œè™Ÿ\n" +" t åªæœ‰éžç©ºç™½çš„行æ‰åŠ ä¸Šè¡Œè™Ÿ\n" +" n æ¯ä¸€è¡Œéƒ½ä¸åŠ è¡Œè™Ÿ\n" +" pæ­£è¦è¡¨ç¤ºå¼ åªæœ‰ç¬¦åˆ <æ­£è¦è¡¨ç¤ºå¼> çš„æ¯ä¸€è¡Œæ‰åŠ ä¸Šè¡Œè™Ÿ\n" +"\n" +"<æ ¼å¼> å¯ä»¥æ˜¯ä»¥ä¸‹å…¶ä¸­ä¸€å€‹ï¼š\n" +" ln å‘å·¦å°é½Šï¼Œå‰é¢ä¸åŠ é›¶è£œä½\n" +" rn å‘å³å°é½Šï¼Œå‰é¢ä¸åŠ é›¶è£œä½\n" +" rz å‘å³å°é½Šï¼Œå‰é¢åŠ é›¶è£œä½\n" + +#: src/nl.c:504 +#, c-format +msgid "invalid starting line number: `%s'" +msgstr "無效的開始行號:‘%s’" + +#: src/nl.c:514 +#, c-format +msgid "invalid line number increment: `%s'" +msgstr "無效的行號增加值:‘%s’" + +#: src/nl.c:527 +#, c-format +msgid "invalid number of blank lines: `%s'" +msgstr "無效的空白行數目:‘%s’" + +#: src/nl.c:541 +#, c-format +msgid "invalid line number field width: `%s'" +msgstr "無效的行號欄ä½å¯¬åº¦ï¼šâ€˜%s’" + +#: src/od.c:287 +#, c-format +msgid "" +"Usage: %s [OPTION]... [FILE]...\n" +" or: %s --traditional [FILE] [[+]OFFSET [[+]LABEL]]\n" +msgstr "" +"用法:%s [é¸é …]... [檔案]...\n" +" 或:%s --traditional [檔案] [[+]å移值 [[+]標號]]\n" + +#: src/od.c:292 +msgid "" +"\n" +"Write an unambiguous representation, octal bytes by default,\n" +"of FILE to standard output. With more than one FILE argument,\n" +"concatenate them in the listed order to form the input.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"\n" +"ä»¥æ˜Žç¢ºæ–¹å¼ (é è¨­ç‚ºå…«é€²ä½æ•¸å­—) 表示 <檔案> 的內容。當指定多於一個 <檔案> " +"時,\n" +"會以指定的次åºå°‡æª”案內容åˆä½µã€‚如果沒有指定 <檔案> 或 <檔案> 是 -,則由標準\n" +"輸入讀å–資料。\n" +"\n" + +#: src/od.c:299 +msgid "All arguments to long options are mandatory for short options.\n" +msgstr "é•·é¸é …å¿…é ˆç”¨çš„åƒæ•¸åœ¨ä½¿ç”¨çŸ­é¸é …時也是必須的。\n" + +#: src/od.c:302 +msgid "" +" -A, --address-radix=RADIX decide how file offsets are printed\n" +" -j, --skip-bytes=BYTES skip BYTES input bytes first\n" +msgstr "" +" -A, --address-radix=RADIX 決定基準ä½å€çš„å–®ä½\n" +" -j, --skip-bytes=ä½å…ƒçµ„ å…ˆç•¥éŽæŒ‡å®š <ä½å…ƒçµ„> 的輸入資料\n" + +#: src/od.c:306 +msgid "" +" -N, --read-bytes=BYTES limit dump to BYTES input bytes\n" +" -s, --strings[=BYTES] output strings of at least BYTES graphic " +"chars\n" +" -t, --format=TYPE select output format or formats\n" +" -v, --output-duplicates do not use * to mark line suppression\n" +" -w, --width[=BYTES] output BYTES bytes per output line\n" +" --traditional accept arguments in traditional form\n" +msgstr "" +" -N, --read-bytes=ä½å…ƒçµ„ é™åˆ¶å‚¾å°çš„輸入資料 <ä½å…ƒçµ„> 數目\n" +" -s, --strings[=ä½å…ƒçµ„] åªå°å‡ºä¸å°‘於指定 <ä½å…ƒçµ„> 大å°çš„字串常數\n" +" -t, --format=æ ¼å¼ é¸æ“‡è¼¸å‡ºçš„ <æ ¼å¼>\n" +" -v, --output-duplicates ä¸ä½¿ç”¨ * 表示æ¯è¡Œé‡è¦†çš„資料\n" +" -w, --width[=ä½å…ƒçµ„] æ¯è¡Œé¡¯ç¤ºæŒ‡å®šçš„ <ä½å…ƒçµ„> 數目\n" +" --traditional 接å—舊å¼çš„é¸é …\n" + +#: src/od.c:316 +msgid "" +"\n" +"Traditional format specifications may be intermixed; they accumulate:\n" +" -a same as -t a, select named characters\n" +" -b same as -t oC, select octal bytes\n" +" -c same as -t c, select ASCII characters or backslash escapes\n" +" -d same as -t u2, select unsigned decimal shorts\n" +msgstr "" +"\n" +"舊å¼çš„è¦æ ¼å¯ä»¥æ··åˆä½¿ç”¨ï¼Œè€Œä¸”效果會累ç©ï¼š\n" +" -a 等於 -t a, 顯示 ASCII 字元或以 ASCII 表示的控制字元\n" +" -b 等於 -t oC, 顯示八進ä½ä½å…ƒçµ„\n" +" -c 等於 -t c, 顯示 ASCII å­—å…ƒæˆ–åæ–œè™Ÿæº¢å‡ºåºåˆ—\n" +" -d 等於 -t u2, 顯示åé€²ä½ unsigned short\n" + +#: src/od.c:324 +msgid "" +" -f same as -t fF, select floats\n" +" -h same as -t x2, select hexadecimal shorts\n" +" -i same as -t d2, select decimal shorts\n" +" -l same as -t d4, select decimal longs\n" +" -o same as -t o2, select octal shorts\n" +" -x same as -t x2, select hexadecimal shorts\n" +msgstr "" +" -f 等於 -t fF, 顯示浮點數\n" +" -h 等於 -t x2, 顯示åå…­é€²ä½ short integer\n" +" -i 等於 -t d2, 顯示åé€²ä½ short integer\n" +" -l 等於 -t d4, 顯示åé€²ä½ long integer\n" +" -o 等於 -t o2, é¡¯ç¤ºå…«é€²ä½ short integer\n" +" -x 等於 -t x2, 顯示åå…­é€²ä½ short integer\n" + +#: src/od.c:332 +msgid "" +"\n" +"For older syntax (second call format), OFFSET means -j OFFSET. LABEL\n" +"is the pseudo-address at first byte printed, incremented when dump is\n" +"progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates\n" +"hexadecimal, suffixes may be . for octal and b for multiply by 512.\n" +"\n" +"TYPE is made up of one or more of these specifications:\n" +"\n" +" a named character\n" +" c ASCII character or backslash escape\n" +msgstr "" +"\n" +"å°æ–¼èˆŠå¼çš„語法 (第二種調用的格å¼),<å移值> 等於‘-j <å移值>’。<標號>\n" +"是第一個ä½å…ƒçµ„的虛擬地å€(本來是 0),會在傾å°è³‡æ–™æ™‚ç›¸æ‡‰å¢žåŠ ã€‚å°æ–¼ <å移值>\n" +"å’Œ <標號>,å‰é¢åŠ ä¸Š 0x 或 0X 表示是å六進使•¸å­—;後é¢åŠ ä¸Š . 表示是八進ä½\n" +"數字,加上 b 則表示乘以 512。\n" +"\n" +"<æ ¼å¼> å¯ä»¥æ˜¯ä¸‹åˆ—ä¸€å€‹æˆ–å¤šå€‹çš„è¦æ ¼ï¼š\n" +"\n" +" a ASCII 字元或以 ASCII 字元代表的控制字元\n" +" c ASCII å­—å…€æˆ–åæ–œè™Ÿæº¢å‡ºåºåˆ—\n" + +#: src/od.c:344 +msgid "" +" d[SIZE] signed decimal, SIZE bytes per integer\n" +" f[SIZE] floating point, SIZE bytes per integer\n" +" o[SIZE] octal, SIZE bytes per integer\n" +" u[SIZE] unsigned decimal, SIZE bytes per integer\n" +" x[SIZE] hexadecimal, SIZE bytes per integer\n" +msgstr "" +" d[大å°] 有正負號的å進使•¸ï¼Œæ¯å€‹æ•´æ•¸ä½”指定 <大å°> çš„ä½å…ƒçµ„\n" +" f[大å°] 浮點數,æ¯å€‹æ•´æ•¸ä½”指定 <大å°> çš„ä½å…ƒçµ„\n" +" o[大å°] 八進使•¸ï¼Œæ¯å€‹æ•´æ•¸ä½”指定 <大å°> çš„ä½å…ƒçµ„\n" +" u[大å°] 無正負號的å進使•¸ï¼Œæ¯å€‹æ•´æ•¸ä½”指定 <大å°> çš„ä½å…ƒçµ„\n" +" x[大å°] å六進使•¸ï¼Œæ¯å€‹æ•´æ•¸ä½”指定 <大å°> çš„ä½å…ƒçµ„\n" + +#: src/od.c:351 +msgid "" +"\n" +"SIZE is a number. For TYPE in doux, SIZE may also be C for\n" +"sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n" +"sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n" +"for sizeof(double) or L for sizeof(long double).\n" +msgstr "" +"\n" +"<大å°> 是一個數字。當 <æ ¼å¼> 是 doux 其中之一時,<大å°> 也å¯ä»¥æ˜¯ï¼šè¡¨ç¤º\n" +"sizeof(char) çš„ Cã€è¡¨ç¤º sizeof(short) çš„ Sã€è¡¨ç¤º sizeof(int) çš„ I 或\n" +"表示 sizeof(long) çš„ L。如果 <æ ¼å¼> 是 f,<大å°> å¯ä»¥æ˜¯è¡¨ç¤º sizeof(float)\n" +"çš„ Fã€è¡¨ç¤º sizeof(double) çš„ D 或表示 sizeof(long double) çš„ L。\n" + +#: src/od.c:358 +msgid "" +"\n" +"RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n" +"BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n" +"with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n" +"any type adds a display of printable characters to the end of each line\n" +"of output. " +msgstr "" +"\n" +"RADIX çš„é¸æ“‡ç‚ºï¼šd 表示å進ä½ï¼Œo 表示八進ä½ï¼Œh 表示å六進ä½ï¼Œæˆ– n 表示\n" +"ä¸é¡¯ç¤ºåŸºæº–ä½å€ã€‚<ä½å…ƒçµ„> å¯ä»¥æ˜¯å‰ç½® 0x 或 0X çš„å六進使•¸å­—;如果 <ä½å…ƒçµ„>\n" +"後加上 b 字元表示將數字乘以 512,加上 k 表示乘以 1024,加上 m 表示乘以\n" +"1048576。在任何 <æ ¼å¼> 後加上 z 字元會在æ¯è¡Œè¼¸å‡ºå¾Œé¡¯ç¤ºç›¸æ‡‰çš„å¯åˆ—å°å­—元。" + +#: src/od.c:366 +msgid "" +"--string without a number implies 3. --width without a number\n" +"implies 32. By default, od uses -A o -t d2 -w 16.\n" +msgstr "" +" \n" +"--string ä¸åŠ æ•¸å­—è¡¨ç¤ºå­—ä¸²é•·åº¦æ˜¯ 3。--width ä¸åŠ æ•¸å­—è¡¨ç¤ºå¯¬åº¦æ˜¯ 32。é è¨­\n" +"od 使用的é¸é …是 -A o -t d2 -w 16。\n" + +#: src/od.c:722 src/od.c:844 +#, c-format +msgid "invalid type string `%s'" +msgstr "無效的類型‘%s’" + +#: src/od.c:732 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte integral type" +msgstr "" +"‘%s’是無效的類型;\n" +"æ­¤ç³»çµ±ä¸æ”¯æ´ %lu ä½å…ƒçµ„的整數" + +#: src/od.c:854 +#, c-format +msgid "" +"invalid type string `%s';\n" +"this system doesn't provide a %lu-byte floating point type" +msgstr "" +"‘%s’是無效的類型;\n" +"æ­¤ç³»çµ±ä¸æ”¯æ´ %lu ä½å…ƒçµ„的浮點數" + +#: src/od.c:917 +#, c-format +msgid "invalid character `%c' in type string `%s'" +msgstr "類型‘%2$sâ€™ä¸­å«æœ‰ç„¡æ•ˆçš„字元‘%1$c’。" + +#: src/od.c:1144 +msgid "cannot skip past end of combined input" +msgstr "無法移至åˆä½µå¾Œçš„輸入資料的末端之後" + +#: src/od.c:1397 +msgid "old-style offset" +msgstr "舊å¼çš„åç§»é‡è¡¨ç¤ºæ³•" + +#: src/od.c:1707 +#, c-format +msgid "invalid output address radix `%c'; it must be one character from [doxn]" +msgstr "輸出ä½å€çš„基數‘%c’是無效的;基數必須是 [doxn] 四個字元其中之一" + +#: src/od.c:1717 +msgid "skip argument" +msgstr "ç•¥éŽå¼•數" + +#: src/od.c:1725 +msgid "limit argument" +msgstr "é™åˆ¶å¼•數" + +#: src/od.c:1735 +msgid "minimum string length" +msgstr "最å°å­—串長度" + +#: src/od.c:1740 src/od.c:1806 +#, c-format +msgid "%s is too large" +msgstr "%s éŽé•·" + +#: src/od.c:1804 +msgid "width specification" +msgstr "å¯¬åº¦è¦æ ¼" + +#: src/od.c:1826 +msgid "no type may be specified when dumping strings" +msgstr "傾å°å­—串時ä¸èƒ½æŒ‡å®šé¡žåž‹" + +#: src/od.c:1874 +#, c-format +msgid "invalid second operand in compatibility mode `%s'" +msgstr "在相容性模å¼ä¸‹ï¼Œç¬¬äºŒå€‹é‹ç®—符號‘%s’是無效的" + +#: src/od.c:1895 +msgid "in compatibility mode, the last two arguments must be offsets" +msgstr "在相容性模å¼ä¸‹ï¼Œæœ€å¾Œå…©å€‹å¼•數必須是å移值" + +#: src/od.c:1902 +msgid "compatibility mode supports at most three arguments" +msgstr "在相容性模å¼ä¸‹ï¼Œæœ€å¤šåªèƒ½æœ‰ä¸‰å€‹å¼•數" + +#: src/od.c:1975 +#, c-format +msgid "warning: invalid width %lu; using %d instead" +msgstr "警告:寬度 %lu 是無效的;以 %d 代替" + +#: src/od.c:1991 +#, c-format +msgid "%d: fmt=\"%s\" width=%d\n" +msgstr "%d:格å¼=\"%s\" 寬度=%d\n" + +#: src/paste.c:50 +msgid "David M. Ihnat and David MacKenzie" +msgstr "David M. Ihnat åŠ David MacKenzie" + +#: src/paste.c:208 +msgid "standard input is closed" +msgstr "已關閉標準輸入" + +#: src/paste.c:407 +msgid "" +"Write lines consisting of the sequentially corresponding lines from\n" +"each FILE, separated by TABs, to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"å°‡æ¯å€‹ <檔案> 相應的æ¯ä¸€è¡Œç”¨ TAB 隔開,在標準輸出中並排顯示。\n" +"如果沒有指定 <檔案> 或 <檔案> 是 -,則由標準輸入讀å–資料。\n" + +#: src/paste.c:416 +msgid "" +" -d, --delimiters=LIST reuse characters from LIST instead of TABs\n" +" -s, --serial paste one file at a time instead of in parallel\n" +msgstr "" +" -d, --delimiters=列表 å覆使用 <列表> 中的字元代替 TAB\n" +" -s, --serial æ¯æ¬¡åˆä½µä¸€å€‹æª”案中的æ¯ä¸€è¡Œï¼Œè€Œéžæ‰€æœ‰æª”案的æŸä¸€è¡Œ\n" + +#: src/pathchk.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... NAME...\n" +msgstr "用法:%s [é¸é …]... [檔案]...\n" + +#: src/pathchk.c:147 +msgid "" +"Diagnose unportable constructs in NAME.\n" +"\n" +" -p, --portability check for all POSIX systems, not only this one\n" +msgstr "" + +#: src/pathchk.c:237 +#, fuzzy, c-format +msgid "path `%s' contains nonportable character `%c'" +msgstr "tab å­—å…ƒå¯¬åº¦å«æœ‰ç„¡æ•ˆçš„å­—å…ƒ" + +#: src/pathchk.c:257 +#, fuzzy, c-format +msgid "`%s' is not a directory" +msgstr "%så·²å­˜åœ¨ä½†ä¸æ˜¯ç›®éŒ„" + +#: src/pathchk.c:268 +#, c-format +msgid "directory `%s' is not searchable" +msgstr "" + +#: src/pathchk.c:355 +#, c-format +msgid "name `%s' has length %ld; exceeds limit of %ld" +msgstr "" + +#: src/pathchk.c:381 +#, c-format +msgid "path `%s' has length %d; exceeds limit of %ld" +msgstr "" + +#: src/pinky.c:35 src/uptime.c:39 +#, fuzzy +msgid "Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi" +msgstr "Mike Parkerã€David MacKenzie å’Œ Jim Meyering" + +#: src/pinky.c:292 +msgid "Login name: " +msgstr "" + +#: src/pinky.c:295 +msgid "In real life: " +msgstr "" + +#: src/pinky.c:298 +msgid "???\n" +msgstr "" + +#: src/pinky.c:318 +#, fuzzy +msgid "Directory: " +msgstr "目錄" + +#: src/pinky.c:320 +msgid "Shell: " +msgstr "" + +#: src/pinky.c:341 +msgid "Project: " +msgstr "" + +#: src/pinky.c:367 +msgid "Plan:\n" +msgstr "" + +#: src/pinky.c:386 +msgid "Login" +msgstr "" + +#: src/pinky.c:388 +msgid "Name" +msgstr "" + +#: src/pinky.c:389 +msgid " TTY" +msgstr "" + +#: src/pinky.c:391 +msgid "Idle" +msgstr "" + +#: src/pinky.c:392 +msgid "When" +msgstr "" + +#: src/pinky.c:395 +msgid "Where" +msgstr "" + +#: src/pinky.c:469 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [USER]...\n" +msgstr "用法:%s [é¸é …]... [檔案]...\n" + +#: src/pinky.c:470 +msgid "" +"\n" +" -l produce long format output for the specified USERs\n" +" -b omit the user's home directory and shell in long format\n" +" -h omit the user's project file in long format\n" +" -p omit the user's plan file in long format\n" +" -s do short format output, this is the default\n" +msgstr "" + +#: src/pinky.c:478 +msgid "" +" -f omit the line of column headings in short format\n" +" -w omit the user's full name in short format\n" +" -i omit the user's full name and remote host in short format\n" +" -q omit the user's full name, remote host and idle time\n" +" in short format\n" +msgstr "" + +#: src/pinky.c:487 +#, c-format +msgid "" +"\n" +"A lightweight `finger' program; print user information.\n" +"The utmp file will be %s.\n" +msgstr "" + +#: src/pinky.c:574 +#, fuzzy +msgid "no username specified; at least one must be specified when using -l" +msgstr "使用é¸é … --string 時ä¸èƒ½å†æŒ‡å®šæª”案" + +#: src/pr.c:328 +msgid "Pete TerMaat and Roland Huebner" +msgstr "Pete TerMaat åŠ Roland Huebner" + +#: src/pr.c:805 +#, c-format +msgid "`--pages' invalid range of page numbers: `%s'" +msgstr "‘--pages’的é ç¢¼ç¯„åœç„¡æ•ˆï¼šâ€˜%s’" + +#: src/pr.c:817 +#, c-format +msgid "`--pages' invalid starting page number: `%s'" +msgstr "‘--pages’的開始é ç¢¼ç„¡æ•ˆï¼šâ€˜%s’" + +#: src/pr.c:829 +#, c-format +msgid "`--pages' invalid ending page number: `%s'" +msgstr "‘--pagesâ€™çš„çµæŸé ç¢¼ç„¡æ•ˆï¼šâ€˜%s’" + +#: src/pr.c:836 +msgid "`--pages' starting page number is larger than ending page number" +msgstr "‘--pages’的開始é ç¢¼å¤§æ–¼çµæŸé ç¢¼" + +#: src/pr.c:911 +msgid "`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" +msgstr "‘--pages=é–‹å§‹é ç¢¼[:çµæŸé ç¢¼]’缺少了引數" + +#: src/pr.c:922 +#, c-format +msgid "`--columns=COLUMN' invalid number of columns: `%s'" +msgstr "‘--columns=欄ä½â€™çš„æ¬„使•¸ç›®ç„¡æ•ˆï¼šâ€˜%s’" + +#: src/pr.c:976 +#, c-format +msgid "`-l PAGE_LENGTH' invalid number of lines: `%s'" +msgstr "‘-l æ¯é è¡Œæ•¸â€™çš„行數無效:‘%s’" + +#: src/pr.c:1000 +#, c-format +msgid "`-N NUMBER' invalid starting line number: `%s'" +msgstr "‘-N 行號’的開始行號無效:‘%s’" + +#: src/pr.c:1012 +#, c-format +msgid "`-o MARGIN' invalid line offset: `%s'" +msgstr "‘-o 邊界’的字元å移值無效:‘%s’" + +#: src/pr.c:1053 +#, c-format +msgid "`-w PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "‘-w é å¯¬â€™çš„字元數目無效:‘%s’" + +#: src/pr.c:1065 +#, c-format +msgid "`-W PAGE_WIDTH' invalid number of characters: `%s'" +msgstr "‘-W é å¯¬â€™çš„字元數目無效:‘%s’" + +#: src/pr.c:1079 +msgid "%b %e %H:%M %Y" +msgstr "%Y-%m-%d %H:%M" + +#: src/pr.c:1088 +msgid "Cannot specify number of columns when printing in parallel." +msgstr "ä¸¦æŽ’åˆ—å°æ™‚ä¸èƒ½åŒæ™‚æŒ‡å®šæ¬„ä½æ•¸ç›®ã€‚" + +#: src/pr.c:1092 +msgid "Cannot specify both printing across and printing in parallel." +msgstr "ä¸èƒ½åŒæ™‚指定橫å‘列å°èˆ‡ä¸¦æŽ’列å°ã€‚" + +#: src/pr.c:1188 +#, c-format +msgid "`-%c' extra characters or invalid number in the argument: `%s'" +msgstr "引數‘%2$sâ€™å«æœ‰å¤šé¤˜çš„字元‘-%1$c’或無效的數字" + +#: src/pr.c:1299 +msgid "page width too narrow" +msgstr "é é¢å¤ªçª„" + +#: src/pr.c:2362 +#, c-format +msgid "starting page number larger than total number of pages: `%d'" +msgstr "é–‹å§‹é ç¢¼å¤§æ–¼ç¸½é æ•¸ï¼šâ€˜%d’" + +#: src/pr.c:2393 +#, c-format +msgid "Page %d" +msgstr "第 %d é " + +#: src/pr.c:2759 +msgid "" +"Paginate or columnate FILE(s) for printing.\n" +"\n" +msgstr "" +"å°‡ <檔案> åˆ†é æˆ–分欄以便列å°ã€‚\n" +"\n" + +#: src/pr.c:2766 +#, fuzzy +msgid "" +" +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n" +" begin [stop] printing with page FIRST_[LAST_]PAGE\n" +" -COLUMN, --columns=COLUMN\n" +" output COLUMN columns and print columns down,\n" +" unless -a is used. Balance number of lines in the\n" +" columns on each page.\n" +msgstr "" +" +é–‹å§‹é ç¢¼[:çµæŸé ç¢¼], --pages=é–‹å§‹é ç¢¼[:çµæŸé ç¢¼]\n" +" åªå°å‡ºç”± <é–‹å§‹é ç¢¼> 至 <çµæŸé ç¢¼> çš„æ¯ä¸€é \n" +" -欄數, --columns=欄數\n" +" 將輸出分為指定的 <欄數> 顯示,而æ¯ä¸€æ¬„都是å‘下列å°çš„,\n" +" 除éžä½¿ç”¨ -a é¸é …。它也會平å‡åˆ†ä½ˆæ¯é ä¸­æ‰€æœ‰æ¬„ä½çš„行數。\n" + +#: src/pr.c:2774 +msgid "" +" -a, --across print columns across rather than down, used together\n" +" with -COLUMN\n" +" -c, --show-control-chars\n" +" use hat notation (^G) and octal backslash notation\n" +" -d, --double-space\n" +" double space the output\n" +msgstr "" +" -a, --across å°å‡ºå…§å®¹æ™‚æœƒå…ˆæ©«è·¨æ‰€æœ‰æ¬„ä½ (æ©«å‘列å°),並éžå°å®Œä¸€æ¬„æ‰\n" +" 跳至第二欄繼續列å°ï¼›æ­¤é¸é …需è¦é…åˆ -欄數 使用\n" +" -c, --show-control-chars\n" +" 使用 ^ 符號 (^G) æˆ–åæ–œè™ŸåР八進使•¸å­—顯示無法列å°çš„å­—å…ƒ\n" +" -d, --double-space\n" +" éš”è¡Œé¡¯ç¤ºçµæžœ\n" + +# -F and -f are just the same, help text is ambiguous -- maddog +#: src/pr.c:2782 +msgid "" +" -D, --date-format=FORMAT\n" +" use FORMAT for the header date\n" +" -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n" +" expand input CHARs (TABs) to tab WIDTH (8)\n" +" -F, -f, --form-feed\n" +" use form feeds instead of newlines to separate pages\n" +" (by a 3-line page header with -F or a 5-line header\n" +" and trailer without -F)\n" +msgstr "" +" -D, --date-format=æ ¼å¼\n" +" 使用 <æ ¼å¼> 顯示標頭的日期\n" +" -e[å­—å…ƒ[寬度]], --expand-tabs[=å­—å…ƒ[寬度]]\n" +" 將輸入資料中的 <å­—å…ƒ> (é è¨­ç‚º TAB) 轉æ›ç‚ºæŒ‡å®š <寬度> çš„\n" +" 空格數目 (é è¨­ç‚º 8)\n" +" -F, -f, --form-feed\n" +" 使用 form feed è€Œä¸æ˜¯ newline å­—å…ƒä¾†åˆ†é  (使用此é¸é …\n" +" æ™‚åªæœƒå°å‡ºä¸‰è¡Œæ¨™é ­ï¼Œå¦å‰‡æœƒå°å‡ºäº”行標頭å†åŠ è¨»è…³)\n" + +#: src/pr.c:2792 +msgid "" +" -h HEADER, --header=HEADER\n" +" use a centered HEADER instead of filename in page " +"header,\n" +" -h \"\" prints a blank line, don't use -h\"\"\n" +" -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n" +" replace spaces with CHARs (TABs) to tab WIDTH (8)\n" +" -J, --join-lines merge full lines, turns off -W line truncation, no " +"column\n" +" alignment, --sep-string[=STRING] sets separators\n" +msgstr "" +" -h 標頭文字, --header=標頭文字\n" +" æ¯é çš„æ¨™é ­ä½¿ç”¨ç½®ä¸­çš„ <標頭文字> 代替檔案å稱;-h \"\"\n" +" 表示空白字串,ä¸è¦ä½¿ç”¨ -h\"\" (ç•™æ„空格)\n" +" -i[å­—å…ƒ[寬度]], --output-tabs[=å­—å…ƒ[寬度]]\n" +" 將指定 <寬度> 的空格轉æ›ç‚º <å­—å…ƒ> (é è¨­ç‚º TAB)\n" +" -J, --join-lines å°‡æ¯è¡Œè³‡æ–™å®Œæ•´åœ°åˆä½µï¼›æœƒé—œé–‰ -W é¸é …å°‡æ¯è¡Œæˆªæ–·çš„æ•ˆæžœï¼›\n" +" ä¸å°‡æ¯æ¬„å°é½Šï¼›--sep-string[=字串] é¸é …å¯è¨­å®šåˆ†éš”字串\n" + +#: src/pr.c:2801 +msgid "" +" -l PAGE_LENGTH, --length=PAGE_LENGTH\n" +" set the page length to PAGE_LENGTH (66) lines\n" +" (default number of lines of text 56, and with -F 63)\n" +" -m, --merge print all files in parallel, one in each column,\n" +" truncate lines, but join lines of full length with -J\n" +msgstr "" +" -l æ¯é è¡Œæ•¸, --length=æ¯é è¡Œæ•¸\n" +" 設定æ¯é çš„總行數 (é è¨­ç‚º 66)\n" +" (é è¨­å¯é¡¯ç¤ºè³‡æ–™å…§å®¹çš„行數為 56,使用 -F é¸é …時為 63)\n" +" -m, --merge 並排顯示所有檔案 (æ¯æ¬„一個檔案);會將資料截短至符åˆ\n" +" 欄寬,但使用 -J é¸é …則䏿œƒæˆªçŸ­ä»»ä½•一行\n" + +#: src/pr.c:2808 +msgid "" +" -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n" +" number lines, use DIGITS (5) digits, then SEP (TAB),\n" +" default counting starts with 1st line of input file\n" +" -N NUMBER, --first-line-number=NUMBER\n" +" start counting with NUMBER at 1st line of first\n" +" page printed (see +FIRST_PAGE)\n" +msgstr "" +" -n[SEP[使•¸]], --number-lines[=SEP[使•¸]]\n" +" 加上行號;行號由指定 <使•¸> 的數字(é è¨­ç‚º 5)加上 SEP å­—\n" +" å…ƒ (é è¨­ç‚º TAB) 組æˆï¼›è¨ˆç®—行號時會以æ¯å€‹æª”案第一行開始\n" +" -N 行號, --first-line-number=行號\n" +" 指定æ¯å€‹æª”案第一行的 <行號> (è«‹åƒè€ƒ +é–‹å§‹é ç¢¼ 的說明)\n" + +#: src/pr.c:2816 +msgid "" +" -o MARGIN, --indent=MARGIN\n" +" offset each line with MARGIN (zero) spaces, do not\n" +" affect -w or -W, MARGIN will be added to PAGE_WIDTH\n" +" -r, --no-file-warnings\n" +" omit warning when a file cannot be opened\n" +msgstr "" +" -o 邊界, --indent=邊界\n" +" æ¯è¡Œå‰å…ˆåŠ ä¸Š <邊界> 所指定的空格數目(é è¨­ç‚º 0)ï¼›ä¸æœƒ\n" +" 影響 -w 或 -W é¸é …ï¼›<邊界> 空格數目會加至 <é å¯¬> 的數目\n" +" -r, --no-file-warnings\n" +" ç„¡æ³•é–‹å•Ÿæª”æ¡ˆæ™‚ä¸æœƒå°å‡ºè­¦å‘Šè¨Šæ¯\n" + +#: src/pr.c:2823 +msgid "" +" -s[CHAR],--separator[=CHAR]\n" +" separate columns by a single character, default for " +"CHAR\n" +" is the character without -w and 'no char' with -w\n" +" -s[CHAR] turns off line truncation of all 3 column\n" +" options (-COLUMN|-a -COLUMN|-m) except -w is set\n" +msgstr "" +" -s[å­—å…ƒ],--separator[=å­—å…ƒ]\n" +" 以一個字元分隔欄ä½ï¼Œç•¶ä¸ä½¿ç”¨ -w é¸é …時é è¨­å­—元為\n" +" ,å¦å‰‡ä¸ä½¿ç”¨ä»»ä½•分隔字元\n" +" 除éžä½¿ç”¨äº† -w é¸é …,å¦å‰‡ -s[å­—å…ƒ] 會防止以下三種\n" +" å’Œæ¬„ä½æœ‰é—œçš„é¸é …截斷æ¯è¡Œçš„資料: -欄ä½ã€-a -欄ä½ã€\n" +" -m\n" + +#: src/pr.c:2830 +msgid " -SSTRING, --sep-string[=STRING]\n" +msgstr " -S字串, --sep-string[=字串]\n" + +#: src/pr.c:2833 +msgid "" +" separate columns by STRING,\n" +" without -S: Default separator with -J and \n" +" otherwise (same as -S\" \"), no effect on column " +"options\n" +" -t, --omit-header omit page headers and trailers\n" +msgstr "" +" 以 <字串> 分隔欄ä½ã€‚\n" +" ä¸ä½¿ç”¨ -S é¸é …時,é è¨­çš„分隔字串為:使用 -J é¸é …時是\n" +" ,å¦å‰‡æ˜¯ <空格> (å³ -S\" \");此é¸é …䏿œƒå½±éŸ¿å…¶å®ƒå’Œ\n" +" æ¬„ä½æœ‰é—œçš„é¸é …\n" +" -t, --omit-header ä¸å°å‡ºæ¨™é ­å’Œè¨»è…³\n" + +#: src/pr.c:2839 +msgid "" +" -T, --omit-pagination\n" +" omit page headers and trailers, eliminate any " +"pagination\n" +" by form feeds set in input files\n" +" -v, --show-nonprinting\n" +" use octal backslash notation\n" +" -w PAGE_WIDTH, --width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters for\n" +" multiple text-column output only, -s[char] turns off " +"(72)\n" +msgstr "" +" -T, --omit-pagination\n" +" ä¸å°å‡ºä»»ä½•標頭和註腳,ä¸é€²è¡Œä»»ä½•因輸入檔的 form feed\n" +" å­—å…ƒè€Œèµ·çš„åˆ†é æ“作\n" +" -v, --show-nonprinting\n" +" ä½¿ç”¨åæ–œè™ŸåР八進使•¸å­—的表示法顯示無法列å°çš„å­—å…ƒ\n" +" -w é å¯¬, --width=é å¯¬\n" +" 當顯示多欄的文字時設定 <é å¯¬> (é è¨­ç‚º 72 å­—å…ƒ)ï¼›-s[å­—" +"å…ƒ]\n" +" 會關閉此效果\n" + +#: src/pr.c:2849 +msgid "" +" -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n" +" set page width to PAGE_WIDTH (72) characters always,\n" +" truncate lines, except -J option is set, no " +"interference\n" +" with -S or -s\n" +msgstr "" +" -W é å¯¬, --page-width=é å¯¬\n" +" 設定æ¯é çš„ <é å¯¬> (é è¨­ç‚º 72 個字元);任何一行太長都會\n" +" 強行截短至符åˆé å¯¬ï¼Œé™¤éžåŒæ™‚使用 -J é¸é …ï¼›ä¸æœƒå½±éŸ¿ -S\n" +" 或 -s é¸é …\n" + +#: src/pr.c:2857 +msgid "" +"\n" +"-T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n" +"FILE is -, read standard input.\n" +msgstr "" +"\n" +"ç•¶ nn <= 10 (é…åˆ -F é¸é …時 nn <= 3) 的時候,使用 -l nn é¸é …å³è¡¨ç¤º -T é¸é …\n" +"已生效。如果沒有指定 <檔案> 或 <檔案> 是 -,則由標準輸入讀å–資料。\n" + +#: src/printenv.c:43 +#, fuzzy +msgid "David MacKenzie and Richard Mlynarik" +msgstr "David Ihnatã€David MacKenzie åŠ Jim Meyering" + +#: src/printenv.c:63 +#, c-format +msgid "" +"Usage: %s [VARIABLE]...\n" +" or: %s OPTION\n" +"If no environment VARIABLE specified, print them all.\n" +"\n" +msgstr "" + +#: src/printf.c:87 +#, c-format +msgid "" +"warning: %s: character(s) following character constant have been ignored" +msgstr "" + +#: src/printf.c:100 +#, fuzzy, c-format +msgid "" +"Usage: %s FORMAT [ARGUMENT]...\n" +" or: %s OPTION\n" +msgstr "" +"用法:%s [檔案]...\n" +" 或:%s [é¸é …]\n" + +#: src/printf.c:105 +msgid "" +"Print ARGUMENT(s) according to FORMAT.\n" +"\n" +msgstr "" + +#: src/printf.c:111 +msgid "" +"\n" +"FORMAT controls the output as in C printf. Interpreted sequences are:\n" +"\n" +" \\\" double quote\n" +" \\0NNN character with octal value NNN (0 to 3 digits)\n" +" \\\\ backslash\n" +msgstr "" + +#: src/printf.c:119 +msgid "" +" \\a alert (BEL)\n" +" \\b backspace\n" +" \\c produce no further output\n" +" \\f form feed\n" +msgstr "" + +#: src/printf.c:125 +msgid "" +" \\n new line\n" +" \\r carriage return\n" +" \\t horizontal tab\n" +" \\v vertical tab\n" +msgstr "" + +#: src/printf.c:131 +msgid "" +" \\xNN byte with hexadecimal value NN (1 to 2 digits)\n" +"\n" +" \\uNNNN character with hexadecimal value NNNN (4 digits)\n" +" \\UNNNNNNNN character with hexadecimal value NNNNNNNN (8 digits)\n" +msgstr "" + +#: src/printf.c:137 +msgid "" +" %% a single %\n" +" %b ARGUMENT as a string with `\\' escapes interpreted\n" +"\n" +"and all C format specifications ending with one of diouxXfeEgGcs, with\n" +"ARGUMENTs converted to proper type first. Variable widths are handled.\n" +msgstr "" + +#: src/printf.c:160 +#, c-format +msgid "%s: expected a numeric value" +msgstr "" + +#: src/printf.c:162 +#, c-format +msgid "%s: value not completely converted" +msgstr "" + +#: src/printf.c:254 src/printf.c:280 +msgid "missing hexadecimal number in escape" +msgstr "" + +#: src/printf.c:292 +#, fuzzy, c-format +msgid "invalid universal character name \\%c%0*x" +msgstr "無效的字元種類‘%s’" + +#: src/printf.c:472 +#, fuzzy, c-format +msgid "invalid field width: %s" +msgstr "無效的寬度:‘%s’" + +#: src/printf.c:498 +#, fuzzy, c-format +msgid "invalid precision: %s" +msgstr "無效的寬度é¸é …:‘%s’" + +#: src/printf.c:519 +#, fuzzy, c-format +msgid "%%%c: invalid directive" +msgstr "%s:無效的樣å¼" + +#: src/printf.c:576 +#, c-format +msgid "Usage: %s format [argument...]\n" +msgstr "" + +#: src/printf.c:594 +#, c-format +msgid "warning: ignoring excess arguments, starting with `%s'" +msgstr "" + +#: src/ptx.c:410 +#, c-format +msgid "%s (for regexp `%s')" +msgstr "%s (å°æ–¼æ­£è¦è¡¨ç¤ºå¼â€˜%s’)" + +#: src/ptx.c:1859 +#, c-format +msgid "" +"Usage: %s [OPTION]... [INPUT]... (without -G)\n" +" or: %s -G [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "" +"用法:%s [é¸é …]... [輸入]... (沒有 -G)\n" +" 或:%s -G [é¸é …]... [輸入 [輸出]]\n" + +#: src/ptx.c:1863 +msgid "" +"Output a permuted index, including context, of the words in the input " +"files.\n" +"\n" +msgstr "" +"顯示輸入檔中所有字詞排列後的索引,並包括該字詞å‰å¾Œçš„æ–‡å­—。\n" +"\n" + +#: src/ptx.c:1870 +msgid "" +" -A, --auto-reference output automatically generated references\n" +" -C, --copyright display Copyright and copying conditions\n" +" -G, --traditional behave more like System V `ptx'\n" +" -F, --flag-truncation=STRING use STRING for flagging line truncations\n" +msgstr "" + +#: src/ptx.c:1876 +msgid "" +" -M, --macro-name=STRING macro name to use instead of `xx'\n" +" -O, --format=roff generate output as roff directives\n" +" -R, --right-side-refs put references at right, not counted in -w\n" +" -S, --sentence-regexp=REGEXP for end of lines or end of sentences\n" +" -T, --format=tex generate output as TeX directives\n" +msgstr "" + +#: src/ptx.c:1883 +msgid "" +" -W, --word-regexp=REGEXP use REGEXP to match each keyword\n" +" -b, --break-file=FILE word break characters in this FILE\n" +" -f, --ignore-case fold lower case to upper case for sorting\n" +" -g, --gap-size=NUMBER gap size in columns between output fields\n" +" -i, --ignore-file=FILE read ignore word list from FILE\n" +" -o, --only-file=FILE read only word list from this FILE\n" +msgstr "" + +#: src/ptx.c:1891 +msgid "" +" -r, --references first field of each line is a reference\n" +" -t, --typeset-mode - not implemented -\n" +" -w, --width=NUMBER output width in columns, reference " +"excluded\n" +msgstr "" + +#: src/ptx.c:1898 +msgid "" +"\n" +"With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n" +msgstr "" +"\n" +"如果沒有指定 <檔案> 或 <檔案> 是 -,則由標準輸入讀入資料。\n" +"é è¨­ä½¿ç”¨â€˜-F /’é¸é …。\n" + +#: src/ptx.c:1978 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2, or (at your option)\n" +"any later version.\n" +"\n" +msgstr "" +"æœ¬ç¨‹å¼æ˜¯è‡ªç”±è»Ÿé«”;你å¯ä»¥æ ¹æ“š Free Software Foundation 所公佈的 GNU\n" +"General Public License 第二版或(è‡ªç”±é¸æ“‡)è¼ƒæ–°çš„ç‰ˆæœ¬ä¸­çš„æ¢æ¬¾å޻釿–°\n" +"散佈åŠ/或修改本軟體。\n" +"\n" + +#: src/ptx.c:1985 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +msgstr "" +"ç™¼ä½ˆæœ¬è»Ÿé«”æ˜¯å¸Œæœ›å®ƒæœƒæœ‰ç”¨ï¼Œä½†ä¸æœƒæä¾›ä»»ä½•ä¿è­‰ï¼Œç”šè‡³ä¸æœƒåŒ…括å¯å”®æ€§æˆ–\n" +"é©ç”¨æ–¼ä»»ä½•特定目的的ä¿è­‰ã€‚詳情請åƒè€ƒ GNU General Public License。\n" +"\n" + +#: src/ptx.c:1992 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software Foundation,\n" +"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" +msgstr "" +"你應該已經隨本軟體收到一份 GNU General Public Licenseï¼›å¦å‰‡è«‹å¯„信至\n" +"Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" +"MA 02111-1307, USA.\n" + +#: src/pwd.c:47 +msgid "" +"Print the full filename of the current working directory.\n" +"\n" +msgstr "" + +#: src/pwd.c:74 +#, fuzzy +msgid "ignoring non-option arguments" +msgstr "éžé¸é …的引數éŽå¤š" + +#: src/pwd.c:78 +#, fuzzy +msgid "cannot get current directory" +msgstr "無法建立目錄%s" + +#: src/readlink.c:69 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE\n" +msgstr "用法:%s [é¸é …]... [檔案]...\n" + +#: src/readlink.c:70 +msgid "" +"Display value of a symbolic link on standard output.\n" +"\n" +msgstr "" + +#: src/readlink.c:72 +msgid "" +" -f, --canonicalize canonicalize by following every symlink in every\n" +" component of the given path recursively\n" +" -n, --no-newline do not output the trailing newline\n" +" -q, --quiet,\n" +" -s, --silent suppress most error messages\n" +" -v, --verbose report error messages\n" +msgstr "" + +#: src/remove.c:394 +#, fuzzy, c-format +msgid "cannot chdir from %s to .." +msgstr "無法進入%s目錄" + +#: src/remove.c:407 src/remove.c:488 +#, c-format +msgid "cannot lstat `.' in %s" +msgstr "無法在%s中 lstat‘.’" + +#: src/remove.c:414 src/remove.c:492 +#, c-format +msgid "%s changed dev/ino" +msgstr "%s的所在è£ç½®æˆ– inode 改變了" + +#: src/remove.c:574 src/remove.c:712 src/remove.c:881 src/remove.c:984 +#, c-format +msgid "cannot lstat %s" +msgstr "lstat%s失敗" + +#: src/remove.c:603 +#, fuzzy, c-format +msgid "%s: descend into write-protected directory %s? " +msgstr "無法建立目錄%s" + +#: src/remove.c:604 +#, fuzzy, c-format +msgid "%s: descend into directory %s? " +msgstr "無法進入%s目錄" + +#: src/remove.c:614 +#, c-format +msgid "%s: remove write-protected %s %s? " +msgstr "%s:是å¦ç§»é™¤æœ‰é˜²å¯«ä¿è­·çš„%s%s? " + +#: src/remove.c:615 +#, c-format +msgid "%s: remove %s %s? " +msgstr "%s:是å¦ç§»é™¤%s%s? " + +#: src/remove.c:639 +#, c-format +msgid "removed %s\n" +msgstr "已移除%s\n" + +#: src/remove.c:654 src/remove.c:1059 +#, fuzzy, c-format +msgid "removed directory: %s\n" +msgstr "無法建立目錄%s" + +#: src/remove.c:734 src/remove.c:751 src/remove.c:1064 +#, fuzzy, c-format +msgid "cannot remove directory %s" +msgstr "無法建立目錄%s" + +#: src/remove.c:815 +#, fuzzy, c-format +msgid "cannot open directory %s" +msgstr "無法建立目錄%s" + +#: src/remove.c:896 src/remove.c:1002 +#, fuzzy, c-format +msgid "cannot chdir from %s to %s" +msgstr "無法進入%s目錄" + +#: src/remove.c:904 +#, c-format +msgid "" +"WARNING: Circular directory structure.\n" +"This almost certainly means that you have a corrupted file system.\n" +"NOTIFY YOUR SYSTEM MANAGER.\n" +"The following directory is part of the cycle:\n" +" %s\n" +msgstr "" +"警告:發ç¾å¾ªç’°çš„目錄架構。\n" +"這幾乎å¯ä»¥è‚¯å®šæª”案系統已經æå£žã€‚\n" +"** 請通知系統管ç†å“¡ã€‚**\n" +"以下的目錄是循環的一部份:\n" +" %s\n" + +#: src/remove.c:1098 +msgid "cannot remove `.' or `..'" +msgstr "無法移除‘.’或‘..’" + +#: src/rm.c:60 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering" +msgstr "David Ihnatã€David MacKenzie åŠ Jim Meyering" + +#: src/rm.c:99 src/touch.c:244 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE...\n" +msgstr "用法:%s [é¸é …]... [檔案]...\n" + +#: src/rm.c:100 +msgid "" +"Remove (unlink) the FILE(s).\n" +"\n" +" -d, --directory unlink FILE, even if it is a non-empty directory\n" +" (super-user only)\n" +" -f, --force ignore nonexistent files, never prompt\n" +" -i, --interactive prompt before any removal\n" +" -r, -R, --recursive remove the contents of directories recursively\n" +" -v, --verbose explain what is being done\n" +msgstr "" +"移除指定的 <檔案>。\n" +"\n" +" -d, --directory 移除å¯èƒ½ä»æœ‰è³‡æ–™çš„目錄 (åªé™æœ€å¤§æ¬ŠåŠ›ä½¿ç”¨è€…ä½¿ç”¨)\n" +" -f, --force ç•¥éŽä¸å­˜åœ¨çš„æª”案,ä¸é¡¯ç¤ºä»»ä½•訊æ¯\n" +" -i, --interactive 進行任何移除æ“作å‰å¿…須先確èª\n" +" -r, -R, --recursive åŒæ™‚移除該目錄下的所有目錄層\n" +" -v, --verbose 詳細顯示進行的步驟\n" + +#: src/rm.c:112 +#, c-format +msgid "" +"\n" +"To remove a file whose name starts with a `-', for example `-foo',\n" +"use one of these commands:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" +msgstr "" +"\n" +"è¦ç§»é™¤ç¬¬ä¸€å€‹å­—元為‘-’的檔案 (例如‘-foo’),請使用以下其中一種方法:\n" +" %s -- -foo\n" +"\n" +" %s ./-foo\n" + +#: src/rm.c:121 +msgid "" +"\n" +"Note that if you use rm to remove a file, it is usually possible to recover\n" +"the contents of that file. If you want more assurance that the contents " +"are\n" +"truly unrecoverable, consider using shred.\n" +msgstr "" +"\n" +"請注æ„,如果使用 rm 來移除檔案,通常ä»å¯ä»¥å°‡è©²æª”案æ¢å¾©åŽŸç‹€ã€‚å¦‚æžœæƒ³ä¿è­‰\n" +"該檔案的內容無法還原,請考慮使用 shred。\n" + +#: src/rmdir.c:116 src/rmdir.c:217 +#, fuzzy, c-format +msgid "removing directory, %s" +msgstr "無法建立目錄%s" + +#: src/rmdir.c:146 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... DIRECTORY...\n" +msgstr "用法:%s [é¸é …]... [檔案]...\n" + +#: src/rmdir.c:147 +msgid "" +"Remove the DIRECTORY(ies), if they are empty.\n" +"\n" +" --ignore-fail-on-non-empty\n" +" ignore each failure that is solely because a directory\n" +" is non-empty\n" +msgstr "" +"如果 <目錄> 沒有資料則移除該目錄。\n" +"\n" +" --ignore-fail-on-non-empty\n" +" å¿½ç•¥ä»»ä½•å› ç›®éŒ„ä»æœ‰è³‡æ–™è€Œé€ æˆçš„錯誤\n" + +#: src/rmdir.c:154 +msgid "" +" -p, --parents remove DIRECTORY, then try to remove each directory\n" +" component of that path name. E.g., `rmdir -p a/b/c' is\n" +" similar to `rmdir a/b/c a/b a'.\n" +" -v, --verbose output a diagnostic for every directory processed\n" +msgstr "" +" -p, --parents 移除 <目錄>,然後嘗試移除指定路徑中的所有上層目錄。例如:\n" +" ‘rmdir -p a/b/c’的效果等於‘rmdir a/b/c a/b a’。\n" +" -v, --verbose è™•ç†æ¯å€‹ç›®éŒ„時都顯示訊æ¯\n" + +#: src/seq.c:82 +#, fuzzy, c-format +msgid "" +"Usage: %s [OPTION]... LAST\n" +" or: %s [OPTION]... FIRST LAST\n" +" or: %s [OPTION]... FIRST INCREMENT LAST\n" +msgstr "" +"用法:%s [é¸é …]... [輸入]... (沒有 -G)\n" +" 或:%s -G [é¸é …]... [輸入 [輸出]]\n" + +#: src/seq.c:87 +#, c-format +msgid "" +"Print numbers from FIRST to LAST, in steps of INCREMENT.\n" +"\n" +" -f, --format=FORMAT use printf style floating-point FORMAT (default: %" +"g)\n" +" -s, --separator=STRING use STRING to separate numbers (default: \\n)\n" +" -w, --equal-width equalize width by padding with leading zeroes\n" +msgstr "" + +#: src/seq.c:96 +#, c-format +msgid "" +"\n" +"If FIRST or INCREMENT is omitted, it defaults to 1.\n" +"FIRST, INCREMENT, and LAST are interpreted as floating point values.\n" +"INCREMENT should be positive if FIRST is smaller than LAST, and negative\n" +"otherwise. When given, the FORMAT argument must contain exactly one of\n" +"the printf-style, floating point output formats %e, %f, %g\n" +msgstr "" + +#: src/seq.c:119 +#, fuzzy, c-format +msgid "invalid floating point argument: %s" +msgstr "無效的開始行號:‘%s’" + +#: src/seq.c:189 +msgid "" +"when the starting value is larger than the limit,\n" +"the increment must be negative" +msgstr "" + +#: src/seq.c:213 +msgid "" +"when the starting value is smaller than the limit,\n" +"the increment must be positive" +msgstr "" + +#: src/seq.c:423 +#, fuzzy, c-format +msgid "invalid format string: `%s'" +msgstr "無效的類型‘%s’" + +#: src/seq.c:445 +#, fuzzy +msgid "format string may not be specified when printing equal width strings" +msgstr "傾å°å­—串時ä¸èƒ½æŒ‡å®šé¡žåž‹" + +#: src/shred.c:160 +#, fuzzy, c-format +msgid "Usage: %s [OPTIONS] FILE [...]\n" +msgstr "用法:%s [é¸é …] [檔案]...\n" + +#: src/shred.c:161 +msgid "" +"Overwrite the specified FILE(s) repeatedly, in order to make it harder\n" +"for even very expensive hardware probing to recover the data.\n" +"\n" +msgstr "é‡è¤‡è¦†å¯« <檔案>,使得å³ä½¿æ˜¯æ˜‚è²´çš„ç¡¬ä»¶åµæ¸¬å„€å™¨ä¹Ÿé›£ä»¥å°‡è³‡æ–™å¾©åŽŸã€‚\n" + +#: src/shred.c:169 +#, c-format +msgid "" +" -f, --force change permissions to allow writing if necessary\n" +" -n, --iterations=N Overwrite N times instead of the default (%d)\n" +" -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n" +msgstr "" +" -f, --force æœ‰éœ€è¦æ™‚強迫程å¼å¯å¯«å…¥æª”案\n" +" -n, --iterations=N 自行指定é‡è¦†è¦†å¯«çš„æ¬¡æ•¸ (é è¨­ç‚º %d 次)\n" +" -s, --size=N 覆寫指定的ä½å…ƒçµ„數目 (å¯æŽ¥å— Kã€Mã€G 等等的單ä½)\n" + +#: src/shred.c:174 +#, fuzzy +msgid "" +" -u, --remove truncate and remove file after overwriting\n" +" -v, --verbose show progress\n" +" -x, --exact do not round file sizes up to the next full block;\n" +" this is the default for non-regular files\n" +" -z, --zero add a final overwrite with zeros to hide shredding\n" +" - shred standard output\n" +msgstr "" +" -u, --remove 覆寫後會截斷åŠç§»é™¤è©²æª”案\n" +" -v, --verbose 顯示進度\n" +" -x, --exact ä¸å°‡æª”案大å°å¢žåŠ è‡³æœ€æŽ¥è¿‘çš„å€æ®µå¤§å°\n" +" -z, --zero 最後一次會使用 0 ä½å…ƒçµ„進行覆寫來隱è—覆寫動作\n" +" - 覆寫標準輸出的資料\n" + +#: src/shred.c:184 +msgid "" +"\n" +"Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n" +"the files because it is common to operate on device files like /dev/hda,\n" +"and those files usually should not be removed. When operating on regular\n" +"files, most people use the --remove option.\n" +"\n" +msgstr "" +"\n" +"如果加上 --remove (-u) é¸é …表示移除 <檔案>。é è¨­çš„æ–¹å¼æ˜¯ä¸ç§»é™¤æª”案,\n" +"å› ç‚ºè¦†å¯«åƒ /dev/hda 等的è£ç½®æª”案是很普éçš„ï¼Œè€Œé€™äº›æª”æ¡ˆé€šå¸¸ä¸æ‡‰ç§»é™¤ã€‚\n" +"當覆寫普通檔案時,絕大多數人都會使用 --remove é¸é …。\n" + +#: src/shred.c:192 +msgid "" +"CAUTION: Note that shred relies on a very important assumption:\n" +"that the filesystem overwrites data in place. This is the traditional\n" +"way to do things, but many modern filesystem designs do not satisfy this\n" +"assumption. The following are examples of filesystems on which shred is\n" +"not effective:\n" +"\n" +msgstr "" +"警告:請注æ„使用 shred 時有一個很é‡è¦çš„æ¢ä»¶ï¼š\n" +"檔案系統會在原來的ä½ç½®è¦†å¯«æŒ‡å®šçš„è³‡æ–™ã€‚å‚³çµ±çš„æª”æ¡ˆç³»çµ±ç¬¦åˆæ­¤æ¢ä»¶ï¼Œä½†è¨±å¤šç¾ä»£\n" +"的檔案系統都ä¸ç¬¦åˆæ¢ä»¶ã€‚以下是會令 shred 無效的檔案系統的例å­ï¼š\n" +"\n" + +#: src/shred.c:200 +msgid "" +"* log-structured or journaled filesystems, such as those supplied with\n" +" AIX and Solaris (and JFS, ReiserFS, XFS, Ext3, etc.)\n" +"\n" +"* filesystems that write redundant data and carry on even if some writes\n" +" fail, such as RAID-based filesystems\n" +"\n" +"* filesystems that make snapshots, such as Network Appliance's NFS server\n" +"\n" +msgstr "" +"â— æœ‰ç´€éŒ„çµæ§‹æˆ–æ˜¯æ—¥èªŒå¼æª”æ¡ˆç³»çµ±ï¼Œåƒ AIX åŠ Solaris 使用的檔案系統 (以åŠ\n" +" JFSã€ReiserFSã€XFSã€Ext3 等等)\n" +"\n" +"◠會é‡è¦†å¯«å…¥è³‡æ–™ï¼ŒåŠå³ä½¿ä¸€éƒ¨ä»½å¯«å…¥å‹•作失敗後ä»å¯ç¹¼çºŒçš„æª”案系統,åƒä½¿ç”¨\n" +" RAID 的檔案系統\n" +"\n" +"â— æœƒä¸æ™‚é€²è¡Œå¿«ç…§ç´€éŒ„çš„æª”æ¡ˆç³»çµ±ï¼Œåƒ Network Applicance çš„ NFS 伺æœå™¨\n" +"\n" + +#: src/shred.c:210 +msgid "" +"* filesystems that cache in temporary locations, such as NFS\n" +" version 3 clients\n" +"\n" +"* compressed filesystems\n" +"\n" +"In addition, file system backups and remote mirrors may contain copies\n" +"of the file that cannot be removed, and that will allow a shredded file\n" +"to be recovered later.\n" +msgstr "" +"◠會將快å–記憶放入暫存ä½ç½®çš„æª”æ¡ˆç³»çµ±ï¼Œåƒ NFS 第 3 版本的用戶端程å¼\n" +"\n" +"◠會壓縮資料的檔案系統\n" +"\n" +"å¦å¤–,檔案系統的備份åŠé ç«¯çš„ mirror 都å¯èƒ½æ“有該檔案的複製本,這些複製本\n" +"都是無法移除的,而且å¯èƒ½ä»¤å·²ç¶“用 shred 處ç†éŽçš„æª”案æ¢å¾©åŽŸç‹€ã€‚\n" + +#: src/shred.c:808 +#, c-format +msgid "%s: cannot rewind" +msgstr "%s:無法å‘後æœå°‹" + +#: src/shred.c:831 +#, c-format +msgid "%s: pass %lu/%lu (%s)..." +msgstr "%1$s:%3$lu 次之第 %2$lu 次 (%4$s)..." + +#: src/shred.c:868 +#, fuzzy, c-format +msgid "%s: error writing at offset %s" +msgstr "寫入 %s 時發生錯誤" + +#: src/shred.c:897 +#, fuzzy, c-format +msgid "%s: file too large" +msgstr "%s:檔案éŽå¤§" + +#: src/shred.c:920 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s" +msgstr "%1$s:%3$lu 次之第 %2$lu 次 (%4$s)...%5$s" + +#: src/shred.c:936 +#, c-format +msgid "%s: pass %lu/%lu (%s)...%s/%s %d%%" +msgstr "%1$s:%3$lu 次之第 %2$lu 次 (%4$s)...%5$s/%6$s %7$d%%" + +#: src/shred.c:1195 +#, fuzzy, c-format +msgid "%s: invalid file type" +msgstr "%s:無效的後置字串長度" + +#: src/shred.c:1212 +#, c-format +msgid "%s: file has negative size" +msgstr "%s:檔案的大å°ç‚ºè² æ•¸" + +#: src/shred.c:1265 +#, fuzzy, c-format +msgid "%s: error truncating" +msgstr "%s:檔案被截斷了" + +#: src/shred.c:1286 +#, c-format +msgid "%s: cannot shred append-only file descriptor" +msgstr "%s:ä¸èƒ½å°‡åªå¯åŠ ä¸Šè³‡æ–™çš„æª”æ¡ˆæè¿°å­ (file descriptor) 進行 shred 動作" + +#: src/shred.c:1371 +#, c-format +msgid "%s: removing" +msgstr "%s:正在移除" + +#: src/shred.c:1412 +#, fuzzy, c-format +msgid "%s: renamed to %s" +msgstr "%sï¼šè®€å–æ™‚發生錯誤" + +#: src/shred.c:1438 +#, c-format +msgid "%s: removed" +msgstr "%s:已經移除" + +#: src/shred.c:1503 +#, c-format +msgid "%s: cannot remove" +msgstr "%s:無法移除" + +#: src/shred.c:1551 +#, fuzzy, c-format +msgid "%s: invalid number of passes" +msgstr "%s:無效的秒數" + +#: src/shred.c:1568 +#, fuzzy, c-format +msgid "%s: invalid file size" +msgstr "%s:無效的後置字串長度" + +#: src/sleep.c:34 +#, fuzzy +msgid "Jim Meyering and Paul Eggert" +msgstr "Mike Haertel åŠ Paul Eggert" + +#: src/sleep.c:52 +#, c-format +msgid "" +"Usage: %s NUMBER[SUFFIX]...\n" +" or: %s OPTION\n" +"Pause for NUMBER seconds. SUFFIX may be `s' for seconds (the default),\n" +"`m' for minutes, `h' for hours or `d' for days. Unlike most " +"implementations\n" +"that require NUMBER be an integer, here NUMBER may be an arbitrary floating\n" +"point number.\n" +"\n" +msgstr "" + +#: src/sleep.c:155 +#, fuzzy, c-format +msgid "invalid time interval `%s'" +msgstr "無效的欄ä½è™Ÿç¢¼ï¼šâ€˜%s’" + +#: src/sleep.c:166 src/tail.c:1031 +#, fuzzy +msgid "cannot read realtime clock" +msgstr "無法建立éˆçµ%s" + +#: src/sort.c:53 +msgid "Mike Haertel and Paul Eggert" +msgstr "Mike Haertel åŠ Paul Eggert" + +#: src/sort.c:280 +msgid "" +"Write sorted concatenation of all FILE(s) to standard output.\n" +"\n" +"Ordering options:\n" +"\n" +msgstr "" +"將所有 <檔案> 內容åˆä½µå’ŒæŽ’åºï¼Œä¸¦åœ¨æ¨™æº–è¼¸å‡ºé¡¯ç¤ºçµæžœã€‚\n" +"\n" +"排åºé¸é …:\n" +"\n" + +#: src/sort.c:289 +msgid "" +" -b, --ignore-leading-blanks ignore leading blanks\n" +" -d, --dictionary-order consider only blanks and alphanumeric " +"characters\n" +" -f, --ignore-case fold lower case to upper case characters\n" +msgstr "" +" -b, --ignore-leading-blanks 忽略æ¯è¡Œé–‹å§‹çš„空白字元\n" +" -d, --dictionary-order åªè€ƒæ…®ç©ºç™½å­—å…ƒã€è‹±æ–‡å­—和數字\n" +" -f, --ignore-case 排åºå‰å…ˆå°‡å°å¯«å­—元轉æ›ç‚ºå¤§å¯«\n" + +#: src/sort.c:294 +msgid "" +" -g, --general-numeric-sort compare according to general numerical value\n" +" -i, --ignore-nonprinting consider only printable characters\n" +" -M, --month-sort compare (unknown) < `JAN' < ... < `DEC'\n" +" -n, --numeric-sort compare according to string numerical value\n" +" -r, --reverse reverse the result of comparisons\n" +"\n" +msgstr "" +" -g, --general-numeric-sort 以普通數值的方å¼ä½œæ¯”較\n" +" -i, --ignore-nonprinting åªè€ƒæ…®å¯åˆ—å°çš„å­—å…ƒ\n" +" -M, --month-sort 比較月份: (䏿˜Ž) <‘JAN’< ... <‘DEC’\n" +" -n, --numeric-sort 將字串轉æ›ç‚ºæ•¸å€¼ä¾†ä½œæ¯”較\n" +" -r, --reverse 以相åçš„æ¬¡åºæŽ’åˆ—\n" +"\n" + +#: src/sort.c:302 +msgid "" +"Other options:\n" +"\n" +" -c, --check check whether input is sorted; do not sort\n" +" -k, --key=POS1[,POS2] start a key at POS1, end it at POS 2 (origin 1)\n" +" -m, --merge merge already sorted files; do not sort\n" +" -o, --output=FILE write result to FILE instead of standard output\n" +" -s, --stable stabilize sort by disabling last-resort " +"comparison\n" +" -S, --buffer-size=SIZE use SIZE for main memory buffer\n" +msgstr "" +"其它é¸é …:\n" +"\n" +" -c, --check åªæª¢æŸ¥è¼¸å…¥è³‡æ–™æ˜¯å¦æŽ’åˆ—å¥½ï¼Œä¸æœƒçœŸæ­£å°‡è³‡æ–™æŽ’åº\n" +" -k, --key=ä½ç½®1[,ä½ç½®2] 排åºç´¢å¼•ç”± <ä½ç½®1> 的欄ä½é–‹å§‹ï¼Œåœ¨ <ä½ç½®2> çš„\n" +" 欄ä½çµæŸ (1 表示第一個欄ä½)\n" +" -m, --merge åªåˆä½µå·²ç¶“排åºçš„æª”案;ä¸åˆ†åˆ¥æŽ’列æ¯å€‹æª”案的內容\n" +" -o, --output=FILE å°‡çµæžœå¯«å…¥ <檔案> 而並éžåœ¨æ¨™æº–輸出顯示\n" +" -s, --stable ä¸é€²è¡Œæœ€å¾Œçš„æ•´è¡Œæ¯”較排åº\n" +" -S, --buffer-size=å¤§å° æŒ‡å®šè¨˜æ†¶ç·©è¡å€çš„ <大å°>\n" + +#: src/sort.c:312 +#, c-format +msgid "" +" -t, --field-separator=SEP use SEP instead of non- to whitespace " +"transition\n" +" -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s\n" +" multiple options specify multiple directories\n" +" -u, --unique with -c: check for strict ordering\n" +" otherwise: output only the first of an equal " +"run\n" +msgstr "" +" -t, --field-separator=SEP 使用 SEP 作為分隔字串,而並éžä¸€çµ„空白字元\n" +" -T, --temporary-directory=目錄 自行指定暫存 <目錄>ï¼Œè€Œéž $TMPDIR 或 %s\n" +" 多次使用此é¸é …坿Œ‡å®šå¤šå€‹ç›®éŒ„\n" +" -u, --unique é…åˆ -c:嚴格檢查資料是å¦ä¾æ¬¡åºæŽ’列\n" +" 沒有 -c:é‡åˆ°å¤šè¡Œç›¸åŒçš„資料時åªé¡¯ç¤ºç¬¬ä¸€è¡Œ\n" + +#: src/sort.c:319 +msgid " -z, --zero-terminated end lines with 0 byte, not newline\n" +msgstr "" +" -z, --zero-terminated 以ä½å…ƒçµ„ 0 è€Œéž newline 字元作為æ¯è¡Œçš„çµæŸå­—å…ƒ\n" + +#: src/sort.c:324 +msgid "" +"\n" +"POS is F[.C][OPTS], where F is the field number and C the character " +"position\n" +"in the field. OPTS is one or more single-letter ordering options, which\n" +"override global ordering options for that key. If no key is given, use the\n" +"entire line as the key.\n" +"\n" +"SIZE may be followed by the following multiplicative suffixes:\n" +msgstr "" +"\n" +"<ä½ç½®> çš„æ ¼å¼æ˜¯ F[.C][OPTS],其中 F 是欄ä½ç·¨è™Ÿï¼ŒC 是該欄的字元ä½ç½®ã€‚OPTS\n" +"是一個或多個單字元的排åºé¸é …,這些專用的é¸é …會å–代該排åºç´¢å¼•的一般排åº\n" +"é¸é …。如果沒有指定排åºç´¢å¼•,則以整行的內容作為索引。\n" +"\n" +"<大å°> å¯ä»¥åŠ ä¸Šå¦‚ä¸‹çš„å–®ä½ï¼š\n" + +#: src/sort.c:333 +#, c-format +msgid "" +"% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.\n" +"\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +"*** WARNING ***\n" +"The locale specified by the environment affects sort order.\n" +"Set LC_ALL=C to get the traditional sort order that uses\n" +"native byte values.\n" +msgstr "" +"%% = 1%% 記憶體,b=1,K=1024 (é è¨­å€¼),還有 Mã€Gã€Tã€Pã€Eã€Zã€Y 如此類推。\n" +"\n" +"如果沒有指定 <檔案> 或 <檔案> 是 -,則由標準輸入讀å–資料。\n" +"\n" +"*** 警告 ***\n" +"和語系有關的環境變數會影響排åºçµæžœã€‚\n" +"如果è¦ä»¥ä½å…ƒçµ„數值作為排列次åºï¼Œè«‹è¨­å®šç’°å¢ƒè®Šæ•¸ LC_ALL=C。\n" + +#: src/sort.c:444 +msgid "cannot create temporary file" +msgstr "無法建立暫存檔" + +#: src/sort.c:467 +msgid "open failed" +msgstr "開啟時發生錯誤" + +#: src/sort.c:487 src/sort.c:2496 +msgid "close failed" +msgstr "關閉時發生錯誤" + +#: src/sort.c:495 +msgid "write failed" +msgstr "寫入時發生錯誤" + +#: src/sort.c:641 +msgid "sort size" +msgstr "排åºè¨˜æ†¶ç·©è¡å€" + +#: src/sort.c:715 +msgid "stat failed" +msgstr "stat 時發生錯誤" + +#: src/sort.c:972 +msgid "read failed" +msgstr "讀入時發生錯誤" + +#: src/sort.c:1570 +#, c-format +msgid "%s: %s:%s: disorder: " +msgstr "%s: %s:%s:次åºä¸æ­£ç¢ºï¼š" + +#: src/sort.c:1574 +msgid "standard error" +msgstr "標準錯誤輸出" + +#: src/sort.c:2032 +#, c-format +msgid "%s: invalid field specification `%s'" +msgstr "%s:無效的欄ä½è¦æ ¼â€˜%s’" + +#: src/sort.c:2058 +#, c-format +msgid "%s: count `%.*s' too large" +msgstr "%s:數字‘%.*s’éŽå¤§" + +#: src/sort.c:2064 +#, c-format +msgid "%s: invalid count at start of `%s'" +msgstr "%s:‘%s’開始部份的數字無效" + +#: src/sort.c:2298 +msgid "invalid number after `-'" +msgstr "‘-’後的數字無效" + +#: src/sort.c:2301 src/sort.c:2347 src/sort.c:2374 +msgid "invalid number after `.'" +msgstr "‘.’後的數字無效" + +#: src/sort.c:2304 src/sort.c:2383 +msgid "stray character in field spec" +msgstr "欄ä½è¦æ ¼å‡ºç¾ä¸åˆæ³•的字元" + +#: src/sort.c:2338 +msgid "invalid number at field start" +msgstr "欄ä½è¦æ ¼é–‹å§‹éƒ¨ä»½çš„æ•¸å­—無效" + +#: src/sort.c:2342 src/sort.c:2370 +msgid "field number is zero" +msgstr "æ¬„ä½æ˜¯ 0" + +#: src/sort.c:2351 +msgid "character offset is zero" +msgstr "å­—å…ƒå移值是 0" + +#: src/sort.c:2366 +msgid "invalid number after `,'" +msgstr "‘,’後的數字無效" + +#: src/sort.c:2411 +#, c-format +msgid "multi-character tab `%s'" +msgstr "分隔欄ä½å­—元‘%s’多於一個字元" + +#: src/sort.c:2479 +#, c-format +msgid "extra operand `%s' not allowed with -c" +msgstr "使用 -c 時ä¸å…許指定é¡å¤–çš„åƒæ•¸â€˜%s’" + +#: src/split.c:96 +#, c-format +msgid "Usage: %s [OPTION] [INPUT [PREFIX]]\n" +msgstr "用法:%s [é¸é …] [輸入 [å‰ç½®å­—串]]\n" + +#: src/split.c:100 +msgid "" +"Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default\n" +"PREFIX is `x'. With no INPUT, or when INPUT is -, read standard input.\n" +"\n" +msgstr "" +"å°‡ <輸入> 資料分割為固定大å°çš„éƒ¨ä»½ï¼Œä¸¦å°‡çµæžœå¯«å…¥â€˜<å‰ç½®å­—串>aa’ã€\n" +"‘<å‰ç½®å­—串>ab’等等;é è¨­çš„ <å‰ç½®å­—串> 為‘x’。如果沒有指定 <輸入>\n" +"或 <輸入> 是 -,則由標準輸入讀入資料。\n" +"\n" + +#: src/split.c:108 +#, c-format +msgid "" +" -a, --suffix-length=N use suffixes of length N (default %d)\n" +" -b, --bytes=SIZE put SIZE bytes per output file\n" +" -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file\n" +" -l, --lines=NUMBER put NUMBER lines per output file\n" +msgstr "" +" -a, --suffix-length=N 後置字串的長度為 N (é è¨­å€¼æ˜¯ %d)\n" +" -b, --bytes=å¤§å° æŒ‡å®šæ¯å€‹è¼¸å‡ºæª”çš„ <大å°>,以ä½å…ƒçµ„為單ä½\n" +" -C, --line-bytes=å¤§å° æ¯å€‹è¼¸å‡ºæª”放入æŸè¡Œæ•¸çš„完整資料,但 <大å°> 䏿œƒ\n" +" 超出指定ä½å…ƒçµ„數目\n" +" -l, --lines=行數 æ¯å€‹è¼¸å‡ºæª”放入指定 <行數> 的資料\n" + +#: src/split.c:114 +msgid "" +" --verbose print a diagnostic to standard error just\n" +" before each output file is opened\n" +msgstr " --verbose 開啟æ¯å€‹è¼¸å‡ºæª”之å‰éƒ½åœ¨æ¨™æº–錯誤輸出顯示訊æ¯\n" + +#: src/split.c:171 +msgid "Output file suffixes exhausted" +msgstr "輸出檔的後置字串已用盡" + +#: src/split.c:189 +#, c-format +msgid "creating file `%s'\n" +msgstr "正在建立檔案‘%s’\n" + +#: src/split.c:341 +msgid "cannot split in more than one way" +msgstr "ä¸èƒ½ç”¨è¶…éŽä¸€ç¨®æ–¹å¼é€²è¡Œåˆ†å‰²" + +#: src/split.c:394 +#, c-format +msgid "%s: invalid suffix length" +msgstr "%s:無效的後置字串長度" + +#: src/split.c:408 src/split.c:434 +#, c-format +msgid "%s: invalid number of bytes" +msgstr "%s:無效的ä½å…ƒçµ„數目" + +#: src/split.c:421 +#, c-format +msgid "%s: invalid number of lines" +msgstr "%s:無效的行數" + +#: src/split.c:470 +#, c-format +msgid "`-%d' option is obsolete; use `-l %d'" +msgstr "‘-%d’é¸é …å·²éŽæ™‚;請使用‘-l %d’" + +#: src/split.c:483 +msgid "invalid number" +msgstr "無效的數字" + +#: src/stat.c:326 +#, fuzzy +msgid "*** invalid date/time ***" +msgstr "無效的寬度:‘%s’" + +#: src/stat.c:608 +#, fuzzy, c-format +msgid "cannot read file system information for %s" +msgstr "無法將 %s çš„æª”æ¡ˆæŒ‡æ¨™é‡æ–°å®šä½" + +#: src/stat.c:684 +#, fuzzy, c-format +msgid "Usage: %s [OPTION] FILE...\n" +msgstr "用法:%s [é¸é …] [檔案]...\n" + +# How come the real behavior of -L is exactly the opposite of what docs +# say? -- Abel +#: src/stat.c:685 +msgid "" +"Display file or filesystem status.\n" +"\n" +" -f, --filesystem display filesystem status instead of file status\n" +" -c --format=FORMAT use the specified FORMAT instead of the default\n" +" -L, --dereference follow links\n" +" -t, --terse print the information in terse form\n" +msgstr "" +"顯示檔案或檔案系統的狀態。\n" +"\n" +" -f, --filesystem é¡¯ç¤ºæª”æ¡ˆç³»çµ±çš„ç‹€æ…‹ï¼Œè€Œä¸æ˜¯æª”案的狀態\n" +" -c --format=æ ¼å¼ ä½¿ç”¨æŒ‡å®šçš„ <æ ¼å¼> 代替é è¨­çš„æ ¼å¼\n" +" -L, --dereference 讀å–éˆçµæœ¬èº«çš„資訊,而éžéˆçµæŒ‡ç¤ºçš„目標檔案/目錄\n" +" -t, --terse åªé¡¯ç¤ºç°¡ç•¥çš„資訊\n" + +#: src/stat.c:696 +#, fuzzy +msgid "" +"\n" +"The valid format sequences for files (without --filesystem):\n" +"\n" +" %A Access rights in human readable form\n" +" %a Access rights in octal\n" +" %B The size in bytes of each block reported by `%b'\n" +" %b Number of blocks allocated (see %B)\n" +msgstr "" +"\n" +"é©ç”¨æ–¼æ“·å–檔案資訊 (峿˜¯ä¸ä½¿ç”¨ --filesystem é¸é …) 的格å¼ï¼š\n" +"\n" +" %A - 以容易ç†è§£çš„æ–¹å¼è¡¨ç¤ºå­˜å–權é™\n" +" %a - 以八進使•¸å­—æ–¹å¼è¡¨ç¤ºå­˜å–權é™\n" +" %b - 佔用的ç£ç¢Ÿå€æ®µæ•¸ç›®\n" + +#: src/stat.c:704 +#, fuzzy +msgid "" +" %D Device number in hex\n" +" %d Device number in decimal\n" +" %F File type\n" +" %f Raw mode in hex\n" +" %G Group name of owner\n" +" %g Group ID of owner\n" +msgstr "" +" %D - 以å六進ä½è¡¨ç¤ºçš„è£ç½®è™Ÿç¢¼\n" +" %d - 以å進ä½è¡¨ç¤ºçš„è£ç½®è™Ÿç¢¼\n" +" %F - 檔案類型\n" +" %f - 以å六進ä½è¡¨ç¤ºçš„æª”案類型/å­˜å–æ¬Šé™\n" +" %G - 所屬群組的å稱\n" +" %g - 所屬群組的號碼\n" + +#: src/stat.c:712 +#, fuzzy +msgid "" +" %h Number of hard links\n" +" %i Inode number\n" +" %N Quoted File name with dereference if symbolic link\n" +" %n File name\n" +" %o IO block size\n" +" %s Total size, in bytes\n" +" %T Minor device type in hex\n" +" %t Major device type in hex\n" +msgstr "" +" %h - å¯¦éš›é€£çµ (hard link) 的數目\n" +" %i - Inode 號碼\n" +" %N - 加上引號後的檔案å稱,如果是符號éˆçµå‰‡åŠ ä¸Šéˆçµå¯¦éš›æŒ‡ç¤ºçš„æª”案/目錄\n" +" %n - 檔案å稱\n" +" %o - æœ€ç†æƒ³çš„輸出/輸入資料å€å¡Šå¤§å°\n" +" %s - å¤§å° (以ä½å…ƒçµ„計)\n" +" %T - 特殊檔案或è£ç½®æª”案的åå…­é€²ä½ minor 號碼\n" +" %t - 特殊檔案或è£ç½®æª”案的åå…­é€²ä½ major 號碼\n" + +#: src/stat.c:722 +#, fuzzy +msgid "" +" %U User name of owner\n" +" %u User ID of owner\n" +" %X Time of last access as seconds since Epoch\n" +" %x Time of last access\n" +" %Y Time of last modification as seconds since Epoch\n" +" %y Time of last modification\n" +" %Z Time of last change as seconds since Epoch\n" +" %z Time of last change\n" +"\n" +msgstr "" +" %U - æ“æœ‰è€…的用戶å稱\n" +" %u - æ“æœ‰è€…的用戶識別碼\n" +" %X - ç”± Epoch 時間至最後存å–的時間之間經éŽçš„秒數\n" +" %x - 最後存å–的時間\n" +" %Y - ç”± Epoch 時間至最後更改的時間之間經éŽçš„秒數\n" +" %y - 最後更改的時間\n" +" %Z - ç”± Epoch 時間至最後更改 inode 資訊的時間之間經éŽçš„秒數\n" +" %z - 最後更改 inode 資訊的時間\n" + +#: src/stat.c:734 +#, fuzzy +msgid "" +"Valid format sequences for file systems:\n" +"\n" +" %a Free blocks available to non-superuser\n" +" %b Total data blocks in file system\n" +" %c Total file nodes in file system\n" +" %d Free file nodes in file system\n" +" %f Free blocks in file system\n" +msgstr "" +"é©ç”¨æ–¼æ“·å–檔案系統資訊的格å¼ï¼š\n" +"\n" +" %a - 最高權力用戶以外的用戶å¯ä½¿ç”¨çš„空間\n" +" %b - 檔案系統的總容é‡\n" +" %c - æª”æ¡ˆç³»çµ±å¯æŽ¥å—的最大檔案數目\n" +" %d - 檔案系統剩餘å¯ç”¨çš„æœ€å¤§æª”案數目\n" +" %f - 檔案系統的剩餘空間\n" + +#: src/stat.c:743 +#, fuzzy +msgid "" +" %i File System id in hex\n" +" %l Maximum length of filenames\n" +" %n File name\n" +" %s Optimal transfer block size\n" +" %T Type in human readable form\n" +" %t Type in hex\n" +msgstr "" +" %i - 以å六進ä½è¡¨ç¤ºçš„æª”案系統識別碼\n" +" %l - 坿ޥå—的檔案å稱最大長度\n" +" %n - 檔案å稱\n" +" %s - æ¬ç§»è³‡æ–™æ™‚æœ€ç†æƒ³çš„倿®µå¤§å°\n" +" %T - 以容易ç†è§£çš„æ–¹å¼è¡¨ç¤ºçš„æª”案系統類型\n" +" %t - 以å六進ä½è¡¨ç¤ºçš„æª”案系統類型\n" + +#: src/stty.c:498 +#, c-format +msgid "" +"Usage: %s [-F DEVICE] [--file=DEVICE] [SETTING]...\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-a|--all]\n" +" or: %s [-F DEVICE] [--file=DEVICE] [-g|--save]\n" +msgstr "" + +#: src/stty.c:504 +msgid "" +"Print or change terminal characteristics.\n" +"\n" +" -a, --all print all current settings in human-readable form\n" +" -g, --save print all current settings in a stty-readable form\n" +" -F, --file=DEVICE open and use the specified DEVICE instead of stdin\n" +msgstr "" + +#: src/stty.c:513 +msgid "" +"\n" +"Optional - before SETTING indicates negation. An * marks non-POSIX\n" +"settings. The underlying system defines which settings are available.\n" +msgstr "" + +#: src/stty.c:518 +msgid "" +"\n" +"Special characters:\n" +" * dsusp CHAR CHAR will send a terminal stop signal once input flushed\n" +" eof CHAR CHAR will send an end of file (terminate the input)\n" +" eol CHAR CHAR will end the line\n" +msgstr "" + +#: src/stty.c:525 +msgid "" +" * eol2 CHAR alternate CHAR for ending the line\n" +" erase CHAR CHAR will erase the last character typed\n" +" intr CHAR CHAR will send an interrupt signal\n" +" kill CHAR CHAR will erase the current line\n" +msgstr "" + +#: src/stty.c:531 +msgid "" +" * lnext CHAR CHAR will enter the next character quoted\n" +" quit CHAR CHAR will send a quit signal\n" +" * rprnt CHAR CHAR will redraw the current line\n" +" start CHAR CHAR will restart the output after stopping it\n" +msgstr "" + +#: src/stty.c:537 +msgid "" +" stop CHAR CHAR will stop the output\n" +" susp CHAR CHAR will send a terminal stop signal\n" +" * swtch CHAR CHAR will switch to a different shell layer\n" +" * werase CHAR CHAR will erase the last word typed\n" +msgstr "" + +#: src/stty.c:543 +msgid "" +"\n" +"Special settings:\n" +" N set the input and output speeds to N bauds\n" +" * cols N tell the kernel that the terminal has N columns\n" +" * columns N same as cols N\n" +msgstr "" + +#: src/stty.c:550 +msgid "" +" ispeed N set the input speed to N\n" +" * line N use line discipline N\n" +" min N with -icanon, set N characters minimum for a completed " +"read\n" +" ospeed N set the output speed to N\n" +msgstr "" + +#: src/stty.c:556 +msgid "" +" * rows N tell the kernel that the terminal has N rows\n" +" * size print the number of rows and columns according to the " +"kernel\n" +" speed print the terminal speed\n" +" time N with -icanon, set read timeout of N tenths of a second\n" +msgstr "" + +#: src/stty.c:562 +msgid "" +"\n" +"Control settings:\n" +" [-]clocal disable modem control signals\n" +" [-]cread allow input to be received\n" +" * [-]crtscts enable RTS/CTS handshaking\n" +" csN set character size to N bits, N in [5..8]\n" +msgstr "" + +#: src/stty.c:570 +msgid "" +" [-]cstopb use two stop bits per character (one with `-')\n" +" [-]hup send a hangup signal when the last process closes the tty\n" +" [-]hupcl same as [-]hup\n" +" [-]parenb generate parity bit in output and expect parity bit in " +"input\n" +" [-]parodd set odd parity (even with `-')\n" +msgstr "" + +#: src/stty.c:577 +msgid "" +"\n" +"Input settings:\n" +" [-]brkint breaks cause an interrupt signal\n" +" [-]icrnl translate carriage return to newline\n" +" [-]ignbrk ignore break characters\n" +" [-]igncr ignore carriage return\n" +msgstr "" + +#: src/stty.c:585 +msgid "" +" [-]ignpar ignore characters with parity errors\n" +" * [-]imaxbel beep and do not flush a full input buffer on a character\n" +" [-]inlcr translate newline to carriage return\n" +" [-]inpck enable input parity checking\n" +" [-]istrip clear high (8th) bit of input characters\n" +msgstr "" + +#: src/stty.c:592 +msgid "" +" * [-]iuclc translate uppercase characters to lowercase\n" +" * [-]ixany let any character restart output, not only start character\n" +" [-]ixoff enable sending of start/stop characters\n" +" [-]ixon enable XON/XOFF flow control\n" +" [-]parmrk mark parity errors (with a 255-0-character sequence)\n" +" [-]tandem same as [-]ixoff\n" +msgstr "" + +#: src/stty.c:600 +msgid "" +"\n" +"Output settings:\n" +" * bsN backspace delay style, N in [0..1]\n" +" * crN carriage return delay style, N in [0..3]\n" +" * ffN form feed delay style, N in [0..1]\n" +" * nlN newline delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:608 +msgid "" +" * [-]ocrnl translate carriage return to newline\n" +" * [-]ofdel use delete characters for fill instead of null characters\n" +" * [-]ofill use fill (padding) characters instead of timing for delays\n" +" * [-]olcuc translate lowercase characters to uppercase\n" +" * [-]onlcr translate newline to carriage return-newline\n" +" * [-]onlret newline performs a carriage return\n" +msgstr "" + +#: src/stty.c:616 +msgid "" +" * [-]onocr do not print carriage returns in the first column\n" +" [-]opost postprocess output\n" +" * tabN horizontal tab delay style, N in [0..3]\n" +" * tabs same as tab0\n" +" * -tabs same as tab3\n" +" * vtN vertical tab delay style, N in [0..1]\n" +msgstr "" + +#: src/stty.c:624 +msgid "" +"\n" +"Local settings:\n" +" [-]crterase echo erase characters as backspace-space-backspace\n" +" * crtkill kill all line by obeying the echoprt and echoe settings\n" +" * -crtkill kill all line by obeying the echoctl and echok settings\n" +msgstr "" + +#: src/stty.c:631 +msgid "" +" * [-]ctlecho echo control characters in hat notation (`^c')\n" +" [-]echo echo input characters\n" +" * [-]echoctl same as [-]ctlecho\n" +" [-]echoe same as [-]crterase\n" +" [-]echok echo a newline after a kill character\n" +msgstr "" + +#: src/stty.c:638 +msgid "" +" * [-]echoke same as [-]crtkill\n" +" [-]echonl echo newline even if not echoing other characters\n" +" * [-]echoprt echo erased characters backward, between `\\' and '/'\n" +" [-]icanon enable erase, kill, werase, and rprnt special characters\n" +" [-]iexten enable non-POSIX special characters\n" +msgstr "" + +#: src/stty.c:645 +msgid "" +" [-]isig enable interrupt, quit, and suspend special characters\n" +" [-]noflsh disable flushing after interrupt and quit special " +"characters\n" +" * [-]prterase same as [-]echoprt\n" +" * [-]tostop stop background jobs that try to write to the terminal\n" +" * [-]xcase with icanon, escape with `\\' for uppercase characters\n" +msgstr "" + +#: src/stty.c:652 +msgid "" +"\n" +"Combination settings:\n" +" * [-]LCASE same as [-]lcase\n" +" cbreak same as -icanon\n" +" -cbreak same as icanon\n" +msgstr "" + +#: src/stty.c:659 +msgid "" +" cooked same as brkint ignpar istrip icrnl ixon opost isig\n" +" icanon, eof and eol characters to their default values\n" +" -cooked same as raw\n" +" crt same as echoe echoctl echoke\n" +msgstr "" + +#: src/stty.c:665 +msgid "" +" dec same as echoe echoctl echoke -ixany intr ^c erase 0177\n" +" kill ^u\n" +" * [-]decctlq same as [-]ixany\n" +" ek erase and kill characters to their default values\n" +" evenp same as parenb -parodd cs7\n" +msgstr "" + +#: src/stty.c:672 +msgid "" +" -evenp same as -parenb cs8\n" +" * [-]lcase same as xcase iuclc olcuc\n" +" litout same as -parenb -istrip -opost cs8\n" +" -litout same as parenb istrip opost cs7\n" +" nl same as -icrnl -onlcr\n" +" -nl same as icrnl -inlcr -igncr onlcr -ocrnl -onlret\n" +msgstr "" + +#: src/stty.c:680 +msgid "" +" oddp same as parenb parodd cs7\n" +" -oddp same as -parenb cs8\n" +" [-]parity same as [-]evenp\n" +" pass8 same as -parenb -istrip cs8\n" +" -pass8 same as parenb istrip cs7\n" +msgstr "" + +#: src/stty.c:687 +msgid "" +" raw same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip\n" +" -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany\n" +" -imaxbel -opost -isig -icanon -xcase min 1 time 0\n" +" -raw same as cooked\n" +msgstr "" + +#: src/stty.c:693 +msgid "" +" sane same as cread -ignbrk brkint -inlcr -igncr icrnl\n" +" -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr\n" +" -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n" +" isig icanon iexten echo echoe echok -echonl -noflsh\n" +" -xcase -tostop -echoprt echoctl echoke, all special\n" +" characters to their default values.\n" +msgstr "" + +#: src/stty.c:701 +msgid "" +"\n" +"Handle the tty line connected to standard input. Without arguments,\n" +"prints baud rate, line discipline, and deviations from stty sane. In\n" +"settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n" +"127; special values ^- or undef used to disable special characters.\n" +msgstr "" + +#: src/stty.c:787 +#, fuzzy +msgid "only one device may be specified" +msgstr "åªèƒ½æŒ‡å®šä¸€å€‹å¼•數" + +#: src/stty.c:882 +#, fuzzy +msgid "" +"the options for verbose and stty-readable output styles are\n" +"mutually exclusive" +msgstr "ä¸èƒ½åŒæ™‚使用 --string åŠ --check é¸é …" + +#: src/stty.c:887 +msgid "when specifying an output style, modes may not be set" +msgstr "" + +#: src/stty.c:903 +#, c-format +msgid "%s: couldn't reset non-blocking mode" +msgstr "" + +#: src/stty.c:957 src/stty.c:1064 +#, fuzzy, c-format +msgid "invalid argument `%s'" +msgstr "%2$s的引數%1$s無效" + +#: src/stty.c:968 src/stty.c:985 src/stty.c:997 src/stty.c:1010 +#: src/stty.c:1022 src/stty.c:1041 +#, fuzzy, c-format +msgid "missing argument to `%s'" +msgstr "%2$s的引數%1$s䏿˜Žç¢º" + +#: src/stty.c:1117 +#, c-format +msgid "%s: unable to perform all requested operations" +msgstr "" + +#: src/stty.c:1122 +msgid "new_mode: mode\n" +msgstr "" + +#: src/stty.c:1462 +#, c-format +msgid "%s: no size information for this device" +msgstr "" + +#: src/stty.c:1944 +#, fuzzy, c-format +msgid "invalid integer argument `%s'" +msgstr "無效的行號增加值:‘%s’" + +#: src/su.c:289 +msgid "Password:" +msgstr "" + +#: src/su.c:292 +#, fuzzy +msgid "getpass: cannot open /dev/tty" +msgstr "無法開啟目錄%s" + +#: src/su.c:350 +#, fuzzy +msgid "cannot set groups" +msgstr "ä¸å¯åŒæ™‚çœç•¥ä½¿ç”¨è€…和所屬群組" + +#: src/su.c:354 +#, fuzzy +msgid "cannot set group id" +msgstr "ä¸å¯åŒæ™‚çœç•¥ä½¿ç”¨è€…和所屬群組" + +#: src/su.c:356 +#, fuzzy +msgid "cannot set user id" +msgstr "ä¸å¯åŒæ™‚çœç•¥ä½¿ç”¨è€…和所屬群組" + +#: src/su.c:437 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [-] [USER [ARG]...]\n" +msgstr "用法:%s [é¸é …]... [檔案]...\n" + +#: src/su.c:438 +msgid "" +"Change the effective user id and group id to that of USER.\n" +"\n" +" -, -l, --login make the shell a login shell\n" +" -c, --commmand=COMMAND pass a single COMMAND to the shell with -c\n" +" -f, --fast pass -f to the shell (for csh or tcsh)\n" +" -m, --preserve-environment do not reset environment variables\n" +" -p same as -m\n" +" -s, --shell=SHELL run SHELL if /etc/shells allows it\n" +msgstr "" + +#: src/su.c:450 +msgid "" +"\n" +"A mere - implies -l. If USER not given, assume root.\n" +msgstr "" + +#: src/su.c:529 +#, c-format +msgid "user %s does not exist" +msgstr "" + +#: src/su.c:552 +msgid "incorrect password" +msgstr "" + +#: src/su.c:569 +#, c-format +msgid "using restricted shell %s" +msgstr "" + +#: src/su.c:580 +#, fuzzy, c-format +msgid "warning: cannot change directory to %s" +msgstr "無法建立目錄%s" + +#: src/sum.c:36 +msgid "Kayvan Aghaiepour and David MacKenzie" +msgstr "Kayvan Aghaiepour åŠ David MacKenzie" + +#: src/sum.c:64 +msgid "" +"Print checksum and block counts for each FILE.\n" +"\n" +" -r defeat -s, use BSD sum algorithm, use 1K blocks\n" +" -s, --sysv use System V sum algorithm, use 512 bytes blocks\n" +msgstr "" +"å°å‡ºæ¯å€‹ <檔案> 的總和檢查值åŠå€å¡Šæ•¸ç›®ã€‚\n" +"\n" +" -r 令 -s é¸é …無效,使用 BSD 的演算法,用 1K çš„å€å¡Šå¤§å°\n" +" -s, --sysv 使用 System V 的演算法,用 512 個ä½å…ƒçµ„çš„å€å¡Šå¤§å°\n" + +#: src/sync.c:45 +msgid "" +"Force changed blocks to disk, update the super block.\n" +"\n" +msgstr "" +"強迫將已更改的資料寫入ç£ç¢Ÿï¼Œä¸¦æ›´æ–° super block。\n" +"\n" + +#: src/sync.c:70 src/tty.c:112 +#, fuzzy +msgid "ignoring all arguments" +msgstr "引數éŽå¤š" + +#: src/sys2.h:492 +msgid " --help display this help and exit\n" +msgstr " --help 顯示此求助說明並離開\n" + +#: src/sys2.h:494 +msgid " --version output version information and exit\n" +msgstr " --version 顯示版本資訊並離開\n" + +#: src/tac.c:54 +msgid "Jay Lepreau and David MacKenzie" +msgstr "Jay Lepreau åŠ David MacKenzie" + +#: src/tac.c:131 +msgid "" +"Write each FILE to standard output, last line first.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"å°‡æ¯å€‹ <檔案> 由最後一行開始在標準輸出顯示出來。\n" +"如果沒有指定 <檔案> 或 <檔案> 是 -,則由標準輸入讀å–資料。\n" +"\n" + +#: src/tac.c:139 +msgid "" +" -b, --before attach the separator before instead of after\n" +" -r, --regex interpret the separator as a regular expression\n" +" -s, --separator=STRING use STRING as the separator instead of newline\n" +msgstr "" +" -b, --before 將分隔字串加在å‰é¢è€Œä¸æ˜¯å¾Œé¢\n" +" -r, --regex 將分隔字串ç†è§£ç‚ºæ­£è¦è¡¨ç¤ºå¼\n" +" -s, --separator=字串 用 <字串> ä½œç‚ºåˆ†éš”å­—ä¸²ï¼Œè€Œä¸æ˜¯ newline å­—å…ƒ\n" + +#: src/tac.c:453 src/tac.c:592 +msgid "stdin: read error" +msgstr "標準輸入:讀å–資料時發生錯誤" + +#: src/tac.c:638 +msgid "separator cannot be empty" +msgstr "分隔字串ä¸å¯ä»¥æ˜¯ç©ºçš„" + +#: src/tail.c:49 +#, fuzzy +msgid "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" +msgstr "David Ihnatã€David MacKenzie åŠ Jim Meyering" + +#: src/tail.c:238 +#, c-format +msgid "" +"Print the last %d lines of each FILE to standard output.\n" +"With more than one FILE, precede each with a header giving the file name.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"在標準輸出顯示æ¯å€‹ <檔案> 的最後 %d 行。\n" +"當指定多於一個 <檔案> 時,會先å°å‡ºè¡¨ç¤ºæ¯å€‹æª”案å稱的標頭。\n" +"如果沒有指定 <檔案> 或 <檔案> 是 -,則由標準輸入讀å–資料。\n" +"\n" + +#: src/tail.c:247 +msgid "" +" --retry keep trying to open a file even if it is\n" +" inaccessible when tail starts or if it becomes\n" +" inaccessible later -- useful only with -f\n" +" -c, --bytes=N output the last N bytes\n" +msgstr "" +" --retry å³ä½¿åŸ·è¡Œ tail æ™‚æˆ–ä¸€æ®µæ™‚é–“å¾Œç„¡æ³•å­˜å–æŸæª”案,ä»ç„¶\n" +" 䏿–·å˜—試開啟該檔案 ─ åªåœ¨é…åˆ -f é¸é …時有用\n" +" -c, --bytes=N 輸出最後的 N 個ä½å…ƒçµ„\n" + +#: src/tail.c:253 +msgid "" +" -f, --follow[={name|descriptor}]\n" +" output appended data as the file grows;\n" +" -f, --follow, and --follow=descriptor are\n" +" equivalent\n" +" -F same as --follow=name --retry\n" +msgstr "" +" -f, --follow[={name|descriptor}]\n" +" ç•¶æª”æ¡ˆä¸æ–·è®Šå¤§æ™‚顯示加上的資料;\n" +" -fã€--follow åŠ --follow=descriptor 是相åŒçš„\n" +" -F 等於 --follow=name --retry\n" + +# --max-consecutive-size-changes is undocumented -- maddog +#: src/tail.c:260 +#, c-format +msgid "" +" -n, --lines=N output the last N lines, instead of the last %d\n" +" --max-unchanged-stats=N\n" +" with --follow=name, reopen a FILE which has not\n" +" changed size after N (default %d) iterations\n" +" to see if it has been unlinked or renamed\n" +" (this is the usual case of rotated log files)\n" +msgstr "" +" -n, --lines=N 顯示最後 N è¡Œè€Œä¸æ˜¯ %d 行\n" +" --max-unchanged-stats=N\n" +" é…åˆ --follow=name 時,如果檢查 <檔案> N 次\n" +" (é è¨­æ˜¯ %d 次)後檔案大å°ä»æ²’有改變,則會\n" +" 釿–°é–‹å•Ÿ <檔案> 來檢查檔案是å¦å·²è¢«åˆªé™¤æˆ–改å\n" +" (此情æ³åœ¨å‚™ä»½ç´€éŒ„檔時會較常見)\n" +" --max-consecutive-size-changes=N\n" +" é…åˆ --follow=name 時,如果 <檔案> 連續 N 次\n" +" 改變大å°ï¼Œå‰‡èªå®šæ­¤æª”案已經被改å。\n" + +#: src/tail.c:271 +#, fuzzy +msgid "" +" --pid=PID with -f, terminate after process ID, PID dies\n" +" -q, --quiet, --silent never output headers giving file names\n" +" -s, --sleep-interval=S with -f, sleep for approximately S seconds\n" +" (default 1.0) between iterations.\n" +" -v, --verbose always output headers giving file names\n" +msgstr "" +" --pid=PID é…åˆ -f é¸é …時,tail æœƒåœ¨æŒ‡å®šçš„ç¨‹åº (識別碼\n" +" 為 PID) 退出後中止\n" +" -q, --quiet, --silent ä¸é¡¯ç¤ºä»»ä½•標明檔案å稱的標頭\n" +" -s, --sleep-interval=S é…åˆ -f é¸é …時,æ¯å…©æ¬¡æª¢æŸ¥ç›¸éš”ç´„ S ç§’\n" +" (é è¨­ç‚º 1 ç§’)\n" +" -v, --verbose 一定顯示任何標明檔案å稱的標頭\n" + +#: src/tail.c:280 +msgid "" +"\n" +"If the first character of N (the number of bytes or lines) is a `+',\n" +"print beginning with the Nth item from the start of each file, otherwise,\n" +"print the last N items in the file. N may have a multiplier suffix:\n" +"b for 512, k for 1024, m for 1048576 (1 Meg).\n" +"\n" +msgstr "" +"\n" +"如果 N (行數或ä½å…ƒçµ„數目) 的第一個字元是‘+’,會由æ¯å€‹æª”案的第 N 行開始\n" +"顯示,å¦å‰‡æœƒé¡¯ç¤ºæ¯å€‹æª”案的最後 N 行。N å¯ä»¥åŠ ä¸Šå–®ä½ï¼šb 是 512,k 是 1024,\n" +"m 則是 1048576 (1M)。\n" +"\n" + +#: src/tail.c:288 +msgid "" +"With --follow (-f), tail defaults to following the file descriptor, which\n" +"means that even if a tail'ed file is renamed, tail will continue to track\n" +"its end. " +msgstr "" +"è‹¥é…åˆ --follow (-f) é¸é …,tail é è¨­æœƒæª¢æŸ¥æª”案æè¿°å­ (file descriptor)ï¼›\n" +"峿˜¯èªªï¼Œå³ä½¿è¦ tail 的檔案已經改å,tail 仿œƒç¹¼çºŒæª¢æŸ¥è©²æª”案的末端。" + +#: src/tail.c:293 +msgid "" +"This default behavior is not desirable when you really want to\n" +"track the actual name of the file, not the file descriptor (e.g., log\n" +"rotation). Use --follow=name in that case. That causes tail to track the\n" +"named file by reopening it periodically to see if it has been removed and\n" +"recreated by some other program.\n" +msgstr "" +"如果\n" +"ç¢ºå¯¦è¦æª¢æŸ¥æª”案åç¨±è€Œä¸æ˜¯æª”案æè¿°å­æ™‚ (例如備份紀錄檔時),這種é è¨­çš„處ç†\n" +"æ–¹å¼ä¸¦ä¸é©ç”¨ã€‚在這情æ³ä¸‹æ‡‰ä½¿ç”¨ --follow=name。這樣會令 tail 檢查指定å稱\n" +"的檔案,方法是é‡è¦†åœ°é–‹å•Ÿæª”案,看看它是å¦å·²è¢«ç§»é™¤å’Œå…¶å®ƒç¨‹å¼æœƒå¦å†ç”¢ç”Ÿè©²\n" +"檔案。\n" + +#: src/tail.c:331 +#, c-format +msgid "closing %s (fd=%d)" +msgstr "正在關閉 %s (fd=%d)" + +#: src/tail.c:391 +#, fuzzy, c-format +msgid "%s: cannot seek to offset %s" +msgstr "%s:無法æœå°‹è‡³ä½ç½® %s%s" + +#: src/tail.c:395 +#, fuzzy, c-format +msgid "%s: cannot seek to relative offset %s" +msgstr "%s:無法æœå°‹è‡³ç›¸å°ä½ç½® %s%s" + +#: src/tail.c:400 +#, fuzzy, c-format +msgid "%s: cannot seek to end-relative offset %s" +msgstr "%s:無法æœå°‹è‡³æœ«ç«¯ç›¸å°ä½ç½® %s%s" + +#: src/tail.c:818 +#, c-format +msgid "`%s' has become inaccessible" +msgstr "已無法存å–‘%s’" + +#: src/tail.c:835 +#, c-format +msgid "`%s' has been replaced with an untailable file; giving up on this name" +msgstr "%s:被一個無法 tail 的檔案å–ä»£ï¼›ä¸æœƒå†æª¢æŸ¥æ­¤æª”案å稱" + +#: src/tail.c:856 +#, c-format +msgid "`%s' has become accessible" +msgstr "已經å¯ä»¥å­˜å–‘%s’" + +#: src/tail.c:864 +#, c-format +msgid "`%s' has appeared; following end of new file" +msgstr "‘%s’已出ç¾ï¼›æ­£åœ¨æª¢æŸ¥æ–°æª”案的末端" + +#: src/tail.c:875 +#, c-format +msgid "`%s' has been replaced; following end of new file" +msgstr "‘%s’已被å–代;正在檢查新檔案的末端" + +#: src/tail.c:1000 +#, c-format +msgid "%s: file truncated" +msgstr "%s:檔案被截斷了" + +#: src/tail.c:1020 +msgid "no files remaining" +msgstr "已沒有任何剩餘的檔案" + +#: src/tail.c:1236 +#, c-format +msgid "%s: cannot follow end of this type of file; giving up on this name" +msgstr "%sï¼šç„¡æ³•æª¢æŸ¥æ­¤é¡žæª”æ¡ˆçš„æœ«ç«¯ï¼›ä¸æœƒå†æª¢æŸ¥æ­¤æª”案å稱" + +#: src/tail.c:1356 +#, c-format +msgid "%c: invalid suffix character in obsolescent option" +msgstr "%cï¼šåœ¨å·²éŽæ™‚çš„é¸é …䏭嫿œ‰ç„¡æ•ˆçš„後置字元" + +#: src/tail.c:1405 +#, c-format +msgid "" +"too many arguments; When using tail's obsolescent option syntax (%s)\n" +"there may be no more than one file argument. Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"åƒæ•¸éŽå¤šï¼›ç•¶ä½¿ç”¨å·²éŽæ™‚çš„ tail é¸é …語法 (%s) 時,ä¸å¯æŒ‡å®šå¤šæ–¼ä¸€å€‹çš„æª”案\n" +"åƒæ•¸ã€‚請使用åŒç­‰çš„ -n 或 -c é¸é …。" + +#: src/tail.c:1414 +#, c-format +msgid "" +"Warning: it is not portable to use two or more file arguments with\n" +"tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n" +"option instead." +msgstr "" +"警告:將兩個或以上的檔案é…åˆå·²éŽæ™‚çš„ tail é¸é …語法 (%s) 䏿˜¯åœ¨æ‰€æœ‰ç³»çµ±\n" +"都通用的。請使用åŒç­‰çš„ -n 或 -c é¸é …。" + +#: src/tail.c:1423 +#, c-format +msgid "`%s' option is obsolete; use `%s-%c %.*s'" +msgstr "‘%s’é¸é …å·²éŽæ™‚;請使用‘%s-%c %.*s’" + +#: src/tail.c:1484 +#, c-format +msgid "%s is larger than the maximum file size on this system" +msgstr "%s 大於此系統能接å—的最大檔案大å°" + +#: src/tail.c:1510 +#, c-format +msgid "%s: invalid maximum number of unchanged stats between opens" +msgstr "%sï¼šé–‹å•Ÿæª”æ¡ˆå‰ stat 資料沒有改變的最大次數無效" + +#: src/tail.c:1522 +#, c-format +msgid "%s: invalid maximum number of consecutive size changes" +msgstr "%s:檔案連續改變大å°çš„æœ€å¤§æ¬¡æ•¸ç„¡æ•ˆ" + +#: src/tail.c:1534 +#, c-format +msgid "%s: invalid PID" +msgstr "%s:無效的 PID" + +#: src/tail.c:1549 +#, c-format +msgid "%s: invalid number of seconds" +msgstr "%s:無效的秒數" + +#: src/tail.c:1568 +msgid "warning: --retry is useful only when following by name" +msgstr "è­¦å‘Šï¼šåªæœ‰æª¢æŸ¥æª”案å稱時 --retry é¸é …æ‰æœƒæœ‰æ•ˆ" + +#: src/tail.c:1572 +msgid "warning: PID ignored; --pid=PID is useful only when following" +msgstr "警告:會忽略 PIDï¼›--pid=PID é¸é …åªåœ¨ä¸æ–·æª¢æŸ¥æª”æ¡ˆæ™‚æ‰æœƒæœ‰æ•ˆ" + +#: src/tail.c:1575 +msgid "warning: --pid=PID is not supported on this system" +msgstr "è­¦å‘Šï¼šæ­¤ç³»çµ±ä¸æ”¯æ´ --pid=PID é¸é …" + +#: src/tee.c:33 +#, fuzzy +msgid "Mike Parker, Richard M. Stallman, and David MacKenzie" +msgstr "Richard Stallman åŠ David MacKenzie" + +#: src/tee.c:64 +msgid "" +"Copy standard input to each FILE, and also to standard output.\n" +"\n" +" -a, --append append to the given FILEs, do not overwrite\n" +" -i, --ignore-interrupts ignore interrupt signals\n" +msgstr "" + +#: src/test.c:216 +msgid "argument expected\n" +msgstr "" + +#: src/test.c:224 +#, c-format +msgid "integer expression expected %s\n" +msgstr "" + +#: src/test.c:342 +msgid "')' expected\n" +msgstr "" + +#: src/test.c:345 +#, c-format +msgid "')' expected, found %s\n" +msgstr "" + +#: src/test.c:361 src/test.c:894 +#, c-format +msgid "%s: unary operator expected\n" +msgstr "" + +#: src/test.c:389 src/test.c:920 +#, c-format +msgid "%s: binary operator expected\n" +msgstr "" + +#: src/test.c:424 +msgid "before -lt" +msgstr "" + +#: src/test.c:432 +msgid "after -lt" +msgstr "" + +#: src/test.c:446 +msgid "before -le" +msgstr "" + +#: src/test.c:453 +msgid "after -le" +msgstr "" + +#: src/test.c:469 +msgid "before -gt" +msgstr "" + +#: src/test.c:476 +msgid "after -gt" +msgstr "" + +#: src/test.c:490 +msgid "before -ge" +msgstr "" + +#: src/test.c:497 +msgid "after -ge" +msgstr "" + +#: src/test.c:512 +msgid "-nt does not accept -l\n" +msgstr "" + +#: src/test.c:526 +msgid "before -ne" +msgstr "" + +#: src/test.c:533 +msgid "after -ne" +msgstr "" + +#: src/test.c:549 +msgid "before -eq" +msgstr "" + +#: src/test.c:556 +msgid "after -eq" +msgstr "" + +#: src/test.c:567 +msgid "-ef does not accept -l\n" +msgstr "" + +#: src/test.c:586 +msgid "-ot does not accept -l\n" +msgstr "" + +#: src/test.c:593 +#, fuzzy +msgid "unknown binary operator" +msgstr "䏿˜Žçš„系統錯誤" + +#: src/test.c:781 +msgid "after -t" +msgstr "" + +#: src/test.c:979 +#, fuzzy, c-format +msgid "" +"Usage: %s EXPRESSION\n" +" or: [ EXPRESSION ]\n" +" or: %s OPTION\n" +msgstr "" +"用法:%s [檔案]...\n" +" 或:%s [é¸é …]\n" + +#: src/test.c:985 +msgid "" +"Exit with the status determined by EXPRESSION.\n" +"\n" +msgstr "" + +#: src/test.c:991 +msgid "" +"\n" +"EXPRESSION is true or false and sets exit status. It is one of:\n" +msgstr "" + +#: src/test.c:995 +msgid "" +"\n" +" ( EXPRESSION ) EXPRESSION is true\n" +" ! EXPRESSION EXPRESSION is false\n" +" EXPRESSION1 -a EXPRESSION2 both EXPRESSION1 and EXPRESSION2 are true\n" +" EXPRESSION1 -o EXPRESSION2 either EXPRESSION1 or EXPRESSION2 is true\n" +msgstr "" + +#: src/test.c:1002 +msgid "" +"\n" +" [-n] STRING the length of STRING is nonzero\n" +" -z STRING the length of STRING is zero\n" +" STRING1 = STRING2 the strings are equal\n" +" STRING1 != STRING2 the strings are not equal\n" +msgstr "" + +#: src/test.c:1009 +msgid "" +"\n" +" INTEGER1 -eq INTEGER2 INTEGER1 is equal to INTEGER2\n" +" INTEGER1 -ge INTEGER2 INTEGER1 is greater than or equal to INTEGER2\n" +" INTEGER1 -gt INTEGER2 INTEGER1 is greater than INTEGER2\n" +" INTEGER1 -le INTEGER2 INTEGER1 is less than or equal to INTEGER2\n" +" INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n" +" INTEGER1 -ne INTEGER2 INTEGER1 is not equal to INTEGER2\n" +msgstr "" + +#: src/test.c:1018 +msgid "" +"\n" +" FILE1 -ef FILE2 FILE1 and FILE2 have the same device and inode numbers\n" +" FILE1 -nt FILE2 FILE1 is newer (modification date) than FILE2\n" +" FILE1 -ot FILE2 FILE1 is older than FILE2\n" +msgstr "" + +#: src/test.c:1024 +msgid "" +"\n" +" -b FILE FILE exists and is block special\n" +" -c FILE FILE exists and is character special\n" +" -d FILE FILE exists and is a directory\n" +" -e FILE FILE exists\n" +msgstr "" + +#: src/test.c:1031 +msgid "" +" -f FILE FILE exists and is a regular file\n" +" -g FILE FILE exists and is set-group-ID\n" +" -h FILE FILE exists and is a symbolic link (same as -L)\n" +" -G FILE FILE exists and is owned by the effective group ID\n" +" -k FILE FILE exists and has its sticky bit set\n" +msgstr "" + +#: src/test.c:1038 +msgid "" +" -L FILE FILE exists and is a symbolic link (same as -h)\n" +" -O FILE FILE exists and is owned by the effective user ID\n" +" -p FILE FILE exists and is a named pipe\n" +" -r FILE FILE exists and is readable\n" +" -s FILE FILE exists and has a size greater than zero\n" +msgstr "" + +#: src/test.c:1045 +msgid "" +" -S FILE FILE exists and is a socket\n" +" -t [FD] file descriptor FD (stdout by default) is opened on a " +"terminal\n" +" -u FILE FILE exists and its set-user-ID bit is set\n" +" -w FILE FILE exists and is writable\n" +" -x FILE FILE exists and is executable\n" +msgstr "" + +#: src/test.c:1052 +msgid "" +"\n" +"Beware that parentheses need to be escaped (e.g., by backslashes) for " +"shells.\n" +"INTEGER may also be -l STRING, which evaluates to the length of STRING.\n" +msgstr "" + +#: src/test.c:1067 +msgid "FIXME: ksb and mjb" +msgstr "" + +#: src/test.c:1111 +msgid "missing `]'\n" +msgstr "" + +#: src/test.c:1125 +#, fuzzy +msgid "too many arguments\n" +msgstr "引數éŽå¤š" + +#: src/touch.c:39 +#, fuzzy +msgid "" +"Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +msgstr "Paul Rubin åŠ David MacKenzie" + +#: src/touch.c:164 src/touch.c:179 +#, fuzzy, c-format +msgid "creating %s" +msgstr "正在建立檔案‘%s’\n" + +#: src/touch.c:222 +#, fuzzy, c-format +msgid "cannot touch %s" +msgstr "無法å°â€˜%s’執行輸出入控制 (ioctl)" + +#: src/touch.c:228 +#, c-format +msgid "setting times of %s" +msgstr "正在設定%s的時間" + +#: src/touch.c:245 +msgid "" +"Update the access and modification times of each FILE to the current time.\n" +"\n" +msgstr "å°‡æ¯å€‹ <檔案> 的存å–åŠä¿®æ”¹æ™‚間都更新為目å‰çš„æ™‚間。\n" + +#: src/touch.c:252 +msgid "" +" -a change only the access time\n" +" -c, --no-create do not create any files\n" +" -d, --date=STRING parse STRING and use it instead of current time\n" +" -f (ignored)\n" +" -m change only the modification time\n" +msgstr "" +" -a åªæ›´æ”¹å­˜å–時間\n" +" -c, --no-create ä¸å»ºç«‹ä»»ä½•檔案\n" +" -d, --date=字串 使用 <字串> æ‰€è¡¨ç¤ºçš„æ™‚é–“è€Œä¸æ˜¯ç›®å‰çš„æ™‚é–“\n" +" -f (æ­¤é¸é …ä¸ä½œè™•ç†)\n" +" -m åªæ›´æ”¹ä¿®æ”¹æ™‚é–“\n" + +#: src/touch.c:259 +msgid "" +" -r, --reference=FILE use this file's times instead of current time\n" +" -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time\n" +" --time=WORD set time given by WORD: access atime use (same as -" +"a)\n" +" modify mtime (same as -m)\n" +msgstr "" +" -r, --reference=檔案 使用指定 <檔案> 的時間屬性而éžç›®å‰çš„æ™‚é–“\n" +" -t STAMP 使用 [[CC]YY]MMDDhhmm[.ss] æ ¼å¼çš„æ™‚間而éžç›®å‰çš„æ™‚" +"é–“\n" +" --time=WORD 使用 WORD 指定的時間:accessã€atimeã€use 都等於 -a\n" +" é¸é …的效果,而 modifyã€mtime 等於 -m é¸é …的效果\n" + +#: src/touch.c:267 +msgid "" +"\n" +"Note that the -d and -t options accept different time-date formats.\n" +msgstr "" +"\n" +"請注æ„,-d å’Œ -t é¸é …坿ޥå—ä¸åŒçš„æ™‚é–“/日期格å¼ã€‚\n" + +#: src/touch.c:311 src/touch.c:331 +#, fuzzy, c-format +msgid "invalid date format %s" +msgstr "%2$s的引數%1$s無效" + +#: src/touch.c:355 +#, fuzzy +msgid "cannot specify times from more than one source" +msgstr "ä¸èƒ½ç”¨è¶…éŽä¸€ç¨®æ–¹å¼é€²è¡Œåˆ†å‰²" + +#: src/touch.c:378 +#, c-format +msgid "" +"warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'" +msgstr "警告:‘touch %sâ€™å·²ç¶“éŽæ™‚;請使用‘touch -t %04d%02d%02d%02d%02d.%02d’" + +#: src/touch.c:399 +#, fuzzy +msgid "file arguments missing" +msgstr "引數éŽå°‘" + +#: src/tr.c:327 +#, c-format +msgid "Usage: %s [OPTION]... SET1 [SET2]\n" +msgstr "用法:%s [é¸é …]... SET1 [SET2]\n" + +#: src/tr.c:331 +msgid "" +"Translate, squeeze, and/or delete characters from standard input,\n" +"writing to standard output.\n" +"\n" +" -c, --complement first complement SET1\n" +" -d, --delete delete characters in SET1, do not translate\n" +" -s, --squeeze-repeats replace each input sequence of a repeated " +"character\n" +" that is listed in SET1 with a single occurrence\n" +" of that character\n" +" -t, --truncate-set1 first truncate SET1 to length of SET2\n" +msgstr "" +"從標準輸入讀å–資料,將字元置æ›ã€å£“縮ã€åˆªé™¤å¾Œï¼Œåœ¨æ¨™æº–è¼¸å‡ºé¡¯ç¤ºçµæžœã€‚\n" +"\n" +" -c, --complement 以所有ä¸å±¬æ–¼ SET1 的字元 (SET1 的餘集) å–代 SET1\n" +" -d, --delete 刪除所有 SET1 裡的字元,ä¸é€²è¡Œç½®æ›\n" +" -s, --squeeze-repeats å°æ–¼ä»»ä½•在 SET1 中列出的字元,如果該字元在輸入資" +"æ–™\n" +" 中連續é‡è¤‡å‡ºç¾ï¼Œå‰‡å°‡è©²æ®µå­—元刪除至åªå‰©ä¸€å€‹\n" +" -t, --truncate-set1 先將 SET1 的長度截至跟 SET2 一樣\n" + +#: src/tr.c:344 +msgid "" +"\n" +"SETs are specified as strings of characters. Most represent themselves.\n" +"Interpreted sequences are:\n" +"\n" +" \\NNN character with octal value NNN (1 to 3 octal digits)\n" +" \\\\ backslash\n" +" \\a audible BEL\n" +" \\b backspace\n" +" \\f form feed\n" +" \\n new line\n" +" \\r return\n" +" \\t horizontal tab\n" +msgstr "" +"\n" +"SET æ˜¯ä»¥å­—ä¸²æ–¹å¼æŒ‡å®šã€‚大部份字元都會直接處ç†ã€‚è¦è§£è­¯çš„åºåˆ—包括:\n" +"\n" +" \\NNN 八進使•¸å­— NNN (1 至 3 個ä½)所代表的字元\n" +" \\\\ åæ–œè™Ÿ\n" +" \\a éŸ¿è² (BEL)\n" +" \\b 倒退字元 (backspace)\n" +" \\f æ›é å­—å…ƒ (form feed)\n" +" \\n æ›è¡Œå­—å…ƒ (new line)\n" +" \\r 復ä½å­—å…ƒ (return)\n" +" \\t 水平定ä½å­—å…ƒ (tab)\n" + +#: src/tr.c:358 +msgid "" +" \\v vertical tab\n" +" CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n" +" [CHAR*] in SET2, copies of CHAR until length of SET1\n" +" [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n" +" [:alnum:] all letters and digits\n" +" [:alpha:] all letters\n" +" [:blank:] all horizontal whitespace\n" +" [:cntrl:] all control characters\n" +" [:digit:] all digits\n" +msgstr "" +" \\v 垂直定ä½å­—å…ƒ (vertical tab)\n" +" å­—å…ƒ1-å­—å…ƒ2 ç”± <å­—å…ƒ1> é–‹å§‹å‡åºæŽ’列至 <å­—å…ƒ2>\n" +" [å­—å…ƒ*] 在 SET2 裡é‡è¦†åŠ ä¸Š <å­—å…ƒ>ï¼Œç›´è‡³ç¬¦åˆ SET1 的長度\n" +" [å­—å…ƒ*é‡è¦†æ¬¡æ•¸] é‡è¦†æŒ‡å®š <å­—å…ƒ>,如果 <é‡è¦†æ¬¡æ•¸> 的第一個字元是 0 則表示\n" +" <é‡è¦†æ¬¡æ•¸> æ˜¯å…«é€²ä½æ•¸å­—\n" +" [:alnum:] æ‰€æœ‰è‹±æ–‡å­—åŠæ•¸å­—\n" +" [:alpha:] 所有英文字\n" +" [:blank:] 所有水平的空白字元\n" +" [:cntrl:] 所有控制字元\n" +" [:digit:] 所有數字\n" + +#: src/tr.c:369 +msgid "" +" [:graph:] all printable characters, not including space\n" +" [:lower:] all lower case letters\n" +" [:print:] all printable characters, including space\n" +" [:punct:] all punctuation characters\n" +" [:space:] all horizontal or vertical whitespace\n" +" [:upper:] all upper case letters\n" +" [:xdigit:] all hexadecimal digits\n" +" [=CHAR=] all characters which are equivalent to CHAR\n" +msgstr "" +" [:graph:] 所有å¯åˆ—å°çš„字元,ä¸åŒ…括空格\n" +" [:lower:] 所有å°å¯«è‹±æ–‡å­—æ¯\n" +" [:print:] 所有å¯åˆ—å°çš„字元,包括空格\n" +" [:punct:] 所有標點符號\n" +" [:space:] 所有水平或垂直的空白字元\n" +" [:upper:] 所有大寫英文字æ¯\n" +" [:xdigit:] 所有å六進使•¸å­—\n" +" [=CHAR=] 所有和 CHAR åŒç­‰çš„å­—å…ƒ\n" + +#: src/tr.c:379 +msgid "" +"\n" +"Translation occurs if -d is not given and both SET1 and SET2 appear.\n" +"-t may be used only when translating. SET2 is extended to length of\n" +"SET1 by repeating its last character as necessary. " +msgstr "" +"\n" +"ç½®æ›æ“作åªåœ¨æ²’有指定 -d é¸é …å’Œ SET1ã€SET2 åŒæ™‚存在的情æ³ä¸‹æœ‰æ•ˆã€‚\n" +"-t é¸é …åªèƒ½åœ¨ç½®æ›æ“ä½œæ™‚ä½¿ç”¨ã€‚æœ‰éœ€è¦æ™‚,SET2 會將它的最後一個字元\n" +"é‡è¦†ï¼Œç›´è‡³ SET2 的長度和 SET1 的一樣。" + +#: src/tr.c:385 +msgid "" +"Excess characters\n" +"of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to\n" +"expand in ascending order; used in SET2 while translating, they may\n" +"only be used in pairs to specify case conversion. " +msgstr "" +"SET2 中的多餘字元會被忽略。\n" +"åªæœ‰ [:lower:] åŠ [:upper:] å¯ä¿è­‰å±•開的字元以å‡åºæŽ’列;當在 SET2 中\n" +"ä½¿ç”¨ä½œç‚ºç½®æ›æ“作的字元時,它們åªèƒ½ä¸€èµ·ä½¿ç”¨ï¼Œè¡¨ç¤ºç½®æ›å¤§å°å¯«ã€‚" + +#: src/tr.c:391 +msgid "" +"-s uses SET1 if not\n" +"translating nor deleting; else squeezing uses SET2 and occurs after\n" +"translation or deletion.\n" +msgstr "" +"è‹¥ä¸æ˜¯\n" +"ç½®æ›æˆ–刪除字元,-s é¸é …åªæœƒä½¿ç”¨ SET1ï¼›å¦å¤–壓縮字元會使用 SET2,並在\n" +"ç½®æ›æˆ–刪除字元後æ‰é€²è¡Œã€‚\n" + +#: src/tr.c:557 +#, c-format +msgid "" +"warning: the ambiguous octal escape \\%c%c%c is being\n" +"\tinterpreted as the 2-byte sequence \\0%c%c, `%c'" +msgstr "" +"警告:æ„ç¾©ä¸æ˜Žç¢ºçš„八進使º¢å‡ºåºåˆ— \\%c%c%c 會\n" +"\tç†è§£ç‚ºå…©å€‹ä½å…ƒçµ„çš„åºåˆ— \\0%c%c,‘%c’" + +#: src/tr.c:566 +msgid "invalid backslash escape at end of string" +msgstr "å­—ä¸²æœ«ç«¯çš„åæ–œè™Ÿæº¢å‡ºåºåˆ—無效" + +#: src/tr.c:572 +#, c-format +msgid "invalid backslash escape `\\%c'" +msgstr "åæ–œè™Ÿæº¢å‡ºåºåˆ—‘\\%c’無效" + +#: src/tr.c:725 +#, c-format +msgid "range-endpoints of `%s-%s' are in reverse collating sequence order" +msgstr "‘%s-%s’範åœçš„端點和字元應有的排列次åºç›¸å" + +#: src/tr.c:906 +#, c-format +msgid "invalid repeat count `%s' in [c*n] construct" +msgstr "[c*n] çµæ§‹ä¸­çš„é‡è¦†æ¬¡æ•¸â€˜%s’無效" + +#: src/tr.c:999 +msgid "missing character class name `[::]'" +msgstr "無效的字元種類å稱‘[::]’" + +#: src/tr.c:1002 +msgid "missing equivalence class character `[==]'" +msgstr "缺少了等價字元種類的字元‘[==]’" + +#: src/tr.c:1025 +#, c-format +msgid "invalid character class `%s'" +msgstr "無效的字元種類‘%s’" + +#: src/tr.c:1050 +#, c-format +msgid "%s: equivalence class operand must be a single character" +msgstr "%s:等價字元種類中的é‹ç®—符必須是æ°å¥½ä¸€å€‹å­—å…ƒ" + +#: src/tr.c:1522 +msgid "the [c*] repeat construct may not appear in string1" +msgstr "é‡è¤‡çµæ§‹ [c*] ä¸èƒ½åœ¨å­—串 1 出ç¾" + +#: src/tr.c:1532 +msgid "only one [c*] repeat construct may appear in string2" +msgstr "é‡è¤‡çµæ§‹ [c*] åªèƒ½åœ¨å­—串 2 出ç¾ä¸€æ¬¡" + +#: src/tr.c:1540 +msgid "[=c=] expressions may not appear in string2 when translating" +msgstr "é€²è¡Œç½®æ›æ™‚,[=c=] 表示å¼ä¸èƒ½åœ¨å­—串 2 出ç¾" + +#: src/tr.c:1553 +msgid "when not truncating set1, string2 must be non-empty" +msgstr "è‹¥ä¸æˆªæ–·(消除) set1,字串 2 ä¸èƒ½æ˜¯ç©ºçš„" + +#: src/tr.c:1562 +msgid "" +"when translating with complemented character classes,\n" +"string2 must map all characters in the domain to one" +msgstr "" +"å–字元種類的餘集(complement)ä½œç½®æ›æ™‚,åªèƒ½å°‡æ‰€æœ‰å­—元映射\n" +"至一個字元,å³å­—串 2 åªå¯å«æœ‰ä¸€å€‹å­—å…ƒ" + +#: src/tr.c:1569 +msgid "" +"when translating, the only character classes that may appear in\n" +"string2 are `upper' and `lower'" +msgstr "ç½®æ›æ™‚,å¯ä»¥åœ¨å­—串 2 出ç¾çš„å­—å…ƒç¨®é¡žåªæœ‰â€˜upper’或‘lower’" + +#: src/tr.c:1578 +msgid "the [c*] construct may appear in string2 only when translating" +msgstr "[c*] çµæ§‹åªæœ‰åœ¨ç½®æ›æ™‚æ–¹å¯åœ¨å­—串 2 出ç¾" + +#: src/tr.c:1853 +msgid "two strings must be given when translating" +msgstr "ç½®æ›æ™‚必須指定兩個字串" + +#: src/tr.c:1856 +msgid "two strings must be given when both deleting and squeezing repeats" +msgstr "åŒæ™‚刪除字元和壓縮é‡è¦†å­—時必須指定兩個字串" + +#: src/tr.c:1870 +msgid "only one string may be given when deleting without squeezing repeats" +msgstr "刪除但ä¸å£“縮é‡è¦†å­—時åªèƒ½æŒ‡å®šä¸€å€‹å­—串" + +#: src/tr.c:1876 +msgid "at least one string must be given when squeezing repeats" +msgstr "壓縮é‡è¦†å­—æ™‚è‡³å°‘è¦æŒ‡å®šä¸€å€‹å­—串" + +#: src/tr.c:1967 +msgid "misaligned [:upper:] and/or [:lower:] construct" +msgstr "[:upper:]ã€[:lower:]çµæ§‹çš„ä½ç½®æ²’有å°é½Š" + +#: src/tr.c:1990 +msgid "" +"invalid identity mapping; when translating, any [:lower:] or [:upper:]\n" +"construct in string1 must be aligned with a corresponding construct\n" +"([:upper:] or [:lower:], respectively) in string2" +msgstr "" +"無效的æ†ç­‰æ˜ å°„ (identity mapping)ï¼›é€²è¡Œç½®æ›æ™‚ï¼Œå°æ–¼å­—串 1 的任何\n" +"[:lower:]ã€[:upper:] çµæ§‹ï¼Œåœ¨å­—串 2 è£¡éƒ½å¿…é ˆæœ‰ä¸€å€‹ç›¸æ‡‰çš„çµæ§‹ã€‚\n" +"(分別為 [:upper:]ã€[:lower:]) " + +#: src/true.c:34 +#, c-format +msgid "" +"Usage: %s [ignored command line arguments]\n" +" or: %s OPTION\n" +"Exit with a status code indicating success.\n" +"\n" +"These option names may not be abbreviated.\n" +"\n" +msgstr "" + +#: src/tsort.c:97 +#, c-format +msgid "" +"Usage: %s [OPTION] [FILE]\n" +"Write totally ordered list consistent with the partial ordering in FILE.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"用法:%s [é¸é …] [檔案]\n" +"å°‡ <檔案> 中所有已進行部份排åºçš„é …ç›®è¯ç¹«èµ·ä¾†ï¼Œç”¢ç”Ÿæ–°çš„æŽ’列,\n" +"è€Œè©²æŽ’åˆ—å«æœ‰ <檔案> 中的所有項目。如果沒有指定 <檔案> 或\n" +"<檔案> 是 -,則由標準輸入讀å–資料。\n" +"\n" + +#: src/tsort.c:533 +#, c-format +msgid "%s: input contains a loop:" +msgstr "%sï¼šå°‡è¼¸å…¥è³‡æ–™æŽ’åºæ™‚出ç¾è¿´åœˆï¼š" + +#: src/tsort.c:575 +msgid "only one argument may be specified" +msgstr "åªèƒ½æŒ‡å®šä¸€å€‹å¼•數" + +#: src/tty.c:63 +msgid "" +"Print the file name of the terminal connected to standard input.\n" +"\n" +" -s, --silent, --quiet print nothing, only return an exit status\n" +msgstr "" + +#: src/tty.c:120 +msgid "not a tty" +msgstr "" + +#: src/uname.c:111 +msgid "" +"Print certain system information. With no OPTION, same as -s.\n" +"\n" +" -a, --all print all information, in the following order:\n" +" -s, --kernel-name print the kernel name\n" +" -n, --nodename print the network node hostname\n" +" -r, --kernel-release print the kernel release\n" +msgstr "" + +#: src/uname.c:119 +msgid "" +" -v, --kernel-version print the kernel version\n" +" -m, --machine print the machine hardware name\n" +" -p, --processor print the processor type\n" +" -i, --hardware-platform print the hardware platform\n" +" -o, --operating-system print the operating system\n" +msgstr "" + +#: src/uname.c:226 +#, fuzzy +msgid "cannot get system name" +msgstr "無法建立暫存檔" + +#: src/unexpand.c:379 +msgid "" +"Convert spaces in each FILE to tabs, writing to standard output.\n" +"With no FILE, or when FILE is -, read standard input.\n" +"\n" +msgstr "" +"å°‡æ¯å€‹ <檔案> 中的空格轉æ›ç‚º tabï¼Œä¸¦åœ¨æ¨™æº–è¼¸å‡ºé¡¯ç¤ºçµæžœã€‚\n" +"如果沒有指定 <檔案> 或 <檔案> 是 -,則由標準輸入讀å–資料。\n" +"\n" + +#: src/unexpand.c:387 +#, fuzzy +msgid "" +" -a, --all convert all whitespace, instead of just initial " +"whitespace\n" +" --first-only convert only leading sequences of whitespace (overrides -" +"a)\n" +" -t, --tabs=N have tabs N characters apart instead of 8 (enables -a)\n" +" -t, --tabs=LIST use comma separated LIST of tab positions (enables -a)\n" +msgstr "" +" -a, --all è½‰æ›æ‰€æœ‰ç©ºç™½å­—元,並éžåªæ˜¯æ¯è¡Œé–‹å§‹çš„空白字元\n" +" -t, --tabs=數字 將指定 <數字> 的空格轉æ›ç‚º tabï¼Œè€Œéž 8 個\n" +" -t, --tabs=LIST 用以逗號分隔的數字特別指定 tab çš„ä½ç½®\n" + +#: src/unexpand.c:464 +msgid "`-LIST' option is obsolete; use `--first-only -t LIST'" +msgstr "‘-LIST’é¸é …å·²éŽæ™‚;請使用‘--first-only -t LIST’" + +#: src/uniq.c:139 +#, c-format +msgid "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n" +msgstr "用法:%s [é¸é …]... [輸入 [輸出]]\n" + +#: src/uniq.c:143 +msgid "" +"Discard all but one of successive identical lines from INPUT (or\n" +"standard input), writing to OUTPUT (or standard output).\n" +"\n" +msgstr "" +"å°‡ <輸入> (é è¨­ç‚ºæ¨™æº–輸入) 的資料中æ¯è¡Œé€£çºŒç›¸åŒçš„è³‡æ–™æ¨æ£„至åªå‰©ä¸€è¡Œï¼Œ\n" +"並在 <輸出> é¡¯ç¤ºçµæžœ (é è¨­æœƒåœ¨æ¨™æº–è¼¸å‡ºé¡¯ç¤ºçµæžœ)。\n" + +#: src/uniq.c:151 +msgid "" +" -c, --count prefix lines by the number of occurrences\n" +" -d, --repeated only print duplicate lines\n" +msgstr "" +" -c, --count æ¯è¡Œå‰åŠ ä¸Šå‡ºç¾æ¬¡æ•¸\n" +" -d, --repeated åªå°å‡ºé‡è¦†çš„資料\n" + +#: src/uniq.c:155 +msgid "" +" -D, --all-repeated[=delimit-method] print all duplicate lines\n" +" delimit-method={none(default),prepend,separate}\n" +" Delimiting is done with blank lines.\n" +" -f, --skip-fields=N avoid comparing the first N fields\n" +" -i, --ignore-case ignore differences in case when comparing\n" +" -s, --skip-chars=N avoid comparing the first N characters\n" +" -u, --unique only print unique lines\n" +msgstr "" +" -D, --all-repeated[=分隔方å¼]\n" +" å°å‡ºæ‰€æœ‰é‡è¦†çš„資料\n" +" 分隔方å¼={none(é è¨­)ã€prependã€separate}\n" +" 會使用空行來分隔資料。\n" +" -f, --skip-fields=N 䏿¯”較最åˆçš„ N 個欄ä½\n" +" -i, --ignore-case 比較時忽略大å°å¯«\n" +" -s, --skip-chars=N 䏿¯”較最åˆçš„ N 個字元\n" +" -u, --unique åªå°å‡ºæ²’有é‡è¦†çš„資料\n" + +#: src/uniq.c:164 +msgid " -w, --check-chars=N compare no more than N characters in lines\n" +msgstr " -w, --check-chars=N æ¯è¡Œæ¯”較ä¸å¤šæ–¼ N 個字元\n" + +#: src/uniq.c:169 +msgid "" +"\n" +"A field is a run of whitespace, then non-whitespace characters.\n" +"Fields are skipped before chars.\n" +msgstr "" +"\n" +"ä¸€å€‹æ¬„ä½æ˜¯ç”±ä¸€çµ„空白字元加上一組éžç©ºç™½çš„字元組æˆçš„。\n" +"ç•¶åŒæ™‚æŒ‡å®šç•¥éŽæ¬„ä½å’Œç•¥éŽå­—å…ƒä¸ä½œæ¯”è¼ƒæ™‚ï¼Œæœƒå…ˆç•¥éŽæ¬„ä½ã€‚\n" + +#: src/uniq.c:381 +#, c-format +msgid "error reading %s" +msgstr "è®€å– %s 時發生錯誤" + +#: src/uniq.c:386 +#, c-format +msgid "error writing %s" +msgstr "寫入 %s 時發生錯誤" + +#: src/uniq.c:433 src/uniq.c:450 +#, c-format +msgid "extra operand `%s'" +msgstr "å¤šé¤˜çš„åƒæ•¸â€˜%s’" + +#: src/uniq.c:473 src/uniq.c:498 +msgid "invalid number of fields to skip" +msgstr "è¦ç•¥éŽçš„æ¬„使•¸ç›®ç„¡æ•ˆ" + +#: src/uniq.c:507 +msgid "invalid number of bytes to skip" +msgstr "è¦ç•¥éŽçš„ä½å…ƒçµ„數目無效" + +#: src/uniq.c:516 +msgid "invalid number of bytes to compare" +msgstr "è¦æ¯”較的ä½å…ƒçµ„數目無效" + +#: src/uniq.c:530 +#, c-format +msgid "`-%lu' option is obsolete; use `-f %lu'" +msgstr "‘-%lu’é¸é …å·²éŽæ™‚;請使用‘-f %lu’" + +#: src/uniq.c:538 +msgid "printing all duplicated lines and repeat counts is meaningless" +msgstr "顯示æ¯è¡Œé‡è¦†çš„資籵åˆè¨ˆç®—該行的é‡è¦†æ¬¡æ•¸æ˜¯æ²’有æ„義的" + +#: src/unlink.c:51 +#, fuzzy, c-format +msgid "" +"Usage: %s FILE\n" +" or: %s OPTION\n" +msgstr "" +"用法:%s [檔案]...\n" +" 或:%s [é¸é …]\n" + +#: src/unlink.c:54 +msgid "" +"Call the unlink function to remove the specified FILE.\n" +"\n" +msgstr "" +"é€éŽèª¿ç”¨ unlink 函å¼ä¾†ç§»é™¤æŒ‡å®šçš„ <檔案>。\n" +"\n" + +#: src/unlink.c:99 +#, fuzzy, c-format +msgid "cannot unlink %s" +msgstr "無法å°â€˜%s’執行輸出入控制 (ioctl)" + +#: src/uptime.c:129 +msgid "couldn't get boot time" +msgstr "" + +#: src/uptime.c:136 +#, c-format +msgid " %2d:%02d%s up " +msgstr "" + +#: src/uptime.c:140 +msgid "am" +msgstr "" + +#: src/uptime.c:140 +msgid "pm" +msgstr "" + +#: src/uptime.c:142 +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#: src/uptime.c:144 +#, fuzzy, c-format +msgid "%d user" +msgid_plural "%d users" +msgstr[0] "無效的使用者" +msgstr[1] "無效的使用者" + +#: src/uptime.c:157 +#, c-format +msgid ", load average: %.2f" +msgstr "" + +#: src/uptime.c:191 src/users.c:118 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE ]\n" +msgstr "用法:%s [é¸é …]... [檔案]...\n" + +#: src/uptime.c:192 +#, c-format +msgid "" +"Print the current time, the length of time the system has been up,\n" +"the number of users on the system, and the average number of jobs\n" +"in the run queue over the last 1, 5 and 15 minutes.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" + +#: src/users.c:35 +#, fuzzy +msgid "Joseph Arceneaux and David MacKenzie" +msgstr "Jay Lepreau åŠ David MacKenzie" + +#: src/users.c:119 +#, c-format +msgid "" +"Output who is currently logged in according to FILE.\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"\n" +msgstr "" + +#: src/wc.c:75 +msgid "Paul Rubin and David MacKenzie" +msgstr "Paul Rubin åŠ David MacKenzie" + +#: src/wc.c:129 +msgid "" +"Print byte, word, and newline counts for each FILE, and a total line if\n" +"more than one FILE is specified. With no FILE, or when FILE is -,\n" +"read standard input.\n" +" -c, --bytes print the byte counts\n" +" -m, --chars print the character counts\n" +" -l, --lines print the newline counts\n" +msgstr "" +"å°å‡ºæ¯å€‹ <檔案> 的行數ã€å­—數åŠä½å…ƒçµ„數目,指定多個 <檔案> 時還會å°å‡ºç¸½è¨ˆã€‚\n" +"如果沒有指定 <檔案> 或 <檔案> 是 -,則由標準輸入讀å–資料。\n" +" -c, --bytes å°å‡ºä½å…ƒçµ„數目\n" +" -m, --chars å°å‡ºå­—元數目\n" +" -l, --lines å°å‡ºè¡Œæ•¸\n" + +#: src/wc.c:137 +msgid "" +" -L, --max-line-length print the length of the longest line\n" +" -w, --words print the word counts\n" +msgstr "" +" -L, --max-line-length å°å‡ºæœ€é•·ä¸€è¡Œçš„字數\n" +" -w, --words å°å‡ºå­—數\n" + +#: src/who.c:41 +#, fuzzy +msgid "Joseph Arceneaux, David MacKenzie, and Michael Stone" +msgstr "Mike Parkerã€David MacKenzie å’Œ Jim Meyering" + +#: src/who.c:223 +msgid " old " +msgstr "" + +#: src/who.c:387 src/who.c:390 +msgid "id=" +msgstr "" + +#: src/who.c:403 src/who.c:408 +msgid "term=" +msgstr "" + +#: src/who.c:405 src/who.c:409 +msgid "exit=" +msgstr "" + +#: src/who.c:446 +msgid "clock change" +msgstr "" + +#: src/who.c:458 src/who.c:459 +msgid "run-level" +msgstr "" + +#: src/who.c:462 src/who.c:463 +msgid "last=" +msgstr "" + +#: src/who.c:492 +#, c-format +msgid "" +"\n" +"# users=%u\n" +msgstr "" + +#: src/who.c:498 +msgid "NAME" +msgstr "" + +#: src/who.c:498 +msgid "LINE" +msgstr "" + +#: src/who.c:498 +msgid "TIME" +msgstr "" + +#: src/who.c:498 +#, fuzzy +msgid "IDLE" +msgstr "錯誤" + +#: src/who.c:498 +msgid "PID" +msgstr "" + +#: src/who.c:499 +msgid "COMMENT" +msgstr "" + +#: src/who.c:499 +msgid "EXIT" +msgstr "" + +#: src/who.c:574 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n" +msgstr "用法:%s [é¸é …]... 檔案1 檔案2\n" + +#: src/who.c:575 +msgid "" +"\n" +" -a, --all same as -b -d --login -p -r -t -T -u\n" +" -b, --boot time of last system boot\n" +" -d, --dead print dead processes\n" +" -H, --heading print line of column headings\n" +msgstr "" + +#: src/who.c:582 +msgid "" +" -i, --idle add idle time as HOURS:MINUTES, . or old\n" +" (deprecated, use -u)\n" +" --login print system login processes\n" +" (equivalent to SUS -l)\n" +msgstr "" + +#: src/who.c:588 +msgid "" +" -l, --lookup attempt to canonicalize hostnames via DNS\n" +" (-l is deprecated, use --lookup)\n" +" -m only hostname and user associated with stdin\n" +" -p, --process print active processes spawned by init\n" +msgstr "" + +#: src/who.c:594 +msgid "" +" -q, --count all login names and number of users logged on\n" +" -r, --runlevel print current runlevel\n" +" -s, --short print only name, line, and time (default)\n" +" -t, --time print last system clock change\n" +msgstr "" + +#: src/who.c:600 +msgid "" +" -T, -w, --mesg add user's message status as +, - or ?\n" +" -u, --users list users logged in\n" +" --message same as -T\n" +" --writable same as -T\n" +msgstr "" + +#: src/who.c:608 +#, c-format +msgid "" +"\n" +"If FILE is not specified, use %s. %s as FILE is common.\n" +"If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n" +msgstr "" + +#: src/who.c:711 +#, fuzzy +msgid "Warning: -i will be removed in a future release; use -u instead" +msgstr "" +"警告:--version-control (-V) é¸é …å·²ç¶“éŽæ™‚;將來的版本隨時å¯èƒ½ä¸å†æ”¯æ´\n" +"æ­¤é¸é …。請使用 --backup=%s。" + +#: src/who.c:722 +msgid "" +"Warning: the meaning of '-l' will change in a future release to conform to " +"POSIX" +msgstr "" + +#: src/whoami.c:53 +msgid "" +"Print the user name associated with the current effective user id.\n" +"Same as id -un.\n" +"\n" +msgstr "" + +#: src/whoami.c:104 +#, c-format +msgid "%s: cannot find username for UID %u\n" +msgstr "" + +#: src/yes.c:49 +#, fuzzy, c-format +msgid "" +"Usage: %s [STRING]...\n" +" or: %s OPTION\n" +msgstr "" +"用法:%s [檔案]...\n" +" 或:%s [é¸é …]\n" + +#: src/yes.c:55 +msgid "" +"Repeatedly output a line with all specified STRING(s), or `y'.\n" +"\n" +msgstr "" + +#, fuzzy +#~ msgid "\\%c: invalid escape" +#~ msgstr "%s:無效的樣å¼" + +#~ msgid "program error" +#~ msgstr "程å¼éŒ¯èª¤" + +#~ msgid "stack overflow" +#~ msgstr "堆疊溢ä½" + +#~ msgid " Type" +#~ msgstr " 類型" + +#, fuzzy +#~ msgid "cannot convert time" +#~ msgstr "stat%s失敗" + +#, fuzzy +#~ msgid "cannot format time" +#~ msgstr "stat%s失敗" + +#, fuzzy +#~ msgid "cannot change to `..' from directory %s" +#~ msgstr "無法進入%s目錄" + +#, fuzzy +#~ msgid "missing file arguments" +#~ msgstr "引數éŽå°‘" + +#, fuzzy +#~ msgid "environment variable, QUOTING_STYLE" +#~ msgstr "忽略無效的環境變數 QUOTING_STYLE 的變數值:%s" + +#~ msgid "%s: is so large that it is not representable" +#~ msgstr "%s:因為éŽå¤§ï¼Œæ‰€ä»¥ç„¡æ³•表示" + +#, fuzzy +#~ msgid "cannot execute %s" +#~ msgstr "無法建立目錄%s" + +#~ msgid "cannot lstat `.'" +#~ msgstr "lstat‘.’失敗" + +#, fuzzy +#~ msgid "closing directory %s" +#~ msgstr "無法進入%s目錄" + +#, fuzzy +#~ msgid "%s: remove directory %s? " +#~ msgstr "無法建立目錄%s" + +#~ msgid "%s: directory %s is write protected; descend into it anyway? " +#~ msgstr "%s:目錄%s有防寫ä¿è­·ï¼›æ˜¯å¦ä»ç„¶è¦é€²å…¥? " + +#~ msgid "removing all entries of directory %s\n" +#~ msgstr "正在移除目錄%s中的所有項目\n" + +#~ msgid "directory %s was replaced before being removed" +#~ msgstr "正準備移除目錄%s時目錄已被置æ›" + +#, fuzzy +#~ msgid "cannot change back to directory %s via `..'" +#~ msgstr "無法進入%s目錄" + +#~ msgid "subdirectory of %s was moved while being removed" +#~ msgstr "正準備移除%s的副目錄時該目錄已被移走" + +#, fuzzy +#~ msgid "%s: remove directory %s%s? " +#~ msgstr "無法建立目錄%s" + +#~ msgid " (might be nonempty)" +#~ msgstr "(å¯èƒ½ä»æœ‰è³‡æ–™ï¼‰" + +#~ msgid "removing the directory itself: %s\n" +#~ msgstr "移除目錄本身:%s\n" + +#~ msgid "continue? " +#~ msgstr "是å¦ç¹¼çºŒ? "